{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "**

Deep Learning Approaches to Natural Language Processing

**\n", "**

Text Compression Assignment

**\n", "**

Matthias Bartolo

**\n", "\n", "
\n", "\n", "### Package imports" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "# Suggested imports. You may add your own here.\n", "\n", "%matplotlib inline\n", "\n", "import collections\n", "import random\n", "import matplotlib.pyplot as plt\n", "import nltk\n", "import numpy as np\n", "import torch\n", "from collections import Counter\n", "\n", "# Variable to control the size of the print statements\n", "print_size = 87\n", "\n", "device = 'cuda' if torch.cuda.is_available() else 'cpu'" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Text compression assignment\n", "\n", "It is said that you can measure the intelligence of an AI from the amount it can compress a text without information loss.\n", "One way to think about this is that, the more a text is predictable, the more words we can leave out of it as we can guess the missing words.\n", "On the other hand, the more intelligent an AI is, the more it will find texts to be predictable and so the more words it can leave out and guess.\n", "This has led to a competition called the [Hutter Prize](http://prize.hutter1.net/) where the objective is to compress a given text as much as possible.\n", "The record for compressing a 1GB text file extracted from a Wikipedia snapshot is about 115MB.\n", "The main hurdle here is that the program used to decompress the file must be treated as part of the compressed file, meaning that the program itself must also be small.\n", "\n", "In this assignment, you're going to be doing something similar using a smaller text file and using neural language models to guess missing words." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 1) Data processing (10%)\n", "\n", "You have a train/dev/test split corpus of text from Wikipedia consisting of single sentences.\n", "Each sentence is on a separate line and each sentence has been tokenised for you such that tokens are space separated.\n", "This means that you only need to split by space to get the tokens.\n", "The text has all been lowercased as well.\n", "The objective here is to be able to compress the text losslessly, meaning that it can be decompressed back to the original string:\n", "\n", "$$\\text{decompress}(\\text{compress}(t)) = t$$\n", "\n", "Do not do any further pre-processing on the text (such as stemming) as it may result in unrecoverable information loss.\n", "The test set is what we will be compressing and will not be processed at all as it will be treated as a single big string by the compression/decompression algorithms.\n", "\n", "Do the following tasks:" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "1.1) Load the train set and dev set text files into a list of sentences where each sentence is tokenised (by splitting by space).\n", "Do not load the test set." ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "def load_into_sentences(filename):\n", " \"\"\"Loads the file with the given filename into a list of sentences.\n", " \n", " Args:\n", " filename (str): The filename to load.\n", " \n", " Returns:\n", " list: A list of sentences, where each sentence is a list of words.\n", " \"\"\"\n", " # Opening file and reading lines. Stripping each line of whitespace and newlines.\n", " with open(filename, encoding='utf-8') as f:\n", " sentences = f.readlines()\n", "\n", " # Splitting the line by spaces and stripping each word of whitespace and newlines.\n", " sentences = [sentence.split() for sentence in sentences]\n", "\n", " # Returning the list of sentences.\n", " return sentences" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "# Loading the data into lists of sentences.\n", "dev_sentences = load_into_sentences('dev.txt')\n", "train_sentences = load_into_sentences('train.txt')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "

What are the uses of the different txt files?

\n", "" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[1mNumber of sentences in dev set:\u001b[0m 1712\n", "\u001b[1mThe dev set contains the following sentences:\u001b[0m [['jones', 'viewed', 'the', 'resolution', 'as', 'the', 'framework', ',', 'and', 'not', 'the', 'final', 'solution', ',', 'for', 'enabling', 'librarians', 'to', 'confront', 'issues', 'that', 'hampered', '``', 'human', 'freedom', \"''\", '.'], ['he', 'lives', 'in', 'ottawa', ',', 'where', 'he', 'composes', 'full-time', '.'], ['many', 'natural', 'gas', 'pipelines', 'span', 'the', 'country', \"'s\", 'territory', '.'], ['until', 'recently', ',', 'the', 'study', 'of', 'sign', 'language', 'and', 'sociolinguistics', 'has', 'existed', 'in', 'two', 'separate', 'domains', '.'], ['in', 'the', 'house', 'of', 'commons', 'she', 'sat', 'on', 'the', 'commons', 'reference', 'group', 'on', 'representation', 'and', 'inclusion', 'and', 'previously', 'sat', 'on', 'the', 'consolidation', 'bills', '(', 'joint', 'committee', ')', 'and', 'women', 'and', 'equalities', 'committee', '.'], ['he', 'won', 'a', 'number', 'of', 'significant', 'international', 'titles', '(', 'as', 'shown', 'by', 'the', 'chart', 'below', ')', ',', 'and', 'at', 'thirty-one', 'was', 'runner-up', 'to', 'china', \"'s\", 'sun', 'jun', 'at', 'the', '1', '9', '9', '9', 'ibf', 'world', 'championships', '.'], ['the', 'province', 'is', 'divided', 'into', '1', '0', 'districts', '(', '``', 'daïras', \"''\", ')', ',', 'which', 'are', 'further', 'divided', 'into', '3', '2', '``', 'communes', \"''\", 'or', 'municipalities', '.'], ['in', 'australia', ',', 'it', 'earned', 'and', 'in', 'malaysia', ',', '.'], ['the', 'next', 'three-and-a-half', 'years', 'followed', 'with', 'bocelli', 'holding', 'permanent', 'residency', 'at', 'the', 'no', '.'], ['the', 'girls', 'sleep', 'in', 'dormitories', 'until', 'year', '9', '(', 'ages', '1', '4', '/', '1', '5', ')', ',', 'after', 'which', 'they', 'transfer', 'to', 'double', 'or', 'single', 'study', 'bedrooms', 'for', 'their', 'two', 'gcse', 'years', '.'], ['visits', 'to', 'the', 'frigochorti', 'have', 'to', 'be', 'arranged', 'together', 'with', 'the', 'tourist', 'office', 'in', 'loma', 'plata', '.'], ['during', 'its', 'construction', ',', 'the', 'stadium', 'had', 'no', 'official', 'name', ',', 'though', 'it', 'was', 'generally', 'referred', 'to', 'as', '``', 'the', 'east', 'bank', 'stadium', \"''\", ',', 'a', 'reference', 'to', 'the', 'stadium', \"'s\", 'location', 'on', 'the', 'eastern', 'bank', 'of', 'the', 'cumberland', 'river', '.'], ['on', '5', 'september', '1', '9', '9', '2', 'the', 'constitution', 'of', 'the', 'nepal', 'bhasa', 'academy', 'was', 'formally', 'approved', 'and', 'an', 'academic', 'council', 'with', 'a', 'maximum', 'number', 'of', '7', '5', 'members', 'was', 'formed', '.'], ['it', 'remained', 'small', 'and', 'did', 'not', 'hold', 'its', 'first', 'national', 'party', 'congress', 'until', '1', '9', '5', '9', '.'], ['study', 'participants', 'were', 'then', 'asked', 'to', 'respond', 'as', 'quickly', 'as', 'possible', 'once', 'the', 'probes', 'were', 'processed', '.'], ['the', 'second', 'committee', ',', 'from', '1', '9', '8', '6', 'to', '1', '9', '8', '8', ',', 'was', 'gordon', 'muir', ',', 'malcolm', 'dickson', ',', 'carol', 'rhodes', ',', 'peter', 'thompson', ',', 'simon', 'brown', 'and', 'douglas', 'aubrey', '.'], ['on', 'october', '9', ',', '1', '9', '8', '6', ',', 'kdnl-tv', 'and', 'cox', \"'s\", 'other', 'two', 'independent', 'stations', ',', 'ktvu', 'in', 'oakland', 'and', 'wkbd-tv', 'in', 'detroit', ',', 'joined', 'the', 'fox', 'broadcasting', 'company', 'as', 'charter', 'affiliates', '.'], ['the', 'club', ',', 'whose', 'new', 'president', 'is', 'called', 'françois', 'yvinec', ',', 'is', 'this', 'time', 'quite', 'comfortably', 'in', '[', 'division', '1', '.'], ['following', 'their', 'broadcast', ',', 'each', 'episode', 'would', 'be', 'repeated', 'the', 'following', 'morning', 'at', '7', ':', '0', '0', 'am', 'on', 'bbc', 'two', '.'], ['in', '1', '9', '9', '5', ',', 'he', 'returned', 'to', 'the', 'npsl', 'when', 'he', 'signed', 'with', 'the', 'cincinnati', 'silverbacks', '.'], ['fallarino', 'started', 'seeing', 'minorenti', 'without', 'her', 'husband', 'being', 'present', 'and', 'casati', 'stampa', ',', 'learning', 'of', 'this', ',', 'became', 'jealous', '.'], ['the', 'census', 'reported', 'that', '9', '8', '.', '3', '%', 'of', 'the', 'population', 'lived', 'in', 'households', 'and', '1', '.', '7', '%', 'were', 'institutionalized', '.'], ['the', 'kqsm-fm', 'call', 'sign', 'was', 'moved', 'to', '9', '2', '.', '1', 'fm', '.'], ['such', 'powers', 'are', ',', 'however', ',', 'in', 'each', 'case', 'subject', 'to', 'dis-application', ',', 'or', 'repeal', ',', 'by', 'the', 'chief', 'pleas', '.'], ['in', '1', '9', '4', '6', ',', 'he', 'was', 'made', 'a', 'companion', 'of', 'the', 'order', 'of', 'st', 'michael', 'and', 'st', 'george', '.'], ['generalissimo', 'chiang', 'kai-shek', 'himself', 'intervened', ',', 'perhaps', 'at', 'the', 'behest', 'of', 'his', 'wife', ',', 'mme', '.'], ['he', 'faced', 'joey', 'white', 'and', 'nancy', 'dunwoodie', 'in', 'the', 'republican', 'primary', ',', 'and', 'was', 'attacked', 'by', 'white', 'over', 'his', 'previous', 'registration', 'as', 'a', 'democrat', 'and', 'for', 'being', 'a', '``', 'career', 'politician', '.', \"''\"], ['uss', '``', 'adela', \"''\", '(', '1', '8', '6', '2', ')', 'was', 'a', 'steamer', 'captured', 'by', 'the', 'union', 'navy', 'during', 'the', 'american', 'civil', 'war', '.'], ['ronaldo', 'has', 'obtained', 'many', 'other', 'minor', 'achievements', ',', 'awards', 'and', 'recognitions', ',', 'by', 'the', 'major', 'sport', 'magazines', 'and', 'newspapers', ',', 'which', 'are', 'not', 'reported', '.'], ['captain', 'allan', 'himself', 'commanded', 'the', '``', 'canada', \"''\", 'while', 'his', 'son', 'james', 'succeeded', 'him', 'in', 'the', 'command', 'of', 'the', '``', 'favorite', \"''\", '.'], ['megachile', 'macneilli', 'is', 'a', 'species', 'of', 'bee', 'in', 'the', 'family', 'megachilidae', '.'], ['``', 'the', 'last', 'horror', 'movie', \"''\", 'was', 'released', 'onto', 'dvd', 'through', 'fangoria', \"'s\", '``', 'gore', 'zone', \"''\", 'label', 'on', '7', 'december', '2', '0', '0', '4', '.'], ['district', 'health', 'boards', 'consist', 'of', 'a', 'mixture', 'of', 'appointed', 'and', 'elected', 'members', '.'], ['in', '1', '5', '8', '8', ',', 'when', 'the', 'fleet', 'of', 'the', 'spanish', 'armada', 'in', 'ireland', 'were', 'returning', 'to', 'spain', 'during', 'stormy', 'weather', ',', 'many', 'of', 'its', 'ships', 'sought', 'shelter', 'at', 'the', 'blasket', 'islands', 'and', 'some', 'were', 'wrecked', '.'], ['they', 'met', 'at', 'camp', 'david', 'on', 'the', 'weekend', 'of', '1', '5', 'september', 'to', 'shape', 'what', 'became', 'the', 'war', 'on', 'terrorism', '.'], ['his', 'military', 'achievements', 'allowed', 'him', 'to', 'be', 'promoted', 'to', 'the', 'position', 'of', 'captain', 'of', 'the', 'region', '.'], ['since', 'its', 'foundation', 'as', 'the', 'cave', 'monastery', 'in', '1', '0', '5', '1', ',', 'the', 'lavra', 'has', 'been', 'a', 'preeminent', 'center', 'of', 'eastern', 'orthodox', 'christianity', 'in', 'eastern', 'europe', '.'], ['since', '1', '9', '9', '4', 'he', 'has', 'written/co-written', 'twenty', 'books', '(', 'as', 'of', '2', '0', '0', '9', ')', 'covering', 'a', 'broad', 'range', 'of', 'topics', '.'], ['intel', 'intended', 'the', 'paragon', 'to', 'run', 'the', 'osf/', '1', 'ad', 'distributed', 'operating', 'system', 'on', 'all', 'processors', '.'], ['she', 'also', 'played', 'the', 'role', 'of', 'jacqueline', 'marasigan', 'in', 'the', 'primetime', 'tv', 'show', ',', '``', 'budoy', \"''\", ',', 'opposite', 'gerald', 'anderson', 'and', 'enrique', 'gil', '.'], ['algonquin', 'park', ',', 'boundary', 'waters', 'canoe', 'area', 'wilderness', 'and', 'sylvania', 'wilderness', 'have', 'famous', 'portage', 'routes', '.'], ['chubb', 'had', 'been', 'cited', 'as', 'being', 'the', '``', 'proprietor', \"''\", 'of', 'the', 'hospital', 'in', '1', '9', '1', '8', 'other', 'members', 'of', 'the', 'board', 'were', 'lady', 'mary', 'chubb', '(', 'wife', 'of', 'sir', 'cecil', 'and', 'daughter', 'of', 'dr', 'william', 'corbin', 'finch', 'jnr', '.'], ['thus', ',', 'p', 'became', 'the', 'first', 'clearly', 'defined', 'metazoan', 'example', 'of', 'this', 'long-suspected', 'phenomenon', '.'], ['it', 'was', 'freezing', 'cold', 'but', 'wilde', 'arrived', 'dressed', 'in', '``', 'florid', 'sobriety', \"''\", ',', 'wearing', 'a', 'green', 'carnation', '.'], ['tait', 'continued', 'playing', 'for', 'past', 'grammars', 'in', 'townsville', 'cricket', 'through', 'the', 'late', '1', '9', '3', '0', \"'s\", ',', 'and', 'in', '1', '9', '4', '0', 'he', 'began', 'opening', 'the', 'bowling', 'for', 'past', 'grammars', 'again', '.'], ['north', 'queensland', 'tin', 'mining', 'corporation', 'was', 'registered', 'on', '2', '0', 'september', '1', '8', '9', '9', 'with', 'wh', 'phillips', 'as', 'chairman', 'and', 's', 'dixon', 'as', 'queensland', 'director', '.'], ['according', 'to', 'nelson', ',', 'the', 'primary', 'effect', 'divestment', 'resolutions', 'have', 'is', 'the', 'promotion', 'of', 'anti-israel', '(', 'and', 'sometimes', 'antisemitic', ')', 'sentiment', 'within', 'student', 'bodies', ',', 'faculty', ',', 'and', 'academic', 'departments', '.'], ['he', 'has', 'had', 'a', 'career', 'in', 'both', 'business', 'and', 'politics', '.'], ['let', '``', 'r', \"''\", 'be', 'the', 'radius', 'of', 'the', 'earth', 'and', '``', 'h', \"''\", 'be', 'the', 'altitude', 'of', 'a', 'telecommunication', 'station', '.'], ['minor', 'move', 'is', 'an', 'album', 'by', 'american', 'hard', 'bop', 'tenor', 'tina', 'brooks', '.'], ['a', 'distinctive', 'feature', 'is', 'that', 'the', 'leaf', 'margins', 'and', 'veins', 'are', 'mildly', 'translucent', ',', 'when', 'held', 'up', 'to', 'the', 'light', '.'], ['he', 'received', 'his', 'md', ',', 'alpha', 'omega', 'alpha', ',', 'from', 'georgetown', 'university', 'school', 'of', 'medicine', 'in', '1', '9', '8', '5', '.'], ['he', 'studied', 'mining', 'and', 'metallurgy', 'at', 'the', 'university', 'of', 'edinburgh', 'graduating', 'with', 'a', 'bsc', 'in', '1', '9', '2', '9', 'and', 'gaining', 'a', 'doctorate', '(', 'phd', ')', 'in', '1', '9', '3', '3', '.'], ['after', 'a', 'great', 'time', 'span', ',', 'the', 'researchers', 'concluded', ',', 'contemporary', 'humans', 'would', 'be', 'more', 'likely', 'to', 'find', 'indirect', 'evidence', 'such', 'as', 'anomalies', 'in', 'the', 'chemical', 'composition', 'or', 'isotope', 'ratios', 'of', 'sediments', '.'], ['he', 'reached', 'the', 'rank', 'of', 'captain', 'in', '1', '8', '7', '0', 'and', 'retired', 'from', 'the', 'army', 'in', '1', '8', '8', '6', 'with', 'rank', 'of', 'lieutenant', 'colonel', '.'], ['the', 'company', 'also', 'owned', 'the', 'new', 'york', ',', 'mobile', ',', 'and', 'mexican', 'steamship', 'company', ',', 'as', 'well', 'as', 'a', 'small', 'line', 'in', 'alabama', 'called', 'the', 'seaboard', 'railway', 'company', '.'], ['the', 'sixth', ',', '1', '6', '5', 'years', 'after', 'mahaleel', ',', 'was', 'that', 'of', 'jared', 'begotten', 'of', 'mahaleel', '.'], ['when', 'this', 'feature', 'is', 'found', 'in', 'females', ',', 'it', 'will', 'only', 'be', 'seen', 'on', 'a', 'maximum', 'of', '4', 'legs', '.'], ['a', '1', '9', '5', '9', 'remake', 'with', 'the', 'same', 'title', 'was', 'directed', 'by', 'douglas', 'sirk', '.'], ['in', 'december', '1', '9', '2', '5', ',', 'while', 'traveling', 'from', 'beijing', 'to', 'shanghai', 'by', 'train', ',', 'xu', 'was', 'kidnapped', 'by', 'zhang', 'zhijiang', ',', 'a', 'member', 'of', 'feng', 'yuxiang', \"'s\", 'forces', '.'], ['a', 'comparison', 'of', 'mitochondrial', 'dna', 'sequences', 'from', '2', '3', 'museum', 'specimens', 'of', 'bali', 'and', 'javan', 'tigers', 'with', 'other', 'living', 'tiger', 'subspecies', 'revealed', 'a', 'close', 'genetic', 'resemblance', 'of', 'the', 'tigers', 'in', 'the', 'sunda', 'islands', '.'], ['leeb', 'graduated', 'in', '2', '0', '0', '3', 'with', 'a', 'bachelor', 'of', 'fine', 'arts', '.'], ['citra', 'is', 'to', 'polish', 'faraday', \"'s\", 'weapons', 'and', 'rowan', 'has', 'to', 'choose', 'the', 'next', 'day', \"'s\", 'victim', '.'], ['civil', 'and', 'community', 'organizations', 'in', 'darfur', 'are', 'also', 'supported', '.'], ['the', 'barriers', 'have', 'been', 'erected', 'at', 'choa', 'chu', 'kang', 'and', 'bukit', 'panjang', 'lrt', 'stations', 'in', 'anticipation', 'of', 'higher', 'commuter', 'traffic', 'with', 'the', 'opening', 'of', 'downtown', 'line', '2', '.'], ['the', 'nmda', 'receptors', 'carry', 'a', 'current', 'by', 'ca', '2', '+', 'ions', 'and', 'can', 'be', 'blocked', 'by', 'extracellular', 'mg', '2', '+', 'ions', 'depending', 'on', 'voltage', 'and', 'membrane', 'potential', '.'], ['she', 'continued', ',', '``', 'constable', 'mark', 'brennan', 'has', 'a', 'great', 'line', 'in', 'frowning', ',', 'but', 'his', 'interview', 'skills', 'leave', 'something', 'to', 'be', 'desired', ',', 'as', 'do', 'his', 'powers', 'as', 'an', 'investigator', '.', \"''\"], ['after', 'leaving', 'the', 'band', ',', 'jane', 'dornacker', 'performed', 'as', 'stand-up', 'comedian', 'and', 'later', 'worked', 'as', 'a', 'traffic', 'reporter', 'with', 'the', 'team', 'that', 'replaced', 'howard', 'stern', 'at', 'wnbc', '.'], ['park', 'was', 'shot', 'in', 'the', 'chest', 'and', 'the', 'head', ',', 'and', 'died', 'almost', 'immediately', '.'], ['in', '1', '9', '3', '4', ',', 'he', 'tied', 'for', '1', 'st-', '2', 'nd', 'with', 'vasja', 'pirc', 'in', 'maribor', '(', 'marburg', ')', '.'], ['an', 'estimated', '1', '6', ',', '0', '0', '0', 'or', 'more', 'minor', 'fragments', 'rained', 'down', 'over', 'navajo', 'county', 'in', 'an', 'area', 'about', '6', 'miles', 'east', 'of', 'holbrook', '.'], ['nusrat', 'khan', 'plundered', 'its', 'chief', 'cities', 'and', 'sacked', 'its', 'temples', ',', 'such', 'as', 'the', 'famous', 'temple', 'of', 'somnath', 'which', 'had', 'been', 'rebuilt', 'in', 'the', 'twelfth', 'century', '.'], ['the', 'couple', 'lived', 'in', 'nearby', 'melton', 'mowbray', ',', 'and', 'had', 'three', 'sons', 'there', '.'], ['while', 'heading', 'engineering', 'initiatives', ',', 'harris', 'led', 'the', 'company', \"'s\", 'development', 'and', 'advancement', 'of', 'offset', 'printing', 'using', 'the', 'lithography', '.'], ['``', 'pocket', 'gamer', \"''\", 'ranked', 'kairosoft', '3', '0', 'th', 'on', 'its', '``', 'top', '5', '0', 'developers', 'of', '2', '0', '1', '2', '``', 'list', ',', 'calling', 'kairosoft', 'games', 'a', '``', 'genre', 'in', 'their', 'own', 'right', \"''\", 'but', 'noting', 'that', 'they', 'still', 'were', 'mostly', 'a', 'niche', 'in', 'the', 'market', '.'], ['a', 'night', 'bomber', 'is', 'a', 'bomber', 'aircraft', 'intended', 'specifically', 'for', 'carrying', 'out', 'bombing', 'missions', 'at', 'night', '.'], ['the', 'producers', 'would', 'ask', 'the', 'actors', 'several', 'questions', 'and', 'they', 'would', 'respond', 'as', 'the', 'characters', 'they', 'were', 'auditioning', 'for', '.'], ['cavan', 'gaels', 'regained', 'their', 'throne', 'as', 'cavan', 'kingpins', ',', 'defeating', 'castlerahan', '0', '-', '1', '3', 'to', '0', '-', '8', 'in', 'the', 'final', '.'], ['she', 'told', 'international', 'gymnast', 'magazine', ',', '``', 'for', 'every', 'competition', ',', 'i', 'just', 'went', 'in', 'there', 'with', 'confidence', 'in', 'myself', 'and', 'in', 'my', 'team', ',', 'and', 'each', 'day', 'it', 'felt', 'like', 'i', 'gained', 'more', 'and', 'more', 'experience', '.', \"''\"], ['since', 'april', '2', '0', '1', '3', ',', 'liwa', 'thuwar', 'al-raqqa', 'cooperated', 'with', 'al-nusra', 'front', ',', 'ahrar', 'al-sham', ',', 'the', 'islamic', 'state', 'of', 'iraq', 'and', 'the', 'levant', '(', 'isil', ')', ',', 'and', 'other', 'rebel', 'groups', 'in', 'the', 'area', '.'], ['remembered', 'as', 'the', 'city', \"'s\", 'most', 'important', 'founding', 'father', ',', 'hart', 'is', 'memorialized', 'with', 'the', 'isaiah', 'd.', 'hart', 'bridge', 'over', 'the', 'st.', 'johns', '.'], ['in', 'studying', 'precontact', 'archaeological', 'sites', 'in', 'hawaii', ',', 'archaeologists', 'have', 'found', 'the', 'concentration', 'of', 'the', 'remains', 'of', 'rats', 'associated', 'with', 'commoner', 'households', 'accounted', 'for', 'three', 'times', 'the', 'animal', 'remains', 'associated', 'with', 'elite', 'households', '.'], ['at', 'rko', ',', 'spigelglass', 'wrote', '``', 'the', 'big', 'street', \"''\", '(', '1', '9', '4', '2', ')', ',', 'based', 'on', 'a', 'runyon', 'story', ',', 'and', '``', 'they', 'got', 'me', 'covered', \"''\", '(', '1', '9', '4', '2', ')', 'for', 'bob', 'hope', '.'], ['it', 'was', 'founded', 'by', 'ashhar', 'farhan', ',', 'humera', 'ahmed', ',', 'biju', 'mathew', ',', 'and', 'elahe', 'hiptoola', '.'], ['the', 'side', 'with', 'the', 'old', 'ones', '(', 'or', 'the', 'soloist', ')', 'wins', 'if', 'they', 'have', 'scored', 'at', 'least', '6', '1', 'points', '.'], ['the', 'third', 'series', 'received', 'increased', 'acclaim', 'and', 'popularity', 'amongst', 'children', 'and', 'adults', 'alike', 'during', 'the', '2', '0', '2', '0', 'pandemic', 'lockdowns', '.'], ['while', 'in', 'italy', ',', 'he', 'contracted', 'pulmonary', 'phthsis', 'by', 'inhalation', 'of', 'stone', 'dust', '.'], ['tudor', 'premium', 'beer', 'was', 'brewed', 'by', 'schmidt', \"'s\", 'for', 'a', '&', 'amp', ';', 'p', 'in', 'the', 'mid-', '1', '9', '7', '0', 's', 'and', 'was', 'attributed', 'to', 'valley', 'forge', 'brewing', 'co.', 'other', 'brewers', 'produced', 'tudor', 'for', 'a', '&', 'amp', ';', 'p', 'at', 'other', 'times', '.'], ['however', ',', 'vr', 'later', 'limited', 'the', 'top', 'speed', 'to', ',', 'since', 'test', 'runs', 'require', '1', '0', '%', 'faster', 'speed', 'than', 'the', 'targeted', 'commercial', 'speed', '.'], ['like', 'the', 'majority', 'of', 'games', 'that', 'have', 'been', 'labeled', 'non-violent', ',', 'violence', 'in', 'the', 'game', 'that', 'is', 'applied', 'to', 'the', 'character', 'rather', 'than', 'that', 'the', 'character', 'applies', 'is', 'not', 'considered', 'to', 'make', 'the', 'game', 'a', 'violent', 'game', '.'], ['the', 'billboard', 'charts', 'tabulate', 'the', 'popularity', 'of', 'songs', 'and', 'albums', 'in', 'a', 'weekly', 'publication', '.'], ['it', 'was', 'printed', 'in', 'a', 'moravian', 'fortified', 'house', 'in', 'kralice', 'nad', 'oslavou', ',', 'therefore', 'it', 'is', 'called', 'the', 'kralice', 'bible', '.'], ['due', 'to', 'the', 'hilly', 'surroundings', ',', 'hiking', 'and', 'exploring', 'the', 'scenery', 'of', 'the', 'high', 'coast', 'is', 'popular', 'in', 'the', 'area', '.'], ['this', 'caused', 'hungary', 'to', 'be', 'moved', 'to', 'pool', 'b', ',', 'replacing', 'gibraltar', 'in', 'all', 'the', 'games', 'against', 'the', 'other', 'teams', 'in', 'pool', 'b', '.'], ['that', 'justice', 'be', 'done', 'was', 'a', 'one-reel', 'american', 'propaganda', 'film', 'directed', 'by', 'george', 'stevens', 'and', 'made', 'in', '1', '9', '4', '5', 'by', 'the', 'office', 'of', 'war', 'information', 'for', 'the', 'us', 'chief', 'of', 'counsel', 'at', 'nuremberg', 'and', 'the', 'war', 'crimes', 'office', 'of', 'the', 'judge', 'advocate', 'general', \"'s\", 'corps', '.'], ['grandson', 'of', 'deputy', ',', 'he', 'was', 'twin', 'brother', 'of', 'alfred', 'coste-floret', ',', 'who', 'was', 'also', 'appointed', 'mrp', 'but', 'for', 'haute-garonne', '.'], ['the', 'napoleonic', 'system', 'collapsed', 'in', '1', '8', '1', '4', ',', 'and', 'the', 'following', 'territorial', 'settlement', ',', 'the', 'congress', 'of', 'vienna', ',', 'ceded', 'the', 'state', 'of', 'presidi', 'to', 'a', 'restored', 'tuscany', '.'], ['despite', 'the', 'advice', 'of', 'her', 'lawyer', ',', 'she', 'pleaded', 'not', 'guilty', '.'], ['kazumasa', 'negishi', 'and', 'takahiro', 'sekiguchi', 'did', 'a', 'study', 'to', 'see', 'if', 'there', 'are', 'specific', 'traits', 'that', 'make', 'a', 'person', 'more', 'or', 'less', 'susceptible', 'to', 'earworms', 'or', 'involuntary', 'musical', 'imagery', '.'], ['with', 'the', 'redskins', ',', 'phillips', 'worked', 'with', 'notable', 'tight', 'ends', 'like', 'vernon', 'davis', 'and', 'jordan', 'reed', ',', 'the', 'latter', 'of', 'whom', 'made', 'the', 'pro', 'bowl', 'following', 'the', '2', '0', '1', '6', 'season', '.'], ['he', 'quickly', 'schooled', 'the', 'boy', 'in', 'the', 'practical', 'aspects', 'of', 'gardening', 'and', 'also', 'succeeded', 'in', 'instilling', 'in', 'his', 'nephew', 'a', 'fascination', 'with', 'gardening', 'and', 'pomology', '.'], ['his', 'first', 'film', ',', '``', 'virginia', \"''\", '(', '1', '9', '4', '1', ')', ',', 'directed', 'by', 'edward', 'h.', 'griffith', ',', 'starred', 'madeleine', 'carroll', 'whom', 'he', 'married', '.'], ['an', '1', '8', '8', '6', 'partition', 'of', 'richfield', 'created', 'the', 'village', 'of', 'st.', 'louis', 'park', ',', 'and', 'a', 'later', 'division', 'approved', 'april', '5', ',', '1', '8', '8', '9', ',', 'produced', 'the', 'village', 'of', 'edina', '.'], ['he', 'was', 'given', '``', 'where', 'love', 'has', 'gone', \"''\", '(', '1', '9', '6', '4', ')', ',', 'another', 'robbins', 'adaptation', 'by', 'levine', '.'], ['each', 'terminal', 'on', 'a', 'btb', 'connector', 'is', 'connected', 'to', 'a', 'pcb', '.'], ['this', 'is', 'only', 'the', 'second', 'time', 'which', 'a', 'nasfic', 'site', 'selection', 'vote', 'has', 'been', 'held', 'at', 'a', 'nasfic', '.'], ['federline', 'jones', \"''\", ',', 'will', 'forte', 'as', 'principal', 'wally', ',', 'frances', 'callier', 'as', 'evelyn', '``', 'cookie', \"''\", 'brown', ',', 'craig', 'robinson', 'as', 'levar', '``', 'freight', 'train', \"''\", 'brown', 'and', 'david', 'lynch', 'as', 'gus', 'the', 'bartender', '.'], ['the', 'more', 'that', 'the', 'head', 'is', 'exposed', 'to', 'these', 'hits', ',', 'makes', 'these', 'athletes', 'more', 'susceptible', 'to', 'these', 'head', 'injuries', '.'], ['böhme', 'went', 'on', 'leave', 'from', '9', 'january', '1', '9', '1', '7', 'to', '3', 'february', '1', '9', '1', '7', '.'], ['according', 'to', 'the', 'united', 'states', 'census', 'bureau', ',', 'the', 'township', 'has', 'a', 'total', 'area', 'of', ',', 'of', 'which', 'is', 'land', 'and', '(', '1', '0', '.', '4', '3', '%', ')', 'is', 'water', '.'], ['the', 'population', 'growth', 'rate', 'in', '2', '0', '0', '1', 'was', '4', '.', '2', '%', '.'], ['the', 'system', 'also', 'includes', 'a', 'planet', 'called', 'pandora', ',', 'its', 'moon', 'pindam', 'and', 'a', 'space', 'station', 'called', 'parma', '.'], ['component', 'maintenance', 'department', 'consists', 'of', 'seven', 'workshops', ',', 'engineering', 'production', 'bureau', 'and', 'support', 'unit', '.'], ['eggs', ',', 'salt', 'and', 'milk', 'are', 'added', 'as', 'the', 'whipping', 'continues', '.'], ['in', 'reaction', 'to', 'the', 'stockholm', 'conference', 'on', 'the', 'jewish', 'holocaust', ',', 'held', 'in', 'late', 'january', '2', '0', '0', '0', ',', 'hamas', 'issued', 'a', 'press', 'release', 'that', 'it', 'published', 'on', 'its', 'official', 'website', ',', 'containing', 'the', 'following', 'statements', 'from', 'a', 'senior', 'leader', ':'], ['she', 'argued', ',', '``', 'the', 'spirit', 'of', 'the', \"'resolution\", 'on', 'racism', 'and', 'sexism', 'awareness', \"'\", 'is', 'not', 'burdened', 'with', 'repression', ';', 'it', 'is', 'liberating', '.'], ['the', 'posluns', 'were', 'primarily', 'interested', 'in', 'acquiring', 'the', 'company', \"'s\", '5', '-story', 'head', 'office', 'building', 'on', 'lake', 'shore', 'boulevard', '.'], ['he', 'was', 'elected', 'to', 'the', 'municipal', 'council', 'in', '1', '9', '1', '2', ',', 'and', 'became', 'mayor', 'in', '1', '9', '1', '9', ',', 'a', 'post', 'he', 'retained', 'until', 'his', 'death', '.'], ['switzerland', 'is', 'one', 'of', 'the', 'last', 'oecd', 'nations', 'to', 'provide', 'for', 'unbundling', ',', 'because', 'the', 'swiss', 'federal', 'supreme', 'court', 'held', 'in', '2', '0', '0', '1', 'that', 'the', '1', '9', '9', '6', 'swiss', 'telecommunications', 'act', 'did', 'not', 'require', 'it', '.'], ['snavely', 'moved', 'to', 'seattle', 'in', '1', '9', '9', '7', ',', 'where', 'he', 'met', 'darrin', 'wiener', ',', 'the', 'cofounder', 'of', 'imputor', '?'], ['the', 'journal', 'covers', 'a', 'wide', 'range', 'of', 'topics', ',', 'including', 'the', 'sources', 'and', 'nature', 'of', 'ethnic', 'identity', ',', 'minority', 'rights', ',', 'migration', 'and', 'identity', 'politics', '-', 'topics', 'which', 'remain', 'central', 'to', 'the', 'modern', 'world', '.'], ['the', 'advantage', 'of', 'pulsar', 'navigation', 'would', 'be', 'more', 'available', 'signals', 'than', 'from', 'satnav', 'constellations', ',', 'being', 'unjammable', ',', 'with', 'the', 'broad', 'range', 'of', 'frequencies', 'available', ',', 'and', 'security', 'of', 'signal', 'sources', 'from', 'destruction', 'by', 'antisatellite', 'weapons', '.'], ['ang', 'chan', 'ii', 'was', 'not', 'allowed', 'to', 'go', 'to', 'cambodia', 'until', 'pok', 'died', 'in', '1', '8', '0', '6', '.'], ['as', 'a', 'result', ',', 'rnid', \"'s\", 'auditors', 'expressed', 'no', 'further', 'concerns', 'about', 'the', 'charity', \"'s\", 'going', 'concern', 'status', 'in', 'the', 'accounts', 'signed', 'in', 'november', '2', '0', '1', '9', '.'], ['climbing', 'on', 'the', 'big', 'stage', 'began', 'for', 'the', 'singer', 'later', '-', 'after', 'the', 'transition', 'to', 'the', 'gorky', 'philharmonic', 'and', 'receiving', 'first', 'prize', 'at', 'the', 'all-union', 'competition', 'for', 'the', 'best', 'performance', 'of', 'songs', 'of', 'the', 'socialist', 'countries', 'in', '1', '9', '7', '9', '.'], ['by', 'the', 'end', 'of', 'the', 'decade', ',', 'mas', 'was', 'flying', 'to', '4', '7', 'overseas', 'destinations', ',', 'including', 'eight', 'european', 'destinations', ',', 'seven', 'oceanian', 'destinations', ',', 'and', 'united', 'states', 'destinations', 'of', 'los', 'angeles', 'and', 'honolulu', '.'], ['ia', 'clarington', 'investments', 'inc.', 'is', 'an', 'investment', 'management', 'firm', 'catering', 'to', 'the', 'canadian', 'retail', 'market', '.'], ['he', 'is', 'a', 'world', 'fantasy', 'award', 'winner', 'and', 'served', 'as', 'editor', 'of', '``', 'weird', 'tales', \"''\", 'magazine', '.'], ['on', '1', 'january', '1', '9', '9', '0', ',', 'the', 'malaysian', 'cabinet', 'appointed', 'the', 'national', 'metrology', 'laboratory', '(', 'sirim', ')', 'as', 'the', 'official', 'timekeeper', 'of', 'malaysia', '.'], ['the', 'kyakhta', 'trade', 'between', 'qing', 'and', 'russia', 'was', 'very', 'important', 'to', 'russia', 'as', 'one', 'of', 'its', 'main', 'sources', 'of', 'income', '.'], ['he', 'previously', 'lived', 'in', 'little', 'rock', ',', 'benton', ',', 'bryant', ',', 'and', 'ozone', ',', 'arkansas', ',', 'dates', 'unavailable', '.'], ['pus', '6', 'has', 'one', 'that', 'only', 'modifies', 'u', '3', '1', 'of', 'cytoplasmic', 'and', 'mitochondrial', 'trna', '.'], ['both', '2', '0', '3', '(', 'r', ')', 'squadron', 'and', 'the', 'sar', 'force', 'hq', 'moved', 'to', 'raf', 'valley', '.'], ['many', 'participants', 'were', 'subjected', 'to', 'heckling', 'from', 'spectators', ',', 'though', 'there', 'were', 'also', 'many', 'supporters', 'present', '.'], ['admiral', 'valter', 'girardelli', '(', 'born', 'rovereto', ',', '2', '2', 'july', '1', '9', '5', '5', ')', 'is', 'a', 'retired', 'italian', 'naval', 'officer', 'who', 'served', 'as', 'chief', 'of', 'the', 'italian', 'navy', 'from', '2', '0', '1', '6', 'to', '2', '0', '1', '9', '.'], ['the', 'corps', 'was', 'disbanded', 'in', '1', '9', '8', '9', 'was', 'a', 'result', 'of', 'soviet', 'troop', 'reductions', 'at', 'the', 'end', 'of', 'the', 'cold', 'war', '.'], ['under', 'the', 'mhpi', 'authorities', ',', 'dod', 'works', 'with', 'the', 'private', 'sector', 'to', 'revitalize', 'military', 'family', 'housing', 'through', 'a', 'variety', 'of', 'financial', 'tools-direct', 'loans', ',', 'loan', 'guarantees', ',', 'equity', 'investments', ',', 'conveyance', 'or', 'leasing', 'of', 'land', 'and/or', 'housing/and', 'other', 'facilities', '.'], ['hallmark', 'home', 'entertainment', 'division', 'was', 'a', 'home', 'video', 'distribution', 'company', 'which', 'was', 'sold', 'to', 'live', 'entertainment', '.'], ['according', 'to', 'the', '2', '0', '0', '6', 'film', 'documentary', '``', 'notes', 'on', 'marie', 'menken', \"''\", 'produced', 'by', 'martina', 'kudláček', ',', 'it', 'was', 'marie', 'who', 'schooled', 'warhol', 'on', 'using', 'the', '1', '6', 'mm', 'bolex', '.'], ['he', '[', 'johnson', ']', 'did', \"n't\", 'make', 'public', 'spectacles', '[', 'of', 'trips', 'to', 'alice', ']', 'like', 'some', 'of', 'the', 'politicians', 'did', '.'], ['other', 'areas', 'of', 'national', 'competition', 'policy', 'require', 'structural', 'reform', 'of', 'public', 'monopolies', 'and', 'require', 'owners', 'of', 'monopoly', 'facilities', 'to', 'negotiate', 'third-party', 'access', 'agreements', 'with', 'other', 'users', '.'], ['from', '1', '9', '4', '1', 'to', '1', '9', '4', '3', ',', 'he', 'lived', 'in', 'tbilisi', ',', 'where', 'he', 'taught', 'mathematical', 'analysis', ',', 'and', 'from', '1', '9', '4', '3', 'in', 'moscow', '.'], ['it', 'is', 'made', 'up', 'of', 'a', 'base', 'of', 'cellulose', 'impregnated', 'with', 'other', 'substances', 'including', 'iron', 'compounds', ',', 'which', 'are', 'especially', 'prominent', 'in', 'some', 'species', 'of', '``', 'closterium', \"''\", 'and', '``', 'penium', \"''\", 'and', 'is', 'not', 'soluble', 'in', 'an', 'ammoniacal', 'solution', 'of', 'copper', 'oxide', '.'], ['white', 'obtained', 'his', 'primary', 'education', 'in', 'local', 'common', 'schools', ',', 'including', 'the', 'romney', 'classical', 'institute', ',', 'which', 'was', 'presided', 'over', 'by', 'dr.', 'william', 'henry', 'foote', '.'], ['this', 'differs', 'from', 'physical', 'sex', 'ratio', 'which', 'simply', 'includes', 'all', 'individuals', ',', 'including', 'those', 'that', 'are', 'sexually', 'inactive', 'or', 'do', 'not', 'compete', 'for', 'mates', '.'], ['the', 'uniform', 'change-over', 'will', 'occur', 'between', '2', '0', '0', '9', 'and', '2', '0', '1', '1', 'to', 'minimise', 'the', 'cost', 'of', 'the', 'conversion', '.'], ['the', 'elevation', 'of', 'the', 'stream', \"'s\", 'source', 'is', 'between', 'and', 'above', 'sea', 'level', '.'], ['qin', 'general', 'wang', 'jian', 'conquered', 'ji', 'in', '2', '2', '6', 'bc', 'and', 'the', 'first', 'emperor', 'completed', 'his', 'unification', 'of', 'china', 'in', '2', '2', '1', 'bc', '.'], ['she', 'has', 'published', 'five', 'further', 'novels', 'and', 'her', 'work', 'has', 'been', 'translated', 'into', 'french', ',', 'german', ',', 'spanish', ',', 'latvian', 'and', 'norwegian', '.'], ['lithium', 'spallation', 'is', 'the', 'process', 'by', 'which', 'a', 'high-energy', 'neutron', 'bombards', 'a', 'lithium', 'atom', ',', 'creating', 'a', '3', 'he', 'and', 'a', '4', 'he', 'ion', '.'], ['the', 'original', 'parish', 'church', 'was', 'constructed', 'on', 'the', 'site', 'of', 'a', 'previous', ',', 'probably', 'romanesque', 'chapel', '.'], ['a', 'metropolitan', 'police', 'officer', \"'s\", 'version', ',', 'entitled', '``', 'the', 'law', \"'s\", 'prayer', \"''\", ',', 'has', 'also', 'been', 'devised', '.'], ['the', 'rwandan', 'delegation', 'gave', 'several', 'reasons', 'for', 'the', 'rejection', ':'], ['around', '1', '9', '1', '0', 'jurjāns', \"'\", 'hearing', 'became', 'weaker', 'and', 'in', '1', '9', '1', '6', 'he', 'retires', 'from', 'his', 'teaching', 'career', '.'], ['the', 'building', 'has', 'been', 'renovated', 'and', 'refurbished', 'many', 'times', 'over', 'the', 'centuries', ',', 'the', 'most', 'recent', 'times', 'were', 'in', '1', '9', '1', '3', '-', '1', '9', '1', '4', 'and', 'in', '1', '9', '5', '5', '.'], ['when', 'games', 'by', 'apollo', 'went', 'broke', ',', 'martin', 'and', 'another', 'former', 'employee', ',', 'robert', 'barber', ',', 'developed', '``', 'halloween', \"''\", '.'], ['``', 'kashmir', \"''\", 'was', 'bombed', 'and', 'sunk', 'on', '2', '3', 'may', '1', '9', '4', '1', 'by', 'german', 'stuka', 'dive', 'bombers', 'belonging', 'to', 'stg', '2', 'and', 'led', 'by', 'hubertus', 'hitschhold', ',', 'south', 'of', 'crete', 'in', 'position', '.'], ['of', 'the', '2', '3', 'muslim', 'mps', 'elected', 'in', '2', '0', '1', '4', ',', '1', '8', 'or', '1', '9', 'were', 'from', 'constituencies', 'with', '3', '0', '%', 'muslim', 'voters', '.'], ['it', 'has', 'four', 'elementary', 'schools', ',', 'one', 'middle', 'school', ',', 'one', 'high', 'school', ',', 'and', 'one', 'alternative', 'high', 'school', '.'], ['the', 'following', 'fire', 'and', 'an', 'earthquake', 'in', '1', '4', '4', '3', 'heavily', 'damaged', 'the', 'church', '.'], ['according', 'to', 'an', 'entry', 'in', 'his', 'account', 'book', ',', 'he', 'purchased', 'two', 'copies', 'of', 'william', 'shakespeare', \"'s\", 'first', 'folio', 'on', '5', 'december', '1', '6', '2', '3', ':', 'this', 'is', 'the', 'earliest', 'recorded', 'retail', 'purchase', 'of', 'this', 'famous', 'book', '.'], ['in', 'general', 'the', 'high', 'aoa', 'capabilities', 'of', 'the', 'jet', 'could', 'not', 'be', 'used', 'in', 'an', 'effective', 'way', 'without', 'significantly', 'reducing', 'follow-on', 'maneuvering', 'potential', '.'], ['the', 'heartless', 'attitude', 'of', 'raj', 'gets', 'apparent', 'when', 'he', 'ignores', 'a', 'man', 'on', 'the', 'road', 'who', 'is', 'lying', 'in', 'a', 'pool', 'of', 'blood', 'because', 'of', 'an', 'accident', '.'], ['suburban', 'chicago', 'counties', 'such', 'as', 'dupage', ',', 'kane', ',', 'kendall', 'and', 'mchenry', 'counties', 'were', 'also', 'very', 'reliably', 'republican', 'until', 'recently', '.'], ['certain', 'physical', 'maneuvers', 'also', 'have', 'the', 'capacity', 'to', 'temporarily', 'boost', 'blood', 'pressure', ',', 'alleviating', 'symptoms', 'of', 'pre-syncope', 'like', 'lightheadedness', 'by', 'boosting', 'blood', 'flow', 'to', 'the', 'brain', '.'], ['these', 'sites', 'are', 'unique', 'natural', 'features', 'composed', 'not', 'only', 'of', 'springs', ',', 'but', 'also', 'caves', ',', 'streams', 'and', 'boulders', ';', 'with', 'names', 'with', 'biblical', 'allusions', ',', 'and', 'shrines', 'erected', 'in', ',', 'on', 'or', 'around', 'them', '.'], ['several', 'genetic', 'factors', 'provide', 'some', 'resistance', 'to', '``', 'plasmodium', \"''\", 'infection', ',', 'including', 'sickle', 'cell', 'trait', ',', 'thalassaemia', 'traits', ',', 'glucose-', '6', '-phosphate', 'dehydrogenase', 'deficiency', ',', 'and', 'the', 'absence', 'of', 'duffy', 'antigens', 'on', 'red', 'blood', 'cells', '.'], ['the', 'election', 'saw', 'third-term', 'incumbent', 'republican', 'park', 'livingston', ',', 'second', 'term', 'republican', 'incumbent', 'doris', 'simpson', 'holt', 'and', 'first-term', 'incumbent', 'republican', 'cushman', 'b.', 'bissell', 'lose', 'reelection', '.'], ['in', 'june', 'of', 'the', 'same', 'year', ',', 'slovenian', 'soldiers', 'entered', 'barracks', 'on', 'the', 'basis', 'of', 'an', 'oral', 'agreement', 'between', 'presidents', 'of', 'slovenia', 'and', 'croatia', ',', 'milan', 'kučan', 'and', 'franjo', 'tuđman', '.'], ['they', 'are', 'best', 'known', 'for', 'their', 'homemade', 'instrument', ',', 'the', '``', 'motograter', \"''\", ',', 'designed', 'with', 'industrial', 'cable', 'and', 'guitar', 'pieces', 'that', 'creates', 'a', 'unique', 'bass', 'sound', ',', 'and', 'painting', 'themselves', 'in', 'a', 'tribal', 'style', 'body', 'paint', 'for', 'live', 'concerts', '.'], ['salazar', 'joined', 'the', 'houston', 'dynamo', 'junior', 'academy', 'at', 'the', 'age', 'of', '1', '3', ',', 'eventually', 'progressing', 'to', 'the', 'dynamo', 'u-', '1', '8', 'squad', '.'], ['the', 'concurrency', 'ends', 'at', 'sand', 'gap', ',', 'with', 'highway', '7', 'continuing', 'south', 'to', 'russellville', ',', 'and', 'highway', '1', '2', '3', 'running', 'south', 'to', 'clarksville', '.'], ['richard', 'burns', 'rally', 'is', 'a', 'sim', 'racing', 'game', ',', 'published', 'by', 'sci', 'and', 'developed', 'by', 'warthog', 'with', 'advice', 'of', 'wrc', 'champion', 'richard', 'burns', '.'], ['jkb', 'óg', 'created', 'further', 'history', 'in', '2', '0', '1', '8', 'capturing', 'the', 'minor', 'and', 'under', '2', '1', 'a', 'county', 'titles', 'becoming', 'only', 'the', '6', 'th', 'tipperary', 'club', 'to', 'complete', 'this', 'remarkable', 'double', ',', 'and', 'also', 'bridged', 'a', 'parish', 'gap', 'of', '4', '5', 'years', 'since', 'a', 'last', 'a', 'county', 'title', '.'], ['boys', 'tend', 'to', 'play', 'in', 'larger', 'groups', 'than', 'girls', ',', 'and', 'friends', 'of', 'boys', 'are', 'more', 'likely', 'to', 'become', 'friends', 'with', 'each', 'other', 'which', ',', 'in', 'turn', 'leads', 'to', 'more', 'density', 'in', 'social', 'networks', 'among', 'boys', '.'], ['a', 'wearable', 'device', 'may', 'allow', 'for', 'constant', 'monitoring', 'of', 'a', 'patient', 'and', 'also', 'allow', 'for', 'the', 'ability', 'to', 'notice', 'changes', 'that', 'may', 'be', 'less', 'distinguishable', 'by', 'humans', '.'], ['the', 'legal', 'showdown', 'that', 'erupted', 'was', 'over', 'money', 'that', 'the', 'bh', 'businesses', 'claim', 'to', 'have', 'lost', 'in', 'non-existent', 'orders', 'and', 'deliveries', 'from', 'pupkewitz', ':', 'the', 'amount', 'of', 'money', 'in', 'discussion', 'was', 'n', '$', '4', '9', '4', '7', '2', '5', '0', '.', '6', '0', '.'], ['as', 'of', 'october', '2', '5', 'the', 'army', 'was', 'continuing', 'to', 'hold', 'along', 'the', 'terek', 'as', 'army', 'group', 'a', 'began', 'what', 'became', 'its', 'final', 'effort', 'to', 'break', 'through', 'to', 'grozny', 'and', ',', 'ultimately', ',', 'baku', '.'], ['roger', \"'s\", 'abandonment', 'of', 'angela', ',', 'the', 'unmasking', ',', 'to', 'angela', ',', 'of', 'his', 'solely', 'sexual', 'intentions', ',', 'and', 'the', 'mistreatment', 'of', 'miss', 'powell', ',', 'a', 'young', 'artist', 'of', 'african-american', 'heritage', ',', 'lead', 'angela', 'to', 'reveal', 'her', 'racial', 'heritage', 'and', 'lose', 'her', 'standing', 'with', 'several', 'of', 'her', 'acquaintances', '.'], ['in', 'the', 'aegean', 'and', 'mediterranean', 'seas', ',', 'it', 'only', 'totals', '3', '-', '4', '%', 'of', 'annual', 'catches', '.'], ['beam', 'failure', 'happens', 'as', 'the', 'result', 'of', 'tension', 'cracks', 'in', 'the', 'overhang', ',', 'and', 'occurs', 'only', 'when', 'the', 'lower', 'part', 'of', 'an', 'overhang', 'block', 'fails', 'along', 'an', 'almost', 'horizontal', 'failure', 'surface', '.'], ['the', 'trigg', 'hound', 'originated', 'in', 'barren', 'county', ',', 'kentucky', ',', 'in', 'the', '1', '8', '6', '0', 's', ',', 'when', 'fox', 'hunting', 'enthusiast', 'colonel', 'haiden', 'c.', 'trigg', 'wanted', 'to', 'develop', 'a', 'faster', 'hound', 'than', 'those', 'available', 'in', 'his', 'area', '.'], ['afterward', ',', 'gordon', 'shines', 'a', 'spotlight', 'on', 'top', 'of', 'gcpd', 'grabbing', 'the', 'attention', 'of', 'the', 'vigilante', ',', 'whom', 'jim', 'calls', 'a', '``', 'friend', \"''\", '.'], ['all', 'these', 'served', 'as', 'the', 'basis', 'for', 'the', 'establishment', 'of', 'shanghai', 'film', 'studio', '.'], ['infocus', 'was', 'formed', 'by', 'steve', 'hix', 'and', 'paul', 'gulick', 'in', '1', '9', '8', '6', '.'], ['the', 'environmental', 'fellows', 'program', '(', 'efp', ')', 'is', 'a', 'national', 'program', 'that', 'seeks', 'to', 'diversify', 'the', 'environmental', 'and', 'conservation', 'philanthropic', 'field', 'through', '1', '2', '-week', 'paid', 'summer', 'internships', 'for', 'graduate', 'students', 'at', 'partner', 'foundations', 'and', 'nonprofit', 'organizations', '.'], ['the', 'state', 'council', 'decided', 'to', 'improve', 'training', 'for', 'workers', 'who', 'had', 'passed', 'technical', 'examinations', '(', 'as', 'opposed', 'to', 'unskilled', 'workers', ')', 'was', 'intended', 'to', 'reinforce', 'the', 'development', 'of', 'vocational', 'and', 'technical', 'schools', '.'], ['radial', 'streaks', 'of', 'ejecta', 'and', 'secondary', 'craters', 'cover', 'the', 'terrain', 'that', 'surrounds', 'stetson', 'and', 'blackett', '.'], ['after', 'she', 'defeats', 'all', 'the', 'contestants', ',', 'rafe', 'shows', 'up', '.'], ['the', 'movement', 'sought', 'to', 'reform', 'the', 'church', 'and', 'unite', 'christians', '.'], ['the', 'family', 'was', 'unaware', 'of', 'this', 'and', 'presumed', 'she', 'had', 'died', '.'], ['in', '2', '0', '0', '9', ',', '``', 'brooklynvegan', \"''\", 'commissioned', 'american', 'journalist', 'and', 'editor', 'of', '``', 'the', 'obelisk', \"''\", 'jj', 'koczan', 'to', 'cover', 'roadburn', 'festival', 'on', 'their', 'behalf', 'with', 'a', 'series', 'of', 'exclusive', 'articles', '.'], ['part', 'of', 'it', 'is', 'in', 'the', 'most', 'northern', 'section', 'of', 'the', 'peak', 'district', 'national', 'park', '.'], ['his', 'wisconsin-born', 'father', 'was', 'a', 'successful', 'commodities', 'trader', 'at', 'the', 'chicago', 'board', 'of', 'trade', ',', 'his', 'mother', 'hailed', 'from', 'a', 'well-established', 'chicago', 'family', ';', 'together', 'they', 'raised', '7', 'children', '.'], ['he', 'started', 'in', 'all', 'three', 'games', 'and', 'scored', 'two', 'tries', '.'], ['in', 'september', '1', '9', '1', '5', 'general', 'godley', 'complained', 'that', 'too', 'few', 'of', 'the', 'recovered', 'sick', 'or', 'wounded', 'casualties', 'from', 'gallipoli', 'were', 'being', 'returned', 'from', 'egypt', ',', 'and', 'general', 'maxwell', 'replied', 'that', '``', 'the', 'appetite', 'of', 'the', 'dardanelles', 'for', 'men', 'has', 'been', 'phenomenal', 'and', 'wicked', \"''\", '.'], ['it', 'also', 'airs', 'weather', 'updates', 'provided', 'by', 'plattsburgh', ',', 'new', 'york', 'nbc', 'affiliate', ',', 'wptz', '.'], ['in', 'october', '1', '3', '4', '9', ',', 'he', 'assumed', 'the', 'crown', 'of', 'navarre', '.'], ['he', 'was', 'called', 'to', 'the', 'bar', 'by', 'the', 'inner', 'temple', 'in', '1', '8', '4', '1', '.'], ['in', 'the', 'center', 'of', 'annville', ',', 'the', 'route', 'forms', 'a', 'brief', 'concurrency', 'with', 'ky', '5', '7', '8', 'and', 'curves', 'northeast', 'as', 'it', 'comes', 'to', 'the', 'junction', 'with', 'ky', '3', '4', '4', '4', '.'], ['2', ')', ',', '2', '0', '1', '4', '(', '5', 'a', 'div', '.'], ['he', 'is', 'best', 'known', 'for', 'his', 'musical', 'collaborations', 'with', 'canadian', 'rapper', 'drake', 'and', 'has', 'produced', 'all', 'of', 'his', 'albums', '.'], ['the', 'team', 'finished', 'in', 'seventh', 'place', 'with', 'a', '3', '8', '-', '7', '4', 'record', '.'], ['throughout', 'the', 'war', ',', 'the', 'british', 'military', 'formed', 'over', '1', '0', '0', 'loyalist', 'line', 'regiments', 'whose', 'strength', 'totaled', '1', '9', ',', '0', '0', '0', 'of', 'which', '9', ',', '7', '0', '0', 'served', 'most', 'at', 'one', 'time', '.'], ['another', 'was', 'dr.', 'juan', 'ángel', 'arias', 'of', 'the', 'liberal', 'party', '.'], ['iringalakkuda', 'koodalmanikyam', 'temple', 'annual', 'festival', 'is', 'also', 'another', 'best', 'venue', 'for', 'pancharimelam', 'andperuvanam', 'pooram', ',', 'arattupuzha', 'pooram', ',', 'kuttanellur', 'pooram', ',', 'edakkunni', 'uthram', 'vilakku', ',', 'kuzhur', 'subrahmanya', 'swamy', 'temple', 'ernakulathappan', 'temple', 'are', 'the', 'other', 'good', 'venues', 'of', 'pancharimelam', '.'], ['yet', ',', 'strictly', 'speaking', ',', 'this', 'is', 'still', 'secular', 'music/poetry', ',', 'as', 'opposed', 'to', ',', 'say', ',', 'sufism', '.'], ['the', '1', '9', '6', '6', 'constitution', ',', 'we', 'hold', ',', 'is', 'a', 'new', 'legal', 'order', 'and', 'has', 'been', 'effective', 'since', 'april', '1', '4', ',', '1', '9', '6', '6', ',', 'when', 'it', 'first', 'came', 'into', 'force.″', \"''\"], ['he', 'was', 'ordained', 'a', 'united', 'methodist', 'minister', 'in', '1', '9', '6', '2', '.'], ['in', 'this', 'respect', 'there', 'would', 'be', 'men', 'with', 'hebephilia', 'as', 'well', 'as', 'men', 'with', 'a', \"'hebephilic\", 'disorder', '.', \"'\", \"''\"], ['talman', 'worked', 'with', 'pete', 'townsend', ',', 'performing', 'in', '1', 'st', 'us', 'national', 'tour', 'of', '``', 'the', 'who', \"'s\", 'tommy', \"''\", '.'], ['the', 'new', 'zealand', 'deerstalkers', 'association', 'and', 'tourism', 'industry', 'association', 'welcomed', 'the', 'formation', 'of', 'the', 'game', 'animal', 'council', 'but', 'forest', 'and', 'bird', ',', 'a', 'large', 'nationwide', 'conservation', 'organisation', ',', 'sees', 'it', 'as', 'an', 'impediment', 'to', 'recreational', 'hunters', '.'], ['even', 'clubs', 'from', 'japan', 'or', 'switzerland', 'took', 'part', 'in', '2', '0', '0', '5', '.'], [',', 'general', 'nadeem', 'raza', 'is', 'serving', 'as', 'chairman', 'joint', 'chiefs', '.'], ['``', 'maxim', \"''\", 'gave', 'it', 'a', 'score', 'of', 'seven', 'out', 'of', 'ten', ',', 'saying', 'that', 'players', 'will', '``', 'spend', 'more', 'time', 'scaring', 'the', 'crap', 'out', 'of', 'people', 'than', 'blowing', 'the', 'crap', 'out', 'of', 'people', ',', 'which', 'slows', 'down', 'the', 'action', '.', \"''\"], ['the', 'term', 'generally', 'applies', 'only', 'to', 'the', 'immediate', 'seller', ',', 'or', 'the', 'organization', 'that', 'is', 'paid', 'for', 'the', 'goods', ',', 'rather', 'than', 'to', 'the', 'original', 'manufacturer', 'or', 'the', 'organization', 'performing', 'the', 'service', 'if', 'it', 'is', 'different', 'from', 'the', 'immediate', 'supplier', '.'], ['i', 'mean', 'that', 'up', 'to', 'that', 'point', 'it', 'was', 'only', 'the', 'absurdity', 'of', 'the', 'position', 'that', 'had', 'struck', 'me', '...', 'after', 'that', 'i', 'began', 'to', 'get', 'angry', '.'], ['hla', ',', 'the', 'human', 'form', 'of', 'the', 'major', 'histocompatibility', 'complex', '(', 'mhc', ')', ',', 'is', 'located', 'on', 'chromosome', '6', 'at', '6', 'p', '2', '1', '.', '3', '.'], ['she', 'did', 'mural', 'painting', 'in', 'montréal', ',', 'including', 'at', 'expo', '6', '7', '.'], ['under', 'beall', \"'s\", 'leadership', 'in', 'the', 'early', 'raids', 'this', 'squadron', 'developed', 'techniques', 'for', 'low-level', 'bombing', 'of', 'the', 'dispersed', 'and', 'relatively', 'small', 'targets', 'in', 'burma', 'and', 'thailand', '.'], ['additionally', ',', 'the', 'court', \"'s\", 'ruling', 'of', 'the', 'case', 'falls', 'under', 'the', '``', 'secretary', \"'s\", 'definition', 'of', \"'harm\", \"'\", 'within', 'the', 'section', '9', 'taking', 'provision', '.', \"''\"], ['madison', 'has', 'stated', 'that', 'this', 'achievement', 'was', 'one', 'of', 'his', 'proudest', 'moments', '.'], ['in', 'the', 'idi', ',', 'countries', 'are', 'given', 'a', 'score', 'from', '1', 'to', '7', '.'], ['the', 'licence', 'fee', 'is', 'fixed', 'as', 'per', 'the', 'section', '1', '3', 'of', 'the', 'kerala', 'panchayat', 'raj', '(', 'public', 'and', 'private', 'market', ')', 'rules', 'and', 'section', '4', '5', '8', '(', '2', ')', '(', 'e', ')', 'of', 'the', 'kerala', 'municipality', 'act', '.'], ['špaček', ',', 'a', 'party', 'official', 'from', 'moravia', ',', 'was', 'soon', 'appointed', 'to', 'the', 'central', 'committee', ',', 'along', 'with', 'other', 'reformist', 'communist', 'politicians', ',', 'where', 'he', 'was', 'a', 'voice', 'for', 'increased', 'democratization', '.'], ['before', 'that', 'time', 'the', 'children', 'had', 'attended', 'school', 'in', 'the', 'city', 'of', 'moss', '.'], ['from', '2', '0', '1', '7', 'to', '2', '0', '1', '9', ',', 'she', 'played', 'a', 'supporting', 'character', 'in', 'geo', 'kahani', \"'s\", 'series', '``', 'naagin', '.', \"''\"], ['``', 'mikasa', \"''\", 'had', 'an', 'overall', 'length', 'of', ',', 'a', 'beam', 'of', ',', 'and', 'a', 'normal', 'draught', 'of', '.'], ['while', 'serving', 'in', 'brussels', 'he', 'tried', 'to', 'convince', 'king', 'philip', 'iv', 'of', 'spain', 'to', 'transfer', 'the', 'general', 'management', 'of', 'affairs', 'in', 'his', 'netherlands', 'possessions', 'to', 'brussels', 'and', 'remove', 'any', 'responsibility', 'for', 'such', 'matters', 'from', 'the', 'government', 'in', 'madrid', '.'], ['the', 'international', 'monetary', 'fund', 'issued', 'an', 'update', 'report', 'on', 'the', 'economy', 'of', 'portugal', 'in', 'late-june', '2', '0', '1', '7', 'with', 'a', 'strong', 'near-term', 'outlook', 'and', 'an', 'increase', 'in', 'investments', 'and', 'exports', 'over', 'previous', 'years', '.'], ['one', 'of', 'the', 'largest', 'category', 'of', 'texts', 'that', 'were', 'neither', 'sutra', ',', 'vinaya', 'nor', 'abhidharma', 'includes', 'various', 'collections', 'of', 'stories', 'such', 'as', 'the', 'jātaka', 'tales', 'and', 'the', 'avadānas', '(', 'pali', ':', 'apadāna', ')', '.'], ['in', 'that', 'episode', ',', 'she', 'was', 'also', 'the', 'timpanist', 'for', 'the', 'school', \"'s\", 'orchestra', '.'], ['in', '1', '9', '3', '8', ',', 'he', 'tied', 'for', '3', 'rd-', '4', 'th', 'in', 'ljubljana', '(', 'laibach', ')', '.'], ['for', 'both', 'designing', 'and', 'operating', 'a', 'water-conveyance', 'transportation', 'system', 'through', 'an', 'area', 'where', 'sinkholes', 'are', 'common', ',', 'and', 'surface', 'water', 'is', 'scarce', '.'], ['the', 'local', 'rcmp', 'also', 'has', 'community', 'police', 'stations', 'located', 'in', 'city', 'centre', ',', 'south', 'arm', ',', 'and', 'steveston', '.'], ['teams', 'in', 'bold', 'qualified', 'for', 'the', 'knockout', 'phase', '(', '2', '0', '0', '4', '-', '2', '0', '0', '8', 'for', 'final', ',', '2', '0', '0', '9', '-', '2', '0', '1', '6', 'for', 'semi-finals', ',', 'since', '2', '0', '1', '7', 'for', 'quarter-finals', ')', '.', '&', 'lt', ';', 'br', '&', 'gt', ';'], ['after', 'college', ',', 'he', 'worked', 'as', 'a', 'courier', 'with', 'the', 'white', 'house', 'press', 'corps', ',', 'and', 'worked', 'his', 'way', 'up', 'to', 'cameraman', '.'], ['there', 'wofford', \"'s\", 'men', 'drove', 'union', 'troops', 'out', 'of', 'the', 'wheatfield', 'but', 'had', 'to', 'stop', 'short', 'of', 'the', 'new', 'union', 'line', 'near', 'little', 'round', 'top', '.'], ['julie', 'ashley', 'zetlin', '(', 'born', 'june', '3', '0', ',', '1', '9', '9', '0', ')', 'is', 'a', 'retired', 'elite', 'rhythmic', 'gymnast', '.'], ['in', '1', '9', '3', '0', ',', 'spring', 'creek', 'park', 'and', 'the', 'shore', 'parkway', 'portion', 'of', 'the', 'belt', 'parkway', 'were', 'proposed', 'by', 'robert', 'moses', ',', 'along', 'with', 'several', 'other', 'parks', 'and', 'highways', '.'], ['he', 'started', 'in', 'six', 'games', 'in', '2', '0', '1', '0', ',', 'an', 'increase', 'from', 'his', 'two', 'starts', 'in', '2', '0', '0', '9', '.'], ['belisarius', 'tried', 'to', 'counter-attack', 'with', 'his', 'cavalry', 'but', 'was', 'defeated', 'and', 'ordered', 'to', 'withdraw', 'to', 'dara', '.'], ['in', '1', '3', '5', '8', ',', 'the', 'county', 'of', 'schwerin', 'was', 'purchased', 'by', 'the', 'descendants', 'of', 'niklot', ',', 'who', 'had', 'been', 'elevated', 'to', 'dukes', 'of', 'mecklenburg', 'in', '1', '3', '4', '8', '.'], ['the', 'forewings', 'are', 'black', ',', 'the', 'dorsal', 'margin', 'to', 'the', 'fold', 'white', 'from', 'the', 'base', 'to', 'the', 'cilia', ',', 'the', 'black', 'color', 'projecting', 'across', 'the', 'fold', 'into', 'the', 'white', ',', 'but', 'not', 'far', 'enough', 'to', 'touch', 'the', 'margin', '.'], ['he', 'is', 'the', 'son', 'of', 'abdul', 'majid', ',', 'the', 'first', 'muslim', 'who', 'served', 'as', 'a', 'justice', 'in', 'the', 'bengal', 'high', 'court', '.'], ['the', 'body', 'is', 'elongated', 'and', 'of', 'even', 'width', ',', 'apart', 'from', 'a', 'tapering', 'tip', '.'], ['currently', ',', 'the', 'winner', 'of', 'the', 'competition', 'receives', '$', '2', ',', '5', '0', '0', 'and', 'is', 'invited', 'to', 'compete', 'in', 'the', 'memphis', 'in', 'may', 'barbecue', 'cook-off', 'in', 'memphis', ',', 'tennessee', ',', 'as', 'well', 'as', 'the', 'memphis', 'barbecue', 'network', 'championship', ',', 'which', 'is', 'held', 'in', 'different', 'cities', 'each', 'year', '.'], ['the', 'town', 'of', 'tivat', 'itself', 'has', 'a', 'population', 'of', '1', '0', ',', '2', '3', '7', '.'], ['prof.', 'malone', 'has', 'stated', ':', '``', 'we', 'can', 'learn', 'a', 'lot', 'from', 'the', 'mistakes', 'made', 'by', 'the', 'first', 'maltese', '.'], ['in', '1', '9', '6', '2', 'she', 'performed', 'the', 'world', 'premieres', 'of', 'claude', 'debussy', \"'s\", '``', 'les', 'papillons', \"''\", 'and', 'william', 'flanagan', \"'s\", '``', 'moss', \"''\", 'with', 'pianist', 'lowell', 'farr', 'at', 'town', 'hall', 'in', 'new', 'york', 'city', '.'], ['at', 'the', 'end', 'of', 'the', 'wing', 'is', 'a', 'south', 'block', 'of', 'roughly', 'the', 'same', 'shape', 'and', 'size', 'as', 'the', 'main', 'block', '.'], ['she', 'quickly', 'found', 'out', 'where', 'they', 'were', 'and', 'transformed', 'herself', 'into', 'a', 'very', 'beautiful', 'young', 'woman', ',', 'more', 'beautiful', 'than', 'any', 'of', 'the', 'twelve', 'sisters', ';', 'then', 'she', 'went', 'to', 'the', 'city', 'of', 'the', 'king', 'and', 'asked', 'to', 'meet', 'him', '.'], ['except', 'for', 'certain', '``', 'vintage', \"''\", 'products', ',', 'ferrite', 'magnets', 'have', 'largely', 'displaced', 'the', 'more', 'expensive', 'alnico', 'magnets', 'in', 'these', 'applications', '.'], ['he', 'appeared', 'in', 'a', 'friendly', 'on', '2', '8', 'june', '2', '0', '1', '7', 'as', 'a', 'second-half', 'substitute', ',', 'wearing', 'number', '6', '9', '.'], ['alma', 'asay', 'is', 'the', 'ceo', 'and', 'co-founder', ',', 'along', 'with', 'dana', 'peterson', ',', 'of', 'allegory', 'law', ',', 'a', 'legal', 'technology', 'company', 'that', 'provides', 'a', 'software', 'platform', 'for', 'litigation', 'management', '.'], ['on', '1', '1', 'march', ',', 'us', 'president', 'donald', 'trump', 'gave', 'a', 'public', 'address', '.'], ['by', 'dropping', 'the', 'block', 'pieces', 'on', 'top', 'of', 'another', 'group', 'placed', 'in', 'the', 'playfield', ',', 'one', 'of', 'the', 'pieces', 'is', 'unlocked', 'and', 'players', 'can', 'maneuver', 'this', 'sole', 'piece', 'to', 'fill', 'spaces', 'and', 'aim', 'for', 'a', 'chain', 'erase', '.'], ['simone', 'and', 'tom', 'struggled', 'to', 'get', 'their', 'marriage', 'back', 'on', 'track', 'and', 'simone', 'turned', 'to', 'harrison', ',', 'and', 'they', 'made', 'love', '.'], ['in', '2', '0', '1', '2', ',', 'dean', 'hall', ',', 'an', 'employee', 'at', 'bohemia', 'working', 'on', '``', 'arma', '3', '``', ',', 'released', 'a', 'massively', 'popular', 'mod', 'for', '``', 'arma', '2', '``', 'named', '``', 'dayz', \"''\", ',', 'which', 'includes', 'zombies', 'as', 'the', 'game', \"'s\", 'main', 'enemies', '.'], ['it', 'is', 'found', 'in', 'china', '(', 'hubei', ',', 'hunan', ',', 'sichuan', ',', 'guizhou', ')', ',', 'taiwan', ',', 'japan', 'and', 'thailand', '.'], ['stippling', 'only', 'presents', 'on', 'the', 'attached', 'gingiva', 'bound', 'to', 'underlying', 'alveolar', 'bone', ',', 'not', 'the', 'freely', 'moveable', 'alveolar', 'mucosaor', 'free', 'gingiva', '.'], ['he', 'last', 'played', 'for', 'the', 'krefeld', 'pinguine', 'in', 'the', 'deutsche', 'eishockey', 'liga', '(', 'del', ')', '.'], ['the', 'momentum', 'of', 'the', 'fermions', 'in', 'the', 'fermion', 'gas', 'nevertheless', 'generates', 'pressure', ',', 'termed', '``', 'degeneracy', 'pressure', \"''\", '.'], ['cordelia', 'is', 'brought', 'before', 'constable', 'narwek', 'and', 'explains', 'she', 'has', 'precognitive', 'visions', '.'], ['at', 'the', 'time', 'of', 'the', '2', '0', '1', '1', 'nepal', 'census', 'it', 'had', 'a', 'population', 'of', '3', '3', '3', '4', 'people', 'living', 'in', '6', '8', '6', 'individual', 'households', '.'], ['the', 'head', 'of', 'the', 'maritime', 'reserve', 'is', 'commander', 'maritime', 'reserves', '(', 'commarres', ')', 'and', 'holds', 'the', 'rank', 'of', 'commodore', '.'], ['fitzgerald', 'wrote', 'and', 'sent', 'a', 'leaflet', 'to', 'vladimir', 'lenin', 'of', 'the', 'russian', 'social', 'democratic', 'workers', 'party', '.'], ['history', ',', 'oriya', ',', 'political', 'science', ',', 'and', 'sanskrit', ',', 'a', 'pre-university', 'science', 'course', '(', '+', '2', 'level', ')', ',', 'and', 'courses', 'in', 'computer', 'education', '.'], ['he', 'died', 'when', 'one', 'day', \"'s\", 'sail', 'from', 'gibraltar', ',', 'and', 'his', 'body', 'was', 'consigned', 'to', 'the', 'ocean', '.'], ['eighteen', 'top', 'players', 'were', 'selected', 'to', 'compete', 'in', 'these', 'tournaments', '.'], ['he', 'next', 'played', 'in', 'the', '1', '9', '9', '7', 'icc', 'trophy', 'in', 'kuala', 'lumpur', '.'], ['as', 'supreme', 'authority', 'of', 'the', 'church', 'of', 'denmark', ',', 'the', 'monarch', 'must', 'be', 'a', 'member', '(', 'article', '6', 'of', 'the', 'constitution', ')', '.'], ['these', 'training', 'units', 'are', 'not', 'liable', 'for', 'military', 'service', ',', 'rather', ',', 'they', 'provide', 'engagement', 'and', 'military', 'training', 'for', 'undergraduate', 'students', 'at', 'uk', 'universities', '.'], ['he', 'also', 'sat', 'on', 'the', 'board', 'of', 'arbitration', 'and', 'the', 'montreal', 'board', 'of', 'trade', '.'], ['``', 'osoaviakhim-', '1', '``', 'lacked', 'all', 'these', 'safety', 'features', '.'], ['having', 'been', 'exchanged', ',', 'he', 'resumed', 'his', 'command', 'and', 'held', 'it', 'until', 'the', 'close', 'of', 'the', 'war', '.'], ['the', 'family', 'planned', 'to', 'spend', 'the', 'summer', 'of', '1', '9', '4', '1', 'in', 'the', 'countryside', ',', 'but', 'the', 'axis', 'invasion', 'of', 'the', 'soviet', 'union', 'on', '2', '2', 'june', 'disrupted', 'their', 'plans', '.'], ['elsewhere', 'in', 'scrap', 'iron', 'city', ',', 'a', 'lone', 'woman', 'on', 'her', 'way', 'home', 'runs', 'into', 'the', 'criminals', 'rasha', 'and', 'grewcica', '.'], ['a', 'wife', 'being', 'subject', 'to', 'sale', 'was', 'a', 'consequence', 'of', 'her', 'being', 'a', 'man', \"'s\", 'property', ',', 'according', 'to', 'sociologist', 'alvin', 'john', 'schmidt', '.'], ['in', '1', '9', '4', '0', 'a', 'version', 'of', 'the', 'play', 'was', 'produced', 'on', 'broadway', 'by', 'the', 'theater', 'guild', '.'], ['hatsopoulos', 'was', 'an', 'mit', 'phd', 'in', 'mechanical', 'engineering', 'and', 'nomikos', 'a', 'harvard', 'business', 'school', 'graduate', '.'], ['he', 'went', 'to', 'see', 'them', 'and', 'to', 'encourage', 'them', 'to', 'continue', 'their', 'struggle', 'for', 'their', 'rights', ',', 'for', 'their', 'freedoms', '.'], ['investigating', 'the', 'disturbance', ',', 'thomas', 'goes', 'to', 'simon', \"'s\", 'apartment', 'and', 'finds', 'an', 'obituary', 'for', 'a', 'recently', 'deceased', 'korean', 'war', 'veteran', ',', 'colonel', 'arnold', 'hawthorne', ',', 'clipped', 'from', 'a', 'newspaper', 'in', 'chimney', 'rock', ',', 'arizona', '.'], ['these', 'protists', 'include', 'strict', 'aerobes', ',', 'and', 'use', 'photosystems', 'i', 'and', 'ii', 'in', 'order', 'to', 'carry', 'out', 'photosynthesis', 'which', 'produces', 'oxygen', '.'], ['the', 'album', 'was', 'originally', 'released', 'by', 'ariola', 'records', 'in', '1', '9', '8', '3', '.'], ['the', 'number', 'of', 'kw', \"'s\", 'employees', 'rose', 'to', '8', '5', 'after', 'the', 'entry', 'of', 'surikate', 'gmbh', 'in', '2', '0', '0', '9', '.'], ['the', 'term', '``', 'kannywood', \"''\", 'was', 'coined', 'in', '1', '9', '9', '9', ',', 'three', 'years', 'before', 'the', 'term', 'nollywood', 'came', 'about', '.'], ['he', 'believed', 'that', 'if', 'he', 'should', 'be', 'killed', 'in', 'the', 'line', 'of', 'duty', ',', 'it', 'only', 'meant', 'that', 'god', 'had', 'decided', 'to', 'call', 'him', 'and', 'he', 'was', 'ready', 'to', 'meet', 'his', 'destiny', '.'], ['within', 'a', 'running', 'program', 'they', 'are', 'stored', 'in', 'the', 'data', 'control', 'block', '(', 'dcb', ')', ',', 'which', 'is', 'a', 'data', 'structure', 'used', 'to', 'access', 'data', 'sets', ',', 'for', 'example', 'using', 'access', 'methods', '.'], ['likewise', ',', 'imprisonment', 'for', 'tax', 'offenses', 'is', 'uncommon', 'in', 'israel', 'but', ',', 'according', 'to', 'lazar', ',', '``', 'in', 'the', 'territories', 'it', 'is', 'used', 'on', 'a', 'massive', 'scale', 'and', 'for', 'extensive', 'periods', 'of', 'time', '.', \"''\"], ['is', 'a', 'song', 'by', 'american', 'rapper', '2', 'chainz', 'from', 'his', 'second', 'studio', 'album', '``', \"''\", '.'], ['judaeo-catalan', 'was', 'a', 'catalan', 'dialect', 'in', 'catalonia', 'valencia', 'and', 'the', 'balearic', 'islands', 'before', 'the', '1', '4', '9', '2', 'expulsion', 'of', 'the', 'alhambra', 'decree', '.'], ['clash', 'called', '``', 'elmo', \"'s\", 'world', \"''\", '``', 'a', 'colorful', ',', 'lively', 'celebration', 'of', 'creativity', \"''\", 'and', '``', 'one', 'of', 'the', 'most', 'imaginative', 'endeavors', 'i', \"'ve\", 'ever', 'been', 'involved', 'in', \"''\", '.'], ['in', 'a', 'lecture', 'to', 'a', 'group', 'of', 'law', 'students', 'shortly', 'before', 'the', 'decision', 'was', 'released', ',', 'harlan', 'commented', 'that', 'the', 'chinese', 'had', 'long', 'been', 'excluded', 'from', 'american', 'society', '``', 'upon', 'the', 'idea', 'that', 'this', 'is', 'a', 'race', 'utterly', 'foreign', 'to', 'us', 'and', 'never', 'will', 'assimilate', 'with', 'us', '.', \"''\"], ['freight', 'service', 'is', 'provided', 'by', 'the', 'florida', 'gulf', '&', 'amp', ';', 'atlantic', 'railroad', ',', 'which', 'acquired', 'most', 'of', 'the', 'former', 'csx', 'main', 'line', 'from', 'pensacola', 'to', 'jacksonville', 'on', 'june', '1', ',', '2', '0', '1', '9', '.'], ['in', 'germany', ',', 'a', 'physical', '2', '-track', 'cd', 'single', 'was', 'released', '.'], ['after', 'the', 'episode', \"'s\", 'story', 'had', 'been', 'outlined', ',', 'chase', 'wrote', 'the', 'first', 'draft', '.'], ['before', 'the', 'donkeys', 'leave', 'pleasure', 'island', ',', 'the', 'coachman', 'checks', 'them', 'by', 'asking', 'their', 'names', 'to', 'make', 'sure', 'they', 'have', 'lost', 'their', 'ability', 'to', 'vocalize', ',', 'which', 'signifies', 'they', 'are', 'fully', 'transformed', '.'], ['all', 'this', 'feathered', 'society', 'is', 'tolerant', 'of', 'each', 'other', '.'], ['pelinga', 'began', 'to', 'play', 'pool', 'at', 'age', '1', '2', ',', 'drawing', 'inspiration', 'from', 'his', 'favorite', 'singer', 'and', 'actor', ',', 'dean', 'martin', ',', 'whom', 'he', 'emulates', 'in', 'various', 'parts', 'of', 'his', 'life', '.'], ['terry', 'succeeds', 'in', 'getting', 'blotto', ',', 'or', '``', 'paralytic', '.', \"''\"], ['brico', 'remained', 'as', 'music', 'director', 'until', '1', '9', '8', '4', '.'], ['bace', '1', '-as', 'regulates', 'the', 'expression', 'of', 'bace', '1', 'by', 'increasing', 'bace', '1', 'mrna', 'stability', 'and', 'generating', 'additional', 'bace', '1', 'through', 'a', 'post-transcriptional', 'feed-forward', 'mechanism', '.'], ['with', 'a', '7', 'seat', 'majority', ',', 'conservative', 'group', 'leader', 'jeremy', 'pembroke', '(', 'cosford', ')', 'became', 'the', 'new', 'council', 'leader', '.'], ['virginia', 'then', 'continued', 'to', 'move', 'north', 'and', 'then', 'northeast', 'until', 'its', 'dissipation', 'on', 'june', '2', '8', '.'], ['early', 'in', 'the', 'battle', 'of', 'tassafaronga', ',', '``', 'new', 'orleans', \"''\", 'took', 'a', 'torpedo', 'hit', 'in', 'its', 'port', 'bow', 'which', 'exploded', 'two', 'magazines', 'and', 'blew', 'off', 'the', 'forward', 'part', 'of', 'the', 'ship', 'back', 'to', 'no', '.'], ['bermuda', 'now', 'has', 'one', 'of', 'the', 'highest', 'per', 'capita', 'incomes', 'in', 'the', 'world', ',', 'which', 'is', 'mainly', 'fuelled', 'by', 'offshore', 'financial', 'services', 'for', 'non-resident', 'firms', ',', 'especially', 'offshore', 'insurance', 'and', 'reinsurance', ',', 'and', 'tourism', '.'], ['at', 'the', 'time', 'of', 'its', 'creation', ',', 'the', 'lab', 'was', 'one', 'of', 'the', 'most', 'advanced', 'in', 'the', 'world', 'for', 'this', 'purpose', '.'], ['the', 'eu', '0', '7', '-', '3', '3', '0', 'locomotive', 'became', 'the', 'ep', '0', '7', '-', '3', '3', '0', 'locomotive', ')', '.'], ['duterte', 'launched', 'an', 'anti-drug', 'campaign', 'and', 'an', 'infrastructure', 'plan', '.'], ['hekmatyar', 'has', 'been', 'criticized', 'for', 'killing', 'other', '``', 'mujahideen', \"''\", 'and', 'attacking', 'civilian', 'populations', ',', 'including', 'shelling', 'kabul', 'with', 'american-supplied', 'weapons', ',', 'causing', '2', ',', '0', '0', '0', 'casualties', '.'], ['in', '1', '9', '9', '0', ',', 'penrith', 'reached', 'their', 'first', 'grand', 'final', 'against', 'the', 'canberra', 'raiders', '.'], ['this', 'in', 'turn', 'leads', 'to', 'increased', 'extracellular', 'concentrations', 'of', 'norepinephrine', 'and', 'epinephrine', 'therefore', 'an', 'increase', 'in', 'adrenergic', 'neurotransmission', '.'], ['the', 'album', 'was', 'included', 'in', 'the', 'book', '``', '1', '0', '0', '1', 'albums', 'you', 'must', 'hear', 'before', 'you', 'die', \"''\", '.'], ['acting', 'under', 'chapter', 'vii', 'of', 'the', 'united', 'nations', 'charter', ',', 'the', 'oil-for-food', 'programme', ',', 'in', 'its', 'thirteenth', 'stage', ',', 'was', 'extended', 'for', 'a', 'further', '1', '8', '0', 'days', 'beginning', 'at', '0', '0', ':', '0', '1', 'est', 'on', '5', 'december', '2', '0', '0', '2', '.'], ['in', 'new', 'zealand', ',', 'the', 'record', 'also', 'debuted', 'at', 'the', 'top', 'spot', 'on', 'the', 'official', 'new', 'zealand', 'music', 'chart', ',', 'and', 'became', 'pink', \"'s\", 'third', 'number', 'one', 'album', '.'], ['on', 'april', '2', '7', ',', '2', '0', '0', '6', 'the', 'station', 'was', 'granted', 'a', 'construction', 'permit', 'by', 'the', 'federal', 'communications', 'commission', 'to', 'change', 'its', 'community', 'of', 'license', 'from', 'selma', 'to', 'orrville', ',', 'alabama', '.'], ['in', '1', '9', '3', '8', ',', 'johnson', 'attended', 'infantry', 'school', 'at', 'fort', 'benning', '.'], ['at', 'the', '2', '0', '0', '6', 'census', ',', 'its', 'population', 'was', '2', '3', '1', ',', 'in', '5', '0', 'families', '.'], ['noah', 'james', 'shebib', '(', 'born', 'march', '3', '1', ',', '1', '9', '8', '3', ')', ',', 'better', 'known', 'as', '4', '0', ',', 'is', 'a', 'canadian', 'record', 'producer', ',', 'songwriter', ',', 'record', 'executive', ',', 'and', 'former', 'child', 'actor', 'from', 'toronto', ',', 'ontario', '.'], ['mexico', 'is', 'one', 'of', 'the', 'world', \"'s\", 'largest', 'producers', 'and', 'consumers', 'of', 'pork', 'rinds', ',', 'known', 'as', '.'], ['in', 'recent', 'years', ',', 'average', 'temperatures', 'in', 'indianapolis', 'have', 'ranged', 'from', 'a', 'low', 'of', 'in', 'january', 'to', 'a', 'high', 'of', 'in', 'july', ',', 'although', 'a', 'record', 'low', 'of', 'was', 'recorded', 'in', 'january', '1', '9', '8', '5', 'and', 'a', 'record', 'high', 'of', 'was', 'recorded', 'in', 'june', '1', '9', '8', '8', '.'], ['ouled', 'hedadj', 'is', 'a', 'town', 'and', 'commune', 'in', 'boumerdès', 'province', ',', 'algeria', '.'], ['the', 'same', 'scholars', 'emphasize', 'that', 'the', 'romanians', 'directly', 'inherited', 'the', 'basic', 'christian', 'terminology', 'from', 'latin', ',', 'which', 'also', 'substantiates', 'the', 'connection', 'between', 'christian', 'objects', 'and', 'the', 'romanians', \"'\", 'ancestors', '.'], ['connery', 'was', 'first', 'elected', 'to', 'the', 'manitoba', 'legislature', 'in', 'the', '1', '9', '8', '6', 'provincial', 'election', ',', 'in', 'the', 'safe', 'tory', 'seat', 'of', 'portage', 'la', 'prairie', '.'], ['the', 'sets', 'are', 'formed', 'as', 'shown', 'below', 'with', 'four', 'motored', '(', '``', 'm', \"''\", ')', 'intermediate', 'cars', 'and', 'non-powered', 'driving', 'trailer', '(', '``', 'tc', \"''\", ')', 'cars', ',', 'with', 'car', '1', 'at', 'the', 'nishi-karatsu', 'end', '.'], ['he', 'retired', 'on', '2', 'january', '1', '9', '5', '7', '(', 'his', '6', '3', 'rd', 'birthday', ')', 'and', 'joined', 'the', 'board', 'of', 'securicor', ',', 'serving', 'as', 'chairman', 'from', '1', '9', '6', '0', 'to', '1', '9', '7', '3', ',', 'when', 'he', 'became', 'honorary', 'president', '.'], ['it', 'used', 'radio', 'link', 'time', 'out', 'technology', 'without', 'which', 'the', 'call', 'drop', 'rates', 'will', 'be', 'significantly', 'higher', 'and', 'many', 'customers', 'reported', 'this', '.'], ['his', 'son', 'pierre-amable', 'served', 'as', 'a', 'member', 'of', 'the', 'legislative', 'council', 'for', 'the', 'province', 'of', 'canada', '.'], ['in', '1', '9', '2', '1', 'she', 'helped', 'found', 'the', 'australian', 'federation', 'of', 'women', 'voters', 'and', 'lobbied', 'the', 'league', 'of', 'nations', '(', 'now', 'the', 'united', 'nations', ')', 'on', 'behalf', 'of', 'australian', 'women', '.'], ['on', 'successful', 'subjugation', 'of', 'the', 'chola', 'and', 'pandya', 'kingdoms', ',', 'krishna', 'deva', 'raya', 'divided', 'the', 'region', 'into', 'three', 'governorates', 'and', 'placed', 'each', 'of', 'them', 'under', 'a', 'nayak', 'or', 'viceroy', '-', 'madurai', ',', 'thanjavur', 'and', 'gingee', '.'], ['the', '1', '2', 'th-century', 'shell', 'keep', 'is', 'the', 'earliest', 'part', 'of', 'the', 'structure', ',', 'with', 'this', 'form', 'of', 'keep', 'being', 'common', 'in', 'england', ',', 'but', 'rare', 'in', 'ireland', '.'], ['the', 'earliest', 'building', 'in', 'the', 'district', 'was', 'built', 'in', '1', '8', '2', '6', ',', 'while', 'the', 'latest', 'were', 'built', 'in', 'the', '1', '8', '9', '0', 's', '.'], ['the', 'film', 'was', 'remade', 'into', 'telugu', 'as', '``', 'adavilo', 'abhimanyudu', \"''\", ',', 'starring', 'jagapathi', 'babu', '.'], ['joy', 'senior', 'secondary', 'school', ',', 'jabalpur', ',', 'india', ',', 'was', 'established', 'in', '1', '9', '8', '6', '.'], ['following', 'her', 'decommissioning', ',', 'she', 'was', 'purchased', 'by', 'radio', 'caroline', 'and', 'outfitted', 'as', 'a', 'radio', 'ship', ',', 'complete', 'with', 'antenna', 'mast', 'and', 'transmitter', '.'], ['williams', ',', 'a', 'pioneer', 'nigerian', 'lawyer', ',', 'introduced', 'adedoyin', 'to', 'many', 'lagos', 'elites', 'and', 'the', 'influence', 'of', 'williams', 'in', 'his', 'life', 'led', 'him', 'to', 'adopt', 'the', 'name', 'christopher', 'william', '.'], ['this', 'is', 'because', 'the', 'athletes', 'are', 'playing', 'with', 'full', 'effort', ',', 'and', 'the', 'hits', 'are', 'more', 'severe', 'therefore', 'the', 'chances', 'of', 'concussion', 'rise', 'significantly'], ['the', 'average', 'household', 'size', 'was', '3', '.', '0', '5', '.'], ['she', 'reveals', 'she', 'saw', 'a', 'villager', 'being', 'attacked', 'by', 'a', 'drokken', 'in', 'her', 'vision', ',', 'and', 'a', 'crowd', 'draws', ',', 'declaring', 'her', 'cursed', '.'], ['the', 'paper', 'doll', 'family', 'was', 'posed', 'dancing', 'barefoot', ',', 'dressed', 'in', 'tattered', 'clothing', ',', 'and', 'the', 'box', 'was', 'labeled', '``', 'before', 'the', 'receipt', 'was', 'sold', '.', \"''\"], ['construction', 'of', 'the', '4', '0', '0', 'bed', 'facility', 'began', 'in', '2', '0', '0', '4', ',', 'with', 'the', 'first', 'patients', 'admitted', 'in', '2', '0', '0', '7', '.'], ['the', 'speech', 'is', 'on', 'the', 'memory', 'of', 'the', 'world', 'register', 'of', 'unesco', ',', 'a', 'list', 'of', 'world', \"'s\", 'important', 'documentary', 'heritage', '.'], ['the', 'play', 'was', \"n't\", 'professionally', 'produced', 'with', 'hemingway', \"'s\", 'original', 'script', 'until', '2', '0', '0', '8', 'when', 'mint', 'theater', 'company', 'staged', 'the', 'play'], ['louis', 'post', 'at', 'the', 'department', 'of', 'labor', ',', 'which', 'had', 'ultimate', 'authority', 'over', 'deportation', 'decisions', ',', 'determined', 'that', 'the', 'revocation', 'of', 'her', 'husband', 'kershner', \"'s\", 'american', 'citizenship', 'in', '1', '9', '0', '8', 'after', 'his', 'conviction', 'had', 'revoked', 'hers', 'as', 'well', '.'], ['the', 'decree', 'was', 'repeated', 'several', 'times', 'by', 'later', 'counts', ',', 'for', 'example', 'in', '1', '3', '4', '3', 'and', 'in', '1', '3', '7', '5', '.'], ['in', 'march', '2', '0', '1', '6', 'the', 'school', 'was', 'placed', 'in', 'special', 'measures', 'after', 'an', 'ofsted', 'report', 'found', 'it', 'to', 'be', 'inadequate', 'in', 'every', 'area', 'except', 'its', 'sixth', 'form', ',', 'which', 'followed', 'a', 'serious', 'decline', 'in', 'examination', 'results', 'over', 'the', 'previous', 'two', 'years', '.'], ['here', 'formula_', '6', 'and', 'formula_', '7', 'are', '4', '-spinor', 'solution', 'of', 'the', 'dirac', 'equation', 'normalized', 'so', 'that', 'formula_', '8', ',', 'and', 'formula_', '9', 'is', 'the', 'momentum', 'transfer', 'from', 'the', 'current', 'to', 'the', 'electron', '.'], ['his', 'version', 'of', 'd.', 'h.', 'lawrence', \"'s\", 'novel', '``', 'sons', 'and', 'lovers', \"''\", '(', '1', '9', '6', '0', ')', ',', 'starring', 'trevor', 'howard', ',', 'wendy', 'hiller', 'and', 'dean', 'stockwell', ',', 'was', 'a', 'hit', ',', 'critically', 'and', 'at', 'the', 'box-office', '.'], ['hilldale', 'was', 'acquired', 'by', 'joseph', 'freed', 'and', 'associates', 'llc', 'in', '2', '0', '0', '4', 'and', 'completed', 'a', 'major', 'redevelopment/expansion', 'in', '2', '0', '0', '6', '.'], ['tuba/euphonium', 'quartet', ',', 'timothy', 'mcallister', ',', 'northwestern', 'university', ',', 'joseph', 'lulloff', ',', 'michigan', 'state', 'university', ',', 'michael', 'burritt', ',', 'the', 'eastman', 'school', 'of', 'music', ',', 'among', 'others', ')', '.'], ['the', 'polish-american', 'fighter', 'ace', 'francis', 's.', '``', 'gabby', \"''\", 'gabreski', 'flew', 'his', 'first', 'combat', 'missions', 'attached', 'to', 'a', 'polish', 'raf', 'squadron', '.'], ['the', 'attic', 'rooms', 'were', 'once', 'used', 'to', 'house', 'italian', 'stonemasons', 'who', 'were', 'constructing', 'buildings', 'and', 'residences', 'in', 'the', 'area', '.'], ['it', 'is', 'also', 'the', 'publisher', 'of', 'the', 'magazine', '``', 'scientific', 'notes', 'university', 'lesgaft', \"''\", 'and', 'the', 'newspaper', '``', 'lesgaftovets', \"''\", '(', '``', 'for', 'physical', 'training', 'cadres', \"''\", ')', '.'], ['in', 'october', '1', '9', '9', '3', ',', 'was', 'assigned', 'photographer', 'for', 'fuji', 'television', \"'s\", '``', 'iron', 'chef', '.', \"''\"], ['=', 'batting', 'average', ';', 'hr', '=', 'home', 'runs', ';', 'rbi', '=', 'runs', 'batted', 'in', \"''\"], ['on', 'april', '2', '5', ',', '2', '0', '2', '0', ',', 'the', 'first', 'new', 'testing', 'site', 'was', 'launched', 'in', 'des', 'moines', 'under', 'the', 'new', 'initiative', '``', 'testiowa.com', \"''\", '.'], ['in', 'the', 'central', 'swedish', 'dialect', 'of', 'stockholm', ',', 'accent', '1', 'is', 'an', 'lhl', 'contour', 'and', 'accent', '2', 'is', 'an', 'hlhl', 'contour', ',', 'with', 'the', 'second', 'peak', 'in', 'the', 'second', 'syllable', '.'], ['his', 'administration', 'successfully', 'raised', 'spending', 'on', 'public', 'education', ',', 'formed', 'a', 'commission', 'on', 'aging', ',', 'and', 'joined', 'a', 'tri-state', 'water-power', 'consortium', '.'], ['berta', 'was', 'born', 'on', 'march', '2', '1', ',', '1', '9', '0', '2', ',', 'in', 'pindamonhangaba', ',', 'são', 'paulo', ',', 'brazil', '.'], ['the', 'cubs', 'reached', 'the', '1', '9', '1', '0', 'world', 'series', ',', 'and', 'though', 'tinker', 'batted', '.', '3', '3', '3', 'in', 'the', 'series', ',', 'the', 'cubs', 'lost', 'to', 'the', 'philadelphia', 'athletics', 'in', 'five', 'games', '.'], ['during', 'the', 'late', '1', '9', '5', '0', 's', ',', 'one', 'of', 'the', 'units', 'was', 'stationed', 'as', 'voss', 'station', 'for', 'shunting', 'duty', '.'], ['from', 'here', ',', 'the', 'route', 'is', 'not', 'signposted', 'anymore', ',', 'but', 'the', 'peak', 'can', 'be', 'reached', 'relatively', 'easily', ',', 'by', 'heading', 'towards', 'the', 'abandoned', 'bunker', 'slits', ',', 'then', 'climbing', 'up', 'on', 'the', 'right', 'hand', 'side', 'on', 'the', 'ledge', 'above', 'them', '.'], ['within', '5', 'km', 'to', '1', '0', 'km', 'radius', ',', 'early', 'harappan', 'sites', 'are', 'lohari', 'ragho', '1', ',', 'lohari', 'ragho', '2', 'and', 'kheri', 'lochab-kheri', 'jalab', '.'], ['holopainen', 'was', 'surprised', 'that', 'the', 'recording', 'finished', 'ahead', 'of', 'schedule', ':', '``', 'i', 'think', 'it', 'was', 'because', 'everything', 'was', 'so', 'well-rehearsed', 'this', 'time', '.'], ['in', 'honor', 'of', 'the', 'renovation', ',', 'central', 'university', 'decided', 'to', 'rename', 'the', 'school', 'as', 's.p', '.'], ['the', '``', 'rspb', 'date', 'with', 'nature', \"''\", 'site', 'at', 'pont', 'croesor', 'aimed', 'to', 'introduce', 'people', 'to', 'the', 'wildlife', 'in', 'the', 'area', ',', 'inform', 'the', 'public', 'on', 'conservation', 'projects', 'done', 'by', 'the', 'rspb', 'and', 'ensure', '2', '4', '-hour', 'protection', 'of', 'the', 'eggs', 'in', 'the', 'nest', '.'], ['elachistocleis', 'ovalis', ',', 'commonly', 'known', 'as', 'the', 'common', 'oval', 'frog', ',', 'is', 'a', 'dubious', 'species', 'of', 'frog', 'in', 'the', 'family', 'microhylidae', '.'], ['three', 'corsican', 'divers', ',', 'felix', 'biancamaria', ',', 'his', 'brother', 'angel', ',', 'and', 'their', 'friend', 'marc', 'cotoni', 'were', 'involved', 'in', 'these', 'finds', ',', 'and', 'were', 'convicted', 'in', '1', '9', '9', '4', 'in', 'court', 'for', 'illegal', 'antiquity', 'trade', '.'], ['the', 'town', 'played', 'a', 'key', 'role', 'in', 'the', 'first', 'and', 'second', 'intifadas', ',', 'with', 'local', 'activists', 'pioneering', 'nonviolent', 'resistance', 'techniques', '.'], ['green', 'turned', 'pro', 'in', '1', '9', '7', '9', 'and', 'joined', 'the', 'pga', 'tour', 'in', '1', '9', '8', '0', '.'], ['3', 'mario', 'parial', 'paintings', 'have', 'been', 'sold', 'at', 'sothebys', '.'], ['other', 'nearby', 'railway', 'stations', 'are', 'kumbalam', 'railway', 'station', '(', '2', 'km', ')', ',', 'tripunithura', 'railway', 'station', '(', '5', 'km', ')', 'and', 'ernakulam', 'junction', 'railway', 'station', '(', '5', 'km', ')', '.'], ['the', 'aircraft', 'was', 'received', 'in', 'karachi', 'with', 'at', 'least', '5', '0', ',', '0', '0', '0', 'testing', 'kits', ',', 'large', 'number', 'of', 'face', 'masks', ',', 'ventilators', ',', 'and', 'personal', 'protective', 'equipment', '(', 'ppe', ')', ',', 'which', 'were', 'combined', 'around', 'two', 'tonnes', 'of', 'supplies', 'worth', 'rs', '6', '7', 'million', '.'], ['available', 'also', 'for', 'any', 'commonwealth', 'country', 'citizen', 'who', 'has', 'lived', 'in', 'belize', 'for', 'a', 'year', 'without', 'leaving', 'and', 'been', 'at', 'least', '2', 'months', 'in', 'an', 'area', 'where', 'the', 'person', 'has', 'been', 'registered', 'in', '.'], ['the', 'school', 'was', 'founded', 'in', '2', '0', '1', '0', 'with', 'the', 'purpose', 'of', 'developing', 'creative', 'leaders', 'to', '``', 'turn', 'global', 'challenges', 'and', 'crises', 'into', 'opportunities', ',', 'the', 'ultimate', 'goal', 'being', 'to', 'achieve', 'a', 'more', 'meaningful', 'and', 'sustainable', 'way', 'of', 'life', '.', \"''\"], ['in', 'september', '2', '0', '1', '7', ',', 'the', 'company', 'launched', 'its', 'kotipizza', 'go', 'pizza', 'slice', 'concept', '.'], ['for', '2', '0', '0', '1', ',', 'he', 'reluctantly', 'made', 'a', 'surprise', 'return', 'to', 'the', 'british', 'championship', 'for', 'peugeot', '.'], ['the', 'muppet', 'elmo', ',', 'who', 'represented', 'the', 'three-', 'to', 'four-year-old', 'child', ',', 'was', 'chosen', 'as', 'host', 'of', '``', 'elmo', \"'s\", 'world', \"''\", 'because', 'he', 'had', 'always', 'tested', 'well', 'with', '``', 'sesame', 'street', \"''\", 's', 'younger', 'viewers', '.'], ['the', 'school', 'district', 'currently', 'runs', 'four', 'schools', ',', 'and', 'serves', 'students', 'from', 'kindergarten', 'age', 'to', 'senior', 'year', '.'], ['in', 'early', '2', '0', '1', '9', ',', 'woozworld', 'announced', 'that', 'it', 'would', 'be', 'releasing', 'a', 'beta', 'version', 'of', 'the', 'game', '.'], ['in', 'order', 'to', 'generate', 'some', 'revenue', ',', 'the', 'company', 'opened', 'the', 'line', 'to', 'goods', 'traffic', '(', 'which', 'did', 'not', 'require', 'board', 'of', 'trade', 'approval', ')', 'on', '2', '1', 'april', '1', '8', '8', '9', ',', 'and', 'rich', 'approved', 'the', 'line', 'on', 'his', 'third', 'visit', 'on', '1', '5', 'may', '.'], ['as', 'of', 'january', '2', '0', '1', '1', 'nearly', '4', ',', '0', '0', '0', 'hectares', '(', '9', ',', '8', '7', '0', 'acres', ')', 'are', 'in', 'various', 'stages', 'of', 'reflooding', '.'], ['the', 'kailuan', '(', 'group', ')', 'co.', ',', 'ltd.', '(', ')', 'is', 'a', 'major', 'chinese', 'coal', 'mining', 'company', '.'], ['the', 'burrowing', 'activities', 'of', 'benthic', 'invertebrates', 'have', 'a', 'pronounced', 'effect', 'on', 'sediment', 'properties', 'and', 'biochemical', 'processes', '.'], ['he', 'belongs', 'to', 'the', 'famous', 'deobandi', 'muslim', 'family', 'of', 'maulana', 'husain', 'ahmad', 'madani', '.'], ['one', 'day', ',', 'when', 'maya', 'was', 'going', 'over', 'to', 'his', 'house', 'for', 'dinner', 'with', 'him', 'and', 'his', 'childish', 'older', 'sister', ',', 'annie', ',', 'she', 'is', 'attacked', 'by', 'someone', 'looking', 'for', 'rafe', '.'], ['following', 'the', 'completion', 'of', 'the', '2', '0', '2', '0', 'uci', 'track', 'cycling', 'world', 'championships', ',', 'portugal', 'entered', 'one', 'rider', 'to', 'compete', 'in', 'the', 'women', \"'s\", 'omnium', 'based', 'on', 'her', 'final', 'individual', 'uci', 'olympic', 'rankings', '.'], ['nault', 'was', 'also', 'choreographer', 'and', 'ballet', 'master', 'for', 'the', 'école', 'supérieure', 'de', 'danse', 'du', 'québec', ',', 'the', 'school', 'established', 'by', 'madame', 'chiriaeff', 'in', '1', '9', '6', '6', '.'], ['the', 'sandbach', 'concert', 'series', 'is', 'a', 'series', 'of', 'eight', 'monthly', 'concerts', 'per', 'year', ',', 'that', 'takes', 'place', 'in', 'sandbach', ',', 'cheshire', '.'], ['he', 'is', 'the', 'founder', 'and', 'editor-in-chief', 'of', 'the', 'magazine', 'nova', 'srpska', 'politička', 'misao', '.'], ['attendance', 'was', '1', '0', '3', '0', '0', '0', 'strong', 'and', 'brian', 'vickers', '(', 'driving', 'a', 'toyota', 'camry', ')', 'won', 'the', 'race', '.'], ['in', 'january', '1', '9', '9', '4', ',', 'galloway', 'faced', 'some', 'of', 'his', 'strongest', 'criticism', 'on', 'his', 'return', 'from', 'a', 'middle', 'eastern', 'visit', 'during', 'which', 'he', 'had', 'met', 'saddam', 'hussein', '.'], ['his', 'descendants', 'include', 'first', 'lords', 'of', 'the', 'admiralty', ',', 'secretaries', 'of', 'state', ',', 'keepers', 'of', 'the', 'privy', 'seal', ',', 'first', 'lords', 'of', 'the', 'treasury', 'and', 'prime', 'minister', 'lord', 'palmerston', ',', 'whose', 'name', 'came', 'from', 'the', 'family', 'estate', 'that', 'is', 'now', 'a', 'dublin', 'village', '.'], ['like', 'before', ',', 'the', 'board', 'consisted', 'of', 'four', 'lines', 'and', 'fourteen', 'letters', '.'], ['there', 'is', 'a', 'former', 'modlin', 'fortress', 'holding', 'a', 'junction', 'of', 'the', 'two', 'rivers', ',', 'built', 'in', 'the', '1', '9', 'th', 'century', ',', 'and', 'last', 'used', 'during', 'world', 'war', 'ii', '.'], ['in', 'the', 'leadup', 'to', 'the', 'november', '2', '0', '1', '5', 'general', 'election', ',', 'various', 'organisations', 'carried', 'out', 'opinion', 'polling', 'to', 'gauge', 'voting', 'intention', '.'], ['he', 'was', 'born', 'in', 'israel', ',', 'and', 'is', 'jewish', '.'], ['piermont', 'is', 'north', 'of', 'lebanon', 'and', 'southwest', 'of', 'berlin', ',', 'new', 'hampshire', '.'], ['the', 'province', \"'s\", 'economy', 'is', 'heavily', 'dependent', 'on', 'the', 'extraction', 'of', 'natural', 'resources', ',', 'and', 'it', 'relies', 'heavily', 'on', 'industrial', 'forestry', '.'], ['she', 'was', 'also', 'the', 'leader', 'of', 'the', 'national', 'farmer', \"'s\", 'party', ',', 'before', 'leaving', 'in', '2', '0', '0', '9', '.'], ['many', 'families', 'in', 'those', 'cities', 'prepare', 'a', '``', 'st.', 'joseph', \"'s\", 'day', 'table', \"''\", ',', 'at', 'which', 'relatives', 'or', 'neighbors', 'portray', 'jesus', ',', 'joseph', 'and', 'mary', 'and', 'oversee', 'the', 'serving', 'of', 'meat-free', 'lenten', 'meals', 'to', 'the', 'poor', 'of', 'the', 'community', '.'], ['in', '1', '8', '8', '5', ',', 'rowe', 'transitioned', 'from', 'a', 'catcher', 'to', 'a', 'shortstop', ',', 'catching', '2', '3', 'games', 'and', 'playing', 'shortstop', 'in', '6', '5', 'games', '.'], ['such', 'stars', 'can', 'explode', 'as', 'type', 'ii-l', 'supernovae', ',', 'still', 'with', 'hydrogen', 'in', 'their', 'spectra', 'but', 'not', 'with', 'sufficient', 'hydrogen', 'to', 'cause', 'an', 'extended', 'brightness', 'plateau', 'in', 'their', 'light', 'curves', '.'], ['in', 'may', '2', '0', '0', '9', ',', 'mackay', 'transferred', 'from', 'livingston', 'to', 'st', 'johnstone', ',', 'who', 'had', 'won', 'promotion', 'to', 'the', 'scottish', 'premier', 'league', '.'], ['this', 'event', 'is', 'not', 'a', 'contest', 'in', 'any', 'way', '.'], ['she', 'directed', 'psychological', 'thriller', '``', 'requiem', \"''\", 'and', 'the', 'tv', 'adaption', 'of', 'andrea', 'levy', \"'s\", 'novel', 'about', 'the', 'last', 'days', 'of', 'slavery', 'in', 'jamaica', ',', '``', 'the', 'long', 'song', \"''\", ',', 'both', 'of', 'which', 'were', 'broadcast', 'in', '2', '0', '1', '8', '.'], ['this', 'hypothesis', 'has', 'since', 'been', 'confirmed', 'and', 'extended', 'to', 'hemoglobin', 'e', ',', 'hemoglobin', 'c', 'and', 'hemoglobin', 's', '.'], ['highway', '1', '6', 'winds', 'east', ',', 'briefly', 'reentering', 'newton', 'county', ',', 'returning', 'to', 'pope', 'county', ',', 'and', 'reentering', 'newton', 'county', 'to', 'pass', 'through', 'ben', 'hur', ',', 'before', 'returning', 'to', 'pope', 'county', 'and', 'running', 'toward', 'raspberry', '.'], ['the', 'newspaper', 'has', 'won', 'numerous', 'awards', ',', 'and', 'five', 'editions', 'are', 'produced', 'each', 'year', '.'], ['his', 'first', 'marriage', ',', 'in', '7', '2', '7', ',', 'in', 'anlu', ',', 'hubei', ',', 'was', 'to', 'the', 'granddaughter', 'of', 'a', 'former', 'government', 'minister', '.'], ['the', 'name', 'peebles', \"'\", 'corner', 'caught', 'on', 'with', 'the', 'public', 'when', 'the', 'store', 'owners', 'persuaded', 'conductors', 'to', 'announce', 'their', 'store', 'as', 'a', 'stop', 'on', 'cincinnati', 'streetcars', '.'], ['it', 'has', 'a', 'slender', 'body', 'that', 'is', 'brown', 'in', 'colour', ',', 'with', 'irregular', 'dark', 'markings', '.'], ['in', '2', '0', '1', '1', 'the', 'new', 'zealand', 'government', 'established', 'the', 'game', 'animal', 'council', 'to', 'manage', 'game', 'animals', '.'], ['bonga', '(', ')', 'is', 'a', 'rural', 'locality', '(', 'a', 'settlement', ')', 'in', 'kisnemskoye', 'rural', 'settlement', ',', 'vashkinsky', 'district', ',', 'vologda', 'oblast', ',', 'russia', '.'], ['a', 'loading', 'bank', 'and', 'rails', 'under', 'a', 'loading', 'chute', 'exist', 'in', 'kaikohe', ',', 'and', 'in', 'ōkaihau', ',', 'the', 'flat', 'area', 'of', 'the', 'yard', ',', 'the', 'tunnel', 'leading', 'to', 'rangiahua', 'and', 'the', 'platform', 'are', 'very', 'apparent', '.'], ['her', 'landscape', 'and', 'portrait', 'pieces', 'were', 'displayed', 'at', 'the', 'woodstock', 'artists', 'association', 'museum', '.'], ['kawai', 'also', 'manufactured', 'rack', 'versions', 'of', 'most', 'of', 'these', 'instruments', ',', 'kawai', 'q-', '8', '0', 'midi', 'sequencer', '(', '1', '9', '8', '8', ')', ',', 'and', 'an', 'external', 'midi', 'programming', 'device', ',', 'mm-', '1', '6', 'midi', 'mixer', '(', 'midi', 'processor', 'with', 'slider', 'controllers', ')', '.'], ['he', 'grew', 'up', 'in', 'staten', 'island', 'in', 'new', 'york', 'city', ',', 'and', 'attended', 'monsignor', 'farrell', 'high', 'school', ',', 'where', 'he', 'graduated', 'in', '1', '9', '8', '5', '.'], ['celenza', 'was', 'born', 'in', '1', '9', '6', '7', 'in', 'cleveland', ',', 'ohio', '.'], ['his', 'professors', 'at', 'ucla', 'included', 'anthony', 'seeger', ',', 'susan', 'mcclary', ',', 'edwin', 'seroussi', ',', 'tara', 'browner', ',', 'ali', 'jihad', 'racy', ',', 'and', 'jacqueline', 'djedje', '.'], ['after', 'finishing', 'school', ',', 'she', 'trained', 'and', 'worked', 'as', 'a', 'dental', 'nurse', 'until', 'she', 'married', 'at', 'age', 'twenty', '.'], ['in', 'the', 'early', '1', '9', '8', '0', 's', ',', 'hamad', 'led', 'the', 'supreme', 'planning', 'council', ',', 'which', 'sets', 'qatar', \"'s\", 'basic', 'economic', 'and', 'social', 'policies', '.'], ['nevertheless', ',', 'when', 'hanina', 'died', ',', 'due', 'to', 'his', 'greatness', 'a', 'pillar', 'of', 'fire', 'appeared', 'to', 'separate', 'his', 'body', 'from', 'the', 'living', '.'], ['he', 'enjoyed', 'a', 'long', 'military', 'career', ',', 'having', 'served', 'in', 'the', 'soviet', 'army', 'as', 'a', 'simple', 'soldier', 'long', 'before', 'world', 'war', 'ii', '.'], ['in', 'the', 'year', '2', '0', '0', '5', 'the', 'number', 'of', 'deportations', 'reached', '2', '0', '8', ',', '5', '2', '1', 'with', 'less', 'than', 'half', 'being', 'deported', 'under', 'criminal', 'grounds', '.'], ['the', 'average', 'household', 'size', 'was', '1', '.', '9', '1', 'and', 'the', 'average', 'family', 'size', 'was', '2', '.', '4', '0', '.'], ['he', 'spoke', 'in', 'favour', 'of', 'a', 'cost-benefit', 'analysis', 'of', 'the', 'proposed', 'slane', 'bypass', 'in', 'february', '2', '0', '1', '1', '.'], ['instead', 'of', 'focusing', 'on', 'racial', 'differences', 'and', 'looking', 'at', 'groups', \"'\", 'needs', 'separately', ',', 'the', 'military', 'government', 'wanted', 'to', 'view', 'brazilian', 'society', 'as', 'one', 'where', 'everyone', 'was', 'equal', ',', 'irrespective', 'of', 'ethnic', 'background', 'whether', 'this', 'was', 'realistic', 'or', 'not', '.'], ['2', '5', '.', '6', '%', 'of', 'households', 'were', 'one', 'person', 'and', '9', '.', '3', '%', 'were', 'one', 'person', 'aged', '6', '5', 'or', 'older', '.'], ['her', 'installation', 'wreaking', 'ball', 'cloud', 'appeared', 'in', 'the', '9', 'th', 'northwest', 'biennial', '2', '0', '0', '9', 'at', 'the', 'tacoma', 'art', 'museum', 'in', 'tacoma', ',', 'washington', '.'], ['the', 'first', 'experiment', 'in', 'political', 'science', 'is', 'regarded', 'to', 'be', 'harold', 'gosnell', \"'s\", '1', '9', '2', '4', 'study', 'on', 'voter', 'turnout', 'in', 'chicago', '.'], ['because', 'of', 'a', 'surplus', 'in', '2', '0', '1', '6', ',', 'the', 'country', 'was', 'no', 'longer', 'bound', 'by', 'the', 'excessive', 'deficit', 'procedure', 'which', 'had', 'been', 'implemented', 'during', 'an', 'earlier', 'financial', 'crisis', '.'], ['the', 'estimated', 'economic', 'impact', 'of', 'that', 'year', \"'s\", 'convention', 'was', '$', '1', '8', '0', 'million', '.'], ['the', 'average', 'household', 'size', 'was', '2', '.', '9', '3', 'and', 'the', 'average', 'family', 'size', 'was', '3', '.', '2', '0', '.'], ['it', 'is', 'a', 'part', 'of', 'the', 'larger', 'nigerian', 'cinema', ',', 'known', 'as', 'nollywood', ',', 'which', 'includes', 'other', 'production', 'centres', 'producing', 'films', 'in', 'many', 'other', 'nigerian', 'languages', '.'], ['(', '2', '0', 'pupils', 'enrolled', ')', '&', 'lt', ';', 'br', '&', 'gt', ';'], ['scandinavian', 'nights', 'is', 'a', 'double', 'live', 'album', 'by', 'the', 'british', 'hard', 'rock', 'band', 'deep', 'purple.it', 'was', 'recorded', 'in', 'the', 'stockholm', 'konserthuset', 'on', '1', '2', 'november', '1', '9', '7', '0', '.'], ['the', 'brothers', 'have', 'links', 'to', 'a', 'notorious', 'perth', 'asian', 'street', 'gang', 'jailed', 'for', 'their', 'involvement', 'in', 'the', '2', '0', '1', '3', 'extortion', 'of', 'a', 'karaoke', 'bar', '.'], ['a', 'new', 'police', 'station', 'was', 'built', 'in', '1', '9', '7', '4', ',', 'which', 'underwent', 'a', 'major', 'refurbishment', 'in', '2', '0', '1', '1', ',', 'to', 'become', 'a', 'police', 'force', 'hub', 'for', 'mid', 'devon', ',', 'with', '7', '2', 'staff', 'members', '.'], ['it', 'now', 'presents', 'festivals', ',', 'retrospectives', ',', 'and', 'assorted', 'programs', 'at', 'these', 'two', 'theaters', '.'], ['eagle', 'creek', 'airpark', 'covers', 'an', 'area', 'of', 'at', 'an', 'elevation', 'of', '8', '2', '3', 'feet', '(', '2', '5', '1', 'm', ')', 'above', 'mean', 'sea', 'level', '.'], ['in', 'doing', 'so', ',', 'sister', 'jamison', 'is', 'left', 'to', 'prevent', 'cody', 'from', 'self-destructing', 'with', 'his', 'crystal', 'meth', 'addiction', ',', 'while', 'confronting', 'her', 'own', 'past', '.'], ['the', 'station', 'has', 'been', 'owned', 'by', 'the', 'cayuga', 'radio', 'group', 'subsidiary', 'of', 'saga', 'communications', 'since', '2', '0', '0', '5', '.'], ['assigned', 'to', 'the', 'forward', 'battle', 'repair', 'party', ',', 'marts', 'was', 'gravely', 'injured', 'by', 'the', 'blast', 'and', 'fires', '.'], ['as', 'such', 'the', 'system', 'is', 'of', 'high', 'significance', 'to', 'the', 'general', 'community', '.'], ['the', 'open', 'source', 'squid', 'cache', 'and', 'commercial', 'netcache', 'were', 'both', 'based', 'on', 'the', 'harvest', 'object', 'cache', '.'], ['scripps', 'grew', 'up', 'on', 'a', 'rushville', ',', 'illinois', ',', 'farm', '.'], ['milner', 'thought', 'haig', \"'s\", 'stance', '``', 'desperately', 'stupid', \"''\", ',', 'although', 'haig', 'had', 'a', 'point', 'that', 'control', 'of', 'reserves', 'by', 'a', 'committee', 'was', 'not', 'necessarily', 'sensible', '.'], ['wsdot', 'measured', 'traffic', 'before', 'and', 'after', 'the', 'start', 'of', 'tolling', 'and', 'reported', 'a', '2', '6', 'percent', 'decline', 'in', 'average', 'weekday', 'volumes', 'in', 'the', 'tunnel', ',', 'with', 'no', 'noticeable', 'spike', 'on', 'nearby', 'i-', '5', '.'], ['carnegie', 'was', 'one', 'of', 'many', 'leaders', 'in', 'african-american', 'rural', 'communities', 'across', 'the', 'south', 'who', 'raised', 'millions', 'of', 'dollars', 'to', 'fund', 'better', 'education', 'for', 'their', 'children', '.'], ['spurred', 'on', 'by', 'the', 'threats', 'of', 'carter', \"'s\", 'manager', ',', 'she', 'decides', 'to', 'publish', 'the', 'story', '.'], ['presently', 'he', 'is', 'director', ',', 'csir-central', 'scientific', 'instruments', 'organisation', '(', 'csio', ')', 'chandigarh', 'since', 'july', '2', ',', '2', '0', '1', '5', 'to', 'till', 'date', '.'], ['moore', 'was', 'a', 'splitter', ',', 'known', 'for', 'careless', 'creation', 'of', 'synonyms', ',', 'sometimes', 'placing', 'the', 'same', 'species', 'in', 'more', 'than', 'one', 'genus', '.'], ['he', 'attended', 'the', 'royal', 'army', 'academy', 'in', '1', '8', '5', '4', '-', '5', '7', 'and', 'was', 'then', 'appointed', 'a', 'second', 'lieutenant', 'in', 'the', 'artillery', 'and', 'reached', 'the', 'rank', 'of', 'first', 'lieutenant', 'in', '1', '8', '6', '0', '.'], ['from', '1', '9', '3', '7', 'to', '1', '9', '4', '1', ',', 'flato', 'worked', 'as', 'an', 'investigator', 'and', 'report', 'writer', 'for', 'the', 'civil', 'liberties', 'subcommittee', 'of', 'the', 'senate', 'committee', 'on', 'education', 'and', 'labor', 'chaired', 'by', 'senator', 'robert', 'm.', 'la', 'follette', ',', 'jr.', ',', 'and', 'the', 'foreign', 'economic', 'administration', '.'], ['the', 'arch', 'of', 'caracalla', 'is', 'a', 'tetrapylon', 'roman', 'triumphal', 'arch', 'in', 'thebeste', ',', 'located', 'in', 'present-day', 'tébessa', ',', 'tébessa', 'province', ',', 'algeria', '.'], ['his', 'brother', 'benjamin', 'was', 'equally', 'pleasant', 'and', 'both', 'were', 'from', 'the', 'same', 'mother', ',', 'rachel', '.'], ['the', 'fifth', ',', '1', '7', '0', 'years', 'after', 'kainan', ',', 'was', 'that', 'of', 'mahaleel', 'begotten', 'of', 'kainan', '.'], ['over', 'eight', 'years', ',', 'vmt', \"'s\", 'subscription', 'audience', 'increased', 'from', '4', ',', '3', '0', '0', 'to', '1', '0', ',', '0', '0', '0', 'patrons', '.'], ['lastly', ',', 'they', 'beat', 'the', 'indiana', 'pacers', 'in', 'five', 'games', 'to', 'secure', 'the', 'title', '.'], ['their', 'owners', ',', 'mostly', 'south', 'carolina', 'planters', ',', 'were', 'wealthier', 'than', 'the', 'early', 'settlers', 'and', 'soon', 'gained', 'most', 'of', 'the', 'official', 'political', 'appointments', 'in', 'the', 'crown', 'colony', 'that', 'replaced', 'the', 'trusteeship', 'in', '1', '7', '5', '4', '.'], ['she', 'was', 'a', 'member', 'of', 'the', 'santa', 'clara', 'swim', 'club', ',', 'notable', 'for', 'producing', 'olympic', 'swimmers', 'such', 'as', 'donna', 'de', 'varona', 'and', 'mark', 'spitz', '.'], ['at', 'present', 'the', 'language', 'has', 'only', 'a', 'intra', 'community', 'conversational', 'status', '.'], ['it', 'formed', 'on', 'july', '8', ',', '2', '0', '0', '2', '.'], [\"o'reilly\", 'praised', 'evans', \"'s\", 'agile', 'display', 'in', 'his', 'stumping', 'attempts', 'as', 'the', 'fastest', 'and', 'best', 'he', 'had', 'seen', '.'], ['he', 'could', 'however', '``', 'box', \"''\", 'as', 'well', 'as', 'slug', '.'], ['in', '1', '9', '4', '8', 'the', 'present', 'name', ',', 'süddeutsches', 'kaltblut', ',', 'was', 'adopted', '.'], ['anthology', 'was', 'produced', 'by', 'mike', 'tramp', 'and', 'a', 'concert', 'anthology', 'dvd', 'was', 'also', 'released', 'featuring', 'concert', 'performances', 'between', '1', '9', '8', '7', 'and', '1', '9', '9', '1', '.'], ['he', 'was', 'on', 'location', 'working', 'on', 'the', 'film', '``', 'breach', \"''\", '.'], ['public', 'services', 'commenced', 'on', '4', 'may', '1', '8', '5', '9', '.'], ['a', 'few', 'years', 'later', ',', 'in', 'august', '1', '9', '7', '6', ',', 'the', 'altarpiece', 'was', 'stolen', '.'], ['socially', 'disadvantaged', 'and/or', 'individually', 'affected', 'young', 'people', 'are', 'supported', 'by', 'swm', 'via', 'the', '``', 'stadtwerke', 'project', \"''\", 'education', 'initiative', '.'], ['in', 'december', '1', '9', '9', '8', ',', 'it', 'opened', 'its', 'own', 'permanent', 'home', 'at', 'the', 'egyptian', 'in', 'hollywood', ',', 'and', 'in', '2', '0', '0', '4', 'added', 'a', 'second', 'theater', ',', 'the', 'aero', 'theatre', ',', 'in', 'santa', 'monica', '.'], ['the', 'catholic', 'parish', '``', 'st.', 'martinus', \"''\", 'schwaigern', 'is', 'responsible', 'for', 'schwaigern', ',', 'stetten', ',', 'niederhofen', 'and', 'neipperg', '(', 'part', 'of', 'brackenheim', ')', '.'], ['in', '2', '0', '1', '6', ',', 'it', 'was', 'announced', 'that', 'the', 'premises', 'of', 'the', 'bombay', 'high', 'court', 'would', 'be', 'shifting', 'to', 'bandra', 'kurla', 'complex', '.'], ['cameron', 'smith', '(', 'born', '1', '8', 'august', '1', '9', '9', '3', ')', 'is', 'an', 'australian', 'professional', 'golfer', '.'], ['this', 'time', 'though', ',', 'the', 'marching', 'column', 'of', 'gurkhas', 'were', 'facing', 'away', 'from', 'the', 'approaching', 'japanese', ',', 'and', 'watanabe', \"'s\", 'tanks', 'caught', 'them', 'from', 'behind', ':', 'the', 'death', 'toll', 'was', 'even', 'higher', 'than', 'that', 'of', 'the', 'punjabis', '.'], ['they', 'had', 'eleven', 'children', ',', 'four', 'daughters', 'and', 'seven', 'sons', '.'], ['in', '2', '0', '1', '4', ',', '1', '.', '2', 'million', 'yandex', 'account', 'credentials', '(', 'logins', 'and', 'passwords', ')', 'were', 'published', 'on', 'a', 'public', 'leak', 'forum', '.'], ['weapons', ',', 'ammunition', ',', 'keys', ',', 'health', 'batteries', ',', 'etc', '.', ')'], ['in', 'june', '2', '0', '2', '0', ',', 'minneapolis', ',', 'minnesota-based', 'software', 'developer', 'helpsystems', 'acquired', 'boldon', 'james', 'from', 'parent', 'qinetiq', '.'], ['on', 'the', 'other', 'hand', ',', 'family', 'rights', 'and', 'inheritance', 'usually', 'fell', 'under', 'the', 'jurisdiction', 'of', 'the', 'church', 'courts', '.'], ['fidalgo', \"'s\", 'goal', 'was', 'to', 'insert', 'black', 'artists', 'into', 'the', 'performing', 'arts', 'field', '.'], ['this', 'makes', 'china', 'the', 'world', \"'s\", 'sixth-largest', 'study', 'abroad', 'destination', '.'], ['shias', 'are', '3', '0', '%', 'of', 'the', 'city', \"'s\", 'population', '.'], ['despite', 'this', ',', 'linnaeus', 'did', 'not', 'include', 'any', 'microscopic', 'creatures', 'in', 'his', 'original', 'taxonomy', '.'], ['the', 'tables', 'are', 'the', 'vestiges', 'of', 'a', 'sicilian', 'legend', 'which', 'states', 'that', 'farmers', 'prayed', 'to', 'st.', 'joseph', ',', 'promising', 'that', 'if', 'he', 'interceded', 'in', 'a', 'drought', ',', 'they', 'would', 'share', 'their', 'bounty', 'with', 'the', 'poor', '.'], ['weeklies', ',', 'fortnightlies', ',', 'monthlies', ',', 'bi-monthlies', 'and', 'quarterlies', 'are', 'published', 'from', 'parts', 'of', 'the', 'district', '.'], ['this', 'would', 'be', 'equivalent', 'to', 'taking', '8', '5', ',', '0', '0', '0', 'cars', 'off', 'the', 'road', '.'], ['in', 'december', '1', '9', '7', '5', 'large', 'numbers', 'of', 'moroccans', 'were', 'expelled', 'from', 'algeria', ',', 'and', 'algeria', 'began', 'to', 'infiltrate', 'troops', 'into', 'western', 'sahara', '.'], ['the', 'exact', 'number', 'of', 'honor', 'killings', 'is', 'not', 'known', ',', 'but', 'a', 'report', 'in', '1', '9', '9', '5', 'estimated', 'about', '5', '2', 'honor', 'killings', 'that', 'year', '.'], ['the', 'company', 'also', 'purchased', '9', '9', '.', '1', 'in', 'san', 'jose', 'from', 'viacom', ',', 'and', 'began', 'simulcasting', 'kyld', \"'s\", 'programming', 'in', 'the', 'south', 'bay', ',', 'in', 'order', 'to', 'help', 'fill', '1', '0', '7', '.', '7', \"'s\", 'signal', 'limitations', '.'], ['the', '1', '9', '9', '0', 'athens', 'trophy', 'was', 'a', 'women', \"'s\", 'tennis', 'tournament', 'played', 'on', 'outdoor', 'clay', 'courts', 'in', 'athens', ',', 'greece', 'that', 'was', 'part', 'of', 'tier', 'v', 'of', 'the', '1', '9', '9', '0', 'wta', 'tour', '.'], ['an', 'area', 'on', 'its', 'southwest', 'has', 'been', 'fenced', 'off', 'for', 'use', 'as', 'a', 'dog', 'run', '.'], ['the', 'pole', 'speed', 'was', 'while', 'the', 'average', 'speed', 'was', '.'], ['in', 'trinidad', 'and', 'tobago', ',', 'she', 'worked', 'as', 'a', 'domestic', 'helper', '.'], ['kelly', 'plays', 'mr.', 'bowes', ',', 'the', 'deranged', 'insurance', 'broker', '.'], ['it', 'is', 'committed', 'to', 'working', 'together', 'with', 'others', '-', 'regardless', 'of', 'race', ',', 'culture', 'or', 'creed', '-', 'to', 'improve', 'their', 'living', 'conditions', 'and', 'build', 'up', 'a', 'society', 'without', 'exclusions', '.'], ['he', 'began', 'medical', 'studies', ',', 'but', 'reverted', 'to', 'chemistry', 'and', 'in', '1', '9', '1', '0', 'took', 'up', 'a', 'scholarship', 'in', 'the', 'subject', 'at', 'university', 'college', 'london', 'joining', 'the', 'staff', 'in', '1', '9', '1', '3', '.'], ['from', '2', '0', '0', '5', 'to', '2', '0', '0', '6', 'akuffo', 'was', 'deputy', 'minister', 'for', 'the', 'greater', 'accra', 'region', '.'], ['they', 'lived', 'in', 'boston', 'until', 'dr.', 'hall', 'died', 'in', '1', '8', '8', '0', '.'], ['ms.', 'lea', 'salonga', 'together', 'with', 'her', 'fellow', 'coaches', 'were', 'even', 'bashed', 'on', 'twitter', '.'], ['georgia', 'would', 'use', 'a', 'billy', 'bennett', '3', '2', 'yard', 'field', 'goal', 'to', 'beat', 'alabama', 'in', 'the', 'first', 'meeting', 'between', 'teams', 'since', '1', '9', '9', '5', '.'], ['robert', 'norton', ',', 'founder', 'of', 'the', 'photoscript', 'ltd', 'photo-typesetting', 'company', ',', 'decided', 'to', 'produce', 'westminster', '.'], ['kurri', 'formed', 'finland', \"'s\", 'top', 'line', 'along', 'with', 'sm-liiga', 'players', 'reijo', 'leppänen', 'of', 'tps', 'and', 'kari', 'jalonen', 'of', 'kärpät', '.'], ['he', 'received', 'many', 'awards', 'for', 'his', 'film', 'scores', ',', 'but', 'never', 'an', 'oscar', '.'], ['a', 'grateful', 'dead', 'concert', 'from', 'the', 'same', 'set', 'of', 'shows', 'as', '``', 'vintage', 'nrps', \"''\", 'was', 'released', 'as', 'the', 'album', '``', 'three', 'from', 'the', 'vault', \"''\", '.'], ['2', 'in', 'the', 'uk', 'and', 'us', 'in', '1', '9', '6', '5', '.'], ['dunster', 'was', 'an', 'important', 'market', 'place', 'in', 'the', 'middle', 'ages', 'particularly', 'following', 'the', 'construction', 'of', 'dunster', 'castle', 'and', 'the', 'establishment', 'of', 'the', 'priory', 'church', 'of', 'st', 'george', '.'], ['he', 'returned', 'for', 'the', 'even-numbered', 'issues', 'from', '#', '9', '4', '-', '1', '1', '4', '(', 'jan.', '1', '9', '7', '2', '-', 'nov.', '1', '9', '7', '3', ')', '.'], ['he', 'was', 'unable', 'to', 'present', 'his', 'idea', 'to', 'the', 'assembly', 'and', 'in', 'a', 'private', 'conversation', ',', 'menachem', 'ussishkin', 'told', 'israel', 'that', 'he', 'was', 'much', 'too', 'young', 'to', 'succeed', 'in', 'achieving', 'the', 'goal', 'of', 'a', 'national', 'defence', '.'], ['in', 'may', '2', '0', '1', '1', ',', 'truecar', 'acquired', 'news', 'corp-backed', 'honk.com', ',', 'a', 'social', 'car', 'shopping', 'platform', '.'], ['exports', 'from', 'asia', 'transported', 'along', 'the', 'silk', 'road', 'included', 'fabrics', ',', 'carpets', ',', 'furs', ',', 'weapons', ',', 'utensils', ',', 'metals', ',', 'farm', 'produce', ',', 'livestock', 'and', 'slaves', '.'], ['through', 'the', 'cpan', ',', 'perl', 'users', 'can', 'download', 'any', 'of', 'a', 'vast', 'number', 'of', 'prepackaged', 'modules', '.'], ['his', 'latest', 'film', ',', '``', 'jani', 'gal', \"''\", ',', 'is', 'a', 'kurdish', 'language', 'drama', ',', 'about', 'kurdish', 'separatists', 'in', 'the', '1', '9', '4', '0', 's', 'and', '1', '9', '5', '0', 'trying', 'to', 'create', 'a', 'kurdish', 'state', 'from', 'parts', 'of', 'iran', 'and', 'iraq', '.'], ['these', 'practices', 'may', 'involve', 'a', 'supported', 'employment', 'service', 'provider', '(', 'professionals', ')', 'to', 'understand', 'how', 'to', 'customize', 'employment', 'and', 'provide', 'supports', ',', 'school', 'personnel', 'in', 'transition', ',', 'or', 'it', 'may', 'involve', 'an', 'approach', 'similar', 'to', 'bridgebuilding', 'and', 'person-centered', 'community', 'development', '.'], ['this', 'highway', 'begins', 'at', 'pr-', '1', '5', '0', 'in', 'downtown', 'villalba', 'and', 'ends', 'at', 'pr-', '1', '4', '3', 'in', 'caonillas', 'arriba', '.'], ['in', '2', '0', '0', '1', 'there', 'were', '3', '5', '5', 'immigrants', '.'], ['the', 'french', 'ministry', 'of', 'education', 'formally', 'recognized', 'isu', 'as', 'an', 'institute', 'of', 'higher', 'education', 'in', '2', '0', '0', '4', '.'], ['glendale', \"'s\", 'northern', 'half', 'has', 'the', '6', '0', '2', '/', '6', '2', '3', 'border', 'running', 'diagonally', 'through', 'its', 'middle', '.'], ['at', 'some', 'point', ',', 'cole', 'may', 'have', 'been', 'a', 'part', 'of', 'the', 'army', \"'s\", 'special', 'forces', '.'], ['zuckerberg', 'ultimately', 'dropped', 'the', 'lawsuits', 'and', 'offered', 'an', 'apology', '.'], ['the', 'u.s.', 'government', 'has', 'been', 'criticized', 'for', 'allowing', 'pakistan', 'to', 'channel', 'a', 'disproportionate', 'amount', 'of', 'its', 'funding', 'to', 'the', 'controversial', 'hekmatyar', ',', 'whom', 'pakistani', 'officials', 'believed', 'was', '``', 'their', 'man', \"''\", '.'], ['banjaras', 'are', 'the', 'main', 'tribal', 'group', 'of', 'pusad', 'taluka', ',', 'among', 'them', ',', 'rathod', 'and', 'jadhav', 'banjaras', 'are', 'most', 'numerous', '.'], ['the', 'parish', 'includes', 'the', 'villages', 'of', 'gosberton', 'clough', 'and', 'risegate', ',', 'and', 'the', 'hamlets', 'of', 'westhorpe', 'and', 'gosberton', 'cheal', '.'], ['from', '1', '9', '7', '3', 'to', '1', '9', '8', '3', ',', 'he', 'was', 'literary', 'editor', 'of', '``', 'the', 'jewish', 'chronicle', \"''\", '.'], ['soon', 'he', 'developed', 'a', 'talent', 'for', 'sneaking', 'towards', 'enemy', 'bunkers', 'and', 'destroying', 'them', 'with', 'hand', 'grenades', '(', 'as', 'part', 'of', 'the', 'bombaši', ')', '.'], ['the', '``', 'illinois', 'register', \"'s\", \"''\", 'website', 'includes', 'references', 'to', 'page', 'numbers', 'to', 'make', 'it', 'easier', 'to', 'find', 'the', 'correct', 'issue', ',', 'which', 'in', 'this', 'example', 'would', 'be', 'the', '2', '2', 'june', '2', '0', '1', '8', 'issue', '.'], ['edgell', \"'s\", 'obituary', 'in', 'the', '``', 'british', 'journal', 'of', 'psychology', \"''\", 'stated', 'that', '``', 'the', 'success', 'of', 'her', 'work', 'is', 'demonstrated', 'by', 'the', 'success', 'of', 'her', 'students', 'in', 'many', 'widely', 'differing', 'fields', '.', \"''\"], ['he', 'was', 'part', 'of', 'the', 'main', 'cast', 'of', '``', 'glitch', \"''\", 'in', 'the', 'role', 'of', 'john', 'doe/william', 'blackburn', '.'], ['however', ',', 'the', 'station', 'was', 'still', 'programmed', 'as', 'an', 'independent', ',', 'as', 'fox', 'would', 'not', 'air', 'a', 'full', 'week', \"'s\", 'worth', 'of', 'programming', 'until', 'september', '1', '9', '9', '3', '.'], ['the', 'california', 'dreams', 'tour', 'was', 'the', 'second', 'concert', 'tour', 'by', 'american', 'singer', 'katy', 'perry', ',', 'in', 'support', 'of', 'her', 'third', 'studio', 'album', '``', 'teenage', 'dream', \"''\", '.'], ['the', 'critical', 'consensus', 'reads', ':', '``', 'with', 'its', 'overactive', 'focus', 'on', 'special', 'effects', 'and', 'tiresome', 'slapstick', ',', '``', 'flubber', \"''\", 'squanders', 'the', 'immense', 'talent', 'of', 'its', 'cast', 'and', 'crew', '.', \"''\"], ['salad', 'fingers', 'is', 'then', 'outside', 'in', 'his', 'wheelchair', 'with', 'yvonne', 'in', 'a', 'bucket', ',', 'looking', 'healthier', 'once', 'again', ',', 'telling', 'her', 'that', '``', 'good', 'old', 'aunty', 'bainbridge', \"''\", 'has', 'agreed', 'to', 'look', 'after', 'her', '.'], ['the', 'iranian', 'central', 'bank', 'desperately', 'tried', 'to', 'keep', 'the', 'value', 'of', 'the', 'rial', 'afloat', 'in', 'the', 'midst', 'of', 'the', 'late', '2', '0', '1', '2', 'decline', 'by', 'pumping', 'petrodollars', 'into', 'the', 'system', 'to', 'allow', 'the', 'rial', 'to', 'compete', 'against', 'the', 'us', 'dollar', '.'], ['clayton', 'recorded', 'his', 'version', 'of', '``', 'i', 'ca', \"n't\", 'stand', 'the', 'rain', \"''\", 'on', 'his', '2', '0', '0', '8', 'album', '``', 'soul', '&', 'amp', ';', 'blues', \"''\", '.'], ['despite', 'that', ',', 'the', 'older', 'name', 'is', 'still', 'in', 'use', '.'], ['for', 'his', 'service', ',', 'he', 'received', 'the', 'army', 'distinguished', 'service', 'medal', ',', 'the', 'silver', 'star', 'and', 'the', 'legion', 'of', 'merit', '.'], ['they', 'shipped', 'them', 'outside', 'of', 'chicago', 'to', 'have', 'them', 'cleaned', 'and', 'then', 'repackaged', 'and', 're-shipped', 'back', 'to', 'chicago', '.'], ['in', 'germany', 'name', 'days', '(', 'in', 'german', ':', 'namenstag', ')', 'used', 'to', 'be', 'widely', 'popular', 'in', 'traditionally', 'catholic', 'southern', 'and', 'western', 'regions', ',', 'where', 'historically', 'they', 'were', 'more', 'important', 'than', 'birthdays', '.'], ['questioned', 'by', 'the', 'moroccan', 'magazine', '``', 'telquel', \"''\", 'in', 'november', '2', '0', '1', '2', ',', 'she', 'said', 'that', 'her', 'short-term', 'project', 'is', 'the', 'unification', 'of', 'the', 'left', 'forces', 'into', 'a', 'progressive', 'democratic', 'federalism', '.'], ['ing', 'argued', 'that', 'the', 'legal', 'mechanisms', 'zuckerberg', 'attempted', 'to', 'use', 'were', 'predatory', 'by', 'nature', 'as', 'they', 'have', 'been', 'used', 'historically', 'to', '``', 'displace', 'native', 'hawaiians', 'from', 'their', 'ancestral', 'lands', '.', \"''\"], ['ultimately', ',', 'schaub', 'was', 'classified', 'by', 'denazification', 'investigators', 'as', 'being', 'only', 'a', '``', 'fellow', 'traveler', \"''\", 'and', 'was', 'not', 'accused', 'or', 'associated', 'with', 'any', 'war', 'crimes', '.'], ['she', 'begins', 'a', 'romantic', 'relationship', 'with', 'roger', ',', 'a', 'young', 'white', 'man', 'who', 'seems', 'to', 'move', 'among', 'new', 'york', \"'s\", '``', 'four', 'hundred', \"''\", ',', 'the', 'social', 'elite', '.'], ['one', 'thousand', 'candles', 'are', 'planned', 'to', 'light', 'in', 'front', 'of', 'the', 'university', 'building', 'in', 'memory', 'of', 'the', 'victims', '.'], ['songs', 'that', 'appear', 'on', 'the', 'dvd', 'were', 'recorded', 'live', 'at', 'club', 'riga', ',', 'england', ',', 'in', 'september', '2', '0', '0', '6', '.'], ['the', 'center', 'of', 'this', 'production', 'is', 'considered', 'to', 'be', 'the', 'poet', 'dionysios', 'solomos', ',', 'so', 'its', 'periods', 'are', 'conventionally', 'divided', 'as', 'follows', ':', 'pre-solomian', 'poets', '(', 'προσολωμικοί', 'ποιητές', ')', ',', 'solomian', 'poets', ',', 'post-solomian', 'poets', ',', 'minors', 'and', 'descendants', '.'], ['the', 'design', 'of', '``', 'mikasa', \"''\", 'was', 'a', 'modified', 'version', 'of', 'the', 's', 'of', 'the', 'royal', 'navy', 'with', 'two', 'additional', 'guns', '.'], ['the', 'party', 'is', 'a', 'member', 'of', 'the', 'european', 'people', \"'s\", 'party', '(', 'epp', ')', '.'], ['according', 'to', 'chettleburgh', ',', 'outlaw', 'motorcycle', 'gangs', 'in', 'the', 'regional', 'municipality', 'of', 'niagara', 'frequently', 'collaborate', 'with', 'npf', '.'], ['tmesisternus', 'avarus', 'is', 'a', 'species', 'of', 'beetle', 'in', 'the', 'family', 'cerambycidae', '.'], ['the', 'park', 'was', 'inaugurated', 'oct.', '3', ',', '1', '9', '0', '8', '.'], ['as', 'a', 'traitor', 'to', 'his', 'people', ',', 'i', 'was', 'amused', 'and', 'touched', 'because', 'this', 'utterly', 'distorted', 'account', 'was', 'an', 'artistic', 'success', 'and', 'considerable', 'resources', 'in', 'talent', 'and', 'ingenuity', 'had', 'been', 'applied', 'in', 'making', 'it', '.'], ['in', 'an', 'interview', ',', 'hagen', 'stated', 'that', 'political', 'parties', 'should', 'not', 'agitate', 'officially', 'for', 'one', 'opinion', 'or', 'the', 'other', '.'], ['tímea', 'sugár', '(', 'born', '2', '1', 'october', '1', '9', '7', '7', 'in', 'pécs', ')', 'is', 'a', 'former', 'hungarian', 'international', 'handball', 'player', 'and', 'afterwards', 'goalkeeping', 'coach', 'of', 'fehérvár', 'kc', '.'], ['luker', 'performed', 'as', 'a', 'concert', 'soloist', 'with', 'symphony', 'orchestras', 'around', 'the', 'world', 'and', 'in', 'intimate', 'solo', 'settings', '.'], ['each', 'vowel', 'letter', '(', 'with', 'the', 'possible', 'exception', 'of', '``', 'y', \"''\", ')', 'represents', 'at', 'least', 'two', 'phonemes', '.'], ['the', 'legislature', ',', 'known', 'as', 'the', 'parliament', '(', 'parliament', ')', ',', 'has', 'two', 'chambers', '.'], ['to', 'cover', 'these', 'high', 'costs', ',', 'they', 'needed', 'to', 'fish', 'for', 'longer', 'seasons', '.'], ['the', 'board', 'members', 'of', 'the', 'non-profit', 'were', 'imus', ',', 'his', 'wife', 'deirdre', ',', 'and', 'imus', \"'\", 'agents', ',', 'vincent', 'and', 'robert', 'andrews', '.'], ['the', 'severe', 'knee', 'injury', 'led', 'to', 'the', 'buccaneers', 'not', 'tendering', 'huggins', 'a', 'contract', 'for', 'the', '2', '0', '1', '1', 'season', '.'], ['best', 'practices', 'dictate', 'that', 'an', 'individualized', 'support', 'approach', 'to', 'supported', 'employment', ',', 'funded', 'as', 'a', 'professional', 'vocational', 'rehabilitation', 'service', '(', 'now', 'changing', 'to', 'infusion', 'of', 'risk', 'and', 'protective', 'health', 'factors', ')', ',', 'is', 'used', 'to', 'assist', 'individuals', 'with', 'gaining', 'and', 'maintaining', 'employment', '(', 'later', ',', 'termed', 'job', 'retention', ')', '.'], ['she', 'is', 'fascinated', 'by', 'her', 'father', \"'s\", 'life', 'as', 'a', 'superhero', ',', 'and', 'generally', 'has', 'a', 'good', 'relationship', 'with', 'her', 'father', \"'s\", 'colleagues', ';', 'when', 'she', 'was', 'younger', ',', 'she', 'even', 'called', 'tony', 'stark', '``', 'uncle', 'tony', \"''\", '.'], ['however', ',', 'lee', 'was', 'under', 'contract', 'to', 'play', 'with', 'the', 'yomiuri', 'giants', 'for', 'the', '2', '0', '0', '6', 'season', '.'], ['the', 'study', 'of', 'sociolinguistics', 'in', 'the', 'american', 'deaf', 'community', 'did', 'not', 'start', 'until', 'the', '1', '9', '6', '0', 's', '.'], ['thereafter', ',', 'the', 'swords', 'were', 'passed', 'down', 'to', ',', 'yoriyoshi', ',', 'and', 'yoshiie', ',', 'who', 'put', 'them', 'to', 'good', 'use', 'in', 'the', 'former', 'nine', 'years', \"'\", 'war', 'and', 'the', 'later', 'three', 'years', \"'\", 'war', '.'], ['illness', 'prevented', 'the', 'attendance', 'of', 'brunel', 'who', 'was', 'instead', 'represented', 'by', 'his', 'chief', 'assistant', 'robert', 'brereton', '.'], ['it', 'was', 'the', 'largest', 'oil', 'spill', 'in', 'alberta', 'in', '3', '6', 'years', '.'], ['in', '2', '0', '1', '0', 'glen', 'perry', ',', 'a', 'petroleum', 'engineer', 'for', 'adira', 'energy', ',', 'warned', 'that', 'including', 'the', 'alberta', 'clipper', 'pipeline', 'owned', 'by', 'transcanada', \"'s\", 'competitor', 'enbridge', ',', 'there', 'is', 'an', 'extensive', 'overcapacity', 'of', 'oil', 'pipelines', 'from', 'canada', '.'], ['he', 'played', 'college', 'baseball', 'for', 'the', 'georgia', 'tech', 'yellow', 'jackets', '.'], ['jános', 'négyesy', 'was', 'born', 'in', 'budapest', ',', 'hungary', 'on', 'september', '1', '3', ',', '1', '9', '3', '8', 'and', 'died', 'on', 'december', '2', '0', ',', '2', '0', '1', '3', '.'], ['a', 'web', 'manga', 'adaptation', 'launched', 'on', 'june', '2', ',', '2', '0', '1', '2', '.'], ['on-campus', 'ryan', 'gymnasium', ',', 'where', 'the', 'hoyas', 'had', 'played', 'their', 'home', 'games', 'since', 'the', '1', '9', '1', '4', '-', '1', '5', 'season', ',', 'had', 'no', 'seating', ',', 'accommodating', 'fans', 'on', 'a', 'standing-room', 'only-basis', 'on', 'an', 'indoor', 'track', 'above', 'the', 'court', '.'], ['wenjun', 'took', 'two', 'gold', 'medals', 'in', 'the', '1', '0', '0', 'm', '(', 't', '5', '4', ')', 'and', '4', 'x', '1', '0', '0', 'm', 'relay', '(', 't', '5', '3', '/', '5', '4', ')', 'events', 'at', 'the', '2', '0', '1', '6', 'summer', 'paralympics', 'in', 'rio', '.'], ['paul', 'and', 'marco', 'asked', 'dutch', 'film', 'producer', 'chris', 'brouwer', 'to', 'produce', 'the', 'film', '.'], ['in', '1', '9', '8', '6', ',', 'the', 'government', 'of', 'zimbabwe', 'announced', 'a', 'new', 'initiative', 'for', 'automobile', 'production', '.'], ['all', 'packets', 'leaving', 'or', 'entering', 'the', 'lan', 'are', 'sent', 'from', 'or', 'to', 'the', 'ip', 'address', 'of', 'the', 'external', 'adapter', 'on', 'the', 'ics', 'host', 'computer', '.'], ['they', 'derived', 'the', 'company', 'name', 'from', 'the', 'initials', 'of', 'the', 'magazine', 'and', 'their', 'own', 'last', 'names', ':', 't', '[', 'he', ']', 'o', '[', 'pen', ']', 'r', '[', 'oad', ']', 'b', '[', 'lackett', ']', 'e', '[', 'rnst', ']', 'l', '[', 'oomis', ']', 'l', '[', 'td', ']', '.'], ['at', 'one', 'point', 'during', 'filming', ',', 'wayne', 'attempted', 'to', 'assert', 'himself', 'as', 'director', '.'], ['in', 'december', '``', 'earl', 'spencer', \"''\", 'and', 'thompson', 'recaptured', 'two', 'brigs', ':', '``', 'mary', 'ann', \"''\", 'and', '``', 'hardwick', \"''\", '.'], ['as', 'particle', 'density', 'is', 'increased', ',', 'electrons', 'progressively', 'fill', 'the', 'lower', 'energy', 'states', 'and', 'additional', 'electrons', 'are', 'forced', 'to', 'occupy', 'states', 'of', 'higher', 'energy', 'even', 'at', 'low', 'temperatures', '.'], ['elaine', 'demonstrates', 'natural', 'seduction', 'skills', 'and', 'grace', 'in', 'her', 'slow', ',', 'methodical', 'undress', ',', 'which', 'the', 'narrator', 'surmises', 'is', 'how', 'she', 'landed', 'her', 'husband', 'john', ',', 'the', '``', 'world', \"'s\", 'greatest', 'lover', '.', \"''\"], ['snyder', 'called', '9', '-', '1', '-', '1', 'on', 'his', 'cellphone', 'and', 'reported', 'that', 'santoro', 'was', 'being', 'beaten', '.'], ['it', 'was', 'nominated', 'for', 'a', 'juno', 'award', 'in', '2', '0', '0', '9', '.'], ['mountains', 'make', 'up', '4', '0', '.', '5', '%', 'of', 'lombardy', \"'s\", 'area', '.'], ['a', 'permit', 'is', 'required', 'from', 'the', 'state', 'of', 'maine', 'for', 'campfires', 'along', 'any', 'unposted', 'river', 'beaches', '.'], ['teammate', 'robby', 'gordon', 'was', 'at', 'this', 'stage', 'just', 'five', 'minutes', 'behind', 'peterhansel', 'with', 'a', 'win', 'on', 'the', 'ninth', 'stage', ',', 'but', 'the', 'gap', 'increased', 'to', '2', '0', 'minutes', 'when', 'the', 'american', 'hit', 'a', 'rock', 'on', 'the', 'tenth', 'stage', '.'], ['the', 'musical', 'changed', 'its', 'title', 'to', '``', 'zsazsa', 'zaturnnah', '...', 'vack', 'with', 'a', 'vengence', '!', \"''\"], ['for', 'instance', ',', 'linguists', 'grigore', 'nandriș', 'and', 'marius', 'sala', 'argue', 'that', 'the', 'latin', 'words', 'for', 'natural', 'oil', ',', 'gold', 'and', 'bison', 'could', 'only', 'be', 'preserved', 'in', 'the', 'lands', 'to', 'the', 'north', 'of', 'the', 'river', '.'], ['records', 'from', 'the', 'islands', 'in', 'the', 'tasman', 'sea', 'are', 'probably', 'misidentifications', 'for', '``', 'kyphosus', 'bigibbus', \"''\", '.'], ['the', 'former', 'is', 'a', 'thesaurus', 'of', 'information', 'concerning', 'politico-ecclesiastical', 'conflicts', 'of', 'the', 'past', ',', 'and', 'is', 'marked', 'throughout', 'by', 'an', 'uncompromising', 'tone', '.'], ['it', 'was', 'originally', 'published', 'by', 'the', 'torbell', 'company', ',', '2', '4', '8', 'boylston', 'st.', 'in', 'boston', ',', 'massachusetts', '.'], ['transportas', 'companhia', 'de', 'macau', ',', 'an', 'agreement', 'was', 'reached', 'between', 'all', 'parties', 'on', 'august', '1', '3', '.'], ['barnett', 'recognized', 'this', 'growing', 'popularity', ',', 'along', 'with', 'an', 'absence', 'of', 'ice', 'arenas', '.'], ['mhc', 'class', 'i', 'molecules', ',', 'hla-a', ',', 'hla-b', ',', 'hla-c', ',', 'are', 'present', 'on', 'all', 'nucleated', 'cells', 'and', 'are', 'responsible', 'for', 'signaling', 'to', 'an', 'immune', 'cell', 'that', 'an', 'antigen', 'is', 'inside', 'the', 'cell', '.'], ['louisiana', 'highway', '9', '4', '1', '(', 'la', '9', '4', '1', ')', 'runs', 'in', 'a', 'general', 'southwest', 'to', 'northeast', 'direction', 'from', 'la', '4', '4', 'south', 'of', 'gonzales', 'to', 'la', '3', '0', 'east', 'of', 'gonzales', '.'], ['according', 'to', 'the', '2', '0', '1', '4', 'world', 'values', 'survey', ',', 'over', '9', '0', 'per', 'cent', 'of', 'australians', 'are', 'either', '``', 'very', 'proud', \"''\", 'or', '``', 'quite', 'proud', \"''\", 'of', 'their', 'nation', '.'], ['emissions', 'from', 'inco', \"'s\", 'base', 'metal', 'refinery', ',', 'closed', 'in', '1', '9', '8', '4', ',', 'resulted', 'in', 'soils', 'contaminated', 'with', 'concentrations', 'of', 'nickel', ',', 'copper', 'and', 'cobalt', 'above', 'the', 'ontario', 'ministry', 'of', 'the', 'environment', \"'s\", '``', 'soil', 'remediation', 'criteria', '.', \"''\"], ['croatia', 'rally', ',', 'was', 'the', 'tenth', 'round', 'of', 'the', '2', '0', '1', '3', 'european', 'rally', 'championship', 'season', '.'], ['following', 'the', '2', '0', '1', '1', 'tōhoku', 'earthquake', 'and', 'tsunami', ',', 'hamilton', 'was', 'allowed', 'to', 'return', 'to', 'the', 'united', 'states', 'while', 'the', 'npb', 'figured', 'out', 'the', 'fate', 'of', 'the', 'season', '.'], ['it', 'is', 'found', 'in', 'angola', ',', 'burundi', ',', 'drc', ',', 'malawi', ',', 'mozambique', ',', 'namibia', ',', 'rwanda', ',', 'south', 'africa', ',', 'swaziland', ',', 'tanzania', ',', 'uganda', ',', 'zambia', ',', 'and', 'zimbabwe', '.'], ['ibn', 'buṭlān', ',', 'ʿalī', 'ibn', 'ʿīsā', 'al-kaḥḥāl', 'and', 'abū', 'al-ḥusayn', 'al-baṣrī', 'were', 'among', 'his', 'pupils', '.'], ['in', 'larry', 'niven', \"'s\", 'novel', '``', 'protector', \"''\", ',', 'one', 'of', 'the', 'main', 'characters', 'has', 'this', 'painting', 'on', 'their', 'spacesuit', '.'], ['in', '7', '3', '1', 'le', '(', '1', '9', '1', '2', 'be', ',', '1', '3', '6', '9', '/', '7', '0', 'ce', ')', ',', 'ramathibodi', 'i', 'died', '.'], ['the', 'african', 'conservation', 'foundation', ',', 'also', 'known', 'as', 'acf', ',', 'is', 'an', 'international', 'non-governmental', 'organisation', 'established', 'in', '1', '9', '9', '9', 'and', 'registered', 'in', '2', '0', '0', '1', '.'], ['brigadier', 'general', 'joseph', 'hatutale', 'kakoto', 'is', 'a', 'retired', 'namibian', 'military', 'officer', 'who', 'served', 'as', 'general', 'officer', 'commanding', 'of', 'the', '4', 'artillery', 'brigade', '.'], ['the', 'remaining', 'ep', 'tracks', 'from', 'the', 'same', 'four', 'movies', 'were', 'compiled', 'into', 'another', 'budget', 'rca', 'camden', 'album', ',', '``', 'i', 'got', 'lucky', \"''\", ',', 'released', 'three', 'months', 'later', '.'], ['the', 'progressive', 'party', 'on', 'the', 'lcc', 'chose', 'him', 'as', 'its', 'leader', 'shortly', 'after', 'his', 'election', 'but', 'he', 'stood', 'down', 'after', 'the', '1', '8', '9', '2', 'council', 'election', '.'], ['the', 'newspaper', 'helped', 'her', 'find', 'her', 'mother', ',', 'and', 'they', 'were', 'able', 'to', 'reconcile', '.'], ['the', 'city', 'of', 'richmond', 'utilizes', 'the', 'royal', 'canadian', 'mounted', 'police', 'as', 'its', 'primary', 'form', 'of', 'municipal', 'law', 'enforcement', 'with', 'their', 'main', 'detachment', 'located', 'on', 'no', '5', 'road', 'near', 'the', 'ironwood', 'area', '.'], ['the', 'following', 'tables', 'compare', 'standards', 'support', 'for', 'some', 'notable', 'javascript/ecmascript', 'engines', 'used', 'in', 'web', 'browsers', '.'], ['ministry', 'of', 'environment', ',', 'forestry', 'and', 'tourism', '(', 'met', ')', 'is', 'a', 'government', 'ministry', 'of', 'namibia', ',', 'headquartered', 'in', 'the', 'phillip', 'troskie', 'building', 'in', 'windhoek', '.'], ['in', '1', '9', '9', '4', 'she', 'starred', 'alongside', 'alan', 'williams', 'in', '``', 'the', 'darling', 'family', \"''\", ',', 'alan', 'zweig', \"'s\", 'film', 'adaptation', 'of', 'her', 'own', 'theatrical', 'play', '.'], ['many', 'were', 'borne', 'from', 'military', 'exercises', 'and', 'emphasize', 'physical', 'endurance', '.'], ['hekmatyar', 'was', 'said', 'to', 'be', 'friendly', 'with', 'osama', 'bin', 'laden', ',', 'founder', 'of', 'al-qaeda', ',', 'who', 'was', 'running', 'an', 'operation', 'for', 'assisting', '``', 'afghan', 'arab', \"''\", 'volunteers', 'fighting', 'in', 'afghanistan', ',', 'called', 'maktab', 'al-khadamat', '.'], ['the', 'area', 'comprises', 'the', 'area', 'surrounding', 'the', 'silver', 'bay', 'and', 'including', 'green', 'island', '.'], ['the', 'carved', 'altar', 'screen', 'now', 'displayed', 'in', 'hachiville', \"'s\", 'baroque', 'parish', 'church', 'is', 'considered', 'one', 'of', 'luxembourg', \"'s\", 'most', 'precious', 'art', 'treasures', '.'], ['koufax', 'finally', 'was', 'able', 'to', 'pitch', 'again', 'in', 'september', ',', 'when', 'the', 'team', 'was', 'locked', 'in', 'a', 'tight', 'pennant', 'race', 'with', 'the', 'giants', '.'], ['mielec', '(', '6', '4', '0', '0', '0', 'inhabitants', ')', 'located', 'in', 'a', 'very', 'densely', 'populated', 'western', 'part', 'of', 'podkarpacie', 'and', 'eastern', 'małopolska', 'and', 'świętokrzyskie', '(', 'an', 'agglomeration', 'tarnobrzeg-', 'sandomierz-', 'stalowa', 'wola', 'of', 'approx', '.'], ['attempts', 'were', 'made', 'to', 'find', 'an', 'acceptable', 'alternative', 'site', 'for', 'stations', 'at', 'both', 'the', 'towns', 'which', 'would', 'enable', 'the', 'operation', 'of', 'a', 'through', 'main', 'line', ',', 'but', 'in', 'both', 'cases', 'this', 'proved', 'impossible', '.'], ['it', 'is', 'not', 'yet', 'known', 'if', 'he', 'will', 'be', 'able', 'to', 'conquer', 'this', 'weakness', 'with', 'practice', '.'], ['together', 'with', 'the', 'saint', 'sophia', 'cathedral', ',', 'it', 'is', 'inscribed', 'as', 'a', 'unesco', 'world', 'heritage', 'site', '.'], ['hawkes', 'received', 'two', 'prolonged', 'standing', 'ovations', 'at', 'the', 'film', \"'s\", 'screening', '.'], ['it', 'was', 'reported', 'in', 'september', '2', '0', '1', '9', 'that', 'plepler', 'resigned', 'three', 'days', 'after', 'an', 'unnamed', 'shareholder', 'wrote', 'a', 'letter', 'criticizing', ',', 'among', 'other', 'things', ',', 'plepler', \"'s\", 'greenlighting', 'of', '``', 'leaving', 'neverland', \"''\", ',', 'arguing', 'that', 'it', 'opened', 'the', 'company', 'to', 'lawsuits', '.'], ['goldmark', \"'s\", 'first', 'concert', 'in', 'vienna', '(', '1', '8', '5', '8', ')', 'met', 'with', 'hostility', ',', 'and', 'he', 'returned', 'to', 'budapest', ',', 'returning', 'to', 'vienna', 'in', '1', '8', '6', '0', '.'], ['aaron', 'said', 'that', 'inspiration', 'for', 'the', 'latter', 'came', 'from', 'novels', 'they', 'both', 'read', 'together', 'when', 'they', 'were', 'younger', ',', 'and', 'that', 'during', 'their', 'homeschool', 'education', 'they', 'read', 'and', 'analyzed', 'the', 'literature', ',', 'biography', ',', 'historical', 'fiction', ',', 'and', 'culture', 'that', 'inspired', 'their', 'work', 'in', 'the', 'film', '.'], ['in', '1', '8', '4', '3', ',', 'joseph', 'treffry', 'suggested', 'building', 'a', 'tramway', 'between', 'par', 'and', 'newquay', ',', 'with', 'a', 'branch', 'line', 'to', 'the', 'east', 'wheal', 'rose', 'silver', 'lead', 'mine', ',', 'which', 'at', 'the', 'time', 'was', 'entering', 'its', 'most', 'prosperous', 'period', '.'], ['silbury', 'air', 'is', 'a', 'musical', 'composition', 'for', 'chamber', 'ensemble', 'by', 'the', 'english', 'composer', 'sir', 'harrison', 'birtwistle', '.'], ['he', 'was', 'rumored', 'to', 'have', 'chafed', 'under', 'the', 'leadership', 'of', 'john', 'stankey', ',', 'warnermedia', \"'s\", 'new', 'chief', '.'], ['for', 'the', 'plant', 'counterpart', ',', 'a', 'crystal', 'structure', 'of', 'the', 'aha', '2', 'pm', '-atpase', 'from', '``', 'arabidopsis', 'thaliana', \"''\", 'has', 'been', 'obtained', 'from', '3', 'd', 'crystals', 'with', 'a', 'resolution', 'of', '3', '.', '6', 'å', '.'], ['lagoon', 'park', 'in', 'california', '|', 'asla', 'national', 'awards', '|', 'professional', 'category', '|', 'award', 'of', 'honor', '-', 'general', 'design', '|'], ['ncac', 'is', 'a', 'new', 'york-based', 'organization', 'with', 'official', '5', '0', '1', '(', 'c', ')', '(', '3', ')', 'status', 'in', 'the', 'united', 'states', '.'], ['terrazas', 'turned', 'professional', 'in', '2', '0', '0', '3', 'and', 'would', 'lose', 'his', 'first', 'fight', 'to', 'adrian', 'tellez', 'by', 'second', 'round', 'stoppage', '.'], ['in', 'all', 'three', 'narratives', ',', 'a', 'man', '(', 'or', 'men', ')', 'is', 'forewarned', 'of', 'his', 'impending', 'death', 'and', 'makes', 'offerings', 'to', 'the', '``', 'chasa', \"''\", ',', 'the', 'gods', 'of', 'death', 'who', 'kill', 'those', 'whose', 'time', 'is', 'due', 'and', 'take', 'away', 'their', 'souls', 'to', 'the', 'afterlife', '.'], ['he', ',', 'along', 'with', 'lamont', ',', 'also', 'often', 'kept', 'valuables', 'or', 'stashes', 'of', 'cash', 'in', 'a', 'secret', 'drawer', 'in', 'that', 'same', 'chest', 'of', 'drawers', ',', 'which', 'would', 'open', 'after', 'a', 'series', 'of', 'knocks', 'on', 'the', 'dresser', 'and/or', 'foot', 'stamps', 'on', 'the', 'floor', '.'], ['in', 'addition', 'to', 'this', ',', 'each', 'man', 'had', 'to', 'carry', 'over', 'the', 'long', 'trek', 'and', 'this', 'severely', 'slowed', 'down', 'the', 'reaction', '.'], ['most', 'living', 'groups', 'have', 'regular', 'group', 'meetings', 'and', 'some', 'take', 'holidays', 'together', '.'], ['bush', 'and', 'ross', 'perot', 'in', 'the', 'polls', ',', 'clinton', 'limped', 'toward', 'the', 'national', 'convention', ',', 'while', 'the', 'los', 'angeles', 'riots', 'crowded', 'him', 'out', 'of', 'news', 'coverage', '.'], ['hence', ',', 'muslims', 'must', 'develop', 'their', 'own', 'political', 'force', ',', 'similar', 'to', 'obcs', ',', 'dalits', 'and', 'yadavs', '.'], ['in', '2', '0', '1', '1', ',', 'when', 'sabel', 'ended', ',', 'mendiola', 'joined', '``', 'asap', 'rocks', \"''\", '.'], ['in', 'the', '1', '9', '8', '8', 'comic', '``', 'shattered', 'visage', \"''\", ',', 'made', 'as', 'a', 'sequel', 'to', 'the', 'spy', 'show', '``', 'the', 'prisoner', \"''\", ',', 'kuryakin', 'and', 'solo', 'both', 'make', 'cameos', 'at', 'the', 'funeral', 'of', 'a', 'spy', ',', 'along', 'with', 'john', 'steed', 'and', 'emma', 'peel', '.'], ['one', 'single', ',', '``', 'seasons', \"''\", ',', 'was', 'released', 'in', 'the', 'united', 'states', 'to', 'promote', 'the', 'record', ';', 'in', 'the', 'united', 'kingdom', ',', 'the', 'track', '``', 'dreams', \"''\", 'was', 'issued', 'as', 'a', 'single', '.'], ['the', '2', '0', '0', '9', 'aaa', '4', '0', '0', 'was', 'the', 'twenty-eighth', 'stock', 'car', 'race', 'of', 'the', '2', '0', '0', '9', 'nascar', 'sprint', 'cup', 'series', 'and', 'the', 'second', 'in', 'the', 'ten-race', 'season-ending', 'chase', 'for', 'the', 'sprint', 'cup', '.'], ['as', 'of', '2', '0', '1', '5', ',', '``', 'brasil', \"''\", 'and', '``', 'argentina', \"''\", 'were', 'among', 'the', 'last', 'luxury', 'liners', 'built', 'in', 'the', 'united', 'states', '.'], ['small', 'farmstead', 'sites', 'of', 'kinnar', ',', 'nara', 'and', 'mirchpur', 'have', 'material', 'from', 'both', 'mature', 'and', 'late', 'harappan', 'period', '.'], ['he', 'deployed', 'to', 'iraq', 'in', '2', '0', '0', '3', 'as', 'a', 'part', 'of', 'operation', 'iraqi', 'freedom', '.'], ['other', 'basses', 'used', 'include', 'the', 'fender', 'precision', 'bass', ',', 'a', 'gibson', 'thunderbird', 'non-reverse', ',', 'fender', 'jazz', 'bass', ',', 'the', 'steinberger', 'l-series', ',', 'a', 'gibson', 'eb-', '3', 'and', 'at', 'least', 'two', 'lag', 'custom', 'basses', '.'], ['given', 'that', 'alteplase', 'is', 'a', 'thrombolytic', 'medication', ',', 'a', 'common', 'adverse', 'effect', 'is', 'bleeding', ',', 'which', 'can', 'be', 'life', 'threatening', '.'], ['thomas', ',', 'however', ',', 'forfeited', 'the', 'much', 'older', ',', 'seductive', 'vera', 'colombani', ',', 'a', 'castle', 'owner', '.'], ['in', '1', '9', '4', '4', ',', 'after', 'the', 'genocide', 'and', 'deportation', 'of', 'the', 'chechen', 'and', 'ingush', 'people', 'and', 'the', 'chechen-ingush', 'assr', 'was', 'abolished', ',', 'the', 'village', 'of', 'katyr-yurt', 'was', 'renamed', 'to', 'tutovo', ',', 'and', 'settled', 'by', 'people', 'from', 'other', 'ethnic', 'groups', '.'], ['it', 'is', 'located', 'in', 'the', 'gard', 'department', ',', 'in', 'the', 'occitanie', 'region', ',', 'southern', 'france', '.'], ['he', 'was', 'the', 'coach', 'of', 'the', 'calgary', 'stampeders', 'from', '1', '9', '8', '0', 'to', '1', '9', '8', '1', '.'], ['in', 'the', 'first', 'round', ',', 'one', 'team', 'is', 'chosen', 'to', 'play', 'first', ',', 'and', 'chooses', 'one', 'of', 'two', 'categories', 'presented', ',', 'leaving', 'the', 'second', 'team', 'to', 'play', 'the', 'remaining', 'category', '.'], ['as', 'with', 'the', 'ankle', 'knee', 'step', ',', 'the', 'toe', 'is', 'the', 'last', 'part', 'of', 'the', 'foot', 'to', 'leave', 'the', 'ground', 'and', 'the', 'first', 'to', 'reconnect', '.'], ['preceding', 'the', 'biographies', 'is', 'a', 'series', 'of', '``', 'introductory', 'surveys', \"''\", ',', 'a', 'product', 'of', 'a', 'somewhat', 'dated', 'notion', 'in', 'gender', 'studies', 'that', 'women', 'can', 'be', 'grouped', 'into', 'categories', '.'], ['his', 'hobbies', 'included', 'philanthropy', ',', 'scientific', 'research', 'and', 'agriculture', '.'], ['danovich', 'was', 'the', 'orchestra', 'contractor', 'and', 'the', 'bandleader', 'for', 'the', 'canadian', 'premiere', 'of', '``', 'the', 'phantom', 'of', 'the', 'opera', \"''\", 'musical', 'in', 'ottawa', '.'], ['the', 'character', 'returned', 'to', 'the', 'series', 'in', 'march', '2', '0', '1', '1', 'under', 'the', 'portrayal', 'of', 'kate', 'mansi', ',', 'and', 'departed', 'in', 'june', '2', '0', '1', '6', '.'], ['kate', 'talks', 'with', 'darla', 'on', 'the', 'scene', ',', 'but', 'when', 'kate', 'turns', 'her', 'back', ',', 'angel', 'grabs', 'darla', 'and', 'takes', 'her', 'away', 'to', 'the', 'convent', '.'], ['the', 'shape', 'may', 'also', 'be', 'subglobose', ',', 'turbinate', 'or', 'helicoid', '.'], ['st.', 'louis', 'country', 'club', '(', 'slcc', ')', 'is', 'a', 'country', 'club', 'located', 'in', 'ladue', ',', 'missouri', ',', 'a', 'suburb', 'of', 'st.', 'louis', '.'], ['his', 'award', 'lecture', ',', 'delivered', 'at', 'the', 'apa', 'annual', 'meeting', 'in', 'san', 'diego', ',', 'ca', 'was', 'on', '``', 'managing', 'up', '.', \"''\"], ['on', '2', '8', 'april', '1', '9', '1', '8', 'the', 'captured', 'icebreaker', 'was', 'renamed', '``', 'wäinämöinen', \"''\", 'after', 'the', 'legendary', 'finnish', 'hero', '.'], ['tina', 'angerer', 'took', 'over', 'the', 'newly', 'created', 'position', 'of', 'local', 'section', \"'s\", 'chief', 'reporter', '.'], ['longer', 'tours', 'and', 'guest', 'performances', 'took', 'her', 'to', 'graz', ',', 'vienna', ',', 'saint', 'petersburg', 'and', 'moscow', '.'], ['rahilly', 'was', ',', 'however', ',', 'a', 'member', 'of', 'the', 'geelong', 'reserves', 'team', 'which', 'won', 'the', '2', '0', '0', '2', 'victorian', 'football', 'league', '(', 'vfl', ')', 'premiership', 'and', 'was', 'awarded', 'the', 'norm', 'goss', 'memorial', 'medal', 'for', 'his', 'efforts', 'in', 'the', 'grand', 'final', '.'], ['this', 'coincided', 'with', 'the', 'period', 'when', 'the', 'quraysh', 'were', 'persecuting', 'the', 'lower-class', 'muslims', '.'], ['the', 'federal', 'reserve', 'added', '$', '1', '0', '0', 'billion', 'in', 'liquidity', 'per', 'day', ',', 'during', 'the', 'three', 'days', 'following', 'the', 'attack', ',', 'to', 'help', 'avert', 'a', 'financial', 'crisis', '.'], ['most', 'burials', 'now', 'being', 'held', 'at', 'allambie', 'park', 'cemetery', '.'], ['norclomipramine', ',', 'also', 'known', 'as', '``', 'n', \"''\", '-desmethylclomipramine', 'and', 'chlordesipramine', ',', 'is', 'the', 'major', 'active', 'metabolite', 'of', 'the', 'tricyclic', 'antidepressant', '(', 'tca', ')', 'clomipramine', '(', 'anafranil', ')', '.'], ['rasulo', 'quickly', 'impressed', 'and', 'progressed', 'through', 'the', 'academy', 'and', 'youth', 'teams', ',', 'being', 'selected', 'as', 'captain', 'for', 'several', 'age', 'groups', '.'], ['the', 'first', 'teaser', 'image', 'showed', 'a', 'drastic', 'change', 'of', 'image', 'from', 'the', 'singer', 'as', 'she', 'tries', 'blonde', 'hair', 'for', 'the', 'first', 'time', 'and', 'a', 'more', 'mature', 'concept', '.'], ['many', 'spaces', 'of', 'sequences', 'or', 'functions', 'are', 'infinite-dimensional', 'banach', 'spaces', '.'], ['the', 'missing', 'scenes', 'were', 'later', 'recovered', 'along', 'with', 'the', 'other', 'copy', 'of', 'episode', '1', '.'], ['in', 'recent', 'years', 'the', 'estimation', 'of', 'faragher', \"'s\", 'importance', 'has', 'risen', 'to', 'that', 'given', 'to', 'him', 'by', 'roeder', 'and', 'others', 'during', 'his', 'lifetime', '.'], ['the', 'initially', 'independent', 'strabane', '&', 'amp', ';', 'letterkenny', 'railway', 'company', 'was', 'worked', 'by', 'the', 'county', 'donegal', 'railways', '(', 'joint', 'committee', ')', 'during', 'its', 'short', 'life', '.'], ['in', 'a', 'later', 'storyline', 'vartox', ',', 'like', 'superman', ',', 'loses', 'his', 'homeworld', 'and', 'adopts', 'a', 'new', 'world', 'which', 'he', 'is', 'sworn', 'to', 'protect', '.'], ['video', 'series', 'to', 'teach', 'children', 'basic', 'american', 'sign', 'language', '(', 'asl', ')', ',', 'which', 'was', 'broadcast', 'on', 'public', 'television', '.'], ['these', 'sites', 'included', 'salt', 'mines', 'at', 'altaussee', ',', 'merkers', ',', 'and', 'a', 'copper', 'mine', 'at', 'siegen', '.'], ['coal', 'extraction', 'in', 'lancashire', 'has', 'resulted', 'in', 'flashes', 'occurring', 'in', 'and', 'around', 'wigan', ',', 'such', 'as', '(', 'pennington', 'flash', 'country', 'park', ')', 'which', 'now', 'covers', 'over', 'with', 'the', 'park', 'being', 'over', '.'], ['dmitry', 'konstantinovich', 'kiselyov', '(', ';', 'born', 'april', '2', '6', ',', '1', '9', '5', '4', ')', ',', 'is', 'a', 'soviet', 'and', 'russian', 'journalist', ',', 'presenter', ',', 'news', 'executive', 'and', 'propagandist', '.'], ['in', '2', '0', '0', '4', ',', 'chao', 'was', 'inducted', 'into', 'the', 'international', 'maritime', 'hall', 'of', 'fame', 'at', 'the', 'united', 'nations', 'in', 'recognition', 'of', 'his', 'long-standing', 'service', 'and', 'dedication', 'to', 'the', 'international', 'maritime', 'trading', 'industry', '.'], ['chase', 'tan', 'was', 'born', 'on', '1', 'april', '1', '9', '9', '0', '.'], ['she', 'feels', 'committed', 'to', 'fight', 'against', 'elitism', 'and', 'secrecy', '.'], ['tracy', 'kirabo', ',', 'professionally', 'known', 'as', 'pia', 'pounds', 'is', 'a', 'ugandan', 'singer-songwriter', 'and', 'performer', 'of', 'the', 'electronic', 'dance', 'and', 'afrobeat', 'music', '.'], ['located', 'against', 'the', 'western', 'walls', 'were', 'the', 'chelyadna', ',', 'or', 'serfs', \"'\", 'quarters', ',', 'which', 'housed', 'up', 'to', '7', '0', 'serfs', 'who', 'served', 'the', 'castle', '.'], ['already', 'unable', 'to', 'forgive', 'herself', 'for', 'her', 'role', 'in', 'the', 'botched', 'assassination', 'attempt', 'on', 'kill', 'ana', 'and', 'samantha', ',', 'her', 'relationship', 'with', 'salvador', 'suffers', 'as', 'she', 'blames', 'salvador', 'for', 'their', 'son', \"'s\", 'murder', '.'], ['st', 'lawrence', \"'s\", 'church', 'is', 'a', 'romanesque', 'church', 'in', 'haut-ittre', '.'], ['after', 'sputnik', 'he', 'experimented', 'with', 'model', 'rocketry', ',', 'becoming', 'a', 'member', 'of', 'the', 'junior', 'division', 'of', 'the', 'chicago', 'rocket', 'society', 'and', 'various', 'science', 'clubs', '.'], ['pucheran', 'worked', 'as', 'a', 'zoologist', 'and', 'naturalist', 'at', 'the', 'muséum', 'national', \"d'histoire\", 'naturelle', '.'], ['back', 'in', 'sweden', ',', 'blom', 'was', 'promoted', 'and', 'continued', 'doing', 'both', 'practical', 'construction', 'works', 'for', 'the', 'military', 'and', 'other', 'architectural', 'commissions', '.'], ['the', 'writers', 'had', 'intended', 'to', 'name', 'the', 'character', 'as', 'early', 'as', 'his', 'first', 'episode', ',', 'but', 'they', 'could', 'not', 'think', 'of', 'a', 'name', 'for', 'him', ',', 'and', 'they', 'called', 'him', '``', 'comic', 'book', 'guy', \"''\", ',', 'with', 'the', 'intention', 'of', 'naming', 'the', 'character', 'the', 'next', 'time', 'they', 'used', 'him', '.'], ['apparanda', 'bopu', 'and', 'cheppudira', 'ponnappa', 'were', 'retained', 'as', 'the', 'dewans', 'of', 'coorg', '.'], ['the', 'statutes', 'governing', 'marriage', 'are', 'drafted', 'by', 'the', 'state', ',', 'and', 'not', 'by', 'the', 'couples', 'who', 'marry', 'under', 'those', 'laws', '.'], ['by', '1', '9', '9', '5', ',', 'films', 'such', 'as', '``', 'toy', 'story', \"''\", 'underscored', 'the', 'fact', 'that', 'the', 'distinction', 'between', 'live-action', 'films', 'and', 'animated', 'films', 'was', 'no', 'longer', 'clear', '.'], ['in', '2', '0', '0', '7', ',', 'the', 'gang', 'was', 'believed', 'to', 'be', 'composed', 'of', 'approximately', '5', '0', 'men', '.'], ['during', 'the', 'building', 'boom', 'in', 'the', '1', '8', '8', '0', 's', ',', 'nearly', 'half', 'of', 'the', '3', ',', '0', '0', '0', 'homes', 'built', 'in', 'cabbagetown', 'were', 'bay-and-gables', ',', 'with', 'many', 'of', 'these', 'homes', 'initially', 'owned', 'by', 'a', 'select', 'number', 'of', 'speculative', 'developer', '.'], ['the', 'structure', \"'s\", 'horizontally-oriented', 'massing', 'was', 'broken', 'by', 'an', 'engaged', 'central', 'section', 'at', 'the', 'main', 'entrance', 'and', 'two', 'other', 'similar', 'treatments', 'at', 'the', 'end', 'portions', '.'], ['harvard', 'graduate', 'school', 'of', 'design', '(', 'gsd', ')', 'offers', 'a', 'course', 'entitled', 'interdisciplinary', 'design', 'in', 'practice', 'led', 'by', 'instructor', 'hanif', 'kara', '.'], ['in', 'material', 'science', 'and', 'solid', 'mechanics', ',', 'orthotropic', 'materials', 'have', 'material', 'properties', 'at', 'a', 'particular', 'point', ',', 'which', 'differ', 'along', 'three', 'mutually-orthogonal', 'axes', ',', 'where', 'each', 'axis', 'has', 'twofold', 'rotational', 'symmetry', '.'], ['rock', 'of', 'the', 'arts', 'said', 'of', 'their', 'festival', 'appearance', ',', '``', '(', '...', ')', 'pitsch', 'and', 'tenement', 'really', 'exhibit', 'the', 'independent', 'qualities', 'that', 'eaux', 'claires', 'holds', 'so', 'dearly', '.'], ['her', 'mother', 'died', 'a', 'few', 'years', 'later', ',', 'at', 'which', 'point', 'page', 'moved', 'to', 'boston', '.'], ['she', 'triple', 'jumped', '1', '3', '.', '6', '5', 'm', 'in', '2', '0', '0', '8', ',', 'but', 'did', 'not', 'improve', 'upon', 'this', 'performance', 'for', 'three', 'years', '.'], ['however', ',', 'prof.', 'stephen', 'h.', 'savage', 'of', 'arizona', 'state', 'university', 'provides', 'the', 'following', 'parameters', 'for', 'the', 'projection', ':'], ['in', 'mexico', 'it', 'turns', 'out', 'that', 'tiffany', 'has', 'a', 'lover', 'there', 'whom', 'she', 'is', 'going', 'to', 'marry', '.'], ['this', 'pentagon', 'has', 'the', 'words', 'bach', 'variation', 'g', 'inscribed', 'on', 'it', '.'], ['the', 'parish', 'priest', 'is', 'fr', 'michael', 'childs', ',', 'who', 'was', 'instituted', 'and', 'inducted', 'as', 'vicar', 'of', 'the', 'parish', 'in', 'september', '2', '0', '1', '8', '.'], ['they', 'are', 'a', 'product', 'of', 'the', 'women', 'who', 'created', 'them', '.'], ['frederic', 'moore', 'described', 'a', 'number', 'of', 'new', 'species', 'through', 'this', 'publication', '.'], ['the', 'vase', 'is', 'made', 'in', 'alabaster', ',', 'with', 'a', 'height', 'of', '2', '9', '.', '2', 'cm', ',', 'and', 'a', 'diameter', 'of', '1', '6', 'cm', '.'], ['for', 'the', '1', '9', '9', '4', 'enhanced', 'version', ',', 'the', 'character', 'artwork', 'and', 'sprites', 'and', 'backgrounds', 'were', 'done', 'by', 'fred', 'dianda', '.'], ['it', 'was', 'built', 'by', 'a', 'merchant', 'and', 'is', 'decorated', 'with', 'figures', 'from', 'the', 'jain', 'pantheon', '.'], ['kroeger', 'lost', 'to', 'incumbent', 'republican', 'walt', 'rogers', 'by', 'a', '1', '0', ',', '0', '7', '2', 'to', '7', ',', '2', '0', '0', 'margin', ',', '5', '8', '%', 'to', '4', '2', '%', '.'], ['his', 'daughter', 'nancy', 'is', 'currently', 'the', 'mayor', 'of', 'greensboro', '.'], ['virginia', 'then', 'began', 'to', 'move', 'northwest', 'and', 'weakened', 'to', 'a', 'category', '4', 'typhoon', 'as', 'it', 'passed', 'east', 'of', 'luzon', 'on', 'june', '2', '3', 'and', 'june', '2', '4', '.'], ['the', 'per', 'capita', 'income', 'for', 'the', 'town', 'was', '$', '1', '3', ',', '0', '7', '7', '.'], ['when', 'otilia', 'is', 'searching', 'for', 'mr.', 'bebe', ',', 'there', 'is', 'also', 'a', 'line', 'of', 'people', 'visible', 'in', 'the', 'background', 'queuing', 'for', 'food', ',', 'reflecting', 'the', 'lack', 'of', 'food', 'security', 'in', 'the', '1', '9', '8', '0', 's', '.'], ['in', 'collaboration', 'with', 'margaret', 'kidwell', ',', 'then', 'at', 'brown', 'university', ',', 'and', 'gerry', 'rubin', ',', 'then', 'at', 'the', 'carnegie', 'institution', ')', ',', 'he', 'carried', 'out', 'the', 'molecular', 'cloning', 'of', 'the', 'p', 'element', 'transposon', 'in', 'drosophila', '(', 'bingham', ',', 'et', 'al.', ',', '1', '9', '8', '2', ')', '.'], ['eumunida', 'chani', 'is', 'a', 'species', 'of', 'chirostylid', 'squat', 'lobster', 'first', 'found', 'in', 'taiwan', '.'], ['wail', 'al-shehri', ',', 'his', 'brother', 'waleed', ',', 'and', 'satam', 'al-suqami', 'arrived', 'together', 'at', 'logan', 'airport', 'at', '0', '6', ':', '4', '5', 'on', 'september', '1', '1', ',', '2', '0', '0', '1', '.'], ['8', '0', '%', 'of', 'moiliili', \"'s\", 'population', 'was', 'of', 'japanese', 'origins', 'as', 'of', 'the', '1', '9', '3', '0', 'u.s.', 'census', '.'], ['branscombe', 'died', 'on', '2', '2', 'july', '1', '2', '8', '0', 'at', 'bishopsteignton', '.'], ['food', '&', 'amp', ';', 'water', 'watch', 'was', 'the', 'first', 'u.s.', 'national', 'organization', 'to', 'call', 'for', 'a', 'ban', 'on', 'fracking', 'and', 'helped', 'achieve', 'bans', 'in', 'new', 'york', '(', '2', '0', '1', '4', ')', 'and', 'maryland', '(', '2', '0', '1', '7', ')', '.'], ['the', 'artist', \"'s\", 'print', 'studio', 'can', 'be', 'found', 'at', 'buku-larrnggay', 'mulka', ',', 'the', 'indigenous', 'art', 'centre', 'located', 'at', 'yirrkala', '.'], ['there', 'have', 'been', 'a', 'number', 'of', 'different', 'perspectives', 'on', 'this', 'issue', ',', 'each', 'offering', 'a', 'number', 'of', 'insights', 'and', 'suggestions', '.'], ['esther', 'lamandier', 'is', 'a', 'french', 'soprano', 'and', 'harpist', 'known', 'for', 'explorations', 'in', 'early', 'chant', 'and', 'monodic', 'music', '.'], ['for', 'his', 'home', 'race', ',', 'a', '1', 'team', 'australia', 'renamed', 'its', 'cars', 'as', '``', 'jackaroo', \"''\", '.'], ['the', 'white', 'plumed', 'pickelhaube', 'is', 'also', 'worn', 'by', 'the', 'officers', '.'], ['microsoft', 'offers', 'support', 'for', 'quick', 'sync', 'in', 'windows', '(', 'in', 'windows', 'vista', 'and', 'later', ')', 'based', 'on', 'supporting', 'driver', 'software', 'from', 'intel', 'and', 'support', 'through', 'both', 'directx', 'as', 'well', 'as', 'wmf', '(', 'windows', 'media', 'foundation', ')', '.'], ['once', 'the', 'player', 'completes', 'a', 'mission', ',', 'they', 'are', 'given', 'a', 'four', 'letter', 'passcode', ',', 'so', 'that', 'they', 'can', 'return', 'to', 'the', 'same', 'mission', 'during', 'subsequent', 'plays', '.'], ['nabavi', 'has', 'been', 'arrested', 'and', 'jailed', 'on', 'two', 'occasions', 'for', 'his', 'political', 'satire', '.'], ['as', 'of', '2', '0', '0', '3', ',', 'only', 'four', 'people', 'remained', 'of', 'this', 'kanoê', 'family', ',', 'with', 'two', 'of', 'them', 'being', 'monolingual', 'kanoê', 'speakers', '.'], ['the', 'second', 'storyline', '``', 'the', 'word', 'of', 'avis', \"''\", 'deals', 'with', 'the', '``', 'orville', \"''\", 'crew', 'investigating', 'a', 'union', 'ship', 'heading', 'into', 'krill', 'space', '.'], ['mandal', 'described', 'the', 'doctor', 'in', 'question', 'as', 'a', '``', 'very', 'senior', 'and', 'respected', 'surgeon', \"''\", '.'], ['additionally', ',', 'as', 'has', 'been', 'observed', 'in', 'folivorous', 'primates', ',', 'they', 'exhibit', 'a', 'strong', 'preference', 'for', 'immature', 'leaves', ',', 'which', 'tend', 'to', 'be', 'easier', 'to', 'masticate', ',', 'tend', 'to', 'be', 'higher', 'in', 'energy', 'and', 'protein', ',', 'and', 'lower', 'in', 'fibre', 'and', 'poisons', 'than', 'more', 'mature', 'fibrous', 'leaves', '.'], ['black', 'is', 'known', 'to', 'have', 'regularly', 'travelled', 'upon', 'the', 'road', 'where', 'greedharry', \"'s\", 'body', 'was', 'found', 'when', 'making', 'deliveries', 'in', 'northern', 'france', '.'], ['geoffrey', 'winston', 'bradfield', '(', 'born', '2', '8', 'february', '1', '9', '4', '8', ')', 'was', 'a', 'south', 'african', 'cricketer', 'who', 'played', 'for', 'northamptonshire', '.'], ['the', 'operation', 'to', 'occupy', 'thag', 'la', 'was', 'flawed', 'in', 'that', 'nehru', \"'s\", 'directives', 'were', 'unclear', 'and', 'it', 'got', 'underway', 'very', 'slowly', 'because', 'of', 'this', '.'], ['george', 'w.', 'bush', 'signed', 'the', 'act', 'into', 'law', 'on', '1', '3', 'october', ',', 'and', 'partygaming', 'suspended', 'offerings', 'of', 'real-money', 'games', 'to', 'u.s.', 'players', '.'], ['there', 'are', 'many', 'lakes', ',', 'ponds', ',', 'and', 'raging', 'rivers', '.'], ['his', 'twin', 'brother', ',', 'joshua', 'sowers', ',', 'formerly', 'played', 'in', 'the', 'toronto', 'blue', 'jays', 'organization', '.'], ['its', 'only', 'species', ',', 'monocymia', 'harmina', ',', 'was', 'first', 'described', 'by', 'schaus', 'in', '1', '9', '0', '4', '.'], ['the', 'besieged', 'were', 'reduced', 'to', 'feeding', 'on', 'cats', 'and', 'dogs', ',', 'but', 'in', 'june', '1', '6', '3', '6', 'william', ',', 'landgrave', 'of', 'hesse', ',', 'aided', 'by', 'the', 'swedes', 'under', 'sir', 'alexander', 'leslie', ',', 'raised', 'the', 'siege', '.'], ['it', 'was', 'the', 'time', 'when', 'a.', 'r.', 'rahman', 'decided', 'to', 'do', 'music', 'on', 'his', 'own', '.'], ['on', '2', '6', 'october', 'he', 'was', 'a', 'member', 'of', 'the', 'british', 'rugby', 'union', 'team', '(', 'represented', 'by', 'cornwall', ')', 'which', 'won', 'the', 'silver', 'medal', 'losing', 'against', 'australia', 'in', 'the', 'final', ',', 'the', 'game', 'was', 'played', 'at', 'white', 'city', 'stadium', 'as', 'twickenham', 'was', 'still', 'being', 'built', 'at', 'the', 'time', '.'], ['she', 'was', 'regularly', 'featured', 'at', 'the', 'tilt', 'gallery', 'in', 'portland', ',', 'oregon', '.'], ['the', 'interior', 'architecture', 'of', 'terminal', '3', 'recently', 'won', 'the', 'honour', 'award', 'from', 'asla', '.'], ['each', 'division', \"'s\", 'representatives', 'have', 'a', 'biennial', 'conference', 'where', 'it', 'decides', 'its', 'policy', 'regarding', 'that', 'division', '.'], ['dastgeer', 'sahib', ',', 'a', 'religious', 'building', 'constructed', 'in', 'the', 'memory', 'of', 'shaikh', 'abdul', 'qadir', 'jilani', ',', 'attracts', 'people', 'who', 'perform', 'various', 'rituals', 'on', 'the', 'occasion', 'of', 'gyarvi', 'sharif', '(', 'urs', ')'], ['most', 'of', 'the', 'book', 'consists', 'of', 'his', 'portraits', 'of', 'people', ',', 'both', 'leaders', 'and', 'ordinary', 'people', ',', 'he', 'thinks', 'have', 'shown', 'courage', '.'], ['the', '[', '[', 'gjirokastër', 'national', 'folklore', 'festival', ']', ']', ',', '[', '[', 'albania', ']', ']', ',', '(', ')', ',', 'has', 'been', 'held', 'every', 'five', 'years', 'in', 'the', 'month', 'of', 'october', ',', 'starting', 'from', '1', '9', '6', '8', 'and', 'it', 'has', 'typically', 'included', 'many', 'polyphonic', 'songs', '.'], ['fighting', 'ended', 'as', 'sheikh', 'moktar', 'ali', 'zubeyr', ',', 'the', 'amir', '(', 'leader', ')', 'of', 'al-shabaab', 'gave', 'government', 'forces', 'an', 'ultimatum', 'of', '5', 'days', '(', 'until', '1', '0', 'june', ')', 'to', 'hand', 'over', 'their', 'weapons', '.'], ['ole', 'hits', 'is', 'a', 'weekly', 'reggae', 'dance', 'event', 'held', 'sundays', 'in', 'the', 'neighborhood', '.'], ['this', 'included', 'attempting', 'to', 'develop', 'improved', 'means', 'of', 'producing', 'coffee', 'beans', ',', 'rotan', 'and', 'paraffin', '.'], ['the', 'diapontia', 'islands', 'or', 'diapontian', 'islands', '(', ')', ',', 'also', 'known', 'as', 'othonoi', 'islands', '(', ')', 'are', 'a', 'greek', 'island', 'group', 'in', 'the', 'ionian', 'sea', '.'], ['``', 'technically', ',', 'a', 'grant', 'of', 'arms', 'from', 'the', 'lord', 'lyon', 'is', 'a', 'patent', 'of', 'nobility', '(', 'also', 'referred', 'to', 'a', \"'diploma\", 'of', 'nobility', \"'\", ')', ';', 'the', 'grantee', 'is', 'thereby', \"'enrolled\", 'with', 'all', 'nobles', 'in', 'the', 'noblesse', 'of', 'scotland', '.'], ['different', 'organisms', 'evolved', 'different', 'mechanisms', 'to', 'produce', 'structural', 'colours', ':', 'multilayered', 'cuticle', 'in', 'some', 'insects', 'and', 'plants', ',', 'grating', 'like', 'surface', 'in', 'plants', ',', 'geometrically', 'organised', 'cells', 'in', 'bacteria', '...', 'all', 'of', 'theme', 'stand', 'for', 'a', 'source', 'of', 'inspiration', 'towards', 'the', 'development', 'of', 'structurally', 'coloured', 'materials', '.'], ['the', '2', '0', '1', '1', 'season', 'saw', 'her', 'set', 'a', 'long', 'jump', 'best', 'of', '6', '.', '3', '8', 'm', 'and', 'clear', 'fourteen', 'metres', 'in', 'the', 'triple', 'jump', 'both', 'indoors', 'and', 'out', '.'], ['cardiff', 'received', 'a', 'golden', 'globe', 'award', 'for', 'best', 'director', '.'], ['the', 'nfl', \"'s\", '1', '0', 'teams', 'played', '1', '1', 'games', ',', 'its', 'standard', 'since', '1', '9', '3', '7', '.'], ['consultation', 'with', 'a', 'conservator-restorer', 'may', 'be', 'necessary', 'to', 'fully', 'address', 'these', 'topics', '.'], ['janssen', \"'s\", 'patent', 'on', 'risperidone', 'expired', 'on', '2', '9', 'december', '2', '0', '0', '3', ',', 'opening', 'the', 'market', 'for', 'cheaper', 'generic', 'versions', 'from', 'other', 'companies', ',', 'and', 'janssen', \"'s\", 'exclusive', 'marketing', 'rights', 'expired', 'on', '2', '9', 'june', '2', '0', '0', '4', '(', 'the', 'result', 'of', 'a', 'pediatric', 'extension', ')', '.'], ['during', 'november', ',', 'the', 'second', 'most', 'intense', 'flurry', 'of', 'rocket', 'attacks', 'from', 'gaza', 'into', 'southern', 'israel', 'took', 'place', '.'], ['however', 'he', 'assisted', 'in', 'carrying', 'an', 'injured', 'medical', 'officer', 'to', 'the', 'battle', 'dressing', 'station', 'amidships', 'where', 'he', 'collapsed', 'from', 'loss', 'of', 'blood', 'and', 'exhaustion', '.'], ['this', 'task', 'was', 'easily', 'accomplished', 'by', 'robertson', 'on', 'august', '8', '.'], ['by', 'october', '1', '9', '0', '0', 'the', 'company', 'controlled', 'a', 'range', 'of', 'assets', 'including', '5', '0', '0', 'acres', 'of', 'mining', 'leases', ',', '3', '2', '0', 'acres', 'of', 'freehold', ',', 'tramway', 'leases', ',', 'water', 'rights', 'and', 'battery', 'sites', 'at', 'nigger', 'creek', 'and', 'rocky', 'bluff', '.'], ['his', 'son', 'and', 'grandson', 'both', 'lived', 'from', 'time', 'to', 'time', 'in', 'their', 'city', 'townhouse', 'that', 'is', 'now', 'part', 'of', 'the', 'temple', 'bar', '.'], ['her', 'name', 'was', 'struck', 'from', 'the', 'u.s.', 'navy', 'list', 'on', '1', '4', 'may', '1', '9', '5', '2', '.'], ['elmo', 'became', ',', 'as', 'writer', 'michael', 'davis', 'reported', ',', '``', 'the', 'embodiment', \"''\", 'of', '``', 'sesame', 'street', \"''\", ',', 'and', '``', 'the', 'marketing', 'wonder', 'of', 'our', 'age', \"''\", 'when', 'five', 'million', '``', 'tickle', 'me', 'elmo', \"''\", 'dolls', 'were', 'sold', 'in', '1', '9', '9', '6', '.'], ['pluskowski', 'participated', 'in', 'the', 'warsaw', 'uprising', 'as', 'lieutenant', 'of', 'the', 'polish', 'armed', 'forces', 'and', 'was', 'awarded', 'poland', \"'s\", 'highest', 'military', 'decoration', 'for', 'valor', ',', 'the', 'virtuti', 'militari', ',', 'on', '5', 'august', '1', '9', '4', '4', '.'], ['ji', 'served', 'as', 'the', 'junction', 'for', 'the', 'roads', 'connecting', 'the', 'central', 'plain', 'with', 'mongolia', 'and', 'manchuria', '.'], ['it', 'was', 'added', 'to', 'the', 'national', 'register', 'of', 'historic', 'places', 'on', 'september', '1', '8', ',', '1', '9', '8', '0', '.'], ['after', 'receiving', 'his', 'high', 'school', 'diploma', 'he', 'went', 'on', 'to', 'study', 'economics', 'at', 'the', 'university', 'of', 'genova', 'before', 'dedicating', 'himself', 'full-time', 'to', 'the', 'automobile', 'world', '.'], ['the', 'confederation', 'of', 'public', 'employees', \"'\", 'trade', 'unions', '(', ',', 'kesk', ')', 'is', 'one', 'of', 'the', 'four', 'major', 'national', 'trade', 'union', 'centers', 'in', 'turkey', '.'], ['he', 'was', 'quoted', 'as', 'saying', 'that', 'he', 'had', 'decided', 'to', 'move', 'on', 'to', 'a', 'different', 'phase', 'of', 'his', 'life', '.'], ['``', 'the', 'romantic', \"''\", 'was', 'nominated', 'for', 'the', 'man', 'booker', 'prize', '.'], ['the', 'units', 'operating', 'in', 'oslo', 'and', 'skien', 'had', 'problems', 'with', 'the', 'rheostatic', 'brake', 'operating', 'differently', 'depending', 'on', 'the', 'direction', 'the', 'train', 'was', 'running', ',', 'something', 'which', 'was', 'not', 'observed', 'in', 'flåm', '.'], ['npf', 'used', 'to', 'have', 'a', 'presence', 'in', 'the', 'greater', 'toronto', 'area', '(', 'gta', ')', 'as', 'well', ',', 'although', 'chettleburgh', 'has', 'stated', 'that', 'npf', 'is', 'no', 'longer', 'very', 'active', 'there', '.'], ['an', 'intellirepeater', ',', 'or', 'ir', ',', 'site', 'is', 'a', 'bare-bones', 'trunked', 'site', 'which', 'has', 'no', 'database', 'of', 'users', 'or', 'talkgroups', '.'], ['emamzadeh', 'darvishan', '(', ',', 'also', 'romanized', 'as', 'emāmzādeh', 'darvīshān', ';', 'also', 'known', 'as', 'emāmzādeh', 'ḩasan', ')', 'is', 'a', 'village', 'in', 'poshtkuh', 'rural', 'district', ',', 'falard', 'district', ',', 'lordegan', 'county', ',', 'chaharmahal', 'and', 'bakhtiari', 'province', ',', 'iran', '.'], ['sullivan', \"'s\", 'family', 'did', 'not', 'report', 'him', 'missing', 'for', 'more', 'than', '1', '0', 'days', ',', 'and', 'his', 'body', 'was', 'brought', ',', 'and', 'held', ',', 'at', 'the', 'local', 'fordham', 'morgue', '.'], ['the', 'brown', 'hyena', '(', '``', 'hyaena', 'brunnea', \"''\", ')', ',', 'also', 'called', 'strandwolf', ',', 'is', 'a', 'species', 'of', 'hyena', 'found', 'in', 'namibia', ',', 'botswana', ',', 'western', 'and', 'southern', 'zimbabwe', ',', 'southern', 'mozambique', 'and', 'south', 'africa', '.'], ['reece', 'was', 'a', 'co-founder', 'of', 'the', 'indigenous', 'media', 'arts', 'group', '(', 'imag', ')', ',', 'and', 'the', 'director', 'from', 'foundation', 'until', '2', '0', '0', '5', '.'], ['meanwhile', ',', 'paulus', 'had', 'established', 'his', 'brother', ',', 'antonio', 'in', 'a', 'printing', 'office', 'and', 'book', 'shop', 'at', 'bologna', '.'], ['gary', 'madine', 'put', '``', 'the', 'tangerines', \"''\", 'ahead', 'on', 'ten', 'minutes', ',', 'but', 'a', 'double', 'from', 'marcus', 'browne', 'before', 'the', 'end', 'of', 'the', 'first', 'half', 'gave', 'the', 'hosts', 'the', 'three', 'points', '.'], ['to', 'improve', 'the', 'situation', ',', 'in', 'july', '1', '9', '8', '6', 'officials', 'from', 'the', 'state', 'education', 'commission', ',', 'state', 'planning', 'commission', ',', 'and', 'ministry', 'of', 'labor', 'and', 'personnel', 'convened', 'a', 'national', 'conference', 'on', 'developing', 'china', \"'s\", 'technical', 'and', 'vocational', 'education', '.'], ['sorensen', 'moved', 'to', 'los', 'angeles', ',', 'where', 'he', 'studied', 'acting', 'at', 'the', 'beverly', 'hills', 'playhouse', ',', 'and', 'then', 'to', 'austin', ',', 'texas', ',', 'where', 'he', 'wrote', ',', 'directed', ',', 'produced', 'and', 'edited', 'the', '2', '0', '1', '1', 'indie', 'comedy', 'film', '``', 'campus', 'radio', \"''\", '.'], ['arnold', 'heights', ',', 'california', 'is', 'named', 'in', 'his', 'honor', ',', 'as', 'is', 'arnold', 'drive', ',', 'a', 'main', 'arterial', 'road', 'running', 'through', 'sonoma', 'valley', 'near', 'his', 'ranch', '.'], ['garde-reserve-division', \"''\", ')', 'was', 'a', 'reserve', 'infantry', 'division', 'of', 'the', 'imperial', 'german', 'army', 'in', 'world', 'war', 'i', '.'], ['during', 'test', 'runs', ',', 'it', 'has', 'achieved', 'a', 'speed', 'of', '.'], ['construction', 'of', 'mifflin', 'county', 'high', 'school', 'cost', '$', '6', '4', 'million', 'in', '2', '0', '1', '1', '.'], ['he', 'also', 'rerecorded', 'serge', 'gainsbourg', \"'s\", 'classic', 'album', ',', '``', \"l'homme\", 'à', 'tête', 'de', 'chou', \"''\", ',', 'for', 'a', 'show', '.'], ['he', 'was', 'born', 'in', 'naples', ',', 'apparently', 'to', 'a', 'german', 'family', 'of', 'engravers', '.'], ['it', 'also', 'marked', 'the', '3', '3', 'rd', 'launch', 'of', 'the', 'a', '2', '1', '0', '0', 'platform', '.'], ['he', 'responded', 'in', 'a', 'paper', 'in', 'late', '2', '0', '1', '7', '.'], ['moonwalker', 'is', 'a', '1', '9', '8', '8', 'american', 'experimental', 'anthology', 'musical', 'film', 'starring', 'michael', 'jackson', '.'], ['biebrich', 'palace', '(', ')', 'is', 'a', 'baroque', 'residence', '(', '``', 'schloss', \"''\", ')', 'in', 'the', 'borough', 'of', 'biebrich', 'in', 'the', 'city', 'of', 'wiesbaden', ',', 'hesse', ',', 'germany', '.'], ['during', 'the', '2', '0', '0', '6', 'south', 'american', 'transfer', 'saga', ',', 'gago', \"'s\", 'name', 'was', 'also', 'linked', 'with', 'a', 'move', 'to', 'milan', '.'], ['the', 'two', 'sons', 'of', 'anthony', 'trollope', ',', 'the', 'novelist', ',', 'were', 'admitted', 'to', 'st', 'columba', \"'s\", 'in', '1', '8', '5', '8', ',', 'but', 'were', 'withdrawn', 'the', 'following', 'year', 'after', 'john', 'gwynn', 'had', 'sent', 'one', 'of', 'them', 'home', 'in', 'disgrace', ',', 'accused', 'of', 'a', 'serious', 'misdemeanour', '.'], ['chao', 'has', 'led', 'the', 'global', 'shipping', 'industry', 'in', 'incorporating', '``', 'greener', \"''\", ',', 'more', 'environmentally', 'friendly', 'designs', 'and', 'technology', 'into', 'his', 'company', \"'s\", 'fleet', 'of', 'new', 'vessels', ',', 'some', 'of', 'the', 'world', \"'s\", 'largest', 'bulk', 'carriers', '.'], ['she', 'was', 'a', 'member', 'of', 'the', '8', 'th', 'and', '1', '0', 'th', 'lok', 'sabha', 'beside', 'the', 'rajya', 'sabha', 'and', 'the', 'karnataka', 'legislative', 'assembly', '.'], ['as', 'of', '1', '9', '8', '6', ',', 'this', 'had', 'increased', 'to', 'around', '3', '5', '-', '4', '0', 'utilities', ':'], ['the', 'southern', 'end', 'of', 'i-', '2', '8', '0', 'is', 'an', 'interchange', 'in', 'wood', 'county', 'with', 'exit', '7', '1', 'along', 'the', 'ohio', 'turnpike', ',', 'which', 'carries', 'interstate', '8', '0', 'and', 'interstate', '9', '0', 'at', 'this', 'point', '.'], ['in', 'march', '2', '0', '1', '4', ',', 'barry', 'reached', 'the', 'final', 'of', 'the', 'great', 'britain', 'f', '8', 'futures', ',', 'however', 'he', 'finished', 'runner-up', 'to', 'marcus', 'willis', '.'], ['the', 'crusades', 'brought', 'a', 'renewed', 'enthusiasm', 'for', 'religious', 'devotion', ',', 'especially', 'for', 'the', 'passion', 'of', 'christ', '.'], ['another', 'former', 'bush', 'aide', ',', 'speechwriter', 'and', 'policy', 'advisor', 'michael', 'gerson', ',', 'agreed', 'that', 'prohibiting', 'the', 'center', 'would', '``', 'undermine', 'the', 'war', 'on', 'terrorism', \"''\", ':'], ['grainger', 'high', 'school', 'served', 'kinston', 'until', '1', '9', '7', '0', 'as', 'a', 'segregated', 'school', '.'], ['his', 'writing', 'style', 'began', 'to', 'change', 'coinciding', 'with', 'his', 'appointment', 'as', 'chair', 'of', 'composition', 'and', 'theory', 'at', 'the', 'university', 'of', 'akron', 'school', 'of', 'music', '(', '2', '0', '0', '0', '-', '2', '0', '1', '4', ')', '.'], ['following', 'vasculogenesis', 'and', 'the', 'development', 'of', 'an', 'early', 'vasculature', ',', 'a', 'stage', 'of', 'vascular', 'remodelling', 'takes', 'place', '.'], ['the', 'church', 'was', 'closed', 'in', '2', '0', '1', '2', 'due', 'to', 'concerns', 'over', 'the', 'structure', ',', 'and', 'the', 'danger', 'of', 'falling', 'slates', '.'], ['when', 'the', '1', '9', '2', '0', 's', 'revolution', 'was', 'oppressed', 'by', 'kuomintang', ',', 'rao', 'went', 'abroad', 'for', 'study', 'in', 'england', ',', 'france', 'and', 'the', 'soviet', 'union', 'for', 'approximately', 'a', 'year', '.'], ['rivera', 'died', 'on', 'december', '9', ',', '2', '0', '1', '2', ',', 'when', 'her', 'private', 'plane', 'crashed', ',', 'before', 'the', 'divorce', 'was', 'finalized', '.'], ['jerri', 'is', 'not', 'very', 'intelligent', ',', 'but', 'she', 'is', 'a', 'shrewd', 'thief', 'and', 'resourceful', 'drug', 'user', '(', 'e.g.', ',', 'finding', 'a', 'vein', ',', 'creating', 'drugs', 'from', 'household', 'cleaners', ',', 'etc', '.', ')', '.'], ['ace', 'inhibitors', 'improve', 'symptoms', ',', 'decrease', 'mortality', 'and', 'reduce', 'ventricular', 'hypertrophy', '.'], ['as', 'of', '2', '0', '1', '9', ',', 'edinburgh', 'had', 'the', '8', 'th', 'highest', 'average', 'entry', 'qualification', 'for', 'undergraduates', 'among', 'uk', 'universities', ',', 'with', 'new', 'students', 'averaging', '1', '8', '9', 'ucas', 'points', ',', 'equivalent', 'to', 'just', 'above', 'aaaaa', 'in', 'a-level', 'grades', '.'], ['brown', 'later', 'said', 'it', 'gave', 'brower', 'an', 'edge', 'on', 'other', '``', 'hillbilly', \"''\", 'fiddlers', '``', 'who', 'had', 'no', 'bowing', 'technique', '.', \"''\"], ['the', 'college', 'of', 'social', 'sciences', 'consists', 'of', 'eight', 'departments', '.'], ['typically', ',', 'rigid', 'lines', 'are', 'connected', 'using', 'standardised', 'eia', 'rf', 'connectors', 'whose', 'bullet', 'and', 'flange', 'sizes', 'match', 'the', 'standard', 'line', 'diameters', '.'], ['the', 'wording', '``', 'for', 'god', 'and', 'the', 'empire', \"''\", 'was', 'inscribed', 'round', 'the', 'upper', 'side', ',', 'and', '``', 'for', 'gallantry', \"''\", 'in', 'the', 'exergue', '.'], ['three', 'years', 'later', ',', 'rhea', 'h.', 'and', 'e.', 'reginald', 'adam', 'donated', '1', '6', '2', 'acres', 'of', 'adjacent', 'farm', 'land', 'to', 'metro', 'parks', ',', 'and', 'the', '2', '7', '8', '-acre', 'hampton', 'hills', 'metro', 'park', 'was', 'born', '.'], ['it', 'is', 'the', 'most', 'common', 'peripheral', 'corneal', 'opacity', ',', 'and', 'is', 'usually', 'found', 'in', 'the', 'elderly', 'where', 'it', 'is', 'considered', 'a', 'benign', 'condition', '.'], ['in', 'her', 'ministerial', 'office', ',', 'antonopoulou', 'was', 'specifically', 'tasked', 'with', 'implementing', 'a', 'nationwide', '``', 'job', 'guarantee', \"''\", 'program', 'to', 'combat', 'long-term', 'unemployment', ',', 'creating', 'at', 'least', '3', '0', '0', ',', '0', '0', '0', 'new', 'jobs', 'for', 'the', 'unemployed', '.'], ['highly', 'praised', 'by', 'all', 'was', 'petula', 'clark', ',', 'whom', 'ebert', 'described', 'as', '``', 'a', 'surprise', '.'], ['on', 'september', '2', ',', '1', '8', '6', '2', ',', 'abbott', \"'s\", 'regiment', 'covered', 'the', 'retreat', 'of', 'the', 'defeated', 'forces', 'of', 'union', 'major', 'general', 'john', 'pope', 'after', 'the', 'second', 'battle', 'of', 'manassas', 'or', 'bull', 'run', '.'], ['gaël', 'pencreach', '(', 'born', '5', 'august', '1', '9', '7', '7', 'in', 'le', 'creusot', ')', 'is', 'a', 'retired', 'french', 'athlete', 'who', 'specialised', 'in', 'the', '3', '0', '0', '0', 'metres', 'steeplechase', '.'], ['additional', 'non-good', 'elven', 'types', 'created', 'for', 'this', 'setting', 'include', 'the', 'snow', 'elves', ',', 'valley', 'elves', ',', 'and', 'wild', '(', 'grugach', ')', 'elves', '.'], ['he', 'was', 'awarded', 'a', 'bronze', 'star', 'medal', 'for', 'his', 'service', 'in', 'iraq', '.'], ['they', 'joined', 'in', 'fellowship', 'in', '1', '8', '3', '2', 'with', 'a', 'handshake', '.'], ['finnish', 'universities', 'such', 'as', 'turku', 'university', 'of', 'applied', 'sciences', '(', 'turku', ',', 'finland', ')', 'and', 'arcada', 'university', 'of', 'applied', 'sciences', '(', 'helsinki', ',', 'finland', ')', 'actively', 'participated', 'to', 'the', 'project', 'through', 'material', 'donations', 'and', 'by', 'letting', 'their', 'students', 'work', 'in', 'dakar', '.'], ['bruno', 'continues', 'his', 'visits', 'to', 'theatres', ',', 'including', 'one', 'that', 'no', 'longer', 'screens', 'films', 'because', 'the', 'owner', 'regards', 'modern', 'films', 'as', 'exploitative', '.'], ['the', 'town', 'is', 'also', 'the', 'home', 'town', 'of', 'fishing', 'personality', 'ross', 'gould', '.'], ['as', 'of', 'march', '2', '0', '1', '8', ',', 'it', 'was', 'on', 'the', 'market', 'for', 'sale', '.'], ['it', 'was', 'listed', 'as', 'a', 'bien', 'de', 'interés', 'cultural', 'in', '2', '0', '1', '4', '.'], ['metacritic', 'gives', 'the', 'film', 'a', 'score', 'of', '3', '7', '/', '1', '0', '0', '(', 'generally', 'unfavorable', 'reviews', ')', 'based', 'on', '1', '9', 'reviews', '.'], ['as', 'the', 'capps', 'was', 'only', 'for', 'luggage', ',', 'the', 'three', 'hijackers', 'did', 'not', 'undergo', 'any', 'extra', 'scrutiny', 'at', 'the', 'passenger', 'security', 'checkpoint', '.'], ['upstream', 'from', 'there', 'the', 'river', 'became', 'shallow', 'and', 'rocky', ',', 'so', 'logan', 'did', 'not', 'explore', 'further', '.'], ['fairfax', 'entered', 'on', 'a', 'renewed', 'career', ',', 'active', 'in', 'preaching', 'and', 'the', 'formation', 'of', 'nonconformist', 'congregations', '.'], ['the', 'orchestra', 'for', 'the', 'two', 'sessions', 'was', 'expanded', 'to', '2', '5', 'players', 'and', 'included', 'woodwind', ',', 'brass', ',', 'percussion', 'and', 'harp', '.'], ['raising', 'the', 'pension', 'eligibility', 'age', 'of', 'pensions', 'is', 'a', 'contentious', 'issue', ',', 'but', 'a', 'slim', 'majority', 'of', '5', '3', '%', 'acknowledge', 'the', 'fiscal', 'need', 'to', 'raise', 'the', 'eligibility', 'age', '.'], ['wilcots', 'played', 'six', 'seasons', 'in', 'the', 'league', 'for', 'the', 'cincinnati', 'bengals', ',', 'minnesota', 'vikings', 'and', 'pittsburgh', 'steelers', '.'], ['the', 'region', 'is', 'in', 'northern', 'europe', ',', 'and', 'consists', 'of', 'denmark', ',', 'norway', ',', 'and', 'sweden', '.'], ['though', 'never', 'compensated', 'for', 'their', 'losses', 'by', 'the', 'colonial', 'government', ',', 'various', 'family', 'members', 'did', 'receive', 'payments', 'from', 'the', 'british', 'government', 'in', 'following', 'years', '.'], ['park', 'chung-hee', ',', 'the', 'third', 'president', 'of', 'south', 'korea', ',', 'was', 'assassinated', 'on', 'october', '2', '6', ',', '1', '9', '7', '9', ',', 'during', 'a', 'dinner', 'at', 'the', 'korean', 'central', 'intelligence', 'agency', '(', 'kcia', ')', 'safehouse', 'inside', 'the', 'blue', 'house', 'presidential', 'compound', 'in', 'jongno', 'district', ',', 'seoul', ',', 'south', 'korea', '.'], ['when', 'waititi', 'sought', 'a', 'point', 'of', 'order', ',', 'mallard', 'ordered', 'him', 'to', 'leave', '.'], ['he', 'has', 'published', 'the', 'books', '``', 'beaufort', 'west', \"''\", '(', '2', '0', '0', '8', ')', ',', '``', 'retinal', 'shift', \"''\", '(', '2', '0', '1', '2', ')', 'and', ',', 'with', 'patrick', 'waterhouse', ',', '``', 'ponte', 'city', \"''\", '(', '2', '0', '1', '4', ')', '.'], ['in', 'addition', 'to', 'music', 'and', 'discussion', 'programming', ',', 'ckon', 'is', 'also', 'the', 'official', 'broadcaster', 'of', 'cornwall', 'colts', 'junior-league', 'ice', 'hockey', '.'], ['in', 'august', '2', '0', '1', '8', ',', 'he', 'was', 'one', 'of', 'twelve', 'debutants', 'to', 'be', 'selected', 'for', 'a', '3', '1', '-man', 'preliminary', 'squad', 'for', 'bangladesh', 'ahead', 'of', 'the', '2', '0', '1', '8', 'asia', 'cup', '.'], ['the', 'formation', 'forms', 'a', 'part', 'of', 'the', 'lambeth', 'group', '.'], ['from', '1', '8', '9', '7', '-', '1', '8', '9', '8', 'van', 'keuren', 'was', 'brigade', 'general', 'and', 'quartermaster', 'general', '.'], ['later', 'plans', 'by', 'robert', 'moses', 'in', 'the', '1', '9', '5', '0', 's', 'called', 'for', 'spring', 'creek', 'park', 'to', 'extend', 'to', 'cross', 'bay', 'boulevard', 'in', 'howard', 'beach', ',', 'queens', 'and', 'include', 'a', 'new', 'beach', 'and', 'boat', 'basin', '.'], ['the', 'cluster', 'science', 'archive', 'is', 'the', 'esa', 'long', 'term', 'archive', 'of', 'the', 'cluster', 'and', 'double', 'star', 'science', 'missions', '.'], ['his', 'mother', 'was', 'an', 'ndebele', ',', 'and', 'his', 'father', 'was', 'an', 'ethnic', 'basotho', 'who', 'had', 'emigrated', 'from', 'lesotho', '.'], ['he', 'had', 'finished', 'a', 'manuscript', 'of', 'a', 'book', 'he', 'called', '``', 'ork', '!'], ['he', 'was', 'coach', 'during', 'eight', 'winter', 'olympics', 'and', 'later', 'served', 'as', 'a', 'coordinator', '.'], ['probably', 'the', 'most', 'valuable', 'were', 'two', 'carbonaceous', 'chondrites', ',', 'found', 'at', 'crescent', ',', 'oklahoma', ',', 'in', '1', '9', '3', '6', 'and', 'at', 'bells', ',', 'texas', ',', 'in', '1', '9', '6', '1', '.'], ['they', 'live', 'in', 'brooklyn', 'heights', 'and', 'have', 'two', 'daughters', 'susan', 'and', 'margaret', '.'], ['baffert', 'commented', ',', '``', 'it', 'looked', 'like', 'that', 'horse', 'was', 'going', 'to', 'go', 'by', 'him', ',', 'but', 'then', 'he', \"'s\", 'such', 'a', 'fighter', ',', 'he', 'just', 'kicked', 'in', '.'], ['the', 'track', 'was', 'well', 'received', 'by', 'audiences', 'and', 'critics', 'with', 'over', 'two', 'million', 'hits', 'on', 'youtube', '.'], ['approximately', '1', ',', '5', '0', '0', 'young', 'people', 'attended', 'the', 'summit', '.'], ['φ', 'with', 'the', 'first', 'variable', '``', 'x', \"''\", '1', 'replaced', 'by', 'true', ',', 'and', 'simplified', 'accordingly', '.'], ['noting', 'a', 'skull', 'was', 'still', 'intact', ',', 'he', 'smashed', 'it', 'to', 'pieces', 'with', 'his', 'rake', '.'], ['the', 'anguish', 'of', 'le', 'fanu', \"'s\", 'diaries', 'suggests', 'that', 'he', 'felt', 'guilt', 'as', 'well', 'as', 'loss', '.'], ['in', 'this', 'sitcom', ',', 'fred', 'and', 'lamont', 'were', 'owners', 'of', 'a', 'junk/salvage', 'store', 'in', 'watts', ',', 'california', ',', 'who', 'dealt', 'with', 'many', 'humorous', 'situations', '.'], ['on', 'february', '2', '9', ',', '2', '0', '1', '2', ',', 'brown', 'tweeted', '``', 'i', 'hope', 'this', 'album', 'shows', 'growth', 'and', 'positivity', 'to', 'all', 'my', 'fans', 'and', 'will', 'inspire', 'them', 'to', 'live', 'life', 'to', 'the', 'fullest', '!', '!', '!'], ['further', ',', 'there', 'are', 'many', 'idiopathic', 'occurrences', 'of', 'kyphoscoliosis', 'where', 'the', 'exact', 'cause', 'is', 'not', 'very', 'well', 'known', 'but', 'is', 'suspected', 'to', 'be', 'caused', 'by', 'genetic', 'factors', '.'], ['duncan', \"'s\", 'strong', 'announcement', 'exposed', 'a', 'rift', 'among', 'oregon', 'democrats', ',', 'including', 'oregon', \"'s\", 'senior', 'senator', 'wayne', 'morse', ',', 'a', 'leading', 'anti-war', 'voice', ',', 'and', 'duncan', \"'s\", 'house', 'colleague', ',', 'edith', 'green', '.'], ['she', 'did', 'a', 'cover', 'shoot', 'for', '``', 'hustler', \"''\", 'magazine', 'and', 'layouts', 'for', '``', 'high', 'society', \"''\", 'and', '``', 'new', 'rave', \"''\", 'before', 'making', 'the', 'jump', 'into', 'adult', 'films', 'in', '1', '9', '9', '5', '.'], ['this', 'location', 'became', 'the', 'first', 'marshall', \"'s\", 'department', 'store', '.'], ['in', '2', '0', '1', '5', ',', 'brentz', 'missed', 'time', 'from', 'may', '2', '0', 'through', 'august', '2', 'with', 'a', 'right', 'hamstring', 'strain', '.'], ['two', 'are', 'elected', 'in', 'the', 'year', 'after', 'the', 'presidential', 'election', 'and', 'one', 'is', 'elected', 'in', 'the', 'year', 'before', 'it', '.'], ['an', 'os', 'x', 'port', 'was', 'later', 'released', 'on', '1', '7', 'december', '2', '0', '1', '2', 'through', 'steam', 'and', 'on', '1', '8', 'december', '2', '0', '1', '2', 'through', 'desura', '.'], ['5', '2', '%', 'desmoplastic', 'ameloblastomas', 'showed', 'mandibular', 'involvement', ',', 'with', 'a', 'tendency', 'to', 'anterior', 'region', '.'], ['bellevue', 'heights', 'is', 'located', 'within', 'the', 'federal', 'division', 'of', 'boothby', ',', 'the', 'state', 'electoral', 'district', 'of', 'davenport', 'and', 'the', 'local', 'government', 'area', 'of', 'city', 'of', 'mitcham', '.'], ['critical', 'response', 'to', 'devi', 'has', 'generally', 'been', 'positive', ',', 'especially', 'towards', 'the', 'artwork', ',', 'which', 'has', 'drawn', 'almost', 'unanimous', 'praise', '.'], ['the', 'statement', 'was', 'accepted', 'by', 'commanders', 'of', 'these', 'areas', 'during', 'a', 'conference', 'at', 'strmica', 'near', 'knin', 'a', 'month', 'later', '.'], ['the', 'power', 'output', 'was', 'expected', 'to', 'increase', 'to', 'between', '8', '0', '0', 'and', '9', '0', '0', 'ps', '(', 'hp', ')', ',', 'and', 'with', 'supercharging', 'to', '1', '1', '0', '0', 'to', '1', '2', '0', '0', 'hp', '.'], ['the', 'concluding', 'issue', 'of', 'the', 'series', 'was', 'published', 'in', 'march', '2', '0', '1', '8', '.'], ['he', 'was', 'instrumental', 'in', 'founding', 'the', 'joint', 'commission', 'on', 'rural', 'reconstruction', 'in', '1', '9', '4', '8', ',', 'which', 'then', 'moved', 'to', 'taiwan', '.'], ['she', 'was', 'the', 'leading', 'lady', 'of', 'the', 'company', 'with', 'marina', 'dorotea', 'antonazzoni', ',', 'but', 'their', 'rivalry', 'resulted', 'in', 'her', 'being', 'replaced', 'by', 'maria', 'malloni', 'in', '1', '6', '1', '9', '.'], ['on', 'the', 'other', 'hand', ',', 'it', 'was', 'unsatisfactory', 'for', 'a', 'medium', 'tank', '(', 'because', 'it', 'used', 'the', 'same', 'engine', 'that', 'powered', 'the', 'm', '4', 'a', '3', ',', 'which', 'was', 'some', 'ten', 'tons', 'lighter', ')', 'and', 'its', 'transmission', 'was', 'somewhat', 'unreliable', '.'], ['the', 'community', 'changed', 'from', 'being', 'an', 'agriculture-centered', 'town', 'to', 'an', 'urban', 'area', 'in', 'the', 'early', '2', '0', 'th', 'century', '.'], ['the', 'road', 'continues', 'over', 'the', 'elenydd', 'to', 'cwmystwyth', 'and', 'a', 'cul-de-sac', 'branch', 'runs', 'to', 'the', 'dam', 'of', 'claerwen', 'reservoir', '.'], ['bruce', 'straley', ',', 'game', 'director', 'on', 'the', 'original', 'game', ',', 'left', 'naughty', 'dog', 'in', '2', '0', '1', '7', ';', 'druckmann', 'felt', 'that', 'the', 'dynamic', 'on', '``', 'part', 'ii', \"''\", ',', 'the', 'first', 'game', 'he', 'co-directed', 'without', 'straley', ',', 'was', 'different', 'as', 'a', 'result', '.'], ['on', '5', 'october', '2', '0', '1', '2', ',', 'tavares', 'signed', 'on', 'a', 'free', 'transfer', 'for', 'fulham', '.'], ['after', 'that', 'there', 'is', 'no', 'record', 'of', 'diego', 'and', 'in', 'march', '9', '7', '5', 'his', 'see', 'was', 'occupied', 'by', 'his', 'successor', ',', 'bermudo', '.'], ['she', 'was', 'made', 'an', 'mbe', 'in', '1', '9', '2', '0', '.'], ['by', 'the', 'end', 'of', 'the', 'decade', ',', '``', 'chronicle', \"''\", 'had', 'already', 'won', 'several', 'new', 'england', 'emmy', 'awards', 'and', 'countless', 'other', 'accolades', '.'], ['he', 'is', 'the', 'younger', 'brother', 'of', 'scuderia', 'ferrari', 'formula', 'one', 'driver', 'charles', 'leclerc', ',', 'and', 'a', 'member', 'of', 'ferrari', 'driver', 'academy', '.'], ['the', 'post', 'includes', 'a', 'full', 'track', 'listing', 'and', 'says', 'that', 'the', 'title', 'is', 'taken', 'from', 'a', 'painting', 'by', 'ryan', 'iverson', 'who', 'agreed', 'to', 'let', 'the', 'band', 'use', 'the', 'image', 'for', 'the', 'album', 'cover', '.'], ['he', 'was', 'not', 'in', 'the', 'lineup', 'for', 'the', 'second', 'game', '.'], ['it', 'depicts', 'the', 'bank', 'of', 'montreal', \"'s\", 'headquarters', ',', 'first', 'canadian', 'place', 'over', 'a', 'building', 'in', 'poor', 'repair', '.'], ['other', 'items', 'could', 'also', 'be', 'purchased', 'through', 'the', 'retail', 'store', '(', 'an', 'important', 'revenue', 'generator', 'for', 'government', 'settlements', ')', ',', 'where', 'inmates', 'used', 'their', 'own', 'money', 'to', 'buy', 'additional', 'food', 'and', 'domestic', 'items', '.'], ['she', 'remained', 'with', 'rai', 'until', '2', '0', '0', '7', '.'], ['the', 'yaruba', 'dynasty', 'later', 'lost', 'power', 'to', 'the', 'persian', 'colonizers', '.'], ['the', 'vast', 'majority', 'of', 'local', 'authorities', 'use', 'plurality', 'at', 'large', '(', 'bloc', 'voting', ')', 'instead', 'of', 'stv', '.'], ['this', 'number', 'is', 'called', 'the', '``', 'degree', 'of', 'cyclicity', \"''\", 'of', 'the', 'problem', 'or', 'its', 'hingewidth', '.'], ['shoshana', 'shababo', 'was', 'born', 'in', 'zikhron', \"ya'akov\", 'to', 'a', 'sephardic', 'jewish', 'family', 'originally', 'from', 'safed', '.'], ['he', 'used', 'dogs', 'from', 'the', 'birdsong', ',', 'maupin', ',', 'and', 'walker', 'lines', 'to', 'develop', 'his', 'strain', '.'], ['since', 'the', '1', '9', '2', '0', 's', 'italian', 'race', 'cars', 'of', 'alfa', 'romeo', ',', 'maserati', ',', 'lancia', ',', 'and', 'later', 'ferrari', 'and', 'abarth', 'have', 'been', 'painted', 'in', '``', 'rosso', 'corsa', \"''\", '(', '``', 'racing', 'red', \"''\", ')', '.'], ['rajamalli', 'is', 'a', '1', '9', '6', '5', 'indian', 'malayalam', 'film', ',', 'directed', 'and', 'produced', 'by', 'r.', 's.', 'prabhu', '.'], ['she', 'was', 'appointed', 'ambassador', 'to', 'ireland', 'in', 'july', '2', '0', '0', '8', '.'], ['in', 'there', 'were', 'live', 'births', 'to', 'swiss', 'citizens', 'and', 'were', '3', 'deaths', 'of', 'swiss', 'citizens', '.'], ['in', 'fall', '2', '0', '1', '0', ',', 'cassidy', 'dared', 'bonaduce', 'to', 'learn', 'how', 'to', 'play', 'the', 'bass', 'guitar', 'lines', 'for', 'the', 'songs', 'the', 'partridge', 'family', 'performed', '.'], ['it', 'has', 'around', '2', ',', '1', '0', '0', 'inhabitants', '.'], ['difference', 'in', 'bone', 'levels', 'became', 'statistically', 'significant', 'when', 'the', 'implant-abutment', 'diameter', 'mismatch', 'was', 'greater', 'than', '0', '.', '8', 'mm', ',', 'providing', 'a', '0', '.', '4', 'mm', 'circumferential', 'width', 'of', 'platform', 'switch', 'when', 'the', 'center', 'of', 'the', 'abutment', 'is', 'aligned', 'with', 'and', 'fixed', 'to', 'the', 'center', 'of', 'the', 'implant', '.'], ['the', 'family', 'continued', 'to', 'pay', 'dublin', 'corporation', 'an', 'annual', 'ground', 'rent', 'of', '£', '4', '0', 'for', 'this', 'property', 'for', 'almost', '2', '0', '0', 'years', '.'], ['the', 'undersea', 'pipeline', ',', 'turkish', 'stream', ',', 'with', 'an', 'annual', 'capacity', 'around', ',', 'allows', 'turkey', 'to', 'resell', 'russian', 'gas', 'to', 'the', 'rest', 'of', 'europe', '.'], ['he', 'also', 'gave', 'lessons', ':', 'jean', 'sibelius', 'studied', 'with', 'him', 'briefly', '.'], ['the', 'diplomat', 'qian', 'qichen', ',', 'who', 'served', 'as', 'china', \"'s\", 'foreign', 'minister', 'and', 'vice', 'premier', ',', 'was', 'a', 'descendant', 'of', 'qian', 'daxin', '.'], ['the', 'aircraft', 'was', 'designed', 'to', 'be', 'a', 'single-place', 'or', 'optionally', 'two-seater', '.'], ['the', 'opening', 'sequence', 'and', 'press', 'shots', 'for', 'the', 'special', 'series', 'of', '``', 'strictly', 'come', 'dancing', \"''\", ',', \"''\", 'the', 'people', \"'s\", 'strictly', 'for', 'comic', 'relief', \"''\", ',', 'which', 'aired', 'in', '2', '0', '1', '5', ',', 'were', 'filmed', 'at', 'wrest', 'park', '.'], ['directed', 'by', 'takashi', 'nakamura', ',', 'the', 'film', 'was', 'an', 'official', 'selection', 'of', 'the', '2', '0', '0', '2', 'berlin', 'film', 'festival', '.'], ['this', 'was', 'followed', 'by', 'the', 'rest', 'of', 'the', 'stations', 'on', 'the', 'bukit', 'panjang', 'and', 'sengkang-punggol', 'lrt', 'lines', 'in', '2', '0', '1', '8', '.'], ['the', 'british', 'empire', 'was', 'keen', 'to', 'dominate', 'southeast', 'arabia', 'to', 'curb', 'the', 'influence', 'of', 'other', 'european', 'powers', 'and', 'to', 'weaken', 'the', 'omani', 'empire', 'in', 'the', '1', '8', 'th', 'century', '.'], ['when', 'they', 'returned', 'to', 'the', 'castle', 'he', 'somehow', 'talked', 'the', 'rebels', 'into', 'releasing', 'his', 'family', 'and', 'leaving', ',', 'but', 'the', 'aftermath', 'to', 'follow', 'with', 'latimer', 'would', 'prove', 'to', 'be', 'taxing', 'on', 'the', 'whole', 'family', '.'], ['originally', 'from', 'texas', ',', 'joel', 'was', 'a', 'single', 'father', 'in', 'his', 'late', '2', '0', 's', 'when', 'the', 'initial', '``', 'cordyceps', \"''\", 'outbreak', 'occurred', '.'], ['it', 'focused', 'on', 'providing', 'analytical', 'and', 'laboratory', 'products', ',', 'and', 'had', 'revenues', 'of', 'over', '$', '2', 'billion', 'in', '2', '0', '0', '4', '.'], ['and', 'on', '1', '2', 'june', '2', '0', '1', '5', 'shomrim', 'volunteers', 'were', 'publicly', 'commended', 'for', 'their', 'help', 'in', 'identifying', 'two', 'suspects', 'who', 'slashed', 'the', 'tyres', 'of', 'many', 'vehicles', 'in', 'stamford', 'hill', 'area', '.'], ['members', 'of', 'the', 'organisation', 'include', 'a', 'wide', 'variety', 'of', 'facilities', 'that', 'may', 'take', 'the', 'form', 'of', 'an', 'art', 'colony', ',', 'an', 'artist-run', 'space', ',', 'or', 'other', 'regional', 'residency', 'networks', '.'], ['ekman', 'noted', 'that', 'while', 'universal', 'expressions', 'do', 'not', 'necessarily', 'prove', 'darwin', \"'s\", 'theory', 'that', 'they', 'evolved', ',', 'they', 'do', 'provide', 'strong', 'evidence', 'of', 'the', 'possibility', '.'], ['network', 'rail', 'applied', 'for', 'planning', 'permission', 'in', 'november', '2', '0', '1', '6', 'to', 'update', 'the', 'ticket', 'desk', 'and', 'counter', 'to', 'make', 'it', 'more', 'accessible', 'to', 'passengers', 'with', 'disabilities', '.'], ['in', '1', '9', '0', '5', 'karl', 'pearson', 'coined', 'the', 'term', '``', 'random', 'walk', \"''\", 'while', 'posing', 'a', 'problem', 'describing', 'a', 'random', 'walk', 'on', 'the', 'plane', ',', 'which', 'was', 'motivated', 'by', 'an', 'application', 'in', 'biology', ',', 'but', 'such', 'problems', 'involving', 'random', 'walks', 'had', 'already', 'been', 'studied', 'in', 'other', 'fields', '.'], ['shebib', \"'s\", 'style', 'of', 'production', ',', 'which', 'is', 'often', 'downtempo', 'and', 'ambient', ',', 'has', 'become', 'heavily', 'associated', 'with', 'drake', \"'s\", 'music', '.'], ['the', 'manager', 'lars', 'semb', 'wrote', 'in', '1', '8', '0', '9', 'that', 'the', 'school', 'for', 'the', 'workers', \"'\", 'children', 'was', 'established', 'some', '4', '0', 'years', 'erstwhile', ',', 'around', '1', '7', '7', '0', '.'], ['as', 'of', '2', '0', '2', '0', ',', 'he', 'is', 'the', 'last', 'democratic', 'appointee', 'to', 'serve', 'on', 'the', 'district', 'court', 'for', 'the', 'middle', 'district', 'of', 'alabama', ',', 'and', 'also', 'the', 'last', 'judge', 'appointed', 'by', 'a', 'democratic', 'president', 'to', 'that', 'court', '.'], ['she', 'earned', 'a', 'bachelor', 'of', 'arts', 'and', 'bachelor', 'of', 'laws', 'there', ',', 'and', 'later', 'masters', 'of', 'public', 'and', 'international', 'law', '.'], ['hogan', 'formed', 'an', 'unlikely', 'alliance', 'with', 'a', 'former', 'enemy', 'and', 'top', 'challenger', 'to', 'his', 'wwf', 'world', 'heavyweight', 'championship', ',', 'randy', '``', 'macho', 'man', \"''\", 'savage', '(', 'which', 'was', 'later', 'known', 'as', 'the', 'mega', 'powers', ')', '.'], ['the', 'auster', 'aircraft', 'company', 'purchased', 'a', 'large', 'number', 'of', 'former', 'british', 'army', 'auster', 'aircraft', 'during', 'the', 'late', '1', '9', '5', '0', 's', '.'], ['danny', 'ahn', ',', 'son', 'ho-young', ',', 'yoon', 'kye-sang', 'and', 'kim', 'sun-a', 'had', 'already', 'been', 'recruited', 'for', 'the', 'project', 'group', ',', 'which', 'was', 'planned', 'to', 'be', 'called', '``', 'got', '6', '``', 'but', 'kim', 'sun-a', 'eventually', 'left', 'to', 'pursue', 'acting', '.'], ['marie', ',', 'ontario', ';', 'new', 'orleans', ',', 'louisiana', ';', 'and', 'chicago', ',', 'illinois', ')', '.'], ['biv', 'was', 'discovered', 'in', 'the', 'late', '1', '9', '6', '0', 's', 'in', 'the', 'search', 'for', 'the', 'infectious', 'agent', 'causing', 'bovine', 'leukemia/lymphosarcoma', '.'], ['the', 'funding', 'must', 'be', 'used', 'for', 'costs', 'associated', 'with', 'travel', ',', 'program', 'fees', ',', 'and', 'living', 'expenses', '.'], ['the', 'eighth', ',', '1', '6', '5', 'years', 'after', 'enoch', ',', 'was', 'that', 'of', 'methuselah', 'begotten', 'of', 'enoch', '.'], ['killian', 'finds', 'the', 'formation', 'of', 'the', 'icc', 'and', 'the', 'spontaneous', 'and', 'irregular', 'nature', 'of', 'the', 'boycott', \"'s\", 'initiation', 'commensurate', 'with', 'traditional', 'collective', 'behavior', 'theory', ',', 'which', 'includes', 'such', 'superficially', 'irrational', 'elements', 'as', 'spontaneity', '.'], ['in', '1', '9', '4', '2', ',', 'the', 'institution', 'was', 'a', 'single', 'entity', 'under', 'the', 'direction', 'of', 'the', 'sisters', 'of', 'providence', ',', 'and', 'was', 'renamed', 'the', 'great', 'falls', 'college', 'of', 'education', '.'], ['align=center', 'valign=bottom', 'rowspan=', '2', 'width=', \"''\", '5', '0', '``', '|', '%', '!', '!'], ['mature', 'harappan', 'small', 'farmstead', 'sites', 'are', 'milakpur', 'and', 'gunkali', '.'], ['they', 'also', 'arranged', 'to', 'have', 'their', 'stores', 'of', 'onions', 'reconditioned', 'because', 'they', 'had', 'started', 'to', 'spoil', '.'], ['joint', 'parliamentary', 'committee', '(', 'jpc', ')', 'is', 'one', 'type', 'of', 'ad', 'hoc', 'parliamentary', 'committee', 'constituted', 'by', 'the', 'indian', 'parliament', '.'], ['it', 'is', 'an', 'official', 'language', '(', 'as', 'well', 'as', 'english', ')', 'of', 'the', 'carolinian', 'people', '.'], ['he', 'is', 'one', 'of', 'the', 'most', 'well-published', 'designers', 'of', 'role', 'playing', 'games', 'in', 'sweden', 'and', 'has', 'had', 'a', 'leading', 'role', 'in', 'the', 'production', 'of', 'most', 'of', 'them', ',', 'including', 'classical', 'titles', 'such', 'as', 'drakar', 'och', 'demoner', 'and', 'mutant', '.'], ['the', 'band', 'played', 'their', 'final', 'scheduled', 'show', 'together', 'at', 'the', 'big', 'chill', 'festival', 'at', 'eastnor', 'castle', 'deer', 'park', 'in', 'herefordshire', 'on', '7', 'august', '2', '0', '1', '1', '.'], ['the', 'dvd', 'featured', 'its', 'original', 'english', 'soundtrack', 'in', 'dolby', 'digital', '5', '.', '1', 'surround', 'sound', 'and', 'english', 'subtitles', ';', 'but', 'had', 'no', 'foreign', 'language', 'options', 'for', 'subtitles', 'and', 'audio', '.'], ['y.', 'c.', 'james', 'yen', '(', ',', '1', '8', '9', '0', '-', '1', '9', '9', '0', ')', '.'], ['yanagi', 'was', 'editor', 'of', '``', 'kōgei', \"''\", '(', \"'crafts\", \"'\", ')', ',', 'the', 'journal', 'of', 'the', 'japanese', 'folk', 'arts', 'association', ',', 'issued', 'between', '1', '9', '3', '1', 'and', '1', '9', '5', '1', '.'], ['the', 'scope', ',', 'history', ',', 'sophistication', 'and', 'complexity', 'of', 'the', 'culture', 'are', 'vast', '.'], ['this', 'county', 'was', 'reduced', 'in', 'size', 'on', 'july', '3', ',', '1', '7', '6', '6', 'by', 'the', 'creation', 'of', 'cumberland', 'county', ',', 'and', 'further', 'on', 'march', '1', '6', ',', '1', '7', '7', '0', 'by', 'the', 'creation', 'of', 'gloucester', 'county', ',', 'both', 'containing', 'territory', 'now', 'in', 'vermont', '.'], ['a', 'total', 'of', 'more', 'than', '1', '6', '0', 'designs', 'were', 'made', 'by', 'the', 'kbp', 'up', 'until', '1', 'october', ',', '2', '0', '1', '2', ',', 'the', '8', '5', 'th', 'anniversary', 'of', 'the', 'founding', 'of', 'the', 'enterprise', '.'], ['he', 'is', 'the', 'former', 'tachi', 'palace', 'fights', 'bantamweight', 'champion', 'and', 'king', 'of', 'the', 'cage', 'flyweight', '(', '1', '3', '5', 'lb', ')', 'champion', '.'], ['a', 'refit', 'began', ',', 'but', 'this', 'had', 'not', 'finished', 'at', 'time', 'of', 'the', 'italian', 'armistice', '(', 'nearly', '6', '0', '%', 'of', 'the', 'ship', 'was', 'rebuilt', ')', '.'], ['dr.', 'nandha', '(', 'nandha', ')', 'works', 'at', 'a', 'small', 'makeshift', 'hospital', 'that', 'serves', 'as', 'the', 'only', 'option', 'for', 'the', 'wounded', 'and', 'the', 'dying', 'from', 'the', 'war', '.'], ['ralph', 'died', 'on', '1', 'march', '1', '2', '9', '2', 'while', 'attending', 'a', 'parliament', 'at', 'london', ',', 'from', 'a', 'burst', 'vein', '.'], ['the', 'ps', 'won', 'most', 'of', 'regional', 'and', 'local', 'elections', 'and', 'for', 'the', 'first', 'time', 'in', 'more', 'than', 'fifty', 'years', 'it', 'won', 'control', 'of', 'the', 'senate', 'in', 'the', '2', '0', '1', '1', 'senate', 'election', '.'], ['although', 'the', 'internet', 'was', 'widely', 'used', 'by', 'academia', 'in', 'the', '1', '9', '8', '0', 's', ',', 'commercialization', 'incorporated', 'its', 'services', 'and', 'technologies', 'into', 'virtually', 'every', 'aspect', 'of', 'modern', 'life', '.'], ['it', 'was', 'constructed', 'in', '1', '8', '3', '6', 'and', 'is', 'the', 'first', 'consecrated', 'cemetery', 'in', 'western', 'australia', ',', 'gazetted', 'in', '1', '8', '4', '0', 'as', 'a', 'public', 'burial', 'ground', 'to', 'provide', 'for', 'the', 'needs', 'of', 'a', 'growing', 'community', '.'], ['as', 'a', 'result', ',', 'the', 'bill', 'died', ',', 'and', 'state', 'laws', 'govern', 'whether', 'electronic', 'signatures', 'can', 'be', 'notarized', 'or', 'whether', 'a', 'notarized', 'signature', 'in', 'one', 'state', 'must', 'be', 'accepted', 'in', 'another', '.'], ['schenck', \"'s\", 'pulse', 'became', 'rapid', 'and', 'he', 'experienced', 'a', 'further', 'increase', 'in', 'the', 'hallucinogenic', 'effects', 'of', 'the', 'plant', ':'], ['in', 'september', '2', '0', '0', '8', ',', 'the', '``', 'international', 'workshop', 'on', 'advances', 'in', 'communications', '(', 'vijayfest', '2', '0', '0', '8', ')', \"''\", 'was', 'organized', 'in', 'honour', 'of', 'the', 'distinguished', 'career', 'of', 'bhargava', 'on', 'the', 'occasion', 'of', 'his', 'sixtieth', 'birthday', '.'], ['alix', 'phillips', 'is', 'a', 'single', 'mother', 'who', 'was', 'widowed', 'at', 'age', '2', '0', 'and', 'has', 'a', '1', '9', '-year-old', 'daughter', ',', 'faye', '.'], ['he', 'was', 'anxious', 'to', 'avoid', 'another', 'war', ',', 'especially', 'one', 'which', 'would', 'involve', 'strife', 'within', 'his', 'new', 'enlarged', 'family', '.'], ['a', 'rugby', 'player', 'she', 'had', 'met', 'at', 'a', 'barbecue', 'dragged', 'her', 'into', 'a', 'car', ',', 'punched', 'her', 'several', 'times', 'in', 'the', 'head', ',', 'forced', 'her', 'to', 'repeat', 'what', 'he', 'wanted', 'her', 'to', 'say', ',', 'then', 'raped', 'her', '.'], ['the', '8', '1', 'st', 'national', 'board', 'of', 'review', 'awards', ',', 'honoring', 'the', 'best', 'in', 'film', 'for', '2', '0', '0', '9', ',', 'are', 'given', 'on', 'january', '1', '2', ',', '2', '0', '1', '0', '.'], ['below', 'the', 'word', 'india', ',', 'in', 'capital', 'letters', ',', 'is', 'inscribed', ':'], ['carlson', \"'s\", 'theorem', 'has', 'generalized', 'analogues', 'for', 'other', 'expansions', '.'], ['bank', 'of', 'america', 'recommended', 'that', 'its', 'shareholders', 'not', 'accept', 'the', 'offer', ',', 'even', 'though', 'it', 'was', 'made', 'at', 'a', 'premium', 'to', 'the', 'stock', \"'s\", 'market', 'price', '.'], ['his', 'best', 'year', 'in', 'professional', 'golf', 'was', '1', '9', '8', '8', ',', 'when', 'he', 'won', 'two', 'events', 'on', 'the', 'pga', 'tour', ',', 'as', 'well', 'as', 'the', 'dunlop', 'phoenix', 'in', 'japan', '.'], ['according', 'to', 'a', 'biography', 'edited', 'by', 'georges', 'guillet', 'de', 'saint-george', ',', 'testelin', 'and', 'le', 'brun', 'collaborated', '``', 'on', 'some', 'paintings', 'and', 'decorative', 'schemes', \"''\", 'for', 'the', 'former', 'church', 'of', 'val-de-grâce', '.'], ['in', 'september', '2', '0', '1', '6', ',', 'the', 'commission', 'upheld', 'the', 'women', \"'s\", 'claim', '.'], ['when', 'dorothy', 'papadakos', 'succeeded', 'halley', 'as', 'cathedral', 'organist', 'in', '1', '9', '9', '0', ',', 'she', 'teamed', 'with', 'the', 'paul', 'winter', 'concert', 'for', 'the', 'cathedral', \"'s\", 'festive', 'easter', 'and', 'christmas', 'services', ','], ['in', 'april', '2', '0', '1', '5', ',', 'the', 'company', 'removed', 'the', 'word', '``', 'hill', \"''\", 'from', 'its', 'branding', ',', 'and', 'unveiled', 'a', 'new', 'logo', '.'], ['rudolf', 'stier', ',', 'was', 'responsible', 'for', 'sinking', 'the', '8', '9', '5', '-ton', 'steamer', '``', 'lisette', \"''\", 'near', 'the', 'shipwash', 'lightship', '.'], ['it', 'is', 'transcribed', 'from', 'the', 'opposite', 'strand', 'to', '``', 'bace', '1', '``', 'and', 'is', 'upregulated', 'in', 'patients', 'with', 'alzheimer', \"'s\", 'disease', '.'], ['also', ',', 'the', 'c', '1', '-c', '1', '1', 'bond', '[', '1', '5', '2', '.', '1', '6', '(', '1', '7', ')', 'pm', ']', 'is', 'slightly', 'shorter', 'than', 'the', 'average', 'csp', '3', '-csp', '3', 'bond', 'which', 'is', 'around', '1', '5', '3', '.', '0', 'pm', '.'], ['``', 'art', 'zone', \"''\", 'is', 'known', 'for', 'its', 'performances', 'and', 'interviews', 'at', 'the', 'seattle', 'georgetown', 'stables', '.'], ['dardenne', 'told', 'the', 'press', 'club', 'of', 'baton', 'rouge', 'that', 'he', 'saw', 'too', 'much', 'litter', 'as', 'he', 'traveled', 'the', 'state', 'in', 'his', 'campaign', 'for', 'secretary', 'of', 'state', '.'], ['savage', 'had', 'been', 'portrayed', 'as', 'an', 'egomaniacal', 'heel', 'during', 'most', 'of', 'his', 'first', 'two', 'years', 'in', 'the', 'wwf', ',', 'but', 'in', 'the', 'late', 'summer', 'of', '1', '9', '8', '7', 'began', 'to', 'slowly', 'turn', 'face', '.'], ['what', 'is', 'needed', 'will', 'vary', 'from', 'one', 'person', 'and', 'one', 'employer', 'to', 'the', 'next', ',', 'but', 'do', 'involve', 'the', 'human', 'resource', 'offices', ',', 'the', 'funding', 'agencies', ',', 'the', 'supervisory', 'levels', ',', 'and', 'even', 'union', 'leadership', ',', 'among', 'others', '.'], ['smith', 'worked', 'in', 'the', 'first', 'two', 'games', 'and', 'allowed', 'one', 'unearned', 'run', 'and', 'two', 'hits', 'in', 'two', 'full', 'innings', 'pitched', ',', 'as', 'the', 'dodgers', 'split', 'those', 'games', '.'], ['prominent', 'flat', 'earth', 'researcher', 'brendan', 'wing', 'also', 'resides', 'nearby', '.'], ['minersville', 'area', 'school', 'district', 'achieved', 'ayp', 'status', 'each', 'year', 'from', '2', '0', '0', '4', 'to', '2', '0', '1', '0', ',', 'while', 'in', '2', '0', '0', '3', 'the', 'minersville', 'area', 'school', 'district', 'was', 'in', 'warning', 'status', 'due', 'to', 'lagging', 'student', 'achievement', '.'], ['this', 'mannerist', 'painting', 'is', 'a', 'crowded', 'and', 'confused', 'melee', 'and', 'melange', 'of', 'images', ',', 'including', 'a', 'dragon', ',', 'a', 'dwarf', ',', 'two', 'popes', ',', 'and', 'various', 'symbols', '.'], ['the', 'next', 'season', ',', 'kochi', 'tuskers', 'were', 'dropped', 'from', 'the', 'ipl', 'and', 'smith', 'was', 'put', 'up', 'for', 'auction', '.'], ['in', 'early', '1', '9', '9', '9', ',', 'the', 'magazine', 'renamed', 'the', 'chart', 'to', 'rock', 'report', '.'], ['she', 'asked', 'for', '$', '2', '5', ',', '0', '0', '0', 'from', 'the', 'rail', 'company', 'because', 'she', 'asserted', 'the', 'cause', 'of', 'her', 'fall', 'was', 'improper', 'stairway', 'treads', 'that', 'had', 'the', 'wrong', 'type', 'of', '``', 'corrugations', 'and', 'grooves', \"''\", '.'], ['government', 'officials', 'attempted', 'to', 'stifle', 'the', 'black-market', 'by', 'offering', 'rates', '2', '%', 'below', 'the', 'alleged', 'black-market', 'rates', ',', 'but', 'demand', 'seems', 'to', 'be', 'outweighing', 'their', 'efforts', '.'], ['please', 'baby', 'please', 'is', 'an', 'upcoming', 'american', 'drama', 'film', 'directed', 'by', 'amanda', 'kramer', ',', 'from', 'a', 'screenplay', 'by', 'kramer', 'and', 'noel', 'david', 'taylor', '.'], ['the', 'movie', 'starred', 'gérard', 'depardieu', ',', 'miou-miou', ',', 'claude', 'piéplu', ',', 'dominique', 'laffin', 'and', 'christian', 'clavier', '.'], ['from', 'this', 'period', ',', 'persecution', 'of', 'jews', 'and', 'deportations', 'became', 'endemic', '.'], ['his', 'league', 'and', 'championship', 'career', 'with', 'the', 'louth', 'senior', 'team', 'lasted', 'fourteen', 'seasons', 'from', '1', '9', '5', '6', 'until', '1', '9', '7', '0', '.'], ['he', 'is', 'best', 'known', 'for', 'being', 'the', 'bassist', 'of', 'the', 'rock', 'band', 'collective', 'soul', '.'], ['this', 'extension', 'is', 'attributed', 'to', 'the', 'architect', 'john', 'soane', 'and', 'was', 'part', 'of', 'the', 'alterations', 'carried', 'out', 'under', 'his', 'instruction', 'in', '1', '7', '8', '8', 'and', 'completed', 'in', '1', '7', '9', '0', '.'], ['while', 'he', 'was', 'a', 'teenager', ',', 'he', '``', 'became', 'a', 'black', 'belt', 'in', 'kung', 'fu', 'and', 'then', '...', 'switched', 'to', 'boxing', '...', 'for', 'several', 'years', '.', \"''\"], ['the', 'tardini', 'was', 'the', 'idea', 'of', 'ennio', 'tardini', ',', 'who', 'was', 'a', 'graduate', 'in', 'law', 'and', 'club', 'president', 'from', '1', '9', '2', '1', 'to', '1', '9', '2', '3', ',', 'but', 'although', 'much', 'of', 'his', 'work', 'was', 'political', 'his', 'passion', 'was', 'sport', '.'], ['on', 'october', '2', '7', ',', '1', '7', '6', '8', ',', 'a', 'mob', 'of', 'local', 'residents', ',', 'spiked', 'the', 'guns', 'guarding', 'new', 'orleans', 'and', 'took', 'control', 'of', 'the', 'city', 'from', 'the', 'spanish', '.'], ['in', 'a', 'guest', 'appearance', ',', 'singer-songwriter', 'carole', 'king', 'led', 'the', 'performers', 'through', 'versions', 'of', 'her', 'songs', '``', 'you', \"'ve\", 'got', 'a', 'friend', \"''\", 'and', '``', '(', 'you', 'make', 'me', 'feel', 'like', ')', 'a', 'natural', 'woman', '.', \"''\"], ['the', 'fins', ',', 'of', 'pale', 'colour', ',', 'have', 'rows', 'of', 'small', 'fluorescent', 'blue', 'spots', '.'], ['however', 'limited', 'grazing', 'was', 'permitted', 'till', 'the', 'declaration', 'of', 'the', 'area', 'as', 'a', 'national', 'park', '.'], ['unlike', 'most', 'butterflies', ',', 'the', 'purple', 'emperor', 'does', 'not', 'feed', 'from', 'flowers', 'but', 'instead', 'on', 'the', 'honeydew', 'secreted', 'by', 'aphids', ',', 'sap', 'oozing', 'from', 'oak', 'trees', ',', 'and', 'on', 'dung', ',', 'urine', 'and', 'animal', 'carcasses', '.'], ['5', '0', '0', 'million', 'luxury', 'bunker', 'to', 'be', 'built', 'in', 'the', 'presidential', 'complex', '.'], ['when', 'jasmine', 'decides', 'to', 'leave', 'holby', 'for', 'a', 'job', 'in', 'london', ',', 'she', 'feels', 'that', 'jac', 'does', 'not', 'care', '.'], ['the', 'federal', 'studies', 'were', 'fully', 'supported', 'by', 'the', 'military', 'and', 'many', 'of', 'the', 'recommendations', 'were', 'implemented', 'in', '1', '9', '8', '0', 's', 'to', 'improve', 'the', 'joint', 'efforts', '.'], ['this', 'kiln', 'was', 'still', 'extant', 'in', 'the', '1', '9', '3', '0', 's', ',', 'although', 'derelict', '.'], ['however', ',', 'the', 'start', 'of', 'the', 'following', 'season', 'led', 'to', 'the', 'team', 'failing', 'to', 'fulfill', 'their', 'opening', 'fixtures', 'in', 'the', 'national', 'cup', ',', 'patron', \"'s\", 'cup', 'and', 'the', 'league', ',', 'leading', 'england', 'basketball', 'to', 'finally', 'withdraw', 'the', 'team', 'from', 'competition', '.'], ['the', 'results', 'from', 'this', 'study', 'indicated', 'a', 'significant', 'impact', 'on', 'body', 'image', ',', 'particularly', 'when', 'exposed', 'to', 'muscular', 'superhero', 'characters', '.'], ['``', 'islamic', 'studies', \"''\", 'and', '``', 'history', 'of', 'islam', \"''\", 'are', 'among', 'the', 'fields', 'that', 'he', 'has', 'taught', '.'], ['their', 'sophomore', 'album', '``', 'stillworld', \"''\", 'was', 'released', 'on', 'july', '8', ',', '2', '0', '1', '6', '.'], ['it', 'was', 'released', 'later', 'as', 'the', 'lead', 'single', 'from', 'josé', 'josé', \"'s\", 'album', '``', 'en', 'las', 'buenas', '...', 'y', 'en', 'las', 'malas', \"''\", '(', '1', '9', '9', '0', ')', ',', 'and', 'became', 'his', 'fourth', 'number-one', 'single', 'in', 'the', '``', 'billboard', \"''\", 'top', 'latin', 'songs', 'chart', '.'], ['``', 'galicia', \"''\", 'was', 'delivered', 'on', '3', 'september', '2', '0', '2', '0', ',', 'with', 'her', 'entry', 'into', 'service', 'expected', 'in', '2', '0', '2', '1', '.'], ['edler', 'and', 'hertz', 'shared', 'the', '1', '9', '7', '7', 'lasker-debakey', 'clinical', 'medical', 'research', 'award', 'for', 'this', 'achievement', '.'], ['he', 'later', 'attended', 'the', 'fletcher', 'school', 'of', 'law', 'and', 'diplomacy', 'at', 'tufts', 'university', ',', 'receiving', 'an', 'm.a', '.'], ['in', '1', '6', '9', '3', ',', 'and', 'new', 'brunswick', 'in', '1', '7', '3', '6', '(', 'which', 'later', 'became', 'home', 'to', 'rutgers', 'university', ')', '.'], ['in', 'placental', 'mammals', 'the', 'male', 'ejects', 'urine', 'through', 'the', 'penis', ',', 'and', 'the', 'female', 'through', 'the', 'vulva', '.'], ['if', 'so', ',', 'the', '``', 'centenarius', \"''\", 'may', 'have', 'been', 'the', 'equivalent', 'of', 'a', 'centurion', 'in', 'the', 'old-style', 'units', '.'], ['the', 'song', 'also', 'performed', 'strongly', 'on', 'billboard', \"'s\", 'hot', '1', '0', '0', 'chart', '.'], ['sam', '-', 'voiced', 'by', 'lucy', \"o'byrne\", '-', 'is', 'from', 'australia', '.'], ['however', ',', 'with', 'the', 'emergence', 'of', 'ideas', 'such', 'as', 'liberté', ',', 'égalité', ',', 'and', 'fraternité', ',', 'the', 'women', 'of', 'france', 'joined', 'their', 'voices', 'to', 'the', 'chaos', 'of', 'the', 'early', 'revolution', '.'], ['calumet', 'is', 'an', 'unincorporated', 'community', 'in', 'mississippi', 'county', ',', 'arkansas', ',', 'united', 'states', '.'], ['after', 'hearing', 'the', 'mistress', 'whispering', 'in', 'his', 'ear', 'to', 'discipline', 'her', ',', 'epps', 'then', 'took', 'the', 'whip', 'himself', 'until', ',', 'as', 'described', 'in', 'northup', \"'s\", 'book', ',', 'she', 'was', '``', 'literally', 'flayed', \"''\", 'from', 'over', '5', '0', 'lashes', ',', 'salt', 'water', 'was', 'then', 'poured', 'over', 'her', 'wounds', '.'], ['outgoing', 'council', 'leader', 'bryony', 'rudkin', '(', 'bridge', ')', 'remained', 'as', 'labour', 'group', 'leader', 'and', 'kathy', 'pollard', '(', 'belstead', 'brook', ')', 'became', 'lib', 'dem', 'group', 'leader', '.'], ['alvin', 'lee', 'marts', 'was', 'born', 'on', '4', 'august', '1', '9', '2', '3', 'at', 'wilsonville', ',', 'nebraska', '.'], ['he', 'ended', 'up', 'playing', 'two', 'seasons', 'in', 'los', 'angeles', '.'], ['the', 'nellie', 'bly', 'formation', 'is', 'a', 'geologic', 'formation', 'in', 'oklahoma', '.'], ['nsp', 'is', 'the', 'largest', 'port', 'in', 'russia', 'and', 'the', 'black', 'sea', 'basin', 'and', 'the', 'third', 'in', 'europe', '.'], ['she', 'was', 'originally', 'to', 'have', 'been', 'called', '``', 'gorey', 'castle', \"''\", '(', 'after', 'mont', 'orgueil', 'in', 'jersey', ')', '.'], ['when', 'the', 'discovery', 'of', 'the', 'fossils', 'was', 'reported', 'in', '1', '9', '7', '5', ',', '``', 'quetzalcoatlus', \"''\", 'was', 'the', 'largest', 'flying', 'creature', 'known', 'to', 'have', 'lived', '.'], ['in', 'addition', ',', 'the', 'balance', 'of', 'performance', 'was', 'reviewed', 'for', 'this', 'round', ':', 'the', 'volkswagen', 'golf', 'gti', 'tcr', \"'s\", 'ride', 'height', 'has', 'been', 'reduced', 'by', '1', '0', 'mm', '.'], ['the', 'last', 'time', 'that', 'this', 'type', 'of', 'a', 'deformity', 'had', 'been', 'documented', 'in', 'a', 'giraffe', 'was', 'in', '1', '9', '0', '2', '.'], ['the', 'closest', 'amtrak', 'train', 'station', 'is', 'at', 'the', 'joseph', 'scelsi', 'intermodal', 'transportation', 'center', 'in', 'pittsfield', ',', 'massachusetts', ',', 'served', 'by', 'the', 'boston', 'to', 'chicago', '``', 'lake', 'shore', 'limited', \"''\", 'train', '.'], ['finland', 'and', 'iceland', 'are', 'at', 'times', ',', 'especially', 'in', 'english-speaking', 'contexts', ',', 'considered', 'part', 'of', 'scandinavia', '.'], ['these', 'included', 'giovanni', 'marinelli', ';', 'carlo', 'pareschi', ';', 'luciano', 'gottardi', ';', 'galeazzo', 'ciano', ',', 'the', 'former', 'italian', 'minister', 'of', 'foreign', 'affairs', 'and', 'mussolini', \"'s\", 'son-in-law', ';', 'the', 'honoured', 'marshal', 'of', 'italy', 'emilio', 'de', 'bono', ';', 'and', 'tullio', 'cianetti', '.'], ['mckie', 'says', 'that', '``', 'merchants', 'of', 'doubt', \"''\", 'includes', 'detailed', 'notes', 'on', 'all', 'sources', 'used', ',', 'is', 'carefully', 'paced', ',', 'and', 'is', '``', 'my', 'runaway', 'contender', 'for', 'best', 'science', 'book', 'of', 'the', 'year', \"''\", '.'], ['at', 'metacritic', ',', 'which', 'assigns', 'a', 'normalized', 'rating', 'out', 'of', '1', '0', '0', 'to', 'reviews', 'from', 'mainstream', 'publications', ',', 'the', 'album', 'received', 'an', 'average', 'score', 'of', '7', '5', 'based', 'on', 'six', 'reviews', '.'], ['murphy', 'concludes', 'that', ',', 'just', 'as', 'the', 'son', 'of', 'god', 'limited', 'himself', 'by', 'taking', 'human', 'form', 'and', 'dying', 'on', 'a', 'cross', ',', 'god', 'limits', 'divine', 'action', 'in', 'the', 'world', 'to', 'be', 'in', 'accord', 'with', 'rational', 'laws', 'which', 'god', 'has', 'chosen', '.'], ['the', 'township', 'is', 'governed', 'by', 'a', 'three-member', 'board', 'of', 'trustees', ',', 'who', 'are', 'elected', 'in', 'november', 'of', 'odd-numbered', 'years', 'to', 'a', 'four-year', 'term', 'beginning', 'on', 'the', 'following', 'january', '1', '.'], ['the', 'symptoms', 'of', 'facet', 'joint', 'arthropathy', 'depend', 'entirely', 'on', 'the', 'location', 'of', 'the', 'degenerated', 'spinal', 'joint', ',', 'the', 'severity', 'of', 'the', 'damage', 'and', 'the', 'amount', 'of', 'pressure', 'that', 'is', 'being', 'placed', 'on', 'the', 'surrounding', 'structures', '.'], ['each', 'individual', 'communard', 'has', 'her', 'or', 'his', 'own', 'room', '.'], ['it', 'was', 'first', 'published', 'in', '``', 'accent', ':', 'a', 'quarterly', 'of', 'new', 'literature', \"''\", 'in', '1', '9', '4', '6', 'and', 'is', 'one', 'of', 'the', 'six', 'stories', 'included', 'in', \"o'connor\", \"'s\", '1', '9', '4', '7', 'master', \"'s\", 'thesis', '``', 'the', 'geranium', ':', 'a', 'collection', 'of', 'short', 'stories', \"''\", '.'], ['bagrat', \"'s\", 'son', ',', 'george', 'ii', ',', 'conceded', 'control', 'of', 'the', 'city', 'to', 'his', 'powerful', 'vassal', 'ivane', 'i', ',', 'duke', 'of', 'kldekari', ',', 'thereby', 'buying', 'his', 'loyalty', ',', 'in', '1', '0', '7', '3', '.'], ['in', 'february', '2', '0', '0', '8', ',', 'it', 'was', 'announced', 'that', 'the', 'company', 'had', 'won', 'a', '£', '2', '8', 'm', 'ministry', 'of', 'defence', 'contract', 'to', 'overhaul', 'the', 'royal', 'fleet', 'auxiliary', 'ship', '.'], ['in', 'the', '1', '6', 'th', 'century', 'the', 'castle', 'had', 'a', 'garrison', 'of', 'around', '3', '0', '0', 'soldiers', ',', 'who', 'lived', 'in', 'the', 'town', '.'], ['in', '1', '9', '7', '3', 'he', 'joined', 'dragon', 'productions', 'with', 'oscar', 'grillo', ',', 'who', 'with', 'the', 'arts', 'council', 'of', 'great', 'britain', 'co-financed', '``', 'lautrec', \"''\", '.'], ['on', '2', '7', 'september', ',', 'he', 'then', 'joined', 'hungerford', 'town', '.', '1', '5', 'july', '2', '0', '2', '0', 'klukowski', 'signed', 'for', 'hereford', 'fc', '.'], ['starbucks', 'opened', 'a', 'location', 'on', 'the', 'ground', 'floor', 'in', 'the', 'spring', 'of', '2', '0', '0', '3', '.'], ['junejo', 'took', 'part', 'in', 'the', 'movement', 'for', 'restoration', 'of', 'democracy', 'in', '1', '9', '8', '3', 'and', 'was', 'sent', 'to', 'jail', 'for', 'six', 'months', '.'], ['is', 'an', 'original', 'character', 'from', 'the', '1', '9', '9', '4', '``', 'street', 'fighter', \"''\", 'film', ',', 'who', 'appears', 'as', 'a', 'playable', 'character', 'in', 'both', 'the', 'and', 'the', 'of', 'the', '``', 'street', 'fighter', ':', 'the', 'movie', \"''\", 'video', 'game', '.'], ['her', 'senior', 'year', 'at', 'risd', 'was', 'spent', 'in', 'rome', ',', 'as', 'a', 'participant', 'in', 'the', 'european', 'honors', 'program', '.'], ['on', 'february', '1', '2', ',', '2', '0', '0', '7', ',', 'the', 'white', 'house', 'submitted', 'khalilzad', \"'s\", 'nomination', 'to', 'the', 'senate', 'to', 'become', 'the', 'us', 'ambassador', 'to', 'the', 'united', 'nations', '.'], ['the', 'bridge', 'has', 'an', 'overall', 'width', 'of', ',', 'with', 'a', 'roadway', 'of', '.'], ['``', 'planes', ',', 'trains', ',', 'and', 'automobiles', \"''\", 'had', 'its', 'first', 'dvd', 'release', 'on', 'november', '2', '1', ',', '2', '0', '0', '0', ',', 'when', 'a', '4', '8', '0', 'i', 'widescreen', 'version', 'of', 'the', 'film', 'was', 'issued', 'on', 'dvd', 'in', 'the', 'united', 'states', '.'], ['it', 'was', 'first', 'shown', 'in', 'december', '2', '0', '1', '4', '.'], ['the', 'council', 'was', 'established', 'in', '1', '9', '5', '5', 'with', 'the', 'opening', 'of', 'lodging', 'at', 'sodom', 'near', 'the', 'dead', 'sea', 'works', ',', 'and', 'its', 'jurisdiction', 'covers', 'an', 'area', 'of', '1', ',', '6', '5', '0', 'km', '2', '.'], ['it', 'reaches', '7', 'centimeters', 'in', 'mantle', 'length', ';', 'males', 'weigh', 'about', '4', '0', 'grams', ',', 'females', '4', '5', 'grams', '.'], ['the', 'fourth', ',', '1', '9', '0', 'years', 'after', 'enos', ',', 'was', 'that', 'of', 'kainan', 'begotten', 'of', 'enos', '.'], ['the', 'federal', 'reserve', 'issued', 'a', 'statement', ',', 'saying', 'it', 'was', '``', 'open', 'and', 'operating', '.'], ['the', 'place', 'has', 'potential', 'to', 'yield', 'information', 'that', 'will', 'contribute', 'to', 'an', 'understanding', 'of', 'the', 'cultural', 'or', 'natural', 'history', 'of', 'new', 'south', 'wales', '.'], ['1', 'squadron', 'raf', 'regiment', 'moved', 'toraf', 'honington', 'and', 'no', '.'], ['butter', 'disappeared', 'after', 'october', '1', '9', '4', '4', ',', 'shortly', 'after', 'railway', 'transport', 'to', 'the', 'western', 'parts', 'of', 'the', 'netherlands', 'had', 'stopped', 'in', 'september', 'due', 'to', 'the', 'railway', 'strike', '.'], ['motta', \"'s\", 'concerti', 'conform', 'stylistically', 'of', 'those', 'of', 'giuseppe', 'torelli', '.'], ['it', 'seems', 'to', 'be', 'able', 'to', 'adapt', 'to', 'degraded', 'habitats', 'at', 'the', 'edge', 'of', 'native', 'forests', '.'], ['the', 'return', 'flight', 'is', 'much', 'shorter', 'with', 'fewer', 'enemy', 'planes', 'than', 'the', 'missions', 'to', 'get', 'to', 'the', 'enemy', 'base', '.'], ['oakleaf', 'lake', 'was', 'named', 'for', 'h.', 'j.', 'eckloff', ',', 'an', 'early', 'settler', ',', 'his', 'surname', 'eckloff', 'meaning', '``', 'oak', 'leaf', \"''\", 'in', 'the', 'swedish', 'language', '.'], ['in', 'march', '2', '0', '1', '1', 'the', 'network', 'was', 'renamed', 'the', 'maeil', 'broadcasting', 'network', 'ltd', '.'], ['the', 'museum', 'came', 'under', 'the', 'influence', 'of', 'ethnologists', ',', 'who', 'added', 'information', 'on', 'the', 'economy', ',', 'manners', ',', 'and', 'customs', 'of', 'the', 'inhabitants', '.'], ['the', 'participants', 'in', 'the', 'study', 'were', 'assessed', 'on', 'obsessive-compulsive', 'tendencies', ',', 'the', 'big', 'five', 'personality', 'traits', ',', 'and', 'musical', 'expertise', '.'], ['in', 'former', 'gdr', 'times', ',', 'union', 'was', 'known', 'for', 'a', 'rivalry', 'with', 'bfc', 'dynamo', 'which', 'was', 'reputedly', 'affiliated', 'with', 'east', 'germany', \"'s\", 'secret', 'service', '(', 'stasi', ')', '.'], ['geoffrey', 'left', 'from', 'genoa', ',', 'where', 'he', 'was', 'joined', 'by', 'the', 'khan', \"'s\", 'ambassador', 'to', 'the', 'west', 'buscarel', 'of', 'gisolfe', 'to', 'go', 'to', 'the', 'mongol', 'capital', 'of', 'tabriz', '.'], ['according', 'to', '``', 'the', 'guardian', \"''\", ',', 'the', 'nielsen', 'bookscan', 'reported', 'sales', 'of', '1', '4', '7', ',', '8', '9', '9', 'copies', 'made', 'it', 'only', 'the', '3', '2', 'nd', 'bestselling', 'book', 'of', 'the', 'year', '.'], ['the', 'movie', 'has', 'been', 'preserved', 'and', 'was', 'released', 'in', '2', '0', '0', '4', 'as', 'part', 'of', 'a', 'warner', 'home', 'video', 'two-disc', 'special', 'edition', 'of', 'charlie', 'chaplin', \"'s\", '``', 'the', 'kid', \"''\", '.'], ['sometimes', 'the', '−', 'is', 'used', 'to', 'indicate', 'a', 'better', 'grade', 'if', 'it', 'stands', 'after', 'the', 'grade', 'and', 'a', 'lower', 'grade', 'if', 'it', 'stands', 'before', 'the', 'grade', '(', 'in', 'which', 'case', '−', 'is', 'a', 'symbol', 'for', '``', 'bis', \"''\", ',', 'e.g', '.'], ['the', 'traditional', 'aboriginal', 'inhabitants', 'of', 'the', 'lands', 'now', 'known', 'as', 'the', 'brisbane', 'water', 'were', 'the', 'guringai', 'people', 'of', 'the', 'eora', 'nation', '.'], ['they', 'retained', 'some', 'of', 'the', 'french', 'style', 'of', 'strasbourg', '.'], ['in', '2', '0', '1', '0', ',', 'wilson', 'was', 'presented', 'with', 'an', 'australian', 'sports', 'commission', 'media', 'awards', 'for', 'lifetime', 'achievement', 'for', 'her', 'contribution', 'to', 'sports', 'journalism', '.'], ['underground', 'mining', 'of', 'anthracite', 'was', 'being', 'done', 'in', 'the', 'watershed', 'of', 'pine', 'creek', 'by', 'the', 'middle', 'of', 'the', 'nineteenth', 'century', '.'], ['the', 'route', \"'s\", 'mileposts', 'increase', 'from', 'the', 'northern', 'or', 'eastern', 'end', 'contrary', 'to', 'common', 'practice', '.'], ['she', 'had', 'always', 'dreamed', 'of', 'writing', 'plays', ',', 'and', 'she', 'began', 'writing', 'and', 'acting', 'in', 'her', 'teenage', 'years', '.'], ['the', 'gate', 'is', 'located', 'in', 'the', 'southern', 'part', 'of', 'the', 'old', 'town', 'complex', ',', 'at', '2', 'a', 'holy', 'spirit', 'street', ',', 'east', 'of', 'the', 'leaning', 'tower', '(', 'pol', '.'], ['the', 'solomon', 'islands', 'rugby', 'league', 'federation', 'was', 'officially', 'formed', 'in', '2', '0', '0', '8', 'and', 'the', 'national', 'team', 'played', 'its', 'first', 'official', 'match', 'in', '2', '0', '1', '3', ',', 'losing', 'to', 'vanuatu', 'on', 'october', '7', '.'], ['malay', ']', 'based', ':', 'that', 'was', 'the', 'secret', 'of', 'our', 'stability', 'and', 'our', 'prosperity', 'and', 'that', 'is', 'a', 'fact', 'of', 'political', 'life', 'which', 'no', 'one', 'can', 'simply', 'wish', 'away', '.', \"''\"], ['the', 'original', 'hotel', 'opened', 'on', 'july', '7', ',', '1', '9', '9', '9', ',', 'and', 'was', 'branded', 'the', '``', 'holiday', 'inn', 'family', 'suites', '.', \"''\"], ['a', 'fee', 'simple', 'determinable', 'does', 'not', 'violate', 'the', 'rule', 'against', 'perpetuities', ',', 'since', 'the', 'interest', 'in', 'real', 'property', 'reverts', 'to', 'the', 'grantor', 'or', 'his', 'heirs', ',', 'who', 'are', 'measuring', 'lives', '.'], ['at', 'school', 'events', 'such', 'as', 'homecoming', 'or', 'prom', ',', 'couples', 'generally', 'coordinate', 'the', 'corsage', 'and', 'boutonnière', ',', 'signifying', 'their', 'connection', ',', 'and', 'distinguishing', 'them', 'from', 'others', '.'], ['the', 'boxy', 'building', 'had', 'an', 'elongated', 'frontage', 'assembling', 'a', 'continuous', 'band', 'of', 'balconies', 'and', 'windows', 'on', 'the', 'second', 'and', 'third', 'level', '.'], ['free', 'play', 'games', 'and', 'non-us', 'customers', 'were', 'not', 'affected', '.'], ['brower', 'and', 'pitts', 'played', 'together', 'locally', 'in', 'the', 'junior', 'harmony', 'club', ',', 'and', 'both', 'were', 'influenced', 'by', 'jazz', 'and', 'big', 'bands', '.'], ['she', 'was', 'also', 'praised', 'for', 'her', 'naturalistic', ',', 'no-nonsense', 'acting', ',', 'which', 'served', 'to', 'balance', 'cha', \"'s\", 'wacky', 'antics', '.'], ['the', 'neo-luciferian', 'church', 'incorporates', 'elements', 'from', 'thelema', ',', 'gnosticism', ',', 'voodoo', ',', 'traditional', 'occultism', ',', 'and', 'witchcraft', '.'], ['the', 'publication', 'is', 'described', 'as', '``', 'a', 'profusely', 'illustrated', 'journal', 'containing', 'catalogue', 'raisonné', 'and', 'articles', 'by', 'recognized', 'authorities', 'on', 'individual', 'artists', '.', \"''\"], ['it', 'also', 'offered', 'a', 'tearoom', 'and', 'a', 'quiet', 'room', '.'], ['other', 'models', 'of', 'mental', 'disorder', 'or', 'phenomena', 'development', 'concern', ',', 'e.g', '.'], ['the', 'station', 'has', 'studios', 'in', 'the', 'city', \"'s\", 'soma', 'district', ',', 'and', 'transmits', 'from', 'sutro', 'tower', 'in', 'san', 'francisco', ',', 'with', 'a', 'power', 'output', 'of', '2', '4', ',', '0', '0', '0', 'watts', 'effective', 'radiated', 'power', '.'], ['the', 'special', 'characteristic', 'of', 'dehua', 'porcelain', 'is', 'the', 'very', 'small', 'amount', 'of', 'iron', 'oxide', 'in', 'it', ',', 'allowing', 'it', 'to', 'be', 'fired', 'in', 'an', 'oxidising', 'atmosphere', 'to', 'a', 'warm', 'white', 'or', 'pale', 'ivory', 'color', '.'], [\"'to\", \"'\", ',', 'rather', 'than', \"'minus\", \"'\", ')', ',', 'for', 'example', '−', '5', '(', '4', '.', '7', '5', ')', 'is', 'lower', 'than', '5', 'which', 'is', 'lower', 'than', '5', '−', '(', '5', '.', '2', '5', ')', 'in', 'that', 'system', '.'], ['in', 'putting', 'forward', 'this', 'proposal', ',', 'crotty', 'was', 'reflecting', 'the', 'influence', 'of', 'american', 'economist', 'henry', 'george', ',', 'who', 'held', 'that', 'land', 'owned', 'by', 'private', 'individuals', 'should', 'be', 'subject', 'to', 'a', 'tax', 'on', 'the', 'land', 'because', 'of', 'the', 'advantage', 'bestowed', 'on', 'the', 'owner', '.'], ['the', 'contents', 'of', 'the', 'degree', 'course', 'held', 'in', 'english', 'include', ',', 'similar', 'to', 'belgium', ',', 'management', 'methodologies', 'as', 'well', 'as', 'fundamentals', 'of', 'business', 'administration', 'and', 'economics', '.'], ['beyond', 'earth', ',', 'strong', 'evidence', 'suggests', 'the', 'presence', 'of', 'calcium', 'carbonate', 'on', 'mars', '.'], ['the', 'letter', 'stated', 'that', '``', 'labour', \"'s\", 'election', 'manifesto', 'under', 'jeremy', 'corbyn', \"'s\", 'leadership', 'offers', 'a', 'transformative', 'plan', 'that', 'prioritises', 'the', 'needs', 'of', 'people', 'and', 'the', 'planet', 'over', 'private', 'profit', 'and', 'the', 'vested', 'interests', 'of', 'a', 'few', '.', \"''\"], ['captain', 'bligh', 'in', 'the', 'bounty', 'spent', '3', 'days', 'wooding', 'and', 'watering', 'at', 'nomuka', 'in', 'april', '1', '7', '8', '9', '.'], ['this', 'was', 'the', 'fourth', 'and', 'final', 'indonesian', 'fao', 'coin', '.'], ['was', 'conferred', 'for', 'his', 'thesis', 'by', 'the', 'eötvös', 'loránd', 'university', '.'], ['lamberti', \"'s\", 'musical', 'skills', 'were', 'good', 'enough', 'to', 'get', 'him', 'work', 'with', 'the', 'cleveland', 'symphony', 'orchestra', '.'], ['a', 'small', 'rest', 'is', 'still', 'busy', ',', 'offering', 'a', 'tourist', 'passenger', 'service', '.'], ['the', 'k', '1', 'is', 'one', 'of', 'the', 'first', 'popular', 'synthesizers', 'that', 'has', 'no', 'filter', 'whatsoever', ';', 'all', 'sounds', 'are', 'made', 'by', 'stacking', 'wave', 'samples', 'and', 'applying', 'frequency', 'modulation', '.'], ['the', 'citizens', 'of', 'new', 'orleans', 'held', 'a', 'series', 'of', 'public', 'meetings', 'during', '1', '7', '6', '5', 'to', 'keep', 'the', 'populace', 'in', 'opposition', 'of', 'the', 'establishment', 'of', 'spanish', 'rule', '.'], ['daley', 'was', 'born', 'john', 'rudolph', 'edward', 'daley', 'in', 'newport', ',', 'vermont', 'on', 'september', '1', '0', ',', '1', '9', '1', '8', ',', 'the', 'son', 'of', 'patrick', 't.', 'daley', 'and', 'fedora', '(', 'borque', ')', 'daley', '.'], ['in', '2', '0', '1', '2', ',', 'navarro', 'received', 'a', '``', 'women', 'on', 'the', 'front', 'line', 'award', \"''\", 'from', 'the', 'new', 'york', 'theological', 'seminary', '(', 'nyts', ')', '.'], ['hayden', 'failed', 'to', 'retain', 'the', 'seat', 'the', '2', '0', '2', '1', 'election', '.'], ['according', 'to', 'practitioners', ',', \"t'ai\", 'chi', 'chih', 'focuses', 'on', 'circulating', ',', 'developing', ',', 'and', 'balancing', 'chi', '(', 'in', 'the', 'traditional', 'chinese', 'concept', ',', 'a', 'kind', 'of', 'spiritual', 'energy', 'residing', 'in', 'every', 'living', 'thing', ')', '.'], ['these', 'are', 'listed', 'in', 'the', 'following', 'table', ',', 'in', 'descending', 'order', 'of', 'population', '.'], ['with', 'leonhardt', 'she', 'also', 'recorded', 'bach', \"'s\", '``', 'easter', 'oratorio', \"''\", 'and', '``', 'ascension', 'oratorio', \"''\", ',', 'with', 'suzuki', 'bach', \"'s\", '``', 'christmas', 'oratorio', \"''\", '.'], ['among', 'the', 'rising', 'stars', 'of', 'belgrade', \"'s\", 'underworld', ',', 'such', 'as', 'aleksandar', 'knežević', '``', 'knele', \"''\", 'and', 'goran', 'marjanović', '``', 'bombaš', \"''\", ',', 'giška', 'was', 'perceived', 'as', 'a', 'legend', '.'], ['the', 'last', 'kids', 'on', 'earth', 'is', 'an', 'american-canadian', 'children', \"'s\", 'animation', 'streaming', 'television', 'series', ',', 'based', 'on', 'the', 'book', 'series', 'of', 'the', 'same', 'name', 'by', 'max', 'brallier', ',', 'that', 'premiered', 'on', 'netflix', 'on', 'september', '1', '7', ',', '2', '0', '1', '9', '.'], ['partnership', 'with', 'the', 'university', 'of', 'virginia', 'art', 'department', 'through', 'the', 'sponsorship', 'of', 'art', 'professor', 'and', 'book', 'artist', 'dean', 'dass', 'opened', 'the', 'center', 'to', 'the', 'activities', 'of', 'college', 'students', 'from', 'surrounding', 'academic', 'institutions', '.'], ['his', 'son', 'george', 'was', 'treasurer', 'of', 'cashel', 'from', '1', '7', '3', '7', 'to', '1', '7', '6', '8', '.'], ['in', '1', '9', '9', '7', 'the', 'building', 'was', 'converted', 'back', 'to', 'a', 'showplace', 'theatre', ',', 'with', '1', ',', '4', '9', '6', 'seats', '.'], ['mufaddal', 'saifuddin', \"'s\", 'first', 'official', 'correspondence', 'as', 'successor', 'was', 'in', 'may', '2', '0', '1', '3', 'during', 'the', 'celebration', 'of', 'syedna', 'mohammed', 'burhanuddin', \"'s\", 'golden', 'jubilee', ',', 'in', 'which', 'he', 'instructed', 'the', 'community', 'to', 'set', 'out', 'on', 'religious', 'pilgrimages', '.'], ['satisfaction', 'surveys', 'are', 'conducted', 'for', 'both', 'consumers', 'and', 'property', 'agents', ';', 'these', 'are', 'conducted', 'on', 'a', 'regular', 'on-going', 'basis', 'and', 'focus', 'on', 'two', 'main', 'factors', ':', 'service', 'and', 'decision/resolution', 'satisfaction', '.'], ['despite', 'the', 'fact', 'that', 'she', 'often', 'ingests', 'high-amounts', 'of', 'junk', 'food', 'on', 'a', 'daily', 'basis', ',', 'she', 'seems', 'to', 'keep', 'her', 'weight', 'under', 'control', ',', 'perhaps', 'because', 'she', 'does', 'not', 'seem', 'to', 'have', 'proper', 'meals', '.'], ['in', 'the', 'latest', 'firmware', 'with', 'drm', 'support', 'was', 'foxit', 'reader', 'replaced', 'by', 'contains', 'reader', 'mobile', '9', '.', '1', '.', '1', 'from', 'adobe', 'systems', 'that', 'supports', 'text', 'reflow', '.'], ['the', 'double', 'star', 'data', 'are', 'publicly', 'available', 'via', 'this', 'archive', '.'], ['however', ',', 'there', 'is', 'also', 'significant', 'areas', 'of', 'woodlands', 'with', 'springs', 'which', 'are', 'tributaries', 'to', 'shermans', 'creek', ',', 'especially', 'further', 'from', 'the', 'village', ',', 'in', 'the', 'area', '.'], ['this', 'myth', 'has', 'no', 'basis', 'in', 'fact', 'and', 'most', 'probably', 'stems', 'from', 'misconceptions', 'of', 'da', 'costa', \"'s\", 'religion', 'due', 'to', 'his', 'portuguese', 'family', 'name', '.'], ['during', 'the', 'pilot', 'episode', ',', 'the', 'show', 'received', 'fairly', 'negative', 'reviews', 'from', 'the', 'viewers', 'emphasizing', 'the', 'design', 'of', 'the', 'infamous', 'red', 'chairs', ',', 'and', 'set', '.'], ['active', 'as', 'a', 'photographer', 'since', 'august', '1', '9', '9', '1', '.'], ['``', 'the', 'landscape', 'of', 'our', 'state', 'is', '...', 'a', 'window', 'to', 'the', 'world', '.'], ['from', 'the', 'ming', 'period', 'porcelain', 'objects', 'were', 'manufactured', 'that', 'achieved', 'a', 'fusion', 'of', 'glaze', 'and', 'body', 'traditionally', 'referred', 'to', 'as', '``', 'ivory', 'white', \"''\", 'and', '``', 'milk', 'white', '.', \"''\"], ['the', 'blog', 'also', 'showcases', 'artists', 'at', 'sxsw', 'and', 'at', 'cmj', ',', 'an', 'annual', 'music', 'festival', 'in', 'new', 'york', ',', 'when', 'in', 'the', 'summer', 'of', '2', '0', '0', '7', ',', 'they', 'invited', 'the', 'then-self-released', 'justin', 'vernon', 'of', 'bon', 'iver', 'to', 'play', 'the', 'bowery', 'ballroom', '.'], ['the', 'team', 'played', 'numerous', 'games', 'in', 'syria', 'and', 'jordan', ',', 'and', 'hosted', 'egyptian', 'club', 'al', 'ahly', 'in', 'tyre', '.'], ['it', 'won', 'an', 'award', 'for', 'favorite', 'tour', 'headliner', 'at', 'the', '3', '8', 'th', 'people', \"'s\", 'choice', 'awards', '.'], ['some', 'of', 'the', 'agricultural', 'implements', ',', 'and', 'draft', 'horses', \"'\", 'harness', 'from', 'balmoral', ',', 'are', 'on', 'permanent', 'display', 'at', 'the', 'st.', 'martin', \"'s\", 'heritage', 'cemetery', 'on', 'gorge', 'road', ',', 'near', 'the', 'corner', 'of', 'lower', 'north', 'east', 'road', ',', 'campbelltown', '.'], ['our', 'lady', 'of', 'guadalupe', 'catholic', 'church', '(', ')', 'is', 'a', 'roman', 'catholic', 'church', 'located', 'in', 'the', 'second', 'ward', 'in', 'the', 'east', 'end', ',', 'houston', ',', 'texas', '.'], ['self', 'has', 'been', 'reviewed', 'and', 'has', 'supported', 'the', 'leather', 'archives', 'and', 'museum', ',', 'a', 'library/museum/archives', 'pertaining', 'to', 'leather', 'sub', 'culture', ',', 'fetishism', ',', 'sadomasochism', ',', 'and', 'alternative', 'sexual', 'practices', '.'], ['another', 'is', '1', '0', '0', 'park', 'avenue', ';', 'the', 'firm', 'later', 'collaborated', 'with', 'ludwig', 'mies', 'van', 'der', 'rohe', 'and', 'philip', 'johnson', 'on', 'the', 'seagram', 'building', '.'], ['it', 'is', 'planned', 'that', 'a', 'part', 'of', 'the', 'village', '(', 'along', 'with', 'akine', ',', 'çaltıbükü', 'and', 'sarıağaç', ')', 'will', 'be', 'submerged', 'in', 'alaköprü', 'dam', 'reservoir', '.'], ['since', 'no', 'one', 'can', 'be', 'killed', 'in', 'oz', ',', 'the', 'nome', 'king', 'seeks', 'to', 'discourage', 'them', ',', 'first', 'by', 'taking', 'them', 'through', 'the', 'rubber', 'country', ',', 'and', 'then', 'disposing', 'of', 'them', 'by', 'dropping', 'them', 'through', 'the', 'hollow', 'tube', ',', 'a', 'conduit', 'leading', 'to', 'the', 'other', 'side', 'of', 'the', 'world', '.'], ['obviously', 'buried', 'with', 'the', 'dead', ',', 'the', 'plate', ',', 'bowls', ',', 'jars', 'and', 'iron', 'implements', 'were', 'found', 'alongside', 'the', 'skeletal', 'remains', ',', 'the', 'daggers', 'and', 'hunting', 'knives', 'on', 'top', 'of', 'the', 'breast', 'section', 'and', 'the', 'gold', 'beads', 'inside', 'the', 'skulls', 'in-between', 'the', 'upper', 'and', 'lower', 'jaws', '.'], ['the', 'play', 'was', 'ruled', 'a', 'touchdown', '(', 'kolodziej', 'fumbled', 'and', 'another', 'locos', 'player', 'recovered', 'in', 'the', 'end', 'zone', ')', ',', 'but', 'florida', 'immediately', 'challenged', 'the', 'call', '.'], ['in', 'january', '2', '0', '0', '2', ',', 'in', 'order', 'to', 'enlarge', 'the', 'scope', 'of', 'conservation', 'efforts', 'and', 'address', 'the', 'issues', 'facing', 'thailand', \"'s\", 'elephants', ',', 'it', 'was', 'proposed', 'that', 'the', 'tecc', 'be', 'renamed', 'the', 'national', 'elephant', 'institute', '.'], ['most', 'of', 'these', 'originate', 'in', 'southern', 'germany', '(', 'baden-württemberg', 'and', 'bavaria', ')', ',', 'with', 'a', 'single', 'one', 'found', 'south', 'of', 'the', 'rhine', '(', 'bülach', 'fibula', ',', 'found', 'in', 'bülach', ',', 'switzerland', ')', ',', 'and', 'a', 'handful', 'from', 'eastern', 'europe', '(', 'poland', ',', 'romania', ',', 'ukraine', ')', '.'], ['in', 'the', '``', 'new', 'york', 'daily', 'news', \"''\", ',', 'wanda', 'hale', 'cited', 'her', '``', 'winsome', 'charm', 'which', 'comes', 'through', 'despite', 'a', 'somewhat', 'reactive', 'role', '.', \"''\"], ['she', 'now', 'lives', 'in', 'los', 'angeles', 'writing', 'screenplays', ',', 'most', 'recently', 'for', 'showtime', \"'s\", '``', 'city', 'on', 'a', 'hill', \"''\", ',', 'and', 'has', 'a', 'hbo', 'series', 'in', 'development', 'based', 'on', 'her', '``', 'newsweek', \"''\", 'cover', 'story', '.'], ['at', 'the', 'end', 'of', 'the', 'first', 'gulf', 'war', ',', 'the', 'allies', 'established', 'a', 'safe', 'haven', 'in', 'northern', 'iraq', '.'], ['lange', \"'s\", 'career', 'as', 'a', 'merchant', 'blossomed', 'during', 'the', '1', '8', '4', '0', 's', '.'], ['the', 'sum', 'of', 'n', '$', '4', '9', '4', '7', '2', '5', '0', '.', '6', '0', 'is', 'accordingly', 'due', ',', 'owing', 'and', 'payable', 'by', 'the', 'defendant', 'to', 'the', 'plaintiff', 'which', 'sum', ',', 'the', 'defendant', ',', 'despite', 'demand', ',', 'fails', 'and/or', 'refuse', 'to', 'pay', 'to', 'the', 'plaintiff', '.'], ['it', 'reached', 'number', 'two', 'on', 'the', 'uk', 'singles', 'chart', ',', 'spending', 'three', 'weeks', 'there', '.'], ['in', 'the', 'smaller', 'metal', 'tube', ',', 'a', 'predominant', 'tone', 'appeared', 'at', '6', '1', '7', '4', 'hz', 'and', 'corresponded', 'to', '``', 'n', \"''\", '=', '2', '.'], ['the', 'petition', 'was', 'referred', 'to', 'the', 'elections', 'committee', ',', 'but', 'no', 'report', 'was', 'made', '.'], ['``', 'if', 'you', 'ai', \"n't\", 'in', 'it', \"''\", 'was', 'released', 'november', '1', '5', ',', '2', '0', '1', '6', 'as', 'the', 'first', 'promotional', 'single', '.'], ['cohan', \"'s\", 'sister', ',', 'actress', 'rhoda', 'gemignani', ',', 'had', 'a', 'recurring', 'role', 'as', 'mrs.', 'rossini', 'on', 'the', 'show', '.'], ['in', 'the', 'west', 'and', 'southwest', 'it', 'forms', 'part', 'of', 'the', 'agriculturally', 'dominated', 'westrich', 'plateau', '.'], ['probably', '(', 'alten', ')', 'riet', 'reached', 'württemberg', 'between', '1', '2', '5', '4', 'and', '1', '2', '6', '5', '.'], ['associated', 'with', 'the', 'hawkesbury', 'river', 'railway', 'station', 'is', 'the', 'now', 'defunct', 'river', 'wharf', 'railway', 'station', '.'], ['a', 'barcode', 'is', 'an', 'optical', 'machine-readable', 'representation', 'of', 'data', ',', 'which', 'shows', 'certain', 'data', 'on', 'certain', 'products', '.'], ['although', 'they', 'were', 'popular', 'in', 'european', 'countries', ',', 'and', 'toured', 'the', 'united', 'states', ',', 'they', 'found', 'their', 'main', 'success', 'outside', 'the', 'uk', 'in', 'japan', ',', 'where', 'they', 'toured', 'in', '1', '9', '8', '9', '.'], ['the', 'river', 'has', 'always', 'been', 'a', 'vital', 'resource', 'to', 'the', 'people', 'in', 'its', 'watershed', '.'], ['she', 'represented', 'switzerland', 'from', '1', '9', '9', '0', 'until', 'her', 'retirement', '.'], ['á', 'borg', 'became', 'the', 'faroese', 'premier', 'league', 'leading', 'goal', 'scorer', 'on', '1', '2', 'april', '2', '0', '1', '5', 'when', 'he', 'scored', 'his', '1', '4', '8', 'th', 'goal', ',', 'in', 'his', '2', '0', 'th', 'season', 'in', 'the', 'faroese', 'league', '.'], ['gibran', 'then', 'started', 'markobar', ',', 'a', 'martabak', 'chain', ',', 'in', '2', '0', '1', '5', ',', 'and', 'the', 'chain', 'had', '2', '9', 'locations', 'in', 'indonesia', 'by', '2', '0', '1', '7', '.'], ['johnston', 'attended', 'palo', 'alto', 'high', 'school', 'and', 'stanford', 'university', ',', 'where', 'he', 'worked', 'on', 'the', 'campus', 'humor', 'magazine', '``', 'stanford', 'chaparral', \"''\", 'with', 'fellow', 'future', 'animator', 'frank', 'thomas', ',', 'then', 'transferred', 'to', 'the', 'chouinard', 'art', 'institute', 'in', 'his', 'senior', 'year', '.'], ['established', 'as', 'philippine', 'postal', 'savings', 'bank', 'in', '1', '9', '0', '6', ',', 'the', 'bank', 'was', 'closed', 'in', '1', '9', '7', '6', 'as', 'a', 'result', 'of', 'competition', 'with', 'privately', 'owned', 'banks', ',', 'but', 'was', 'reopened', 'in', '1', '9', '9', '4', 'pursuant', 'to', 'the', 'provisions', 'of', 'republic', 'act', 'no', '.'], ['cashbox', 'was', 'a', 'music', 'magazine', 'published', 'from', '1', '9', '4', '2', 'to', '1', '9', '9', '6', '.'], ['pernas', 'played', 'marisa', 'sierras', 'on', '``', 'the', 'young', 'and', 'the', 'restless', \"''\", 'in', '2', '0', '1', '5', ',', 'and', 'appeared', 'on', 'the', 'telenovela', '``', 'jane', 'the', 'virgin', \"''\", 'from', '2', '0', '1', '6', 'to', '2', '0', '1', '7', '.'], ['she', 'has', 'received', 'two', 'young', 'scientist', 'awards', ',', 'the', 'best', 'best', 'young', 'scientist', 'award', 'of', 'the', 'indian', 'immunology', 'society', 'in', '1', '9', '9', '7', 'and', 'the', 'young', 'scientist', 'award', 'of', 'the', 'department', 'of', 'science', 'and', 'technology', 'in', '2', '0', '0', '3', '.'], ['historian', 'william', 'russ', 'concluded', 'that', '``', 'the', 'injunction', 'to', 'prevent', 'fighting', 'of', 'any', 'kind', 'made', 'it', 'impossible', 'for', 'the', 'monarchy', 'to', 'protect', 'itself', '.', \"''\"], ['riverbank', 'is', 'a', 'city', 'in', 'stanislaus', 'county', ',', 'california', ',', 'united', 'states', '.'], ['``', 'the', 'last', 'starfighter', \"''\", '(', '1', '9', '8', '4', ')', 'used', 'computer', 'generated', 'spaceships', 'instead', 'of', 'physical', 'scale', 'models', '.'], ['when', 'he', 'left', 'makerere', ',', 'he', 'went', 'to', 'work', 'for', 'the', 'national', 'water', 'and', 'sewerage', 'corporation', '(', 'nwsc', ')', 'and', 'was', 'posted', 'to', 'jinja', 'as', 'area', 'manager', '.'], ['although', 'slovenian', 'army', 'announced', 'many', 'times', 'that', 'its', 'soldiers', 'would', 'leave', 'the', 'barracks', ',', 'particularly', 'in', '1', '9', '9', '8', 'and', '2', '0', '0', '0', ',', 'it', 'did', \"n't\", 'happen', '.'], ['later', 'on', 'in', 'the', 'united', 'states', 'this', 'experimentation', 'will', 'see', 'his', 'leader', 'in', 'the', 'figure', 'of', 'dr.', 'william', 'stewart', 'halsted', '.'], ['is', 'the', 'second', 'album', 'by', 'the', 'singer-songwriter', 'andrew', 'gold', '.'], ['abbott', 'missed', 'the', 'battle', 'of', 'antietam', 'because', 'he', 'was', 'hospitalized', 'with', 'typhoid', 'fever', 'and', 'grief', 'over', 'the', 'death', 'of', 'his', 'brother', 'at', 'cedar', 'mountain', '.'], ['``', 'colours', \"''\", 'is', 'a', 'song', 'written', 'and', 'recorded', 'by', 'british', 'singer-songwriter', 'donovan', '.'], ['other', 'than', 'basic', 'agreements', 'which', 'its', 'groups', 'must', 'unanimously', 'vote', 'to', 'follow', ',', 'npc', 'confines', 'itself', 'to', 'recommendations', 'and', 'advice', 'and', 'acts', 'as', 'a', 'court', 'of', 'final', 'appeal', 'in', 'any', 'college', 'panhellenic', 'difficulty', '.'], ['forty-seven', 'hours', 'later', ',', '3', ':', '0', '0', 'am', 'on', 'july', '4', ',', '1', '9', '5', '3', ',', 'the', 'prison', 'security', 'let', 'loose', 'tear', 'gas', 'on', 'the', 'inmates', 'and', 'they', 'return', 'to', 'their', 'cells', '.'], ['when', 'deciding', 'which', 'worlds', 'to', 'include', 'in', 'the', 'game', ',', 'the', 'development', 'staff', 'tried', 'to', 'take', 'into', 'account', 'worlds', 'with', 'disney', 'characters', 'that', 'would', 'be', 'interesting', '.'], ['at', 'the', 'southernmost', 'reaches', 'of', 'the', 'township', 'is', 'big', 'bend', 'of', 'the', 'colorado', 'state', 'recreation', 'area', '.'], ['one', 'of', 'nine', 'national', 'trails', 'in', 'england', ',', 'the', 'yorkshire', 'wolds', 'way', 'is', 'a', 'long-distance', 'footpath', 'which', 'runs', 'the', 'length', 'of', 'the', 'wolds', 'from', 'the', 'humber', 'bridge', 'at', 'hessle', 'to', 'filey', 'on', 'the', 'coast', '.'], ['this', 'weekly', 'program', 'focuses', 'on', 'the', 'seattle', 'art', 'scene', ',', 'diving', 'deep', 'into', 'local', 'talent', 'and', 'telling', 'artists', 'stories', 'through', 'interviews', 'and', 'media', 'visuals', '.'], ['the', 'second', 'floor', '``', 'salle', 'de', 'lecture', \"''\", 'provides', 'an', 'informal', 'meeting', 'place', 'for', 'students', ',', 'visiting', 'scholars', ',', 'and', 'the', 'french', 'graduate', 'students', 'association', '.'], ['franch', \"'s\", '3', '8', 'shutouts', 'rank', 'sixth', 'all', 'time', 'in', 'ncaa', 'history', ',', 'and', 'her', '8', ',', '0', '6', '4', ':', '0', '2', 'minutes', 'in', 'goal', 'rank', 'ninth', 'on', 'the', 'ncaa', 'list', '.'], ['he', 'also', 'played', 'two', 'seasons', 'in', 'nippon', 'professional', 'baseball', 'for', 'the', 'hanshin', 'tigers', 'in', '-', ',', 'and', 'one', 'season', 'in', 'the', 'korea', 'baseball', 'organization', 'for', 'the', 'samsung', 'lions', 'in', '.'], ['the', 'arcade', 'edition', 'dead', 'or', 'alive', '5', 'ultimate', ':', 'arcade', 'was', 'released', 'on', '2', '4', 'december', '2', '0', '1', '3', ',', 'distributed', 'by', 'sega', '.'], ['sr', '1', '1', '7', 'begins', 'near', 'shiloh', 'national', 'military', 'park', 'at', 'an', 'intersection', 'with', 'sr', '1', '4', '2', 'between', 'stantonville', 'and', 'hurley', ',', 'in', 'a', 'community', 'known', 'as', 'west', 'shiloh', '.'], ['solid', 'and', 'liquid', 'bait', 'insecticides', ',', 'if', 'improperly', 'applied', 'in', 'a', 'location', ',', 'may', 'be', 'moved', 'through', 'waterflow', 'in', 'to', 'unintended', 'water', 'sources', '.'], ['the', 'airline', 'was', 'renamed', '``', 'moskovia', 'airlines', \"''\", 'in', '2', '0', '0', '6', '.'], ['after', 'that', 'time', ',', 'grainger', 'high', 'and', 'adkin', 'high', 'schools', 'were', 'combined', 'as', 'an', 'integrated', 'kinston', 'high', 'school', 'under', 'one', 'roof', 'until', '1', '9', '7', '9', 'when', 'faculty', 'and', 'students', 'relocated', 'to', 'the', 'current', 'north', 'kinston', 'campus', ',', '2', '6', '0', '1', 'north', 'queen', 'street', '.'], ['finally', ',', 'after', 'a', 'fortnight', ',', 'sullivan', 'was', 'classified', 'as', 'a', 'vagrant', 'and', 'scheduled', 'for', 'burial', 'in', 'potter', \"'s\", 'field', 'despite', 'his', 'tailored', 'clothing', 'and', '``', 'tds', \"''\", 'diamond', 'monogrammed', 'cufflinks', '.'], ['russell', 'implies', 'that', 'case', 'started', 'his', 'bank', 'with', 'money', 'that', 'he', 'received', 'from', 'the', 'nazis', 'for', 'unspecified', 'services', ',', 'resulting', 'in', 'the', 'deaths', 'of', 'many', 'jews', 'during', 'world', 'war', 'ii', '.'], ['he', 'was', 'to', 'be', 'expelled', 'from', 'the', 'ecclesiastic', 'order', 'and', 'drowned', 'immediately', 'thereafter', '.'], ['it', 'was', '1', '8', '1', '6', 'and', 'regent', 'demo', 'tulku', 'and', 'the', 'seventh', 'panchen', 'lama', 'followed', 'indications', 'from', 'nechung', ',', 'the', \"'state\", 'oracle', \"'\", 'which', 'led', 'them', 'to', 'appoint', 'him', 'at', 'the', 'age', 'of', 'two', '.'], ['randy', 'rampage', 'had', 'many', 'other', 'projects', ',', 'including', 'rampage', ',', 'stress', 'factor', '9', ',', 'fake', 'it', 'big', 'time', ',', 'ground', 'zero', ',', 'iron', 'gypsy', ',', 'requiem', ',', 'riff', 'raff', ',', 'and', 'the', '4', '5', 's', '.'], ['the', 'agent', 'would', 'be', 'administered', 'intrathecally', ',', 'intranasally', ',', 'or', 'directly', 'to', 'the', 'hippocampus', 'or', 'cortex', 'via', 'an', 'injection', '.'], ['all', 'those', 'born', 'after', '1', 'january', '1', '9', '6', '1', 'will', 'be', 'eligible', 'to', 'collect', 'their', 'pensions', 'at', '6', '8', '.'], ['his', 'self-titled', 'debut', 'lp', 'was', 'released', 'in', '1', '9', '7', '3', 'by', 'lion', 'records', ',', 'a', 'subsidiary', 'label', 'of', 'mgm', 'records', '.'], ['reno', 'plans', 'to', 'kill', 'nancy', 'and', 'her', 'family', 'in', 'order', 'to', 'make', 'sure', 'no', 'one', 'is', 'in', 'the', 'way', '.'], ['mv', '``', 'ross', 'revenge', \"''\", 'is', 'a', 'radio', 'ship', ',', 'the', 'home', 'of', 'radio', 'caroline', ',', 'as', 'well', 'as', 'having', 'supported', 'radio', 'monique', 'and', 'various', 'religious', 'broadcasters', '.'], ['the', 'upper', 'house', 'senate', 'has', '4', '7', 'members', ',', '4', '0', 'of', 'whom', 'are', 'elected', 'for', 'six-year', 'terms', 'in', 'double-seat', 'constituencies', 'by', 'the', 'local', 'assemblies', ',', 'half', 'renewed', 'every', 'two', 'years', ',', 'and', '7', 'presidential', 'appointees', '.'], ['he', 'was', 'assassinated', 'at', 'dawn', 'the', 'next', 'day', 'by', 'feng', 'as', 'revenge', 'for', 'the', 'killing', 'of', 'lu', 'jianzhang', '.'], ['to', 'man', 'fort', 'greble', \"'s\", 'of', 'perimeter', ',', 'barnard', 'designated', 'a', 'force', 'of', '1', '6', '5', 'men', '.'], ['stamford', 'hill', 'shomrim', 'have', 'on', 'many', 'occasions', 'received', 'public', 'praise', 'from', 'the', 'higher', 'ranks', ',', 'as', 'on', 'one', 'occasion', 'by', 'metropolitan', 'police', 'superintendent', 'david', 'grainger', 'after', 'a', 'successful', 'double', 'arrest', 'for', 'burglary', 'on', 'the', 'vulnerable', ',', 'and', 'have', 'been', 'lauded', 'by', 'deputy', 'mayor', 'for', 'policing', 'and', 'crime', 'stephen', 'greenhalgh', '.'], ['art', 'historians', 'lauded', 'beyer', \"'s\", '``', 'delicate', 'and', 'precise', 'style', \"''\", 'and', '``', 'characteristic', 'refinement', 'of', 'proportion', '.', \"''\"], ['the', 'new', 'system', 'makes', 'it', 'possible', 'to', 'purchase', 'and', 'sell', 'stocks', 'on', 'the', 'same', 'day', '.'], ['in', '1', '9', '9', '7', ',', 'the', 'name', 'was', 'changed', 'again', 'to', 'america', \"'s\", 'jewelry', 'store', 'to', 'reflect', 'a', 'switch', 'to', 'exclusively', 'selling', 'jewelry', '.'], ['the', 'word', '``', 'aeroponic', \"''\", 'is', 'derived', 'from', 'the', 'greek', 'meanings', 'of', '``', 'aer', \"''\", '(', 'ἀήρ', ',', '``', 'air', \"''\", ')', 'and', '``', 'ponos', \"''\", '(', 'πόνος', ',', '``', 'labour', \"''\", ')', '.'], ['thomas', 'introduced', 'the', 'first', 'lady', 'at', 'the', '2', '0', '1', '3', 'kids', \"'\", 'state', 'dinner', ',', 'and', 'also', 'joined', 'her', 'at', 'the', '2', '0', '1', '3', 'state', 'of', 'the', 'union', 'address', '.'], ['shahrak-e', 'kuranabad', '(', ',', 'also', 'romanized', 'as', 'shahrak-e', 'kūrānābād', ')', 'is', 'a', 'village', 'in', 'poshtkuh', 'rural', 'district', ',', 'in', 'the', 'central', 'district', 'of', 'ardal', 'county', ',', 'chaharmahal', 'and', 'bakhtiari', 'province', ',', 'iran', '.'], ['the', 'place', 'is', 'important', 'in', 'demonstrating', 'aesthetic', 'characteristics', 'and/or', 'a', 'high', 'degree', 'of', 'creative', 'or', 'technical', 'achievement', 'in', 'new', 'south', 'wales', '.'], ['a', 'dam', 'is', 'currently', 'being', 'constructed', 'to', 'regulate', 'the', 'river', \"'s\", 'flow', '.'], ['taking', 'into', 'account', 'the', 'last-minute', 'requirements', 'of', 'the', 'censor', 'and', 'the', 'consequent', 'changes', ',', 'overall', ',', 'the', 'revisions', 'and', 'changes', 'enhanced', 'the', 'opera', ',', 'and', 'the', 'result', 'was', 'that', 'it', 'was', 'a', 'critical', 'and', 'a', 'popular', 'success', '.'], ['bagh-e', 'shah', '(', ',', 'also', 'romanized', 'as', 'bāgh-e', 'shāh', ')', 'is', 'a', 'village', 'in', 'khorram', 'rud', 'rural', 'district', ',', 'in', 'the', 'central', 'district', 'of', 'lenjan', 'county', ',', 'isfahan', 'province', ',', 'iran', '.'], ['the', 'medical', 'officer', 'attending', 'later', 'concluded', ':', '``', 'the', 'cause', 'of', 'death', 'in', 'my', 'opinion', 'was', 'angina', 'pectoris', ',', 'the', 'fatal', 'attack', 'having', 'been', 'brought', 'on', 'by', 'physical', 'exertion', 'during', 'a', 'night', 'exercise', 'under', 'very', 'cold', 'conditions', '.', \"''\"], ['it', 'is', 'made', 'by', 'the', 'proper', 'authority', 'who', 'has', '``', 'care', 'of', 'the', 'community', \"''\", ',', 'and', 'not', 'arbitrarily', 'imposed', 'by', 'outsiders', '.'], ['a', 'right-handed', 'batsman', 'and', 'right-arm', 'fast-medium', 'bowler', ',', 'he', 'later', 'moved', 'to', 'ireland', ',', 'and', 'made', 'his', 'debut', 'for', 'the', 'ireland', 'cricket', 'team', 'in', '2', '0', '0', '4', '.'], ['however', ',', 'he', 'would', 'often', 'make', 'red', 'perform', 'these', 'tasks', 'for', 'him', ',', 'citing', 'his', 'poor', 'health', 'as', 'leaving', 'him', 'unable', 'to', 'do', 'it', 'on', 'his', 'own', '.'], ['mungiu', 'explained', 'that', 'this', 'was', 'related', 'to', 'the', 'poverty', ',', 'saying', '``', 'you', 'need', 'people', 'in', 'a', 'society', 'to', 'have', 'reached', 'a', 'certain', 'standard', 'of', 'living', 'before', 'they', 'can', 'be', 'polite', \"''\", '.'], ['it', 'also', 'administers', 'the', 'sahrawi', 'refugee', 'camps', 'at', 'tindouf', ',', 'algeria', ',', 'where', 'its', 'headquarters', 'are', '.'], ['in', '1', '9', '9', '2', 'the', 'club', 'embarked', 'on', 'a', 'trip', 'to', 'eastern', 'europe', ',', 'where', 'they', 'were', 'one', 'of', 'the', 'first', 'american', 'groups', 'to', 'visit', 'the', 'new', 'country', 'of', 'estonia', ',', 'which', 'had', 'recently', 'declared', 'independence', 'from', 'the', 'defunct', 'soviet', 'union', '.'], ['he', 'is', 'a', 'well-trained', 'vocalist', ',', 'pianist', ',', 'and', 'guitarist', 'and', 'is', 'doing', 'stage', 'performances', 'from', 'the', 'age', 'of', '1', '2', '.meet', 'got', 'married', 'on', 'january', '2', '9', 'th', ',', '2', '0', '1', '7', '.'], ['in', 'the', 'chicago', 'mayoral', 'election', 'of', 'april', '1', '8', '4', '4', ',', 'independent', 'democrat', 'alson', 'sherman', 'defeated', 'democratic', 'incumbent', 'augustus', 'garrett', 'and', 'liberty', 'party', 'nominee', 'henry', 'smith', 'by', 'a', '9', 'point', 'margin', '.'], ['the', 'tradition', 'of', 'aldworth', \"'s\", 'initiation', 'is', 'that', 'aldworth', 'had', 'fallen', 'asleep', 'while', 'reading', 'on', 'a', 'dim', 'winter', 'evening', 'in', 'the', 'library', ',', 'which', 'was', 'located', 'next', 'to', 'the', 'room', 'in', 'which', 'the', 'lodge', 'was', 'meeting', '.'], ['the', 'mediterranean', 'horse', 'mackerel', 'is', 'an', 'important', 'resource', 'in', 'the', 'mediterranean', 'sea', 'and', 'the', 'black', 'sea', 'region', '.'], ['he', 'was', 'dedicated', 'to', 'the', 'methodist', 'church', ',', 'helping', 'to', 'establish', 'grace', 'methodist', 'church', 'in', 'winnipeg', 'and', 'serving', 'as', 'president', 'of', 'the', 'local', 'ymca', '.'], ['after', 'the', 'conclusion', 'of', 'the', 'project', 'in', '1', '9', '9', '6', ',', 'development', 'of', 'the', 'harvest', 'object', 'cache', 'was', 'continued', 'with', 'the', 'university', 'of', 'edinburgh', 'releasing', 'version', '1', '.', '5', '.'], ['water', 'winding', 'through', 'the', 'park', 'to', 'the', 'catawba', 'river', 'cuts', 'deep', 'into', 'the', 'terrain', ',', 'forming', 'rugged', 'and', 'steep', 'slopes', '.'], ['the', 'main', 'industry', 'sectors', 'represented', 'in', 'the', 'city', 'of', 'dubbo', 'were', 'retail', ',', 'health', ',', 'manufacturing', ',', 'transport', ',', 'tourism', ',', 'education', ',', 'construction', ',', 'business', 'services', ',', 'agriculture', ',', 'and', 'government', 'services', '.'], ['jack', ',', 'lu', 'and', 'the', 'woman', 'leave', 'town', 'and', 'watch', 'the', 'sunrise', '.'], ['these', 'parameters', 'are', 'specified', 'at', 'the', 'time', 'of', 'the', 'data', 'set', 'allocation', '(', 'creation', ')', ',', 'for', 'example', 'with', 'job', 'control', 'language', 'codice_', '3', 'statements', '.'], ['the', 'adamello', 'ski', 'raid', 'is', 'a', 'stage', 'of', 'la', 'grande', 'course', 'that', 'includes', 'the', 'most', 'important', 'ski', 'mountaineering', 'competitions', 'of', 'the', 'season', '.'], ['basic', 'conditions', 'for', 'a', 'collective', 'work', 'are', 'that', 'there', 'must', 'be', 'a', 'promoter', ',', 'presenter', 'or', 'orchestrator', ',', 'and', 'the', 'work', 'must', 'not', 'be', 'joint', 'authorship', '.'], ['aidan', 'appeared', 'posthumously', 'in', 'august', '2', '0', '1', '8', 'in', 'a', 'pre-recorded', 'transplant', 'documentary', 'that', 'alya', 'watches', ',', 'and', 'makes', 'her', 'decide', 'to', 'give', 'the', 'factory', 'back', 'to', 'the', 'connors', 'after', 'hearing', 'aidan', 'mention', 'how', 'much', 'his', 'family', 'means', 'to', 'him', '.'], ['it', 'is', 'time', 'for', 'anybody', 'who', 'is', 'who', 'to', 'come', 'together', 'as', 'one', 'to', 'take', 'part', 'in', 'development', '.'], ['the', 'traditional', 'landed', 'interests', 'held', 'their', 'own', 'politically', 'in', 'the', 'face', 'of', 'the', 'rapidly', 'growing', 'urban', 'middle', 'classes', ',', 'for', 'the', 'electoral', 'reforms', 'of', 'mid-century', 'were', 'less', 'far-reaching', 'in', 'scotland', 'than', 'in', 'england', '.'], ['the', 'llandudno', 'and', 'colwyn', 'bay', 'electric', 'railway', 'operated', 'an', 'electric', 'tramway', 'service', 'between', 'llandudno', 'and', 'rhos-on-sea', 'from', '1', '9', '0', '7', 'and', 'extended', 'to', 'colwyn', 'bay', 'in', '1', '9', '0', '8', '.'], ['kanazawa', 'also', 'learned', 'from', 'the', 'founder', 'of', 'the', 'shotokan', 'style', ',', 'gichin', 'funakoshi', ',', 'and', 'was', 'one', 'of', 'the', 'last', 'living', '``', 'karateka', \"''\", '(', 'practitioners', 'of', 'karate', ')', 'to', 'have', 'done', 'so', '.'], ['mother', 'west', 'is', 'a', 'record', 'label', 'based', 'in', 'new', 'york', 'city', '.'], ['resolution', 'and', 'resolving', 'power', ',', 'when', 'defined', 'in', 'this', 'way', ',', 'are', 'consistent', 'with', 'iupac', 'recommendations', 'for', 'microscopy', ',', 'optical', 'spectroscopy', '.'], ['there', 'are', 'many', 'sand', 'beaches', 'along', 'the', 'saco', 'when', 'not', 'at', 'flood', 'stage', 'and', 'camping', 'is', 'allowed', 'along', 'some', 'of', 'these', 'beaches', 'for', 'free', '.'], ['in', 'addition', 'to', 'nasa', 'mission', 'support', ',', 'observing', 'time', 'is', 'provided', 'to', 'astronomers', 'and', 'planetary', 'scientists', 'at', 'the', 'university', 'of', 'hawaii', 'and', 'university', 'of', 'arizona', 'and', 'researchers', 'at', 'lm-atc', '.'], ['the', 'population', 'was', '1', ',', '0', '2', '4', 'as', 'of', '2', '0', '1', '0', '.'], ['it', 'was', 'agreed', 'that', 'an', 'allied', 'general', 'reserve', 'be', 'set', 'up', ',', 'under', 'foch', 'with', 'henry', 'wilson', 'as', 'his', 'deputy', ';', 'haig', 'was', 'reluctant', 'to', 'hand', 'over', 'divisions', 'to', 'the', 'general', 'reserve', '.'], ['loiseau', 'won', 'the', 'ecc', 'light-heavyweight', 'title', 'with', 'a', 'quick', 'tko', 'over', 'kent', '.'], ['without', 'infantry', 'support', ',', 'sheridan', 'did', 'not', 'press', 'his', 'divisions', 'to', 'carry', 'the', 'attack', 'by', 'themselves', '.'], ['four', 'and', 'a', 'half', 'hours', 'after', 'admission', ',', 'he', 'again', 'was', 'pronounced', 'dead', '.'], ['(', 'while', 'lamont', 'usually', 'pounded', 'on', 'the', 'top', 'of', 'the', 'chest', 'three', 'times', ',', 'then', 'once', 'on', 'the', 'side', ',', 'fred', 'often', 'did', 'various', 'weird', 'combinations', 'to', 'open', 'it', '.', ')'], ['the', 'current', 'resident', 'artist', 'and', 'program', 'director', 'is', 'garrett', 'queen', 'who', 'provides', 'support', 'to', 'a', 'vibrant', 'group', 'of', 'book', 'artists', 'who', 'teach', 'classes', 'and', 'sponsor', 'events', 'encouraging', 'and', 'supporting', 'the', 'arts', 'of', 'the', 'book', '.'], ['one', 'element', 'of', 'chair', 'step', 'highlighted', 'by', 'many', 'bands', 'is', 'a', 'horn', 'flip', 'or', 'swagger', 'that', 'is', 'executed', 'during', 'the', 'march', '.'], ['beginning', 'at', 'the', 'age', 'of', '1', '4', ',', 'he', 'worked', 'in', 'his', 'father', \"'s\", 'clerk', 'of', 'the', 'county', 'court', 'office', 'for', 'about', 'six', 'years', '.'], ['the', 'yakima', 'native', 'american', 'reservation', 'was', 'one', 'of', 'three', 'established', 'during', 'this', 'time', '.'], ['in', '1', '9', '8', '8', ',', 'he', 'was', 'appointed', 'prefect', 'of', 'the', 'congregation', 'for', 'the', 'causes', 'of', 'saints', ',', 'where', 'he', 'served', 'until', '1', '9', '9', '5', '.'], ['levy-gardner-laven', 'maintains', 'an', 'office', 'in', 'beverly', 'hills', ',', 'but', 'their', 'last', 'production', 'credit', 'was', 'in', '1', '9', '8', '2', '.'], ['in', '2', '0', '0', '9', ',', 'at', 'the', 'spike', 'video', 'game', 'awards', ',', 'he', 'earned', 'the', 'best', 'voice', 'award', 'for', 'the', 'voice', 'of', 'eddie', 'riggs', 'in', '``', 'brütal', 'legend', \"''\", '.'], ['the', 'smash', 'hit', 'was', '``', 'besas', 'tan', 'bien', \"''\", 'and', '``', 'mi', 'vida', 'no', 'va', 'a', 'cambiar', \"''\", 'alongside', 'arcángel', 'which', 'was', 'not', 'a', 'single', 'on', 'the', 'album', '.'], ['two', 'prototype', 'aircraft', 'were', 'built', ',', 'but', 'the', 'end', 'of', 'world', 'war', 'ii', 'changed', 'priorities', 'and', 'the', 'advent', 'of', 'the', 'jet', 'engine', 'gave', 'an', 'alternative', 'way', 'toward', 'achieving', 'high', 'speed', '.'], ['noah', 'was', '6', '0', '0', 'years', 'old', 'when', 'the', 'flood', 'of', 'water', 'came', 'upon', 'the', 'earth', '.'], ['he', 'developed', 'and', 'imposed', 'restrictions', 'on', 'sunday', 'commerce', 'during', 'his', 'mayoral', 'term', '.'], ['the', 'book', 'is', 'feted', 'for', 'its', 'colorful', 'depictions', 'of', 'bucharesters', 'at', 'the', 'beginning', 'of', 'the', '2', '0', 'th', 'century', ',', 'but', 'also', 'for', 'outlining', 'the', 'conservative', 'thesis', 'favored', 'at', '``', 'neamul', 'românesc', \"''\", '.'], ['waititi', 'had', 'earlier', 'criticised', 'wearing', 'neckties', ',', 'describing', 'them', 'as', '``', 'colonial', 'noose', '[', 's', ']', \"''\", 'during', 'his', 'maiden', 'speech', 'last', 'year', '.'], ['he', 'competed', 'at', 'the', '2', '0', '0', '8', 'and', '2', '0', '1', '2', 'olympic', 'games', '.'], ['from', 'its', 'creaton', 'in', '2', '0', '1', '3', 'until', 'the', 'introduction', 'of', 'the', 'crash', 'heavyweight', 'championship', 'in', 'late', '2', '0', '1', '7', ',', 'the', 'cruiserweight', 'championship', 'was', 'the', 'highest', 'profile', 'singles', 'championship', 'in', 'the', 'promotion', '.'], ['the', 'provost', 'and', 'vice-president', '(', 'academic', ')', 'is', 'the', 'university', \"'s\", 'senior', 'academic', 'officer', ',', 'with', 'responsibility', 'for', 'providing', 'academic', 'vision', 'at', 'the', 'university', 'and', 'leadership', 'in', 'all', 'matters', 'relating', 'to', 'students', 'and', 'academic', 'staff', '.'], ['episode', '5', ':', 'the', 'fifth', 'episode', 'focuses', 'on', 'the', 'nation', \"'s\", 'capital', ',', 'london', '.'], ['hanna', 'and', 'her', 'brother', 'thomas', 'amon', 'live', 'on', 'the', 'estate', 'of', 'their', 'deceased', 'parents', '.'], ['miguel', 'is', 'captured', 'by', 'a', 'male', 'white', 'martian', 'named', \"a'monn\", \"a'mokk\", 'but', 'frees', 'himself', 'and', 'destroys', \"a'morr\", ',', 'but', 'the', 'human-martian', 'hybrid', 'children', 'of', \"a'monn\", 'and', \"a'morr\", ',', 'sapling', ',', 'buster', ',', 'silhouette', ',', 'quaker', 'and', 'blur', 'escape', '.'], ['because', 'of', 'the', 'ambiguity', 'as', 'to', 'which', 'line', 'was', 'to', 'run', 'west', ',', 'and', 'which', 'northwest', ',', 'this', 'charter', 'gave', 'the', 'virginia', 'company', 'either', 'about', 'of', 'eastern', 'north', 'america', ',', 'or', 'about', 'one-third', 'of', 'the', 'entire', 'continent', ',', 'extending', 'to', 'the', 'pacific', 'ocean', '.'], ['on', '2', '2', 'may', '1', '9', '9', '1', ',', 'after', 'the', 'end', 'of', 'the', 'gulf', 'war', ',', 'speicher', \"'s\", 'status', 'was', 'changed', 'to', 'killed', 'in', 'action/body', 'not', 'recovered', '(', 'kia/bnr', ')', '.'], ['in', 'any', 'case', ',', 'in', 'may', '1', '9', '6', '4', ',', 'informatics', 'acquired', 'advanced', 'information', 'systems', 'from', 'hughes', 'dynamics', '.'], ['unlike', 'the', 'fate', 'of', 'other', 'properties', 'which', 'belonged', 'to', 'the', 'bowes-lyon', 'family', ',', 'such', 'as', 'gibside', '(', 'which', 'lay', 'within', 'a', 'major', 'coalfield', 'near', 'gateshead', 'and', 'so', 'was', 'considered', 'spoilt', 'by', 'pollution', 'from', 'the', 'surrounding', 'coal', 'mines', ')', ','], ['he', 'did', 'his', 'first', 'jingle', 'in', 'a', 'national', 'wide', 'ad', 'with', 'him', '(', 'allwyn', 'trendy', 'watches', ')', '.'], ['eventually', 'the', 'group', 'became', 'g.o.d', ',', 'an', 'acronym', 'for', '``', 'groove', 'over', 'dose', \"''\", '.'], ['on', 'november', '2', '1', ',', '2', '0', '0', '6', ',', 'the', 'rapids', 'waived', 'king', '.'], ['onychiuridae', 'are', 'also', 'known', 'to', 'feed', 'on', 'tubers', 'and', 'to', 'damage', 'them', 'to', 'some', 'extent', '.'], ['visits', 'can', 'also', 'be', 'arranged', 'to', 'the', 'meat', 'works', ',', 'frigochorti', ',', 'where', 'the', 'cattle', 'is', 'slaughtered', 'and', 'the', 'meat', 'is', 'packaged', 'or', 'used', 'for', 'sausage', 'production', '.'], ['as', 'such', ',', 'the', 'group', 'takes', 'pride', 'in', 'being', 'a', 'responsible', 'operator', 'and', 'a', 'good', 'corporate', 'citizen', 'in', 'all', 'communities', 'where', 'it', 'operates', '.'], ['the', 'letters', 'were', 'presented', 'in', 'turn', 'to', 'cardinal', 'rohan', 'and', 'persuaded', 'him', 'to', 'buy', 'the', 'necklace', 'for', 'the', 'queen', 'or', 'so', 'he', 'thought', '.'], ['it', 'consists', 'of', 'two', 'spans', 'of', 'wood-and-iron', 'howe', 'trusses', ',', 'resting', 'on', 'stone', 'abutments', 'and', 'piers', 'which', 'have', 'been', 'partially', 'faced', 'in', 'concrete', '.'], ['ace', 'of', 'angels', 'is', 'the', 'first', 'studio', 'album', 'and', 'major', 'japanese', 'release', 'by', 'south', 'korean', 'girl', 'group', 'aoa', ',', 'it', 'was', 'released', 'on', 'october', '1', '4', ',', '2', '0', '1', '5', 'through', 'universal', 'music', 'japan', '.'], ['around', 'the', 'building', 'at', 'the', 'first', 'floor', 'humphry', 'repton', 'added', 'a', 'platband', 'embellishment', 'in', 'his', 'alterations', 'of', '1', '7', '9', '2', '.'], ['bhadoria', 'made', 'her', 'television', 'debut', 'in', '2', '0', '1', '1', 'with', 'life', 'ok', \"'s\", '``', 'tum', 'dena', 'saath', 'mera', \"''\", 'where', 'she', 'played', 'the', 'protagonist', 'abhilasha', '.'], ['construction', 'was', 'completed', 'in', '3', '2', 'months', ',', 'and', 'bial', 'set', 'the', 'launch', 'date', 'for', '3', '0', 'march', '2', '0', '0', '8', '.'], ['``', 'boana', 'prasina', \"''\", 'occurs', 'in', 'forested', 'habitats', 'and', 'in', 'grassland', 'and', 'pastureland', 'at', 'elevations', 'of', 'above', 'sea', 'level', '.'], ['she', 'became', 'chief', 'judge', 'on', 'june', '1', ',', '2', '0', '1', '6', '.'], ['his', 'son', 'thomas-rené-verchères', 'participated', 'in', 'the', 'fur', 'trade', 'and', 'was', 'seigneur', 'of', 'boucherville', 'and', 'verchères', '.'], ['mount', 'stanley', 'has', 'several', 'subsidiary', 'summits', ',', 'with', 'margherita', 'peak', 'being', 'the', 'highest', 'point', '.'], ['potatoes', 'and', 'sweet', 'potatoes', 'were', 'particularly', 'favored', 'as', 'they', 'grew', 'in', 'soils', 'and', 'on', 'terrains', 'that', 'were', 'previously', 'unused', '.'], ['in', '2', '0', '1', '2', 'it', 'expanded', 'its', 'growing', 'federal', 'operations', ',', 'bringing', '5', '0', '0', 'local', 'jobs', 'to', 'upstate', 'new', 'york', 'and', 'pennsylvania', ',', 'including', 'more', 'than', '3', '2', '5', 'jobs', 'in', 'pittsford', ',', 'ny', 'and', 'more', 'than', '1', '2', '5', 'jobs', 'to', 'scranton', ',', 'pa', '.'], ['passy', 'is', 'a', 'surname', 'of', 'french', 'locational', 'origin', ',', 'derived', 'from', 'the', 'gallo-roman', 'praenomen', '``', 'paccius', \"''\", '.'], ['whatever', 'form', 'you', 'came', 'back', 'as', 'would', 'limit', 'the', 'way', 'in', 'which', 'you', 'could', 'interact', 'with', 'other', 'characters', 'in', 'the', 'game', '.'], ['a', 'special', 'case', 'of', 'this', 'is', 'the', 'orientable', 'double', 'cover', 'of', 'a', 'differentiable', 'manifold', ',', 'where', 'the', 'corresponding', 'line', 'bundle', 'is', 'the', 'determinant', 'bundle', 'of', 'the', 'tangent', 'bundle', '(', 'see', 'below', ')', '.'], ['there', 'is', 'also', 'an', 'elected', 'township', 'fiscal', 'officer', ',', 'who', 'serves', 'a', 'four-year', 'term', 'beginning', 'on', 'april', '1', 'of', 'the', 'year', 'after', 'the', 'election', ',', 'which', 'is', 'held', 'in', 'november', 'of', 'the', 'year', 'before', 'the', 'presidential', 'election', '.'], ['however', ',', 'šamši-adad', 'i', 'did', 'not', 'inherit', 'the', 'assyrian', 'throne', 'from', 'his', 'father', ',', 'but', 'conquered', 'it', 'later', '.'], ['this', 'has', 'had', 'little', 'effect', 'on', 'the', 'use', 'and', 'standardization', 'of', 'the', 'protocol', '.'], ['his', 'vision', 'to', 'groom', 'the', 'whole', 'of', 'india', 'far', 'exceeded', 'his', 'father', 'and', 'family', \"'s\", 'vision', 'and', 'so', 'he', 'branched', 'out', 'and', 'started', 'his', 'independent', 'salon', ',', 'jawed', 'habib', 'hair', 'and', 'beauty', ',', 'in', '2', '0', '0', '0', '.'], ['he', 'is', 'hailed', 'as', 'the', 'greatest', 'greyhound', 'trainer', 'of', 'all', 'time', ',', 'and', 'referred', 'to', 'as', 'the', \"'derby\", 'king', \"'\", '.'], ['rivard-lemoyne', \"'s\", 'teaching', 'career', 'spanned', 'from', '1', '9', '5', '2', 'to', '1', '9', '8', '6', ',', 'at', 'the', 'école', 'des', 'beaux-arts', 'de', 'québec', ',', 'the', 'école', 'des', 'beaux-arts', 'de', 'montréal', ',', 'and', 'the', 'university', 'of', 'ottawa', '.'], ['each', 'episode', 'focuses', 'on', 'a', 'different', 'area', 'of', 'science', '.'], ['negishi', 'and', 'sekiguchi', 'found', 'that', 'some', 'of', 'the', 'obsessive-compulsive', 'traits', ',', 'such', 'as', 'intrusive', 'thoughts', ',', 'played', 'a', 'role', 'in', 'experiencing', 'earworms', 'while', 'compulsive', 'washing', 'did', 'not', '.'], ['lexie', 'has', 'been', 'assigned', 'to', 'find', 'proof', 'that', 'carter', \"'s\", 'war', 'heroics', 'are', 'bogus', '.'], ['the', 'uk', 'continues', 'to', 'provide', 'support', 'for', 'data', 'pipelines', 'and', 'archives', 'for', 'the', 'wide-field', 'camera', 'and', 'receives', 'a', 'share', 'of', 'the', 'time', 'for', 'survey', 'projects', 'of', 'joint', 'interest', '.'], ['echo', 'lake', 'and', 'the', 'calling', 'lakes', 'chain', 'are', 'especially', 'popular', 'and', 'attract', 'many', 'travelers', 'from', 'the', 'city', 'of', 'regina', '.'], ['in', 'the', 'construction', 'of', 'a', 'test', ',', 'subject', 'matter', 'experts', '(', 'smes', ')', 'construct', 'questions', 'that', 'assess', 'skills', 'typically', 'required', 'of', 'students', 'for', 'that', 'content', 'area', '.'], ['a', 'parking', 'violation', 'on', 'private', 'land', '(', 'also', 'if', 'owned', 'by', 'the', 'city', ')', 'is', 'a', 'contract', 'violation', 'and', 'gives', 'additional', 'parking', 'fee', '(', '=', 'check', 'fee', ')', '.'], ['he', 'was', 'accompanied', 'on', 'his', 'return', 'by', 'holmes', ',', 'who', 'was', 'returning', 'after', 'recovery', 'from', 'a', 'wound', 'suffered', 'at', 'the', 'battle', 'of', 'antietam', '.'], ['in', 'the', '2', '0', '0', '7', 'federal', 'election', 'the', 'most', 'popular', 'party', 'was', 'the', 'svp', 'which', 'received', '2', '3', '%', 'of', 'the', 'vote', '.'], ['following', 'the', 'end', 'of', 'the', 'latin', 'occupation', 'of', 'this', 'part', 'of', 'byzantium', ',', 'a', 'new', 'wave', 'of', 'raids', 'hit', 'the', 'monastic', 'republic', '.'], ['he', 'also', 'had', 'a', 'stint', 'with', 'the', 'red', 'sox', 'that', 'year', ',', 'hitting', '.', '2', '7', '9', 'with', '1', 'hr', 'and', '7', 'rbi', 'in', '2', '5', 'games', '.'], ['principal', 'photography', 'took', 'place', 'during', '1', '8', 'days', ',', 'in', 'august', 'and', 'september', '2', '0', '0', '5', ',', 'in', 'the', 'odeon', 'theatres', 'cargo', 'elevator', '.'], ['the', 'band', 'posted', 'a', 'brand', 'new', 'song', 'on', 'youtube', ',', 'titled', '``', 'inner', 'sanctum', \"''\", 'on', '2', '4', 'april', '2', '0', '1', '6', '.'], ['the', 'internal', 'variables', 'are', 'linguistic', 'in', 'nature', ':', 'a', 'sound', ',', 'a', 'handshape', ',', 'and', 'a', 'syntactic', 'structure', '.'], ['bishop', 'smith', 'had', 'resigned', 'as', 'apostolic', 'vicar', 'when', 'he', 'fled', 'to', 'france', 'in', '1', '6', '3', '1', '.'], ['he', 'was', 'not', 'strong', 'enough', 'to', 'hold', 'it', ',', 'and', 'on', '1', '2', 'february', '1', '6', '3', '8', 'it', 'was', 'surprised', 'by', 'henry', ',', 'count', 'nassau', 'dillenburgh', '.'], ['hunter', \"'s\", 'hill', 'rate', 'assessment', 'books', 'indicate', 'that', 'it', 'was', 'unfinished', 'in', '1', '8', '6', '1', ',', 'substantially', 'completed', 'by', '1', '8', '6', '9', 'and', 'that', 'cuneo', 'continued', 'to', 'add', 'rooms', 'until', '1', '8', '8', '1', 'when', 'it', 'was', 'described', 'as', 'a', '``', '1', '6', 'room', 'hotel', \"''\", '.'], ['it', 'is', 'composed', 'of', 'five', 'villages', ':', 'busuioci', ',', 'hurezani', ',', 'pegeni', ',', 'plopu', 'and', 'totea', 'de', 'hurezani', '.'], ['and', 'ion', 'microscopy', '(', 'sims', ')', 'but', 'not', 'gas', 'chromatography', '.'], ['he', 'was', 'elected', 'the', '2', '0', '0', '9', 'winner', 'of', 'the', 'j.', 'g.', 'taylor', 'spink', 'award', 'in', 'balloting', 'by', 'the', 'baseball', 'writers', \"'\", 'association', 'of', 'america', ',', 'for', 'the', 'national', 'baseball', 'hall', 'of', 'fame', 'and', 'museum', '.'], ['in', 'lady', 'llanover', \"'s\", 'book', ',', 'an', 'anonymous', 'traveller', 'dines', 'with', 'a', 'hermit', 'and', 'comments', 'on', 'welsh', 'mutton', 'as', 'follows', ':'], ['his', '.', '5', '2', '4', 'batting', 'average', 'as', 'a', 'senior', 'was', 'the', 'best', 'in', 'the', 'mid-suburban', 'league', '.'], ['``', 'sepia', 'baxteri', \"''\", 'and', '``', 'sepia', 'bartletti', \"''\", 'are', 'possible', 'synonyms', '.'], ['he', 'represented', 'his', 'country', 'at', 'the', '2', '0', '0', '0', 'summer', 'olympics', 'placing', '1', '4', 'th', 'in', 'the', 'final', '.'], ['he', 'received', 'his', 'ph.d.', 'at', 'the', 'university', 'of', 'bonn', 'in', '1', '9', '8', '9', '.'], ['according', 'to', 'santandrea', ',', 'comyn', '``', 'found', 'only', 'one', 'building', 'worth', 'mentioning', ',', 'namely', 'the', 'newly', 'erected', 'fort', 'of', 'the', 'french', \"''\", '.'], ['he', 'innovated', 'by', 'joining', 'two', 'musical', 'genres', 'typical', 'of', 'brazil', \"'s\", 'northeast', 'region', ':', 'forró', 'and', '(', 'pagode', 'baiano', ')', ',', 'highlighting', 'percussion', '.'], ['former', 'malta', 'police', 'chief', 'john', 'rizzo', 'has', 'said', 'there', 'was', 'enough', 'evidence', 'against', 'dalli', ',', 'and', 'he', 'can', 'not', 'explain', 'why', 'criminal', 'charges', 'were', 'not', 'brought', '.'], ['other', 'buildings', 'were', 'also', 'constructed', 'on', 'the', 'temple', \"'s\", 'premises', ',', 'including', 'an', 'senior', 'citizens', \"'\", 'center', 'in', '1', '9', '7', '6', ',', 'a', 'park', 'in', '1', '9', '8', '6', ',', 'and', 'a', 'paifang', 'in', '1', '9', '9', '6', '.'], ['jacques', 'villeneuve', 'was', '9', 'th', 'with', 'jenson', 'button', 'wrapping', 'up', 'the', 'top', '1', '0', '.'], ['probably', 'the', 'most', 'accurate', 'comparison', 'is', 'by', 'known', 'pay', 'levels', ':'], ['and', '2', '0', '0', '0', 'with', 'the', 'record', 'label', '``', 'estribillo', 'music', \"''\", ',', 'an', 'independent', 'christian', 'label', '.'], ['a', 'non-covalent', 'method', 'that', 'forms', 'cpp/protein', 'complexes', 'has', 'also', 'been', 'developed', 'to', 'address', 'the', 'limitations', 'in', 'covalent', 'methods', ',', 'such', 'as', 'chemical', 'modification', 'before', 'crosslinking', ',', 'and', 'denaturation', 'of', 'proteins', 'before', 'delivery', '.'], ['the', '2', '0', '0', '1', 'southern', 'miss', 'golden', 'eagles', 'football', 'team', 'represented', 'the', 'university', 'of', 'southern', 'mississippi', 'in', 'the', '2', '0', '0', '1', 'ncaa', 'division', 'i-a', 'football', 'season', '.'], ['one', 'tradition', 'has', 'each', 'guest', 'at', 'a', 'st.', 'joseph', \"'s\", 'day', 'table', 'receiving', 'a', 'slice', 'of', 'orange', ',', 'a', 'bit', 'of', 'fennel', 'and', 'a', '``', 'fava', \"''\", 'bean', ',', 'for', 'good', 'luck', '.'], ['with', 'effect', 'from', 'december', '1', '5', ',', '2', '0', '1', '0', ',', 'mozilla', 'added', 'web', 'applications', 'to', 'its', 'security', 'bug', 'bounty', 'program', '.'], ['the', 'qin', 'conscripted', 'men', 'from', 'throughout', 'the', 'country', 'to', 'be', 'garrisoned', 'at', 'the', 'forts', 'north', 'of', 'ji', '.'], ['he', 'says', 'that', 'the', 'secular', 'parties', 'of', 'india', 'have', 'not', 'been', 'able', 'to', 'transfer', 'their', 'votes', 'to', 'muslim', 'candidates', '.'], ['mcphee', 'joined', 'the', 'ford', 'works', 'team', 'in', '1', '9', '7', '0', ',', 'driving', 'in', 'the', 'south', 'pacific', 'touring', 'series', 'early', 'in', 'the', 'year', ',', 'and', 'was', 'given', 'his', 'own', 'phase', 'ii', 'xw', 'gtho', 'to', 'drive', 'solo', 'at', 'the', '1', '9', '7', '0', 'hardie-ferodo', '5', '0', '0', '.'], ['the', 'play', 'was', 'slated', 'for', 'production', 'in', '1', '9', '3', '8', ',', 'however', ',', 'set', 'backs', 'with', 'the', 'broadway', 'producers', 'delayed', 'production', '.'], ['the', 'nigerian', 'national', 'assembly', 'delegation', 'from', 'borno', 'state', 'comprises', 'three', 'senators', 'and', 'ten', 'representatives', '.'], ['its', 'adjacent', 'school', 'is', 'the', 'lyceum', 'onze', 'lieve', 'vrouw', 'ter', 'nieuwe', 'plant', '.'], ['higher', 'volumes', 'have', 'been', 'observed', 'on', 'alaskan', 'way', 'and', 'other', 'surface', 'streets', ',', 'especially', 'during', 'peak', 'periods', '.'], ['in', 'september', '1', '8', '7', '1', ',', 'he', 'successfully', 'bid', 'on', 'and', 'received', 'a', 'contract', 'from', 'the', 'district', 'of', 'columbia', ',', 'board', 'of', 'public', 'works', ',', 'to', 'gravel', '1', '1', 'th', 'street', 'east', 'and', 'lay', 'sidewalks', 'on', 'the', 'same', 'street', '.'], ['the', 'australian', 'film', 'censorship', 'board', 'saw', 'fit', 'to', 'remove', 'the', 'following', 'scenes', ':', 'spencer', 'killing', 'inspector', 'gascoigne', 'with', 'a', 'chameleon', 'ray-gun', ';', 'the', 'alien', 'arm', 'emerging', 'from', 'the', 'cupboard', ';', 'and', 'panning', 'shots', 'of', 'the', 'alien', 'figure', '(', 'seen', 'only', 'from', 'behind', ')', 'at', 'the', 'end', 'of', 'the', 'episode', '.'], ['``', 'magnet', \"''\", 'named', 'it', 'the', 'best', 'album', 'of', '1', '9', '9', '5', '.'], ['he', 'missed', 'two', 'months', 'of', 'the', '2', '0', '1', '6', 'season', 'due', 'to', 'multiple', 'facial', 'fractures', 'he', 'suffered', 'during', 'a', 'may', '2', '2', 'game', '.'], ['he', 'is', 'known', 'as', '``', 'putin', \"'s\", 'mouthpiece', '.', \"''\"], ['the', 'third', 'chevrolet', 'driver', 'alain', 'menu', 'did', 'not', 'take', 'part', 'in', 'q', '2', 'after', 'his', 'car', 'returned', 'to', 'the', 'pits', 'at', 'the', 'end', 'of', 'q', '1', 'spewing', 'out', 'oil', '.'], ['built', 'in', '1', '7', '0', '2', 'by', 'prince', 'georg', 'august', 'samuel', 'of', 'nassau-idstein', ',', 'it', 'served', 'as', 'the', 'ducal', 'residence', 'for', 'the', 'independent', 'duchy', 'of', 'nassau', 'from', '1', '8', '1', '6', 'until', '1', '8', '6', '6', '.'], ['he', 'won', 'an', 'emmy', 'award', 'for', 'his', 'work', 'on', 'an', 'episode', 'of', '``', 'kung', 'fu', \"''\", '.'], ['it', 'is', 'one', 'of', 'the', 'longest', 'existing', 'hospitals', 'in', 'kasese', 'district', 'and', 'rwenzururu', 'kingdom', 'in', 'western', 'region', ',', 'uganda', '.'], ['tanya', ',', 'then', '1', '1', 'years', 'old', ',', 'dug', 'trenches', 'and', 'put', 'out', 'firebombs', '.'], ['an', 'architectural', 'competition', 'for', 'the', 'building', 'design', 'was', 'announced', '.'], ['it', 'was', 'designed', 'by', 'the', 'architect', 'harold', 'seymour', 'scott', 'in', 'the', 'art', 'deco', 'style', ',', 'and', 'opened', 'on', '2', '6', 'march', '1', '9', '2', '3', 'with', 'a', 'seating', 'capacity', 'of', '1', ',', '1', '1', '1', '.'], ['dissatisfaction', 'with', 'only', 'modest', 'reformist', 'development', 'within', 'czechoslovakia', 'led', 'to', 'political', 'maneuvering', 'against', 'first', 'party', 'secretary', 'antonín', 'novotný', '.'], ['pembroke', 'dock', 'traditionally', 'play', 'in', 'black', 'and', 'white', 'colours', '.'], ['he', 'was', 'subsequently', 'named', 'best', 'goalkeeper', 'of', 'the', '2', '0', '1', '8', 'campeonato', 'brasileiro', ',', 'helping', 'the', 'club', 'achieve', 'a', '3', 'rd', 'place', ',', 'securing', 'a', 'spot', 'on', 'the', 'next', 'season', \"'s\", 'copa', 'libertadores', '.'], ['agojo', 'would', 'be', 'sentenced', 'to', 'life', 'imprisonment', 'at', 'bilibid', 'prison', ',', 'muntinlupa', '.'], ['she', 'had', 'a', 'strong', 'start', 'to', 'the', '2', '0', '1', '3', 'indoor', 'season', 'with', 'multiple', 'clearances', 'over', 'fourteen', 'metres', ',', 'including', 'a', 'best', 'of', '1', '4', '.', '4', '8', 'm', 'in', 'saint', 'petersburg', '.'], ['following', 'her', 'graduation', 'from', 'high', 'school', 'she', 'attended', 'king', 'abdul', 'aziz', 'university', 'in', 'madinah', 'where', 'she', 'earned', 'a', 'bachelor', 'of', 'arts', 'degree', 'in', 'english', 'language', 'and', 'literature', '.'], ['the', 'south', 'part', 'of', 'the', 'zoo', 'was', 'taken', 'over', 'by', 'the', 'occupation', 'forces', ',', 'which', 'did', 'not', 'leave', 'the', 'zoo', 'until', '1', '9', '5', '2', '.'], ['the', 'quarterly', 'subscription', 'for', 'both', 'issues', 'was', '6', 'd', '.'], ['the', 'single-storey', 'rear', 'section', 'is', 'hipped', 'and', 'finished', 'with', 'recent', 'corrugated', 'galvanised', 'steel', '.'], ['for', 'example', ',', 'the', 'saab', '3', '7', 'viggen', ',', 'with', 'landing', 'gear', 'designed', 'for', 'a', '5', 'm/sec', 'impact', ',', 'could', 'use', 'a', 'carrier-type', 'landing', 'and', 'hud', 'to', 'reduce', 'its', 'scatter', 'from', '3', '0', '0', 'm', 'to', '1', '0', '0', 'm', '.'], ['subtitled', '``', '1', '0', '1', 'things', 'a', 'man', 'must', 'do', 'before', 'he', 'dies', ',', \"''\", 'the', 'show', 'involved', 'a', 'group', 'of', 'male', 'celebrities', 'of', 'different', 'ages', 'and', 'personalities', 'who', 'take', 'on', 'missions', 'that', 'would', 'make', 'them', 'a', '``', 'real', 'man', '.', \"''\"], ['pohl', 'was', 'of', 'the', 'opinion', 'that', 'at', 'least', 'a', 'few', 'horses', 'were', 'brought', 'from', 'greenland', 'by', 'the', 'norse', 'on', 'their', 'further', 'voyages', 'of', 'exploration', '.'], ['z-star', '(', 'pronounced', \"'zee-star\", \"'\", ')', 'is', 'the', 'alias', 'of', 'zee', 'gachette', 'a', 'british/trinidadian', 'singer-songwriter', ',', 'musician', ',', 'artist', ',', 'and', 'record', 'producer', 'based', 'in', 'brighton', 'and', 'signed', 'to', 'muthastar', 'records', '.'], ['haslegrave', 'was', 'born', 'in', 'yorkshire', 'in', '1', '9', '0', '2', 'and', 'went', 'to', 'wakefield', 'grammar', 'school', '.'], ['for', 'this', 'it', 'paid', 'essentially', 'nothing', ':', 'hughes', 'actually', 'paid', 'informatics', '$', '3', '8', ',', '0', '0', '0', 'to', 'take', 'it', ',', 'but', 'in', 'doing', 'so', 'informatics', 'assume', 'some', 'existing', 'customer', 'obligations', 'of', 'about', 'the', 'same', 'amount', '.'], ['glycomyces', 'tritici', 'is', 'a', 'bacterium', 'from', 'the', 'genus', 'of', '``', 'glycomyces', \"''\", 'which', 'has', 'been', 'isolated', 'from', 'rhizospheric', 'soil', 'from', 'a', 'wheat-plant', '(', '``', 'triticum', 'aestivum', \"''\", ')', '.'], ['somerset', 'county', 'council', 'is', 'responsible', 'for', 'running', 'the', 'largest', 'and', 'most', 'expensive', 'local', 'services', 'such', 'as', 'education', ',', 'social', 'services', ',', 'libraries', ',', 'main', 'roads', ',', 'public', 'transport', ',', 'policing', 'and', 'fire', 'services', ',', 'trading', 'standards', ',', 'waste', 'disposal', 'and', 'strategic', 'planning', '.'], ['the', '``', 'quadrail', \"''\", 'series', 'is', 'a', 'sequence', 'of', 'five', '(', 'as', 'of', '2', '0', '1', '2', ')', 'science', 'fiction', 'novels', 'by', 'hugo', 'award-winning', 'author', 'timothy', 'zahn', '.'], ['on', '2', 'june', ',', 'the', 'turkish', 'parliament', 'resumed', 'full', 'activities', 'for', 'the', 'first', 'time', 'in', '4', '8', 'days', 'since', 'a', 'hiatus', 'was', 'declared', 'due', 'to', 'the', 'pandemic', '.'], ['structural', 'information', 'on', 'p-type', 'plasma', 'membrane', '(', 'pm', ')', 'proton', 'atpases', 'are', 'scarce', 'compared', 'to', 'that', 'obtained', 'for', 'serca', '1', 'a', '.'], ['four', '8', '0', 'east', 'is', 'a', 'canadian', 'electro', 'jazz', 'ensemble', 'from', 'toronto', ',', 'ontario', ',', 'with', 'rob', 'deboer', '(', 'keyboards', ',', 'bass', 'and', 'guitar', ')', 'and', 'tony', 'grace', '(', 'percussion', ')', ';', 'accompanied', 'by', 'various', 'session', 'musicians', '.'], ['dr.', 'currie', 'left', 'the', 'royal', 'tyrrell', 'museum', 'in', 'october', '2', '0', '0', '5', 'to', 'become', 'the', 'canada', 'research', 'chair', 'with', 'the', 'biological', 'sciences', 'department', 'at', 'the', 'university', 'of', 'alberta', '.'], ['the', 'talpur', 'dynasty', 'was', 'established', 'in', '1', '7', '8', '3', 'by', 'mir', 'fateh', 'ali', 'khan', ',', 'who', 'declared', 'himself', 'the', 'first', '``', 'rais', \"''\", ',', 'or', 'ruler', 'of', 'sindh', ',', 'after', 'defeating', 'the', 'kalhoras', 'at', 'the', 'battle', 'of', 'halani', '.'], ['the', 'vacancy', 'rate', 'for', 'the', 'municipality', ',', ',', 'was', '0', '%', '.'], ['his', 'first', 'book', ',', '``', 'altorientalische', 'teppiche', \"''\", '(', '``', 'antique', 'oriental', 'carpets', \"''\", ')', '(', '1', '8', '9', '1', ')', ',', 'grew', 'out', 'of', 'this', 'experience', '.'], ['the', 'project', 'was', 'completed', 'in', '1', '9', '1', '8', 'and', 'entered', 'the', 'state', 'highway', 'system', 'on', 'august', '2', '7', '.'], ['nevertheless', ',', 'several', 'parisian', 'masters', 'and', 'several', 'provincial', 'lodges', 'objected', 'to', 'these', 'new', 'statutes', ',', 'and', 'more', 'particularly', 'to', 'the', 'article', 'which', 'stipulated', 'that', 'masters', 'must', 'be', 'elected', 'by', 'the', 'free-choice', 'of', 'their', 'lodge', '.'], ['with', 'only', 'two', 'automatic', 'qualifiers', 'going', 'to', 'the', 'final', 'from', 'each', 'heat', ',', 'the', 'first', 'semifinal', 'stacked', 'three', 'former', 'world', 'champions', 'into', 'one', 'race', '.'], ['sisko', 'was', 'rated', 'as', 'one', 'of', 'the', 'top', 'seven', 'time', 'travelers', 'of', 'the', 'star', 'trek', 'franchise', 'by', '``', 'nerdist', \"''\", 'in', '2', '0', '1', '9', ',', 'especially', 'for', 'his', 'time', 'traveling', 'adventures', 'in', '``', 'trials', 'and', 'tribble-ations', \"''\", 'and', '``', \"''\", '.'], ['to', 'the', 'south', 'it', 'borders', 'the', 'so-called', '``', 'alsace', 'bossue', \"''\", '(', 'german', ':', '``', 'krumme', 'elsass', \"''\", ')', ',', 'which', 'belongs', 'to', 'the', 'arrondissement', 'of', 'saverne', '.'], ['she', 'gains', 'acceptance', 'in', 'an', 'elite', 'artistic', 'circle', 'perhaps', 'inspired', 'by', 'the', '1', '9', '2', '0', 's', 'greenwich', 'village', 'avant-garde', '.'], ['among', 'the', 'disciplines', 'of', 'the', 'course', ':', 'business', 'planning', ',', 'financial', 'management', ',', 'modern', 'experience', 'in', 'the', 'development', 'of', 'social', 'entrepreneurship', '.'], ['a', 'new', 'long', 'church', 'was', 'built', 'on', 'the', 'same', 'site', 'which', 'was', 'completed', 'in', 'the', 'early', '1', '6', '3', '0', 's', '.'], ['other', 'services', 'offered', 'at', 'the', 'course', 'include', 'a', 'driving', 'range', 'with', '5', '0', 'slots', ',', 'golf', 'school', ',', 'golf', 'shop', ',', 'putting', 'green', ',', 'and', 'snack', 'bar', '.'], ['along', 'with', 'his', 'relative', 'alfred', 'p.', 'white', ',', 'his', 'father', ',', 'and', 'his', 'brother', 'christian', 'streit', 'white', ',', 'robert', 'white', 'became', 'an', 'active', 'and', 'influential', 'member', 'of', 'the', 'hampshire', 'county', 'bar', '.'], ['the', 'term', '``', 'lord', \"'s\", 'supper', \"''\", 'refers', 'both', 'to', 'the', 'biblical', 'event', 'and', 'the', 'act', 'of', '``', 'holy', 'communion', \"''\", 'and', 'eucharistic', '(', '``', 'thanksgiving', \"''\", ')', 'celebration', 'within', 'their', 'liturgy', '.'], ['examples', 'include', '1', ',', '2', ',', '4', '-triazolium', 'perfluorobutanesulfonate', 'and', 'imidazolium', 'methanesulfonate', '.'], ['in', '2', '0', '1', '6', 'she', 'co-founded', 'so', 'fare', 'productions', 'in', 'rome', 'with', 'sarah', 'mcteigue', 'and', 'kiersten', 'pilar', 'miller', '.'], ['castle', 'of', 'magic', 'is', 'a', 'platform', 'game', 'developed', 'and', 'published', 'by', 'gameloft', '.'], ['several', 'other', 'flashes', 'have', 'been', 'created', 'or', 'are', 'created', 'when', 'the', 'river', 'don', 'is', 'in', 'spate', '.'], ['this', 'was', 'commonly', 'parodied', 'as', 'perkins', 'saying', '``', 'i', \"'ll\", 'wait', 'here', '[', 'someplace', 'safe', ']', 'while', 'jim', '[', 'does', 'something', 'or', 'other', 'with', 'the', 'dangerous', 'animal', ']', \"''\", '.'], ['the', 'stadium', 'has', 'a', 'capacity', 'of', '4', ',', '3', '0', '0', 'which', 'includes', '1', ',', '8', '0', '0', 'seats', '(', '8', '0', '0', 'covered', ',', '1', ',', '0', '0', '0', 'uncovered', ')', '.'], ['such', 'variables', 'include', 'the', 'audiological', 'status', 'of', 'a', 'signer', \"'s\", 'parents', ',', 'age', 'of', 'acquisition', ',', 'and', 'educational', 'background', '(', 'home', 'acquisition', 'or', 'residence', 'schools', ')', '.'], ['the', 'identity', 'element', 'of', 'the', 'group', 'is', 'the', 'class', 'determined', 'by', 'the', 'following', 'form', ':'], ['linda', 'emmerick', 'of', 'the', '``', 'chicago', 'sun-times', \"''\", 'noted', 'the', 'performance', 'of', 'the', 'cast', '.'], ['brădeni', '(', ';', ')', 'is', 'a', 'commune', 'located', 'in', 'sibiu', 'county', ',', 'transylvania', ',', 'romania', '.'], ['at', 'this', 'time', 'creelman', 'was', 'faced', 'with', 'financial', 'issues', '.'], ['where', 'formula_', '2', 'is', 'the', 'focal', 'length', ',', 'and', 'formula_', '3', 'is', 'the', 'diameter', 'of', 'the', 'entrance', 'pupil', '(', '``', 'effective', 'aperture', \"''\", ')', '.'], ['according', 'to', 'an', 'unnamed', 'medical', 'official', ',', 'by', 'performing', '8', '3', 'sterilizations', 'in', 'six', 'hours', ',', 'the', 'doctor', 'had', 'breached', 'guidelines', 'requiring', 'surgeons', 'to', 'perform', 'no', 'more', 'than', '3', '0', 'sterilizations', 'per', 'day', '.'], ['he', 'also', 'offered', 'to', 'return', 'to', 'tibet', 'in', 'company', 'of', 'recognized', 'orientalists', 'to', 'verify', 'the', 'authenticity', 'of', 'the', 'verses', 'contained', 'in', 'his', 'compilation', '.'], ['she', 'is', 'also', 'on', 'the', 'judging', 'panel', 'for', 'the', 'soil', 'association', 'organic', 'food', 'awards', '&', 'amp', ';', 'observer', 'ethical', 'awards', '.'], ['one', 'hit', 'below', 'the', 'waterline', 'abreast', 'the', 'after', 'engine', 'room', ',', 'and', 'four', 'seconds', 'later', ',', 'the', 'second', 'hit', 'further', 'aft', '.'], ['and', 'while', 'erykah', 'is', 'an', 'extremely', 'important', 'part', 'of', 'the', 'landscape', 'of', 'this', 'year', ',', 'everything', 'plays', 'into', 'that', '.'], ['as', 'it', 'turned', 'out', 'that', 'he', 'had', 'completely', 'thought', 'up', 'this', 'song', 'all', 'by', 'himself', ',', 'he', 'recorded', 'it', 'and', 'it', 'became', 'the', 'most', 'often', 'covered', 'pop', 'song', 'in', 'the', 'world', '.'], ['officially', ',', 'ms-dos', '3', '.', '2', '0', 'still', 'used', 'the', 'dos', '3', '.', '0', 'format', ',', 'but', 'codice_', '1', 'and', 'codice_', '2', 'were', 'adapted', 'to', 'support', 'a', '6', 'bytes', 'longer', 'format', 'already', '(', 'of', 'which', 'not', 'all', 'entries', 'were', 'used', ')', '.'], ['after', 'this', ',', 'kibbee', 'worked', 'on', 'fred', 'allen', \"'s\", 'staff', 'and', 'wrote', 'for', 'groucho', 'marx', ',', 'before', 'serving', 'in', 'the', 'u.s.', 'air', 'force', 'during', 'world', 'war', 'ii', '.'], ['syedna', 'mohammed', 'burhanuddin', \"'s\", '1', '0', '2', 'nd', 'birthday', 'celebrations', 'were', 'held', 'in', 'mumbai', '.'], ['he', 'was', 'designated', 'as', 'the', '``', 'martyred', 'amir', \"''\", \"''\", '.'], ['in', '1', '9', '8', '1', ',', 'on', 'gardner', \"'s\", 'retirement', 'from', '``', 'scientific', 'american', \"''\", ',', 'the', 'column', 'was', 'replaced', 'by', 'douglas', 'hofstadter', \"'s\", '``', 'metamagical', 'themas', \"''\", ',', 'a', 'name', 'that', 'is', 'an', 'anagram', 'of', '``', 'mathematical', 'games', \"''\", '.'], ['the', 'urine', 'is', 'analyzed', 'for', 'features', 'that', 'promote', 'stone', 'formation', '.'], ['the', 'viewers', 'learn', 'that', 'many', 'of', 'these', 'children', 'are', 'orphans', 'because', 'of', 'the', 'war', 'in', 'chechnya', 'and', 'that', 'some', 'of', 'the', 'children', 'will', 'be', 'sent', 'to', 'fight', 'this', 'very', 'same', 'war', 'once', 'their', 'training', 'is', 'complete', '.'], ['a', 'best', 'sellers', 'chart', 'debuted', 'that', 'week', ',', 'followed', 'by', 'a', 'jockeys', 'chart', 'on', 'the', 'week', 'of', 'december', '1', '0', ',', '1', '9', '4', '9', '.'], ['vaccines', 'typically', 'contain', 'one', 'or', 'more', 'adjuvants', ',', 'used', 'to', 'boost', 'the', 'immune', 'response', '.'], ['in', 'accordance', 'to', 'a', 'plan', 'laid', 'out', 'in', 'an', 'october', '1', '8', '6', '1', 'report', 'by', 'general', 'barnard', ',', '``', 'rear', 'line', \"''\", 'forts', 'were', 'to', 'receive', 'one', 'man', 'per', 'yard', 'of', 'fort', 'perimeter', 'when', 'fully', 'garrisoned', '.'], ['its', 'design', 'won', 'an', 'award', 'and', 'recognition', 'by', 'the', 'u.s.', 'department', 'of', 'state', 'foreign', 'building', 'operations', '.'], ['the', 'first', 'fishes', 'with', 'jaws', '(', 'gnathostomata', ')', 'appeared', 'during', 'the', 'next', 'geological', 'period', ',', 'the', 'ordovician', '.'], ['in', '2', '0', '1', '9', ',', 'she', 'was', 'seen', 'in', 'the', 'romance-thriller', 'film', '``', 'sirf', 'tum', 'hi', 'to', 'ho', \"''\", 'opposite', 'danish', 'taimoor', '.'], ['in', '2', '0', '0', '4', '``', 'insight', \"''\", 'printed', 'an', 'article', 'by', 'abdulwahah', 'alkebsi', 'defending', 'the', 'role', 'of', 'islam', 'in', 'bringing', 'democracy', 'to', 'the', 'middle', 'east', '.'], ['in', 'donovan', \"'s\", 'native', 'australia', ',', '``', 'any', 'dream', 'will', 'do', \"''\", 'peaked', 'at', 'number', '9', '2', 'on', 'the', 'aria', 'singles', 'chart', 'in', 'august', '1', '9', '9', '1', '.'], ['research', 'into', 'obstetric', 'violence', 'at', 'two', 'public', 'hospitals', 'in', 'mexico', 'analyzing', 'the', 'birthing', 'experiences', 'for', 'one', 'month', 'of', '2', '0', '1', '2', 'found', 'that', 'physical', 'abuse', ',', 'verbal', 'abuse', ',', 'and', 'discrimination', 'occurred', 'openly', 'throughout', 'the', 'facilities', '.'], ['ziad', 'jneid', 'received', 'fourteen-and-a-half', 'years', \"'\", 'imprisonment', 'and', 'rabih', 'jneid', 'received', '1', '5', 'years', \"'\", 'imprisonment', '.'], ['george', 'of', 'pisidia', 'has', 'been', 'suggested', 'as', 'a', 'possible', 'author', 'of', 'the', 'akathist', 'hymn', 'to', 'the', 'theotokos', '.'], ['on', 'either', 'side', 'of', 'the', 'interstate', ',', 'the', 'surroundings', 'transition', 'from', 'farms', 'to', 'residential', 'subdivisions', '.'], ['beinart', 'followed', 'this', 'essay', 'with', 'a', 'shorter', 'opinion', 'piece', 'for', 'the', '``', 'new', 'york', 'times', \"''\", ',', '``', 'i', 'no', 'longer', 'believe', 'in', 'a', 'jewish', 'state', '.', \"''\"], ['once', 'both', 'teams', 'agree', 'on', 'the', 'delivery', 'timeline', ',', 'the', 'document', 'is', 'signed', 'by', 'both', 'teams', 'and', 'put', 'into', 'some', 'kind', 'of', 'document', 'control', '.'], ['some', 'quote', 'actual', 'page', 'size', 'and', 'others', 'quote', 'the', '``', 'printed', 'area', \"''\", 'size', '.'], ['the', 'king', 'was', 'spellbound', 'by', 'santhumala', \"'s\", 'beauty', 'and', 'swiftly', 'married', 'her', ',', 'promoting', 'her', 'to', 'the', 'rank', 'of', 'first', 'queen', '.'], [',', 'there', 'were', '1', '1', '9', 'people', 'who', 'were', 'single', 'and', 'never', 'married', 'in', 'the', 'municipality', '.'], ['deborah', 'martin', 'of', 'the', '``', 'san', 'antonio', 'express', \"''\", 'stated', 'that', 'the', 'show', 'would', '``', 'appeal', 'to', 'hard-core', 'selena', 'fans', 'and', 'musical', 'theatre', 'fans', 'who', 'are', 'looking', 'for', 'something', 'new', '.', \"''\"], ['the', 'main', 'technique', 'used', 'in', 'water', 'is', 'suction', 'feeding', 'and', 'is', 'used', 'by', 'most', 'aquatic', 'vertebrates', '.'], ['kbp', 'was', 'heavily', 'struck', 'by', 'the', 'drastic', 'reduction', 'in', 'state', 'defence', 'order', 'and', 'the', 'financing', 'of', 'military', 'r', '&', 'amp', ';', 'd', 'after', '1', '9', '9', '1', '.'], ['the', 'perception', 'of', 'a', 'simple', 'stimulus', '(', 'like', 'a', 'sound', 'of', 'a', 'given', 'intensity', ')', 'can', 'normally', 'not', 'be', 'trained', 'to', 'function', 'below', 'its', 'intensity', 'threshold', '.'], ['a', 'group', 'of', 'farmers', 'came', 'to', 'their', 'aid', ',', 'using', 'oxen', 'to', 'lift', 'the', 'car', '.'], ['he', 'did', 'not', 'race', 'in', 'round', '6', 'either', 'due', 'to', 'a', 'date', 'clash', 'with', 'his', 'ing', 'renault', 'f', '1', 'team', 'demonstration', 'driver', 'duties', ',', 'and', 'did', 'not', 'compete', 'in', 'the', 'final', 'round', '.'], ['marsden', 'is', 'at', 'the', 'eastern', 'gateway', 'to', 'the', 'important', 'ancient', 'standedge', 'crossing', 'of', 'the', 'moors', 'and', 'evidence', 'of', 'transport', 'related', 'archaeological', 'remains', 'dating', 'from', 'pre-roman', 'times', 'have', 'been', 'discovered', 'close', 'to', 'the', 'great', 'engineering', 'structures', 'of', 'the', 'canal', 'and', 'railway', 'ages', '.'], ['they', 'form', 'a', 'monophyletic', 'group', 'distinct', 'and', 'equidistant', 'from', 'tigers', 'in', 'mainland', 'asia', '.'], ['the', 'words', '1', '4', 'variations', 'are', 'inscribed', 'in', 'this', 'inner', 'pentagon', '.'], ['as', 'the', 'years', 'progressed', ',', 'whites', 'continued', 'to', 'encroach', 'on', 'the', 'yakama', 'reservation', '.'], ['the', 'final', 'integration', 'and', 'verification', 'will', 'be', 'performed', 'at', 'thales', 'alenia', 'space', 'in', 'italy', '.'], ['the', 'founders', 'of', 'the', 'company', ',', 'mika', 'tuomonen', 'and', 'herkko', 'volanen', ',', 'continued', 'as', 'minority', 'shareowners', 'and', 'restaurateurs', 'of', 'social', 'burgerjoint', '.'], ['in', 'march', '1', '9', '1', '3', ',', 'during', 'the', 'first', 'balkan', 'war', ',', 'the', 'greek', 'army', 'entered', 'ioannina', 'after', 'breaching', 'the', 'ottoman', 'fortifications', 'at', 'bizani', ',', 'and', 'soon', 'afterwards', 'advanced', 'further', 'north', '.'], ['the', 'team', \"'s\", 'statistical', 'leaders', 'included', 'fullback', 'mike', 'norcia', 'with', '6', '0', '0', 'rushing', 'yards', ',', 'bob', 'stimac', 'with', '4', '2', '8', 'passing', 'yards', ',', 'and', 'ken', 'redin', 'with', '1', '0', '2', 'receiving', 'yards', '.'], ['the', 'bridge', 'is', 'covered', 'by', 'a', 'corrugated', 'metal', 'gable', 'roof', ',', 'and', 'is', 'sided', 'in', 'vertical', 'boarding', 'that', 'extends', 'only', 'partway', 'to', 'the', 'eaves', '.'], ['in', 'june', '2', '0', '1', '2', ',', 'blaqk', 'audio', 'announced', 'having', 'been', 'signed', 'to', 'superball', 'music', ',', 'and', 'released', '``', 'bright', 'black', 'heaven', \"''\", 'on', 'september', '1', '1', ',', '2', '0', '1', '2', '.'], ['this', 'episode', 'features', 'myths', 'drawn', 'from', 'the', 'amc', 'drama', 'series', '``', 'breaking', 'bad', \"''\", ',', 'which', 'had', 'been', 'teased', 'since', 'it', 'was', 'reported', 'as', 'early', 'as', 'the', 'year', 'before', 'by', '``', 'entertainment', 'weekly', \"''\", '.'], ['the', 'crystal', 'structures', 'of', 'a', 'number', 'of', 'these', 'proteins', 'show', 'that', 'they', 'share', 'the', 'same', 'architecture', '-', 'two', 'all-alpha', 'domains', 'between', 'which', 'the', 'haem', 'group', 'is', 'embedded', '.'], ['edith', 'states', 'that', 'her', 'tale', 'about', 'mildred', \"'s\", 'adoption', 'was', 'a', 'lie', ',', 'told', 'to', 'forestall', 'offa', \"'s\", 'lust', '.'], ['the', 'first', 'walled', 'enclosure', 'of', 'the', 'city', 'was', 'built', 'in', 'the', '1', '2', 'th', 'century', '.'], ['some', 'of', 'his', 'works', 'have', 'been', 'engraved', ',', 'along', 'with', 'works', 'of', 'other', 'local', 'poets', ',', 'into', 'sidewalks', 'in', 'madison', ',', 'to', 'serve', 'as', 'a', 'permanent', 'memorial', '.'], ['there', 'were', 'no', 'high', 'volume', 'buyers', 'in', 'any', 'industry', '.'], ['after', 'the', 'war', 'ochs', 'returned', 'to', 'work', 'as', 'a', 'lecturer', 'in', 'the', 'royal', 'academy', 'of', 'fine', 'arts', ',', 'and', 'even', 'though', 'his', 'sight', 'had', 'been', 'damaged', 'during', 'his', 'internment', ',', 'he', 'continued', 'to', 'paint', 'and', 'draw', '.'], ['in', 'february', '2', '0', '0', '9', ',', 'horsey', 'collected', 'the', 'biggest', 'cheque', 'of', 'his', 'career', 'by', 'posting', 'a', 'final', 'round', '6', '4', 'at', 'the', 'maybank', 'malaysian', 'open', 'to', 'finish', 'as', 'joint', 'runner-up', ',', 'just', 'one', 'stroke', 'behind', 'winner', 'anthony', 'kang', '.'], ['because', 'an', 'olympic', 'size', 'swimming', 'pool', 'is', '5', '0', 'metres', 'long', ',', 'this', 'race', 'consisted', 'of', 'eight', 'lengths', 'of', 'the', 'pool', '.'], ['as', 'cardinal', 'deacons', 'are', 'permitted', 'to', 'do', 'after', 'ten', 'years', ',', 'he', 'opted', 'for', 'the', 'order', 'of', 'cardinal', 'priests', 'and', 'his', 'titular', 'church', 'was', 'elevated', 'pro', 'hac', 'vice', 'to', 'the', 'rank', 'of', 'title', 'on', '9', 'january', '1', '9', '9', '9', '.'], ['roumani', 'continues', 'his', 'research', 'projects', 'about', 'libya', 'and', 'libyan', 'jewry', ',', 'the', 'role', 'of', 'colonialism', 'and', 'arab', 'nationalism', 'in', 'north', 'african', 'and', 'the', 'middle', 'east', ',', 'the', 'arab-israel', 'conflict', ',', 'ethnic', 'relations', ',', 'the', 'applications', 'of', 'holocaust', 'policies', 'in', 'north', 'africa', 'and', 'jewish-muslim', 'relations', 'in', 'the', 'modern', 'period', '.'], ['women', 'first', 'enrolled', 'in', 'the', 'college', 'in', '1', '9', '5', '1', '.'], ['within', 'two', 'days', 'about', '8', '0', '%', 'of', 'the', 'employees', 'involved', 'had', 'returned', 'to', 'work', 'and', 'subsequent', 'unrest', 'soon', 'subsided', '.'], ['when', 'the', 'american', 'civil', 'war', 'began', 'in', '1', '8', '6', '1', ',', 'bushrod', 'and', 'alexander', 'hunter', '(', '2', 'nd', ')', 'left', 'the', 'abingdon', 'plantation', 'to', 'join', 'confederate', 'forces', '.'], ['her', 'employer', ',', 'father', 'michael', 'delpapp', ',', 'brings', 'her', 'to', 'the', 'attention', 'of', 'cody', 'randall', ',', 'a', 'gay', '1', '9', 'year', 'old', 'drug', 'user', 'and', 'hustler', ',', 'in', 'the', 'hopes', 'he', 'can', 'be', 'reformed', '.'], ['in', 'the', 'autumn', 'of', '1', '9', '4', '2', ',', '5', '1', 'medium', 'rgt', 'embarked', 'at', 'liverpool', 'and', 'arrived', 'in', 'egypt', 'in', 'october', 'to', 'join', 'middle', 'east', 'forces', '(', 'mef', ')', '.'], ['the', 'high', 'mortality', 'and', 'morbidity', 'caused', 'by', '``', 'p.', 'falciparum', \"''\", 'has', 'placed', 'great', 'selective', 'pressure', 'on', 'the', 'human', 'genome', '.'], ['law', '#', '1', 'of', 'august', '4', ',', '1', '9', '5', '2', 'of', 'the', 'commonwealth', 'of', 'puerto', 'rico', 'established', 'a', 'full', 'state', 'holiday', 'on', 'july', '2', '5', 'of', 'every', 'year', ',', 'to', 'be', 'known', 'as', 'puerto', 'rico', 'constitution', 'day', '.'], ['this', 'system', 'is', 'based', 'on', '6', '°', 'belts', 'with', 'a', 'central', 'meridian', 'of', '3', '7', '°', 'east', 'and', 'a', 'scale', 'factor', 'at', 'origin', '(', 'mo', ')', '=', '0', '.', '9', '9', '9', '8', '.'], ['it', 'is', 'derived', 'from', 'culinary', 'techniques', 'employed', 'in', 'chinese', 'cuisine', '.'], ['avery', 'was', 'not', 'signed', 'by', 'any', 'nba', 'teams', 'after', 'his', '3', '-year', 'contract', 'with', 'the', 'timberwolves', 'expired', 'in', '2', '0', '0', '2', ',', 'so', 'he', 'moved', 'his', 'career', 'overseas', '.'], ['in', 'october', '2', '0', '1', '8', ',', 'he', 'was', 'named', 'in', 'cape', 'town', 'blitz', \"'s\", 'squad', 'for', 'the', 'first', 'edition', 'of', 'the', 'mzansi', 'super', 'league', 't', '2', '0', 'tournament', '.'], ['the', 'st.', 'michael', 'the', 'archangel', 'cathedral', '(', ')', 'also', 'orizaba', 'cathedral', 'is', 'the', 'main', 'catholic', 'temple', 'of', 'the', 'city', 'of', 'orizaba', 'in', 'the', 'state', 'of', 'veracruz', 'and', 'of', 'the', 'diocese', 'of', 'orizaba', 'in', 'mexico', '.'], ['singles', '``', 'multi-love', \"''\", 'and', '``', 'ca', \"n't\", 'keep', 'checking', 'my', 'phone', \"''\", 'were', 'both', 'a-listed', 'at', 'bbc', \"'s\", '6', 'music', '.'], ['subsequently', ',', 'they', 'formed', 'burns', 'family', 'studios', 'and', 'started', 'a', 'kickstarter', 'campaign', 'in', '2', '0', '1', '1', 'to', 'fund', 'the', 'costs', 'of', 'production', ',', 'raising', '$', '2', '4', ',', '0', '1', '0', 'of', 'their', '$', '2', '0', ',', '0', '0', '0', 'goal', '.'], ['he', 'passed', 'all', 'the', 'tests', 'and', 'was', 'brought', 'to', 'lhasa', 'but', 'official', 'recognition', 'was', 'delayed', 'until', '1', '8', '2', '2', 'when', 'he', 'was', 'enthroned', 'and', 'ordained', 'by', 'the', 'seventh', 'panchen', 'lama', '.'], ['the', 'lake', 'is', 'named', 'after', 'john', 'mullett', ',', 'who', ',', 'together', 'with', 'william', 'a.', 'burt', ',', 'made', 'a', 'federal', 'survey', 'of', 'the', 'area', 'from', '1', '8', '4', '0', 'to', '1', '8', '4', '3', '.'], ['those', 'who', 'came', 'to', 'speak', 'for', 'him', 'in', 'the', 'constituency', 'included', 'liberal', 'mp', 'wilfrid', 'roberts', ',', 'expelled', 'labour', 'mps', 'sir', 'stafford', 'cripps', 'and', 'george', 'strauss', 'and', 'other', 'public', 'figures', 'such', 'as', 'j.b.', 'priestley', '.'], ['he', 'took', 'the', 'lead', 'soon', 'after', 'the', 'start', ',', 'fought', 'off', 'several', 'challengers', ',', 'and', 'edged', 'away', 'in', 'the', 'straight', 'to', 'win', 'by', 'one', 'and', 'a', 'quarter', 'lengths', 'from', 'prospect', 'park', '.'], ['public', 'school', 'students', 'in', 'graniteville', 'are', 'mostly', 'zoned', 'for', 'p.s', '.', '6', '0', 'and', 'p.s', '.', '2', '2', ',', 'and', 'i.s', '.', '5', '1', '(', 'markham', 'intermediate', 'school', ')', 'or', 'i.s', '.', '7', '2', '(', 'rocco', 'laurie', 'intermediate', 'school', ')', ',', 'as', 'well', 'as', 'port', 'richmond', 'high', 'school', '.'], ['the', 'population', 'was', '3', 'as', 'of', '2', '0', '0', '2', '.'], ['in', '1', '8', '1', '7', ',', 'he', 'was', 'made', 'professor', 'at', 'the', 'royal', 'swedish', 'academy', 'of', 'arts', '.'], ['he', 'also', 'produced', 'film', 'badmashiyaan', ',', 'the', 'film', 'emotional', 'atyachar', ',', 'and', 'time', 'bara', 'vait', '.'], ['it', 'lies', 'approximately', 'north', 'of', 'koło', 'and', 'east', 'of', 'the', 'regional', 'capital', 'poznań', '.'], ['they', 'added', 'grant', 'johnson', 'when', 'matyas', 'scaled', 'back', 'his', 'input', 'to', 'focus', 'on', 'his', 'other', 'band', ',', 'the', 'waking', 'eyes', '.'], ['abdagus', ',', 'duke', 'of', 'frisia', ',', 'appointed', 'by', 'louis', 'the', 'german', ',', 'headed', 'in', '8', '7', '3', 'the', 'frisians', 'against', 'the', 'danes', ',', 'who', 'had', 'invaded', 'frisia', 'under', 'the', 'danish', 'leader', 'rudolf', ',', 'and', 'destroyed', 'and', 'plundered', 'large', 'parts', 'of', 'the', 'country', '.'], ['the', 'force', 'of', '4', '0', '0', 'men', 'that', 'esau', 'brought', 'with', 'him', 'to', 'meet', 'jacob', 'in', 'exceeded', 'the', '3', '1', '8', 'men', 'with', 'whom', 'abraham', 'defeated', 'four', 'kings', 'and', 'rescued', 'lot', 'in', '.'], ['while', 'the', '1', '7', '9', '4', 'construction', 'was', 'never', 'completed', ',', 'the', 'company', \"'s\", 'successor', ',', 'the', 'union', 'canal', 'was', 'faced', 'with', 'the', 'same', 'challenges', 'of', 'sealing', 'the', 'canal', 'bed', 'to', 'conserve', 'water', '.'], ['it', 'became', '``', 'escadrille', 'n', '7', '3', '``', 'on', '4', 'july', '1', '9', '1', '6', '.'], ['w', 'pomrokach', 'wiary', ')', ',', 'written', 'under', 'the', 'pen', 'name', 'stefan', 'żalny', '(', 'żalny', 'means', \"'doleful\", \"'\", ')', 'became', 'his', 'self-published', 'debut', 'in', '1', '9', '0', '9', '.'], ['the', 'highlight', 'of', 'this', 'tour', 'was', 'the', 'inaugural', 'men', 'of', 'song', 'festival', 'hosted', 'by', 'the', 'brisbane', 'boys', \"'\", 'college', 'in', 'which', '1', '4', '0', 'pupils', 'participated', 'in', 'a', 'workshop', 'and', 'joint', 'concert', '.'], ['joseph', 'clifton', 'trees', 'was', 'a', 'college', 'football', 'player', 'at', 'the', 'university', 'of', 'pittsburgh', ',', 'the', 'first', 'athlete', 'to', 'receive', 'an', 'athletic', 'subsidization', 'at', 'the', 'school', ',', 'and', ',', 'possibly', ',', 'an', 'early', 'professional', 'football', 'player', '.'], ['stars', 'with', 'even', 'less', 'hydrogen', 'remaining', 'may', 'produce', 'the', 'uncommon', 'type', 'iib', 'supernova', ',', 'where', 'there', 'is', 'so', 'little', 'hydrogen', 'remaining', 'that', 'the', 'hydrogen', 'lines', 'in', 'the', 'initial', 'type', 'ii', 'spectrum', 'fade', 'to', 'the', 'appearance', 'of', 'a', 'type', 'ib', 'supernova', '.'], ['creelman', 'suffered', 'several', 'broken', 'bones', 'as', 'well', 'as', 'a', 'severe', 'concussion', 'of', 'the', 'brain', 'and', 'spinal', 'cord', '.'], ['the', 'mitchell', 'plain', 'is', 'a', 'karst', 'area', 'in', 'indiana', 'of', 'relatively', 'low', 'relief', '.'], ['he', 'was', 'the', 'first', 'physiologist', 'awarded', 'with', 'the', 'medal', 'and', 'a', 'title', 'of', 'an', 'honorary', 'member', 'of', 'the', 'polish', 'physiological', 'society', '(', 'polskie', 'towarzystwo', 'fizjologiczne', ')', '.'], ['he', 'played', 'a', 'handful', 'of', 'youth', 'test', 'and', 'first-class', 'cricket', 'matches', 'for', 'pakistan', 'international', 'airlines', 'between', '1', '9', '7', '7', 'and', '1', '9', '7', '9', '.'], ['also', 'the', 'very', 'famous', 'princess', 'rent', 'a', 'car', 'which', 'includes', 'all', 'types', 'of', 'cars', 'from', 'sports', 'to', 'luxuries', 'and', 'even', 'limousines', 'is', 'located', 'in', 'block', '1', '.'], ['a', 'fort', 'was', 'built', 'with', 'name', '``', 'rogach', \"''\", '(', '``', 'deer', \"''\", ')', 'on', 'the', 'place', 'where', 'the', 'duchess', 'supposedly', 'stepped', 'out', 'of', 'the', 'forest', '.'], ['there', 'are', 'plans', 'to', 'recondition', 'the', 'site', 'and', 'open', 'it', 'to', 'the', 'public', 'as', 'a', 'tourist', 'attraction', ',', 'observatory', 'and', 'whale', 'listening', 'post', '.'], ['even', 'though', 'his', 'car', 'was', 'still', 'running', 'near', 'perfectly', 'at', 'the', 'end', 'of', 'the', '5', '0', '0', 'miles', ',', 'mcphee', 'finished', 'second', 'after', 'following', 'team', 'orders', 'not', 'to', 'pass', 'his', 'teammate', ',', 'lead', 'driver', 'allan', 'moffat', '.'], ['the', 'music', 'then', 'was', 'heading', 'in', 'a', 'new', 'direction', ',', 'relying', 'less', 'on', 'spacey', 'psychedelia', 'and', 'more', 'on', 'keyboard-driven', 'pop', 'hooks', 'while', 'retaining', 'enough', 'of', 'their', 'mod', 'influence', 'to', 'bridge', 'the', 'gap', '.'], ['then', 'it', 'fell', 'to', '1', ',', '0', '0', '0', 'grams', 'in', 'october', ',', 'and', 'by', 'april', '1', '9', '4', '5', 'to', '4', '0', '0', 'grams', 'a', 'week', '.'], ['in', '1', '6', '3', '5', 'the', 'imperialists', 'besieged', 'hanau', ',', 'which', 'ramsay', 'defended', 'with', 'the', 'greatest', 'skill', 'and', 'pertinacity', '.'], ['in', 'addition', ',', 'she', 'is', 'a', 'licenciate', 'from', 'the', 'university', 'of', 'costa', 'rica', '.'], ['in', 'october', '1', '9', '8', '3', ',', 'the', 'tacoma', 'stars', 'had', 'the', 'first', 'selection', 'in', 'the', 'major', 'indoor', 'soccer', 'league', 'draft', 'but', 'swapped', 'their', 'pick', 'with', 'the', 'cleveland', 'force', '.'], ['bbc', 'and', 'studio', 'aka', 'produced', 'a', 'second', 'series', 'in', 'early', '2', '0', '1', '6', ',', 'with', 'the', 'first', 'episode', 'airing', 'in', 'the', 'united', 'kingdom', 'on', '2', '6', 'september', '2', '0', '1', '6', '.'], ['the', 'majority', 'of', 'desalination', 'facilities', 'in', 'the', 'emirates', 'are', 'overseen', 'by', 'the', 'sharjah', 'electricity', 'and', 'water', 'authority', '(', 'sewa', ')', '.'], ['a', 'charity', 'tip', 'jar', 'is', 'additionally', 'maintained', 'at', 'the', 'front', 'desk', ',', 'and', 'a', 'monthly', 'charity', 'is', 'selected', 'to', 'receive', 'the', 'spare', 'change', 'that', 'is', 'collected', '.'], ['white', 'arranges', 'a', 'conversation', 'with', 'russell', ',', 'who', 'allows', 'her', 'to', 'enter', 'the', 'bank', 'and', 'inspect', 'the', 'contents', 'of', 'the', 'box', ',', 'which', 'include', 'documents', 'from', 'nazi', 'germany', '.'], ['when', 'a', 'popular', 'route', 'is', 'climbed', 'over', 'and', 'over', ',', 'holds', 'may', 'become', 'looser', 'and', 'closer', 'to', 'breaking', '.'], ['a', 'treatise', 'on', 'the', 'nature', 'of', 'the', 'soul', ',', 'the', 'work', 'contains', 'summaries', 'and', 'philosophical', 'discussions', 'of', 'various', 'definitions', 'of', 'the', 'soul', ',', 'most', 'notably', 'that', 'of', 'johann', 'reuchlin', 'in', '``', 'de', 'arte', 'cabbalistica', \"''\", '.'], ['a', 'rough', 'version', 'of', '``', 'the', 'sorcerer', \"'s\", 'apprentice', \"''\", 'was', 'also', 'shown', 'that', ',', 'according', 'to', 'one', 'attendee', ',', 'had', 'the', 'crowd', 'applauding', 'and', 'cheering', '``', 'until', 'their', 'hands', 'were', 'red', \"''\", '.'], ['the', 'initial', 'budget', 'was', 'only', '5', '0', '0', ',', '0', '0', '0', 'pesetas', 'that', 'carmen', 'maura', 'and', 'félix', 'rotaeta', 'helped', 'to', 'collect', '.'], ['npsl', 'rules', 'prohibited', 'players', 'and', 'coaches', 'from', 'the', 'cisl', 'to', 'compete', 'in', 'the', 'npsl', '.'], ['a', '``', 'kes', \"''\", 'only', 'eats', 'meat', 'he', 'has', 'slaughtered', 'himself', ',', 'which', 'his', 'hosts', 'then', 'prepare', 'both', 'for', 'him', 'and', 'themselves', '.'], ['when', 'dutch', 'diplomat', 'and', 'un', 'assistant', 'secretary-general', 'adrian', 'pelt', 'was', 'posted', 'from', '1', '9', '4', '9', 'to', '1', '9', '5', '1', 'in', 'the', 'franco-british', 'un', 'trust', 'territory', 'of', 'libya', 'as', 'un', 'commissioner', 'for', 'libyan', 'independence', ',', 'burney', 'was', 'assigned', 'as', 'his', 'assistant', '.'], ['in', '1', '9', '2', '4', ',', 'he', 'became', 'the', 'owner', 'of', 'the', 'barlock', 'tyewriter', 'company', ',', 'set', 'up', 'in', 'basford', '.'], ['he', '(', 'born', 'c.', '1', '9', '6', '4', ')', ',', 'has', 'three', 'children', '.'], ['babiak', '(', ')', 'is', 'a', 'village', 'in', 'koło', 'county', ',', 'greater', 'poland', 'voivodeship', ',', 'in', 'west-central', 'poland', '.'], ['one', 'says', 'that', 'a', 'set', 'y', 'is', 'a', 'positive', 'density', 'point', 'if', 'every', 'effectively', 'closed', 'class', 'containing', 'y', 'has', 'positive', 'lower', 'lebesgue', 'density', 'at', 'y.', 'bienvenu', ',', 'hölzl', ',', 'miller', ',', 'and', 'nies', 'showed', 'that', 'a', 'ml-random', 'is', 'turing', 'incomplete', 'iff', 'it', 'is', 'a', 'positive', 'density', 'point', '.'], ['he', 'is', 'a', '1', '9', '8', '5', 'graduate', 'of', 'pennsylvania', 'state', 'university', ',', 'and', 'he', 'received', 'that', 'university', \"'s\", 'oswald', 'award', 'for', 'achievement', 'in', 'journalism', 'and', 'mass', 'media', '.'], ['insect', 'crop', 'damages', 'also', 'contribute', 'largely', 'to', 'annual', 'crop', 'losses', 'in', 'the', 'u.s', '.'], ['he', 'later', 'admitted', 'that', 'his', 'team', 'was', 'not', 'good', 'on', 'fuel', 'mileage', 'during', 'the', 'race', '.'], ['the', 'manuscript', 'found', 'some', 'early', 'critics', 'upon', 'arriving', 'in', 'chicago', '.'], ['the', 'dumpsite', \"'s\", 'managing', 'company', ',', 'the', 'metro', 'clark', 'waste', 'management', 'corp.', '(', 'mcwmc', ')', 'was', 'incorporated', 'on', 'the', 'same', 'year', '.'], ['despite', 'the', 'byzantine', 'efforts', ',', 'the', 'persians', 'managed', 'to', 'close', 'up', 'to', 'the', 'walls', 'and', 'breach', 'them', '.'], ['it', 'is', 'used', 'to', 'control', 'grasses', ',', 'broadleaf', ',', 'and', 'woody', 'plants', '.'], ['the', 'length', 'of', 'an', 'adult', 'shell', 'varies', 'between', '5', 'mm', 'and', '1', '3', '0', 'mm', '.'], ['the', 'pays', 'de', 'bitche', 'has', 'a', 'total', 'of', '4', '7', 'municipalities', 'and', 'covers', 'the', 'part', 'of', 'the', 'northern', 'vosges', 'regional', 'nature', 'park', 'that', 'lies', 'within', 'lorraine', '.'], ['milliken', 'died', 'from', 'a', 'heart', 'attack', 'at', 'his', 'home', 'in', 'traverse', 'city', ',', 'michigan', '.'], ['it', 'lies', 'approximately', 'north', 'of', 'kuźnica', ',', 'north', 'of', 'sokółka', ',', 'and', 'north-east', 'of', 'the', 'regional', 'capital', 'białystok', '.'], ['the', 'petrol', 'engine', 'gets', 'equipped', 'with', 'a', '5', '-speed', 'manual', 'transmission', 'gearbox', 'as', 'well', 'as', 'a', '6', '-speed', 'automatic', 'transmission', 'gearbox', '.'], ['the', 'name', 'was', 'chosen', 'between', 'the', 'australian', 'symbol', 'propositions', 'done', 'by', 'fan', 'in', 'the', 'official', 'team', 'site', '.'], ['grant', 'department', 'store', ',', 'a', 'perry', 'drug', 'stores', 'pharmacy', ',', 'and', 'approximately', 'twenty-five', 'inline', 'tenants', '.'], ['he', 'was', 'then', 'stripped', 'of', 'all', 'his', 'political', 'posts', '.'], ['the', 'west-facing', 'façade', 'has', 'a', 'latter', 'addition', 'of', 'a', 'full-height', 'bowed', 'extension', 'with', 'windows', 'which', 'overlook', 'the', 'gardens', 'on', 'this', 'side', 'of', 'the', 'hall', '.'], ['toilet', 'böys', 'reunited', 'and', 'played', 'on', 'june', '1', '4', ',', '2', '0', '1', '0', 'at', 'le', 'poisson', 'rouge', 'in', 'new', 'york', 'city', '.'], ['the', 'winning', 'entry', 'was', 'a', 'drawing', 'by', 'milan', 'abad', 'that', 'depicted', 'katie', 'white', 'and', 'jules', 'de', 'martino', 'as', 'skeletons', '.'], ['a', 'sum', 'of', '₤', '1', '0', ',', '0', '0', '0', 'and', 'tardini', 'instigated', 'a', 'national', 'competition', 'for', 'the', 'design', 'of', 'the', 'new', 'stadium', 'in', 'february', '1', '9', '2', '2', '.'], ['this', 'network', 'grows', 'by', 'the', 'additional', 'budding', 'and', 'sprouting', 'of', 'new', 'vessels', 'in', 'the', 'process', 'of', 'angiogenesis', '.'], ['in', 'contrast', ',', 'with', 'six', 'fewer', 'electrons', ',', 'cyanuric', 'chloride', 'is', 'a', 'planar', 'ring', '.'], ['on', 'some', 'racing', 'yachts', ',', 'a', 'canting', 'keel', 'shifts', 'angle', 'from', 'side', 'to', 'side', 'to', 'promote', 'sailing', 'with', 'less', 'heeling', 'angle', '(', 'sideway', 'tilt', ')', ',', 'while', 'other', 'underwater', 'foils', 'take', 'care', 'of', 'leeway', '(', 'sideways', 'motion', ')', '.'], ['it', 'has', 'since', 'the', 'inauguration', 'of', 'the', 'fia', 'world', 'rallycross', 'championship', 'in', '2', '0', '1', '4', 'hosted', 'world', 'rx', 'of', 'norway', '.'], ['an', 'honorary', 'superindendant', 'who', 'served', 'for', '2', '4', 'years', 'was', 'willamina', 'davidson', 'obe', 'raised', 'substantial', 'sums', 'and', 'was', 'involved', 'in', 'the', 'edinburgh', 'and', 'barry', 'buddon', 'facilities', '.'], ['musical', 'expertise', 'created', 'an', 'effect', 'of', 'sophistication', 'when', 'it', 'came', 'to', 'earworm', 'occurrences', '.'], ['this', 'year', \"'s\", 'ncaa', 'skiing', 'championships', 'were', 'hosted', 'at', 'the', 'wildcat', 'mountain', 'ski', 'area', 'near', 'jackson', ',', 'new', 'hampshire', '.'], ['in', 'december', '2', '0', '1', '7', ',', 'documents', 'released', 'under', 'the', 'freedom', 'of', 'information', 'act', 'showed', 'that', 'darpa', 'had', 'invested', '$', '1', '0', '0', 'million', 'in', 'gene', 'drive', 'research', '.'], ['he', 'attended', 'clark', 'university', 'when', 'g.', 'stanley', 'hall', 'was', 'a', 'leading', 'teacher', '.'], ['ryan', 'was', 'awarded', 'the', '2', '0', '0', '7', 'johnny', 'unitas', 'golden', 'arm', 'award', ',', 'presented', 'annually', 'to', 'the', 'nation', \"'s\", 'most', 'outstanding', 'college', 'senior', 'quarterback', '.'], ['in', 'the', 'slot', 'is', 'a', 'tower', 'of', 'power', 'album', 'released', 'in', '1', '9', '7', '5', '.'], ['these', 'frogs', 'are', 'usually', 'found', 'on', 'vegetation', 'near', 'ponds', ',', 'pools', ',', 'and', 'lakes', '.'], ['it', 'was', 'managed', 'by', 'the', 'polish', 'basketball', 'league', '(', 'plk', ')', 'and', 'was', 'held', 'in', 'warsaw', ',', 'in', 'the', 'arena', 'ursynów', 'in', 'february', '2', '0', '1', '8', '.'], ['no', 'relationship', 'between', 'the', 'two', 'patrons', 'has', 'been', 'established', ',', 'except', 'for', 'an', 'archival', 'document', 'from', 'the', 'eighteenth', 'century', ',', 'which', 'testifies', 'van', 'wassenaer', \"'s\", 'intention', 'to', 'buy', 'dou', \"'s\", '``', 'grocer', \"'s\", 'shop', \"''\", '.'], ['over', 'the', 'next', 'few', 'months', ',', 'graham', 'murdered', 'four', 'more', 'alpine', 'manor', 'patients', ',', 'wood', 'alleged', '.'], ['indeed', ',', 'in', 'the', 'fugue', ',', 'the', 'last', 'almost', 'completely', 'orchestrated', 'score', 'pages', 'are', 'traceable', '.'], ['while', 'sending', 'a', 'distress', 'signal', ',', 'duke', 'learns', 'that', 'aliens', 'are', 'attacking', 'los', 'angeles', 'and', 'have', 'mutated', 'the', 'lapd', '.'], ['red', 'bull', 'transferee', 'lordy', 'tugade', ',', 'on', 'his', 'third', 'straight', 'finals', 'appearance', ',', 'converted', 'three-pointers', 'as', 'mark', 'caguioa', 'was', \"n't\", 'able', 'to', 'get', 'support', 'from', 'his', 'teammates', '.'], ['it', 'accepted', 'that', 'guerrero', 'did', 'not', 'intend', 'to', 'enhance', 'performance', 'but', 'said', 'he', 'was', 'at', 'fault', ',', 'even', 'if', 'not', 'significantly', '.'], ['the', 'organisation', 'manages', 'botanic', 'gardens', 'at', 'kew', 'in', 'richmond', 'upon', 'thames', 'in', 'southwest', 'london', ',', 'and', 'at', 'wakehurst', ',', 'a', 'national', 'trust', 'property', 'in', 'sussex', 'which', 'is', 'home', 'to', 'the', 'internationally', 'important', 'millennium', 'seed', 'bank', ',', 'whose', 'scientists', 'work', 'with', 'partner', 'organisations', 'in', 'more', 'than', '9', '5', 'countries', '.'], ['after', 'being', 'rarely', 'used', ',', 'villanueva', 'moved', 'to', 'fellow', 'primera', 'división', 'team', 'acd', 'lara', 'in', '2', '0', '1', '4', '.'], ['we', 'both', 'own', 'the', 'land', ',', 'let', \"'s\", 'maintain', 'the', 'peace', 'for', 'love', 'and', 'development', '.'], ['matheson', 'ruled', 'that', '2', '0', '-year-old', 'justin', 'clark', ',', 'who', 'suffered', 'from', 'cerebral', 'palsy', ',', 'was', 'mentally', 'competent', 'to', 'make', 'his', 'own', 'decisions', 'and', 'should', 'not', 'be', 'forced', 'into', 'the', 'guardianship', 'of', 'his', 'parents', '.'], ['tharoor', 'and', 'tilottama', 'had', 'been', 'college', 'sweethearts', 'and', 'were', 'married', 'in', '1', '9', '8', '1', '.'], ['on', 'his', 'retirement', 'from', 'the', 'post', 'in', '1', '9', '2', '9', '.'], ['during', 'the', 'civil', 'war', 'dr.', 'hall', 'had', 'served', 'as', 'a', 'volunteer', 'surgeon', 'in', 'mcclellan', \"'s\", 'army', '.'], ['anne', 'marie', \"'s\", 'writing', 'has', 'also', 'appeared', 'in', '``', 'image', 'magazine', \"''\", ',', '``', 'the', 'irish', 'times', \"''\", ',', '``', 'the', 'irish', 'independent', \"''\", ',', '``', 'the', 'evening', 'echo', \"''\", ',', 'and', 'in', 'several', 'short', 'story', 'collections', '.'], ['``', 'nafanua', \"''\", 'began', 'its', 'final', 'journey', 'to', 'australia', ',', 'to', 'be', 'recycled', ',', 'on', '1', '3', 'june', '2', '0', '1', '9', '.'], ['as', 'part', 'of', 'tna', ',', 'he', 'made', 'appearances', 'for', 'new', 'japan', 'pro-wrestling', '(', 'njpw', ')', 'and', 'the', 'inoki', 'genome', 'federation', '(', 'igf', ')', ',', 'holding', 'the', 'iwgp', 'heavyweight', 'championship', 'once', '.'], ['carey', \"'s\", 'scenery', 'was', 'in', 'use', 'for', 'fifty', 'years', ',', 'from', '1', '8', '0', '8', 'to', '1', '8', '5', '8', '.'], ['she', 'was', 'previously', 'shadow', 'minister', 'for', 'sport', 'between', 'october', '2', '0', '1', '6', 'and', 'january', '2', '0', '2', '0', '.'], [\"'activity\", \"'\", 'refers', 'to', 'non-stellar', 'processes', 'occurring', 'or', 'originating', 'in', 'a', 'galaxy', 'nucleus', '.'], ['however', ',', 'this', 'was', 'disallowed', 'following', 'a', 'ruling', 'that', 'he', 'had', 'had', 'a', '``', 'flier', \"''\", '.'], ['the', 'concert', 'was', 'to', 'mark', 'his', '2', '1', 'years', 'in', 'the', 'music', 'business', '.'], ['for', 'instance', ',', 'lean', 'workcells', 'must', 'be', 'designed', 'for', 'minimal', 'wasted', 'motion', ',', 'which', 'refers', 'to', 'any', 'unnecessary', 'time', 'and', 'effort', 'required', 'to', 'assemble', 'a', 'product', '.'], ['in', 'his', 'speech', 'announcing', 'his', 'candidacy', ',', 'duncan', 'reiterated', 'his', 'strong', 'support', 'for', 'president', 'lyndon', 'b.', 'johnson', \"'s\", 'escalation', 'of', 'the', 'vietnam', 'war', 'with', 'its', 'goal', 'of', 'stopping', 'communist', 'expansion', 'in', 'asia', '.'], ['sid', 'mark', '(', 'born', 'sidney', 'mark', 'fliegelman', 'may', '3', '0', ',', '1', '9', '3', '3', ')', 'is', 'an', 'american', 'radio', 'disc', 'jockey', 'based', 'in', 'philadelphia', ',', 'pennsylvania', '.'], ['other', 'options', 'included', 'replacing', 'the', 'entire', 'stretch', 'of', 'road', 'with', 'a', 'park', '.'], ['at', 'the', 'same', 'time', ',', 'a', 'military', 'general', 'named', 'ivan', 'petrov', 'vanishes', '.'], ['growing', 'up', ',', 'she', 'moved', 'with', 'her', 'family', 'to', 'omaha', ',', 'nebraska', ',', 'seattle', ',', 'washington', ',', 'british', 'columbia', ',', 'greely', ',', 'colorado', ',', 'and', 'finally', 'landed', 'in', 'sisters', ',', 'oregon', 'where', 'she', 'attended', 'junior', 'high', 'and', 'high', 'school', '.'], ['the', 'qualifying', 'round', 'was', 'played', 'on', 'the', 'first', 'level', 'and', ',', 'as', 'in', 'the', 'previous', 'qualifying', 'round', ',', 'two', 'contestants', 'faced', 'off', 'to', 'try', 'to', 'advance', 'to', 'face', 'the', 'day', \"'s\", 'champion', '(', 'or', 'champion-designate', ')', '.'], ['hao', 'proposes', 'that', 'raghu', 'shall', 'sell', 'this', 'product', 'in', 'india', 'and', 'suggests', 'that', 'it', 'will', 'be', 'successful', 'over', 'there', 'because', 'chinese', 'and', 'indians', 'are', 'constantly', 'thinking', 'about', 'sex', '.'], ['while', 'being', 'a', 'cultural', 'attraction', ',', 'the', 'monastery', 'is', 'once', 'again', 'active', ',', 'with', 'over', '1', '0', '0', 'monks', 'in', 'residence', '.'], ['the', 'majority', 'of', 'the', 'graduate', 'students', 'on', 'campus', 'live', 'in', 'one', 'of', 'four', 'graduate', 'housing', 'complexes', 'on', 'campus', '.'], ['the', 'season', 'began', 'on', '1', '5', 'march', '2', '0', '1', '4', 'and', 'was', 'finished', 'in', 'november', '.'], ['danuta', 'maria', 'hübner', ',', 'née', 'młynarska', '(', 'or', ';', 'born', '8', 'april', '1', '9', '4', '8', ')', 'is', 'a', 'polish', 'politician', 'and', 'diplomat', 'and', 'economist', 'and', 'member', 'of', 'the', 'european', 'parliament', '.'], ['``', 'we', 'plan', 'to', 'make', 'it', 'yellowknife', \"'s\", 'premier', 'hotel', 'for', 'business', 'travellers', ',', \"''\", 'said', 'nunastar', 'president', 'doug', 'cox', '.'], ['such', 'behaviors', 'can', 'be', 'seen', 'in', 'disciplinary', 'actions', 'and', 'safety', 'violations', '.'], ['an', 'underground', 'basement', 'band', 'from', 'appleton', ',', 'wisconsin', 'that', 'continues', 'to', 'proudly', 'fly', 'the', 'diy', 'flag', 'never', 'forgetting', 'where', 'they', 'came', 'from', 'no', 'matter', 'how', 'much', 'attention', 'they', 'receive', '.', \"''\"], ['along', 'with', 'the', 'song', ',', 'the', 'catch', 'line', 'used', 'by', 'actor', 'p.s', '.'], ['she', 'received', 'women', 'in', 'film', 'and', 'television', 'international', \"'s\", 'crystal', 'award', 'for', 'excellence', 'in', 'the', 'entertainment', 'industry', 'in', '2', '0', '1', '4', '.'], ['he', 'is', 'the', 'winner', 'of', 'the', 'walkley', 'book', 'award', 'for', '``', 'the', 'straight', 'dope', \"''\", ',', 'the', 'inside', 'story', 'of', 'the', 'essendon', 'and', 'cronulla', 'doping', 'scandal', ',', 'published', 'in', '2', '0', '1', '5', 'by', 'melbourne', 'university', 'publishing', '.'], ['he', 'has', 'been', 'the', 'liberal', 'national', 'party', 'member', 'for', 'ninderry', 'in', 'the', 'queensland', 'legislative', 'assembly', 'since', '2', '0', '1', '7', '.'], ['mangalore', 'robautonics', 'pvt', 'ltd', 'is', 'a', 'company', 'that', 'designs', ',', 'develops', 'and', 'manufactures', 'robotics', 'and', 'automation', 'systems', 'for', 'agricultural', ',', 'industrial', 'and', 'consumer', 'sectors', '.'], ['kasese', 'municipal', 'health', 'centre', 'iii', 'is', 'a', 'ugandan', 'health', 'facility', 'found', 'in', 'the', 'municipality', 'of', 'kasese', ',', 'at', 'a', 'level', 'of', 'health', 'centre', 'three', '.'], ['it', 'is', 'for', 'the', 'common', 'good', 'because', 'the', 'end', 'or', '``', 'telos', \"''\", 'of', 'law', 'is', 'the', 'good', 'of', 'the', 'community', 'it', 'binds', ',', 'and', 'not', 'merely', 'the', 'good', 'of', 'the', 'lawmaker', 'or', 'a', 'special', 'interest', 'group', '.'], ['for', '1', '9', '4', '6', ',', 'the', 'aafc', 'began', 'play', 'with', '8', 'teams', 'playing', 'a', 'record', '1', '4', 'games', '(', 'a', 'double', 'round-robin', ')', '.'], ['her', 'and', 'michael', \"'s\", 'friendship', 'seems', 'to', 'rebuild', 'itself', 'with', '``', 'the', 'seminar', \"''\", '.'], ['for', '``', 'hindustan', 'times', \"''\", ',', 'film', 'critic', 'khalid', 'mohamed', 'gave', '``', 'dostana', \"''\", 'a', 'three-out-of-five', 'rating', ':', '``', 'good', 'taste', ',', 'pop', 'colour', 'miami', 'locations', ',', 'high-end', 'costumes', ',', 'make-up', 'styling', 'and', 'the', 'a-grade', 'dharma', 'productions', 'values', 'add', 'up', 'to', 'a', 'zingy', 'entertainer', \"''\", '.'], ['transferred', 'to', 'he', 'served', 'as', 'a', 'fireman', ',', 'second', 'class', '.'], ['however', ',', 'competent', 'authorities', 'will', 'apply', 'stress', 'test', 'results', 'as', 'an', 'input', 'to', 'the', 'supervisory', 'review', 'and', 'evaluation', 'process', '.'], ['when', 'she', 'refused', ',', 'they', 'tried', ',', 'one', 'by', 'one', ',', 'to', 'persuade', 'her', '.'], ['fine-needle', 'aspiration', '(', 'fna', ')', 'is', ',', 'as', 'discussed', 'earlier', ',', 'also', 'a', 'diagnosis', 'method', 'but', 'can', 'also', 'be', 'used', 'as', 'a', 'treatment', '.'], ['for', 'every', '1', '0', '0', 'females', ',', 'there', 'were', '9', '1', '.', '9', 'males', '.'], ['on', 'one', 'side', 'of', 'the', 'island', 'is', 'an', 'area', 'of', 'green', 'reeds', '.'], ['at', 'that', 'point', 'about', '4', '4', 'person-years', 'of', 'development', 'work', 'had', 'gone', 'into', 'it', '.'], ['he', 'and', 'his', 'wife', 'terri', 'have', 'been', 'married', 'since', '1', '9', '8', '5', '.'], ['they', 'enhance', 'the', 'porosity', 'of', 'water', 'flow', 'through', 'the', 'sediment', 'and', 'assist', 'in', 'flushing', 'away', 'toxic', 'substances', '.'], ['in', 'addition', ',', 'the', 'club', 'is', 'permanently', 'allowed', 'to', 'display', 'a', 'multiple-winner', 'badge', 'on', 'its', 'shirt', 'as', 'it', 'has', 'won', 'more', 'than', 'five', 'european', 'cups', '.'], ['as', 'needs', 'of', 'the', 'community', 'change', ',', 'the', 'organization', \"'s\", 'focus', 'has', 'shifted', 'to', 'gutting', 'homes', '.'], ['the', 'tune', 'was', 'rodgers', \"'\", 'biggest', 'hit', ',', 'staying', 'on', 'the', 'top', 'of', 'the', 'charts', 'for', 'four', 'weeks', '.'], ['the', 'program', 'aims', 'to', 'reduce', 'barriers', 'to', 'entry', 'for', 'mid-level', 'and', 'senior-level', 'jobs', 'in', 'environmental', 'organizations', 'and', 'foundations', 'for', 'professionals', 'from', 'underrepresented', 'backgrounds', 'by', 'connecting', 'them', 'to', 'mentors', 'and', 'giving', 'them', 'experience', 'in', 'the', 'field', '.'], ['ramsay', ',', 'who', 'defended', 'himself', 'to', 'the', 'last', ',', 'was', 'severely', 'wounded', ',', 'and', 'died', 'a', 'prisoner', 'in', 'the', 'castle', 'of', 'dillenburgh', 'on', '1', '1', 'march', '1', '6', '3', '8', '.'], ['the', 'facility', 'trackage', 'could', 'accommodate', '1', '2', '5', 'cars', '.'], ['it', 'will', 'reopen', 'in', 'new', 'premises', 'in', '2', '0', '2', '1', ',', 'under', 'the', 'name', 'lahti', 'art', ',', 'poster', 'and', 'design', 'museum', 'lad', '.'], ['nowadays', ',', 'undp', 'is', 'giving', 'financial', 'support', 'from', 'the', 'eu', 'through', 'abad', 'agency', '.'], ['the', 'position', 'on', 'the', 'list', 'is', 'determined', 'by', 'whether', 'the', 'game', 'was', 'a', 'win', 'or', 'a', 'loss', ',', 'by', 'the', 'time', 'taken', 'to', 'defeat', 'the', 'bandits', ',', 'and', 'by', 'the', 'total', 'damage', 'the', 'player', 'inflicted', '.'], ['he', 'is', 'active', 'in', 'encouraging', 'latinos', 'to', 'vote', 'and', 'to', 'take', 'part', 'in', 'activism', 'against', 'anti-illegal', 'immigrant', 'legislation', 'and', 'sentiment', ',', 'such', 'as', 'the', '2', '0', '0', '6', 'great', 'american', 'boycott', '.'], ['``', ',', 'causing', 'the', 'courtroom', 'to', 'laugh', 'at', 'him', '.'], ['it', 'has', 'become', 'easier', 'to', 'maintain', 'the', 'maximum', 'speed', 'of', 'the', 'locomotive', 'while', 'reducing', 'breakdowns', '.'], ['he', 'wrote', ',', '``', 'not', 'since', 'harold', 'bishop', 'has', 'one', 'man', 'endured', 'so', 'much', 'tragedy', 'as', 'mark', 'brennan', '.'], ['in', '2', '0', '0', '4', 'grandfield', 'pacific', ',', 'the', 'hotel', \"'s\", 'then-owner', ',', 'agreed', 'to', 'sell', 'it', 'to', 'nunastar', 'properties', ',', 'an', 'edmonton-based', 'company', 'which', 'also', 'owned', 'the', 'frobisher', 'inn', 'in', 'iqaluit', ',', 'the', 'territorial', 'capital', 'of', 'recently', 'created', 'nunavut', ',', 'for', 'cdn', '$', '6', '.', '3', '5', 'million', '.'], ['to', 'date', 'the', 'series', 'consists', 'of', 'seven', 'novels', '(', 'four', 'of', 'which', 'have', 'been', 'published', 'in', 'english', ')', 'although', 'as', 'somer', 'explains', ',', '``', 'the', 'order', 'of', 'the', 'books', 'is', 'a', 'strange', 'story', '.'], ['one', 'historically', 'important', 'fur', 'trade', 'portage', 'is', 'now', 'grand', 'portage', 'national', 'monument', '.'], ['johnston', 'was', 'subsequently', 'named', 'captain', 'of', 'ireland', ',', 'and', 'was', 'a', 'regular', 'fixture', 'in', 'the', 'national', 'team', 'until', 'his', 'retirement', 'in', '2', '0', '1', '3', '.'], ['to', 'advertise', '``', 'kud', 'wafter', \"''\", ',', 'good', 'smile', 'racing', 'took', 'shinji', 'orito', \"'s\", '2', '0', '0', '3', 'honda', 'fit', 'and', 'made', 'it', 'into', 'an', 'itasha', '(', 'a', 'car', 'featuring', 'illustrations', 'of', 'anime-styled', 'characters', ')', 'with', 'images', 'of', 'kudryavka', '.'], ['they', 'describe', 'themselves', 'as', '``', 'a', 'community', 'of', 'artists', 'exploring', 'books', ',', 'paper', ',', 'and', 'printmaking', '.', \"''\"], ['other', 'scholars', 'who', 'support', 'the', 'same', 'theory', 'underline', 'that', 'the', 'connection', 'between', 'certain', 'artefacts', 'or', 'archaeological', 'assemblages', 'and', 'ethnic', 'groups', 'is', 'uncertain', '.'], ['among', 'places', 'with', 'a', 'population', 'above', '5', '0', ',', '0', '0', '0', ',', 'west', 'new', 'york', 'is', 'the', 'second-most', 'densely', 'populated', 'municipality', 'in', 'the', 'united', 'states', ',', 'with', 'more', 'than', '5', '2', ',', '8', '0', '0', 'people', 'per', 'square', 'mile', '.'], ['marge', 'unlike', 'the', 'others', 'however', ',', 'is', 'instead', 'using', 'her', 'knife', 'to', 'spread', 'mayonnaise', 'on', 'a', 'sandwich', 'and', 'intervenes', ',', 'breaking', 'the', 'trance', '.'], ['for', 'example', ',', 'cavalli-sforza', \"'s\", 'principal', 'component', 'analyses', 'revealed', 'five', 'major', 'clinal', 'patterns', 'throughout', 'europe', ',', 'and', 'similar', 'patterns', 'have', 'continued', 'to', 'be', 'found', 'in', 'more', 'recent', 'studies', '.'], ['in', 'the', 'time', 'period', 'of', '2', '0', '0', '6', 'to', '2', '0', '1', '5', ',', 'the', 'success', 'rate', 'was', '9', '.', '6', '%', '.'], ['when', 'he', 'was', 'old', 'enough', 'he', 'was', 'given', 'an', 'english', 'musket', ',', 'which', 'he', 'used', 'to', 'hunt', 'mud', 'turtles', ',', 'wild', 'turkeys', ',', 'and', 'raccoons', '.'], ['lamplight', 'analytics', 'was', 'also', 'shortlisted', 'for', 'campaign', 'asia', \"'s\", 'innovate', 'awards', 'as', 'one', 'of', 'the', 'top', '1', '2', 'startups', 'to', 'consider', 'for', 'brand', 'marketing', 'and', 'advertising', 'in', 'the', 'asia-pacific', 'region', 'and', 'noted', 'as', 'a', 'promising', 'startup', 'by', 'the', 'harvard', 'business', 'school', 'association', 'of', 'hong', 'kong', '(', 'hbsahk', ')', '.'], ['it', 'is', 'currently', 'being', 'operated', 'with', '1', '5', '9', '4', '1', '/', '1', '5', '9', '4', '2', 'train', 'numbers', 'on', 'a', 'weekly', 'basis', '.'], ['average', 'monthly', 'precipitation', 'ranged', 'from', 'in', 'january', 'to', 'in', 'july', '.'], ['he', 'has', 'done', 'work', 'on', 'dominant', 'assurance', 'contracts', ',', 'law', 'and', 'economics', ',', 'and', 'health', 'economics', '.'], ['as', 'a', 'label', ',', 'rrr', 'has', 'a', 'very', 'expansive', 'discography', '.'], ['the', 'bill', 'was', 'introduced', 'by', 'kenny', 'macaskill', 'msp', 'on', '6', 'february', '2', '0', '1', '4', '.'], ['during', 'the', 'war', ',', 'a', 'new', 'jersey', 'regiment', 'of', 'the', 'union', 'army', 'occupied', 'the', 'abingdon', 'plantation', ',', 'calling', 'it', '``', 'camp', 'princeton', \"''\", '.'], ['in', '1', '9', '9', '4', 'the', 'castle', 'howard', 'arboretum', 'trust', ',', 'which', 'runs', 'the', 'yorkshire', 'arboretum', ',', 'was', 'formed', 'as', 'a', 'partnership', 'between', 'kew', 'and', 'the', 'castle', 'howard', 'estate', '.'], ['after', 'nearly', 'a', 'year', 'apart', ',', 'slaughter', ',', 'stevens', ',', 'berthiaume', 'and', 'matyas', 'reunited', 'to', 'play', 'a', 'one-off', 'show', 'with', 'new', 'songs', '.'], ['kbp', 'requested', 'the', 'government', 'of', 'russia', 'to', 'provide', 'independent', 'military', 'and', 'technical', 'cooperation', 'with', 'foreign', 'countries', ',', 'and', 'was', 'confirmed', 'and', 'subsequently', 'expanded', 'by', 'an', 'order', 'of', 'the', 'russian', 'president', 'in', '2', '0', '0', '0', '.'], ['francis', 'h.', 'pierpont', 'was', 'selected', 'as', 'governor', 'of', 'virginia', 'and', 'a', 'rump', 'legislature', 'was', 'composed', 'of', 'former', 'members', 'of', 'the', 'virginia', 'assembly', 'who', 'supported', 'the', 'union', '.'], ['``', 'vendor', \"''\", 'is', 'often', 'a', 'generic', 'term', ',', 'used', 'for', 'suppliers', 'of', 'industries', 'from', 'retail', 'sales', 'to', 'manufacturers', 'to', 'city', 'organizations', '.'], ['he', 'was', 'buried', 'at', 'the', 'columban', 'father', 'house', 'in', 'navan', ',', 'county', 'meath', 'on', '2', '9', 'march', '1', '9', '9', '9', '.'], ['both', 'had', 'been', 'sailing', 'from', 'yarmouth', 'to', 'liverpool', 'when', 'they', 'were', 'captured', '.'], ['the', 'fact', 'that', 'the', 'characters', 'live', 'in', 'poverty', 'is', 'reflected', 'in', 'a', 'scene', 'where', 'mr.', 'bebe', 'accosts', 'his', 'mother', 'for', 'wanting', 'to', 'buy', 'sugar', '.'], ['the', 'few', 'non-album', 'b-sides', 'included', 'are', '``', 'see', 'what', 'a', 'fool', 'i', \"'ve\", 'been', \"''\", ',', '``', 'soul', 'brother', \"''\", ',', '``', 'i', 'go', 'crazy', \"''\", 'and', '``', 'a', 'dozen', 'red', 'roses', 'for', 'my', 'darling', \"''\", '.'], ['hispanic', 'americans', 'constituted', 'the', 'second', 'largest', 'minority', 'group', 'during', 'the', 'etsu', 'era', ',', 'with', 'the', 'majority', 'of', 'them', 'heralding', 'from', 'south', 'texas', '.'], ['as', 'a', 'native', 'of', 'lingchuan', '(', ')', ',', 'jiangxi', ',', 'rao', 'was', 'among', 'the', 'few', 'senior', 'leaders', 'of', 'early', 'stage', 'of', 'ccp', 'who', 'received', 'a', 'higher', 'education', '.'], ['the', 'party', 'advocates', 'the', 'transformation', 'of', 'morocco', 'into', 'an', 'islamist', 'republic', ',', 'ruled', 'by', 'its', 'interpretation', 'of', 'the', 'shariah', '.'], ['the', 'antithesis', 'of', 'the', 'german', 'spirit', 'is', 'the', 'jewish', 'spirit', ',', 'which', 'is', 'not', 'a', 'matter', 'of', 'being', 'born', 'jewish', 'or', 'believing', 'in', 'judaism', 'but', 'is', 'a', 'capitalistic', 'spirit', '.'], ['in', '1', '9', '0', '6', ',', 'the', 'iww', 'became', 'so', 'powerful', 'in', 'goldfield', 'that', 'it', 'could', 'dictate', 'wages', 'and', 'working', 'conditions', '.'], ['while', 'the', 'dandie', 'generally', 'is', 'a', 'hardy', 'breed', ',', 'it', 'may', 'have', 'issue', 'climbing', 'stairs', '.'], ['during', 'his', 'career', 'he', 'played', 'for', 'croatian', 'and', 'bosnian', 'clubs', 'with', 'the', 'exception', 'of', 'the', 'slovakian', 'astrum', 'levice', 'where', 'he', 'spent', 'the', '2', '0', '1', '1', '-', '1', '2', 'season', '.'], ['the', 'financial', 'results', 'for', '2', '0', '1', '1', '/', '2', 'show', 'the', 'firm', 'increased', 'turnover', 'to', '£', '1', '1', '0', '.', '2', 'million', ',', 'and', 'grew', 'equity', 'partnership', 'year', 'on', 'year', 'by', 'almost', 'a', 'fifth', '.'], ['dollar', 'lake', 'can', 'be', 'accessed', 'by', 'trail', '1', '8', '0', '2', '.'], ['the', 'gau', 'pomerania', '(', 'german', ':', '``', 'gau', 'pommern', \"''\", ')', 'formed', 'on', '2', '2', 'march', '1', '9', '2', '5', ',', 'was', 'an', 'administrative', 'division', 'of', 'nazi', 'germany', 'from', '1', '9', '3', '3', 'to', '1', '9', '4', '5', 'comprising', 'the', 'prussian', 'province', 'of', 'pomerania', '.'], ['thompson', 'also', 'made', 'at', 'least', 'one', 'threat', 'under', 'his', 'own', 'name', ',', 'under', 'the', 'pretense', 'that', 'his', 'ex-girlfriend', 'was', 'framing', 'him', '.'], ['he', 'joined', 'the', 'staff', 'of', 'the', 'philadelphia', 'general', 'hospital', 'in', '1', '8', '8', '7', '.'], ['although', 'this', 'series', 'was', 'made', 'after', 'the', 'corporate', 'change', 'in', 'winter', '1', '9', '9', '7', '(', 'as', 'evidenced', 'by', 'the', 'then-new', 'bbc', 'logo', 'at', 'the', 'end', 'of', 'each', 'episode', ')', ',', 'it', 'was', 'not', 'broadcast', 'until', '1', '3', 'january', '1', '9', '9', '8', '.'], ['the', 'table', 'below', 'lists', 'the', 'pre-', '1', '9', '4', '0', 'boats', 'with', 'their', 'original', 'names', 'are', '.'], ['immediately', 'after', 'reentering', 'pope', 'county', ',', 'highway', '1', '6', 'intersects', 'highway', '2', '7', ',', 'forming', 'a', 'concurrency', 'south', 'for', ',', 'where', 'highway', '1', '6', 'turns', 'east', 'to', 'enter', 'van', 'buren', 'county', '.'], ['the', 'uv-laser', 'is', 'being', 'developed', 'by', 'the', 'laser', 'zentrum', 'hannover', '.'], ['the', 'drum', 'beater', 'dhale', 'banjaras', 'who', 'are', 'found', 'in', 'pusad', ',', 'unlike', 'other', 'banjaras', ',', 'do', 'not', 'have', 'rajput', 'sounding', 'names', 'as', 'they', 'are', 'like', 'native', 'tribes', 'of', 'maharashtra', 'who', 'were', 'accepted', 'later', 'among', 'banjaras', 'as', 'service', 'providers', '.'], ['the', 'activation', 'of', 'receptors', 'by', 'nicotine', 'modifies', 'the', 'state', 'of', 'neurons', 'through', 'two', 'main', 'mechanisms', '.'], ['within', 'months', 'of', 'the', 'january', '1', '9', '8', '8', 'decision', 'in', '``', 'westfall', \"''\", ',', 'congress', 'had', 'started', 'drafting', 'a', 'new', 'law', 'to', 'address', 'the', 'decision', '.'], ['lydia', 'gives', 'in', 'to', 'the', 'relationship', 'with', 'sebastian', ',', 'but', 'makes', 'it', 'clear', 'to', 'him', 'that', 'it', 'has', 'to', 'be', 'a', 'secret', 'until', 'she', 'finishes', 'hannes', \"'\", 'case', '.'], ['later', 'in', 'life', 'he', 'revealed', 'to', 'this', 'family', 'that', 'he', 'had', 'been', 'sexually', 'abused', 'by', 'his', 'brother-in-law', 'when', 'he', 'was', 'young', '.'], ['a', 'post', 'office', 'called', 'rushing', 'was', 'established', 'in', '1', '8', '8', '2', ',', 'and', 'remained', 'in', 'operation', 'until', '1', '9', '7', '1', '.'], ['lomba', 'became', 'the', 'number', 'one', 'choice', 'on', 'inter', \"'s\", 'goal', 'in', '2', '0', '1', '8', 'after', 'danilo', 'fernandes', \"'\", 'injuries', '.'], ['she', 'finished', 'up', 'filming', 'in', '2', '0', '1', '0', 'for', 'ucla', 'research', 'center', 'in', 'partnership', 'with', 'nokia', 'for', 'an', 'interactive', 'music', 'video', 'and', 'short', 'film', 'application', 'for', 'their', 'new', 'phone', 'app', '.'], ['at', 'most', 'sections', ',', 'the', 'federal', 'route', '3', '4', '1', 'was', 'built', 'under', 'the', 'jkr', 'r', '5', 'road', 'standard', ',', 'allowing', 'maximum', 'speed', 'limit', 'of', 'up', 'to', '9', '0', 'km/h', '.'], ['el', 'húsar', 'de', 'la', 'muerte', '(', ')', 'is', 'a', '1', '9', '2', '5', 'chilean', 'silent', 'film', 'movie', '.'], ['it', 'reaches', 'a', 'height', 'of', '1', ',', '1', '0', '7', 'm', '.'], ['in', 'addition', ',', 'ex-presidents', 'are', '``', 'ex', 'officio', \"''\", 'senators', 'for', 'life', '.'], ['harold', 'was', 'an', 'aspiring', 'young', 'writer', ',', 'agonizing', 'over', 'how', 'to', 'best', 'use', 'his', 'life', 'and', 'looking', 'for', 'a', 'purpose', '.'], ['in', 'azerbaijan', ',', 'koroğlu', 'is', 'believed', 'to', 'be', 'the', 'son', 'of', 'a', 'mother', 'who', 'conceived', 'by', 'the', 'light', 'and', 'who', 'killed', 'by', 'burying', 'alive', '.'], ['among', 'his', 'scientific', 'contributions', ',', 'it', 'is', 'worth', 'to', 'mention', 'his', 'dedication', 'to', 'the', 'development', 'of', 'the', 'critical', 'communicative', 'methodology', ',', 'as', 'well', 'as', 'his', 'research', 'and', 'social', 'action', 'with', 'the', 'romani', 'people', '.'], ['this', 'table', 'lists', 'the', 'depots', 'connected', 'to', 'the', 'line', 'between', 'the', 'station', 'and', 'christian', 'street', 'junction', 'just', 'east', 'of', ':'], ['in', '2', '0', '0', '5', 'rye', 'was', 'a', 'resident', 'at', 'the', 'skowhegan', 'school', 'of', 'painting', 'and', 'sculpture', 'in', 'maine', '.'], ['tisch', 'has', 'served', 'in', 'various', 'civic', 'service', 'positions', ',', 'including', 'at', 'the', 'washington', 'institute', 'for', 'near', 'east', 'policy', ',', 'the', 'uja-federation', 'of', 'new', 'york', ',', 'the', 'leadership', 'enterprise', 'for', 'a', 'diverse', 'america', ',', 'the', 'united', 'states', 'holocaust', 'memorial', 'museum', ',', 'and', 'the', 'citizens', 'budget', 'commission', '.'], ['also', 'the', 'new', 'apostolic', 'church', 'has', 'a', 'parish', 'in', 'schwaigern', '.'], ['ólafía', 'was', 'born', 'in', 'hafnafjördur', ',', 'a', 'suburb', 'of', 'reykjavík', ',', 'on', '2', '8', 'july', '1', '9', '2', '4', '.'], ['since', 'its', 'original', 'conception', 'in', '1', '9', '6', '1', ',', 'the', 'armed', 'forces', 'expeditionary', 'medal', 'has', 'been', 'awarded', 'for', 'united', 'states', 'participation', 'in', 'over', 'forty', 'five', 'designated', 'military', 'campaigns', '.'], ['the', 'township', 'is', 'one', 'of', '1', '1', 'municipalities', '(', 'of', 'the', '5', '6', '5', ')', 'statewide', 'that', 'operate', 'under', 'a', 'special', 'charter', '.'], ['he', 'had', 'warned', 'the', 'state', 'would', 'lose', 'all', 'clout', 'in', 'washington', 'if', 'the', 'state', \"'s\", 'two', 'us', 'senators', ',', 'both', 'of', 'whom', 'are', 'over', '8', '0', 'years', 'old', ',', 'leave', 'office', 'within', 'a', 'short', 'time', 'of', 'each', 'other', '.'], ['she', 'won', 'the', 'bronze', 'medal', 'in', 'the', 'downhill', 'at', 'the', '1', '9', '8', '8', 'world', 'junior', 'championships', 'and', 'also', 'competed', 'in', 'four', 'other', 'events', ',', 'in', 'addition', 'to', 'placing', 'tenth', 'in', 'the', 'downhill', 'at', 'the', '1', '9', '8', '9', 'world', 'junior', 'championships', '.'], ['soon', 'after', ',', 'bruno', 'sets', 'up', 'a', 'champagne', 'trading', 'business', 'with', 'the', 'german', 'army', 'and', 'is', 'spotted', 'by', 'charles', 'martin', ',', 'a', 'loyal', 'worker', 'who', 'has', 'been', 'with', 'de', 'lancels', 'for', 'decades', '.'], ['but', 'as', 'more', 'of', 'holland', 'and', 'westfriesland', 'were', 'developed', 'and', 'became', 'more', 'habitable', ',', 'the', 'importance', 'of', 'wieringen', 'decreased', '.'], ['without', 'the', 'backing', 'of', 'a', 'studio', ',', 'almodóvar', 'was', 'forced', 'to', 'make', 'extensive', 'use', 'of', 'location', 'shooting', '.'], ['while', 'they', 'call', 'one', 'another', '``', 'dyke', 'and', 'fats', \"''\", 'and', 'engage', 'in', 'stereotypical', 'behavior', ',', 'they', 'wo', \"n't\", 'tolerate', 'that', 'anyone', 'else', ',', 'including', 'superior', 'officers', ',', 'call', 'them', 'by', 'their', 'nicknames', '.'], ['smoke', 'from', 'the', 'fire', 'was', 'reported', 'to', 'cause', 'discomfort', 'to', 'residents', 'as', 'far', 'as', 'bytown', 'and', 'perth', '.'], ['after', 'they', 'returned', 'to', 'the', 'u.s.', 'in', '1', '9', '5', '1', ',', 'dmytryk', 'was', 'imprisoned', 'for', '6', 'months', 'for', 'contempt', 'of', 'congress', '.'], ['they', 'have', 'also', 'appeared', 'in', '``', 'sense', '8', '``', ',', 'the', 'science', 'fiction', 'television', 'series', 'created', 'by', 'the', 'production', 'team', 'of', 'transgender', 'producers', 'lana', 'and', 'lilly', 'wachowski', '.'], ['recruitment', 'time', 'varies', 'between', '6', '0', 'and', '3', '0', '0', 'seconds', ',', 'with', 'all', 'castes', 'taking', 'part', 'in', 'a', 'raid', '.'], ['furthermore', ',', 'boron', 'nitride', 'has', 'a', 'high', 'thermal', 'conductivity', '.'], ['leaf', 'stalks', '2', 'to', '4', 'cm', 'long', ',', 'with', 'a', 'grooved', 'channel', 'on', 'the', 'upper', 'side', '.'], ['it', 'could', 'carry', 'a', 'total', 'of', '8', 'tons', 'of', 'coal', 'as', 'fuel', 'and', 'could', 'dive', 'to', 'a', 'depth', 'of', '1', '6', '0', 'feet', '.'], ['the', 'home', 'matches', 'of', 'the', '``', 'pomegranate', 'coloured', \"''\", 'team', 'are', 'played', 'at', 'san', 'costanzo', ',', 'a', 'sports', 'field', 'in', 'the', 'town', '.'], ['brittany', 'ferries', 'plans', 'to', 'take', 'delivery', 'of', '``', 'salamanca', \"''\", 'in', '2', '0', '2', '2', ',', 'followed', 'by', '``', 'santoña', \"''\", 'in', '2', '0', '2', '3', '.'], ['about', '5', '0', 'kilometer', 'farther', 'to', 'the', 'east', 'the', 'a', '3', '0', 'ends', 'in', 'bad', 'oeynhausen', '.'], ['hunstanton', 'has', 'a', 'mayor', 'and', 'a', '1', '7', '-member', 'town', 'council', 'that', 'meets', 'twice', 'a', 'month', '.'], ['however', ',', 'unlike', 'these', 'newer', 'airports', ',', 'it', 'incorporates', '``', 'natural', \"''\", 'features', 'and', '``', 'warm', \"''\", 'tone', 'extensively', 'to', 'balance', 'the', 'sterile', 'feel', 'of', 'glass', 'and', 'steel', '.'], ['when', 'developing', 'and/or', 'troubleshooting', 'the', 'pci', 'bus', ',', 'examination', 'of', 'hardware', 'signals', 'can', 'be', 'very', 'important', '.'], ['took', 'over', 'ownership', 'of', 'the', 'british', 'film-focused', 'website', 'lovebritishfilm.com', '.'], ['south', 'orange', 'is', 'governed', 'under', 'a', 'special', 'charter', 'granted', 'by', 'the', 'new', 'jersey', 'legislature', '.'], ['[', '4', ']', 'the', 'federation', 'of', 'sports', 'at', 'altitude', '(', 'fsa', ')', 'was', 'replaced', 'by', 'the', 'international', 'sky', 'running', 'federation', 'in', '2', '0', '0', '8', '.'], ['his', 'beloved', 'fiancée', 'kate', 'was', 'shot', 'dead', '(', 'or', 'was', 'she', '?'], ['however', 'it', 'was', 'not', 'until', 'the', 'next', 'year', 'that', 'itg', 'created', 'the', 'first', 'intraday', 'dark', 'pool', '``', 'posit', \"''\", ',', 'both', 'allowed', 'large', 'trades', 'to', 'be', 'executed', 'anonymously', 'which', 'was', 'attractive', 'to', 'sellers', 'of', 'large', 'blocks', 'of', 'shares', '.'], ['cross', 'county', 'mall', 'is', 'a', 'shopping', 'mall', 'in', 'mattoon', ',', 'illinois', ',', 'u.s', '.'], ['she', 'is', 'known', 'for', 'her', '2', '0', '1', '2', 'single', '``', 'dream', \"''\", ',', 'which', 'received', 'airplay', 'on', 'mtv', ',', 'mtvu', ',', 'mtv.com', ',', 'and', 'vevo', '.'], ['the', 'language', 'is', '``', 'adelbodnertütsch', \"''\", ',', 'which', 'belongs', 'to', 'the', 'berner', 'oberland', 'dialects', 'with', 'some', 'loans', 'from', 'valais', 'dialects', 'and', 'belongs', 'to', 'the', 'highest', 'alemannic', 'language', 'group', '.'], ['the', 'radios', 'usually', 'have', 'presets', ',', 'like', 'a', 'car', \"'s\", 'broadcast', 'radio', ',', 'that', 'allow', 'some', 'channels', 'to', 'be', 'configured', 'ahead', 'of', 'need', '.'], ['ten', 'days', 'later', 'after', 'proof', \"'s\", 'death', ',', 'swift', 'was', 'arrested', 'in', 'novi', ',', 'michigan', ',', 'after', 'failing', 'to', 'appear', 'in', 'court', '.'], ['following', 'his', 'release', ',', 'work', 'commenced', 'on', 'the', 'album', '.'], ['people', 'who', 'have', 'an', 'adverse', 'reaction', 'to', 'adsorbed', 'tetanus', 'toxoid', 'may', 'be', 'given', 'the', 'simple', 'vaccine', 'when', 'the', 'time', 'comes', 'for', 'a', 'booster', '.'], ['one', 'notable', 'departure', 'from', 'operatic', 'convention', 'was', 'to', 'make', 'the', 'part', 'of', 'lear', \"'s\", 'fool', 'a', 'speaking', 'role', ',', 'rather', 'than', 'a', 'sung', 'role', '.']]\n", "\u001b[1mNumber of sentences in train set:\u001b[0m 10268\n", "\u001b[1mThe train set contains the following sentences:\u001b[0m [['dr.', 'tonie', 'mcdonald', 'is', 'a', 'life', 'long', 'levittown', 'resident', 'who', 'taught', 'and', 'rose', 'through', 'the', 'ranks', 'of', 'the', 'district', 'she', 'now', 'leads', '.'], ['he', 'received', 'his', 'ba', 'in', 'chemistry', ',', 'magna', 'cum', 'laude', ',', 'from', 'amherst', 'college', 'in', '1', '9', '8', '1', '.'], ['the', 'growth', 'of', 'twin', 'cities', 'international', 'airport', 'during', 'the', 'last', 'half', 'of', 'the', 'twentieth', 'century', 'along', 'with', 'additions', 'of', 'land', 'to', 'the', 'fort', 'snelling', 'compound', 'meant', 'further', 'reductions', '.'], ['that', 'evening', 'he', 'saw', 'the', 'even', 'stranger', 'platypus', 'and', 'noticed', 'that', 'its', 'bill', 'was', 'soft', ',', 'unlike', 'the', 'preserved', 'specimens', 'he', 'had', 'seen', '.'], ['the', 'church', 'was', 'built', 'in', '1', '8', '8', '9', 'just', 'north', 'of', 'the', 'unique', 'schoolhouse', '.'], ['her', 'new', 'novel', '``', 'riders', \"''\", 'is', 'expected', 'for', 'a', 'release', 'in', '2', '0', '1', '6', '.'], ['his', 'innovations', 'in', 'this', 'area', 'included', 'the', 'first', 'modern', 'two-color', 'offset', 'and', 'the', 'first', 'process', 'for', 'four-color', 'offsets', '.'], ['protomeroleuca', 'is', 'a', 'monotypic', 'genus', 'of', 'moths', 'of', 'the', 'family', 'noctuidae', '.'], ['the', 'building', 'houses', 'the', 'office', 'of', 'chairman', 'and', 'all', 'top', 'directors', 'of', 'tata', 'sons', ',', 'the', 'holding', 'company', '.'], ['peter', 'adams', 'was', 'treated', 'and', 'released', 'from', 'the', 'hospital', 'on', 'august', '1', '6', ',', '2', '0', '1', '2', '.'], ['the', 'acm', 'uses', 'simulation', 'message', 'filtering', 'to', 'evaluates', 'the', 'content', 'of', 'a', 'message', 'received', 'from', 'the', 'confederation', '.'], ['the', 'judiciary', 'of', 'abia', 'state', 'consists', 'of', '1', '1', 'departments', 'and', 'also', 'a', 'judicial', 'service', 'commission', 'with', 'statutory', 'duties', 'which', 'includes', 'the', 'promotion', 'and', 'appointment', 'of', 'judicial', 'staffs', '.'], ['notable', 'people', 'connected', 'with', 'the', 'area', 'are', 'the', 'actor', 'john', 'thaw', 'who', 'lived', 'on', 'grove', 'park', 'road', 'for', 'many', 'years', 'and', 'british', 'army', 'field', 'marshal', 'bernard', 'montgomery', ',', '1', 'st', 'viscount', 'montgomery', 'of', 'alamein', 'who', 'lived', 'on', 'bolton', 'road', 'as', 'a', 'teenager', '.'], ['the', 'prizes', 'that', 'the', 'pbr', 'paid', 'out', 'in', 'australian', 'are', 'a', 'record', '$', '7', '5', '0', ',', '0', '0', '0', 'for', 'that', 'country', '.'], ['david', 'trent', 'johnston', '(', 'born', '2', '9', 'april', '1', '9', '7', '4', ')', ',', 'usually', 'known', 'as', 'trent', 'johnston', ',', 'is', 'an', 'irish-australian', 'former', 'cricketer', '.'], ['underwater', 'foils', 'can', 'become', 'more', 'specialized', ',', 'starting', 'with', 'a', 'higher-aspect', 'ratio', 'fin', 'keel', 'with', 'hydrodynamically', 'efficient', 'bulbs', 'for', 'ballast', '.'], ['to', 'disguise', 'the', 'smell', 'of', 'the', 'burning', 'flesh', 'of', 'the', 'six', 'dissected', 'bodies', 'placed', 'upon', 'this', 'pyre', ',', 'nilsen', 'crowned', 'the', 'bonfire', 'with', 'an', 'old', 'car', 'tyre', '.'], [\"'\", \"''\", ',', 'however', 'the', 'term', '``', 'nobility', \"''\", 'today', 'is', 'little', 'used', 'in', 'this', 'context', ',', 'as', 'in', 'common', 'parlance', 'in', 'britain', 'the', 'term', 'is', 'widely', 'associated', 'with', 'the', 'peerage', '.'], ['he', 'was', 'born', 'in', 'kingston', ',', 'pennsylvania', ',', 'in', '1', '9', '6', '3', '.'], ['labour', 'has', 'never', 'had', 'a', 'policy', 'of', 'republicanism', ';', 'however', ',', 'at', 'least', 'four', 'party', 'leaders', 'have', 'been', 'republicans', ':', 'party', 'founder', 'keir', 'hardie', ',', 'george', 'lansbury', ',', 'michael', 'foot', ',', 'and', 'jeremy', 'corbyn', ',', 'leader', 'from', '2', '0', '1', '5', 'to', '2', '0', '2', '0', '.'], ['in', 'cebuano', 'this', 'degree', 'can', 'be', 'expressed', 'by', 'a', 'prefix', ',', '``', 'pinaka-', \"''\", 'or', 'by', 'the', 'use', 'of', 'the', 'particle', '``', 'labi', \"''\", '(', 'most', ')', '.'], ['at', 'the', 'same', 'time', 'period', 'that', 'this', 'discovery', 'is', 'made', ',', 'hostess', 'is', 'not', 'that', 'far', 'away', 'from', 'putting', 'them', 'out', 'of', 'business', '(', 'and', 'was', 'itself', 'liquidated', 'and', 'bought', 'out', 'by', 'apollo', 'global', 'in', 'the', 'real', 'world', ')', '.'], ['when', 'pope', 'pius', 'ix', 'judged', 'that', 'the', 'time', 'was', 'right', 'to', 're-establish', 'the', 'catholic', 'hierarchy', 'in', 'wales', 'and', 'england', 'in', '1', '8', '5', '0', '.'], ['the', 'proportion', 'of', 'troops', 'that', 'were', 'maghrebis', 'reached', '6', '9', '%', 'for', 'the', 'regiment', ',', '7', '4', '%', 'for', 'the', 'battalion', ',', '7', '9', '%', 'for', 'the', 'company', 'fusiliers-voltigeurs', ',', '5', '2', '%', 'for', 'the', 'anti-tank', 'company', 'and', '3', '6', '%', 'for', 'the', 'infantry', 'cannon', 'company', '.'], ['story', 'was', 'the', 'first', 'woman', 'employed', 'as', 'an', 'information', 'officer', 'of', 'a', 'department', 'of', 'the', 'interior', 'bureau', '.'], ['she', 'then', 'goes', 'to', 'another', 'room', ',', 'leaving', 'her', 'boyfriend', 'in', 'that', 'room', '.'], ['on', 'leaving', 'the', 'stage', ',', 'susanna', 'opened', 'the', 'first', '``', 'female', 'academy', \"''\", 'in', 'boston', 'in', '1', '7', '9', '7', '``', 'mrs', 'rowson', \"'s\", 'academy', 'for', 'young', 'ladies', '.'], ['veronica', 'vasquez', 'and', 'margo', 'reymundo', ',', 'who', 'played', 'selena', \"'s\", 'mother', ',', 'were', 'given', 'critical', 'acclaim', 'for', 'their', 'roles', '.'], ['at', 'her', 'deportation', 'hearing', 'on', 'october', '2', '7', ',', 'goldman', 'refused', 'to', 'answer', 'questions', 'about', 'her', 'beliefs', ',', 'on', 'the', 'grounds', 'that', 'her', 'american', 'citizenship', 'invalidated', 'any', 'attempt', 'to', 'deport', 'her', 'under', 'the', 'anarchist', 'exclusion', 'act', ',', 'which', 'could', 'be', 'enforced', 'only', 'against', 'non-citizens', 'of', 'the', 'us', '.'], ['when', 'this', 'brigade', 'circled', 'around', 'to', 'cut', 'the', 'tulkarm', 'to', 'nablus', 'road', 'from', 'the', 'north', ',', 'they', 'captured', 'over', '2', ',', '0', '0', '0', 'prisoners', 'and', 'some', 'guns', '.'], ['the', 'name', 'of', 'the', 'operation', ',', '``', 'cui', 'bono', \"''\", ',', 'means', ',', 'in', 'latin', ',', '``', 'to', 'whose', 'benefit', '?', \"''\"], ['``', 'sexy', 'sexy', 'sexy', \"''\", 'peaked', 'at', 'number', '5', '0', 'and', 'stayed', 'on', 'the', 'charts', 'for', 'a', 'total', 'of', '8', 'weeks', '.'], ['once', 'you', 'add', 'ray', 'guns', 'and', 'power', 'armor', 'to', 'the', 'game', ',', 'you', 'have', 'a', 'fundamentally', 'different', 'experience', '.', \"''\"], ['sometimes', 'the', 'body', 'is', 'burned', 'and', 'the', 'ashes', 'are', \"'returned\", \"'\", 'to', 'the', 'ocean', '.'], ['there', 'are', 'three', 'floors', 'with', 'a', 'single', 'large', 'room', 'on', 'each', 'floor', '.'], ['the', 'gijón', 'area', 'was', 'marked', 'and', 'singled', 'out', 'as', 'one', 'of', 'the', 'pollution', 'hotspots', 'in', 'western', 'europe', 'in', 'a', '2', '0', '1', '5', 'report', 'from', 'the', 'international', 'institute', 'for', 'applied', 'science', 'systems', ',', 'where', 'predictions', 'for', '2', '0', '3', '0', 'conditions', 'were', 'made', '.'], ['he', 'obtained', 'his', 'phd', 'in', 'mathematics', 'and', 'physics', 'at', 'leiden', 'university', 'in', '1', '9', '6', '5', 'with', 'a', 'dissertation', 'titled', ':', '``', 'the', 'hole-equivalence', 'principle', ',', 'the', 'van', 'vleck', 'relation', 'and', 'the', 'application', 'to', 'the', 'theory', 'of', 'd-ions', 'in', 'ligand', 'fields', \"''\", '.'], ['livingston', 'is', 'also', 'a', 'member', 'of', 'the', 'board', 'of', 'the', 'international', 'foundation', 'for', 'electoral', 'systems', ',', 'a', 'non-profit', 'involved', 'in', 'international', 'elections', ',', 'and', 'he', 'is', 'a', 'knight', 'of', 'the', 'sovereign', 'military', 'order', 'of', 'malta', '.'], ['with', 'six', 'goals', 'at', 'switzerland', \"'s\", 'home', 'tournament', 'in', '1', '9', '5', '4', ',', 'josef', 'hügi', 'won', 'the', 'shared', 'silver', 'boot', '-', 'the', 'only', 'individual', 'fifa', 'world', 'cup', 'award', 'ever', 'received', 'by', 'a', 'swiss', 'player', '.'], ['off-specular', 'reflectometry', 'gives', 'rise', 'to', 'diffuse', 'scattering', 'and', 'involves', 'momentum', 'transfer', 'within', 'the', 'layer', ',', 'and', 'is', 'used', 'to', 'determine', 'lateral', 'correlations', 'within', 'the', 'layers', ',', 'such', 'as', 'those', 'arising', 'from', 'magnetic', 'domains', 'or', 'in-plane', 'correlated', 'roughness', '.'], ['the', 'event', 'consists', 'of', 'two', 'rounds', ':', 'a', 'qualifier', 'and', 'a', 'final', '.'], ['his', 'daughter', 'madeleine-charlotte', 'married', 'louis-rené', 'chaussegros', 'de', 'léry', ',', 'who', 'took', 'over', 'the', 'post', 'of', 'overseer', 'of', 'highways', 'after', 'his', 'father-in-law', \"'s\", 'retirement', '.'], ['dvd', 'edition', 'of', '``', 'planes', ',', 'trains', ',', 'and', 'automobiles', \"''\", 'includes', 'a', 'mono', 'spanish', 'dub', 'and', 'english', ',', 'french', ',', 'and', 'spanish', 'subtitles', '.'], ['in', 'addition', ',', 'compared', 'to', 'the', 'shakespeare', 'original', ',', 'the', 'parts', 'of', 'kent', 'and', 'edmund', ',', 'for', 'example', ',', 'have', 'been', 'greatly', 'reduced', '.'], ['candidates', 'for', 'a', 'new', 'drug', 'to', 'treat', 'a', 'disease', 'might', ',', 'theoretically', ',', 'include', 'from', '5', ',', '0', '0', '0', 'to', '1', '0', ',', '0', '0', '0', 'chemical', 'compounds', '.'], ['nationwide', ',', 'there', 'are', 'approximately', '2', '3', ',', '4', '0', '0', 'female', 'police', 'officers', 'and', '1', '3', ',', '0', '0', '0', 'female', 'civilian', 'staff', '.'], ['simon', ',', 'along', 'with', 'keith', 'gregory', ',', 'paul', 'dorrington', '(', 'both', 'ex-wedding', 'present', ')', 'and', 'jaqui', 'cohen', '(', 'ex-dustdevils', ')', ',', 'started', 'a', 'new', 'group', 'called', 'cha', 'cha', 'cohen', 'in', '1', '9', '9', '4', '.'], ['she', 'is', 'also', 'the', 'daughter', 'of', 'popular', 'super', 'couple', 'jack', 'deveraux', 'and', 'jennifer', 'horton', '.'], ['the', 'network', 'was', 'originally', 'based', 'in', 'indianapolis', 'and', 'held', 'rights', 'to', '2', '5', 'home', 'games', 'of', 'the', 'indiana', 'pacers', '.'], ['she', 'was', 'used', 'by', 'the', 'union', 'navy', 'as', 'a', 'gunboat', 'in', 'support', 'of', 'the', 'union', 'navy', 'blockade', 'of', 'confederate', 'waterways', '.'], ['john', 'c.', 'olmsted', 'visited', 'seattle', 'in', 'october', '1', '9', '0', '6', 'and', 'saw', 'the', 'dominant', 'form', 'of', 'mount', 'rainier', 'toward', 'the', 'southeast', '.'], ['the', 'opening', 'at', 'the', 'top', 'of', 'the', 'turtle', 'base', 'accepts', 'the', 'base', 'of', 'c-stand', 'upright', 'or', 'a', 'junior', 'pin', '.'], ['this', 'leads', ',', 'for', 'example', ',', 'to', 'the', 'regulation', 'of', 'the', 'activity', 'of', 'some', 'genes', 'or', 'the', 'release', 'of', 'neurotransmitters', '.'], ['like', 'all', 'enterprises', 'of', 'its', 'kind', ',', 'the', 'puch', 'production', 'plants', 'had', 'to', 'change', 'to', 'arms', 'production', 'during', 'world', 'war', 'ii', '.'], ['the', 'pulpit', 'is', 'from', 'about', '1', '6', '0', '0', '.'], ['three', 'separate', 'petitions', 'were', 'sent', 'to', 'the', 'oregon', 'supreme', 'court', 'requesting', 'that', 'they', 'rehear', 'the', 'case', '.'], ['he', 'later', 'played', 'college', 'baseball', 'for', 'the', 'university', 'of', 'arizona', '.'], ['in', 'this', 'game', ',', 'each', 'player', 'must', 'allocate', 'troops', 'to', 'the', 'left', 'wing', ',', 'centre', 'and', 'right', 'wing', '.'], ['the', 'eastern', 'whipbird', 'was', 'mistakenly', 'described', 'by', 'john', 'latham', 'as', 'two', 'separate', 'species', 'in', '1', '8', '0', '1', 'from', 'early', 'colonial', 'illustrations', ',', 'first', 'as', 'the', 'white-cheeked', 'crow', '(', '``', 'corvus', 'olivaceus', \"''\", ')', 'and', 'as', 'the', 'coachwhip', 'flycatcher', '(', '``', 'muscicapa', 'crepitans', \"''\", ')', '.'], ['the', 'little', 'house', ',', 'called', 'the', 'fo', \"'\", \"c'sle\", 'by', 'henry', 'beston', ',', 'was', '2', '1', 'ft.', 'long', 'by', '1', '6', 'ft.', 'wide', 'and', 'consisted', 'of', 'two', 'rooms', ',', 'a', 'main', 'room', 'and', 'a', 'bedroom', '.'], ['on', '2', '0', 'june', '1', '9', '9', '6', ',', 'the', 'turkish', 'federation', 'of', 'traditional', 'sport', 'branches', '(', 'geleneksel', 'spor', 'dallari', 'federasyonu', ')', 'was', 'founded', 'by', 'the', 'turkish', 'ministry', '.'], ['first', ',', 'when', 'an', 'item', 'is', 'inserted', 'or', 'deleted', 'at', 'a', 'node', 'of', 'the', 'catalog', 'graph', ',', 'it', 'must', 'be', 'placed', 'within', 'the', 'augmented', 'list', 'associated', 'with', 'that', 'node', ',', 'and', 'may', 'cause', 'changes', 'to', 'propagate', 'to', 'other', 'nodes', 'of', 'the', 'catalog', 'graph', '.'], ['the', 'double-axe', ',', 'also', 'known', 'as', 'a', 'labrys', ',', 'was', 'only', 'ever', 'depicted', 'with', 'a', 'woman', 'carrying', 'it', '.'], ['lyrics', 'of', 'the', 'song', 'was', 'penned', 'by', 'priyo', 'chatterjee', 'and', 'composed', 'by', 'savvy', 'gupta', '.'], ['she', 'also', 'coached', 'and', 'worked', 'with', 'israel', \"'s\", 'national', 'gymnastics', 'team', 'well', 'into', 'the', '1', '9', '9', '0', 's', '.'], ['his', 'family', 'then', 'moved', 'to', 'moscow', 'due', 'to', 'his', 'father', 'yona', 'pollack', 'being', 'an', 'officer', 'in', 'the', 'russian', 'army', '.'], ['before', 'the', 'revolution', 'and', 'the', 'advent', 'of', 'feminism', 'in', 'france', ',', 'women', \"'s\", 'roles', 'in', 'society', 'consisted', 'of', 'providing', 'heirs', 'for', 'their', 'husbands', 'and', 'tending', 'to', 'household', 'duties', '.'], ['she', 'will', 'pose', 'as', 'an', 'independent', 'for', 'the', 'rest', 'of', 'her', 'term', 'as', 'a', 'senator', ',', 'until', 'the', 'inauguration', 'of', 'the', 'lxiv', 'legislature', 'of', 'the', 'mexican', 'congress', ',', 'where', 'she', 'will', 'represent', 'morena', '.'], ['a', 'chiral', 'guanidinium', 'catalyst', 'was', 'found', 'to', 'successfully', 'promote', 'the', 'reaction', 'near', 'room', 'temperature', 'with', 'high', 'enantioselectivity', '.'], ['he', 'has', 'also', 'appeared', 'on', 'season', 'four', 'of', 'aaa', \"'s\", 'american', 'project', '``', 'lucha', 'underground', \"''\", 'as', 'the', 'white', 'rabbit', ',', 'the', 'leader', 'of', 'paul', 'london', \"'s\", 'rabbit', 'tribe', 'stable', '.'], ['the', 'soviets', 'used', 'about', '1', ',', '0', '0', '0', 't-', '2', '6', 'tanks', 'for', 'their', 'combat', 'operations', 'against', 'the', 'iranian', 'forces', '.'], ['the', 'bisons', 'left', 'the', 'national', 'league', 'after', 'the', '1', '8', '8', '5', 'season', '.'], ['swearengin', 'was', 'the', 'democratic', 'nominee', 'for', 'senate', 'in', 'west', 'virginia', \"'s\", '2', '0', '2', '0', 'election', ',', 'losing', 'to', 'the', 'incumbent', ',', 'shelley', 'moore', 'capito', ',', 'by', 'more', 'than', '4', '0', 'percentage', 'points', '.'], ['it', 'started', 'on', 'july', '1', '2', 'and', 'ended', 'on', 'september', '8', ',', '1', '9', '8', '7', '.'], ['it', 'had', 'been', 'a', 'rainy', 'day', 'in', 'philadelphia', ',', 'which', 'water-logged', 'the', 'aging', 'turf', 'at', 'veterans', 'stadium', ',', 'making', 'for', 'particularly', 'slippery', 'conditions', '.'], ['gwoza', 'is', 'a', 'local', 'government', 'area', 'of', 'borno', 'state', ',', 'nigeria', '.'], ['he', 'worked', 'for', 'nwsc', 'for', '2', '0', 'years', ',', 'when', 'an', 'advertisement', 'for', 'uegcl', \"'s\", 'chief', 'executive', 'officer', 'appeared', 'in', 'a', 'newspaper', '.'], ['philipps', \"'\", 'writing', 'on', 'wild', 'horse', 'management', 'has', 'faced', 'criticism', 'as', 'being', 'based', 'on', 'unsound', 'science', '.'], ['it', 'uses', 'a', 'platform-independent', 'api', 'and', 'currently', 'supports', 'windows', ',', 'linux', 'and', 'freebsd', '.'], ['``', 'i', 'shall', 'uphold', 'the', 'eternal', 'need', 'for', 'education', 'that', 'imbues', 'public', 'administrators', 'with', 'traditions', 'of', 'democratic', 'governance', '.'], ['he', 'scored', 'a', 'goal', 'in', 'the', 'last', 'minute', 'against', 'estudiantes', 'to', 'finalize', 'the', '3', '-', '3', 'in', 'avellaneda', '.'], ['treffry', 'spent', 'six', 'years', 'trying', 'to', 'overcome', 'public', 'opposition', 'to', 'the', 'tramway', 'and', 'was', 'forced', 'to', 'modify', 'his', 'intended', 'route', '.'], ['in', '1', '9', '6', '1', ',', 'he', 'earned', 'his', 'bachelor', 'of', 'science', 'in', 'applied', 'mathematics', 'and', 'engineering', 'physics', 'at', 'the', 'university', 'of', 'wisconsin', ',', 'madison', '.'], ['dario', 'reveals', 'to', 'her', 'that', 'he', 'is', 'no', 'longer', 'dario', 'but', 'a', 'different', 'entity', '.'], ['in', 'september', '1', '9', '2', '2', ',', 'parma', \"'s\", 'committee', 'admitted', 'two', 'projects', 'for', 'consideration', ':', 'one', 'by', 'atanasio', 'soldati', 'and', 'one', 'by', 'riccardo', 'bartolomasi', ',', 'both', 'architects', 'working', 'in', 'parma', '.'], ['the', 'house', 'was', 'designed', 'in', 'the', 'italianate', 'architectural', 'style', '.'], ['over', 'time', ',', 'he', 'ran', 'off', 'a', 'tally', 'of', 'two', 'reconnaissance', 'planes', 'and', 'five', 'fighters', 'destroyed', ',', 'and', 'another', 'fighter', 'driven', 'down', 'out', 'of', 'control', 'by', '2', '2', 'september', '.'], ['arabs', 'led', 'by', 'suhail', 'b.', 'abdi', 'and', 'hakam', 'al', 'taghilbi', 'defeated', 'an', 'indian', 'army', 'in', 'the', 'battle', 'of', 'rasil', 'in', '6', '4', '4', 'ad', 'at', 'the', 'indian', 'ocean', 'sea', 'coast', ',', 'then', 'reached', 'the', 'indus', 'river', '.'], ['while', 'conducting', 'operation', 'wonsan', 'against', 'sea', 'mines', 'in', 'wonsan', 'harbor', ',', 'a', 'squadron', 'of', 'us', 'navy', 'warships', 'was', 'attacked', 'by', 'korean', 'people', \"'s\", 'army', '(', 'kpa', ')', 'batteries', '.'], ['these', 'differences', 'as', 'well', 'as', 'reductions', 'of', 'the', 'gill', 'chamber', 'and', 'changes', 'in', 'the', 'nature', 'of', 'the', 'lower', 'jaw', 'are', 'hypothesized', 'to', 'indicate', 'a', 'reduced', 'reliance', 'on', 'suction', 'feeding', 'in', 'early', 'tetrapods', 'in', 'comparison', 'to', 'osteolepiform', 'fish', '.'], ['two', 'more', 'acclaimed', 'albums', ',', 'sex', '+', 'food', ',', 'and', 'the', 'instrumental', 'ic-', '0', '1', 'hanoi', ',', 'followed', 'in', '2', '0', '1', '8', '.'], ['this', 'problem', 'involves', 'two', 'central', 'intersection', 'points', ',', 'formula_', '9', '8', 'and', 'formula_', '1', '0', '1', ',', 'so', 'we', 'must', 'use', 'multiple', 'systems', '.'], ['the', 'same', 'day', ',', 'wal-mart', 'issued', 'an', 'exclusive', 'version', 'of', 'the', 'edition', 'that', 'included', 'a', 'digital', 'copy', 'of', 'the', 'film', '.'], ['the', 'project', 'consists', 'in', 'the', 'creation', 'of', 'a', 'library', ',', 'a', 'cultural', 'center', 'named', 'suñu', 'kër', ',', 'and', 'a', 'residency', 'program', 'for', 'artists', '.'], ['willem', 'cornelis', 'boeschoten', '(', 'born', '9', 'march', '1', '9', '5', '3', ')', 'is', 'a', 'retired', 'dutch', 'rower', 'who', 'won', 'a', 'bronze', 'medal', 'in', 'the', 'coxless', 'pairs', 'at', 'the', '1', '9', '7', '5', 'world', 'rowing', 'championships', ',', 'together', 'with', 'jan', 'van', 'der', 'horst', '.'], ['lydia', 'is', 'very', 'thankful', 'to', 'her', 'and', 'the', 'two', 'even', 'fearing', 'to', 'share', 'some', 'friendly', 'bound', ',', 'when', 'sebastian', 'warns', 'her', 'about', 'tanja', '.'], ['as', 'a', 'targeted', 'follow-up', 'system', ',', 'cineos', 'takes', 'advantage', 'of', 'the', 'combination', 'of', 'the', 'relatively', 'faint', 'limiting', 'magnitude', 'and', 'large', 'field', 'of', 'view', '(', 'probably', 'the', 'largest', 'in', 'the', 'world', 'for', 'this', 'activity', ')', '.'], ['from', 'the', 'appointment', 'of', 'the', 'marquess', 'of', 'londonderry', 'as', 'president', 'in', 'the', 'balfour', 'government', 'in', 'august', '1', '9', '0', '2', 'the', 'post', 'of', 'parliamentary', 'secretary', 'to', 'the', 'board', 'was', 'established', '.'], ['restoration', 'was', 'completed', 'in', '2', '0', '1', '9', 'and', 'she', 'is', 'now', 'available', 'to', 'the', 'public', 'to', 'walk', 'on', 'its', 'exterior', '.'], ['zhu', 'attended', 'the', 'changle', 'road', '3', 'rd', 'elementary', 'school', 'and', 'xiangli', 'middle', 'school', '.'], ['though', 'the', 'organization', 'claims', 'the', 'methods', 'are', 'grounded', 'in', 'good', 'neuroscience', ',', 'the', 'underlying', 'ideas', 'are', 'pseudoscience', '.'], ['nasi', 'tutug', 'oncom', 'or', 'sometimes', 'simply', 'called', 'tutug', 'oncom', ',', 'is', 'an', 'indonesian', 'style', 'rice', 'dish', ',', 'made', 'of', 'rice', 'mixed', 'with', 'oncom', 'fermented', 'beans', ',', 'originally', 'from', 'tasikmalaya', ',', 'west', 'java', '.'], ['in', '1', '9', '1', '8', ',', 'with', 'the', 'creation', 'of', 'the', 'state', 'of', 'slovenes', ',', 'croats', 'and', 'serbs', ',', 'prepeluh', 'rose', 'to', 'the', 'leadership', 'of', 'the', 'party', '.'], ['prior', 'to', 'the', '1', '8', '3', '0', 's', ',', 'a', 'majority', 'of', 'us', 'newspapers', 'were', 'aligned', 'with', 'a', 'political', 'party', 'or', 'platform', '.'], ['he', 'took', 'part', 'in', 'the', 'normandy', 'landings', 'and', 'served', 'on', 'the', 'staff', 'of', 'allied', 'naval', 'commander-in-chief', 'of', 'the', 'expeditionary', 'force', 'in', '1', '9', '4', '4', '.'], ['the', 'senior', 'class', 'of', '2', '0', '0', '0', 'was', 'responsible', 'for', 'three', 'state', 'titles', 'in', 'their', 'four', 'years', 'of', 'high', 'school', '.'], ['walker', 'played', 'at', 'prop', 'in', 'the', 'game', 'as', 'penrith', 'trailed', 'at', 'halftime', 'before', 'coming', 'back', 'in', 'the', 'second', 'half', 'to', 'win', 'their', 'first', 'premiership', 'in', 'a', 'tense', 'final', '1', '9', '-', '1', '2', 'at', 'the', 'sydney', 'football', 'stadium', '.'], ['ebcot', 'context', 'modelling', 'and', 'arithmetic', 'mq-coder', 'take', 'most', 'of', 'the', 'time', 'of', 'jpeg', '2', '0', '0', '0', 'codec', '.'], ['the', '1', '9', '9', '6', 'uci', 'road', 'world', 'championships', 'took', 'place', 'in', 'lugano', ',', 'switzerland', ',', 'between', 'october', '9', 'and', 'october', '1', '3', ',', '1', '9', '9', '6', '.'], ['serbian', 'kings', 'stefan', 'radoslav', 'and', 'stefan', 'vladislav', ',', 'who', 'were', 'saint', 'sava', \"'s\", 'nephews', ',', 'significantly', 'endowed', 'the', 'monastery', 'with', 'new', 'land', 'possessions', 'and', 'proceeds', '.'], ['its', 'rai', 'defended', 'it', 'with', 'a', 'large', 'rajput', 'army', ',', 'but', 'he', 'was', 'defeated', 'by', 'multani', 'who', 'became', 'the', 'governor', 'of', 'the', 'province', '.'], ['fields', 'as', 'senior', 'rabbi', 'in', '2', '0', '0', '3', '.'], ['the', 'kbdi', 'is', 'an', 'estimate', 'of', 'the', 'soil', 'moisture', 'deficit', ',', 'which', 'is', 'the', 'amount', 'of', 'water', 'necessary', 'to', 'bring', 'the', 'soil', 'moisture', 'to', 'its', 'full', 'capacity', '.'], ['the', 'age', 'of', 'capitalism', 'and', 'proletarian', 'socialism', 'was', 'over', ',', 'with', '``', 'german', 'socialism', \"''\", '(', 'national-socialism', ')', 'taking', 'over', '.'], ['it', 'now', 'houses', 'the', 'wilton', 'historical', 'society', \"'s\", 'wilton', 'farm', 'and', 'home', 'museum', '.'], ['recently', 'there', 'has', 'been', 'increasing', 'use', 'of', 'jetboats', 'in', 'the', 'form', 'of', 'rigid-hulled', 'inflatable', 'boats', 'and', 'as', 'luxury', 'yacht', 'tenders', '.'], ['prince', 'albert', 'had', 'agreed', 'to', 'the', 'bridge', 'being', 'named', 'after', 'him', 'as', 'early', 'as', '1', '8', '5', '3', '.'], ['he', 'shot', 'nekrasov', 'down', 'at', 'the', 'end', 'of', 'the', 'film', '.'], ['nanum', 'is', 'a', 'genus', 'of', 'bicosoecids', ',', 'a', 'small', 'group', 'of', 'unicellular', 'flagellates', ',', 'included', 'among', 'the', 'heterokonts', '.'], ['soon', 'after', 'darnley', \"'s\", 'death', ',', 'bothwell', 'and', 'mary', 'left', 'edinburgh', 'together', '.'], ['in', '2', '0', '1', '1', ',', 'the', 'aba', \"'s\", 'house', 'of', 'delegates', 'passed', 'an', 'anti-bullying', 'resolution', 'that', 'included', 'sexual', 'orientation', 'and', 'gender', 'identity', 'among', 'characteristics', 'that', 'should', 'be', 'protected', ',', 'along', 'with', 'race', ',', 'religion', ',', 'national', 'origin', ',', 'sex', ',', 'and', 'disability', '.'], ['she', 'was', 'married', 'to', 'alfred', 'raoul', ',', 'who', 'served', 'as', 'prime', 'minister', 'during', 'the', '1', '9', '6', '0', 's', ',', 'prior', 'to', 'the', 'latter', \"'s\", 'death', 'in', '1', '9', '9', '9', '.'], ['during', 'its', 'operation', ',', 'trains', 'would', 'disgorge', 'passengers', 'and', 'goods', 'here', 'for', 'transfer', 'to', 'the', '``', 'general', 'gordon', \"''\", 'paddle', 'steamer', '.'], ['he', 'sees', 'a', 'group', 'of', 'jewish', 'children', 'laughing', 'at', 'him', 'from', 'the', 'other', 'side', 'of', 'the', 'camp', ',', 'where', 'the', 'jewish', 'prisoners', 'are', 'being', 'kept', 'away', 'from', 'everyone', 'else', '.'], ['special', 'instructions', 'were', 'issued', 'to', 'the', 'different', 'ateliers', 'while', 'preparations', 'were', 'in', 'progress', ',', 'such', 'as', 'this', 'one', 'from', 'the', 'ball', 'of', '1', '8', '9', '9', ':'], ['in', 'the', 'aba', 'western', 'division', 'finals', ',', 'they', 'swept', 'the', 'previous', 'division', 'champion', ',', 'the', 'new', 'orleans', 'buccaneers', ',', 'in', 'four', 'games', '.'], ['on', 'one', 'hand', ',', 'the', 'movement', 'of', 'cations', 'causes', 'a', 'depolarization', 'of', 'the', 'plasma', 'membrane', '(', 'which', 'results', 'in', 'an', 'excitatory', 'postsynaptic', 'potential', 'in', 'neurons', ')', 'leading', 'to', 'the', 'activation', 'of', 'voltage-gated', 'ion', 'channels', '.'], ['a', 'union', 'co-worker', 'suggested', 'that', 'he', 'take', 'up', 'painting', 'as', 'a', 'way', 'to', 'exercise', 'his', 'fingers', 'and', 'ease', 'the', 'pain', '.'], ['he', 'recorded', 'two', 'interceptions', 'returned', 'for', '2', '7', 'yards', ',', '2', '0', 'tackles', 'including', '1', '5', 'solo', ',', 'five', 'passes', 'broken', 'up', ',', 'seven', 'passes', 'defended', ',', 'two', 'forced', 'fumbles', ',', 'and', 'one', 'blocked', 'kick', '.'], ['breads', 'enriched', 'with', 'eggs', ',', 'butter', ',', 'and', 'sugar', 'or', 'honey', 'were', 'served', 'in', 'the', 'palaces', 'and', 'were', 'known', 'as', '``', 'royal', 'bread', \"''\", 'or', '``', 'golden', 'bread', \"''\", '.'], ['during', 'this', 'time', ',', 'he', 'supervised', 'the', 'production', 'of', 'leaflets', ',', 'posters', 'and', 'other', 'campaign', 'materials', 'as', 'well', 'as', 'organising', 'their', 'distribution', 'to', 'the', 'public', 'in', 'the', 'run', 'up', 'to', 'the', '2', '0', '1', '6', 'european', 'union', 'membership', 'referendum', '.'], ['in', '1', '8', '4', '8', ',', 'he', 'corresponded', 'with', 'larkin', 'over', 'the', 'disappearance', 'of', 'his', 'brother', 'robert', 'atherton', 'in', 'mazatlán', 'the', 'previous', 'year', '.'], ['it', 'is', 'used', 'as', 'an', 'antidepressant', 'and', 'anxiolytic', 'agent', 'in', 'the', 'clinical', 'treatment', 'of', 'mood', 'and', 'anxiety', 'disorders', ',', 'respectively', '.'], ['in', 'his', 'first', 'nfl', 'regular', 'season', 'action', 'in', '2', '0', '0', '9', ',', 'he', 'caught', '4', '3', 'passes', 'for', '3', '2', '6', 'yards', 'and', 'one', 'touchdown', 'as', 'a', 'slot', 'receiver', '.'], ['leiria', 'in', '2', '0', '1', '4', ',', 'after', 'unsuccessful', 'trials', 'at', 'norwegian', 'side', 'stabæk', 'and', 'polish', 'club', 'wisła', 'kraków', '.'], ['saint', 'petersburg', ',', 'with', 'a', 'direct', 'railway', 'connection', 'to', 'lithuania', ',', 'was', 'becoming', 'a', 'lithuanian', 'cultural', 'center', '.'], ['many', 'of', 'these', 'modules', 'can', 'be', 'installed', 'in', 'any', 'perl', 'environment', ';', 'however', ',', 'certain', 'modules', '(', 'xs', 'modules', ')', 'require', 'a', 'working', 'c', 'compiler', 'and', 'development', 'environment', 'to', 'install', 'successfully', '.'], ['the', 'most', 'common', 'apartment', 'size', 'was', '5', 'rooms', 'of', 'which', 'there', 'were', '3', '2', '.'], ['today', ',', 'millions', 'of', 'their', 'descendants', 'still', 'live', 'in', 'mexico', 'and', 'can', 'be', 'found', 'working', 'in', 'different', 'professions', 'and', 'industries', '.'], ['the', 'opening', 'verse', 'stakes', 'is', 'an', 'american', 'thoroughbred', 'horse', 'race', 'held', 'annually', 'at', 'churchill', 'downs', '.'], ['he', 'managed', 'the', 'state', \"'s\", 'finances', 'in', 'a', 'fiscally', 'conservative', 'manner', '.'], ['bds', 'opponents', 'often', 'focus', 'on', 'the', 'supposed', 'divisiveness', 'debates', 'about', 'divestment', 'resolutions', 'cause', '.'], ['by', 'promoting', 'a', 'healthy', 'use', 'of', 'car-based', 'mobility', ',', 'developing', 'views', 'on', 'traffic', 'matters', 'and', 'influencing', 'decisiontakers', 'and', 'public', 'opinion', ',', 'as', 'well', 'as', 'organising', 'car', 'racing', 'contests', 'and', 'offering', 'special', 'benefits', 'to', 'its', 'members', '.'], ['simon', 'split', 'his', 'time', 'between', 'cha', 'cha', 'cohen', 'and', 'the', 'wedding', 'present', 'until', '1', '9', '9', '7', ',', 'when', 'wedding', 'present', 'singer', '/', 'guitarist', 'david', 'gedge', 'took', 'a', 'break', 'in', 'order', 'to', 'start', 'a', 'new', 'group', ',', 'cinerama', '.'], ['the', 'route', 'turns', 'to', 'the', 'north', 'and', 'winds', 'through', 'more', 'wooded', 'areas', 'with', 'some', 'fields', ',', 'turning', 'northeast', 'and', 'intersecting', 'the', 'southern', 'terminus', 'of', 'ky', '2', '0', '0', '2', '.'], ['the', 'yaruba', 'imams', 'later', 'succeeded', 'in', 'driving', 'out', 'the', 'portuguese', 'colonizers', 'from', 'east', 'africa', 'and', 'established', 'a', 'maritime', 'empire', 'that', 'extended', 'its', 'powers', 'to', 'the', 'persian', 'gulf', 'and', 'zanzibar', '.'], ['in', 'june', '1', '6', '3', '6', 'hermanstein', 'surrendered', ',', 'and', 'in', 'the', 'following', 'month', 'hanau', 'was', 'besieged', 'by', 'the', 'forces', 'of', 'the', 'elector', 'of', 'mainz', 'and', 'the', 'bishop', 'of', 'würzburg', 'under', 'baron', 'metternich', '.'], ['on', '1', '3', 'january', '2', '0', '1', '7', ',', 'the', 'federal', 'police', 'launched', 'operation', '``', 'cui', 'bono', '?'], ['the', 'planet', 'paradise', ',', 'visited', 'by', 'humans', 'earlier', ',', 'was', 'a', 'test', 'site', 'for', 'one', 'of', 'their', 'experiments', 'to', 'create', 'shapeshifters', '(', 'see', 'novel', '``', 'paradise', 'lost', \"''\", ')', '.'], ['he', 'applied', 'and', 'was', 'selected', 'as', 'the', 'best', 'out', 'of', '2', '3', 'applicants', '.'], ['for', 'this', 'reason', ',', 'and', 'to', 'keep', 'the', 'text', 'as', 'consistent', 'as', 'possible', ',', 'changes', 'prior', 'to', 'the', 'language', 'revision', 'in', '2', '0', '1', '4', 'were', 'written', 'in', 'a', 'language', 'close', 'to', 'the', 'original', '.'], ['the', 'chassis', 'was', 'eventually', 'built', 'ahead', 'of', 'round', '5', 'in', 'gauteng', ',', 'however', 'khan', 'did', 'not', 'race', 'for', 'undisclosed', 'reasons', '.'], ['in', 'the', 'early', '1', '8', '6', '0', 's', ',', 'ashwell', 'opposed', 'the', 'māori', 'king', 'movement', ',', 'which', 'was', 'a', 'means', 'of', 'attaining', 'māori', 'unity', 'to', 'halt', 'the', 'alienation', 'of', 'land', 'at', 'a', 'time', 'of', 'rapid', 'population', 'growth', 'by', 'european', 'colonists', '.'], ['hundreds', 'of', 'brazilians', ',', 'including', 'then-president', 'fernando', 'henrique', 'cardoso', ',', 'attended', 'the', 'event', '.'], ['on', '3', '0', 'september', '1', '9', '5', '0', ',', 'patricia', 'married', 'captain', 'donald', 'james', 'drake', 'at', 'all', 'saints', 'church', ',', 'loughborough', '.'], ['it', 'was', 'built', 'between', '1', '8', '3', '4', 'and', '1', '8', '4', '8', '.'], ['the', 'terrain', 'of', 'the', 'southern', 'portion', 'of', 'the', 'tehsil', 'can', 'be', 'characterized', 'by', 'sand', 'dunes', '.'], ['both', 'were', 'dammed', 'and', 'artificial', 'lakes', 'created', 'by', 'the', 'tennessee', 'valley', 'authority', 'and', 'the', 'army', 'corp', 'of', 'engineers', 'in', 'the', 'early', '2', '0', 'th', 'century', ';', 'the', 'town', 'now', 'lies', 'on', 'an', 'isthmus', 'of', 'land', 'between', 'kentucky', 'lake', 'and', 'lake', 'barkley', '.'], ['this', 'helped', 'keep', 'the', 'engine', 'efficient', ',', 'durable', ',', 'and', 'convenient', '.'], ['in', '2', '0', '1', '3', ',', 'he', 'was', 'appointed', 'by', 'russian', 'president', 'vladimir', 'putin', 'to', 'head', 'the', 'new', 'official', 'russian', 'government-owned', 'international', 'news', 'agency', '``', 'rossiya', 'segodnya', \"''\", '.'], ['if', 'it', 'will', 'be', 'in', 'service', 'again', 'transporting', 'other', 'goods', 'for', 'another', 'company', 'someday', 'is', 'currently', 'unclear', '.'], ['political', 'satire', 'in', 'the', 'united', 'kingdom', 'has', 'been', 'described', 'by', 'some', 'critics', 'as', 'a', '``', 'chronic', 'disease', \"''\", '.'], ['as', 'part', 'of', '5', 'th', 'army', 'group', 'royal', 'artillery', '(', 'agra', ')', 'it', 'took', 'part', 'in', 'the', 'battles', 'of', 'the', 'mareth', 'line', ',', 'wadi', 'akarit', 'and', 'enfidaville', 'in', 'march', 'and', 'april', '1', '9', '4', '3', '.'], ['belliappa', 'entered', 'politics', 'in', '1', '9', '2', '1', 'as', 'a', 'member', 'of', 'the', 'coorg', 'planters', \"'\", 'association', '.'], ['at', 'its', 'opening', ',', 'the', 'breakers', 'was', 'available', 'for', 'both', 'temporary', 'guests', 'and', 'others', 'who', 'made', 'it', 'their', 'permanent', 'residence', '.'], ['among', 'the', 'many', 'locations', 'on', 'long', 'island', 'used', 'by', 'the', 'native', 'peoples', ',', '1', '9', 'th-century', 'american', 'publications', 'erroneously', 'identified', 'the', 'following', 'thirteen', 'as', '``', 'tribes', \"''\", 'on', 'long', 'island', ':'], ['on', '1', '0', 'september', ',', 'she', 'received', 'two', 'uh-', '4', '6', 'helicopters', 'from', 'detachment', 'hc-', '3', ';', 'and', 'departed', 'alameda', 'the', 'next', 'day', 'for', 'her', 'first', 'westpac', 'deployment', '.'], ['the', 'term', 'is', 'used', 'to', 'define', 'the', 'group', 'of', 'pupils', 'who', 'must', 'follow', 'the', 'relevant', 'programmes', 'of', 'study', 'from', 'the', 'national', 'curriculum', '.'], ['she', 'has', 'spoken', 'of', 'an', 'affinity', 'for', 'her', 'strong', 'female', 'characters', 'and', 'a', 'desire', 'to', 'avoid', 'sexualizing', 'or', 'sensationalizing', 'her', 'self-presentation', 'as', 'a', 'woman', '.'], ['in', 'episode', '1', '2', ',', 'yvie', 'had', 'to', 'secretly', 'get', 'all', 'of', 'the', 'celebrities', 'to', 'complement', 'justine', 'on', 'anything', 'but', 'her', 'cooking', '.'], ['theraflu', 'noted', 'that', 'this', 'was', 'not', 'done', 'at', 'their', 'request', '.'], ['whether', 'this', 'succeeds', 'depends', 'on', 'whether', 'the', 'undesirable', 'type', 'would', 'send', 'the', 'same', 'signal', ',', 'and', 'how', 'the', 'receiver', 'interprets', 'the', 'signal', '.'], ['johnson', 'had', 'contributed', 'only', 'four', 'of', 'the', '3', '0', 'runs', 'scored', 'while', 'he', 'was', 'at', 'the', 'crease', '.'], ['he', 'returned', 'to', 'the', 'organization', 'in', '2', '0', '1', '0', 'on', 'their', 'shomma', 'strikeforce', 'challengers', 'series', '.'], ['pivaljevic', 'has', 'always', 'been', 'a', 'fan', 'favourite', ',', 'and', 'is', 'known', 'for', 'some', 'unbelievable', 'goals', 'when', 'playing', 'for', 'royal', 'antwerp', '.'], ['her', 'black', 'and', 'white', 'appearance', 'however', 'attracts', 'the', 'attention', 'of', 'pepé', 'le', 'pew', ',', 'who', ',', 'after', 'some', 'flirting', ',', 'receives', 'a', 'mauling', '.'], ['from', '1', '9', '9', '6', 'to', '2', '0', '0', '5', 'the', 'yearly', 'average', 'had', 'increased', 'to', 'over', '1', '8', '0', ',', '0', '0', '0', '.'], ['a', 'further', '1', '2', 'penguins', '(', '1', '0', 'gentoo', 'and', '2', 'king', ')', 'were', 'introduced', 'in', 'march', '2', '0', '1', '1', '.'], ['browning', 'was', 'unable', 'however', 'to', 'hire', 'his', 'favorite', 'star', 'lon', 'chaney', 'this', 'time', 'around', ',', 'and', '``', 'the', 'mystic', \"''\", 'wound', 'up', 'a', 'little-known', 'film', 'with', 'a', 'cast', 'of', 'now-forgotten', 'names', '.'], ['there', 'were', '2', ',', '1', '3', '6', 'housing', 'units', 'at', 'an', 'average', 'density', 'of', '.'], ['he', 'served', 'as', 'a', 'member', 'of', 'the', 'niue', 'assembly', 'for', 'several', 'years', ',', 'and', 'was', 'a', 'member', 'of', 'the', 'executive', 'council', ',', 'serving', 'as', 'member', 'for', 'radio', 'and', 'telephone', 'services', '.'], ['attali', 'is', 'the', 'author', 'of', 'two', 'non-fiction', 'books', 'and', 'a', 'novel', ',', '``', 'la', 'mise', 'en', 'examen', \"''\", '.'], ['on', '2', '6', 'september', '1', '8', '3', '2', ',', 'the', 'church', 'was', 'opened', '.'], ['work', 'on', 'the', 'operating', 'system', 'continued', ';', 'haiku', 'could', 'now', 'be', 'booted', 'and', 'was', 'semi-usable', ',', 'however', 'much', 'work', 'remained', 'before', 'a', 'release', 'could', 'be', 'made', '.'], ['the', 'building', 'in', 'which', 'the', 'museum', 'formerly', 'resided', 'was', 'a', 'georgian', 'townhouse', 'that', 'became', 'grade', 'ii', 'listed', 'in', '1', '9', '8', '7', '.'], ['a', 'love', 'for', 'music', 'and', 'carpentry', 'work', 'remained', 'in', 'him', 'for', 'the', 'rest', 'of', 'his', 'life', '.'], ['first', 'dennis', 'plans', 'not', 'to', 'attend', 'the', 'funeral', 'because', 'he', 'would', 'likely', 'be', 'caught', 'by', 'the', 'police', ',', 'but', 'he', 'goes', 'anyway', 'and', ',', 'after', 'that', ',', 'turns', 'himself', 'in', '.'], ['the', 'kerala', 'information', 'and', 'public', 'relations', 'department', 'is', 'the', 'main', 'government', 'agency', 'disseminating', 'information', 'to', 'the', 'public', 'and', 'for', 'the', 'provision', 'of', 'feedback', '.'], ['sister', 'jamison', 'connelly', 'is', 'an', 'acerbic', 'and', 'profanity-inclined', 'nun', 'and', 'drug', 'counselor', 'with', 'a', 'checkered', 'past', 'of', 'her', 'own', '.'], ['proportions', 'among', 'the', 'soldiers', 'appear', 'confused', ',', 'with', 'some', 'dwarfed', 'by', 'more', 'distant', 'figures', '.'], ['after', 'earning', 'an', 'associate', 'of', 'arts', 'diploma', 'from', 'fsu', ',', 'amigo', 'moved', 'to', 'miami', 'and', 'actively', 'performed', 'in', 'recording', 'sessions', 'and', 'original', 'and', 'cover', 'bands', 'while', 'attending', 'music', 'classes', 'at', 'university', 'of', 'miami', '.'], ['this', 'experiment', 'has', 'since', 'been', 'repeated', 'by', 'generations', 'of', 'physics', 'students', ',', 'although', 'it', 'is', 'rather', 'expensive', 'and', 'difficult', 'to', 'conduct', 'properly', '.'], ['cristian', 'marian', 'balgiu', '(', 'born', '3', 'august', '1', '9', '9', '4', ')', 'is', 'a', 'romanian', 'professional', 'footballer', 'who', 'plays', 'as', 'a', 'midfielder', 'for', 'scm', 'gloria', 'buzău', '.'], ['in', '2', '0', '1', '5', 'the', 'event', 'was', 'still', 'driving', 'tourism', ',', 'with', 'visitor', 'numbers', 'peaking', 'in', '2', '0', '1', '0', ',', 'then', 'settling', 'to', '5', '0', '%', 'more', 'than', 'before', 'the', 'twilight', 'phenomenon', '.'], ['each', 'summer', ',', 'bluebirds', 'sit', 'perched', 'atop', 'the', 'nest', 'boxes', ',', 'watching', 'for', 'their', 'insect', 'prey', '.'], ['they', 'are', 'typical', 'for', 'the', 'time', 'in', 'that', 'they', 'contain', 'two', 'parts', 'for', 'the', 'viola', '.'], ['the', 'highest', 'mountain', 'in', 'the', 'park', ',', '``', 'kvigtinden', \"''\", ',', 'towering', 'above', 'sea', 'level', ',', 'is', 'found', 'here', '.'], ['the', 'town', 'lies', 'in', 'nh', '7', 'and', 'has', 'very', 'good', 'road', 'and', 'railway', 'connectivity', '.'], ['in', 'an', 'oxygen', 'rebreather', 'this', 'can', 'occur', 'if', 'the', 'loop', 'is', 'not', 'sufficiently', 'purged', 'at', 'the', 'start', 'of', 'use', '.'], ['in', '2', '0', '1', '4', ',', 'researchers', 'at', 'yale', 'university', 'identified', 'a', 'protein', 'from', 'the', 'tarantula', \"'s\", 'toxin', 'that', 'shows', 'promise', 'as', 'a', 'new', 'painkiller', 'drug', '.'], ['at', 'the', 'time', ',', 'they', 'had', '3', '0', ',', '0', '0', '0', 'objects', ',', 'and', 'a', 'sizable', 'collection', 'of', 'photographs', '.'], ['her', 'first', 'success', 'as', 'a', 'senior', 'came', 'that', 'year', 'as', 'she', 'was', 'runner-up', 'at', 'the', 'european', 'champion', 'clubs', 'cup', ',', 'taking', 'second', 'behind', 'patricia', 'sarrapio', '.'], ['allen', 'shaw', \"'s\", 'crescent', 'communications', 'bought', 'the', 'station', 'in', 'december', '1', '9', '9', '3', 'for', '$', '1', '3', '.', '5', 'million', '.'], ['dorothy', 'height', ',', 'the', 'president', 'of', 'the', 'national', 'council', 'of', 'negro', 'women', ',', 'enlisted', 'kurin', 'to', 'help', 'organize', 'the', 'production', 'of', 'the', 'first', 'national', 'black', 'family', 'reunion', 'on', 'the', 'national', 'mall', 'in', '1', '9', '8', '6', '.'], ['stevens', 'was', 'accused', 'of', 'ordering', 'the', 'landing', 'on', 'his', 'own', 'authority', 'and', 'inappropriately', 'using', 'his', 'discretion', '.'], ['porter', 'served', 'as', 'the', 'hitting', 'coach', 'for', 'the', 'class', 'a', 'greensboro', 'grasshoppers', 'in', '2', '0', '0', '5', 'and', 'manager', 'of', 'the', 'class', 'a-advanced', 'jamestown', 'jammers', 'in', '2', '0', '0', '6', '.'], ['on', '1', '0', 'july', '2', '0', '1', '7', ',', 'bougouhi', 'signed', 'for', 'hjk', 'on', 'a', 'contract', 'until', 'the', 'end', 'of', 'the', '2', '0', '1', '7', 'season', ',', 'with', 'an', 'option', 'for', 'an', 'additional', 'season', '.'], ['morris', \"'\", 'first', 'job', 'in', 'television', 'came', 'while', 'he', 'was', 'still', 'in', 'college', ',', 'as', 'an', 'intern', 'news', 'writer', 'in', 'norfolk', ',', 'viriginia', '.'], ['it', 'is', 'administered', 'by', 'a', 'board', 'of', 'volunteers', 'annually', '.'], ['it', 'is', ',', 'however', ',', 'systematically', 'absent', 'after', 'the', 'negation', '``', 'ma', '(', 'ʼ', ')', \"''\", '.'], ['in', '1', '9', '6', '4', ',', 'after', 'receiving', 'his', 'mba', ',', 'chao', 'founded', 'foremost', 'group', ',', 'a', 'shipping', ',', 'trading', 'and', 'finance', 'enterprise', 'based', 'in', 'new', 'york', '.'], ['they', 'soon', 'relocated', 'farther', 'inland', 'from', '``', 'mikelenburg', \"''\", ',', 'near', 'the', 'city', 'of', 'wismar', ',', 'to', 'schwerin', '.'], ['he', 'tries', 'to', 'maintain', 'his', 'status', 'among', 'the', 'other', 'inmates', 'by', 'bragging', 'about', 'what', 'a', 'famous', 'performer', 'he', 'once', 'was', '.'], ['sarah', 'jane', 'is', 'frequently', 'voted', 'the', 'most', 'popular', '``', 'doctor', 'who', \"''\", 'companion', 'by', 'both', '``', 'doctor', 'who', \"''\", 'fans', 'and', 'members', 'of', 'the', 'general', 'public', '.'], ['ang', 'chan', 'ii', 'was', 'the', 'eldest', 'son', 'of', 'ang', 'eng', '.'], ['vettel', 'began', 'to', 'enlarge', 'his', 'lead', 'over', 'alonso', 'and', 'massa', 'in', 'second', 'and', 'third', '.'], ['massive', 'myogenesis', '(', 'formation', 'of', 'muscular', 'tissue', ')', 'occurs', 'throughout', 'the', 'advanced', 'regenerative', 'phase', '.'], ['in', '1', '9', '4', '8', ',', 'idrissi', 'joined', 'the', 'general', 'confederation', 'of', 'labour', 'in', 'the', 'days', 'of', 'french', 'morocco', '.'], ['3', '-aminobenzoic', 'acid', '(', 'also', 'known', 'as', '``', 'meta', \"''\", '-aminobenzoic', 'acid', 'or', 'maba', ')', 'is', 'an', 'organic', 'compound', 'with', 'the', 'molecular', 'formula', 'h', '2', 'nc', '6', 'h', '4', 'co', '2', 'h', '.'], ['penguin', 'encounter', 'was', 'originally', 'home', 'to', '1', '2', 'penguins', 'all', 'of', 'which', 'were', 'moved', 'from', 'new', 'zealand', '(', 'presumably', 'from', 'kelly', 'tarlton', \"'s\", 'underwater', 'world', ')', 'two', 'weeks', 'before', 'opening', '.'], ['the', 'praise', 'bestowed', 'on', 'the', 'jansenists', 'in', 'the', '``', 'jugemens', 'des', 'savans', \"''\", 'brought', 'down', 'on', 'baillet', 'the', 'hatred', 'of', 'the', 'jesuits', ',', 'and', 'his', '``', 'vie', 'des', 'saints', \"''\", ',', 'in', 'which', 'he', 'brought', 'his', 'critical', 'mind', 'to', 'bear', 'on', 'the', 'question', 'of', 'miracles', ',', 'caused', 'some', 'scandal', '.'], ['they', 'live', 'from', 'sea', 'level', 'to', 'more', 'than', '1', '0', ',', '0', '0', '0', 'feet', 'in', 'many', 'types', 'of', 'habitats', ',', 'reproducing', 'in', 'aquatic', 'settings', '.'], ['these', 'features', 'are', 'distinct', 'from', 'pressure', 'ridges', ',', 'which', 'are', 'uplifts', 'formed', 'by', 'the', 'compression', 'of', 'ice', 'against', 'a', 'shoreline', 'or', 'another', 'floe', '.'], ['it', 'was', 'also', 'the', 'fourteenth', 'episode', 'of', 'the', 'show', \"'s\", 'third', 'season', '.'], ['in', 'november', 'and', 'december', '1', '9', '9', '8', ',', 'the', 'squadron', 'detached', 'to', 'the', 'newly', 'commissioned', 'in', 'support', 'of', 'her', 'shakedown', 'cruise', 'and', 'orange', 'air', 'operations', 'against', 'battle', 'group', '.'], ['after', '1', '5', 'years', 'of', 'intensive', 'studies', 'and', 'failing', 'health', 'he', 'died', ',', 'in', '1', '8', '3', '7', ',', 'at', 'the', 'age', 'of', '2', '0', 'or', '2', '1', '.'], ['el', 'gamma', 'penumbra', 'comes', 'from', 'the', 'words', '``', 'gamma', \"''\", 'and', '``', 'penumbra', \"''\", ',', 'which', '(', 'in', 'the', 'words', 'of', 'the', 'group', ')', 'refer', 'to', 'the', 'ideas', 'of', 'light', '(', 'gamma', 'rays', ')', 'and', 'shadow', '.'], ['on', 'this', 'expedition', ',', 'she', 'became', 'the', '3', '5', 'th', 'woman', 'and', 'first', 'scandinavian', 'woman', 'to', 'reach', 'the', 'peak', 'of', 'mount', 'everest', '.'], ['in', '2', '0', '1', '9', ',', 'she', 'also', 'won', 'the', 'valencia', 'marathon', 'and', 'she', 'also', 'set', 'a', 'new', 'course', 'record', 'of', '2', ':', '1', '8', ':', '3', '0', '.'], ['those', 'of', 'hispanic', 'or', 'latino', 'origin', 'made', 'up', '6', '.', '2', '%', 'of', 'the', 'population', '.'], ['the', 'second', 'presidential', 'debate', 'took', 'place', 'on', 'tuesday', ',', 'october', '1', '6', 'at', 'new', 'york', \"'s\", 'hofstra', 'university', ',', 'and', 'was', 'moderated', 'by', 'candy', 'crowley', 'of', 'cnn', '.'], ['tihosuco', 'is', 'a', 'town', 'in', 'the', 'mexican', 'state', 'of', 'quintana', 'roo', ',', 'mexico', ',', 'localized', 'in', 'state', 'center', ',', 'in', 'the', 'municipality', 'of', 'felipe', 'carrillo', 'puerto', '.'], ['it', 'was', 'the', '2', '0', '0', '5', 'most', 'popular', 'drama', 'of', 'the', 'year', 'at', 'the', '4', '0', 'th', 'golden', 'bell', 'awards', ',', 'taiwan', '.'], ['ernst', 'august', 'married', 'on', '3', 'march', '1', '9', '4', '8', 'in', 'oberkassel', ',', 'bonn', 'to', 'christa', 'von', '(', 'b', '.'], ['this', 'applies', 'to', 'the', 'royal', 'princes', 'and', 'princesses', 'as', 'well', ',', 'but', 'does', 'not', 'apply', 'to', 'their', 'spouses', '.'], ['it', 'was', 'translated', 'into', 'italian', '(', 'pavia', ',', '1', '8', '7', '7', ')', 'and', 'into', 'english', '(', 'london', ',', '1', '8', '7', '6', ';', 'baltimore', ',', '1', '8', '8', '9', ')', '.'], ['he', 'trained', 'in', 'judo', 'during', 'his', 'school', 'years', ',', 'and', 'held', 'the', 'rank', 'of', '2', 'nd', '``', 'dan', \"''\", 'in', 'that', 'martial', 'art', '.'], ['is', 'the', 'sixth', 'single', 'by', 'the', 'japanese', 'girl', 'idol', 'group', 'team', 'syachihoko', ',', 'released', 'in', 'japan', 'on', 'may', '1', '4', ',', '2', '0', '1', '4', 'by', 'unborde', 'records', '(', 'warner', 'music', 'japan', ')', '.'], ['however', ',', 'the', 'duke', 'was', 'murdered', 'in', '1', '4', '5', '0', '.'], ['the', 'indigenous', 'population', 'of', 'the', 'nation', ',', 'which', 'is', 'predominantly', 'micronesian', ',', 'consists', 'of', 'various', 'ethnolinguistic', 'groups', '.'], ['due', 'to', 'some', 'quick', 'thinking', ',', 'flora', 'survives', 'the', 'attempt', 'and', 'uses', 'the', 'maintenance', 'shafts', 'running', 'under', 'the', 'city', 'to', 'get', 'to', 'the', 'boundary', ',', 'along', 'with', 'her', 'friends', 'ryben', '(', 'a', 'metamorph', ')', 'and', 'nive', '(', 'an', 'emglan', ')', 'and', 'the', 'service', 'droid', '.'], ['similarly', ',', 'black', 'pride', 'groups', 'appropriated', 'the', 'concept', 'of', 'hamitic', 'identity', 'for', 'their', 'own', 'purposes', '.'], ['he', 'created', 'the', 'non-musical', 'soundtrack', 'for', 'alfred', 'hitchcock', \"'s\", 'film', '``', 'the', 'birds', \"''\", '.'], ['in', 'the', '1', '9', '5', '0', 's', ',', 'banking', 'magnate', 'siegmund', 'warburg', 'recruited', 'him', 'as', 'a', 'manager', 'for', 'the', 'british', 'and', 'french', 'bank', '.'], ['they', 'have', 'been', 'increased', 'in', 'both', 'height', 'and', 'number', 'since', 'the', 'good', 'friday', 'agreement', 'of', '1', '9', '9', '8', '.'], ['pyland', 'is', 'an', 'unincorporated', 'community', 'located', 'in', 'chickasaw', 'county', ',', 'mississippi', ',', 'united', 'states', '.'], ['political', 'parties', 'would', 'sponsor', 'anonymous', 'political', 'figures', 'in', 'the', 'federal', 'republican', 'and', 'daily', 'gazette', '.'], ['vartox', 'is', 'from', 'valeron', ',', 'in', 'the', '``', 'sombrero', 'hat', \"''\", 'galaxy', '.'], ['he', 'was', 'buried', 'in', 'exeter', 'cathedral', ',', 'where', 'his', 'tomb', ',', 'with', 'the', 'bishop', \"'s\", 'effigy', ',', 'still', 'survives', '.'], ['in', '2', '0', '0', '4', ',', '9', '0', 'copies', 'on', 'vellum', 'of', 'a', 'new', 'edition', 'were', 'published', 'by', 'michel', 'pierson', 'et', 'ptyx', '.'], ['``', 'teardrop', \"''\", 'won', 'the', 'award', 'for', 'best', 'video', 'at', 'the', 'mtv', 'europe', 'music', 'awards', '1', '9', '9', '8', 'and', 'was', 'nominated', 'for', 'brit', 'and', 'd', '&', 'amp', ';', 'ad', 'awards', '.'], ['james', 'spader', 'has', 'received', 'the', 'most', 'award', 'nominations', ',', '1', '5', 'in', 'total', ',', 'while', 'winning', '3', '.'], ['they', 'have', 'three', 'children', ',', 'lora', ',', 'born', 'in', '1', '9', '9', '5', ',', 'iva', 'in', '1', '9', '9', '7', ',', 'timo', 'in', '1', '9', '9', '9', ',', 'but', 'have', 'since', 'divorced', '.'], ['it', 'is', 'hosted', 'by', 'michael', 'aloni', 'with', 'coaches', 'shlomi', 'shabat', ',', 'sarit', 'hadad', ',', 'aviv', 'geffen', 'and', 'mosh', 'ben-ari', '.'], ['in', '2', '0', '0', '6', 'it', 'was', 'the', 'animation', 'studio', 'responsible', 'for', 'the', 'tv', 'version', 'of', '``', 'bartender', \"''\", '.'], ['although', 'scythes', 'are', 'forbidden', 'from', 'having', 'romantic', 'relations', 'with', 'one', 'another', ',', 'over', 'time', ',', 'a', 'romantic', 'relationship', 'develops', 'between', 'the', 'two', '.'], ['this', 'is', 'revealed', 'to', 'be', 'a', 'russian', 'passport', ',', 'which', 'he', 'uses', 'to', 'meet', 'his', 'wife', 'fiona', ',', 'whom', 'it', 'is', 'now', 'revealed', 'is', 'a', 'double', 'agent', '(', 'it', 'is', 'not', 'made', 'clear', 'for', 'how', 'long', 'bernard', 'knew', 'this', ')', '.'], ['the', 'australian', 'national', 'audit', 'office', 'provides', 'the', 'australian', 'parliament', 'and', 'the', 'public', 'with', 'an', 'independent', 'assessment', 'of', 'selected', 'areas', 'of', 'public', 'administration', 'in', 'the', 'aps', ',', 'and', 'assurance', 'about', 'aps', 'financial', 'reporting', ',', 'administration', 'and', 'accountability', '.'], ['despite', 'a', 'certain', 'instability', 'in', 'the', 'post', 'of', 'coach', ',', 'the', 'breton', 'club', 'confirmed', 'its', 'place', 'in', 'the', 'elite', 'during', 'the', 'following', 'seasons', '.'], ['in', '2', '0', '0', '9', 'a', 'cairns', 'couple', 'was', 'charged', 'by', 'queensland', 'police', 'under', 'anti-abortion', 'laws', 'after', 'imported', 'mifepristone', 'was', 'found', 'in', 'their', 'home', '.'], ['vukadinović', 'wrote', 'two', 'books', ':', '``', 'između', 'dve', 'vatre', \"''\", '(', '2', '0', '0', '7', ')', 'and', '``', 'od', 'nemila', 'do', 'nedraga', \"''\", '(', '2', '0', '0', '8', ')', '.'], ['the', 'seuna', 'dynasty', ',', 'also', 'known', 'as', 'the', 'yadava', 'dynasty', 'of', 'devagiri', ',', 'ruled', 'maharashtra', 'from', 'the', '1', '3', 'th', 'century', 'to', 'the', '1', '4', 'th', 'century', '.'], ['apostolic', 'faith', 'is', 'a', 'pentecostal', 'church', 'located', 'near', 'the', 'northern', 'city', 'limits', '.'], ['there', 'are', 'some', 'very', 'basic', 'restrictions', 'in', 'the', 'event', 'site', 'trunking', '(', 'a', 'site', 'loses', 'its', 'link', 'to', 'the', 'zone', 'controller', ')', 'does', 'occur', 'but', 'for', 'all', 'intents', 'and', 'purposes', 'once', 'an', 'ir', 'site', 'is', 'in', 'site', 'trunking', 'mode', 'it', \"'s\", 'a', 'free-for-all', 'site', '.'], ['an', 'addition', 'was', 'built', 'in', '1', '9', '1', '7', ',', 'designed', 'by', 'postle', '&', 'amp', ';', 'fischer', ',', 'at', 'a', 'cost', 'of', '$', '4', '0', ',', '0', '0', '0', '.'], ['when', 'he', 'retired', 'in', '1', '9', '8', '6', 'from', 'the', 'us', 'public', 'health', 'service', ',', 'he', 'moved', 'to', 'seattle', 'and', 'continued', 'his', 'teaching', 'work', 'as', 'emeritus', 'professor', 'of', 'orthopedics', 'in', 'the', 'university', 'of', 'washington', '.'], ['they', 'accounted', 'for', 'more', 'than', '1', '4', '%', 'of', 'the', 'student', 'body', 'that', 'year', ',', 'before', 'peaking', 'at', 'over', '1', '6', '%', 'of', 'total', 'enrollment', 'in', '1', '9', '7', '6', '.'], ['even', 'though', 'she', 'could', 'no', 'longer', 'continue', 'to', 'pursue', 'her', 'own', 'career', ',', 'keen', 'continued', 'to', 'review', 'the', 'manuscripts', 'of', 'her', 'colleagues', ',', 'and', 'keep', 'in', 'touch', 'with', 'her', 'former', 'students', '.'], ['peebles', \"'\", 'grocery', 'store', 'closed', 'in', '1', '9', '3', '1', 'at', 'the', 'height', 'of', 'the', 'great', 'depression', '.'], ['it', 'is', 'a', 'co-ed', ',', 'english', 'medium', 'senior', 'secondary', 'school', '.'], ['the', 'other', 'large', 'church', 'in', 'tollesbury', 'opposite', 'the', 'square', 'is', 'the', 'congregational', 'church', '.'], ['the', '1', '0', '.', '5', 'cm', 'sk', 'c/', '3', '2', '(', 'sk', '-', 'schnellladekanone', '(', 'quick', 'loading', 'cannon', ')', 'c', '-', 'construktionsjahr', '(', 'year', 'of', 'design', ')', ',', 'was', 'a', 'widely', 'used', 'german', 'naval', 'gun', 'on', 'a', 'variety', 'of', 'kriegsmarine', 'ships', 'during', 'world', 'war', 'ii', '.'], ['only', 'the', 'sheriff', '(', 'ruth', 'gordon', ')', 'witnesses', 'their', 'landing', ',', 'and', 'she', 'becomes', 'obsessed', 'with', 'alien', 'invaders', '.'], ['the', 'river', 'takes', 'its', 'waters', 'from', 'a', 'set', 'of', 'lakes', 'to', 'the', 'east', 'and', 'southeast', 'of', 'the', 'eastmain', 'reservoir', ';', 'the', 'upper', 'lake', 'is', '5', '.', '7', 'km', 'south', 'of', 'eastmain', 'or', 'at', 'the', 'east', 'of', 'a', 'highest', 'peak', 'at', '4', '5', '0', 'meters', '.'], ['it', 'was', 'described', 'by', 'mitchell', 'in', '1', '9', '5', '7', '.'], ['matthew', 'george', 'greene', '(', 'born', 'may', '1', '3', ',', '1', '9', '8', '3', ')', 'is', 'an', 'american', 'former', 'professional', 'ice', 'hockey', 'defenceman', '.'], ['the', 'character', 'has', 'enjoyed', 'a', 'rich', 'afterlife', 'in', 'the', 'u.n.c.l.e', '.'], ['the', 'region', 'is', 'comparable', 'in', 'size', 'to', 'the', 'combined', 'land', 'and', 'water', 'areas', 'of', 'the', 'united', 'states', 'state', 'of', 'maryland', '.'], ['she', 'was', 'also', 'a', 'member', 'of', 'the', 'woodstock', 'art', 'colony', '.'], ['han', 'guang', 'refused', 'to', 'cede', 'ji', 'to', 'zang', 'tu', ',', 'who', 'seized', 'the', 'city', 'and', 'killed', 'han', 'guang', '.'], ['apart', 'from', 'short', 'visits', 'paid', 'the', 'first', '1', '2', 'years', 'of', 'his', 'reign', ',', 'he', 'spent', 'his', 'time', 'almost', 'entirely', 'in', 'france', ';', 'he', 'regarded', 'navarre', 'principally', 'as', 'a', 'source', 'of', 'manpower', 'with', 'which', 'to', 'advance', 'his', 'designs', 'to', 'become', 'a', 'major', 'power', 'in', 'france', '.'], ['it', 'is', 'found', 'in', 'panama', ',', 'costa', 'rica', ',', 'colombia', 'and', 'peru', '.'], ['the', 'greater', 'occurrence', 'of', 'rat', 'remains', 'associated', 'with', 'commoner', 'households', 'may', 'indicate', 'the', 'elites', 'of', 'precontact', 'hawaii', 'did', 'not', 'consume', 'them', 'as', 'a', 'matter', 'of', 'status', 'or', 'taste', '.'], ['after', 'this', ',', 'she', 'was', 'active', 'in', 'the', 'company', 'of', 'her', 'spouse', 'in', 'naples', '.'], ['the', 'house', 'served', 'as', 'a', 'post', 'office', ',', 'as', 'a', 'general', 'store', ',', 'and', 'as', 'a', 'stage-stop', '.'], ['ángel', 'metálico', \"'s\", 'championship', 'run', 'from', 'february', '1', ',', '2', '0', '1', '4', 'to', 'may', '8', ',', '2', '0', '1', '5', 'is', 'the', 'longest', 'in', 'the', 'history', 'of', 'the', 'championship', ',', 'while', 'rey', 'horus', \"'\", '6', '5', 'day', 'reign', 'is', 'the', 'shortest', '.'], ['eventually', ',', '5', '0', 'complete', 'sets', 'of', 'combination', '5', '5', '/', '3', '5', 'mm', 'projectors', 'and', '``', 'penthouse', \"''\", 'reproducers', 'were', 'completed', 'and', 'delivered', 'by', 'century', 'and', 'ampex', ',', 'respectively', ',', 'and', '5', '5', 'mm', 'release', 'print', 'sounding', 'equipment', 'was', 'delivered', 'by', 'western', 'electric', '.'], ['in', 'the', '1', '9', '9', '0', 's', 'and', '2', '0', '0', '0', 's', ',', 'a', 'street', 'punk', 'revival', 'began', 'with', 'emerging', 'street', 'punk', 'bands', 'such', 'as', 'the', 'casualties', ',', 'the', 'virus', ',', 'cheap', 'sex', ',', 'lower', 'class', 'brats', 'and', 'the', 'unseen', '.'], ['in', 'fact', ',', 'of', 'their', 'december', 'meeting', 'in', 'philadelphia', ',', 'one', 'source', 'noted', 'that', '``', 'with', 'the', 'exception', 'of', 'the', 'third', 'round', 'when', 'cole', 'sent', 'over', 'some', 'very', 'hard', 'punches', ',', \"''\", 'the', '``', 'battle', 'was', 'walcott', \"'s\", 'all', 'the', 'way', '.', \"''\"], ['cabo', 'polonio', 'is', 'the', 'setting', 'for', 'events', 'spread', 'over', 'a', '3', '6', '-year', 'period', 'in', 'carolina', 'de', 'robertis', \"'\", 'novel', '``', 'cantoras', \"''\", '.'], ['the', 'elephant', 'found', 'in', 'thailand', 'is', 'the', 'indian', 'elephant', '(', '``', 'elephas', 'maximus', 'indicus', \"''\", ')', ',', 'a', 'subspecies', 'of', 'the', 'asian', 'elephant', '.'], ['in', '1', '9', '6', '1', 'she', 'became', 'the', 'first', 'female', 'lecturer', 'at', 'monash', 'university', ',', 'lecturing', 'in', 'literature', '.'], ['in', 'july', '2', '0', '1', '6', ',', 'david', 'bowen', 'attended', 'the', 'democratic', 'national', 'convention', 'as', 'a', 'super-delegate', ',', 'and', 'pledged', 'his', 'support', 'to', 'bernie', 'sanders', 'over', 'hillary', 'clinton', '.'], ['the', 'swiftgate', 'scandal', 'broke', 'out', 'in', '1', '9', '9', '0', ',', 'as', 'american', 'investors', 'were', 'damaged', 'by', 'a', 'case', 'of', 'corruption', ',', 'and', 'asked', 'for', 'assistance', 'from', 'the', 'united', 'states', \"'\", 'ambassador', 'terence', 'todman', '.'], ['note', 'that', 'the', 'numbers', 'given', 'by', 'israelite', 'historians', 'of', 'the', 'time', 'were', 'probably', 'exaggerated', ',', 'considering', 'the', 'fact', 'that', 'the', 'hasmonean', 'jews', 'lost', 'the', 'war', 'against', 'tigranes', '.'], ['green', 'related', 'that', 'his', 'first', 'day', 'on', 'the', 'set', 'came', 'just', 'after', 'duchovny', 'had', 'finished', 'filming', 'his', 'final', 'scene', ';', 'green', 'was', 'impressed', 'with', 'duchovny', \"'s\", 'demeanour', 'and', 'improvisational', 'acting', ',', 'and', 'added', 'that', 'the', 'two', '``', 'just', 'goofed', 'off', 'the', 'whole', 'time', \"''\", '.'], ['the', '2', '0', '2', '0', 'race', ',', 'which', 'would', 'have', 'been', 'renamed', 'the', 'indycar', 'challenge', ',', 'was', 'cancelled', 'due', 'to', 'the', 'covid-', '1', '9', 'pandemic', '.'], ['as', 'persistent', 'nasal', ',', 'skin', 'or', 'bowel', 'carriage', 'in', 'the', 'healthy', 'population', 'spreads', '``', 'silently', \"''\", 'across', 'the', 'world', ',', 'the', 'risks', 'from', 'resistant', 'strains', 'in', 'both', 'hospitals', 'and', 'the', 'community', 'increases', '.'], ['the', 'last', 'angry', 'man', 'is', 'a', '1', '9', '5', '9', 'drama', 'film', 'that', 'tells', 'the', 'story', 'of', 'a', 'television', 'producer', 'who', 'profiles', 'the', 'life', 'of', 'a', 'physician', '.'], ['another', '2', '0', '1', '5', 'record', ',', 'the', 'story', 'so', 'far', \"'s\", 'self', 'titled', '``', 'the', 'story', 'so', 'far', \"''\", 'placed', 'on', 'billboard', 'top', '2', '0', '0', '#', '2', '3', ',', '#', '1', 'vinyl', 'sales', ',', '#', '2', 'independent', 'albums', '.'], ['he', 'also', 'received', 'a', '``', 'keep', 'the', 'dream', 'alive', \"''\", 'martin', 'luther', 'king', 'humanitarian', 'award', 'for', 'his', 'social', 'and', 'artistic', 'activism', 'for', 'the', 'black', 'and', 'hispanic', 'lgbt', '(', 'lesbian', ',', 'gay', ',', 'bisexual', 'and', 'transgender', ')', 'ballroom', 'community', ',', 'aka', 'harlem', 'drag', 'ball', 'community', '.'], ['it', 'is', 'a', 'mission/spanish', 'revival-style', 'influenced', 'building', 'designed', 'by', 'edward', 'f.', 'sibbert', '.'], ['in', '2', '0', '1', '4', ',', 'matthews', 'took', 'up', 'a', 'position', 'as', 'national', 'campaigns', 'director', 'at', 'better', 'off', 'out', '.'], ['the', 'company', 'existed', 'from', '1', '9', '4', '5', 'to', '1', '9', '5', '0', '.'], ['in', '1', '8', '6', '8', 'a', 'new', 'service', 'wing', 'was', 'added', 'to', 'the', 'north', 'elevation', 'under', 'the', 'instruction', 'of', 'architect', 'richard', 'phipson', '.'], ['in', 'the', 'build-up', 'to', 'the', '1', '9', '9', '4', 'world', 'cup', ',', 'angeles', 'was', 'forced', 'to', 'prepare', 'alone', 'as', 'the', 'united', 'states', 'did', 'not', 'have', 'a', 'national', 'league', 'at', 'the', 'time', ';', 'he', 'joined', 'a', 'running', 'club', 'and', 'refereed', 'friendly', 'international', 'matches', 'in', 'los', 'angeles', '.'], ['before', 'any', 'more', 'information', 'can', 'be', 'exchanged', ',', 'fred', 'is', 'caught', 'and', 'taken', 'away', '.'], ['it', 'has', 'been', 'designated', 'as', 'a', 'grade', 'i', 'listed', 'building', 'and', 'scheduled', 'monument', '.'], ['about', '9', '0', '%', 'of', 'receipts', 'from', 'k-g', 'd-', '6', 'were', 'so', 'far', 'booked', 'as', 'expenditure', 'and', 'in', 'the', 'remaining', '1', '0', '%', ',', 'only', '1', '%', 'was', 'paid', 'to', 'the', 'government', 'and', 'rest', '9', '%', 'went', 'to', 'the', 'operator', 'as', 'profit', '.'], ['bhagauli', 'tirth', 'is', 'a', 'village', 'in', 'district', 'barabanki', 'in', 'india', '.'], ['six', 'years', 'later', ',', 'the', 'teachings', 'of', 'john', 'wycliffe', 'were', 'also', 'condemned', '.'], ['then', 'only', '1', '9', 'years', 'old', ',', 'the', 'young', 'quarterback', 'liked', ',', 'and', 'still', 'later', 'that', 'year', ',', 'would', 'have', 'other', 'opportunities', 'among', 'professionals', 'in', 'the', 'second', 'responded', 'to', 'the', 'commands', 'of', 'moacir', 'pereira', ',', 'assistant', 'ney', 'franco', '.'], ['scholar', ',', 'painter', ',', 'and', 'poet', 'paul', 'hansen', ',', 'who', 'became', 'a', 'professor', 'of', 'chinese', 'languages', 'and', 'noted', 'translator', 'of', 'early', 'chinese', 'poetry', 'lived', 'in', 'fishtown', 'for', 'several', 'years', ',', 'and', 'best-selling', 'author', 'tom', 'robbins', 'was', 'a', 'frequent', 'visitor', '.'], ['finer', \"'s\", 'magnum', 'opus', ',', '``', 'the', 'history', 'of', 'government', 'from', 'the', 'earliest', 'times', \"''\", ',', 'is', 'a', 'comparative', 'analysis', 'of', 'government', 'systems', ',', 'past', 'and', 'present', '.'], ['frequent', 'episode', 'director', 'tim', 'van', 'patten', 'also', 'provided', 'chase', 'with', 'some', 'storyline', 'suggestions', '.'], ['he', 'went', 'to', 'aroma', 'high', 'school', 'and', 'holds', 'a', 'master', \"'s\", 'degree', 'in', 'industrial', 'biotechnology', ',', 'from', 'sardar', 'patel', 'university', 'in', 'vallabh', 'vidyanagar', '.'], ['the', 'exterior', 'of', 'an', 'industrial', 'cap', 'may', 'be', 'round', ',', 'square', ',', 'rectangular', ',', 'u-', 'or', 'i-shaped', ',', 'or', 'may', 'have', 'a', 'handgrip', '.'], ['she', 'was', 'launched', 'in', 'august', '1', '9', '3', '9', '.'], ['romney', \"'s\", 'campaign', 'did', 'often', 'focus', 'on', 'his', 'core', 'beliefs', ';', 'a', 'romney', 'billboard', 'in', 'new', 'hampshire', 'read', '``', 'the', 'way', 'to', 'stop', 'crime', 'is', 'to', 'stop', 'moral', 'decay', \"''\", '.'], ['other', 'tablets', 'are', 'held', 'in', 'the', 'vorderasiatisches', 'museum', 'berlin', 'and', 'the', 'yale', 'babylonian', 'collection', '.'], ['invent', 'animate', '(', 'previously', 'stylized', 'as', 'invent', ',', 'animate', ')', 'is', 'an', 'american', 'metalcore', 'band', 'from', 'port', 'neches', ',', 'texas', '.'], ['during', 'its', 'existence', 'the', 'cgp', 'conducted', 'the', 'investigation', 'of', 'some', 'crimes', 'that', 'had', 'great', 'social', 'echo', ',', 'as', 'was', 'the', 'case', 'of', 'the', 'murders', 'committed', 'by', 'josé', 'maría', 'jarabo', ',', 'or', 'the', 'crimes', 'of', 'the', '``', 'poisoner', 'of', 'valencia', \"''\", ',', 'pilar', 'prades', '.'], ['unlike', 'the', 'ones', 'in', 'overground', 'mrt', 'stations', ',', 'the', 'lrt', 'structures', 'will', 'not', 'have', 'sliding', 'doors', 'but', 'fixed', 'openings', '.'], ['on', '2', '1', 'october', ',', 'reconnaissance', 'aircraft', 'took', 'and', 'artillery-observation', 'crews', 'directed', 'destructive', 'bombardments', 'on', 'artillery', 'batteries', '.'], ['charles', 'kingston', 'died', 'in', '1', '9', '0', '4', ',', 'three', 'months', 'after', 'he', 'and', 'harriett', 'celebrated', 'their', '5', '0', 'th', 'wedding', 'anniversary', '.'], ['while', 'all', 'of', 'its', '2', '0', 'students', 'when', 'the', 'forest', 'school', 'opened', 'were', 'male', ',', 'more', 'than', '6', '0', '%', 'of', 'the', 'students', 'of', 'the', 'college', 'were', 'female', 'as', 'of', '2', '0', '0', '3', '.'], ['they', 'ordain', 'deacons', ',', 'ministers', ',', 'and', 'bishops', 'from', 'within', 'their', 'congregations', 'by', 'a', 'process', 'called', '``', 'the', 'lot', \"''\", '.'], ['mhc', 'class', 'ii', 'molecules', ',', 'hla-dr', ',', 'and', 'hla-dq', 'and', 'hla-dp', ',', 'are', 'only', 'present', 'on', 'antigen', 'presenting', 'cells', 'and', 'are', 'responsible', 'for', 'presenting', 'molecules', 'from', 'invading', 'organisms', 'to', 'cells', 'of', 'the', 'immune', 'system', '.'], ['in', 'defense', 'of', 'approving', 'the', 'controversial', 'kia-san', 'miguel', 'trade', ',', 'narvasa', 'cited', 'that', 'tnt', 'katropa', 'also', 'tried', 'to', 'make', 'a', 'deal', 'with', 'kia', \"'s\", 'first', 'round', 'pick', '.'], ['this', 'variety', ',', 'greater', 'probably', 'in', 'palestine', 'than', 'in', 'any', 'other', 'country', 'in', 'the', 'same', 'latitude', ',', 'is', 'attributed', 'to', 'the', 'great', 'extremes', 'of', 'elevation', 'and', 'temperature', 'in', 'this', 'small', 'area', '.'], ['the', 'place', 'was', 'known', 'then', 'as', 'sitio', 'balubad', ',', 'which', 'was', 'then', 'still', 'part', 'of', 'the', 'town', 'of', 'binalatongan', '(', 'now', 'san', 'carlos', ')', '.'], ['he', 'is', 'the', 'son', 'of', 'american', 'multi-billionaire', 'businessman', 'rick', 'caruso', '.'], ['an', 'official', 'website', 'containing', 'teasers', 'of', 'the', 'project', ',', 'as', 'well', 'as', 'a', 'film', 'trailer', ',', 'was', 'launched', 'in', 'august', '2', '0', '0', '7', 'and', 'featured', 'a', 'regular', 'blog', 'updated', 'by', 'auf', 'der', 'maur', 'documenting', 'the', 'various', 'stages', 'of', 'the', 'project', '.'], ['during', 'this', 'period', 'the', 'magazine', 'published', 'a', 'chart', ',', 'typically', 'dominated', 'by', 'pop', 'records', '.'], ['already', 'embraced', 'by', 'broadcast', 'gospel', 'outlets', ',', 'the', 'ambassador', 'most', 'recently', 'performed', '``', 'gim', 'me', 'dat', '!', \"''\"], ['the', 'consular', 'section', 'for', 'passports', ',', 'visas', 'and', 'other', 'services', 'is', 'located', 'at', 'the', 'grove', 'house', ',', '2', '4', '8', 'a', 'marylebone', 'road', ',', 'london', ',', 'nw', '1', '6', 'jf', '(', 'entrance', 'from', 'lisson', 'grove', 'street', ')', '.'], ['pyland', 'is', 'approximately', 'west', 'of', 'houston', 'and', 'east', 'of', 'vardaman', '.'], ['when', 'objects', 'are', 'held', 'within', 'a', 'collection', ',', 'either', 'in', 'storage', 'or', 'on', 'display', 'in', 'an', 'exhibit', ',', 'the', 'primary', 'concern', 'should', 'be', 'on', 'the', 'continued', 'safety', 'of', 'the', 'collection', '.'], ['finally', 'it', 'turns', 'out', 'that', 'aurélie', 'is', 'pétillon', \"'s\", 'estranged', 'wife', ',', 'and', 'he', 'is', 'delighted', 'to', 'find', 'that', 'her', 'infidelities', 'mean', 'that', 'he', 'can', 'discontinue', 'his', 'ruinous', 'maintenance', 'payments', 'to', 'her', '.'], ['until', '1', '8', '5', '2', 'the', 'diocese', 'also', 'included', 'some', 'parishes', 'in', 'herefordshire', '.'], ['committed', 'to', 'this', 'focus', ',', 'too', 'inc.', 'launched', 'the', 'first', 'justice', ':', 'just', 'for', 'girls', 'stores', 'in', 'january', '2', '0', '0', '4', ';', 'many', 'of', 'the', 'early', 'justice', 'stores', 'were', 'in', 'converted', 'mishmash', 'stores', '.'], ['it', 'is', 'the', 'chef-lieu', 'of', 'the', 'rural', 'community', 'of', 'djilas', ',', 'located', 'in', 'the', 'fimela', 'arrondissement', ',', 'of', 'the', 'fatick', 'department', 'and', 'the', 'region', 'of', 'fatick', '.'], ['newbern', \"'s\", 'character', 'tries', 'to', 'have', 'dearborn', 'declared', 'mentally', 'incompetent', ';', 'the', 'effort', 'fails', ',', 'mostly', 'because', 'of', 'the', 'efforts', 'of', 'parker', \"'s\", 'character', ',', 'who', 'realizes', 'why', 'dearborn', 'is', 'held', 'in', 'esteem', 'by', 'his', 'neighbors', '.'], ['jack', ',', 'lu', 'and', 'the', 'woman', 'drive', 'away', 'as', 'patrick', 'blows', 'up', 'himself', 'and', 'the', 'infected', '.'], ['each', 'team', 'played', 'a', '1', '4', '0', '-game', 'schedule', ',', 'facing', 'the', 'seven', 'other', 'teams', 'in', 'the', 'same', 'league', '2', '0', 'times', 'apiece', '.'], ['he', 'was', 'expelled', 'from', 'the', 'university', ',', 'imprisoned', 'for', 'two', 'weeks', ',', 'and', 'deported', 'to', 'vilnius', 'for', 'participating', 'in', 'the', 'february', '1', '8', '9', '9', 'student', 'protests', '.'], ['in', 'one', 'of', 'them', ',', 'cosmologically', ',', 'the', 'meru', 'mountain', 'was', 'also', 'described', 'as', 'being', 'surrounded', 'by', 'mandrachala', 'mountain', 'to', 'the', 'east', ',', 'suparshva', 'mountain', 'to', 'the', 'west', ',', 'kumuda', 'mountain', 'to', 'the', 'north', 'and', 'kailasa', 'to', 'the', 'south', '.'], ['let', 'all', 'actors', 'be', 'peace', 'loving', 'and', 'unselfish', ',', 'not', 'trying', 'to', 'monopolise', 'the', 'benefit', 'and', 'the', 'good', 'of', 'the', 'land', 'that', 'belongs', 'to', 'all', 'of', 'us', '.'], ['he', 'thinks', 'that', 'she', 'could', 'be', 'behind', 'the', 'attack', 'to', 'win', 'her', 'over', 'in', 'hannes', \"'\", 'case', '.'], ['however', ',', 'as', 'a', 'result', 'of', 'the', 'financial', 'recovery', 'plan', 'and', 'ongoing', 'prudent', 'financial', 'management', ',', 'rnid', 'is', 'confident', 'in', 'its', 'ongoing', 'financial', 'sustainability', '.'], ['for', 'every', '1', '0', '0', 'females', 'age', '1', '8', 'and', 'over', ',', 'there', 'were', '9', '6', '.', '8', 'males', '.'], ['ashwell', 'returned', 'to', 'kaitotehe', 'mission', 'at', 'the', 'end', 'of', '1', '8', '6', '4', ',', 'however', 'the', 'war', 'in', 'the', 'waikato', 'had', 'scattered', 'the', 'māori', 'people', 'who', 'had', 'supported', 'the', 'mission', '.'], ['then', 'nepal', 'bhasa', 'academy', 'was', 'established', 'as', 'a', 'self-governing', 'corporate', 'body', '.'], ['a', 'post', 'office', 'operated', 'under', 'the', 'name', 'bluff', 'from', '1', '8', '9', '7', 'to', '1', '9', '0', '5', '.'], ['on', '1', '8', 'march', '2', '0', '1', '3', 'she', 'released', 'the', 'single', '``', 'underdog', \"''\", ',', 'the', 'song', 'peaked', 'to', 'number', '8', 'on', 'the', 'danish', 'singles', 'chart', '.'], ['doyle', 'finished', 'the', 'season', 'fourth', 'in', 'the', 'flat', 'jockeys', \"'\", 'championship', ',', 'the', 'highest-ever', 'ranking', 'for', 'a', 'woman', '.'], ['she', 'was', 'also', 'a', 'staff', 'physician', 'at', 'brigham', 'and', 'women', \"'s\", 'hospital', '.'], ['he', 'entered', 'the', 'living', 'room', 'where', 'his', 'wife', 'and', 'minorenti', 'were', 'sitting', 'waiting', 'for', 'him', 'and', 'fired', 'three', 'shots', 'with', 'his', '1', '2', '-gauge', 'browning', 'at', 'fallarino', 'who', 'was', 'killed', 'instantly', 'and', 'then', 'two', 'shots', 'at', 'minorenti', 'who', 'had', 'tried', 'in', 'vain', 'to', 'protect', 'himself', 'behind', 'a', 'small', 'table', '.'], ['in', 'mcintosh', 'county', ',', 'it', 'crosses', 'the', 'northernmost', 'arm', 'of', 'lake', 'eufaula', '.'], ['the', 'ministry', 'was', 'originally', 'created', 'as', '``', 'imperial', 'and', 'royal', 'ministry', 'of', 'the', 'interior', \"''\", ',', 'serving', 'as', 'the', 'empire-wide', 'interior', 'ministry', 'for', 'austria-hungary', '.'], ['during', 'the', 'same', 'synod', ',', 'john', 'also', 'had', 'bishop', 'isidore', 'of', 'monembasia', ',', 'a', 'disciple', 'of', 'gregory', ',', 'excommunicated', '.'], ['following', 'the', 'establishment', 'of', 'the', 'kingdom', 'the', 'family', 'moved', 'to', 'the', 'newly', 'built', 'palace', ',', 'al', 'shamsiah', 'palace', ',', 'outside', 'riyadh', 'which', 'is', 'in', 'the', 'al', 'murabba', 'neighborhood', '.'], ['this', 'idea', 'was', 'among', 'many', 'of', 'the', 'goals', 'of', 'the', 'city', 'beautiful', 'movement', 'in', 'the', 'united', 'states', ',', 'which', 'encouraged', 'beautifying', 'and', 'fostering', 'more', 'healthy', 'living', 'conditions', 'in', 'urban', 'centers', '.'], ['his', 'work', 'can', 'be', 'found', 'in', 'the', 'national', 'gallery', 'of', 'zimbabwe', '.'], ['jolyon', 'brettingham', 'smith', 'died', 'in', 'berlin', 'on', '1', '7', 'may', '2', '0', '0', '8', 'immediately', 'after', 'concluding', 'his', '``', 'jolyon', 'live', '-', 'the', 'english', 'connection', \"''\", 'radio', 'programme', 'on', 'rundfunk', 'berlin', 'brandenburg', '(', 'rbb', ')', '.'], ['the', 'patriots', 'used', 'tactics', 'such', 'as', 'property', 'confiscation', 'to', 'suppress', 'loyalism', 'and', 'drive', 'active', 'loyalists', 'away', '.'], ['the', '6', 'th', 'edward', 'jancarz', 'memorial', 'was', 'the', '1', '9', '9', '8', 'version', 'of', 'the', 'edward', 'jancarz', 'memorial', '.'], ['the', 'sbba', 'is', 'located', 'in', 'the', 'historic', 'building', 'of', 'the', '1', '8', 'th', 'century', 'solar', 'do', 'marques', 'do', 'lavradio', 'in', 'downtown', 'rio', 'de', 'janeiro', ',', 'in', 'the', 'lapa', 'neighborhood', ',', 'at', 'rua', 'do', 'lavradio', ',', 'nº', '8', '4', '.'], ['he', 'has', 'taught', 'at', 'various', 'institutes', 'including', 'design', 'academy', 'eindhoven', ',', 'the', 'rietveld', 'academy', 'in', 'amsterdam', ',', 'universidad', 'iberoamericana', 'mexico', 'city', ',', 'iceland', 'academy', 'of', 'the', 'arts', 'reykjavik', ',', 'the', 'acadia', 'summer', 'arts', 'program', 'maine', 'usa', '.'], ['although', 'sometimes', 'viewed', 'as', 'conservative', 'or', 'reactionary', 'by', 'today', \"'s\", 'standards', ',', 'smith', 'points', 'out', 'that', 'these', 'films', 'were', 'not', 'made', 'by', 'conservatives', 'or', 'reactionaries', 'but', 'instead', '``', 'by', 'some', 'of', 'the', 'most', 'liberal', 'and', 'progressive-minded', 'people', 'of', 'their', 'time', '.', \"''\"], ['prior', 'to', 'the', 'start', 'of', 'the', 'second', 'world', 'war', 'the', 'germans', 'deployed', 'the', 'system', 'at', 'many', 'luftwaffe', 'airfields', 'in', 'and', 'outside', 'germany', 'and', 'equipped', 'most', 'of', 'their', 'bombers', 'with', 'the', 'radio', 'equipment', 'needed', 'to', 'use', 'it', '.'], ['he', 'was', 'the', 'last', 'mayor', 'and', 'the', 'first', 'chairman', 'of', 'the', 'mahé', 'municipality', '.'], ['the', 'tank', 'is', 'comparable', 'in', 'design', 'to', 'the', 'm', '4', '1', 'series', 'of', 'american', 'tanks', ',', 'which', 'already', 'proved', 'itself', 'reasonably-capable', 'of', 'holding', 'its', 'own', 'against', 'the', 'threat', 'of', 'type', '5', '9', 'and', 't-', '5', '5', 'a', 'tanks', 'during', 'the', 'vietnam', 'war', ',', 'but', 'has', 'an', 'improved', 'electrical', 'system', '.'], ['then', 'he', 'was', 'appointed', 'president', 'of', 'the', 'pontifical', 'commission', '``', 'ecclesia', 'dei', \"''\", '.'], ['the', 'town', 'includes', 'numerous', 'hills', ',', 'lakes', ',', 'ponds', ',', 'blueberry', 'barrens', ',', 'and', 'scenic', 'vistas', 'of', 'hogs', 'bay', 'and', 'the', 'schoodic', 'foothills', '.'], ['winters', 'also', 'lost', 'on', 'points', 'in', 'september', '1', '9', '9', '8', 'to', 'junior', 'witter', ',', 'but', 'in', 'december', '1', '9', '9', '9', 'challenged', 'for', 'ricky', 'hatton', \"'s\", 'wbo', 'inter-continental', 'title', 'in', 'liverpool', '.'], ['she', 'was', 'the', 'eldest', 'daughter', 'of', 'abdul', 'rahman', 'bin', 'faisal', 'and', 'elder', 'sister', 'of', 'abdulaziz', 'bin', 'abdul', 'rahman', ',', 'who', 'would', 'found', 'the', 'modern', 'saudi', 'arabia', 'and', 'rule', 'as', 'its', 'first', 'king', '.'], ['meanwhile', ',', 'flora', 'calms', 'down', 'and', 'realizes', 'that', 'ivan', 'was', 'only', 'trying', 'to', 'protect', 'her', '.'], ['he', 'also', 'stated', 'that', ',', '``', 'as', 'long', 'as', 'there', 'will', 'be', 'readers', 'and', 'interest', ',', 'i', 'will', 'produce', 'more', 'hop-ciki-yayas', '.', \"''\"], ['``', 'looking', 'at', 'me', '(', \"j'aime\", 'regarder', ')', \"''\", 'is', 'a', 'song', 'by', 'belgian', 'dj', 'laurent', 'wéry', '&', 'amp', ';', 'sir-g', ',', 'from', 'his', 'debut', 'album', '``', 'ready', 'for', 'the', 'night', \"''\", '.'], ['it', 'is', 'also', 'found', 'in', 'the', 'tasman', 'sea', 'around', 'lord', 'howe', 'island', 'and', 'norfolk', 'island', '.'], ['the', 'ecw', 'originals', 'were', 'a', 'professional', 'wrestling', 'stable', 'that', 'has', 'made', 'appearances', 'in', 'various', 'wrestling', 'promotions', ',', 'such', 'as', 'total', 'nonstop', 'action', 'wrestling', ',', 'and', 'most', 'famously', 'wwe', '.'], ['this', 'film', 'was', 'shot', 'and', 'released', 'after', '``', 'national', 'lampoon', \"'s\", 'animal', 'house', \"''\", 'in', 'july', '1', '9', '7', '8', '.'], ['even', 'though', 'of', 'being', 'a', 'radio', 'disney-only', 'single', ',', 'a', 'video', 'was', 'still', 'made', 'to', 'promote', 'the', 'album', 'and', 'film', '.'], ['however', ',', 'due', 'to', 'delays', 'in', 'establishing', 'air', 'traffic', 'control', 'services', 'at', 'the', 'airport', ',', 'the', 'launch', 'date', 'was', 'pushed', 'to', '1', '1', 'may', 'and', 'finally', '2', '4', 'may', '2', '0', '0', '8', '.'], ['it', 'has', 'a', 'tropical', 'climate', 'and', 'an', 'annual', 'rainfall', 'of', '.'], ['as', 'a', 'duet', 'with', 'daniel', 'darc', 'for', 'the', 'latter', \"'s\", 'album', ',', '``', 'amours', 'suprêmes', \"''\", '.'], ['two', 'species', '(', '``', 's.', 'brasiliensis', \"''\", 'and', '``', 's.', 'sicariguensis', \"''\", ')', 'are', 'scrambling', 'or', 'decumbent', 'shrubs', ',', 'with', 'thin', 'stems', '(', 'up', 'to', '4', '.', '5', 'cm', 'across', ')', 'and', 'tuberous', 'roots', '.'], ['he', 'was', 'featured', 'on', '``', 'motor', 'of', 'love', \"''\", 'from', 'the', '``', 'flowers', 'in', 'the', 'dirt', \"''\", 'album', ',', 'recorded', 'at', 'mccartney', \"'s\", 'own', 'recording', 'studio', 'in', 'a', 'vintage', 'windmill', 'just', 'south', 'of', 'london', '.'], ['it', 'was', 'released', 'in', 'belgium', 'as', 'a', 'digital', 'download', 'on', '8', 'july', '2', '0', '0', '9', '.'], ['the', 'car', 'was', 'nicknamed', 'the', '``', 'size', 'zero', 'formula', 'one', 'car', \"''\", 'by', 'the', 'team', 'for', 'its', 'distinct', 'sharply', 'tapered', 'rear', 'end', ',', 'which', 'was', 'achieved', 'by', 'designing', 'the', 'honda', 'engine', 'to', 'operate', 'at', 'higher', 'temperatures', 'than', 'other', 'engines', '.'], ['pope', 'john', 'paul', 'ii', 'later', 'canonized', 'paulina', 'on', '1', '9', 'may', '2', '0', '0', '2', 'in', 'a', 'ceremony', 'in', 'saint', 'peter', \"'s\", 'square', ',', 'where', 'she', 'became', 'the', 'first', 'brazilian', 'female', 'saint', '.'], ['1', 'spot', 'on', 'espn', \"'s\", 'sportscenter', 'top', '1', '0', 'games', 'of', '2', '0', '0', '7', '.'], ['it', 'was', 'created', 'by', 'time', 'warner', ',', 'merging', 'together', 'its', 'cnn', 'and', '``', 'sports', 'illustrated', \"''\", 'brands', 'and', 'related', 'resources', '.'], ['surface', 'drainage', 'is', 'rare', 'due', 'to', 'most', 'streams', 'in', 'the', 'area', 'disappearing', 'into', 'caves', 'or', 'joints', 'within', 'the', 'rock', '.'], ['whitmire', 'was', 'clearly', 'deferring', 'to', 'steele', 'on', 'most', 'issues', '.'], ['previously', ',', 'the', 'area', 'around', 'fairburn', 'had', 'been', 'a', 'wetland', 'in', 'medieval', 'times', ',', 'but', 'was', 'drained', 'to', 'provide', 'agricultural', 'land', '.'], ['the', '4', '0', '2', 'nd', 'returned', 'to', 'the', 'soviet', 'union', 'in', 'april', 'but', 'remained', 'far', 'from', 'the', 'fighting', 'fronts', '.'], ['born', 'in', 'london', ',', 'son', 'of', 'clifford', 'norman', 'bowler', ',', 'a', 'watchmaker/jeweller', 'on', '5', '4', 'mill', 'lane', ',', 'nw', '6', '1', 'nj', ',', 'london', ',', 'he', 'became', 'a', 'member', 'of', 'the', '1', '9', '5', '0', 's', 'soho', 'set', 'alongside', 'john', 'minton', ',', 'francis', 'bacon', 'and', 'daniel', 'farson', '.'], ['it', 'was', 'noted', 'that', 'during', 'this', 'period', 'that', 'he', 'was', 'nearly', 'penniless', 'from', 'losing', 'at', 'poker', 'games', '.'], ['syngrapha', 'rectangula', ',', 'the', 'salt', 'and', 'pepper', 'looper', 'or', 'angulated', 'cutworm', ',', 'is', 'a', 'moth', 'of', 'the', 'family', 'noctuidae', '.'], ['in', '1', '7', '4', '9', ',', 'the', 'persian', 'colonizers', 'were', 'defeated', 'by', 'the', 'elected', 'imam', 'ahmad', 'bin', 'said', '.'], ['hyal', '1', 'uses', 'tyr', '2', '0', '2', 'as', 'a', 'substrate', 'binding', 'determinant', 'and', 'also', 'requires', 'proper', 'glycosylation', 'of', 'asn', '3', '5', '0', 'for', 'full', 'enzymatic', 'function', '.'], ['it', 'has', 'steep', 'and', 'partly', 'ice-free', 'north-northeast', 'slopes', ',', 'and', 'surmounts', 'mitev', 'glacier', 'to', 'the', 'northeast', ',', 'svetovrachene', 'glacier', 'to', 'the', 'south', 'and', 'doriones', 'saddle', 'to', 'the', 'west-southwest', '.'], ['it', 'was', 'here', 'where', 'nusrat', 'khan', 'captured', 'malik', 'kafur', 'who', 'would', 'later', 'become', 'a', 'military', 'general', '.'], ['the', 'chapter', 'understood', 'this', 'lack', 'of', 'condemnation', 'as', 'implied', 'consent', '.'], ['the', 'quran', 'uses', 'the', 'term', '``', 'ummi', \"''\", 'to', 'describe', 'muhammad', '.'], ['several', 'shells', 'can', 'be', 'started', 'or', 'be', 'configured', 'to', 'start', 'in', 'a', 'mode', 'where', 'only', 'a', 'limited', 'set', 'of', 'commands', 'and', 'actions', 'is', 'available', 'to', 'the', 'user', '.'], ['expelled', 'from', 'the', 'royal', 'palace', 'guard', 'after', 'eight', 'months', ',', 'holdt', 'spent', 'several', 'years', 'protesting', 'the', 'vietnam', 'war', 'and', 'conditions', 'in', 'the', 'third', 'world', '.'], ['he', 'served', 'in', 'the', 'florida', 'house', 'of', 'representatives', 'from', '1', '9', '6', '3', 'to', '1', '9', '6', '8', ',', 'representing', 'the', '8', '2', 'nd', 'district', '.'], ['it', 'contains', 'only', 'one', 'species', ',', 'dyotopasta', 'yumaella', ',', 'which', 'is', 'found', 'in', 'the', 'south-western', 'part', 'of', 'the', 'united', 'states', ',', 'including', 'arizona', ',', 'new', 'mexico', 'and', 'texas', '.'], ['the', 'deputy', 'director-general', '(', 'portfolio', 'strategy', ')', 'also', 'operates', 'as', 'the', 'chief', 'advisor', 'queensland', 'government', 'procurement', '.'], ['at', 'the', 'same', 'time', ',', 'production', 'had', 'to', 'be', 'severely', 'restricted', 'due', 'to', 'the', 'lack', 'of', 'foreign', 'exchange', '.'], ['their', 'height', 'may', 'vary', 'between', '3', 'mm', 'and', '1', '5', '2', 'mm', '.'], ['on', 'world', 'thrombosis', 'day', 'in', '2', '0', '1', '6', 'he', 'received', 'an', 'outstanding', 'achievement', 'award', 'in', 'parliament', 'from', 'thrombosis', 'uk', 'for', 'establishing', 'and', 'overseeing', 'a', 'national', 'strategy', 'for', 'reducing', 'venous', 'thromboembolism', 'in', 'hospitals', 'in', 'england'], ['elven', 'legacy', 'is', 'a', 'turn-based', 'strategy', 'video', 'game', 'developed', 'by', 'and', 'published', 'by', 'paradox', 'interactive', '.'], ['he', 'is', 'popularly', 'known', 'as', 'the', 'member', 'of', 'hip', 'hop', 'trio', 'n-dubz', 'releasing', 'three', 'studio', 'albums', 'and', 'winning', 'numerous', 'mobo', 'awards', 'with', 'the', 'group', '.'], ['there', 'were', '4', ',', '3', '6', '5', 'families', '(', '7', '9', '.', '7', '%', 'of', 'households', ')', ';', 'the', 'average', 'family', 'size', 'was', '3', '.', '3', '5', '.'], ['the', 'companies', ',', '2', '0', '6', 'strong', ',', 'never', 'engaged', 'the', 'enemy', ',', 'and', 'only', 'lost', 'two', 'men', ',', 'an', 'officer', 'who', 'resigned', 'in', 'march', ',', 'and', 'an', 'enlisted', 'man', 'who', 'deserted', '.'], ['after', 'several', 'thousand', 'hours', 'of', 'ground', 'running', 'and', 'more', 'than', '3', '0', '0', 'hours', 'of', 'flight', 'testing', 'the', 'engine', 'was', 'not', 'selected', ',', 'the', 'rolls-royce', 'avon', 'being', 'preferred', '.'], ['the', 'river', 'ju', '(', ')', 'and', 'river', 'zhang', '(', ')', ',', 'both', 'tributaries', 'of', 'the', 'yangtze', 'river', 'as', 'well', 'as', 'the', 'han', 'river', 'tributary', 'the', 'river', 'man', '(', ')', 'have', 'their', 'source', 'in', 'the', 'jingshan', 'mountains', '.'], ['john', 'paul', 'evans', '(', 'born', 'may', '2', ',', '1', '9', '5', '4', ')', 'is', 'a', 'canadian', 'former', 'professional', 'ice', 'hockey', 'centre', 'who', 'played', 'three', 'seasons', 'in', 'the', 'national', 'hockey', 'league', '(', 'nhl', ')', 'for', 'the', 'philadelphia', 'flyers', '.'], ['zee', 'has', 'released', 'three', 'albums', 'under', 'the', 'name', 'z-star', ',', 'voodoo', 'dragon', 'risin', '(', 'vdr', '2', '0', '0', '0', ')', ',', 'who', 'loves', 'lives', '(', 'emi', '2', '0', '0', '4', ')', 'and', 'masochists', '&', 'amp', ';', 'martyrs', '(', 'muthastar', '2', '0', '1', '0', ')', '.'], ['following', 'acquisition', 'by', 'the', 'national', 'park', 'service', ',', 'the', 'property', 'remained', 'vacant', '.'], ['with', 'its', '2', '6', '.', '7', '%', 'share', 'of', 'the', 'audience', '(', '2', '.', '6', '1', '0', '.', '4', '2', '8', 'watchers', ')', 'it', 'was', 'one', 'of', 'top', 'ten', 'most', 'popular', 'tv', 'shows', 'in', 'serbia', 'according', 'to', 'agb', 'nielsen', 'media', 'research', '.'], ['abdul', 'qayyum', '``', 'zakir', \"''\", '(', 'nom', 'de', 'guerre', 'abdullah', 'ghulam', 'rasoul', ';', 'born', 'january', '1', ',', '1', '9', '7', '3', ')', 'is', 'a', 'citizen', 'of', 'afghanistan', 'previously', 'held', 'in', 'the', 'united', 'states', 'guantanamo', 'bay', 'detainment', 'camps', ',', 'in', 'cuba', '.'], ['from', 'the', '1', '8', '6', '0', 's', 'to', 'the', '1', '8', '8', '0', 's', ',', 'a', 'range', 'of', 'buildings', ',', 'many', 'built', 'by', ',', 'or', 'for', 'politicians', ',', 'were', 'built', 'to', 'address', 'these', 'needs', '.'], ['marley', 'marl', 'started', 'his', 'career', 'as', 'mr.', 'magic', \"'s\", 'sidekick', 'and', 'dj', 'on', 'the', 'influential', 'radio', 'show', '``', 'rapp', 'attack', \"''\", ',', 'the', 'first', 'exclusively', 'hip-hop', 'music', 'program', 'to', 'be', 'aired', 'on', 'a', 'major', 'radio', 'station', ',', 'new', 'york', \"'s\", 'wbls-fm', '.'], ['the', 'band', 'announced', 'they', 'would', 'release', 'their', 'debut', 'full-length', 'record', 'titled', '``', 'everchanger', \"''\", 'on', 'august', '2', '6', ',', '2', '0', '1', '4', '.'], ['the', 'tories', 'were', 'defeated', 'by', 'the', 'new', 'democrats', 'under', 'howard', 'pawley', 'in', 'this', 'cycle', ',', 'and', 'connery', 'became', 'a', 'member', 'of', 'the', 'official', 'opposition', '.'], ['on', 'october', '8', ',', 'a', 'weak', 'area', 'of', 'low', 'pressure', 'developed', 'within', 'a', 'monsoon', 'trough', 'over', 'the', 'extreme', 'eastern', 'edge', 'of', 'the', 'pacific', 'basin', '.'], ['the', 'original', 'inhabitants', 'of', 'the', 'muralag', 'islands', ',', 'the', 'kaurareg', 'people', ',', 'shared', 'some', 'cultural', 'characteristics', 'with', 'cape', 'york', 'aborigines', 'and', 'spoke', 'the', 'same', 'basic', 'australian', 'language', ',', 'kalaw', 'lagaw', 'ya', '.'], ['he', 'is', 'the', 'artistic', 'director', 'of', 'the', 'little', 'theatre', '(', 'india', ')', '.'], ['the', 'scr-', '2', '6', '8', '(', 'for', '``', 'signal', 'corps', 'radio', 'no', '.'], ['by', '2', '0', '1', '8', ',', 'glass', 'and', 'steel', 'platform', 'barriers', 'were', 'installed', 'at', 'all', '4', '3', 'lrt', 'stations', 'to', 'prevent', 'people', 'from', 'falling', 'onto', 'the', 'tracks', '.'], ['in', '2', '0', '1', '3', ',', 'the', 'three', 'regional', 'journals', 'were', 'absorbed', 'into', 'the', 'applied', 'research', 'section', 'of', '``', 'forest', 'science', \"''\", '.'], ['the', 'safety', 'car', 'was', 'brought', 'out', 'on', 'lap', '2', '0', 'due', 'to', 'the', 'intensity', 'of', 'the', 'rain', ',', 'and', 'vettel', ',', 'webber', ',', 'massa', 'and', 'buemi', ',', 'who', 'had', 'not', 'changed', 'tyres', ',', 'went', 'to', 'the', 'pitlane', 'for', 'fresh', 'full', 'wets', '.'], ['in', 'april', '2', '0', '0', '6', 'with', 'the', 'club', 'still', 'celebrating', 'promotion', ',', 'dooley', 'announced', 'his', 'resignation', 'of', 'the', 'chairmanship', 'to', 'take', 'up', 'the', 'role', 'of', 'vice-president', '.'], ['he', 'joined', 'the', 'usa', 'men', \"'s\", 'national', 'basketball', 'team', 'in', 'the', '1', '9', '9', '4', 'fiba', 'world', 'championship', 'winning', 'the', 'gold', 'medal', '.'], ['this', 'represents', 'a', 'population', 'growth', 'rate', 'of', '-', '6', '.', '2', '%', '.'], ['although', 'rugby', 'was', 'well', 'organised', 'in', 'bulgaria', 'during', 'the', '1', '9', '6', '0', 's', ',', 'the', 'first', 'international', 'was', 'not', 'until', '1', '9', '7', '6', ',', 'when', 'bulgaria', 'lost', 'to', 'czechoslovakia', '.'], ['its', 'main', 'page', 'contains', 'the', 'title', 'iranian', 'virtual', 'society', 'and', 'states', 'that', 'all', 'content', 'is', 'controlled', 'in', 'accordance', 'with', 'iranian', 'law', ',', 'a', 'policy', 'intended', 'to', 'lower', 'the', 'risk', 'of', 'government', 'censorship', '.'], ['it', 'became', 'part', 'of', 'the', 'new', 'york', 'central', 'and', 'conrail', 'through', 'leases', ',', 'mergers', ',', 'and', 'takeovers', 'and', 'was', 'assigned', 'to', 'csx', 'in', 'the', '1', '9', '9', '9', 'breakup', 'of', 'conrail', '.'], ['there', 'were', '2', '4', '8', 'housing', 'units', 'at', 'an', 'average', 'density', 'of', '6', '0', '6', '.', '0', 'per', 'square', 'mile', '(', '2', '3', '3', '.', '5', '/km', ')', '.'], ['as', 'of', '2', '0', '1', '7', ',', 'the', 'total', 'strength', 'of', 'the', 'police', 'reached', 'approximately', '2', '9', '6', ',', '7', '0', '0', 'personnel', ',', 'including', '2', '6', '2', ',', '5', '0', '0', 'police', 'officers', ',', '9', '0', '0', 'imperial', 'guards', 'and', '3', '3', ',', '2', '0', '0', 'civilian', 'staff', '.'], ['nine', 'fishes', 'done', 'in', '2', '0', '0', '5', 'and', 'measures', '1', '6', 'x', '3', '6', 'inches', 'and', 'sold', 'at', 'sothebys', 'singapore', 'on', 'october', '9', ',', '2', '0', '0', '5', '.'], ['to', 'divide', 'a', 'number', 'by', 'a', 'fraction', ',', 'multiply', 'that', 'number', 'by', 'the', 'reciprocal', 'of', 'that', 'fraction', '.'], ['according', 'to', 'the', 'then', 'prevailing', 'customs', ',', 'she', 'was', 'married', 'when', 'she', 'was', 'only', 'nine', 'years', 'old', 'but', 'became', 'a', 'widow', 'soon', 'after', 'her', 'marriage', ',', 'even', 'before', 'her', 'marriage', 'was', 'consummated', ',', 'when', 'she', 'was', 'only', 'fourteen', 'years', 'of', 'age', '.'], ['unlike', 'other', 'models', 'such', 'as', 'behaveplus', 'and', 'farsite', 'that', 'treat', 'these', 'three', 'pillars', 'as', 'independent', 'phenomena', ',', 'cawfe', 'accounts', 'for', 'the', 'fact', 'that', 'there', 'are', 'interactions', 'and', 'feedbacks', 'between', 'these', 'three', 'predominant', 'factors', '(', 'e.g', '.'], ['they', 'subsequently', 'announced', 'the', 'finished', 'recordings', 'of', 'other', 'instruments', ':', 'bass', 'on', '1', 'september', ',', 'guitars', 'on', '6', 'september', ',', 'and', 'jansen', 'and', 'hietala', \"'s\", 'vocals', 'on', '2', '6', 'september', '.'], ['a', 'second', 'spin-off', 'series', 'titled', '``', 'guddu', 'the', 'great', \"''\", 'based', 'on', 'character', 'from', '``', \"''\", 'was', 'launched', 'on', 'amazon', 'prime', 'on', '1', 'january', '2', '0', '1', '9', '.'], ['in', 'practice', 'the', 'socialist', 'objective', 'was', 'a', 'dead', 'letter', '.'], ['at', 'the', 'end', 'of', 'the', 'war', ',', 'only', '2', '7', '4', 'individuals', 'of', '7', '2', 'species', 'remained', 'at', 'the', 'zoo', '.'], ['number', '1', ',', '6', ',', '7', ',', '9', ',', '1', '1', 'or', '1', '2', ',', 'or', '1', '3', '.'], ['stephen', 'james', \"o'meara\", 'estimates', 'the', 'overall', 'apparent', 'magnitude', 'of', 'the', 'cluster', 'to', 'be', '6', '.', '0', '.'], ['other', 'languages', 'spoken', 'at', 'home', 'included', 'arabic', '(', '9', '.', '7', '%', ')', ',', 'vietnamese', '(', '7', '.', '6', '%', ')', ',', 'hindi', '(', '6', '.', '9', '%', ')', ',', 'spanish', '(', '5', '.', '5', '%', ')', 'and', 'assyrian', 'neo-aramaic', '(', '4', '.', '6', '%', ')', '.'], ['there', 'may', 'have', 'been', 'as', 'many', 'as', '1', '8', 'of', 'them', 'and', 'the', 'holes', 'indicated', 'that', 'several', 'may', 'have', 'been', 'replaced', 'over', 'the', 'course', 'of', 'the', 'structure', \"'s\", 'use', '.'], ['lochmaeocles', 'is', 'a', 'genus', 'of', 'longhorn', 'beetles', 'of', 'the', 'subfamily', 'lamiinae', ',', 'containing', 'the', 'following', 'species', ':'], ['this', 'was', 'decided', 'in', 'the', 'same', 'way', 'as', 'the', 'general', 'classification', ',', 'but', 'only', 'riders', 'born', 'after', '1', 'january', '1', '9', '9', '5', 'were', 'eligible', 'to', 'be', 'ranked', 'in', 'the', 'classification', '.'], ['when', 'she', 'runs', 'outside', ',', 'pepé', 'is', 'there', 'already', ',', 'disguised', 'as', 'said', 'gentleman', '.'], ['peak', '8', 'is', 'home', 'to', 'some', 'of', 'the', 'premier', 'terrain', 'parks', 'in', 'the', 'country', ':', 'the', 'black', 'diamond', 'rated', 'freeway', 'and', 'blue', 'park', 'lane', 'terrain', 'parks', '.'], ['areas', 'near', 'the', 'periphery', 'of', 'urbanized', 'toronto', ',', 'like', 'cabbagetown', ',', 'were', 'viewed', 'as', 'ideal', 'places', 'to', 'develop', 'housing', 'for', 'toronto', \"'s\", 'growing', 'migrant', 'population', ',', 'leading', 'to', 'these', 'areas', 'to', 'be', 'developed', 'in', 'large', 'piecemeal', 'fashion', 'by', 'speculative', 'developers', '.'], ['several', 'times', ',', 'steele', 'had', 'to', 'move', 'into', 'an', 'adjoining', 'space', 'to', 'use', 'a', 'special', 'communications', 'link', 'so', 'he', 'could', 'speak', 'directly', 'with', 'higher', 'command', ',', 'in', 'all', 'probability', 'cincpac', 'in', 'hawaii', 'and', 'possibly', 'the', 'pentagon', ',', 'i', \"'m\", 'not', 'sure', 'which', '.'], ['these', 'actions', 'led', 'macarthur', 'to', 'be', 'viewed', 'as', 'the', 'new', 'imperial', 'force', 'in', 'japan', 'by', 'many', 'japanese', 'political', 'and', 'civilian', 'figures', ',', 'even', 'being', 'considered', 'to', 'be', 'the', 'rebirth', 'of', 'the', '``', 'shōgun', \"''\", '-style', 'government', 'which', 'japan', 'was', 'ruled', 'under', 'until', 'the', 'start', 'of', 'the', 'meiji', 'restoration', '.'], ['he', 'attended', 'a', 'primary', 'school', 'in', 'tianjin', 'where', 'most', 'of', 'his', 'schoolmates', 'were', 'from', 'affluent', 'backgrounds', 'while', 'he', 'was', 'not', 'from', 'a', 'wealthy', 'family', '.'], ['from', '1', '9', '8', '3', 'to', '1', '9', '8', '9', 'the', 'team', 'appeared', 'only', 'once', 'in', 'the', 'uefa', 'tournaments', '.'], ['``', 'voy', 'a', '1', '0', '0', '``', 'was', 'also', 'a', 'number', 'one', 'hit', 'in', 'latin', 'america', '.'], ['like', 'its', 'predecessor', ',', 'the', 'mate', '3', '0', 'series', 'uses', 'leica', 'optics', '.'], ['garden', 'crops', 'include', 'beans', ',', 'pumpkins', ',', 'and', 'sweet', 'potatoes', ';', 'bananas', ',', 'mangoes', ',', 'lemons', ',', 'pineapples', ',', 'sesame', ',', 'and', 'sugar', 'cane', 'are', 'grown', 'as', 'well', '.'], ['in', '1', '9', '7', '7', 'mohammed', 'was', 'appointed', 'commissioner', 'for', 'agriculture', 'for', 'sokoto', 'state', 'under', 'the', 'military', 'government', 'of', 'general', 'olusegun', 'obasanjo', ',', 'and', 'then', 'commissioner', 'for', 'education', 'for', 'sokoto', 'state', '.'], ['fontenais', 'is', 'a', 'municipality', 'in', 'the', 'district', 'of', 'porrentruy', 'in', 'the', 'canton', 'of', 'jura', 'in', 'switzerland', '.'], ['``', 'hardwick', \"''\", ',', 'nobs', ',', 'master', ',', 'came', 'into', 'ramsgate', '.'], ['the', 'wheelbase', 'was', 'extended', 'to', '2', '.', '4', '5', 'meters', '(', '8', \"'\", '1', '``', ')', '.'], ['a', 'post', 'office', 'was', 'established', 'at', 'sleeth', 'in', '1', '8', '8', '0', ',', 'and', 'remained', 'in', 'operation', 'until', 'it', 'was', 'discontinued', 'in', '1', '9', '0', '7', '.'], ['when', 'shannon', 'tells', 'endean', 'that', 'the', 'coup', 'was', 'really', 'conducted', 'on', 'behalf', 'of', 'the', 'general', ',', 'endean', 'is', 'furious', 'but', 'shannon', 'points', 'out', 'that', 'this', 'government', 'will', 'at', 'least', 'be', 'fair', ',', 'and', 'if', 'manson', 'wants', 'the', 'platinum', ',', 'he', 'will', 'have', 'to', 'pay', 'the', 'proper', 'market', 'price', '.'], ['aoujeft', 'is', 'one', 'of', 'the', 'four', 'departments', '(', 'officially', 'called', '``', 'moughataas', \"''\", ')', 'of', 'the', 'wider', 'adrar', 'region', '(', 'the', 'larger', 'administrative', 'division', 'being', 'called', 'a', '``', 'wilaya', \"''\", ')', ',', 'in', 'western', 'mauritania', '.'], ['utica', 'township', 'is', 'a', 'township', 'in', 'winona', 'county', ',', 'minnesota', ',', 'united', 'states', '.'], ['the', 'midden', 'is', 'now', 'part', 'of', 'the', 'nishinohama', 'historical', 'site', 'park', ';', 'however', ',', 'the', 'midden', 'itself', 'site', 'backfilled', 'after', 'excavation', ',', 'and', 'there', 'is', 'now', 'nothing', 'to', 'see', 'except', 'for', 'a', 'stone', 'monument', 'and', 'plaque', '.'], ['which', 'were', 'produced', 'and', 'curated', 'by', 'the', 'poet/playwright', 'kathyn', 'adisman', '.'], ['because', 'country', 'lanes', 'are', 'typically', '``', 'single', 'lane', \"''\", 'or', '``', 'single', 'track', \"''\", '(', 'that', 'is', ',', 'the', 'paved', 'road', 'is', 'not', 'wide', 'enough', 'for', 'two', 'vehicles', 'to', 'pass', ')', 'there', 'will', 'usually', 'be', 'official', 'or', 'unofficial', 'passing', 'places', 'along', 'the', 'route', 'for', 'traffic', 'to', 'pass', 'safely', '.'], ['lejía', 'lake', 'lies', 'in', 'the', 'puna', 'de', 'atacama', 'of', 'chile', ',', 'close', 'to', 'the', 'border', 'with', 'argentina', '.'], ['individuals', 'inherit', 'two', 'different', 'hla', 'haplotypes', ',', 'one', 'from', 'each', 'parent', ',', 'each', 'containing', 'more', 'than', '2', '0', '0', 'genes', 'relevant', 'to', 'helping', 'the', 'immune', 'system', 'recognize', 'foreign', 'invaders', '.'], ['it', 'was', 'listed', 'on', 'the', 'london', 'stock', 'exchange', 'from', '2', '0', '0', '0', 'to', '2', 'july', '2', '0', '1', '2', ',', 'and', 'was', 'a', 'constituent', 'of', 'the', 'ftse', '1', '0', '0', 'index', 'for', 'most', 'of', 'that', 'period', '.'], ['taking', 'that', 'action', 'by', 'its', 'unanimous', 'adoption', 'of', 'resolution', '1', '7', '5', '1', '(', '2', '0', '0', '7', ')', ',', 'the', 'council', 'noted', 'that', 'the', 'situation', 'in', 'the', 'democratic', 'republic', 'of', 'the', 'congo', 'continued', 'to', 'pose', 'a', 'threat', 'to', 'international', 'peace', 'and', 'security', 'in', 'the', 'region', '.'], ['it', 'was', 'named', 'after', 'ethnolinguists', ',', 'clement', 'anderson', 'akrofi', 'and', 'johann', 'gottlieb', 'christaller', '.'], ['the', 'home', 'plate', '/', 'grandstand', 'area', 'of', 'the', 'ballpark', 'was', 'tucked', 'into', 'the', 'spielbusch-beech', 'corner', ',', 'with', 'the', 'lot', 'being', 'otherwise', 'surrounded', 'by', 'a', 'board', 'fence', ',', 'except', 'for', 'the', 'left', 'field', 'area', ',', 'whose', 'high', 'masonry', 'wall', 'was', 'actually', 'the', 'rear', 'wall', 'of', 'the', 'armory', 'building', '.'], ['originally', 'seen', 'mainly', 'within', 'indiana', ',', 'the', 'channel', 'began', 'expanding', 'its', 'cable', 'provider', 'coverage', 'westward', 'in', '1', '9', '9', '4', '.'], ['the', 'mystery', 'of', 'who', 'planned', 'the', 'crime', 'still', 'remains', '.'], ['sarvanivāraṇaviṣkambhi', 'is', 'best', 'known', 'to', 'meditators', 'and', 'is', 'not', 'an', 'important', 'subject', 'to', 'individual', 'worship', 'like', 'the', 'other', 'seven', 'mahāsattvas', '.'], ['after', 'arriving', 'at', 'coast', 'city', ',', 'sayd', 'and', 'ganthet', 'are', 'two', 'of', 'the', 'heroes', 'who', 'make', 'a', 'stand', 'against', 'nekron', 'and', 'his', 'army', ',', 'including', 'an', 'attempt', 'to', 'free', 'the', 'guardians', 'of', 'oa', 'trapped', 'by', 'scar', 'in', 'the', 'black', 'central', 'power', 'battery', '.'], ['the', 'game', 'action', 'button', 'described', 'as', '``', 'about', 'keeping', 'your', 'eyes', 'on', 'balls', \"''\", 'was', 'inspired', 'by', 'tennis', '.'], ['by', 'the', 'end', 'of', 'world', 'war', 'ii', 'the', 'system', 'was', 'already', 'considered', 'out', 'of', 'date', ',', 'having', 'been', 'replaced', 'by', 'the', 'much', 'smaller', 'and', 'more', 'accurate', 'scr-', '5', '8', '4', 'microwave-based', 'system', '.'], ['it', 'was', 'during', 'this', 'period', 'that', 'obregón', ',', 'enrique', 'grau', ',', 'fernando', 'botero', ',', 'eduardo', 'ramírez', 'villamizar', 'and', 'édgar', 'negret', ',', 'came', 'to', 'be', 'known', 'as', 'the', '``', 'big', 'five', \"''\", 'of', 'colombian', 'art', '.'], ['he', 'is', 'a', 'student', 'of', 'physical', 'education', 'and', 'sports', 'at', 'the', 'black', 'sea', 'technical', 'university', '.'], ['this', 'can', 'never', 'be', 'possible', 'without', 'the', 'rule', 'of', 'law', 'in', 'the', 'land', '.'], ['myers', 'grove', 'opened', 'in', 'about', '1', '9', '6', '0', 'as', 'the', 'first', 'purpose-built', 'comprehensive', 'school', 'in', 'sheffield', '.'], ['the', 'community', 'was', 'located', '1', '.', '5', 'miles', 'south', 'of', 'old', 'mines', 'along', 'missouri', 'route', '2', '1', ',', 'north', 'of', 'potosi', '.'], ['in', 'the', 'three', 'original', 'assembly', 'halls', ',', 'luxury', 'vehicles', 'for', 'the', 'american', 'market', 'were', 'produced', '.'], ['this', 'painting', 'became', 'part', 'of', 'the', 'john', 'julius', 'angerstein', 'collection', 'and', 'was', 'purchased', 'at', 'auction', 'for', 'queen', 'victoria', 'in', '1', '8', '8', '3', '.'], ['in', '``', 'trail', 'of', 'tears', ',', \"''\", 'jerri', 'proves', 'herself', 'to', 'be', 'an', 'excellent', '``', 'indian', \"''\", ':', 'she', \"'s\", 'a', 'great', 'archer', ',', 'scalper', ',', 'and', 'torch-thrower', '.'], ['he', 'attended', 'lehigh', 'university', 'and', 'was', 'a', 'four-year', 'varsity', 'letter', 'winner', 'in', 'football', 'at', 'lehigh', 'university', 'as', 'a', 'running', 'back', '.'], ['the', 'kingdoms', 'of', 'kapisa-gandhara', 'in', 'modern-day', 'afghanistan', ',', 'zabulistan', 'and', 'sindh', '(', 'which', 'then', 'held', 'makran', ')', 'in', 'modern-day', 'pakistan', ',', 'all', 'of', 'which', 'were', 'culturally', 'and', 'politically', 'part', 'of', 'india', 'since', 'ancient', 'times', ',', 'were', 'known', 'as', '``', 'the', 'frontier', 'of', 'al', 'hind', \"''\", '.'], ['fair', 'trade', 'towns', 'are', 'also', 'encouraged', 'to', 'form', 'partnerships', 'with', 'other', 'networks', 'within', 'their', 'communities', 'such', 'as', 'religious', 'organizations', 'and', 'environmental', 'groups', '.'], ['the', 'combat', 'between', 'the', 'cavalry', 'troops', 'in', 'the', 'wings', '(', 'left', 'versus', 'right', ',', 'right', 'versus', 'left', ')', 'are', 'resolved', 'first', '.'], ['leading', 'french', 'challenger', 'dictus', ',', 'fourth', 'in', 'last', 'season', \"'s\", 'champion', 'stakes', 'just', 'behind', 'nijinsky', ',', 'and', 'now', 'fresh', 'from', 'victory', 'in', 'the', 'prix', 'jacques', 'le', 'marois', ',', 'where', 'he', 'defeated', 'sparkler', 'by', 'half', 'a', 'length', ',', 'lined', 'up', 'alongside', 'ashleigh', '.'], ['today', ',', 'the', 'peace', 'river', 'supplies', 'over', 'six', 'million', 'gallons', 'per', 'day', 'of', 'drinking', 'water', 'to', 'the', 'people', 'in', 'the', 'region', '.'], ['as', 'of', 'the', 'census', 'of', '2', '0', '1', '0', ',', 'there', 'were', '2', '3', ',', '0', '5', '5', 'people', ',', '9', ',', '9', '7', '4', 'households', ',', 'and', '5', ',', '8', '1', '8', 'families', 'living', 'in', 'the', 'city', '.'], ['the', 'average', 'household', 'size', 'was', '2', '.', '5', '3', 'and', 'the', 'average', 'family', 'size', 'was', '2', '.', '9', '8', '.'], ['this', 'work', 'revolutionized', 'the', 'retrieval', 'of', 'genes', 'in', 'drosophila', 'and', 'subsequently', 'contributed', 'to', 'progress', 'in', 'metazoan', 'molecular', 'and', 'developmental', 'genetics', '.'], ['lundager', 'was', 'among', 'the', '2', '0', '8', 'danes', 'that', 'arrived', 'in', 'rockhampton', 'from', 'the', '``', 'charles', 'dickens', \"''\", '.'], ['in', '1', '9', '9', '3', ',', 'mas', 'reached', 'south', 'america', 'when', 'the', 'airline', 'received', 'its', 'boeing', '7', '4', '7', 'aircraft', '.'], ['an', 'economic', 'boom', 'in', 'malaysia', 'during', 'the', '1', '9', '8', '0', 's', 'spurred', 'the', 'growth', 'of', 'mas', '.'], ['it', 'also', 'attained', 'the', 'number', '2', '8', 'position', 'on', 'the', 'uk', 'album', 'chart', '.'], ['this', 'chart', 'was', 'first', 'published', '1', '1', 'june', '1', '9', '9', '5', 'as', 'the', 'alternative', '3', '0', 'by', '``', 'rpm', \"''\", 'magazine', '.'], ['yasuhiro', 'tanaka', '(', '田中', '靖洋', ',', 'born', 'june', '2', '1', ',', '1', '9', '8', '7', 'in', 'komatsu', ',', 'ishikawa', ')', 'is', 'a', 'japanese', 'professional', 'baseball', 'pitcher', 'for', 'the', 'chiba', 'lotte', 'marines', 'in', 'japan', \"'s\", 'nippon', 'professional', 'baseball', '.'], ['once', 'the', 'game', 'was', 'over', ',', 'even', 'though', 'the', 'date/time', 'was', 'july', '5', ',', '3', ':', '5', '5', 'a.m.', ',', 'the', 'braves', \"'\", 'stadium', 'crew', 'shot', 'off', 'the', 'scheduled', 'fourth', 'of', 'july', 'post-game', 'fireworks', 'for', 'the', 'fans', 'who', 'endured', 'to', 'the', 'end', '.'], ['the', 'film', 'was', 'a', 'remake', 'of', 'the', '1', '9', '8', '2', 'telugu', 'film', '``', 'gruha', 'pravesam', \"''\", ',', 'starring', 'mohan', 'babu', 'and', 'jayasudha', 'in', 'the', 'lead', 'roles', '.'], ['the', 'rest', 'of', 'the', 'system', 'can', 'either', 'be', 'digital', 'or', 'analog', '.'], ['the', '``', 'associated', 'press', \"''\", 'wrote', ':', '``', 'for', 'the', 'first', 'time', 'in', 'the', 'tony', \"'s\", '3', '9', '-year', 'history', ',', 'awards', 'in', 'three', 'categories', '-', 'best', 'actor', 'and', 'actress', 'in', 'a', 'musical', 'and', 'best', 'choreography', '-', 'were', 'scrapped', 'because', 'of', 'a', 'lack', 'of', 'candidates', '.', \"''\"], ['the', 'hindwings', 'are', 'light', 'fuscous', ',', 'becoming', 'darker', 'towards', 'the', 'termen', '.'], ['in', 'november', '2', '0', '1', '0', ',', 'the', 'az', 'reinforced', 'its', 'munich', 'city', 'desk', '.'], ['when', 'susanna', 'lees', 'died', 'in', '1', '9', '0', '2', ',', 'she', 'left', '$', '2', '0', ',', '0', '0', '0', 'to', 'the', 'institute', '.'], ['with', 'clinton', 'responding', 'in', 'his', 'speech', ':', '``', 'if', 'you', 'took', 'the', 'words', ',', \"'white\", \"'\", 'and', \"'black\", \"'\", 'and', 'you', 'reversed', 'them', ',', 'you', 'might', 'think', 'david', 'duke', 'was', 'giving', 'that', 'speech', '.', \"''\"], ['however', ',', 'she', 'was', 'warmly', 'received', 'in', 'the', 'port', ',', 'the', 'local', 'stevedores', 'banding', 'together', 'to', 'invest', '$', '2', '5', '0', 'worth', 'of', 'shares', 'in', 'the', 'venture', '.'], ['separately', ',', 'each', 'side', 'had', 'failed', 'in', 'their', 'bid', 'to', 'acquire', 'tip', 'top', 'tailors', ',', 'but', 'during', 'the', 'course', 'of', 'lunch', 'they', 'agreed', 'to', 'pool', 'their', 'efforts', 'and', 'offer', 'the', 'dunklemans', 'the', 'deal', 'they', 'wanted', '.'], ['the', 'german', 'mediatization', 'brought', 'an', 'end', 'to', 'these', 'short-lived', 'counties', 'in', '1', '8', '0', '6', ',', 'when', 'their', 'territories', 'were', 'divided', 'between', 'the', 'grand', 'duchy', 'of', 'berg', ',', 'the', 'grand', 'duchy', 'of', 'hesse', ',', 'nassau-weilburg', 'and', 'nassau-usingen', '.'], ['in', '1', '9', '6', '5', ',', 'local', 'politician', 'tang', 'qingsong', '(', '湯慶松', ')', 'called', 'for', 'the', 'temple', \"'s\", 'renovation', ',', 'and', 'the', 'original', 'building', 'was', 'replaced', 'by', 'a', 'reinforced', 'concrete', 'structure', 'in', '1', '9', '6', '7', '.'], ['resistance', 'was', 'light', 'until', 'the', 'leading', 'elements', 'of', 'the', 'battalion', 'arrived', 'in', 'front', 'of', 'the', 'high', 'ground', 'south', 'of', 'hukkyo-ri', ',', 'halfway', 'to', 'pyongyang', '.'], ['all', '1', '0', 'southeast', 'asian', 'nations', 'competed', 'in', 'the', 'tournament', '.'], ['when', 'measuring', 'femoral', 'malrotation', 'with', 'ultrasounds', ',', 'a', 'patient', \"'s\", 'thighs', 'are', 'fixed', 'symmetrically', 'while', 'the', 'degree', 'of', 'rotation', 'of', 'the', 'femoral', 'shaft', 'is', 'measured', '.'], ['ackroyd', 'rescued', 'many', 'of', 'the', 'wounded', 'from', 'the', '1', 'st', 'south', 'african', 'infantry', 'brigade', 'and', 'there', 'is', 'a', 'memorial', 'to', 'him', 'in', 'the', 'room', 'commemorating', 'delville', 'wood', 'at', 'fort', 'beaufort', 'historical', 'museum', ',', 'south', 'africa', '.'], ['secondary', 'schools', 'within', 'brighton', 'includes', 'brighton', 'grammar', 'school', ',', 'brighton', 'secondary', 'college', ',', 'firbank', 'girls', \"'\", 'grammar', 'school', ',', 'haileybury', \"'s\", 'castlefield', 'campus', ',', 'st', 'leonard', \"'s\", 'college', ',', 'xavier', 'college', \"'s\", 'kostka', 'hall', 'junior', 'campus', ',', 'and', 'star', 'of', 'the', 'sea', 'college', '.'], ['yen', ',', 'known', 'to', 'his', 'many', 'english', 'speaking', 'friends', 'as', '``', 'jimmy', ',', \"''\", 'was', 'a', 'chinese', 'educator', 'and', 'organizer', 'known', 'for', 'his', 'work', 'in', 'mass', 'literacy', 'and', 'rural', 'reconstruction', ',', 'first', 'in', 'china', ',', 'then', 'in', 'many', 'countries', '.'], ['he', 'served', 'as', 'assistant', 'majority', 'leader', 'in', '1', '9', '6', '5', 'and', 'minority', 'leader', 'in', '1', '9', '6', '6', '.'], ['the', 'specification', 'was', 'changed', ',', 'moving', 'the', 'crewmen', \"'s\", 'positions', 'to', 'be', 'like', 'those', 'in', 'the', 'skyraider', 'which', 'necessitated', 'a', 'complete', 'redesign', 'of', 'the', 'fuselage', 'and', 'wing', 'centre', 'section', '.', ')'], ['the', 'buried', 'remains', 'of', 'the', 'eastern', 'part', 'of', 'the', 'monastic', 'church', ',', 'which', 'contained', 'the', 'canons', \"'\", 'choir', 'and', 'presbytery', ',', 'lie', 'within', 'the', 'present', 'churchyard', 'and', 'are', 'included', 'in', 'the', 'scheduling', '.'], ['in', '2', '0', '2', '0', ',', 'he', 'was', 'elected', 'to', 'academia', 'europaea', '.'], ['by', '1', '9', '8', '1', ',', 'the', 'use', 'of', 'dieldrin', 'worldwide', 'was', 'limited', 'to', 'sugarcane', 'and', 'bananas', ',', 'and', 'these', 'uses', 'were', 'deregistered', 'by', '1', '9', '8', '5', '.'], ['south', 'west', 'trains', 'operated', 'a', 'fleet', 'of', 'metro-style', 'commuter', 'trains', 'on', 'services', 'from', 'london', 'waterloo', 'to', 'shepperton', ',', 'hampton', 'court', ',', 'woking', ',', 'guildford', ',', 'dorking', 'and', 'chessington', ',', 'as', 'well', 'as', 'services', 'on', 'the', 'kingston', 'and', 'hounslow', 'loops', 'and', 'occasionally', 'on', 'windsor', 'line', 'services', '.'], ['benirschke', 'grew', 'up', 'in', 'glückstadt', ',', 'a', 'small', 'town', 'in', 'northern', 'germany', '.'], ['ball', 'mice', 'and', 'wheel', 'mice', 'were', 'manufactured', 'for', 'xerox', 'by', 'jack', 'hawley', ',', 'doing', 'business', 'as', 'the', 'mouse', 'house', 'in', 'berkeley', ',', 'california', ',', 'starting', 'in', '1', '9', '7', '5', '.'], ['the', 'house', 'was', 'designed', 'by', 'henry', 'beston', 'in', '1', '9', '2', '5', '.'], ['however', ',', 'the', 'commonwealth', 'still', 'held', 'the', 'right', 'of', 'veto', '.'], ['garment', 'workers', 'in', 'factories', 'responded', 'to', 'the', 'movement', 'by', 'participating', 'with', 'the', 'hashtag', '#', 'imadeyourclothes', '.'], ['he', 'and', 'his', 'wife', 'announced', 'their', 'intention', 'to', 'divorce', 'in', 'september', '2', '0', '0', '5', 'after', 'eighteen', 'years', 'of', 'marriage', '.'], ['chryseobacterium', 'viscerum', 'is', 'a', 'gram-negative', 'and', 'rod-shaped', 'bacteria', 'from', 'the', 'genus', 'of', 'chryseobacterium', 'which', 'has', 'been', 'isolated', 'from', 'the', 'gills', 'and', 'livers', 'from', 'rainbow', 'trouts', '.'], ['``', ',', 'which', 'aired', 'on', 'the', 'tokyo', 'broadcasting', 'station', '.'], ['culcairn', 'is', 'an', 'excellent', 'example', 'of', 'an', 'early', 'timber', 'roadside', 'station', 'building', 'with', 'a', 'major', 'residence', '(', 'no', 'longer', 'owned', 'by', 'state', 'rail', ')', 'and', 'good', 'platform', 'and', 'details', 'surviving', '.'], ['michael', 'dean', 'woodson', '(', 'born', 'march', '2', '4', ',', '1', '9', '5', '8', ')', 'is', 'an', 'american', 'basketball', 'coach', 'and', 'former', 'professional', 'player', 'who', 'is', 'the', 'head', 'coach', 'of', 'the', 'indiana', 'hoosiers', 'men', \"'s\", 'team', '.'], ['a', 'serine/threonine', 'protein', 'kinase', '(', ')', 'is', 'a', 'kinase', 'enzyme', 'that', 'phosphorylates', 'the', 'oh', 'group', 'of', 'serine', 'or', 'threonine', '(', 'which', 'have', 'similar', 'sidechains', ')', '.'], ['examples', 'of', 'effects', 'are', 'stimulation', 'of', 'immune', 'functions', ',', 'absorption', 'of', 'essential', 'nutrients', ',', 'production', 'of', 'the', 'powerful', 'anti-oxidant', 'h', '2', 'gas', 'and', 'syntheses', 'of', 'certain', 'vitamins', '.'], ['mária', 'zakariás', '(', 'born', 'december', '2', '8', ',', '1', '9', '5', '2', ')', 'is', 'a', 'hungarian', 'sprint', 'canoer', 'who', 'competed', 'from', 'the', 'mid-', '1', '9', '7', '0', 's', 'to', 'the', 'early', '1', '9', '8', '0', 's', '.'], ['in', 'june', '2', '0', '1', '4', 'stamford', 'hill', 'shomrim', 'received', 'a', 'formal', 'commendation', 'award', 'from', 'the', 'outgoing', 'hackney', 'police', 'borough', 'commander', '-', 'chief', 'superintendent', 'matthew', 'horne', '.'], ['morghen', \"'s\", 'fame', ',', 'however', ',', 'soon', 'extended', 'over', 'europe', ';', 'and', 'the', 'institute', 'of', 'france', ',', 'as', 'a', 'mark', 'of', 'their', 'admiration', 'of', 'his', 'talents', ',', 'elected', 'him', 'an', 'associate', 'in', '1', '8', '0', '3', '.'], ['hygiene', 'measures', ',', 'including', 'laundry', 'hygiene', ',', 'are', 'an', 'important', 'part', 'of', 'reducing', 'spread', 'of', 'antibiotic', 'resistant', 'strains', '.'], ['while', 'still', 'in', 'mexico', ',', 'he', 'exhibited', 'his', 'art', '``', 'dibujos', 'de', 'músico', \"''\", '.'], ['ncac', 'assists', 'individuals', ',', 'community', 'groups', ',', 'and', 'institutions', 'with', 'strategies', 'and', 'resources', 'for', 'resisting', 'censorship', 'and', 'creating', 'a', 'climate', 'hospitable', 'to', 'free', 'expression', '.'], ['from', 'a', 'young', 'age', ',', 'cole', 'cash', 'took', 'part', 'in', 'his', 'con', 'man', 'father', 'jacob', 'winston', '``', 'win', \"''\", 'cash', \"'s\", 'various', 'grifts', ',', 'until', 'cole', 'witnessed', 'his', 'father', \"'s\", 'apparent', 'murder', 'at', 'the', 'hands', 'of', 'mobster', 'sam', 'del', 'gracci', '.'], ['the', 'turret', 'projects', 'another', 'and', 'the', 'lookout', 'tower', 'extends', 'a', 'further', 'giving', 'a', 'total', 'height', 'of', 'for', 'the', 'structure', '.'], ['historian', 'manuel', 'caballero', 'argues', 'that', 'while', 'gómez', \"'s\", 'final', 'intention', 'was', 'to', 'prevent', 'his', 'enemies', 'from', 'obtaining', 'weapons', ',', 'the', 'law', 'contributed', 'to', 'avoid', 'civil', 'wars', 'in', 'venezuela', 'for', 'the', 'next', 'century', '.'], ['the', 'community', 'had', 'lost', '6', '0', '%', 'of', 'its', 'membership', 'in', '2', '5', 'years', ',', 'and', 'those', 'left', 'were', 'ageing', '.'], ['dailey', 'is', 'widely', 'credited', 'with', 'delivering', 'the', 'title', 'line', 'during', 'the', 'chorus', 'of', 'the', '1', '9', '8', '2', 'rush', 'song', '``', 'subdivisions', \"''\", ',', 'although', 'he', 'denied', 'this', '.'], ['in', '2', '0', '2', '0', ',', 'lanegan', 'contributed', 'a', 'spoken-word', 'vocal', 'performance', 'to', 'the', 'song', '``', 'the', 'mirror', \"''\", 'by', 'english', 'rock', 'band', 'hey', 'colossus', ',', 'from', 'their', 'album', '``', 'dances/curses', \"''\", '.'], ['finally', ',', 'the', 'original', 'trial', 'judge', 'suspended', 'boloff', \"'s\", 'sentence', 'and', 'he', 'was', 'released', 'on', 'his', 'own', 'recognizance', '.'], ['despite', 'the', 'violence-free', 'requirements', 'of', 'the', 'main', 'character', ',', 'however', ',', 'a', 'player', 'could', 'die', 'and', 'be', 'reincarnated', 'in', 'a', 'number', 'of', 'different', 'forms', 'like', 'a', 'human', ',', 'a', 'pig', ',', 'a', 'dog', ',', 'or', 'a', 'worm', '.'], ['it', 'and', 'focuses', 'on', 'trans', 'experiences', 'in', 'the', 'pacific', 'north-west', 'and', 'juxtaposes', 'archival', 'materials', 'and', 'contemporary', 'art', '.'], ['research', 'suggests', 'that', 'the', 'best', 'course', 'of', 'treatment', 'for', 'patients', 'with', 'a', 'gastric', 'tube', 'is', 'periodic', 'professional', 'cleaning', ',', 'maintained', 'with', 'routine', 'home', 'use', 'of', 'a', 'non-foaming', 'anti-calculus', 'dentifrice', '(', 'toothpaste', ')', '.'], ['after', 'the', 'return', 'to', 'civilian', 'rule', 'in', '1', '9', '7', '9', ',', 'mohammed', 'ran', 'unsuccessfully', 'for', 'deputy', 'governor', 'of', 'sokoto', 'state', 'on', 'the', 'great', 'nigeria', 'people', \"'s\", 'party', '(', 'gnpp', ')', 'platform', '.'], ['digital', 'trends', 'editorial', 'team', 'is', 'led', 'by', 'editor-in-chief', 'jeremy', 'kaplan', 'and', 'guided', 'by', 'co-founders', 'ian', 'bell', 'and', 'dan', 'gaul', '.'], ['album', ',', 'released', 'in', '2', '0', '0', '0', ',', 'contains', 'a', '1', '9', '7', '4', 'performance', 'of', '``', 'laugh', ',', 'laugh', \"''\", 'recorded', 'during', 'a', 'concert', 'in', 'fair', 'oaks', 'village', 'near', 'sacramento', ',', 'california', '.'], ['she', 'was', 'also', 'the', 'first', 'comedian', 'to', 'perform', 'when', 'the', 'chicago', 'improv', 'club', 'opened', '.'], ['in', '1', '9', '9', '1', ',', 'he', 'wrote', '``', 'stariot', 'džumbušlija', \"''\", ',', 'performed', 'by', 'serbian', 'folk', 'singer', 'ana', 'bekuta', ',', 'at', 'the', 'valandovo', 'festival', '.'], ['the', 'film', \"'s\", 'final', 'gross', 'collection', 'is', 'estimated', 'as', 'from', 'kerala', 'with', 'a', 'share', 'of', '.'], ['the', 'race', 'was', 'not', 'included', 'on', 'the', '2', '0', '2', '1', 'indycar', 'series', 'schedule', '.'], ['on', 'february', '1', '1', ',', 'her', 'team', 'started', 'donating', 'sanitary', 'pads', 'to', 'hospitals', 'in', 'need', '.'], ['the', 'nyu', 'archives', 'contains', 'documents', ',', 'photographs', 'or', 'drawings', 'collected', 'since', '1', '8', '5', '4', ',', 'including', 'records', 'or', 'notebooks', 'of', 'some', 'notable', 'people', '.'], ['bh', 'claims', 'that', 'pupkewitz', 'invoiced', 'and', 'collected', 'money', 'for', 'the', 'orders', '.'], ['the', 'first', 'page', 'of', 'the', 'passport', 'provides', 'the', 'identity', 'of', 'the', 'passport', 'holder', 'in', 'arabic', 'and', 'english', '.'], ['on', '3', 'september', 'a', 'loan', 'was', 'issued', 'in', 'amsterdam', 'to', 'keep', 'three', 'threatened', 'houses', 'afloat', '.'], ['even', 'a', 'ritually', 'unclean', 'priest', 'could', 'enter', 'to', 'perform', 'various', 'housekeeping', 'duties', '.'], ['the', '``', 'unix-haters', 'handbook', \"''\", 'dedicated', 'an', 'entire', 'chapter', 'to', 'perceived', 'problems', 'and', 'weaknesses', 'of', 'sendmail', '.'], ['the', 'cotswolds', 'modification', 'followed', 'after', 'a', '1', '9', '8', '8', 'meeting', 'in', 'the', 'uk', 'cotswolds', '.'], ['on', 'its', 'four', 'corners', 'are', 'engraved', 'idols', 'of', 'shri', 'adinathji', 'in', 'digambar', 'style', 'which', 'each', 'are', 'five', 'feet', '(', 'about', '1', '.', '5', 'meters', ')', 'high', 'and', 'elsewhere', 'are', 'engraved', 'several', 'small', 'idols', 'consecrated', 'to', 'jain', 'lineage', 'of', 'deities', '.'], ['he', 'was', 'nicknamed', '``', 'the', 'mummy', \"''\", 'for', 'the', 'amount', 'of', 'sports', 'tape', 'he', 'would', 'use', ',', 'eventually', 'neededing', 'to', 'go', 'through', '5', 'surgeries', 'and', '2', 'knee', 'replacements', '.'], ['in', 'january', '2', '0', '0', '4', '``', 'variety', \"''\", 'reported', 'that', 'steve', 'carell', ',', 'of', 'the', 'comedy', 'central', 'program', '``', 'the', 'daily', 'show', 'with', 'jon', 'stewart', \"''\", ',', 'was', 'in', 'talks', 'to', 'play', 'the', 'role', '.'], ['the', 'oldest', 'surviving', 'literary', 'use', 'of', 'the', 'catalan', 'language', 'is', 'considered', 'to', 'be', 'the', 'religious', 'text', 'known', 'as', 'homilies', \"d'organyà\", ',', 'written', 'either', 'in', 'late', '1', '1', 'th', 'or', 'early', '1', '2', 'th', 'century', '.'], ['program', 'director', 'rick', 'thomas', 'and', 'music', 'director', 'michael', 'martin', 'set', 'a', 'plan', 'in', 'motion', 'to', 'overtake', 'kmel', ';', 'they', 'came', 'up', 'with', 'a', 'strategy', 'of', 'playing', '``', 'old', 'school', \"''\", 'and', 'up', 'tempo', 'freestyle/dance', 'songs', 'like', 'those', 'heard', 'on', 'heritage', 'san', 'jose', 'radio', 'station', 'hot', '9', '7', '.', '7', '.'], ['transferring', 'to', 'the', 'university', 'of', 'minnesota', 'after', 'only', 'a', 'year', ',', 'he', 'enrolled', 'in', 'the', 'journalism', 'program', '.'], ['the', 'cessna', 'citation', 'x', 'is', 'an', 'american', 'business', 'jet', 'produced', 'by', 'cessna', 'and', 'part', 'of', 'the', 'citation', 'family', '.'], ['funding', 'for', 'operations', 'is', 'currently', 'being', 'provided', 'by', 'the', 'nasa', 'orbital', 'debris', 'program', 'office', '.'], ['it', 'also', 'received', 'several', 'awards', 'and', 'nominations', 'at', 'various', 'award', 'shows', 'between', '2', '0', '0', '9', 'and', '2', '0', '1', '0', '.'], ['if', 'any', 'cavalry', 'units', 'are', 'left', ',', 'they', 'can', 'then', 'be', 'sent', 'to', 'help', 'in', 'the', 'centre', '.'], ['other', 'times', ',', 'if', 'a', 'hold', 'entirely', 'breaks', 'off', ',', 'it', 'may', 'be', 'glued', 'back', 'on', '.'], ['assaulted', 'by', 'police', 'and', 'jailed', 'himself', ',', 'he', 'was', 'released', 'from', 'prison', 'a', 'day', 'before', 'india', 'became', 'independent', '.'], ['they', 'are', 'shouldered', 'at', 'the', 'summit', ',', 'which', 'is', 'slightly', 'exserted', ',', 'and', 'marked', 'by', 'obsolete', 'axial', 'ribs', 'which', 'are', 'best', 'expressed', 'on', 'the', 'early', 'turns', '.'], ['in', '1', '9', '9', '7', ',', 'when', 'she', 'was', 'fifteen', 'years', 'old', ',', 'pohan', 'participated', 'in', 'a', 'teenage', 'model', 'search', 'called', 'gadis', 'sampul', ',', 'coming', 'second', 'runner', 'up', '.'], ['the', 'old', 'court', 'house', 'has', 'been', 'a', 'favored', 'political', 'campaign', 'stop', '.'], ['it', 'was', 'a', 'popular', 'and', 'occasionally', 'controversial', 'programme', 'that', 'introduced', 'children', 'to', 'various', 'topics', '.'], ['for', 'example', ',', 'moving', 'right', 'one', 'from', 'the', 'top-left', 'square', 'yields', 'a', 'half-cycle', 'increase', 'in', 'the', 'horizontal', 'frequency', '.'], ['while', 'raising', 'money', 'for', 'others', ',', 'he', 'was', 'often', 'broke', 'himself', ',', 'investing', 'his', 'money', 'in', 'his', 'school', 'and', 'hospital', 'projects', 'and', 'eating', 'cheese', 'and', 'crackers', 'for', 'lunch', 'rather', 'than', 'accept', 'gifts', 'from', 'parishioners', ',', 'lest', 'they', 'suspect', 'he', 'was', 'working', 'for', 'his', 'own', 'benefit', 'rather', 'than', 'for', 'theirs', '.'], ['the', 'first', 'two', 'issues', 'drew', 'some', 'criticism', 'for', 'lack', 'of', 'world', 'development', 'and', 'cliché', 'dialogue', ',', 'but', 'reviewers', 'found', 'these', 'issues', 'were', 'resolved', 'in', 'devi', '#', '3', '.'], ['a', 'matrix', 'formula_', '2', 'is', 'negative', '(', 'semi', ')', 'definite', 'if', 'and', 'only', 'if', 'formula_', '2', '8', '2', 'is', 'positive', '(', 'semi', ')', 'definite', '.'], ['the', 'general', 'opinion', 'being', 'that', 'his', 'hyperbolical', ',', 'at', 'times', 'anachronistic', 'literary', 'style', 'could', \"n't\", 'be', 'appreciated', 'by', 'the', 'majority', 'of', 'his', 'readers', '.'], ['the', 'earliest', 'american', 'map', 'samplers', '(', '1', '7', '7', '9', ',', '1', '7', '8', '0', ')', 'were', 'by', 'students', 'lydia', 'withington', 'and', 'sally', 'dodge', 'who', 'were', 'educated', 'there', 'and', 'cover', 'detailed', 'images', 'of', 'boston', 'harbour', 'and', 'islands', 'and', 'detailed', 'street', 'plan', '.'], ['through', 'classical', 'conditioning', ',', 'sensory', 'feedback', 'from', 'a', 'full', 'bladder', 'replaces', 'the', 'alarm', 'and', 'allows', 'children', 'to', 'continue', 'sleeping', 'without', 'urinating', '.'], ['a', 'few', 'days', 'before', ',', 'the', 'official', 'website', 'held', 'a', 'pre-sale', 'for', 'its', 'members', '.'], ['an', 'assassination', 'attempt', 'by', 'the', 'polish', 'secret', 'state', 'on', '2', '9', '/', '3', '0', 'january', '1', '9', '4', '4', '(', 'the', 'night', 'preceding', 'the', '1', '1', 'th', 'anniversary', 'of', 'hitler', \"'s\", 'appointment', 'as', 'chancellor', 'of', 'germany', ')', 'in', 'szarów', 'near', 'kraków', 'failed', '.'], ['pagdaraoan', ',', 'san', 'fernando', ',', 'la', 'union', ',', 'phillippines', '.'], ['ozone', 'in', 'the', 'troposphere', 'is', 'primarily', 'produced', 'through', 'the', 'photolysis', 'of', 'nitrogen', 'dioxide', 'by', 'photons', 'with', 'wavelengths', '(', 'λ', ')', 'less', 'than', '4', '2', '0', 'nanometers', ',', 'which', 'are', 'able', 'to', 'reach', 'the', 'lowest', 'levels', 'of', 'the', 'atmosphere', ',', 'through', 'the', 'following', 'mechanism', ':'], ['the', 'car', 'was', 'driven', 'around', 'and', 'showcased', 'throughout', 'japan', 'between', 'april', '1', '9', 'and', 'june', '2', '6', ',', '2', '0', '1', '0', '.'], ['it', 'was', 'released', 'in', 'the', 'uk', 'on', '1', '1', 'september', '2', '0', '0', '6', '.'], ['the', 'channel', 'originally', 'launched', 'by', 'tci', 'and', 'bill', 'daniels', 'in', 'november', '1', '9', '8', '9', 'as', 'prime', 'sports', 'network', 'midwest', '(', 'also', 'referred', 'to', 'as', 'prime', 'sports', 'midwest', ')', ',', 'serving', 'as', 'an', 'affiliate', 'of', 'the', 'prime', 'network', '.'], ['anders', 'blixt', '(', 'born', 'in', '1', '9', '5', '9', ')', 'is', 'a', 'swedish', 'game', 'designer', 'and', 'science', 'journalist', '.'], ['esterhuizen', 'was', 'born', 'in', 'springs', 'in', 'south', 'africa', ',', 'but', 'grew', 'up', 'in', 'windhoek', '.'], ['she', 'married', 'her', 'cousin', ',', 'lorival', 'homem', 'de', 'melo', ',', 'and', 'had', 'a', 'daughter', ',', 'lorice', '.'], ['a', 'collection', 'of', 'short', 'stories', ',', '``', 'exceptions', ':', 'in', 'the', 'dark', 'of', 'faith', \"''\", '(', 'z', 'wyjątków', '.'], ['however', ',', 'on', '2', '8', 'october', 'vieira', 'announced', 'the', 'dissolution', 'of', 'gomes', \"'s\", 'government', ',', 'and', 'a', 'long-time', 'ally', 'of', 'vieira', ',', 'aristides', 'gomes', ',', 'was', 'appointed', 'prime', 'minister', 'on', '2', 'november', '2', '0', '0', '5', '.'], ['the', 'qin', 'removed', 'defensive', 'barriers', 'dividing', 'the', 'warring', 'states', ',', 'including', 'the', 'southern', 'wall', 'of', 'the', 'yan', ',', 'which', 'separated', 'the', 'beijing', 'plain', 'from', 'the', 'central', 'plain', ',', 'and', 'built', 'a', 'national', 'roadway', 'network', '.'], ['points', 'scored', 'in', 'a', 'game', '(', '1', '0', ')', '-', '7', 'november', '2', '0', '0', '3', 'harvard', 'v.', 'union-', 'tied', 'with', 'jennifer', 'botterill', '&', 'lt', ';', 'br', '&', 'gt', ';'], ['some', 'human', 'bone', 'fragments', 'from', 'the', 'paleolithic', 'era', 'were', 'unearthed', 'from', 'a', 'site', 'in', 'naha', ',', 'but', 'the', 'artifact', 'was', 'lost', 'in', 'transportation', 'before', 'it', 'was', 'examined', 'to', 'be', 'paleolithic', 'or', 'not', '.'], ['foghorn', 'naturally', 'looks', 'up', 'and', 'sees', 'the', 'dog', 'perched', 'on', 'the', 'tower', 'holding', 'a', 'watermelon', 'which', 'the', 'dog', 'releases', ',', 'causing', 'it', 'to', 'break', 'over', 'foghorn', \"'s\", 'head', '.'], ['he', 'was', 'released', 'by', 'the', 'wizards', 'following', 'the', 'suspension', ',', 'while', 'arenas', 'rejoined', 'the', 'team', '.'], ['in', 'autumn', '1', '8', '3', '8', ',', 'the', 'pottawatomie', 'were', 'removed', 'by', 'force', 'from', 'their', 'villages', 'and', 'underwent', 'a', 'treacherous', 'two-month', 'journey', '.'], ['however', ',', 'the', 'proof', 'of', 'this', 'case', 'is', 'instructive', 'since', 'its', 'general', 'strategy', 'can', 'be', 'carried', 'over', 'to', 'the', 'higher-dimensional', 'case', 'as', 'well', '.'], ['steward', 'observatory', 'at', 'the', 'university', 'of', 'arizona', 'is', 'responsible', 'for', 'daily', 'operations', 'and', 'scientific', 'productivity', '.'], ['dish', 'network', 'started', 'carrying', 'sportsman', 'channel', 'on', 'february', '1', '0', ',', '2', '0', '1', '0', '.'], ['it', 'was', 'opened', 'in', '1', '9', '7', '1', 'and', 'the', 'mall', \"'s\", 'anchor', 'stores', 'are', 'jcpenney', '(', 'closing', 'march', '2', '0', '2', '1', ')', ',', 'rural', 'king', ',', 'marshalls', ',', 'and', 'jo-ann', 'fabrics', ',', 'with', 'one', 'vacant', 'anchor', 'last', 'occupied', 'by', 'carson', \"'s\", '.'], ['there', 'were', 'at', 'least', '9', '2', '8', 'tornadoes', 'confirmed', 'in', 'the', 'united', 'states', 'in', '2', '0', '1', '4', '.'], ['mary', 'immediately', 'falls', 'ill', ',', 'and', 'is', 'cared', 'for', 'by', 'her', 'teacher', ',', 'katherine', '(', 'virginia', 'madsen', ')', '.'], ['large', 'coronoid', 'fangs', 'are', 'present', 'in', 'the', 'fishes', '``', 'eusthenopteron', \"''\", ',', '``', 'panderichthys', \"''\", ',', 'and', '``', 'tiktaalik', \"''\", ',', 'and', 'the', 'early', 'tetrapod', ',', '``', 'ventasega', \"''\", '.'], ['the', 'world', 'of', 'the', 'weapon', 'brown', 'character', 'and', 'the', 'others', 'who', 'inhabit', 'it', 'with', 'him', 'is', 'one', 'that', 'is', 'post-apocalyptic', '.'], ['for', 'the', 'first', 'time', ',', 'the', 'oath', 'was', 'taken', 'in', 'a', 'language', 'other', 'than', 'latin', 'or', 'occitan', 'as', 'it', 'was', 'customary', ',', 'i.e', '.'], ['3', '8', 'degrees', ',', 'who', 'worked', 'with', 'the', 'open', 'rights', 'group', 'to', 'mobilise', 'opposition', 'to', 'the', 'act', ',', 'state', 'that', 'over', '2', '2', ',', '0', '0', '0', 'people', 'have', 'emailed', 'their', 'mps', 'through', 'their', 'web', 'site', '.'], ['as', 'a', 'result', ',', 'they', 'decided', 'to', 'pursue', 'working', 'under', 'the', 'name', 'grande', 'loge', 'de', 'clermont', ',', 'named', 'after', 'the', 'grand', 'master', 'who', 'had', 'died', 'in', '1', '7', '7', '1', '.'], ['daniel', 'delany', 'bulger', 'was', 'prominent', 'in', 'irish', 'athletics', 'not', 'only', 'as', 'a', 'successful', 'participant', ',', 'but', 'also', 'as', 'an', 'administrator', '.'], ['highbury', 'wood', '(', ')', 'is', 'a', 'biological', 'site', 'of', 'special', 'scientific', 'interest', 'in', 'gloucestershire', ',', 'notified', 'in', '1', '9', '8', '3', '.'], ['this', 'strategy', 'was', 'successful', ',', 'she', 'signed', 'a', 'peace', 'treaty', 'in', '1', '6', '5', '7', 'and', 'italian', 'capuchin', 'missionaries', 'began', 'working', 'in', 'her', 'lands', '.'], ['its', 'critical', 'acclaim', 'got', 'the', 'show', 'picked', 'up', 'for', 'a', 'few', 'national', 'runs', ',', 'although', 'on', 'a', 'limited', 'basis', '.'], ['it', 'was', 'intended', 'to', 'be', 'powered', 'by', 'a', 'bristol', 'jupiter', 'engine', ',', 'but', 'this', 'had', 'not', 'yet', 'been', 'type-approved', ',', 'so', 'the', 'initial', 'prototype', 'was', 'fitted', 'with', 'a', 'napier', 'lion', 'engine', 'instead', '.'], ['amorbia', 'nuptana', 'is', 'a', 'species', 'of', 'moth', 'of', 'the', 'family', 'tortricidae', '.'], ['the', 'british', 'empire', 'established', 'a', 'series', 'of', 'treaties', 'with', 'the', 'sultans', 'with', 'the', 'objective', 'of', 'increasing', 'british', 'political', 'and', 'economic', 'influence', 'over', 'muscat', '.'], ['``', 'the', 'cosmopolitan', 'screen', ':', 'german', 'cinema', 'and', 'the', 'global', 'imaginary', ',', '1', '9', '4', '5', 'to', 'the', 'present', \"''\", '.'], ['incorporated', 'on', 'august', '2', '3', ',', '1', '9', '2', '2', ',', 'riverbank', \"'s\", 'official', 'slogan', 'is', '``', 'city', 'of', 'action', '.', \"''\"], ['``', 'gamesmaster', \"''\", 'said', 'of', 'the', 'xbox', '3', '6', '0', 'version', ':', '``', 'do', \"n't\", 'underestimate', 'the', 'wow', 'factor', 'of', 'the', '3', 'd', 'mode', '-', 'if', 'this', 'is', 'the', 'future', 'of', 'games', ',', 'sign', 'us', 'up', '.', \"''\"], ['consequently', ',', 'the', 'term', 'is', '``', 'losing', 'much', '[', 'of', 'its', ']', 'analytical', 'value', \"''\", '.'], ['the', '``', 'coattail', 'effect', \"''\", 'has', 'also', 'been', 'used', 'to', 'derogatorily', 'describe', 'the', 'effect', 'of', 'group', 'representation', 'constituencies', '(', 'grcs', ')', 'in', 'singapore', ',', 'where', 'candidates', 'for', 'parliament', 'run', 'on', 'a', 'party', 'slate', 'of', '3', 'to', '6', 'candidates', '.'], ['she', 'proved', 'herself', 'capable', 'of', 'handling', 'the', 'small', 'roles', 'she', 'was', 'assigned', ',', 'and', 'over', 'a', 'period', 'of', 'time', ',', 'she', 'came', 'to', 'be', 'taken', 'seriously', 'as', 'an', 'actress', '.'], ['the', 'young', 'course', 'director', ',', 'professor', 'christian', 'friedrich', 'hornschuch', ',', 'was', 'keen', 'to', 'combine', 'academic', 'and', 'botanical', 'instruction', 'with', 'the', 'aesthetic', 'and', 'artistic', 'aspects', 'of', 'horticulture', ',', 'both', 'in', 'his', 'approach', 'to', 'teaching', 'and', 'in', 'the', 'way', 'he', 'had', 'the', 'gardens', 'arranged', '.'], ['brain', 'centers', 'that', 'regulate', 'urination', 'include', 'the', 'pontine', 'micturition', 'center', ',', 'periaqueductal', 'gray', ',', 'and', 'the', 'cerebral', 'cortex', '.'], ['in', '1', '8', '6', '1', 'the', 'first', 'express', 'train', 'ran', 'from', 'vienna', 'to', 'budapest', ',', 'in', '1', '8', '6', '2', 'express', 'services', 'began', 'on', 'the', 'vienna', 'to', 'dresden', 'line', 'via', 'prague', 'and', 'in', '1', '8', '6', '8', 'the', 'first', 'express', 'ran', 'from', 'vienna', 'via', 'krakau', 'and', 'lemberg', 'to', 'bucharest', '.'], ['from', 'adam', ',', 'the', 'first', 'man', 'created', 'by', 'god', ',', 'to', 'noah', ',', 'at', 'whose', 'time', 'the', 'flood', 'took', 'place', ',', 'there', 'were', 'ten', 'generations', '.'], ['the', 'main', 'goal', 'of', 'the', 'organization', 'is', 'to', 'defend', 'the', 'first', 'amendment', ',', 'freedom', 'of', 'thought', ',', 'inquiry', ',', 'and', 'expression', '.'], ['kanazawa', 'was', 'born', 'on', '3', 'may', '1', '9', '3', '1', 'in', 'iwate', 'prefecture', ',', 'japan', '.'], ['from', 'a', 'player', \"'s\", 'point', 'of', 'view', ',', 'the', 'second', 'and', 'third', 'rows', 'are', 'filled', 'with', 'men', 'of', 'his', 'own', 'color', ',', 'and', 'the', 'sixth', 'and', 'seventh', 'row', 'are', 'filled', 'with', 'the', 'opponent', \"'s\", 'men', '.'], ['behavioral', 'description', 'language', '(', 'bdl', ')', 'is', 'a', 'programming', 'language', 'based', 'on', 'ansi', 'c', 'with', 'extensions', 'for', 'hardware', 'description', ',', 'developed', 'to', 'describe', 'hardware', 'at', 'levels', 'ranging', 'from', 'the', 'algorithm', 'level', 'to', 'the', 'functional', 'level', '.'], ['while', 'serving', 'as', 'a', 'usaaf', 'flight', 'officer', 'during', 'world', 'war', 'ii', ',', 'his', 'b-', '1', '7', 'was', 'shot', 'down', 'on', 'his', 'first', 'mission', 'and', 'he', 'was', 'held', 'as', 'a', 'pow', 'in', 'nazi', 'germany', 'from', '1', '1', 'september', '1', '9', '4', '4', 'to', '5', 'may', '1', '9', '4', '5', '.'], ['the', 'sat', 'problem', 'is', 'self-reducible', ',', 'that', 'is', ',', 'each', 'algorithm', 'which', 'correctly', 'answers', 'if', 'an', 'instance', 'of', 'sat', 'is', 'solvable', 'can', 'be', 'used', 'to', 'find', 'a', 'satisfying', 'assignment', '.'], ['the', 'son', 'of', 'vincenzo', 'leoncavallo', ',', 'a', 'police', 'magistrate', 'and', 'judge', ',', 'leoncavallo', 'was', 'born', 'in', 'naples', 'on', '2', '3', 'april', '1', '8', '5', '7', '.'], ['however', ',', 'the', 'prison', 'population', 'in', 'russia', 'dropped', 'substantially', 'between', '2', '0', '0', '0', 'to', '2', '0', '1', '8', ',', 'with', 'a', 'decline', 'of', 'over', '4', '0', '0', ',', '0', '0', '0', 'inmates', '.'], ['a', 'low', 'rustic', '``', 'engine', 'shed', \"''\", 'made', 'of', 'similar', 'materials', 'to', 'the', 'house', ',', 'sited', 'in', 'the', 'bushland', 'about', '1', '0', 'metres', 'from', 'the', 'house', ',', 'dates', 'from', 'the', 'original', 'time', 'of', 'construction', 'of', 'the', 'house', 'and', 'is', 'considered', 'significant', '.'], ['general', 'manuel', 'bonilla', 'was', 'one', 'candidate', ',', 'sponsored', 'by', 'prominent', 'liberals', 'and', 'by', 'the', 'conservative', 'party', ',', 'the', 'national', 'party', '.'], ['the', 'garibaldi', 'inn', 'was', 'built', 'of', 'the', 'local', 'golden', 'sandstone', 'by', 'john', 'cuneo', '(', 'who', 'came', 'from', 'genoa', ',', 'italy', 'in', '1', '8', '5', '4', ')', 'during', 'the', '1', '8', '6', '0', 's', 'as', 'the', 'suburb', \"'s\", 'first', 'hotel', '.'], ['as', 'a', 'part', 'of', 'the', 'canal', 'de', 'marseille', 'au', 'rhône', ',', 'it', 'used', 'to', 'connect', 'the', 'étang', 'de', 'berre', 'in', 'the', 'north', 'with', \"l'estaque\", 'in', 'the', 'south', ',', 'both', 'hosting', 'a', 'part', 'of', 'marseille', \"'s\", 'harbour', '.'], ['the', 'term', '``', 'immersive', 'sim', \"''\", 'may', 'also', 'be', 'used', 'to', 'describe', 'the', 'game', 'design', 'philosophy', 'behind', 'the', 'immersive', 'sim', 'genre', ',', 'which', 'uses', 'interacting', ',', 'reactive', 'and', 'consistent', 'game', 'systems', 'to', 'create', 'emergent', 'gameplay', 'and', 'a', 'sense', 'of', 'player', 'agency', '.'], ['brush', 'is', 'a', 'part', 'of', 'the', 'fort', 'morgan', ',', 'co', 'micropolitan', 'statistical', 'area', '.'], ['every', 'year', 'the', 'college', 'conducts', 'general', 'election', 'among', 'the', 'students', 'to', 'form', 'the', 'gargaon', 'college', 'students', \"'\", 'union', '.'], ['the', 'largest', 'parks', 'in', 'the', 'central', 'area', 'of', 'london', 'are', 'three', 'of', 'the', 'eight', 'royal', 'parks', ',', 'namely', 'hyde', 'park', 'and', 'its', 'neighbour', 'kensington', 'gardens', 'in', 'the', 'west', ',', 'and', 'regent', \"'s\", 'park', 'to', 'the', 'north', '.'], ['the', 'town', 'lies', 'on', 'a', 'plateau', 'at', 'an', 'elevation', 'of', 'about', '.'], ['on', 'an', '8', '×', '8', 'board', ',', '1', '6', 'men', 'are', 'lined', 'up', 'on', 'each', 'side', 'in', 'two', 'rows', ',', 'skipping', 'the', 'first', 'and', 'last', 'row', '.'], ['students', 'would', 'sometimes', 'appeal', 'to', 'the', 'king', 'about', 'unjust', 'decisions', 'and', 'if', 'they', 'were', 'rejected', 'they', 'would', 'stage', 'political', 'demonstrations', ',', 'fast', ',', 'or', 'boycott', 'classes', '.'], ['aktobe', 'were', 'the', 'defending', 'champions', 'having', 'won', 'their', 'fifth', 'league', 'championship', 'the', 'previous', 'year', '.'], ['wu', 'yongchun', '(', ';', ';', 'born', '3', '0', 'march', '1', '9', '8', '9', 'in', 'yanji', ',', 'yanbian', ')', 'is', 'a', 'chinese', 'footballer', 'of', 'korean', 'descent', 'who', 'currently', 'plays', 'for', 'china', 'league', 'two', 'side', 'yanbian', 'beiguo', '.'], ['north', 'asia', 'or', 'northern', 'asia', ',', 'also', 'referred', 'to', 'as', 'siberia', ',', 'is', 'the', 'northern', 'region', 'of', 'asia', ',', 'which', 'is', 'defined', 'in', 'geographical', 'terms', '.'], ['see', 'the', '1', '9', '8', '7', 'official', 'church', 'statement', '``', 'a', 'statement', 'on', 'theological', 'and', 'academic', 'freedom', 'and', 'accountability', \"''\", '.'], ['the', 'anna', 'was', 'an', 'orphaned', 'motor', ',', 'whose', 'origin', 'and', 'manufacturer', 'are', 'unknown', ',', 'other', 'than', 'that', 'it', 'was', 'discovered', 'in', 'america', '.'], ['``', 'kirkus', 'reviews', \"''\", 'described', 'the', 'book', 'as', 'being', '``', 'explosive', ',', 'pull-no-punches', 'reporting', 'that', 'is', 'certain', 'to', 'stir', 'controversy', '.', \"''\"], ['he', 'turned', 'down', 'rewards', 'and', 'honours', 'throughout', 'his', 'life', ',', 'including', 'prestigious', 'teaching', 'positions', '.'], ['according', 'to', 'the', 'bbc', ',', '``', 'the', 'offices', 'that', 'the', 'company', 'says', 'it', 'had', 'in', 'orlando', 'have', 'been', 'vacant', 'for', 'several', 'years', 'and', 'the', 'numbers', 'on', 'its', 'website', 'are', 'unlisted', '.', \"''\"], ['the', 'labour', 'party', 'retained', 'control', 'of', 'the', 'council', ',', 'which', 'it', 'had', 'held', 'since', '1', '9', '9', '5', '.'], ['it', 'is', 'significant', 'as', 'one', 'of', 'two', 'stations', 'to', 'have', 'two', 'inspectors', \"'\", 'residences', 'remaining', 'on', 'the', 'site', '.'], ['licensed', 'to', 'georgetown', ',', 'texas', ',', 'usa', ',', 'it', 'serves', 'the', 'georgetown', 'area', '.'], ['he', 'hoped', 'for', 'a', 'long', 'time', 'for', 'recognition', 'of', 'his', 'claim', 'to', 'the', 'crown', 'of', 'france', '(', 'as', 'the', 'heir-general', 'of', 'philip', 'iv', 'through', 'his', 'mother', ',', 'and', 'a', 'capetian', 'through', 'his', 'father', ')', '.'], ['this', 'is', 'a', 'list', 'of', '``', 'rpm', \"'s\", \"''\", 'number', 'one', 'weekly', 'alternative', 'rock', 'singles', 'chart', 'in', 'canada', 'for', '1', '9', '9', '6', '.'], ['garia', 'was', 'also', 'selected', 'for', 'the', 'netherlands', 'national', 'baseball', 'team', 'for', 'the', ',', 'the', '2', '0', '1', '6', 'european', 'baseball', 'championship', ',', 'the', 'exhibition', 'games', 'against', 'japan', 'in', '2', '0', '1', '6', 'and', 'the', 'training', 'camp', 'in', 'the', 'united', 'states', 'in', '2', '0', '1', '7'], ['before', 'the', 'm', '6', 'was', 'built', ',', 'these', 'routes', 'were', 'very', 'busy', 'with', 'through', 'traffic', '.'], ['in', 'this', 'area', 'the', 'western', 'european', 'league', 'is', 'the', 'most', 'important', 'indoor', 'series', 'in', 'show', 'jumping', '.'], ['jim', 'schaefer', 'of', '``', 'detroit', 'free', 'press', \"''\", 'gave', 'the', 'game', 'three', 'stars', 'out', 'of', 'four', ',', 'saying', ',', '``', 'i', 'like', 'this', 'game', 'simply', 'for', 'its', 'twists', 'on', 'an', 'old', 'genre', '.'], ['humans', \"'\", 'thinner', 'body', 'hair', 'and', 'more', 'productive', 'sweat', 'glands', 'help', 'avoid', 'heat', 'exhaustion', 'while', 'running', 'for', 'long', 'distances', '.'], ['the', 'next', 'film', '``', 'tarzan', \"''\", '(', '1', '9', '9', '9', ')', ',', 'directed', 'by', 'kevin', 'lima', 'and', 'chris', 'buck', ',', 'had', 'a', 'high', 'production', 'cost', 'of', '$', '1', '3', '0', 'million', ',', 'again', 'received', 'positive', 'reviews', 'and', 'earned', '$', '4', '4', '8', 'million', 'at', 'the', 'box', 'office', '.'], ['folk', 'singer', 'stan', 'rogers', 'made', 'the', 'privateers', 'wharf', 'famous', 'in', 'his', 'songs', '``', 'barrett', \"'s\", 'privateers', \"''\", 'and', '``', 'bluenose', \"''\", '.'], ['the', 'outcome', 'was', 'to', 'approach', 'the', 'community', 'action', 'program', 'belknap-merrimack', 'counties', ',', 'inc.', '(', 'capbmci', ')', 'to', 'provide', 'the', 'service', '.'], ['prior', 'to', 'these', 'acts', 'deportations', 'had', 'remained', 'at', 'about', 'an', 'average', 'of', '2', '0', ',', '0', '0', '0', 'per', 'year', '.'], ['mario', 'giordana', 'was', 'born', 'in', 'barge', ',', 'in', 'the', 'italian', 'province', 'of', 'cuneo', ',', 'on', '1', '6', 'january', '1', '9', '4', '2', '.'], ['the', 'drumpellier', 'estate', 'was', 'gifted', 'to', 'coatbridge', 'in', '1', '9', '1', '9', '.'], ['mcgrath', 'played', 'charlie', 'in', 'the', 'australian', 'crime', 'series', '``', 'rush', \"''\", '.'], ['dortmund', 'took', 'the', 'lead', 'on', 'the', 'backstretch', 'and', 'rallied', 'after', 'being', 'headed', 'by', 'firing', 'line', 'on', 'the', 'final', 'turn', 'to', 'regain', 'the', 'lead', 'in', 'the', 'closing', 'stages', 'and', 'win', 'by', 'a', 'head', '.'], ['the', 'khrunichev', 'failure', 'review', 'oversight', 'board', 'found', 'that', 'it', 'was', 'caused', 'by', 'a', 'faulty', 'component', 'in', 'the', 'pressurisation', 'system', '.'], ['the', 'student', 'of', 'prague', '(', ')', 'is', 'a', '1', '9', '2', '6', 'german', 'expressionist', 'silent', 'film', 'by', 'actor', 'and', 'filmmaker', 'henrik', 'galeen'], ['the', 'safety', 'of', 'the', 'continental', 'army', 'on', 'this', 'occasion', 'was', 'largely', 'due', 'to', 'the', 'good', 'conduct', 'of', 'colonel', 'marshall', 'and', 'his', 'command', '.'], ['at', '&', 'amp', ';', 't', 'u-verse', 'added', 'it', 'on', 'april', '8', ',', '2', '0', '0', '9', '.'], ['around', '1', '8', '8', '7', ',', 'when', 'he', 'was', 'seventeen', ',', 'he', 'joined', 'the', 'army', 'in', 'the', 'region', 'of', 'guajoquilla', '(', 'today', \"'s\", 'jimenez', ')', ',', 'in', 'coahuila', '.'], ['in', '1', '8', '3', '7', ',', 'pease', 'settled', 'in', 'salem', ',', 'wisconsin', 'territory', 'and', 'practiced', 'law', '.'], ['takahiro', 'baba', ',', 'the', 'president', 'of', 'visualart', \"'s\", ',', 'the', 'publisher', 'of', '``', 'kud', 'wafter', \"''\", ',', 'announced', 'via', 'his', 'twitter', 'account', 'in', 'april', '2', '0', '1', '0', 'that', '1', '0', '0', ',', '0', '0', '0', 'copies', 'of', '``', 'kud', 'wafter', \"''\", 'would', 'be', 'produced', 'in', 'its', 'initial', 'release', '.'], ['in', 'late', 'december', ',', 'the', 'government', 'further', 'delayed', 'voting', 'in', 'three', 'cities', 'until', '3', '1', 'march', '2', '0', '1', '9', '.'], ['law', 'is', 'an', 'ordinance', 'of', 'reason', 'because', 'it', 'must', 'be', 'reasonable', 'or', 'based', 'in', 'reason', 'and', 'not', 'merely', 'in', 'the', 'will', 'of', 'the', 'legislator', '.'], ['they', 'had', 'to', 'confront', 'the', 'patrolling', 'units', 'that', 'followed', 'them', '.'], ['the', 'yellow-throated', 'seedeater', 'was', 'formerly', 'placed', 'in', 'the', 'genus', '``', 'serinus', \"''\", 'but', 'phylogenetic', 'analysis', 'using', 'mitochondrial', 'and', 'nuclear', 'dna', 'sequences', 'found', 'that', 'the', 'genus', 'was', 'polyphyletic', '.'], ['zhong', 'received', 'her', 'first', 'leading', 'role', 'in', 'drama', '``', 'iron', 'ladies', \"''\", '.'], ['she', 'writes', 'about', 'african-american', 'quilt', 'history', 'and', 'encouraging', 'quilt', 'documentation', '.'], ['age', 'of', 'reptiles', 'is', 'a', 'series', 'of', 'comics', 'published', 'by', 'dark', 'horse', 'comics', ',', 'created', 'by', 'ricardo', 'delgado', ',', 'a', 'film', 'and', 'comic', 'book', 'artist', 'who', 'has', 'worked', 'on', 'such', 'films', 'as', '``', 'the', 'incredibles', \"''\", ',', '``', 'men', 'in', 'black', \"''\", 'and', '``', 'apollo', '1', '3', '``', '.'], ['the', 'remainder', 'fled', 'to', 'a', 'stronghold', ',', 'where', 'they', 'were', 'besieged', 'by', 'the', 'frisians', '.'], ['kasim', 'has', 'a', 'strange', 'fixation', 'on', 'aladin', 'and', 'constantly', 'teases', 'him', 'about', 'his', 'name', ',', 'bringing', 'him', 'oil', 'lamps', ',', 'forcing', 'him', 'to', 'rub', 'them', ',', 'and', 'taunting', 'him', 'when', 'no', 'genie', 'appears', '.'], ['as', 'with', 'all', 'libraries', 'in', 'the', 'chicago', 'public', 'library', 'system', ',', 'it', 'has', 'free', 'wi-fi', 'internet', 'service', '.'], ['the', 'sahrawi', 'arab', 'democratic', 'republic', '(', 'sadr', ')', 'is', 'the', 'government', 'in', 'exile', 'claiming', 'sovereignty', 'of', 'the', 'former', 'spanish', 'colony', 'of', 'western', 'sahara', '.'], ['he', 'represented', 'great', 'britain', 'in', 'the', '2', '0', '1', '6', 'rio', 'paralympics', 'as', 'a', 'sighted', 'pilot', 'for', 'visually', 'impaired', 'cyclist', ',', 'stephen', 'bate', 'with', 'whom', 'he', 'was', 'paired', 'in', 'january', '2', '0', '1', '4', '.'], ['``', 'unbreakable', \"''\", 'was', 'recorded', 'in', 'september', 'and', 'october', '2', '0', '0', '7', '.'], ['in', 'january', '1', '9', '2', '2', ',', 'the', 'authorities', 'in', 'parma', 'granted', 'parma', 'f.b.c', '.'], ['arnulf', 'krause', 'was', 'born', 'in', 'zell', 'im', 'wiesental', ',', 'germany', '.'], ['gauley', 'mills', 'is', 'located', 'on', 'the', 'gauley', 'river', 'east', 'of', 'camden-on-gauley', '.'], ['according', 'to', 'his', 'funeral', 'notice', 'in', 'the', '``', 'columbia', 'herald', \"''\", ',', 'he', 'left', 'a', 'young', 'wife', '.'], ['the', 'other', 'class', 'of', 'dedekind', 'rings', 'that', 'is', 'arguably', 'of', 'equal', 'importance', 'comes', 'from', 'geometry', ':', 'let', '``', 'c', \"''\", 'be', 'a', 'nonsingular', 'geometrically', 'integral', 'affine', 'algebraic', 'curve', 'over', 'a', 'field', '``', 'k', \"''\", '.'], ['los', 'al', 'finished', 'in', 'third', 'place', 'in', '2', '0', '0', '8', 'and', 'first', 'place', 'in', '2', '0', '0', '7', 'and', '2', '0', '0', '6', '.'], ['gorman', 'was', 'interred', 'at', 'deepdale', 'memorial', 'park', 'in', 'delta', 'township', ',', 'michigan', '.'], ['on', '2', '0', 'october', ',', 'attacked', 'rumbeke', 'airfield', ';', 'eleven', 'sopwith', 'camels', 'carried', 'bombs', ',', 'with', 'eight', 'more', 'as', 'close', 'escort', '.'], ['ic', '2', '4', '8', '8', 'lies', '3', '0', 'arcminutes', 'west', 'of', 'n', 'velorum', ',', 'a', '3', 'rd', 'magnitude', 'star', 'located', 'near', 'the', 'false', 'cross', 'asterism', '.'], ['``', 'top', 'eight', 'from', 'each', 'division', 'make', 'the', 'playoffs', '(', 'blue', 'tinted', ')', ',', '(', 'x-', ')', 'denotes', 'playoff', 'berth', ',', '(', 'y-', ')', 'denotes', 'elimination', '.', \"''\"], ['i', 'would', 'rather', 'have', 'j.', 'd.', 'grey', 'at', 'my', 'side', ',', 'cataracts', ',', 'arthritis', ',', 'and', 'all', ',', 'than', '9', '9', 'percent', 'of', 'the', 'people', 'in', 'all', 'of', 'the', 'world', '.', \"''\"], ['arkoff', 'reasoned', 'that', ',', '``', 'all', 'of', 'aip', \"'s\", 'films', 'were', 'very', 'clean', ',', 'so', 'anything', 'that', 'was', 'suggestive', 'of', 'playing', 'around', '-', '``', 'fornicating', \"''\", 'a', 'corpse', ',', 'you', 'know', 'what', 'i', \"'m\", 'saying', '?'], ['he', 'retired', 'on', 'retired', 'in', 'january', '2', '0', '1', '8', '.'], ['the', 'grand', 'prize', 'is', 'the', '``', 'tanit', \"d'or\", \"''\", ',', 'or', '``', 'golden', 'tanit', ',', \"''\", 'named', 'for', 'the', 'lunar', 'goddess', 'of', 'ancient', 'carthage', ';', 'the', 'award', 'is', 'in', 'the', 'shape', 'of', 'her', 'symbol', ',', 'a', 'trapezium', 'surmounted', 'by', 'a', 'horizontal', 'line', 'and', 'a', 'circle', '.'], ['arico', 'grew', 'up', 'in', 'mount', 'arlington', ',', 'new', 'jersey', 'and', 'attended', 'pope', 'john', 'xxiii', 'high', 'school', 'in', 'sparta', ',', 'new', 'jersey', ',', 'where', 'he', 'played', 'football', ',', 'basketball', 'and', 'ran', 'track', '.'], ['krishnakumar', 'balasubramanian', 'is', 'an', 'indian', 'film', 'and', 'stage', 'actor', '.'], ['there', 'is', 'research', 'concerning', 'the', 'relationship', 'between', 'digital', 'pets', 'and', 'their', 'owners', ',', 'and', 'their', 'impact', 'on', 'the', 'emotions', 'of', 'people', '.'], ['for', 'the', 'remainder', 'of', 'the', '1', '9', 'th', 'century', ',', 'dessalines', 'was', 'generally', 'reviled', 'by', 'generations', 'of', 'haitians', 'for', 'his', 'autocratic', 'ways', '.'], ['the', 'aire', 'and', 'calder', 'proposed', 'to', 'pump', 'all', 'the', 'water', 'for', 'the', 'canal', 'from', 'the', 'river', 'calder', ',', 'using', 'steam-driven', 'pumps', 'at', 'agbrigg', ',', 'walton', 'and', 'barugh', '.'], ['the', 'hall', 'is', 'located', '4', 'miles', 'north-west', 'of', 'derby', ',', 'and', 'is', 'now', 'open', 'to', 'the', 'public', ',', 'as', 'one', 'of', 'the', 'properties', 'owned', 'by', 'the', 'national', 'trust', '.'], ['following', 'his', 'tenure', 'as', 'drummond', 'professor', 'of', 'political', 'economy', 'at', 'the', 'university', 'of', 'oxford', 'from', '2', '0', '1', '0', 'to', '2', '0', '2', '0', ',', 'he', 'is', 'now', 'a', 'senior', 'research', 'fellow', 'at', 'the', 'same', 'institution', '.'], ['in', 'early', '2', '0', '2', '0', ',', 'the', 'covid-', '1', '9', 'pandemic', 'reached', 'the', 'country', 'causing', 'the', 'economy', 'to', 'contract', 'by', '9', '.', '5', '%', 'in', 'terms', 'of', 'gross', 'domestic', 'product', 'since', 'records', 'began', 'in', '1', '9', '4', '7', '.'], ['as', 'a', 'teenager', ',', 'cole', 'ran', 'away', 'from', 'home', 'and', 'became', 'the', 'getaway', 'driver', 'for', 'a', 'crew', 'of', 'robbers', '.'], ['after', 'some', 'input', 'from', 'his', 'writing', 'staff', ',', 'chase', 'revised', 'the', 'script', 'to', 'its', 'finished', 'state', ',', 'although', 'he', 'also', 'made', 'minor', 'changes', 'during', 'filming', '.'], ['the', 'p', '3', '0', 'pro', \"'s\", 'camera', 'modes', 'have', 'been', 'carried', 'over', 'to', 'the', 'mate', '3', '0', 'pro', '.'], ['the', 'main', 'aim', 'of', 'the', 'college', 'is', 'to', 'provide', 'students', 'with', 'academic', ',', 'scientific', ',', 'and', 'professional', 'knowledge', 'in', 'the', 'fields', 'of', 'social', 'sciences', '.'], ['in', '1', '9', '9', '5', 'drake', 'wrote', 'a', 'spec', 'script', 'called', '``', 'ladies', 'man', \"''\", ',', 'in', 'which', 'a', 'male', 'protagonist', 'who', 'works', 'in', 'advertising', 'has', 'a', 'freak', 'accident', 'which', 'gives', 'him', 'the', 'ability', 'to', 'read', 'women', \"'s\", 'thoughts', '.'], ['now', 'that', 'her', 'daughter', 'is', 'in', 'college', ',', 'alix', 'is', 'able', 'to', 'take', 'on', 'lengthier', 'and', 'more', 'dangerous', 'assignments', '.'], ['israel', \"'s\", 'taxation', 'allows', 'broad', 'leeway', 'and', 'discretion', ',', 'taking', 'in', 'norms', 'of', 'appeal', 'and', 'the', 'taxpayer', \"'s\", 'rights', '.'], ['``', 'a', 'pair', 'of', 'jeans', \"''\", 'has', 'been', 'published', 'twelve', 'times', ',', 'including', 'eight', 'in', 'germany', 'and', 'was', 'featured', 'in', 'the', 'local', 'literary', 'scenes', 'of', 'many', 'other', 'countries', '.'], ['the', 'situation', 'was', 'aggravated', 'by', 'the', 'bad', 'weather', 'which', 'was', 'turning', 'into', 'snowstorms', 'on', 'mt', '.'], ['the', 'gondola', 'was', 'reinforced', 'with', 'an', 'internal', 'and', 'an', 'external', 'frame', 'that', 'prevented', 'direct', 'contact', 'between', 'the', 'airtight', 'compartment', \"'s\", 'skin', 'and', 'suspension', 'cables', '.'], ['in', '4', 'march', '2', '0', '1', '2', 'presidential', 'polling', ',', 'prokhorov', 'gained', '7', '.', '9', '4', '%', 'of', 'the', 'vote', '.'], ['during', 'the', 'american', 'civil', 'war', 'the', 'term', '``', 'rifle', 'pit', \"''\", 'was', 'recognized', 'by', 'both', 'u.s.', 'army', 'and', 'confederate', 'army', 'forces', '.'], ['there', 'are', 'conflicting', 'reports', 'about', 'whether', 'the', 'chinese', \"'golden\", 'urn', \"'\", 'was', 'utilised', 'by', 'drawing', 'lots', 'to', 'choose', 'him', '.'], ['it', 'was', 'soon', 'discovered', 'by', 'adam', ',', 'jack', ',', 'and', 'phyllis', 'summers', 'that', 'victor', 'set', 'skye', 'up', 'in', 'hawaii', 'and', 'he', 'was', 'in', 'hawaii', 'when', 'sharon', 'was', 'there', 'to', 'make', 'sure', 'no', 'one', 'learned', 'the', 'truth', '.'], ['it', 'later', 'appeared', 'in', 'the', '1', '9', '7', '1', 'collection', '``', 'the', 'complete', 'stories', \"''\", '.'], ['cicala', 'first', 'worked', 'with', 'john', 'lennon', 'just', 'before', 'the', 'beatles', 'broke', 'up', 'in', '1', '9', '7', '0', '.'], ['the', 'election', 'was', 'held', 'concurrently', 'with', 'other', 'local', 'elections', 'in', 'england', '.'], ['mann', 'had', 'never', 'watched', 'the', 'show', ',', 'but', 'agreed', 'to', 'have', '``', 'that', \"'s\", 'just', 'what', 'you', 'are', \"''\", 'used', '.'], ['``', 's.', 'sicariguensis', \"''\", 'sometimes', 'has', 'flattened', 'stem', 'segments', '.'], ['(', 'according', 'to', 'a', 'different', 'tradition', ',', 'the', 'term', '``', 'count', '(', 'or', 'prince', ')', 'of', 'coucy', \"''\", 'refers', 'to', 'his', 'brother-in-law', ',', 'rabbi', 'moses', 'ben', 'jacob', 'of', 'coucy', ')', '.'], ['the', 'dark', 'bronzy-fuscous', 'forewings', 'are', 'suboblong', ',', 'the', 'costa', 'moderately', 'arched', 'anteriorly', ',', 'the', 'apex', 'obtuse', ',', 'the', 'termen', 'slightly', 'rounded', 'and', 'somewhat', 'oblique', '.'], ['sometimes', 'the', '``', 'umbilicus', 'agri', \"''\", 'was', 'located', 'in', 'a', 'city', 'or', 'a', 'castrum', '.'], ['when', 'his', 'time', 'came', 'to', 'die', ',', 'the', 'angel', 'came', 'to', 'inform', 'hanina', '.'], ['the', 'town', 'was', 'named', 'for', 'samuel', 'willis', ',', 'a', 'landholder', 'and', 'founded', 'in', '1', '7', '6', '3', 'as', 'a', 'royal', 'grant', 'from', 'governor', 'benning', 'wentworth', 'of', 'the', 'royal', 'colony', 'of', 'new', 'hampshire', '.'], ['the', 'company', \"'s\", 'software', 'products', 'provide', 'web', 'conferencing', ',', 'desktop', 'sharing', ',', 'and', 'remote', 'maintenance', 'capabilities', '.'], ['both', 'schools', 'were', 'renamed', 'the', 'forest', 'school', ',', 'and', 'the', 'boys', \"'\", 'school', 'still', 'retains', 'this', 'name', '.'], ['the', 'qing', 'dynasty', ',', 'however', ',', 'continued', 'to', 'maintain', 'a', 'viceroy', 'of', 'huguang', ',', 'one', 'of', 'the', 'most', 'well-known', 'being', 'zhang', 'zhidong', ',', 'whose', 'modernizing', 'reforms', 'made', 'hubei', '(', 'especially', 'wuhan', ')', 'into', 'a', 'prosperous', 'center', 'of', 'commerce', 'and', 'industry', '.'], ['within', 'a', 'year', 'or', 'so', ',', 'samshvilde', 'was', 'conquered', 'by', 'the', 'seljuqs', 'under', 'malik-shah', 'i', 'and', 'remained', 'their', 'outpost', 'in', 'georgia', 'until', '1', '1', '1', '0', ',', 'when', 'bishop', 'george', 'of', 'chqondidi', 'besieged', 'and', 'took', 'the', 'city', 'on', 'behalf', 'of', 'king', 'david', 'iv', 'of', 'georgia', '.'], ['later', ',', 'in', 'september', '2', '0', '0', '3', ',', 'she', 'became', 'an', 'announcer', 'for', 'rai', 'uno', ',', 'the', 'primary', 'television', 'station', 'of', 'rai', ',', 'italy', \"'s\", 'state-owned', 'national', 'public', 'service', 'broadcaster', '.'], ['in', '2', '0', '1', '7', 'funds', 'were', 'allocated', 'for', 'the', 'park', 'exploitation', 'by', 'the', 'chamber', 'of', 'commerce', 'of', \"l'aquila\", ',', 'the', 'municipality', 'of', 'avezzano', 'and', 'the', 'gal', '``', 'terre', 'aquilane', \"''\", '(', '``', 'aquilan', 'lands', \"''\", ')', '.'], ['night', 'shifts', 'are', 'associated', 'with', 'worse', 'surgeon', 'performance', 'during', 'laparoscopic', 'surgeries', '.'], ['in', 'november', '1', '8', '6', '2', ',', 'wofford', 'and', 'the', '1', '8', 'th', 'georgia', 'were', 'transferred', 'to', 'the', 'georgia', 'brigade', 'of', 'brig', '.'], ['those', 'near', 'zero', 'or', 'at', 'the', '``', 'noise', \"''\", 'of', 'the', 'measurement', 'system', 'will', 'have', 'undue', 'influence', 'and', 'could', 'hamper', 'solutions', '(', 'detection', ')', 'using', 'the', 'inverse', '.'], ['by', 'the', 'end', 'of', 'the', 'war', ',', 'greek', 'armed', 'forces', 'controlled', 'most', 'of', 'the', 'historical', 'region', 'of', 'epirus', ',', 'from', 'the', 'ceraunian', 'mountains', 'along', 'the', 'ionian', 'coast', 'to', 'lake', 'prespa', 'in', 'the', 'east', '.'], ['in', 'november', 'of', 'this', 'year', 'he', 'was', 'back', 'in', 'rome', ',', 'probably', 'as', 'socius', '(', 'or', 'assistant', ')', 'to', 'the', 'master', 'of', 'the', 'order', '.'], ['most', 'of', 'these', 'nominations', 'are', 'for', 'acting', ',', 'of', 'the', 'show', \"'s\", 'ensemble', 'cast', 'numerous', 'actors', 'have', 'received', 'nominations', '.'], ['by', 'this', 'time', 'the', 'enterprise', 'has', 'integrated', 'over', '6', '5', '0', '0', 'inventors', '.'], ['he', 'thought', 'a', 'combination', 'of', 'black', 'blues', 'and', 'boogie-woogie', 'music', 'would', 'be', 'very', 'popular', 'among', 'white', 'people', ',', 'if', 'presented', 'in', 'the', 'right', 'way', '.'], ['dunlop', 'served', 'under', 'cornwallis', 'in', 'the', 'third', 'anglo-mysore', 'war', 'against', 'the', 'forces', 'of', 'tipu', 'sultan', '.'], ['dobiercice', '(', ')', 'is', 'a', 'village', 'in', 'the', 'administrative', 'district', 'of', 'gmina', 'byczyna', ',', 'within', 'kluczbork', 'county', ',', 'opole', 'voivodeship', ',', 'in', 'south-western', 'poland', '.'], ['he', 'was', 'more', 'interested', 'in', 'history', 'and', 'languages', ',', 'but', 'knew', 'that', 'as', 'a', 'catholic', 'his', 'choices', 'were', 'limited', 'to', 'priest', ',', 'lawyer', ',', 'or', 'doctor', 'if', 'he', 'wanted', 'to', 'work', 'in', 'lithuania', '.'], ['as', 'of', '2', '0', '1', '9', ',', 'kagedan', 'is', 'working', 'as', 'the', 'rabbi', 'at', 'walnut', 'street', 'synagogue', '.'], ['green', 'also', 'played', 'on', 'the', 'u.s.', 'team', 'in', 'the', '1', '9', '8', '9', 'ryder', 'cup', '.'], ['another', 'son', ',', 'captain', 'walter', 'russell', \"'dick\", \"'\", 'russell', 'of', 'the', 'northamptonshire', 'regiment', ',', '2', 'nd', 'battalion', ',', 'attached', 'to', '1', 'st', 'battalion', ',', 'was', 'killed', 'in', 'action', 'on', '2', '3', 'october', '1', '9', '1', '4', 'in', 'france', 'aged', '3', '3', '.'], ['she', 'also', 'competed', 'in', 'the', 'women', \"'s\", 'marathon', 'at', 'the', '2', '0', '1', '9', 'world', 'athletics', 'championships', 'held', 'in', 'doha', ',', 'qatar', '.'], ['the', 'locomotive', 'design', 'deviated', 'from', 'the', 'garratt', 'principle', ',', 'the', 'patent', 'of', 'which', 'was', 'held', 'by', 'beyer', ',', 'peacock', 'and', 'company', ',', 'and', 'the', 'end', 'result', 'was', 'a', 'hybrid', 'locomotive', ',', 'part', 'garratt', 'and', 'part', 'modified', 'fairlie', '.'], ['their', 'tactic', 'of', 'spreading', 'doubt', 'has', 'confused', 'the', 'public', 'about', 'a', 'series', 'of', 'key', 'scientific', 'issues', 'such', 'as', 'global', 'warming', ',', 'even', 'though', 'scientists', 'have', 'actually', 'become', 'more', 'certain', 'about', 'their', 'research', 'results', '.'], ['salad', 'fingers', 'recalls', 'some', 'memories', 'of', 'aunty', 'bainbridge', '``', 'all', 'in', 'faded', 'days', \"''\", '.'], ['rae', 'town', 'is', 'a', 'kingston', ',', 'jamaica', 'neighborhood', 'by', 'kingston', 'harbor', '.'], ['on', '1', '2', 'july', '2', '0', '1', '9', ',', 'he', 'signed', 'a', 'contract', 'with', 'russian', 'premier', 'league', 'newcomer', 'pfc', 'sochi', '.'], ['he', 'next', 'surfaces', 'on', 'the', 'distant', 'island', 'of', 'koma', 'koi', 'as', 'an', 'agent', 'for', 'the', 'mysterious', 'death-cult', 'known', 'as', 'the', 'coven', ',', 'hired', 'to', 'steal', 'a', 'mystical', 'gem', 'called', 'the', 'tear', 'of', 'heaven', ',', 'and', 'kidnap', 'its', 'guardian', 'priestess', 'kayla', '.'], ['in', 'terms', 'of', 'content', ',', 'it', 'might', 'just', 'prove', 'to', 'be', 'a', 'trendsetter', '.', \"''\"], ['lahti', 'art', 'museum', 'is', 'currently', 'closed', 'from', 'visitors', '(', 'as', 'of', 'mid-', '2', '0', '2', '0', ')', '.'], ['on', 'august', '3', '1', ',', '1', '9', '1', '5', ',', 'the', 'portion', 'of', 'ny', '1', '3', '3', 'between', 'the', 'border', 'of', 'the', 'village', 'of', 'ossining', 'and', 'ny', '1', '0', '0', ',', 'designated', 'sh', '1', '3', '0', '7', ',', 'was', 'contracted', 'for', 'an', 'upgrade', '.'], ['it', 'was', 'released', 'in', '2', '0', '0', '7', 'by', 'integrity', 'media', '.'], ['it', 'publishes', 'a', 'journal', ',', '``', 'ijfab', ':', 'international', 'journal', 'of', 'feminist', 'approaches', 'to', 'bioethics', \"''\", ',', 'and', 'is', 'affiliated', 'with', 'the', 'international', 'association', 'of', 'bioethics', ',', 'with', 'which', 'it', 'meets', '.'], ['to', 'the', 'north', ',', 'the', 'kincora', 'community', 'across', 'shaganappi', 'trail', 'to', 'the', 'east', ',', 'and', 'the', 'hamptons', 'community', 'across', 'stoney', 'trail', 'to', 'the', 'south', '.'], ['sunniسنی', '(', 'including', 'deobandiدیوبندی', ',', 'barelwi', 'بریلوی', 'and', 'tauheedi', 'توحیدی', 'etc', ')', 'and', 'shias', 'شعیہ', '.'], ['according', 'to', 'the', 'mitrokhin', 'archive', ',', 'smollett', 'had', 'been', 'recruited', 'by', 'kim', 'philby', '.'], ['at', 'this', 'time', 'the', 'lighter', 'type', 'of', 'noriker', 'horse', 'was', 'known', 'in', 'bavaria', 'as', 'the', 'oberländer', ',', 'and', 'the', 'heavier', 'type', 'was', 'called', ',', 'as', 'in', 'austria', ',', 'the', 'pinzgauer', ';', 'this', 'distinction', 'was', 'dropped', 'in', '1', '9', '3', '9', ',', 'and', 'the', 'name', 'noriker', 'applied', 'to', 'all', '.'], ['from', '2', '1', 'january', '1', '9', '4', '9', ',', '2', '0', '6', '4', 'was', 'returned', 'to', 'flåm', 'without', 'the', 'other', 'unit', 'being', 'sent', 'back', '.'], ['an', 'anime', 'television', 'series', 'adaptation', 'produced', 'by', 'satelight', ',', 'under', 'the', 'title', ',', 'aired', 'in', 'japan', 'between', 'january', '8', ',', '2', '0', '1', '2', 'and', 'june', '3', '0', ',', '2', '0', '1', '2', '.'], ['earlier', ',', 'on', '1', '1', 'november', ',', 'he', 'had', 'written', 'a', '``', 'letter', 'from', 'captivity', \"''\", 'poem', ',', 'later', 'collected', 'as', 'part', 'of', 'the', '``', 'kolorowe', 'listy', \"''\", 'series', '.'], ['adonis', '(', 'born', 'michael', 'a.', 'smith', ',', 'current', 'legal', 'name', 'adonis', 'm.', 'smith', ';', 'january', '4', ',', '1', '9', '6', '3', ')', 'is', 'a', 'pioneering', 'american', 'acid', 'house', 'musician', '.'], ['cristiani', 'edited', 'bernardo', 'bertolucci', \"'s\", '1', '9', '8', '2', 'film', '``', 'tragedy', 'of', 'a', 'ridulous', 'man', \"''\", '.'], ['during', 'this', 'time', ',', 'pinder', 'was', 'also', 'in', 'a', 'new', 'relationship', 'resulting', 'in', 'marriage', 'and', 'children', ',', 'thus', 'he', 'preferred', 'not', 'to', 'tour', 'with', 'the', 'band', 'at', 'the', 'time', '.'], ['historically', ',', 'the', 'abundant', 'fishery', 'and', 'wildlife', 'of', 'charlotte', 'harbor', 'supported', 'large', 'populations', 'of', 'people', 'of', 'the', 'caloosahatchee', 'culture', '(', 'in', 'early', 'historic', 'times', ',', 'the', 'calusa', ')', '.'], ['it', 'spans', 'roughly', '3', '1', '°', '0', '0', \"'s\", '-', '3', '2', '°', '2', '0', \"'s\", 'in', 'latitude', 'and', '1', '2', '5', '°', '3', '0', \"'\", 'e', '-', '1', '2', '7', '°', '3', '0', \"'\", 'e', 'in', 'longitude', '.'], ['of', 'the', 'electromagnetic', 'current', 'operator', 'between', 'two', 'on-shell', 'states', '.'], ['in', 'fiscal', '1', '9', '9', '6', ',', 'once', 'the', 'republican', 'party', 'had', 'taken', 'over', 'congress', 'the', 'year', 'prior', ',', 'lsc', 'had', 'its', 'funding', 'cut', 'again', ',', 'from', '$', '4', '0', '0', 'million', 'to', '$', '2', '7', '8', 'million', '.'], ['in', 'december', '1', '9', '3', '3', ',', 'services', 'around', 'aylesbury', 'were', 'acquired', 'from', 'the', 'aylesbury', 'omnibus', 'company', '.'], ['from', '1', '9', '7', '0', 'to', '1', '9', '7', '4', 'he', 'served', 'as', 'concertmaster', 'of', 'the', 'radio', 'berlin', 'orchestra', ',', 'which', 'was', 'led', 'by', 'lorin', 'maazel', 'at', 'the', 'time', '.'], ['sed', 'festivals', 'traditionally', 'were', 'held', 'again', 'every', 'three', 'years', 'after', 'the', '3', '0', 'th', 'year', ';', 'ramesses', 'ii', ',', 'who', 'sometimes', 'held', 'them', 'after', 'two', 'years', ',', 'eventually', 'celebrated', 'an', 'unprecedented', 'thirteen', 'or', 'fourteen', '.'], ['the', 'bishopric', 'of', 'macon', 'was', 'established', 'as', 'a', 'suffragan', 'of', 'lyon', '.'], ['the', 'format', 'of', 'the', 'show', 'often', 'featured', 'perkins', 'narrating', 'off-camera', ',', 'describing', 'fowler', \"'s\", 'on-camera', 'work', 'with', 'the', 'wild', 'animals', '.'], ['all', 'of', 'the', 'below', 'are', 'region', '1', '(', 'north', 'america', ')', 'box', 'sets', 'featuring', 'entire', 'seasons', 'of', 'the', 'show', '.'], ['mulholland', 'travels', 'several', 'times', 'a', 'year', 'to', 'screen', 'her', 'documentary', 'and', 'interact', 'with', 'students', 'via', 'a', 'q', '&', 'amp', ';', 'a', 'panel', '.'], ['``', 'curlew', \"''\", 'was', 'decommissioned', 'there', '5', 'december', '1', '9', '4', '5', ',', 'and', 'transferred', 'to', 'the', 'maritime', 'commission', '2', '7', 'september', '1', '9', '4', '6', 'for', 'disposal', '.'], ['other', 'than', 'ivane', 'makharadze', ',', 'the', 'first', 'leader', ',', 'some', 'of', 'the', 'georgians', 'in', 'these', 'shows', 'rose', 'to', 'particular', 'prominence', '.'], ['robert', 'p.', 'casey', '``', 'voiced', 'his', 'suspicion', 'in', '1', '9', '4', '7', '``', '.'], ['he', 'would', 'walk', 'to', 'save', 'the', 'expense', 'of', 'a', 'camel', '.'], ['the', 'game', 'marked', 'the', 'big', 'ten', 'opener', 'for', 'both', 'teams', '.'], ['this', 'was', 'reflected', 'in', 'the', 'original', 'version', 'of', 'the', 'south', 'korean', 'flag', \"'s\", 'pledge', 'of', 'allegiance', ',', 'instituted', 'in', '1', '9', '7', '2', 'and', 'used', 'until', '2', '0', '0', '7', ',', 'which', 'stressed', 'allegiance', 'to', 'the', '``', 'korean', 'race', \"''\", 'rather', 'than', 'the', 'south', 'korean', 'state', '.'], ['chautauqua', 'county/jamestown', 'airport', 'covers', 'an', 'area', 'of', '7', '8', '8', 'acres', '(', '3', '1', '9', 'ha', ')', 'at', 'an', 'elevation', 'of', '1', ',', '7', '2', '3', 'feet', '(', '5', '2', '5', 'm', ')', 'above', 'mean', 'sea', 'level', '.'], ['soon', 'after', 'duncan', 'announced', 'his', 'candidacy', ',', 'howard', 'morgan', ',', 'a', 'former', 'member', 'of', 'the', 'federal', 'power', 'commission', ',', 'announced', 'he', 'was', 'running', 'as', 'an', 'anti-war', 'option', 'to', 'duncan', '.'], ['neural', 'mappings', '(', 'in', 'contrast', 'to', 'neural', 'pathways', ')', 'store', 'training', 'information', 'by', 'adjusting', 'their', 'neural', 'link', 'weights', '(', 'see', 'artificial', 'neuron', ',', 'artificial', 'neural', 'networks', ')', '.'], ['as', 'of', 'the', '2', '0', '1', '0', 'united', 'states', 'census', ',', 'there', 'were', '4', ',', '0', '7', '8', 'people', ',', '1', ',', '7', '6', '2', 'households', ',', 'and', '1', ',', '1', '5', '6', 'families', 'living', 'in', 'the', 'county', '.'], ['in', 'australia', ',', '``', 'hurts', '2', 'b', 'human', \"''\", 'debuted', 'at', 'number', 'one', 'on', 'the', 'aria', 'albums', 'chart', ',', 'becoming', 'pink', \"'s\", 'sixth', 'chart-topping', 'album', 'there', '.'], ['he', 'ruled', 'until', 'his', 'death', 'in', '1', '8', '0', '1', ',', 'when', 'he', 'was', 'succeeded', 'by', 'his', 'son', 'mir', 'ghulam', 'ali', 'talpur', 'until', '1', '8', '1', '1', '.'], ['nestlé', 'rossiya', 'is', 'a', 'subsidiary', 'company', 'of', 'nestlé', 's.a', '.'], ['he', 'entered', 'politics', 'in', '1', '9', '7', '2', 'and', 'was', 'detained', 'under', 'misa', 'during', 'emergency', '.'], ['phalacrocoracidae', 'is', 'a', 'family', 'of', 'medium', 'to', 'large', 'coastal', ',', 'fish-eating', 'seabirds', 'that', 'includes', 'cormorants', 'and', 'shags', '.'], ['thoroughbreds', 'have', 'the', 'pre-eminent', 'reputation', 'as', 'a', 'racing', 'breed', ',', 'but', 'other', 'breeds', 'also', 'race', '.'], ['the', 'table', 'below', 'lists', 'the', 'combinations', 'of', 'initial', 'and', 'final', 'classes', 'that', 'occur', 'in', 'the', '``', 'qieyun', \"''\", ',', 'with', 'the', 'row', 'of', 'the', 'rime', 'tables', 'in', 'which', 'each', 'combination', 'was', 'placed', ':'], ['in', 'addition', 'to', 'the', 'spanish', 'pasodoble', ',', 'already', 'discussed', ',', 'this', 'rhythm', 'has', 'been', 'adopted', 'and', 'modified', 'by', 'other', 'nations', ':'], ['when', 'asked', 'by', 'the', 'police', ',', 'according', 'to', 'the', '``', 'life', \"''\", 'article', ':', '``', 'marion', 'shrugged', ',', \"'\", 'i', 'could', \"n't\", 'break', 'that', 'big', 'rock', 'by', 'myself', \"'\", ',', 'he', 'said', ',', \"'so\", 'i', 'decided', 'to', 'let', 'the', 'train', 'do', 'it', '.', \"'\", \"''\"], ['foul', 'play', 'is', 'a', '1', '9', '7', '8', 'american', 'romantic', 'comedy', 'thriller', 'film', 'written', 'and', 'directed', 'by', 'colin', 'higgins', ',', 'and', 'starring', 'goldie', 'hawn', ',', 'chevy', 'chase', ',', 'dudley', 'moore', ',', 'burgess', 'meredith', ',', 'eugene', 'roche', ',', 'rachel', 'roberts', ',', 'brian', 'dennehy', 'and', 'billy', 'barty', '.'], ['his', 'only', 'other', 'davis', 'cup', 'appearance', 'came', 'in', 'the', 'first', 'round', 'of', 'the', '1', '9', '9', '5', 'world', 'group', ',', 'when', 'switzerland', 'faced', 'the', 'netherlands', 'at', 'home', 'in', 'geneva', '.'], ['she', 'is', 'a', 'fresh', 'addition', 'to', 'the', 'movies', ':', 'a', 'handsome', 'profile', ',', 'a', 'bright', 'personality', ',', 'and', 'a', 'singing', 'voice', 'as', 'unique', 'in', 'its', 'own', 'way', 'as', 'streisand', \"'s\", '.', \"''\"], ['canavan', 'has', 'suffered', 'from', 'asthma', 'since', 'he', 'was', 'a', 'child', ',', 'and', 'has', 'battled', 'throughout', 'his', 'career', 'to', 'control', 'the', 'ailment', '.'], ['the', 'name', 'is', 'said', 'to', 'have', 'been', 'given', 'by', 'ngawang', 'namgyal', ',', 'the', '1', 'st', 'zhabdrung', 'rinpoche', ',', 'who', 'was', 'searching', 'for', 'the', 'best', 'location', 'for', 'a', 'dzong', 'to', 'prevent', 'incursions', 'from', 'the', 'south', '.'], ['moataz', 'wadnan', 'is', 'an', 'egyptian', 'journalist', 'for', '``', 'huffpost', 'arabi', \"''\", '.'], ['kiaa', '0', '2', '3', '2', 'is', 'experimentally', 'known', 'to', 'interact', 'with', 'ywhaz', ',', 'dyrk', '1', 'a', ',', 'and', 'dyrk', '1', 'b', '.'], ['the', 'album', 'received', 'a', 'grammy', 'award', 'nomination', 'for', 'best', 'jazz', 'fusion', 'performance', '.'], ['she', 'also', 'published', '``', 'youth', \"'s\", 'first', 'steps', 'in', 'geography', \"''\", 'in', '1', '8', '1', '1', '.'], ['he', 'bequeathed', 'hoemaru', 'to', 'his', 'son-in-law', ',', 'the', 'steward', 'of', 'the', 'kumano', 'shrines', '(', ')', ',', 'and', ',', 'after', 'changing', 'shishinoko', \"'s\", 'name', 'again', 'to', 'tomogiri', '(', '友切', ',', '``', 'friend-cutter', \"''\", ')', ',', 'bequeathed', 'it', 'to', 'his', 'son', 'yoshitomo', '.'], ['the', 'story', ',', 'told', 'from', 'shawn', \"'s\", 'perspective', ',', 'also', 'focuses', 'on', 'how', 'his', 'family', 'copes', 'with', 'the', 'condition', '.'], ['in', '2', '0', '1', '6', ',', 'after', 'thompson', \"'s\", 'girlfriend', 'broke', 'up', 'with', 'him', ',', 'he', 'began', 'harassing', 'her', ',', 'including', 'threats', 'of', 'revenge', 'porn', ',', 'and', 'making', 'bomb', 'threats', 'to', 'jewish', 'community', 'centers', 'as', 'retaliation', '.'], ['delighted', 'to', 'be', 'appreciated', 'again', ',', 'helmut', 'performs', 'for', 'them', 'and', 'gains', 'an', 'audience', 'for', 'a', 'while', ',', 'until', 'the', 'new', 'prison', 'commandant', 'orders', 'that', 'he', 'stop', '.'], ['since', '1', '8', '5', '6', ',', 'the', 'first', 'stafford', 'ministry', ',', 'led', 'by', 'edward', 'stafford', ',', 'was', 'in', 'place', '.'], ['these', 'dialects', 'are', 'spoken', 'in', 'the', 'region', 'of', 'franconia', 'and', 'in', 'the', 'central', 'parts', 'of', 'saxon', 'vogtland', '.'], ['it', 'was', 'soon', 'damaged', 'by', 'waves', ',', 'then', 'destroyed', 'by', 'a', 'storm', '.'], ['it', 'was', 'laid', 'down', 'in', 'january', '1', '8', '9', '5', 'and', 'launched', 'in', 'july', '1', '8', '9', '6', ',', 'before', 'being', 'completed', 'in', 'august', '1', '8', '9', '7', '.'], ['born', 'in', 'spafford', ',', 'onondaga', 'county', ',', 'new', 'york', ',', 'pease', 'was', 'educated', 'in', 'auburn', ',', 'new', 'york', '.'], ['as', 'with', 'all', 'transmission', 'lines', ',', 'it', 'depends', 'on', 'the', 'attenuation', 'and', 'signal-to-noise', 'ratio', '.'], ['from', 'other', 'sources', 'it', 'is', 'however', 'known', 'that', 'moss', 'jernverk', 'as', 'early', 'as', 'in', '1', '7', '5', '8', 'employed', 'the', 'teacher', 'andreas', 'glafstrøm', 'paying', 'him', '6', 'riksdaler', 'a', 'month', '.'], ['during', 'the', 'first', 'world', 'war', 'he', 'spent', 'two', 'years', 'in', 'a', 'calais', 'hospital', ',', 'where', 'he', 'contracted', 'pulmonary', 'tuberculosis', 'and', 'had', 'to', 'be', 'repatriated', '.'], ['she', 'currently', 'resides', 'in', 'la', 'tour-de-peilz', ',', 'about', '9', '0', 'km', 'northeast', 'of', 'geneva', 'across', 'lake', 'geneva', '.'], ['the', '1', '9', '5', '6', 'stanford', 'indians', 'football', 'team', 'represented', 'stanford', 'university', 'in', 'the', '1', '9', '5', '6', 'ncaa', 'university', 'division', 'football', 'season', '.'], ['he', 'was', 'shot', 'after', 'receiving', 'daily', 'death', 'threats', 'on', 'account', 'of', 'his', 'journalistic', 'criticism', '.'], ['yet', 'attacks', 'on', 'these', 'blanket', 'prohibitions', 'levied', 'by', 'excluded', 'felon', 'jurors', 'have', 'failed', 'consistently', '.'], ['clemenceau', 'attacked', 'lloyd', 'george', \"'s\", 'wish', 'to', 'make', 'offensives', 'against', 'turkey', 'a', 'top', 'priority', '.'], ['ywhaz', 'is', 'an', 'apoptotic', 'path', 'regulator', 'known', 'to', 'bind', 'to', 'phosphoserine', 'proteins', '.'], ['she', 'then', 'played', 'with', 'chuck', 'mangione', ',', 'the', 'jazz', 'composer', \"'s\", 'orchestra', ',', 'clark', 'terry', ',', 'sam', 'rivers', ',', 'buddy', 'rich', ',', 'the', 'thad', 'jones-mel', 'lewis', 'orchestra', ',', 'gil', 'evans', ',', 'frank', 'foster', ',', 'and', 'slide', 'hampton', '.'], ['in', 'this', 'report', ',', 'the', 'current', 'issues', 'with', 'having', 'a', 'national', 'global', 'reserve', 'currency', 'are', 'addressed', '.'], ['according', 'to', 'modern', 'research', 'this', 'church', 'was', '1', '9', 'm', 'wide', 'and', 'about', '4', '1', 'm', 'long', ';', 'the', 'tower', 'on', 'west', 'side', 'and', 'the', 'east', 'end', 'of', 'the', 'sacristy', 'gives', 'us', 'an', 'idea', 'about', 'the', 'size', 'of', 'the', 'church', 'after', 'its', 'first', 'reconstruction', '.'], ['he', 'joined', 'the', 'new', 'forti', 'team', 'and', 'was', 'one', 'of', 'the', 'designers', 'of', 'the', 'team', \"'s\", 'fg', '0', '1', 'chassis', 'for', 'the', '1', '9', '9', '5', 'season', '.'], ['cruttwell', 'made', 'no', 'apparent', 'response', 'to', 'these', 'provocations', ',', 'other', 'than', 'a', 'dismissive', 'reference', 'to', 'waugh', 'as', '``', 'a', 'silly', 'suburban', 'sod', 'with', 'an', 'inferiority', 'complex', \"''\", '.'], ['their', 'home', '(', 'now', 'at', '5', 'collin', 'court', ')', 'could', 'be', 'seen', 'from', 'many', 'points', 'around', 'kingston', ',', 'and', 'the', 'large', 'ballroom', 'in', 'kingston', 'house', 'was', 'the', 'centre', 'of', 'social', 'life', 'in', 'the', 'district', '.'], ['thus', 'the', 'm', '2', '6', 'became', 'a', 'base', 'of', 'the', 'patton', 'tank', 'series', ',', 'which', 'replaced', 'it', 'in', 'early', '1', '9', '5', '0', 's', '.'], ['the', 'first', 'sight', 'of', 'australia', 'on', '1', '2', 'january', '1', '8', '3', '6', 'reminded', 'him', 'of', 'patagonia', ',', 'but', 'inland', 'the', 'country', 'improved', ',', 'and', 'he', 'was', 'soon', 'filled', 'with', 'admiration', 'at', 'the', 'bustling', 'city', 'of', 'sydney', '.'], ['kronstadt', 'is', 'a', 'russian', 'town', 'on', 'kotlin', 'island', 'near', 'saint', 'petersburg', '.'], ['at', 'the', 'same', 'time', 'philip', 'maurice', ',', 'count', 'of', 'hanau', ',', 'made', 'his', 'peace', 'with', 'the', 'emperor', ',', 'and', 'relinquished', 'the', 'swedish', 'cause', '.'], ['using', 'common', 'cylinders', 'and', 'parts', 'from', 'the', 'nz', '(', 'novák-zeithammer', ')', 'range', 'of', 'engines', 'the', 'nz', '1', '2', '0', 'produced', 'up', 'to', '1', '3', '5', 'horsepower', '(', '9', '9', 'kw', ')', '.'], ['through', 'this', 'group', 'the', 'first', 'complaints', 'to', 'the', 'international', 'community', 'in', 'opposition', 'to', 'the', 'u.s.', 'occupation', 'of', 'the', 'dominican', 'republic', 'were', 'performed', '.'], ['for', 'every', '1', '0', '0', 'females', 'age', '1', '8', 'and', 'over', ',', 'there', 'were', '9', '1', '.', '1', 'males', '.'], ['once', 'in', 'the', 'house', ',', 'the', 'girls', 'receive', 'a', 'visit', 'from', 'the', 'fashion', 'designer', 'juliana', 'jabour', ',', 'who', 'gives', 'them', 'tips', 'about', 'the', 'fashion', 'world', '.'], ['helenów', 'is', 'a', 'village', 'in', 'the', 'administrative', 'district', 'of', 'gmina', 'krasne', ',', 'within', 'przasnysz', 'county', ',', 'masovian', 'voivodeship', ',', 'in', 'east-central', 'poland', '.'], ['ma', 'kyin', 'lwan', '(', 'born', '5', 'may', '1', '9', '6', '6', ')', 'is', 'a', 'burmese', 'racewalker', '.'], ['a', 'brick', 'porch', 'over', 'the', 'south', 'door', 'is', 'of', 'late', '1', '7', 'th', 'century', 'date', '.'], ['the', 'building', 'was', 'in', '1', '9', '5', '3', 'refurbished', 'under', 'supervision', 'of', 'the', 'architect', 's', 'f.', 'and', 'l.', 'halleløv', '.'], ['they', 'have', 'been', 'rebuilt', 'several', 'times', 'during', 'their', 'long', 'service', 'life', '.'], ['some', 'words', 'directly', 'inherited', 'from', 'latin', 'are', 'also', 'said', 'to', 'prove', 'the', 'continuous', 'presence', 'of', 'the', 'romanians', \"'\", 'ancestors', 'north', 'of', 'the', 'danube', ',', 'because', 'they', 'refer', 'to', 'things', 'closely', 'connected', 'to', 'these', 'regions', '.'], ['dissatisfied', 'with', 'the', 'progress', 'of', 'the', 'attack', ',', 'gay', 'ordered', 'the', 'regimental', 'commander', ',', 'col.', 'james', 'k.', 'woolnough', ',', 'who', 'had', 'temporarily', 'replaced', 'colonel', 'harris', ',', 'to', 'start', 'the', 'other', 'two', 'battalions', 'on', 'flank', 'movements', 'against', 'the', 'enemy-held', 'ridge', '.'], ['this', 'apprenticeship', 'year', 'ends', 'with', 'a', 'last', 'place', 'in', 'the', 'standings', ',', 'but', 'stade', 'goes', 'back', 'up', 'the', 'following', 'season', '.'], ['its', 'license', 'was', 'revoked', 'just', 'after', 'the', 'arrest', 'of', 'pkk', 'leader', 'abdullah', 'ocalan', ',', 'at', 'the', 'official', 'request', 'of', 'turkey', '.'], ['ingram', 'has', 'continually', 'alleged', 'that', 'mcguinness', 'was', 'involved', 'in', 'hegarty', \"'s\", 'death', 'and', 'that', 'he', 'was', 'killed', 'to', 'protect', 'a', 'higher', 'placed', 'fru', 'agent', '.'], ['hillary', 'took', 'part', 'in', 'the', 'successful', 'operation', 'and', 'everyone', 'was', 'ultimately', 'rescued', '.'], ['apple', \"'s\", '2', '0', '1', '5', 'caia', 'scheme', 'would', 'not', 'be', 'affected', ')', '.'], ['(', 'adelphia', 'itself', 'was', 'dissolved', 'in', '2', '0', '0', '6', '.', ')'], ['after', 'an', 'entertaining', 'message', 'from', 'pazzeto', ',', 'the', 'girls', 'are', 'informed', 'by', 'fernanda', 'motta', 'that', 'this', 'week', \"'s\", 'photo', 'shoot', 'will', 'be', 'based', 'on', 'the', 'famous', 'pin', 'up', \"'s\", 'but', 'at', 'the', 'same', 'time', 'they', 'will', 'also', 'pose', 'as', 'giants', '.'], ['with', 'six', 'of', 'the', 'larger', 'submarines', 'under', 'construction', ',', 'the', 'navy', 'considered', 'either', 'building', 'german', 'type', 'ub', 'iii', 'submarines', 'under', 'license', 'or', 'implementing', 'the', 'type', '1', '9', '1', '6', 's', '1', 'design', 'submitted', 'by', 'ungarische', 'unterseebotsbau', 'ag', '(', ')', 'of', 'fiume', '.'], ['late', 'harappan', '(', 'after', '1', '4', '0', '0', 'bce', ')', 'sites', 'are', 'sotha', 'and'], ['even', 'if', 'such', 'evidence', 'is', 'found', ',', 'if', 'it', 'is', 'outside', 'the', 'scope', 'of', 'the', 'areas', 'the', 'warrant', 'permits', 'then', 'it', 'is', 'very', 'likely', 'to', 'be', 'excluded', 'from', 'trial', 'as', 'an', 'illegal', 'search', 'and', 'seizure', '.'], ['caliph', 'umar', 'ibn', 'al-khattab', 'denied', 'them', 'permission', 'to', 'cross', 'the', 'river', 'or', 'operate', 'on', 'indian', 'soil', 'and', 'the', 'arabs', 'returned', 'home', '.'], ['he', 'was', 'appointed', 'chief-of-staff', 'of', 'the', 'japanese', 'second', 'army', 'from', 'september', '1', '9', '0', '4', '.'], ['samakuva', 'announced', 'at', 'a', 'news', 'conference', 'on', 'the', 'night', 'of', 'september', '8', 'that', 'unita', 'accepted', 'the', 'mpla', \"'s\", 'election', 'victory', ',', 'and', 'he', 'urged', 'the', 'mpla', '``', 'to', 'govern', 'in', 'the', 'interest', 'of', 'all', 'angolans', \"''\", '.'], ['they', 'occur', 'in', 'shades', 'of', 'greens', 'or', 'browns', 'and', 'can', 'change', 'colors', 'over', 'periods', 'of', 'hours', 'and', 'weeks', '.'], ['after', 'the', 'restoration', ',', 'having', 'been', 'created', 'viscount', 'malden', 'and', '1', 'st', 'earl', 'of', 'essex', ',', 'the', 'younger', 'capell', 'became', 'an', 'ambitious', 'courtier', 'of', 'charles', 'ii', '.'], ['in', 'the', 'september', '1', '9', '8', '1', 'cabinet', 'reshuffle', 'prior', 'was', 'moved', 'from', 'the', 'employment', 'portfolio', 'to', 'become', 'secretary', 'of', 'state', 'for', 'northern', 'ireland', ',', 'an', 'office', 'he', 'held', 'until', 'september', '1', '9', '8', '4', '.'], ['the', 'wingspan', 'is', 'about', '3', '6', 'mm', 'for', 'males', 'and', '4', '7', 'mm', 'for', 'females', '.'], ['in', '1', '9', '6', '6', 'he', 'returned', 'to', 'porsche', 'for', 'a', 'comeback', 'in', 'the', 'world', 'sportscar', 'championship', ',', 'as', 'porsche', 'started', 'a', 'serious', 'effort', 'there', '.'], ['his', 'next', 'film', 'karanavar', 'which', 'came', 'out', 'in', '2', '0', '1', '4', 'was', 'produced', 'by', 'sandya', 'rajendran', 'under', 'the', 'banner', 'of', 'kalidasa', 'international', '.'], ['soon', 'after', 'the', 'battle', ',', 'abbott', \"'s\", 'brother', 'fletcher', ',', 'who', 'was', 'suffering', 'from', 'dysentery', ',', 'joined', 'him', 'in', 'the', 'hospital', '.'], ['it', 'was', 'the', '2', '0', 'th', 'best-selling', 'single', 'of', '1', '9', '9', '1', 'in', 'the', 'uk', '.'], ['the', 'people', 'did', 'not', 'have', 'even', 'a', 'sense', 'of', 'need', 'of', 'what', 'the', 'gospel', 'was', '.'], ['mitchell', 'explained', 'the', 'poem', 'and', 'its', 'meaning', 'to', '``', 'rolling', 'stone', \"''\", 'magazine', ',', 'stating', 'it', 'was', 'about', 'being', 'misunderstood', ',', 'but', 'still', 'be', 'able', 'to', 'stand', 'out', 'while', 'doing', 'what', 'is', 'right', 'for', 'you', '.'], ['it', 'is', 'said', 'that', 'a', 'wife', 'of', 'the', 'duke', 'jaroslav', 'osmomysl', ',', 'being', 'lost', 'in', 'a', 'forest', ',', 'met', 'a', 'deer', '.'], ['murray', 'issued', 'this', 'order', 'on', 'the', 'grounds', 'that', 'the', 'land', 'on', 'both', 'sides', 'of', 'the', 'river', 'belonged', 'to', 'oklahoma', ',', 'per', 'the', 'louisiana', 'purchase', 'treaty', 'of', '1', '8', '0', '3', '.'], ['meanwhile', ',', 'he', 'was', 'completing', 'his', 'monumental', 'work', '``', 'bella', 'germaniae', \"''\", ',', 'the', 'only', 'authority', 'expressly', 'quoted', 'in', 'the', 'first', 'six', 'books', 'of', 'the', '``', 'annales', \"''\", 'of', 'tacitus', ',', 'and', 'probably', 'one', 'of', 'the', 'principal', 'authorities', 'for', 'the', 'same', 'author', \"'s\", '``', 'germania', \"''\", '.'], ['he', 'served', 'for', 'several', 'years', 'as', 'a', 'professor', 'of', 'english', 'at', 'the', 'university', 'of', 'lagos', ',', 'a', 'position', 'from', 'which', 'he', 'retired', 'in', '1', '9', '8', '0', '.'], ['tolleson', 'is', 'often', 'identified', 'with', 'the', 'brief', ',', 'disappointing', 'tenure', 'of', 'ken', 'harrelson', 'as', 'general', 'manager', 'of', 'the', 'chicago', 'white', 'sox', ',', 'due', 'to', 'his', 'involvement', 'in', 'two', 'of', 'harrelson', \"'s\", 'iconic', 'trades', '.'], ['fire', 'protection', 'and', 'emergency', 'medical', 'services', 'are', 'provided', 'by', 'the', 'tahoe-douglas', 'fire', 'protection', 'district', 'at', 'the', 'lake', 'and', 'the', 'east', 'fork', 'fire', 'protection', 'district', 'for', 'the', 'rest', 'of', 'the', 'county', '.'], ['the', 'bbc', 'philharmonic', 'is', 'a', 'national', 'british', 'broadcasting', 'symphony', 'orchestra', 'and', 'is', 'one', 'of', 'five', 'radio', 'orchestras', 'maintained', 'by', 'the', 'british', 'broadcasting', 'corporation', '.'], ['by', 'this', 'time', 'he', 'was', 'known', 'as', 'a', 'master', 'of', 'masters', ',', 'and', 'his', 'presence', 'attracted', 'many', 'lamas', 'from', 'tibet', ',', 'who', 'came', 'to', 'receive', 'transmissions', 'from', 'him', '.'], ['despite', 'its', 'name', ',', 'it', 'was', 'not', 'a', 'reserve', 'formation', 'of', 'the', 'prussian', 'guards', 'like', 'the', '1', 'st', 'guards', 'reserve', 'division', '.'], ['samson', 'ben', 'samson', 'of', 'coucy', '(', ')', ',', 'known', 'as', 'the', 'count', '(', 'or', 'prince', ')', 'of', 'coucy', '(', 'hebrew', ':', ')', ',', 'was', 'a', 'french', 'rabbi', 'and', 'tosafist', 'who', 'flourished', 'at', 'the', 'end', 'of', 'the', 'twelfth', 'and', 'in', 'the', 'first', 'half', 'of', 'the', 'thirteenth', 'century', '.'], ['we', \"'ve\", 'tried', 'to', 'work', 'more', 'like', 'a', 'band', '.', \"''\"], ['the', 'first', 'emperor', 'visited', 'ji', 'in', '2', '1', '5', 'bc', 'and', ',', 'to', 'protect', 'the', 'frontier', 'from', 'the', 'xiongnu', ',', 'had', 'the', 'qin', 'great', 'wall', 'built', 'north', 'of', 'ji', 'and', 'fortified', 'juyong', 'pass', '.'], ['transitional', 'forms', 'prior', 'to', 'fully', 'developed', 'terrestrial', 'tetrapods', 'such', 'as', '``', 'acanthostega', \"''\", ',', 'are', 'thought', 'to', 'have', 'captured', 'prey', 'in', 'the', 'water', '.'], ['the', 'following', 'is', 'a', 'list', 'of', 'the', '8', '3', 'known', 'endemic', 'bird', 'species', 'in', 'colombia', '(', 'about', '4', '%', 'of', 'colombian', 'species', ')', 'with', 'notes', 'about', 'their', 'general', 'distribution', '.'], ['it', 'was', 'made', 'available', 'for', 'digital', 'download', 'and', 'streaming', 'with', '``', 'feels', 'like', 'summer', \"''\", 'as', 'an', 'extended', 'play', 'under', 'the', 'title', '``', 'summer', 'pack', \"''\", '.'], ['mawaan', \"'s\", 'brother', ',', 'nabhaan', ',', 'also', 'followed', 'the', 'family', 'into', 'a', 'career', 'in', 'acting', 'with', 'his', 'debut', 'in', 'bbc', 'drama', 'series', '``', 'informer', \"''\", '.'], ['the', 'weight', 'of', 'the', 'ball', ',', 'given', 'an', 'appropriate', 'working', 'surface', 'under', 'the', 'mouse', ',', 'provides', 'a', 'reliable', 'grip', 'so', 'the', 'mouse', \"'s\", 'movement', 'is', 'transmitted', 'accurately', '.'], ['rajesh', 'khanna', ',', 'who', 'has', 'a', 'double', 'role', 'in', 'the', 'film', 'was', 'nominated', 'for', 'a', 'filmfare', 'award', 'for', 'best', 'actor', 'in', '1', '9', '8', '2', 'for', 'his', 'performance', 'in', 'this', 'film', '.'], ['bernardo', 'vieira', 'de', 'souza', '(', 'born', '2', '0', 'may', '1', '9', '9', '0', ')', ',', 'better', 'known', 'as', 'bernardo', ',', 'is', 'a', 'brazilian', 'professional', 'footballer', 'who', 'plays', 'as', 'an', 'attacking', 'midfielder', 'and', 'is', 'currently', 'a', 'free', 'agent', '.'], ['and', '``', 'the', 'globe', 'and', 'mail', \"''\", 'says', ',', '``', 'gowdy', \"'s\", 'is', 'a', 'peacemaking', 'genius', ',', 'unique', 'in', 'its', 'talent', 'for', 'the', 'translation', 'of', 'strangeness', 'to', 'second', 'nature', '...', \"''\"], ['robin', 'mckie', 'in', '``', 'the', 'guardian', \"''\", 'states', 'that', 'oreskes', 'and', 'conway', 'deserve', 'considerable', 'praise', 'for', 'exposing', 'the', 'influence', 'of', 'a', 'small', 'group', 'of', 'cold', 'war', 'ideologues', '.'], ['originally', 'named', '``', 'ryndam', \"''\", ',', 'she', 'will', 'be', 'the', 'third', 'of', 'hal', \"'s\", '``', 'pinnacle', \"''\", 'class', 'in', 'the', 'fleet', 'and', 'is', 'scheduled', 'to', 'be', 'delivered', 'in', 'july', '2', '0', '2', '1', '.'], ['``', 'the', 'children', 'of', 'rosenthal', \"''\", '(', '``', 'дети', 'розенталя', \"''\", ')', ',', 'an', 'opera', 'in', 'two', 'acts', 'by', 'leonid', 'desyatnikov', ',', 'with', 'a', 'libretto', 'by', 'vladimir', 'sorokin', '.'], ['in', 'the', '1', '9', '8', '0', 's', 'schenkel', 'resumed', 'occasional', 'work', 'on', 'zappa', 'projects', '.'], ['on', '7', 'july', '2', '0', '1', '9', 'ramona', 'ioana', 'bruynseels', 'launched', 'her', 'candidacy', '.'], ['in', '1', '8', '5', '0', ',', 'pease', 'settled', 'in', 'packwaukee', ',', 'marquette', 'county', ',', 'wisconsin', '.'], ['``', 'sexy', ',', 'sexy', ',', 'sexy', \"''\", 'peaked', 'at', 'no', '.'], ['the', 'site', 'is', 'also', 'unusual', 'in', 'having', 'a', 'footbridge', 'across', 'the', 'tracks', 'not', 'associated', 'with', 'the', 'station', 'but', 'at', 'a', 'level', 'crossing', ',', 'indicating', 'the', 'high', 'level', 'of', 'traffic', 'and', 'activity', 'at', 'the', 'town', 'conflicting', 'with', 'main', 'line', 'and', 'shunting', 'movements', '.'], ['he', 'landed', 'at', \"'kaerperis\", \"'\", 'and', 'captured', 'it', 'forcing', 'octavius', 'to', 'conscript', 'all', 'the', 'island', 'into', 'the', 'army', 'to', 'combat', 'the', 'roman', 'legions', '.'], ['the', '``', 'vin', 'jaune', \"''\", 'is', 'then', 'bottled', 'in', 'special', 'squat', 'bottles', 'that', 'hold', '6', '2', 'cl', '(', '2', '1', 'ounces', ')', ',', 'called', '``', 'clavelins', \"''\", '.'], ['myke', 'quest', 'won', 'the', 'tournament', 'by', 'winning', 'four', 'matches', 'at', 'the', 'event', '.'], ['it', 'was', 'held', 'on', 'september', '2', '7', ',', '2', '0', '0', '9', 'at', 'dover', 'international', 'speedway', ',', 'in', 'dover', ',', 'delaware', 'before', 'a', 'crowd', 'of', '1', '1', '0', ',', '0', '0', '0', 'people', '.'], ['sobiesęki', 'is', 'a', 'village', 'in', 'the', 'administrative', 'district', 'of', 'gmina', 'skała', ',', 'within', 'kraków', 'county', ',', 'lesser', 'poland', 'voivodeship', ',', 'in', 'southern', 'poland', '.'], ['sapling', 'resembled', 'poison', 'ivy', 'in', 'powers', 'and', 'costume', ',', 'and', 'buster', 'seemed', 'like', 'the', 'character', 'blockbuster', '(', 'or', 'maybe', 'a', 'cross', 'between', 'bizarro', 'and', 'solomon', 'grundy', ')', '.'], ['in', '2', '0', '1', '2', ',', 'the', 'film', '``', 'the', 'sessions', \"''\", 'was', 'considered', 'one', 'of', 'the', 'sundance', 'breakout', 'hits', 'of', 'that', 'year', '.'], ['amnesty', 'international', 'issued', 'a', 'revised', 'statement', 'saying', 'that', 'six', 'dissidents', 'had', 'been', 'arrested', 'in', 'yangon', 'over', 'the', 'weekend', '.'], ['her', 'husband', 'was', 'formerly', 'with', 'the', 'royal', 'inniskilling', 'fusiliers', ',', 'and', 'was', 'awarded', 'a', 'military', 'cross', 'during', 'the', 'war', ';', 'at', 'the', 'time', 'of', 'his', 'marriage', 'he', 'was', 'labour', 'officer', 'at', 'holwell', 'works', ',', 'asfordby', 'hill', '.'], ['traditional', 'attires', 'are', 'multicolored', ',', 'with', 'each', 'of', 'the', 'colors', 'represent', 'its', 'symbolic', 'aspect', '.'], ['like', 'the', 'muslim', 'brotherhood', ',', 'it', 'works', 'for', 'the', 'islamisation', 'of', 'the', 'whole', 'society', ',', 'through', 'its', 'grassroots', 'social', 'welfare', 'organisations', 'and', 'important', 'presence', 'in', 'universities', '.'], ['in', '2', '0', '1', '0', ',', 'loaiza', 'married', 'mexican-american', 'singer', 'jenni', 'rivera', '.'], ['in', 'this', ',', 'he', 'resembles', 'his', 'more', 'representational', 'american', 'contemporary', ',', 'edward', 'hopper', ':', 'their', 'pictures', \"'\", 'low', 'sunlight', ',', 'their', 'deep', 'and', 'often', 'irrational', 'shadows', ',', 'their', 'empty', 'walkways', 'and', 'portentous', 'silences', 'creating', 'an', 'enigmatic', 'visual', 'poetry', '.'], ['specific', 'patient', 'programming', 'utilizes', 'individual', 'and', 'group', 'therapy', ',', 'occupational', 'and', 'rehabilitation', 'therapies', 'and', 'the', 'management', 'of', 'social', 'and', 'financial', 'problems', 'by', 'developing', 'linkages', 'back', 'to', 'the', 'community', '.'], ['she', 'is', 'also', 'the', 'assembly', \"'s\", 'rapporteur', 'on', 'turkey', '.'], ['furniture', 'and', 'houses', 'were', 'dismantled', 'to', 'provide', 'fuel', 'for', 'heating', '.'], ['in', 'addition', 'to', 'the', 'teeth', ',', 'other', 'structures', 'that', 'aid', 'chewing', 'are', 'the', 'lips', ',', 'cheeks', ',', 'tongue', ',', 'hard', 'palate', ',', 'soft', 'palate', ',', 'and', 'floor', 'of', 'the', 'mouth', '.'], ['peel', 'regional', 'police', '(', 'prp', ')', 'vice', 'detective', 'randy', 'cowan', 'stated', 'in', '2', '0', '0', '7', 'that', 'npf', 'is', 'a', 'family-based', 'gang', ',', 'with', 'members', 'of', 'the', '2', '0', '0', '0', 's', 'being', 'the', 'relatives', 'of', '1', '9', '9', '0', 's', 'members', '.'], ['including', 'militia', 'and', 'marine', 'forces', 'more', 'than', '5', '0', ',', '0', '0', '0', 'served', '.'], ['the', 'volunteer', 'reserves', 'also', 'includes', 'the', 'armed', 'forces', 'university', 'service', 'units', '(', 'incl', '.'], ['the', 'stadtwerke', 'project', 'has', 'worked', 'together', 'with', 'the', 'city', \"'s\", 'youth', 'welfare', 'office', 'for', 'over', '2', '5', 'years', 'to', 'offer', 'around', 'five', 'young', 'people', 'per', 'year', 'a', 'technical/commercial', 'vocational', 'training', 'at', 'swm', ',', 'in', 'connection', 'with', 'career-related', 'advice', 'and', 'socio-educational', 'support', '.'], ['on', 'july', '2', '1', ',', '2', '0', '1', '6', ',', 'hafer', 'was', 'indicted', 'on', 'federal', 'charges', 'of', 'lying', 'about', 'taking', 'in', 'more', 'than', '$', '5', '0', '0', ',', '0', '0', '0', 'in', 'consulting', 'fees', 'from', 'a', 'company', 'that', 'did', 'business', 'with', 'her', 'office', '.'], ['many', 'see', 'their', 'own', 'national', 'governments', 'as', 'their', 'only', 'hope', 'of', 'electoral', 'accountability', '.'], ['over', 'these', 'seven', 'years', 'before', 'the', 'two', 'empires', 'came', 'to', 'mutual', 'agreement', 'many', 'events', 'occurred', 'that', 'expose', 'problems', 'in', 'the', 'relations', 'between', 'them', '.'], ['chiang', ',', 'whose', 'american', 'education', 'made', 'her', 'an', 'advocate', 'for', 'cooperation', '.'], ['it', 'was', 'designed', 'and', 'manufactured', 'by', 'the', 'lavochkin', 'design', 'bureau', 'from', '1', '9', '4', '6', '.'], ['the', 'extended', 'fsp', 'is', 'suitable', 'for', 'students', 'who', 'require', 'some', 'additional', 'language', 'development', 'and/or', 'revision', 'in', 'key', 'academic', 'areas', '.'], ['ourimbah', 'had', 'a', 'population', 'of', '3', ',', '9', '5', '1', 'at', 'the', '.'], ['the', 'next', 'year', ',', 'she', 'received', 'the', '2', '0', '0', '4', 'young', 'women', 'bioscientist', 'of', 'promise', 'award', 'of', 'the', 'indian', 'science', 'congress', 'association', '.'], ['the', 'other', 'two', 'remained', 'in', 'eastern', 'norway', ';', 'one', 'was', 'stationed', 'as', 'a', 'shunter', 'at', 'oslo', 'west', 'station', ',', 'the', 'other', 'in', 'skien', '.'], ['prior', 'to', 'the', 'american', 'civil', 'war', ',', 'white', 'was', 'enrolled', 'as', 'a', 'member', 'of', 'the', 'romney', 'literary', 'society', '.'], ['during', 'the', 'winter', ',', 'activities', 'include', 'skiing', ',', 'snowshoeing', ',', 'snowmobiling', ',', 'and', 'sleigh', 'rides', '.'], ['also', ',', 'a', 'new', 'school', 'called', 'the', 'staten', 'island', 'school', 'of', 'civic', 'leadership', '(', 'p.s./i.s', '.'], ['by', '2', '0', '0', '0', ',', 'ipg', 'was', 'a', '$', '5', '2', 'million', 'company', '.'], ['to', 'this', 'day', ',', 'pedicini', 'currently', 'serves', 'as', 'the', 'official', 'italian', 'voice', 'actor', 'of', 'kevin', 'spacey', 'and', 'jim', 'carrey', '.'], ['earlier', ',', 'she', 'portrayed', 'isabel', 'valderama', 'in', '``', 'bianong', 'bulag', \"''\", '.'], ['with', 'a', 'name', 'change', '(', 'kentucky', 'manufacturing', 'company', 'under', 'the', 'name', 'of', 'kentucky', 'trailers', ')', ',', 'tway', 'revolutionized', 'the', 'mode', 'of', 'the', 'transportation', 'industry', 'by', 'building', 'large', 'trailers', 'for', 'the', 'road', 'rather', 'than', 'the', 'more', 'common', 'railway', 'system', '.'], ['these', 'places', 'express', 'singapore', \"'s\", 'cultural', 'diversity', 'and', 'became', 'popular', 'tourist', 'destinations', '.'], ['named', 'batisse', ',', 'the', 'queen', 'continued', 'to', 'send', 'replacement', 'goats', 'to', 'the', 'unit', 'until', 'a', 'breeding', 'pair', 'found', 'in', '1', '9', '7', '2', ',', 'securing', 'the', 'succession', 'of', 'the', 'mascots', 'for', 'the', 'unit', '.'], ['unlike', 'his', 'uncle', ',', 'john', 'leyburn', 'regarded', 'the', 'old', 'chapter', 'as', 'validly', 'erected', ',', 'and', 'confirmed', 'by', 'the', 'holy', 'see', ',', 'and', 'became', 'its', 'secretary', '.'], ['the', 'construction', 'of', 'the', 'definitive', 'walls', 'of', 'pontevedra', 'began', 'in', 'the', '1', '3', 'th', 'century', 'with', 'the', 'aim', 'of', 'serving', 'as', 'a', 'defensive', 'fortification', 'of', 'the', 'city', '.'], ['while', 'out', 'on', 'the', 'road', ',', 'bruno', 'and', 'robert', 'encounter', 'several', 'people', 'in', 'various', 'states', 'of', 'despair', ',', 'including', 'a', 'man', 'whose', 'wife', 'has', 'committed', 'suicide', 'by', 'driving', 'her', 'car', 'into', 'a', 'tree', '.'], ['notion', 'press', 'is', 'an', 'indian', 'self-publishing', 'company', 'based', 'in', 'chennai', ',', 'india', '.'], ['at', 'germantown', ',', 'his', 'regiment', 'covered', 'the', 'retreat', 'of', 'the', 'continental', 'army', '.'], ['these', 'changes', 'finalized', 'the', 'silhouette', 'of', 'the', 'ship', 'to', 'this', 'day', '.'], ['in', 'henryetta', ',', 'i-', '4', '0', 'serves', 'as', 'the', 'northern', 'terminus', 'of', 'the', 'indian', 'nation', 'turnpike', '.'], ['i', 'asked', 'him', ',', \"'what\", 'do', 'you', 'want', '?', \"'\"], ['his', 'most', 'famous', 'work', 'today', 'is', 'the', 'concertino', 'for', 'guitar', 'and', 'orchestra', 'in', 'a', 'minor', ',', 'op', '.'], ['this', 'goes', 'from', 'low', 'auriform', '(', 'ear-shaped', ')', 'with', 'a', 'wide', 'aperture', 'to', 'the', 'long', ',', 'slender', 'conical', 'forms', 'of', 'typical', 'top', 'shells', '.'], ['in', 'feynman', \"'s\", 'path', 'algorithm', ',', 'formula_', '7', 'is', 'calculated', 'by', 'summing', 'up', 'the', 'contributions', 'of', 'formula_', '1', '0', 'histories', '.'], ['el', 'recodo', 'was', 'named', 'after', 'the', 'town', 'lizárraga', 'was', 'born', 'in', '.'], ['scratch', '2', '.', '0', 'was', 'released', 'on', 'may', '9', ',', '2', '0', '1', '3', '.'], ['in', 'february', '2', '0', '1', '3', ',', 'woon', 'released', 'his', 'debut', 'novel', '``', 'riot', 'green', \"''\", ',', 'set', 'in', 'the', 'cut-throat', 'world', 'of', 'south-east', 'asian', 'art', '.'], ['following', 'the', 'song', 'began', 'to', 'catch', 'a', 'more', 'broad', 'following', 'with', 'performances', 'by', 'eve', 'lawson', 'on', 'local', 'and', 'nationwide', 'radio', 'and', 'even', 'an', 'appearance', 'on', 'liz', 'dribben', \"'s\", '``', 'dialing', 'for', 'dollars', \"''\", 'television', 'program', '.'], ['in', '2', '0', '0', '9', ',', 'civita', 'achieved', 'a', 'stage', '1', 'gold', 'rating', 'for', 'the', 'u.s.', 'green', 'building', 'council', \"'s\", '2', '0', '0', '9', 'leed-nd', '(', 'neighborhood', 'development', ')', 'pilot', 'and', 'received', 'the', 'california', 'governor', \"'s\", 'environmental', 'and', 'economic', 'leadership', 'award', '.'], ['he', 'reads', 'through', 'the', 'data', 'from', 'the', 'service', 'droid', 'and', 'discovers', 'that', 'satt', 'valtorn', 'disappeared', 'after', 'departing', 'on', 'an', 'expedition', 'to', 'a', 'set', 'of', 'alien', 'buildings', 'not', 'too', 'far', 'from', 'the', 'colony', '.'], ['unlike', 'the', 'r', '&', 'amp', ';', 'b', 'chart', ',', 'it', 'draws', 'from', 'all', 'genres', '.'], ['on', 'the', 'present', 'facts', ',', 'the', 'accused', 'had', 'not', 'been', 'prejudiced', '.'], ['in', 'the', 'same', 'year', '(', '1', '8', '6', '9', ')', 'hergenröther', 'prepared', 'his', '``', 'anti-janus', \"''\", ',', 'an', 'historico-theological', 'critique', '(', 'freiburg', ',', '1', '8', '7', '0', ')', '.'], ['vanda', 'falcata', ',', 'the', 'wind', 'orchid', ',', 'is', 'a', 'species', 'of', 'orchid', 'found', 'in', 'china', ',', 'korea', ',', 'and', 'japan', '.'], ['the', 'avm', 'must', 'be', 'resected', 'en', 'bloc', ',', 'for', 'partial', 'resection', 'will', 'likely', 'cause', 'severe', 'hemorrhage', '.'], ['the', 'film', 'also', 'features', 'vladimir', 'vysotsky', 'as', 'brusentsov', ',', 'a', 'cynical', 'and', 'disillusioned', 'officer', 'in', 'wrangel', \"'s\", 'army', '.'], ['kmart', 'had', 'originally', 'wanted', 'to', 'build', 'a', 'store', 'in', 'brighton', 'prior', 'to', 'acquiring', 'the', 'former', 'w.', 't.', 'grant', 'location', ',', 'but', 'did', 'not', 'do', 'so', 'at', 'the', 'time', 'due', 'to', 'concerns', 'over', 'the', 'area', \"'s\", 'economy', '.'], ['while', 'surgery', 'can', 'result', 'in', 'an', 'immediate', ',', 'complete', 'removal', 'of', 'the', 'avm', ',', 'risks', 'exist', 'depending', 'on', 'the', 'size', 'and', 'the', 'location', 'of', 'the', 'malformation', '.'], ['in', '1', '9', '3', '2', ',', 'baptist', 'evangelist', 'william', 'aberhart', 'used', 'his', 'radio', 'program', 'to', 'preach', 'the', 'values', 'of', 'social', 'credit', 'throughout', 'the', 'province', '.'], ['spark', 'plugs', 'were', 'located', 'at', 'the', 'peak', 'of', 'the', 'combustion', 'chambers', \"'\", 'wedge', ',', 'between', 'the', 'exhaust', 'ports', ';', 'press-in', 'heat', 'shields', 'protected', 'them', 'from', 'the', 'heat', 'of', 'the', 'exhaust', 'manifolds', '.'], ['poshteh', 'konji', '(', ',', 'also', 'romanized', 'as', 'poshteh', 'konjī', ')', 'is', 'a', 'village', 'in', 'ahmadi', 'rural', 'district', ',', 'ahmadi', 'district', ',', 'hajjiabad', 'county', ',', 'hormozgan', 'province', ',', 'iran', '.'], ['k', ',', 'or', 'k', ',', 'is', 'the', 'eleventh', 'letter', 'of', 'the', 'modern', 'english', 'alphabet', 'and', 'the', 'iso', 'basic', 'latin', 'alphabet', '.'], ['in', '2', '7', '3', ',', 'xi', 'zheng', 'was', 'appointed', 'as', 'the', 'administrator', 'of', 'baxi', 'commandery', '(', '巴西郡', ')', ',', 'in', 'present-day', 'eastern', 'sichuan', 'and', 'northern', 'chongqing', '.'], ['the', 'alliance', 'with', 'petlura', 'gave', 'poland', '1', '5', ',', '0', '0', '0', 'allied', 'ukrainian', 'troops', 'at', 'the', 'beginning', 'of', 'the', 'campaign', 'that', 'increaswd', 'to', '3', '5', ',', '0', '0', '0', 'by', 'recruitment', 'and', 'soviet', 'deserters', 'during', 'the', 'war', '.'], ['he', 'also', 'was', 'a', 'fine', 'defensive', 'outfielder', 'with', 'a', 'strong', 'throwing', 'arm', '.'], ['beginning', 'in', '1', '8', '9', '4', ',', 'the', 'company', 'added', 'an', 'aunt', 'jemima', 'paper', 'doll', 'family', 'that', 'could', 'be', 'cut', 'out', 'from', 'the', 'pancake', 'box', '.'], ['after', 'having', 'minor', 'roles', 'in', '2', '0', '0', '2', 'tv', 'series', '``', 'saikano', \"''\", 'and', '``', 'monkey', 'typhoon', \"''\", ',', 'palm', 'was', 'the', 'main', 'studio', 'under', 'the', 'production', 'of', '``', 'tetsujin', '2', '8', '-go', \"''\", 'and', '``', 'genshiken', \"''\", ',', 'both', 'in', '2', '0', '0', '4', '.'], ['the', 'octopus', \"'s\", 'total', 'length', 'is', 'about', '3', '0', '0', 'millimeters', '.'], ['distilled', 'alcohol', 'was', 'known', 'in', 'latin', 'as', '(', '``', 'water', 'of', 'life', \"''\", ')', '.'], ['there', 'was', 'a', 'severe', 'crackdown', 'against', 'the', 'movement', 'in', '1', '9', '4', '6', '.'], ['emergency', 'services', 'said', 'two', 'people', 'were', 'transported', 'to', 'frenchay', 'hospital', 'in', 'bristol', 'while', 'seven', 'others', 'went', 'to', 'the', 'royal', 'united', 'hospital', '(', 'ruh', ')', 'in', 'bath', '.'], ['however', ',', 'common', 'sense', 'media', 'gave', 'it', 'two', 'stars', 'out', 'of', 'five', 'and', 'called', 'it', '``', 'an', 'original', 'first-person', 'shooter', 'haunted', 'by', 'repetitive', 'gameplay', \"''\", 'due', 'to', '``', 'blocky', ',', 'dated', 'graphics', 'and', 'choppy', 'slowdowns', \"''\", '.'], ['rangers', '6', ',', '7', ',', '8', ',', 'and', '9', 'were', 'the', 'so-called', 'block', '3', 'versions', 'of', 'the', 'ranger', 'spacecraft', '.'], ['gymnodoris', 'subflavais', 'a', 'species', 'of', 'colorful', 'sea', 'slug', ',', 'a', 'nudibranch', ',', 'a', 'marine', 'gastropod', 'mollusk', 'in', 'the', 'family', 'polyceridae', '.'], ['this', 'arrangement', 'endured', 'until', 'the', 'death', 'of', 'abbot/bishop', 'haid', 'on', '2', '4', 'july', '1', '9', '2', '4', '.'], ['the', 'swedish', 'dvd', ',', 'on', 'the', 'other', 'hand', ',', 'is', 'the', 'most', 'limited', 'in', 'features', ',', 'only', 'including', 'the', 'english', 'audio', 'and', 'swedish', 'subtitles', '.'], ['the', 'larva', 'of', 'the', 'beetle', 'feeds', 'on', 'the', 'upper', 'third', 'of', 'the', 'plant', ',', 'damaging', 'its', 'leaves', '.'], ['the', 'original', 'version', 'was', 'recorded', 'on', 'a', 'domestic', 'tape', 'recorder', ',', 'in', 'mono', ',', 'in', 'an', 'abandoned', 'factory', ',', 'at', 'a', 'cost', 'of', '£', '2', '.', '5', '0', '.'], ['bradley', 'wrote', 'a', 'number', 'of', 'opinions', 'while', 'on', 'the', 'electoral', 'commission', ',', 'and', 'like', 'the', 'other', 'members', 'sided', 'with', 'his', 'own', 'party', '.'], ['another', 'question', 'of', 'contention', 'was', 'the', 'progress', 'party', \"'s\", 'policy', 'on', 'norwegian', 'membership', 'in', 'the', 'european', 'union', '.'], ['between', '5', 'and', '8', 'legs', 'of', 'males', 'contain', 'a', 'median', 'tibia', 'dorsal', 'spine', '.'], ['the', 'band', \"'s\", 'sixth', 'studio', 'album', ',', '``', 'the', 'argument', \"''\", ',', 'was', 'released', 'in', '2', '0', '0', '1', 'along', 'with', 'the', '``', 'furniture', \"''\", 'ep', '.'], ['the', 'murder', 'caused', 'a', 'rebellion', 'among', 'the', 'naxians', 'who', 'deposed', 'francesco', 'in', 'favor', 'of', 'his', 'eleven', 'year', 'old', 'son', '.'], ['he', 'flees', 'to', 'paris', 'where', 'he', 'is', 'reunited', 'with', 'delphine', '.'], ['in', '1', '9', '4', '9', ',', 'he', 'began', 'distributing', 'french', 'films', 'in', 'partnership', 'with', 'arthur', 'mayer', ',', 'another', 'art', 'house', 'distribution', 'pioneer', ',', 'but', 'after', 'a', 'few', 'years', 'he', 'branched', 'out', 'on', 'his', 'own', 'by', 'starting', 'kingsley-international', 'pictures', '.'], ['although', 'calculus', 'removal', 'may', 'be', 'difficult', 'for', 'caregivers', 'to', 'perform', 'and', 'provide', 'an', 'unpleasant', 'experience', 'for', 'patients', 'with', 'a', 'feeding', 'tube', ',', 'the', 'implications', 'of', 'calculus', 'in', 'the', 'initiation', 'of', 'aspiration', 'pneumonia', 'make', 'it', 'clear', 'that', 'it', 'poses', 'a', 'serious', 'health', 'risk', '.'], ['all', 'of', 'these', 'airports', 'have', 'flights', 'to', 'tokyo', 'and', 'other', 'major', 'japanese', 'cities', 'such', 'as', 'osaka', ',', 'nagoya', ',', 'sapporo', ',', 'and', 'fukuoka', '.'], ['it', 'was', 'launched', 'on', 'december', '1', '2', ',', '1', '9', '9', '6', '.'], ['this', 'made', '2', '0', '1', '5', 'the', 'most', 'difficult', 'season', 'in', 'formula', 'one', 'that', 'the', 'team', 'had', 'endured', 'in', 'thirty-five', 'years', ',', 'as', 'a', 'string', 'of', 'technical', 'problems', 'and', 'retirements', 'compromised', 'the', 'car', \"'s\", 'performance', '.'], ['the', 'majority', 'of', 'muslim', 'scholars', 'interpret', 'this', 'word', 'as', 'a', 'reference', 'to', 'an', 'illiterate', 'individual', ',', 'though', 'some', 'modern', 'scholars', 'instead', 'interpret', 'it', 'as', 'a', 'reference', 'to', 'those', 'who', 'belong', 'to', 'a', 'community', 'without', 'a', 'scripture', '.'], ['it', 'is', 'the', 'final', 'version', 'of', 'the', 'life', 'story', 'she', 'wants', 'us', 'to', 'understand', 'her', 'by', '.'], ['so', 'did', 'succeeding', 'prince-bishops', ',', 'giving', 'the', 'residence', 'its', 'name', '(', '``', 'fürstenhäusle', \"''\", ')', ',', 'until', 'the', 'prince-bishopric', 'was', 'secularized', 'in', '1', '8', '0', '3', 'and', 'absorbed', 'into', 'the', 'electorate', 'of', 'baden', '.'], ['tallon', 'had', 'dominated', 'the', 'scoring', 'late', 'in', 'the', 'day', ',', 'making', '2', '5', 'of', 'the', '3', '3', 'runs', 'added', '.'], ['the', 'system', 'has', 'also', 'made', 'it', 'possible', 'for', '2', ',', '0', '0', '0', 'brokerage', 'stations', 'to', 'work', 'simultaneously', ',', 'while', 'the', 'number', 'was', 'just', 'about', '4', '8', '0', 'in', 'the', 'past', '.'], ['in', '1', '9', '6', '7', ',', 'after', 'a', 'divorce', 'with', 'his', 'second', 'wife', ',', 'noma', ',', 'copley', 'and', 'new', 'friend', 'dmitri', 'petrov', 'decided', 'to', 'publish', 'portfolios', 'of', '2', '0', 'th-century', 'artist', 'collaborations', 'with', 'the', 'abbreviation', 'sms', '(', 'for', '``', 'shit', 'must', 'stop', \"''\", ')', '.'], ['in', 'conversations', 'with', 'trump', 'in', 'may', ',', 'he', 'said', 'he', 'would', 'not', 'require', 'the', 'use', 'of', 'face', 'masks', '.'], ['in', 'the', '2', '1', 'st', 'century', ',', 'the', 'company', 'opened', 'an', 'online', 'store', ',', 'savastore', ',', 'but', 'in', '2', '0', '0', '7', 'watford', 'collapsed', 'into', 'administration', '.'], ['with', 'fna', 'a', 'very', 'fine', 'needle', 'is', 'inserted', 'in', 'the', 'eye', 'in', 'the', 'cyst', '.'], ['in', '1', '9', '8', '7', ',', 'frimmer', 'sang', 'in', 'a', 'recording', 'of', 'buxtehude', \"'s\", '``', 'membra', 'jesu', 'nostri', \"''\", ',', 'conducted', 'by', 'ton', 'koopman', ',', 'with', 'barbara', 'schlick', ',', 'michael', 'chance', ',', 'christoph', 'prégardien', ',', 'peter', 'kooy', ',', 'the', 'knabenchor', 'hannover', 'and', 'the', 'amsterdam', 'baroque', 'orchestra', '.'], ['it', 'was', 'soon', 'covered', 'by', 'british', 'r', '&', 'amp', ';', 'b', ',', 'beat', 'and', 'pop', 'band', 'manfred', 'mann', '.'], ['the', 'structure', 'functions', 'as', 'a', 'pedestrian', 'walkway', 'which', 'connects', 'the', 'griffith', 'film', 'school', 'on', 'the', 'corner', 'of', 'dock', 'street', 'and', 'vulture', 'street', 'to', 'the', 'cultural', 'forecourt', 'adjacent', 'to', 'qpac', ',', 'as', 'well', 'as', 'the', 'rest', 'of', 'the', 'south', 'bank', 'parklands', 'through', 'which', 'it', 'runs', '.'], ['this', 'chart', 'was', 'published', 'most', 'weeks', 'until', 'the', 'magazine', \"'s\", 'demise', '1', '3', 'november', '2', '0', '0', '0', '.'], ['in', 'september', '2', '0', '1', '2', ',', 'as', 'one', 'of', 'the', '``', 's', '1', '0', '0', '0', 'plus', \"''\", 'projects', 'supported', 'by', 'westfalen', 'ag', ',', 'a', 'successful', 'car', 'journey', 'of', 'over', '1', ',', '3', '6', '5', '.', '5', 'kilometres', 'on', 'lpg', 'took', 'place', 'without', 'refuelling', '.'], ['the', 'first', ',', 'mdef', 'a', '(', 'aka', 'garfield', ')', ',', 'was', 'discovered', 'in', 'may', '1', '9', '9', '0', '.'], ['while', 'the', 'main', 'goal', 'is', 'to', 'transit', 'the', 'mod', 'into', 'an', 'entirely', 'new', 'game', ',', 'the', 'team', 'also', 'intended', 'to', 'add', 'more', 'content', 'such', 'as', 'base-building', 'and', 'improved', 'crafting', '.'], ['``', 'm.', 'globosa', \"''\", 'uses', 'eight', 'different', 'types', 'of', 'lipase', ',', 'along', 'with', 'three', 'phospholipases', ',', 'to', 'break', 'down', 'the', 'oils', 'on', 'the', 'scalp', '.'], ['gith', 'was', 'betrayed', 'by', 'one', 'of', 'her', 'own', 'generals', ',', 'zerthimon', ',', 'who', 'believed', 'she', 'had', 'grown', 'tyrannical', 'and', 'over-aggressive', '.'], ['many', 'infected', 'come', 'to', 'the', 'house', 'and', 'start', 'to', 'attack', '.'], ['he', 'included', 'black', 'artists', 'from', 'all', 'walks', 'of', 'life', ',', 'including', 'many', 'young', 'people', 'from', 'disadvantaged', 'neighborhoods', '.'], ['she', 'is', 'a', 'full', 'professor', 'of', 'medicine', 'and', 'clinical', 'professor', 'of', 'psychology', 'at', 'the', 'university', 'of', 'ottawa', '.'], ['in', 'germany', ',', 'the', 'steinbeis', 'university', 'offers', 'a', 'master', \"'s\", 'program', 'in', 'business', 'engineering', '.'], ['spangler', 'scoffs', ',', 'but', 'feels', 'unnatural', 'horror', 'when', 'he', 'looks', 'into', 'the', 'mirror', 'and', 'claims', 'to', 'see', 'some', 'duct', 'tape', 'in', 'the', 'mirror', \"'s\", 'corner', '.'], ['he', 'later', 'refereed', 'in', 'the', 'new', 'major', 'league', 'soccer', ',', 'and', 'was', 'selected', 'as', 'the', 'referee', 'for', 'the', '1', '9', '9', '8', 'u.s.', 'open', 'cup', 'final', '.'], ['throughout', 'his', 'dostoevsky', 'essay', ',', 'he', 'finds', 'parallels', 'between', 'the', 'russian', 'and', 'the', 'sufferings', 'of', 'friedrich', 'nietzsche', '.'], ['on', '2', '6', 'april', '1', '7', '0', '0', 'fairfax', 'opened', 'the', 'existing', 'meeting-house', 'in', 'st.', 'nicholas', 'street', '(', 'now', 'unitarian', ')', '.'], ['he', 'also', 'moved', 'the', 'original', '1', '7', '4', '8', 'staircase', 'into', 'the', 'new', 'wing', '.'], ['utica', 'is', 'in', 'southwest', 'hinds', 'county', 'at', 'the', 'junctions', 'of', 'mississippi', 'highways', '1', '8', 'and', '2', '7', '.'], ['this', 'is', 'visible', 'in', 'the', 'photograph', 'in', 'the', 'external', 'link', '.'], ['they', 'were', 'considered', 'strong', 'medal', 'contenders', 'in', 'the', '2', '0', '0', '2', 'winter', 'olympics', '.'], ['in', '1', '9', '2', '3', ',', 'the', 'building', 'was', 'purchased', 'by', 'the', 'duz', 'company', ',', 'a', 'manufacturer', 'of', 'soap', 'powder', ',', 'for', '$', '3', '8', '4', ',', '0', '0', '0', '.'], ['when', 'general', 'ulysses', 'grant', \"'s\", 'forces', 'broke', 'through', 'the', 'defenses', 'of', 'richmond', ',', 'virginia', ',', 'confederate', 'president', 'jefferson', 'davis', 'ordered', 'the', 'destruction', 'of', 'richmond', \"'s\", 'militarily-significant', 'supplies', '.'], ['there', 'were', '7', '9', 'housing', 'units', 'at', 'an', 'average', 'density', 'of', '3', '.', '8', '/sq', 'mi', '(', '1', '.', '5', '/km', '2', ')', '.'], ['this', 'galliard', 'is', 'the', 'only', 'lute', 'duet', ',', 'aside', 'from', 'those', 'by', 'thomas', 'robinson', ',', 'published', 'in', 'england', '.'], ['frog', 'species', 'from', 'brazil', 'have', 'been', 'allocated', 'to', 'other', 'species', '.'], ['he', 'then', 'purchased', 'a', 'fruit', 'stand', ',', 'which', 'he', 'expanded', 'into', 'a', 'supermarket', '.'], ['it', 'is', 'on', 'the', 'crossroad', 'of', 'the', 'grocka-umčari', 'and', 'brestovik-umčari', 'roads', ',', 'both', 'of', 'which', 'connect', 'the', 'road', 'of', '``', 'smederevski', 'put', \"''\", 'and', 'the', 'highway', 'belgrade-niš', '.'], ['the', 'law', 'stipulated', 'that', 'a', 'majority', 'of', 'the', 'rma', 'site', 'would', 'become', 'a', 'national', 'wildlife', 'refuge', 'under', 'the', 'jurisdiction', 'of', 'the', 'fish', 'and', 'wildlife', 'service', 'once', 'the', 'environmental', 'restoration', 'is', 'completed', '.'], ['he', 'was', 'selected', 'third', 'in', 'the', '2', '0', '0', '8', 'nfl', 'draft', 'by', 'the', 'atlanta', 'falcons', ',', 'making', 'him', 'the', 'highest-chosen', 'bc', 'player', 'in', 'nfl', 'draft', 'history', '.'], ['in', '``', 'a', 'guide', 'to', 'the', 'literature', 'of', 'art', 'history', \"''\", 'by', 'arntzen', ',', 'e.', '&', 'amp', ';', 'rainwater', ',', 'r.', 'publisher', ':', 'american', 'library', 'association', ',', 'chicago', ',', '1', '9', '8', '0', '(', 'chamberlin', '2', '3', '1', '5', ';', 'arntzen/rainwater', 'q', '2', '8', '1', '.', ')'], ['2', '9', '5', ')', 'in', '1', '9', '9', '0', 'before', 'retiring', '.'], ['she', 'further', 'notes', 'that', '``', 'for', 'historical', 'purposes', ',', 'it', \"'s\", 'not', 'worth', 'saying', 'much', 'about', 'him', \"''\", '.'], ['if', 'the', 'result', 'of', 'any', 'of', 'these', 'tests', 'is', 'positive', ',', 'the', 'terminal', 'sets', 'the', 'appropriate', 'bit', 'in', 'the', 'terminal', 'verification', 'results', '(', 'tvr', ')', '.'], ['he', 'played', 'in', 'minor', 'league', 'baseball', 'for', 'the', 'florida', 'marlins', 'organization', 'from', '1', '9', '9', '6', 'through', '2', '0', '0', '0', ',', 'reaching', 'triple-a', ',', 'when', 'a', 'shoulder', 'injury', 'ended', 'his', 'career', '.'], ['it', 'disseminates', 'research', 'findings', ',', 'best', 'practices', 'concerns', ',', 'and', 'discussions', 'and', 'debates', 'on', 'risk-', 'and', 'uncertainty-related', 'issues', 'in', 'the', 'areas', 'of', 'civil', 'and', 'mechanical', 'engineering', 'and', 'related', 'fields', '.'], ['tracheotomy', 'in', 'the', 'operating', 'room', 'by', 'trained', 'professionals', 'is', 'recommended', 'over', 'cricothyroidotomy', 'in', 'the', 'case', 'of', 'complete', 'laryngotracheal', 'disruption', 'or', 'children', 'under', 'the', 'age', 'of', '1', '2', '.'], ['us', '6', '6', 'continued', 'north', 'on', 'the', 'pasadena', 'freeway', 'before', 'also', 'being', 'decommissioned', 'in', '1', '9', '6', '4', ',', 'leading', 'to', 'the', 'harbor', 'and', 'pasadena', 'freeways', 'being', 'redesignated', 'to', 'sr', '1', '1', ',', 'which', 'ran', 'from', 'gaffey', 'street', 'in', 'san', 'pedro', 'to', 'colorado', 'boulevard', 'in', 'pasadena', '.'], ['one', 'can', 'similarly', 'define', 'the', 'cartesian', 'product', 'of', '``', 'n', \"''\", 'sets', ',', 'also', 'known', 'as', 'an', '``', 'n', \"''\", '-fold', 'cartesian', 'product', ',', 'which', 'can', 'be', 'represented', 'by', 'an', '``', 'n', \"''\", '-dimensional', 'array', ',', 'where', 'each', 'element', 'is', 'an', '``', 'n', \"''\", '-tuple', '.'], ['in', '1', '9', '9', '1', ',', 'she', 'performed', 'there', 'bach', \"'s\", '``', 'st', 'matthew', 'passion', \"''\", 'in', 'the', 'last', 'concert', 'conducted', 'by', 'erhard', 'egidi', ',', 'together', 'with', 'dantes', 'diwiak', ',', 'anselm', 'richter', ',', 'ralf', 'popken', 'and', 'joachim', 'gebhardt', '.'], ['many', 'variations', 'in', 'dialects', 'correspond', 'or', 'reflect', 'the', 'values', 'of', 'particular', 'identities', 'of', 'a', 'community', '.'], ['nashvegas', \"''\", 'radio', 'show', 'about', 'the', 'origins', 'of', 'the', 'song', '``', 'indian', 'reservation', ',', \"''\", 'he', 'fabricated', 'the', 'story', 'that', 'he', 'wrote', 'the', 'song', 'after', 'his', 'car', 'was', 'snowed', 'in', 'by', 'a', 'blizzard', 'and', 'he', 'was', 'taken', 'in', 'by', 'a', 'small', 'group', 'of', 'cherokee', 'indians', '.'], ['the', 'building', ',', 'one', 'of', 'a', 'few', 'that', 'survive', 'in', 'wilton', 'that', 'were', 'adapted', 'in', 'this', 'way', ',', 'was', 'added', 'to', 'the', 'national', 'register', 'of', 'historic', 'places', 'in', '1', '9', '8', '8', '.'], ['in', 'areas', 'with', 'high', 'bicyclist', 'volumes', 'or', 'uphill', 'sections', ',', 'the', 'desired', 'width', 'should', 'be', '7', 'feet', '(', '2', '.', '1', 'm', ')', \"''\", '.'], ['monocymia', 'is', 'a', 'monotypic', 'moth', 'genus', 'of', 'the', 'family', 'noctuidae', 'erected', 'by', 'george', 'hampson', 'in', '1', '9', '1', '0', '.'], ['in', 'the', 'course', 'of', 'the', 'examination', 'of', 'witnesses', ',', 'the', 'illegal', '``', 'common-purse', \"''\", 'agreement', 'which', 'existed', 'between', 'the', 'london', 'and', 'north', 'western', 'and', 'the', 'midland', 'railway', 'was', 'exposed', '.'], ['the', 'concern', 'was', 'that', 'if', 'north', 'korea', 'noticed', ',', 'they', 'would', 'think', 'the', 'transfer', 'of', 'data', 'was', 'an', 'intrusion', 'by', 'the', 'u.s.', 'air', 'force', ',', 'and', 'threaten', 'physical', 'retaliation', 'for', 'the', 'espionage', ';', 'fortunately', 'it', 'turned', 'out', 'to', 'be', 'south', 'korean', 'data', ',', 'significantly', 'less', 'volatile', '.'], ['he', 'was', 'barred', 'from', 'playing', 'for', 'any', 'of', 'the', 'clubs', 'in', 'the', 'cuban', 'league', 'due', 'to', 'their', 'rule', 'of', 'not', 'allowing', 'any', 'professional', 'united', 'states', 'players', 'from', 'joining', 'the', 'league', '.'], ['in', 'october', ',', 'maroney', 'competed', 'at', 'the', '2', '0', '1', '1', 'world', 'artistic', 'gymnastics', 'championships', 'in', 'tokyo', ',', 'japan', '.'], ['william', 'ross', 'turpin', '(', 'born', 'february', '8', ',', '1', '9', '7', '1', ')', 'is', 'an', 'american', 'musician', '.'], ['founded', 'in', '1', '9', '5', '7', 'by', 'professor', 'germaine', 'brée', ',', 'la', 'maison', 'française', 'occupies', 'a', '1', '9', 'th-century', 'carriage', 'house', 'on', 'historic', 'washington', 'mews', '.'], ['hathua', '(', 'vidhan', 'sabha', 'constituency', ')', 'is', 'an', 'assembly', 'constituency', 'in', 'gopalganj', 'district', 'in', 'the', 'indian', 'state', 'of', 'bihar', '.'], ['in', 'japanese', 'religion', ',', 'an', 'ofuda', '(', 'お札', 'or', '御札', ',', 'honorific', 'form', 'of', ',', '``', 'slip', '(', 'of', 'paper', ')', ',', 'card', ',', 'plate', \"''\", ')', 'is', 'a', 'talisman', 'made', 'out', 'of', 'various', 'materials', 'such', 'as', 'paper', ',', 'wood', ',', 'cloth', 'or', 'metal', '.'], ['afterwards', ',', 'lisa', 'discovers', 'the', 'source', 'of', 'the', 'haunting', '-', 'a', 'native', 'american', 'burial', 'ground', 'hidden', 'in', 'the', 'basement', '.'], ['captain', 'webel', ',', 'the', 'regimental', 's-', '3', ',', 'estimated', 'that', 'a', 'reinforced', 'battalion', 'of', 'about', '8', '0', '0', 'men', 'held', 'the', 'prepared', 'kpa', 'defensive', 'positions', '.'], ['the', 'population', 'density', 'was', '6', '2', '0', 'people', 'per', 'square', 'mile', '(', '2', '3', '9', '/km', '2', ')', '.'], ['bushi', 'moletsane', '(', 'born', '2', 'january', '1', '9', '8', '4', ')', 'is', 'a', 'mosotho', 'footballer', 'who', 'currently', 'plays', 'as', 'a', 'midfielder', 'for', 'lioli', 'teyateyaneng', '.'], ['lewthwaite', 'was', 'an', 'expert', 'panelist', 'at', 'the', '``', 'nordic', 'material', 'playground', \"''\", 'conference', ',', 'at', 'the', 'norwegian', 'centre', 'for', 'design', 'and', 'architecture', ',', 'oslo', ',', 'norway', '.'], ['blitt', \"'s\", 'paintings', 'and', 'sculpture', 'have', 'been', 'featured', 'in', 'over', '7', '0', 'solo', 'exhibitions', 'in', 'the', 'united', 'states', ',', 'israel', 'and', 'singapore', '.'], ['kanishk', 'is', 'a', 'former', 'editor', 'at', 'open', 'democracy', 'and', 'is', 'the', 'author', 'of', 'the', 'highly', 'praised', 'short', 'story', 'collection', '``', 'swimmer', 'among', 'the', 'stars', \"''\", '.'], ['the', '1', '9', '6', '0', 's', 'train', ',', 'which', 'used', 'steam', 'engines', ',', 'was', 'faster', 'than', 'contemporary', 'intercity', 'express', '``', 'kaszub', \"''\", ',', 'which', 'takes', '4', 'hours', 'and', '2', '6', 'minutes', '.'], ['this', 'movie', 'stars', 'sir', 'sidney', 'poitier', 'as', 'the', 'title', 'character', ',', 'a', 'rural', 'georgia', 'carpenter', ',', 'noah', 'dearborn', '.'], ['following', 'his', 'death', 'without', 'issue', ',', 'the', 'estate', 'was', 'reunited', 'with', 'the', 'earldom', 'in', '1', '8', '8', '5', '.'], ['time', 'and', 'again', ',', 'roman', 'writers', 'emphasise', 'the', 'importance', 'of', 'soldiers', 'being', 'self-sufficient', 'and', 'not', 'tied', 'to', 'the', 'baggage', 'train', '.'], ['thus', ',', 'amateur', 'astronomers', 'have', 'a', 'useful', 'role', 'in', 'significant', 'discoveries', ',', 'as', 'well', 'as', 'a', 'clear', 'and', 'democratic', 'path', 'to', 'authorship', 'on', 'any', 'peer-reviewed', 'scientific', 'publications', 'that', 'result', '.'], ['in', '2', '0', '0', '6', ',', 'levitz', 'furniture', 'moved', 'its', 'headquarters', 'to', 'the', '2', '3', 'rd', 'floor', 'of', 'the', 'building', 'from', 'woodbury', ',', 'long', 'island', 'after', 'declaring', 'bankruptcy', 'a', 'second', 'time', '.'], ['mumba', 'told', 'the', 'herald', '``', 'what', 'was', 'foremost', 'on', 'my', 'mind', 'was', 'showcasing', 'the', 'song', 'for', 'the', 'writer', '.'], ['the', 'family', 'then', 'moved', 'to', 'thailand', ',', 'where', 'they', 'stayed', 'for', 'six', 'months', 'before', 'relocating', 'again', 'to', 'melbourne', ',', 'australia', '.'], ['my', 'own', 'way', 'home', 'is', 'the', 'third', 'album', 'from', 'spanish', 'singer', 'beth', ',', 'released', 'on', '9', 'october', '2', '0', '0', '6', 'in', 'spain', '.'], ['soon', 'afterwards', ',', 'they', 'received', 'volunteers', 'from', 'kaštela', 'and', 'other', 'places', ',', 'which', 'enabled', 'the', 'formation', 'of', 'a', '3', 'rd', 'company', 'commanded', 'by', 'mario', 'udiljak', '.'], ['the', 'lights', 'and', 'reflector', 'were', 'suspended', 'from', 'the', 'ceiling', 'and', 'operated', 'with', 'pulleys', '.'], ['he', 'won', 'the', '2', '0', '1', '8', 'uefa', 'european', 'under-', '1', '7', 'championship', 'with', 'the', 'netherlands', 'national', 'under-', '1', '7', 'football', 'team', ',', 'scoring', 'a', 'goal', 'in', 'the', 'group', 'game', 'against', 'germany', 'and', 'appearing', 'as', 'a', 'substitute', 'in', 'the', 'final', 'against', 'italy', '.'], ['much', 'of', 'the', 'enthusiasm', 'within', 'communities', 'to', 'become', 'a', 'fair', 'trade', 'town', 'is', 'stimulated', 'by', 'grassroots', 'efforts', '.'], ['at', 'the', 'end', 'of', '2', '0', '0', '9', ',', 'the', 'subsidised', 'housing', 'committee', 'decided', 'to', 'strengthen', 'actions', 'against', 'unauthorised', 'dog', 'keeping', 'in', 'the', 'prh', 'estates', 'in', 'the', 'second', 'quarter', 'of', '2', '0', '1', '0', '.'], ['in', '1', '8', '7', '1', 'the', 'institute', 'began', 'research', 'to', 'increase', 'profits', 'made', 'off', 'the', 'colonies', '.'], ['&', 'lt', ';', 'mapframe', 'text=', \"''\", 'the', 'slow', 'decline', 'of', 'the', 'jeff', 'davis', 'corridor', 'began', 'with', 'the', '1', '9', '5', '8', 'construction', 'of', 'the', 'i-', '9', '5', 'richmond-petersburg', 'turnpike', ',', 'paralleling', 'it', 'approximately', '1', 'mile', 'to', 'the', 'east', '.', \"''\"], ['further', 'reforms', 'were', 'made', 'in', '1', '9', '6', '5', ',', 'when', 'the', 'administrator', 'was', 'replaced', 'by', 'an', 'elected', 'council', 'president', ',', 'and', 'in', '1', '9', '6', '8', 'when', 'the', 'three', 'non-government', 'nominees', 'were', 'replaced', 'by', '3', 'further', 'elected', 'members', '.'], ['however', ',', 'there', 'has', 'been', 'no', 'website', 'updates', 'since', 'then', ',', 'and', 'nothing', 'has', 'been', 'heard', 'regarding', 'this', 'new', 'album', ',', 'presumably', 'due', 'to', 'kennedy', \"'s\", 'full-time', 'involvement', 'with', 'angels', '&', 'amp', ';', 'airwaves', '.'], ['there', 'is', 'no', 'certain', 'information', 'as', 'to', 'which', 'forts', 'it', 'occupied', 'in', 'raetia', '.', \"''\", \"''\"], ['these', 'troops', ',', 'among', 'the', 'best', 'in', 'spain', ',', 'garrisoned', 'offshore', 'islands', 'in', 'small', 'detachments', 'and', 'remained', 'in', 'the', 'dark', 'about', 'political', 'developments', 'in', 'spain', 'following', 'napoleon', \"'s\", 'invasion', 'and', 'occupation', 'of', 'spain', 'in', '1', '8', '0', '7', '(', 'see', 'peninsular', 'war', ')', '.'], ['the', 'coeducational', 'national', 'organisation', 'for', 'scouts', 'and', 'guides', 'has', 'about', '1', '9', ',', '0', '0', '0', 'members', '(', '8', ',', '8', '9', '2', 'scouts', 'and', '9', ',', '9', '6', '5', 'guides', ')', 'as', 'of', '2', '0', '1', '0', '.'], ['it', 'is', 'thought', 'to', 'be', 'the', 'longest', 'serving', 'public', 'cemetery', 'in', 'western', 'australia', '.'], ['the', 'station', 'opened', 'on', '1', 'january', '1', '9', '0', '9', 'when', 'the', 'strabane', 'to', 'letterkenny', 'opened', '.'], ['in', '2', '0', '1', '8', 'it', 'was', 'reported', 'that', 'hill', 'was', 'a', 'member', 'of', 'the', 'high-level', 'group', 'established', 'to', 'explore', 'reforming', 'the', 'commonwealth', ',', 'with', 'an', 'emphasis', 'on', 'the', 'rules', 'of', 'succession', 'for', 'the', 'title', 'of', 'head', 'of', 'the', 'commonwealth', '.'], ['in', 'addition', ',', 'the', 'uterine', 'lining', '(', 'endometrium', ')', 'is', 'thickened', 'to', 'be', 'able', 'to', 'receive', 'a', 'fertilized', 'egg', '.'], ['after', 'leaving', 'the', 'university', 'he', 'devoted', 'himself', 'to', 'antiquarian', 'studies', 'and', 'to', 'the', 'collection', 'of', 'manuscripts', '.'], ['in', 'the', '1', '9', '8', '0', 's', '``', 'mathematical', 'games', \"''\", 'began', 'to', 'appear', 'only', 'irregularly', '.'], ['tumbling', 'mustard', \"'s\", 'previous', 'owner', 'was', 'a', 'sarcee', 'indian', 'reservation', '.'], ['on', '1', '7', 'december', '1', '9', '4', '6', ',', 'for', 'the', 'first', 'time', 'flew', 'its', 'improved', 'experimental', 'variant', 'called', 'szpak-', '3', 'with', 'a', 'fixed', 'tricycle', 'landing', 'gear', '(', 'markings', 'sp-aab', ')', '.'], ['the', 'boat', 'is', 'fitted', 'with', 'a', 'british', 'perkins', 'engines', '4', '-', '1', '0', '8', 'diesel', 'engine', 'of', 'for', 'docking', 'and', 'maneuvering', '.'], ['moran', 'now', 'has', '1', '0', 'additional', 'satellite', 'clinical', 'locations', '.'], ['it', 'was', 'the', 'site', 'of', 'a', 'punt', 'that', 'connected', 'westport', 'to', 'the', 'south', 'bank', 'before', 'the', '``', 'black', 'bridge', \"''\", 'was', 'constructed', 'at', 'westport', 'itself', '.'], ['this', 'allows', 'weak', 'candidates', 'to', 'get', 'elected', '``', 'riding', 'on', 'the', 'coattails', \"''\", 'of', 'strong', 'candidates', 'on', 'their', 'slate', '.'], ['he', 'worked', 'as', 'a', 'teacher', 'from', '1', '9', '6', '5', 'to', '1', '9', '7', '2', 'and', 'editor', 'from', '1', '9', '7', '2', 'to', '1', '9', '8', '5', ',', 'among', 'others', 'for', 'the', 'magazine', '``', 'teknisk', 'presse', \"''\", '.'], ['in', '2', '0', '0', '0', ',', 'they', 'won', 'it', 'under', 'the', 'captaincy', 'of', 'mohammad', 'kaif', ',', 'in', '2', '0', '0', '8', ',', 'they', 'won', 'it', 'under', 'virat', 'kohli', \"'s\", 'leadership', ',', 'in', '2', '0', '1', '2', 'under', 'unmukt', 'chand', 'and', 'in', '2', '0', '1', '8', 'under', 'prithvi', 'shaw', '.'], ['``', 'game', 'machine', \"''\", 'magazine', 'listed', 'it', 'as', 'the', 'thirteenth', 'most-popular', 'coin-operated', 'video', 'game', 'of', '1', '9', '8', '9', '.'], ['the', 'first', 'stage', 'of', 'construction', 'was', 'undertaken', 'as', 'part', 'of', 'the', 'northlink', 'wa', 'project', '.'], ['it', 'is', 'in', '``', 'the', 'wise', 'guys', \"''\", 'of', 'robert', 'enrico', 'in', '1', '9', '6', '5', 'that', 'he', 'became', 'noticed', '.'], ['by', 'that', 'time', ',', 'the', 'channel', 'had', 'developed', 'into', 'a', 'cultural', 'channel', 'dedicated', 'to', 'arts', ',', 'history', ',', 'design', ',', 'fashion', 'and', 'fiction', 'programming', '.'], ['a', 'type', 'of', 'confederation', 'consisting', 'of', 'the', 'four', 'kingdoms', ',', 'which', 'most', 'likely', 'emerged', 'in', 'the', '1', '4', 'th', 'century', ',', 'was', 'called', 'moloku', 'kie', 'raha', 'or', '``', 'four', 'mountains', 'of', 'maluku', \"''\", '.'], ['yona', 'pollack', 'was', 'raised', 'in', 'an', 'orphanage', 'in', 'kirgizia', 'without', 'any', 'connection', 'to', 'judaism', '.'], ['his', 'compositional', 'style', 'generated', 'music', 'that', 'was', 'uniquely', 'american', 'and', 'unique', 'to', 'himself', 'as', 'a', 'boy', 'who', 'grew', 'up', 'in', 'rural', 'northern', 'michigan', '.'], ['in', 'addition', 'to', 'her', 'writing', 'career', ',', 'ogola', 'served', 'as', 'a', 'paediatrician', 'and', 'the', 'medical', 'director', 'of', 'cottolengo', 'hospice', ',', 'a', 'hospice', 'for', 'hiv', 'and', 'aids', 'orphans', '.'], ['in', 'the', 'summer', 'of', '1', '9', '4', '7', 'goździk', 'moved', 'to', 'lechia', 'gdańsk', 'where', 'he', 'played', 'until', '1', '9', '5', '5', ',', 'making', 'a', 'total', 'of', '1', '2', '7', 'appearances', 'and', 'scoring', '5', '2', 'goals', 'in', 'all', 'competitions', '.'], ['in', '1', '8', '6', '3', ',', 'crowley', 'built', 'a', 'new', 'ferry', 'and', 'named', 'it', 'the', '``', 'jason', 'gould', \"''\", '.'], ['the', 'river', 'mersey', 'runs', 'through', 'the', 'heart', 'of', 'the', 'town', 'dividing', 'it', 'in', 'two', '.'], ['the', 'hispanic', 'voter', 'project', 'at', 'johns', 'hopkins', 'university', 'is', 'a', 'non-partisan', ',', 'non-profit', 'academic', 'research', 'effort', 'based', 'at', 'the', 'jhu', 'zanvyl', 'krieger', 'school', 'of', 'arts', 'and', 'sciences', 'in', 'washington', ',', 'dc', ',', 'that', 'examines', 'the', 'hispanic', 'outreach', 'efforts', 'of', 'candidates', ',', 'political', 'parties', 'and', 'third', 'party', 'interest', 'groups', '.'], ['the', 'groups', 'in', '``', 'alt.binaries', \"''\", 'are', 'still', 'widely', 'used', 'for', 'data', 'transfer', '.'], ['founder', 'peter', 'egelston', 'and', 'his', 'sister', 'janet', 'had', 'opened', 'the', 'northampton', 'brewery', 'in', '1', '9', '8', '7', 'and', 'the', 'portsmouth', 'brewery', 'in', '1', '9', '9', '1', '.'], ['in', 'the', 'aftermath', 'of', 'the', 'election', ',', 'the', 'government', 'proscribed', 'or', 'shut', 'down', 'media', 'houses', ',', 'and', 'arrested', 'journalists', '.'], ['the', 'ancient', 'city', 'of', 'sarapion', 'is', 'believed', 'to', 'have', 'been', 'the', 'predecessor', 'state', 'of', 'mogadishu', '.'], ['thomas', 'dean', 'founded', 'the', 'firm', ',', 'probably', 'in', 'the', 'late', '1', '7', '9', '0', 's', ',', 'bringing', 'to', 'it', 'innovative', 'lithographic', 'printing', 'processes', '.'], ['on', '2', '8', 'october', '2', '0', '1', '3', 'she', 'released', 'the', 'single', '``', 'maybe', 'i', 'like', 'it', \"''\", ',', 'the', 'song', 'peaked', 'to', 'number', '3', '7', 'on', 'the', 'danish', 'singles', 'chart', '.'], ['the', 'new', 'legal', 'system', 'will', 'confer', 'on', 'individuals', '``', 'no', 'rights', 'but', 'only', 'duties', \"''\", 'and', 'that', '``', 'the', 'state', 'should', 'never', 'evaluate', 'individual', 'persons', 'as', 'such', ',', 'but', 'only', 'the', 'group', 'which', 'represents', 'these', 'persons', \"''\", '.'], ['``', 'the', 'harrow', \"''\", 'was', 'a', 'peer', 'reviewed', 'online', 'literary', 'magazine', 'designed', 'to', 'support', 'new', 'writers', 'as', 'they', 'develop', 'their', 'careers', '.'], ['maclennan', 'was', 'born', 'in', 'the', 'township', 'of', 'king', ',', 'ontario', '.'], ['blythe', 'lived', 'for', 'eight', 'years', 'with', 'harriet', 'walter', ';', 'the', 'couple', 'were', 'planning', 'to', 'marry', 'at', 'the', 'time', 'of', 'his', 'death', '.'], ['its', 'defining', 'feature', 'is', 'that', 'it', 'uses', 'the', 'ages', 'of', 'the', 'samples', 'to', 'provide', 'time', 'information', 'for', 'the', 'analysis', ',', 'in', 'contrast', 'with', 'traditional', \"'node\", 'dating', \"'\", 'methods', 'that', 'require', 'age', 'constraints', 'to', 'be', 'applied', 'to', 'the', 'internal', 'nodes', 'of', 'the', 'evolutionary', 'tree', '.'], ['david', 'robert', 'daleiden', '(', 'born', '1', '9', '8', '9', ')', 'is', 'an', 'american', 'anti-abortion', 'activist', 'who', 'worked', 'for', 'live', 'action', 'before', 'founding', 'the', 'irvine', ',', 'california-based', 'center', 'for', 'medical', 'progress', 'in', '2', '0', '1', '3', '.'], ['the', 'secretariat', 'is', 'also', 'responsible', 'for', 'presenting', 'government-initiated', 'bills', 'to', 'the', 'knesset', 'and', 'for', 'conducting', 'certain', 'press', 'briefings', '.'], ['the', 'website', \"'s\", 'critical', 'consensus', 'reads', ',', '``', 'the', 'beautifully', 'stop-motion', 'animated', '``', 'isle', 'of', 'dogs', \"''\", 'finds', 'wes', 'anderson', 'at', 'his', 'detail-oriented', 'best', 'while', 'telling', 'one', 'of', 'the', 'director', \"'s\", 'most', 'winsomely', 'charming', 'stories', '.', \"''\"], ['in', 'effect', ',', 'the', 'sugar', 'bowl', 'is', 'a', 'reminder', 'to', 'law', 'enforcement', 'to', 'carefully', 'stipulate', 'their', 'warrants', 'and', 'not', 'to', 'use', 'speculative', 'warrants', 'to', 'search', 'for', 'evidence', 'of', 'serious', 'crimes', '.'], ['a', 'dust', 'devil', 'that', 'was', 'previously', 'imaged', 'in', '2', '0', '0', '9', ',', 'there', 'was', 'information', 'found', 'about', 'two', 'years', 'later', 'showing', 'the', 'tracks', 'visible', 'from', 'the', 'previous', 'imaging', 'are', 'completely', 'different', 'from', 'the', 'old', 'ones', 'meaning', 'there', 'had', 'been', 'a', 'dust', 'storm', 'to', 'erase', 'the', 'old', 'tracks', '.'], ['since', 'then', 'and', 'under', 'the', 'helm', 'of', 'newman', ',', 'mother', 'west', 'has', 'grown', 'from', 'a', 'small', 'label', 'and', 'recording', 'studio', 'to', 'a', 'full-service', 'organization', 'offering', 'music', 'licensing', ',', 'publicity', 'and', 'promotions', ',', 'customized', 'distribution', ',', 'online', 'sales', 'and', 'state', 'of', 'the', 'art', 'recording', 'facilities', '.'], ['between', '1', '8', '1', '1', 'to', '1', '8', '2', '7', 'ross', 'learned', 'how', 'to', 'conduct', 'negotiations', 'with', 'the', 'united', 'states', 'and', 'the', 'skills', 'required', 'to', 'run', 'a', 'national', 'government', '.'], ['their', 'twin', 'sons', ',', 'kanishk', 'and', 'ishaan', ',', 'were', 'born', 'prematurely', 'in', '1', '9', '8', '4', 'at', 'the', 'kk', 'hospital', 'in', 'singapore', '.'], ['freeman', 'married', '2', '4', '-year-old', 'orthoptist', 'georgina', 'mclaughlin', 'on', '6', 'august', '1', '9', '8', '1', '.'], ['where', 'formula_', '2', '8', 'formula_', '2', '9', 'and', 'formula_', '3', '0', 'formula_', '3', '1', 'are', 'pressure', 'and', 'density', 'of', 'standard', 'earth', 'atmosphere', 'at', 'sea', 'level', ',', 'formula_', '3', '2', 'and', 'formula_', '3', '3', 'are', 'molar', 'mass', '(', 'kg/kmol', ')', 'and', 'temperature', '(', 'k', ')', 'of', 'atmosphere', 'at', 'floating', 'area', '.'], ['rain-fed', 'cultivation', 'is', 'widespread', ',', 'with', 'wheat', 'being', 'the', 'principal', 'crop', '.'], ['lüthi', '(', '2', '0', '0', '4', ':', '3', '2', '1', ')', 'identifies', 'a', 'total', 'of', 'about', '8', '1', 'continental', 'inscriptions', 'found', 'south', 'of', 'the', '``', 'north', 'germanic', 'koine', \"''\", '.'], ['from', '1', '9', '8', '3', 'to', '1', '9', '8', '6', ',', 'he', 'was', 'part', 'of', 'the', 'hillenkamp', 'research', 'group', 'in', 'the', 'institut', 'für', 'biophysik', 'at', 'johann', 'wolfgang', 'goethe', 'university', 'frankfurt', 'am', 'main', '.'], ['her', 'demon', 'owner', 'forces', 'her', 'into', 'a', 'collar', 'that', 'can', 'be', 'used', 'to', 'shock', 'her', 'when', 'she', 'does', \"n't\", 'obey', '.'], ['he', 'was', 'also', 'quartermaster', 'during', 'the', 'spanish-', 'american', 'war', '.'], ['aware', 'that', 'his', 'racism', 'will', 'cause', 'him', 'to', 'reject', 'her', ',', 'she', 'brushes', 'by', 'her', 'darker-complected', 'sister', ',', 'leaving', 'her', 'standing', 'alone', 'in', 'the', 'crowd', '.'], ['obstruction', 'of', 'the', 'common', 'bile', 'duct', 'with', 'gallstones', 'can', 'sometimes', 'be', 'relieved', 'by', 'endoscopic', 'retrograde', 'sphincterotomy', '(', 'ers', ')', 'following', 'endoscopic', 'retrograde', 'cholangiopancreatography', '(', 'ercp', ')', '.'], ['in', 'swedish', ',', 'the', 'difference', 'between', 'accent', '1', 'and', 'accent', '2', 'can', 'only', 'be', 'heard', 'in', 'words', 'of', 'two', 'or', 'more', 'syllables', ',', 'since', 'the', 'tones', 'take', 'two', 'syllables', 'to', 'be', 'realised', '.'], ['excessive', 'or', 'intense', 'use', 'of', 'his', 'abilities', 'has', 'resulted', 'in', 'captain', 'atom', 'temporarily', 'losing', 'his', 'own', 'molecular', 'stability', '.'], ['however', ',', 'it', 'has', 'possible', 'applications', 'in', 'the', 'pharmaceutical', 'industry', '.'], ['``', 'neighbours', \"''\", 'is', 'the', 'second', 'most', 'successful', 'having', 'won', '3', '1', 'logies', 'since', 'it', 'began', 'in', '1', '9', '8', '5', '.'], ['they', 'became', 'patrons', 'for', 'the', 'village', ',', 'funding', 'the', 'refurbishment', 'of', 'the', 'church', 'and', 'the', 'construction', 'of', 'the', 'almshouses', 'in', 'appleby', 'magna', '.'], ['the', 'capital', 'skopje', 'is', '1', '1', '2', 'km', 'away', '.'], ['arriving', 'on', '1', '0', 'february', ',', 'she', 'took', 'on', 'her', 'first', 'pacfill', '(', 'pacific', 'fleet', 'issue', 'load', 'list', ')', 'stock', ',', 'and', ',', 'in', 'march', ',', 'completed', 'final', 'contract', 'trials', '.'], ['regardless', ',', 'abd', 'allah', 'was', 'an', 'influential', 'sudanese', 'dinka', 'officer', ',', 'and', 'was', 'able', 'to', 'secure', 'latif', 'a', 'place', 'at', 'a', 'khalwa', ',', 'and', 'also', 'later', 'at', 'the', 'gordon', 'memorial', 'college', ',', 'from', 'where', 'latif', 'went', 'on', 'to', 'graduate', 'from', 'the', 'khartoum', 'military', 'school', '.'], ['in', 'women', ',', 'this', 'event', 'occurs', 'when', 'the', 'ovarian', 'follicles', 'rupture', 'and', 'release', 'the', 'secondary', 'oocyte', 'ovarian', 'cells', '.'], ['there', 'are', 'also', 'three', 'nature', 'preserves', ':', 'bonnie', \"'s\", 'prairie', ',', 'hooper', 'branch', 'savanna', ',', 'and', 'loda', 'cemetery', 'prairie', '.'], ['``', 'riot', 'green', \"''\", 'is', 'in', 'the', 'process', 'of', 'being', 'adapted', 'into', 'a', 'movie', '.'], ['two', 'variants', 'of', 'the', 'lm-', '7', '0', '0', 'were', 'built', '.'], ['originally', 'housed', 'in', 'the', 'hermitage', 'chapel', 'just', 'outside', 'the', 'village', ',', 'the', 'piece', ',', 'which', 'appears', 'to', 'date', 'from', 'the', 'sixteenth', 'century', ',', 'depicts', 'scenes', 'from', 'the', 'life', 'and', 'the', 'passion', 'of', 'christ', '.'], ['therefore', ',', 'the', 'governing', 'coalition', 'maintained', 'its', 'two-thirds', 'majority', 'in', 'a', 'slightly-reduced', 'lower', 'house', 'of', '4', '7', '5', '.'], ['in', 'november', '2', '0', '0', '6', ',', 'the', 'senate', 'of', 'the', 'university', 'finally', 'decided', 'to', 'rename', 'the', 'university', '.'], ['the', 'simple', 'life', 'of', 'noah', 'dearborn', ',', 'is', 'a', '1', '9', '9', '9', 'made-for-television', 'film', ',', 'first', 'broadcast', 'on', '9', 'may', '1', '9', '9', '9', 'on', 'cbs', '.'], ['later', ',', 'cordelia', 'follows', 'her', 'owner', ',', 'carrying', 'purchases', 'from', 'the', 'market', ',', 'until', 'a', 'vision', 'causes', 'her', 'to', 'fall', 'and', 'drop', 'everything', '.'], ['``', 'we', 'know', 'small', 'businesses', 'are', 'the', 'backbone', 'of', 'the', 'economy', 'and', 'together', 'we', 'can', 'work', 'towards', 'our', 'climate', 'action', 'goals', '.', \"''\"], ['the', 'prototype', 'first', 'flew', 'on', '1', '9', 'september', '1', '9', '4', '9', 'and', 'made', 'the', 'first', 'deck', 'landing', 'by', 'a', 'turboprop', 'aircraft', ',', 'on', 'on', '1', '9', 'june', '1', '9', '5', '0', ',', 'by', 'pilot', 'lieutenant', 'commander', 'g.', 'callingham', '.'], ['all', 'that', 'include', 'high', 'potential', 'occur', 'after', 'the', '4', '8', '-', '6', '8', 'aa', 'transmembrane', 'region', '.'], ['the', 'school', 'was', 'established', 'in', '1', '9', '0', '1', 'and', 'is', 'the', 'oldest', 'modern', 'public', 'middle', 'school', 'in', 'tianjin', '.'], ['passenger', 'services', 'no', 'longer', 'pass', 'through', 'te', 'kuha', 'and', 'the', 'railway', 'mainly', 'transports', 'coal', 'to', 'the', 'east', 'coast', 'port', 'of', 'lyttelton', '.'], ['the', 'south-facing', 'façade', 'has', 'five', 'bays', 'with', 'a', 'pediment', 'over', 'the', 'three', 'central', 'bays', '.'], ['from', '1', '9', '4', '4', 'to', '1', '9', '5', '7', ',', 'it', 'was', 'a', 'part', 'of', 'the', 'novoselsky', 'district', 'of', 'grozny', 'oblast', '.'], ['barker', \"'s\", 'writing', 'style', 'was', ',', 'for', '``', 'the', 'times', \"''\", ',', '``', 'based', 'on', 'precise', 'scripts', 'and', 'perfect', 'timing', '.', \"''\"], ['the', 'website', 'of', 'the', 'same', 'name', 'has', 'been', 'online', 'since', 'about', '1', '9', '9', '9', ',', 'and', 'does', 'not', 'appear', 'to', 'have', 'any', 'connection', 'to', 'the', 'original', 'newspaper', '.'], ['lincolnshire', 'fire', 'and', 'rescue', 'are', 'the', 'first', 'fire', 'and', 'rescue', 'service', 'in', 'the', 'united', 'kingdom', 'to', 'operate', 'actual', \"'fire\", 'ambulances', \"'\", '.'], ['in', '1', '9', '8', '6', ',', 'families', 'of', 'those', 'placed', 'at', 'the', 'receiving', 'home', 'for', 'children', 'sued', 'over', 'the', 'poor', 'conditions', 'there', '.'], ['by', 'september', '8', ',', 'about', '8', '0', '%', 'of', 'the', 'results', 'had', 'been', 'counted', ',', 'and', 'these', 'continued', 'to', 'show', 'the', 'mpla', 'with', 'over', '8', '0', '%', 'of', 'the', 'vote', '.'], ['this', 'curved', 'spring', 'consists', 'of', 'an', 'outer', 'and', 'two', 'inner', 'arc', 'springs', 'with', 'different', 'elastic', 'characteristics', 'connected', 'in', 'series', '.'], ['he', 'spent', 'the', 'vast', 'majority', 'of', 'his', 'professional', 'career', 'in', 'portugal', ',', 'amassing', 'primeira', 'liga', 'totals', 'of', '1', '9', '0', 'matches', 'and', '4', '1', 'goals', 'over', 'seven', 'seasons', 'and', 'representing', 'in', 'the', 'competition', 'braga', ',', 'sporting', 'and', 'belenenses', '.'], ['vermion', 'the', 'withdrawal', 'had', 'very', 'detrimental', 'effects', ',', 'as', 'it', 'meant', 'the', 'abandoning', 'of', 'well', 'prepared', 'positions', ',', 'and', 'long', 'night', 'marches', '(', 'for', 'safety', 'against', 'air', 'strikes', ')', '.'], ['on', '1', '0', 'december', '2', '0', '2', '0', ',', 'around', 'two', 'weeks', 'before', 'the', 'last', 'planned', 'day', 'in', 'service', ',', 'a', 'van', 'crashed', 'in', 'one', 'of', 'the', 'cargotrams', '.'], ['the', 'san', 'francisco', 'deltas', 'broadcast', 'all', 'their', 'home', 'games', 'worldwide', 'via', 'twitter', '.'], ['his', 'zealousness', 'also', 'earned', 'him', 'the', 'nickname', '``', 'rabid', 'beaver', \"''\", 'from', 'his', 'colleagues', '.'], ['a', 'month', 'later', ',', 'he', 'was', 'allowed', 'to', 'return', 'to', 'the', 'university', '.'], ['moma', 'does', 'not', 'form', 'a', 'single', 'compact', 'unit', ',', 'but', 'is', 'modular', 'with', 'numerous', 'mechanical', 'and', 'thermal', 'interfaces', 'within', 'the', 'rover', '.'], ['the', 'disc', 'contains', 'ten', 'songs', '(', 'eight', 'english', 'tracks', 'and', 'two', 'spanish', 'tracks', ')', '.'], ['as', 'of', '1', '9', '9', '2', ',', 'carhartt', 'sold', 'more', 'than', 'two', 'million', 'jackets', 'per', 'year', '.'], ['the', 'radiation', 'pressure', 'in', 'the', 'metamaterial', 'is', 'also', 'negative', 'because', 'the', 'force', 'is', 'defined', 'as', 'formula_', '2', '2', '.'], ['rachel', 'powell', ',', 'a', 'well-known', 'writer', 'in', 'the', 'entertainment', 'industry', ',', 'brought', 'her', 'friend', 'ms.', 'lavonne', 'in', 'on', 'the', 'project', 'and', 'nokia', 'fell', 'in', 'love', 'with', 'ms.', 'lavonne', \"'s\", 'song', ',', '``', 'haterz', \"''\", '.'], ['the', 'area', 'was', 'located', 'between', 'lehighton', ',', 'parryville', ',', 'and', 'longrun', '.'], ['farol', 'de', 'regufe', 'served', ',', 'along', 'with', 'farol', 'da', 'lapa', ',', 'the', 'alignment', 'of', 'the', 'slop', 'in', 'póvoa', 'bay', '.'], ['samantha', 'diaz', '(', 'born', 'november', '2', '3', ',', '1', '9', '9', '8', ')', ',', 'known', 'by', 'her', 'stage', 'name', 'just', 'sam', ',', 'is', 'a', 'singer-songwriter', 'from', 'harlem', ',', 'new', 'york', 'who', 'rose', 'to', 'fame', 'after', 'winning', 'the', 'eighteenth', 'season', 'of', 'the', 'singing', 'reality', 'show', '``', 'american', 'idol', \"''\", '.'], ['on', 'the', 'same', 'day', 'when', 'a', 'landslide', 'struck', 'saki', 'naka', ',', 'a', 'suburb', 'of', 'mumbai', ',', 'the', 'dmvs', 'played', 'a', 'crucial', 'role', 'in', 'saving', 'lives', 'and', 'extricating', 'bodies', 'from', 'the', 'rubble', 'in', 'extremely', 'challenging', 'conditions', '.'], ['8', 'to', '1', '5', 'cm', 'long', ',', '2', 'to', '5', 'cm', 'wide', '.'], ['in', 'august', ',', 'there', 'was', 'a', 'creditors', 'meeting', 'and', 'deloitte', 'accountants', 'were', 'appointed', 'as', 'liquidators', '.'], ['it', 'was', 'shown', 'that', 'pep-', '1', 'could', 'facilitate', 'rapid', 'cellular', 'uptake', 'of', 'various', 'peptides', ',', 'proteins', ',', 'and', 'even', 'full-length', 'antibodies', 'with', 'high', 'efficiency', 'and', 'less', 'toxicity', '.'], ['these', 'tickets', 'are', 'pre-paid', 'for', 'between', 'pre-determined', 'stations', ',', 'and', 'are', 'good', 'for', 'only', 'one', 'trip', '.'], ['a', 'third', 'plant', 'was', 'opened', 'in', '1', '9', '7', '2', 'in', 'pottenbrunn/sankt', 'pölten', ',', 'austria', '.'], ['the', 'spanish', 'company', 'pld', 'space', 'born', 'in', '2', '0', '1', '1', 'with', 'the', 'objective', 'of', 'developing', 'low', 'cost', 'launch', 'vehicles', 'called', 'miura', '1', 'and', 'miura', '5', 'with', 'the', 'capacity', 'to', 'place', 'up', 'to', 'into', 'orbit', '.'], ['it', 'is', 'in', 'the', 'lydian', 'mode', ',', 'first', 'occurring', 'on', 'g', ',', 'with', 'a', 'drone-like', 'accompaniment', 'in', 'the', 'piano', 'part', '.'], ['tennis', 'channel', 'is', 'the', 'exclusive', 'cable', 'rightsholder', 'of', 'the', 'french', 'open', ';', 'while', 'it', 'previously', 'sub-licensed', 'portions', 'of', 'this', 'coverage', 'to', 'espn', ',', 'this', 'arrangement', 'ended', 'in', '2', '0', '1', '5', '.'], ['his', 'mother', 'strongly', 'disapproves', 'of', 'the', 'theft', 'and', 'refuses', 'the', 'money', 'dennis', 'gives', 'her', ',', 'but', 'her', 'father', 'was', 'more', 'positive', ',', 'with', 'the', 'motto', '``', 'it', 'is', 'better', 'to', 'regret', 'what', 'you', 'have', 'done', 'than', 'to', 'regret', 'what', 'you', 'did', 'not', 'do', \"''\", '.'], ['kingsley', 'began', 'as', 'a', 'publicist', 'for', 'paramount', 'pictures', 'in', '1', '9', '3', '3', '.'], ['for', 'generations', ',', 'colonists', 'mistakenly', 'used', 'the', 'place', 'names', 'as', 'exonyms', 'for', 'peoples', ',', 'thinking', 'they', 'referred', 'to', 'distinct', 'tribes', '.'], ['``', 'the', 'purpose', 'of', 'wildlife', 'areas', 'is', 'to', 'preserve', 'habitats', 'that', 'are', 'critical', 'to', 'migratory', 'birds', 'and', 'other', 'wildlife', 'species', ',', 'particularly', 'those', 'that', 'are', 'at', 'risk', '.', \"''\"], ['he', 'lobbied', 'for', 'the', 'construction', 'of', 'a', 'lighthouse', 'on', 'pelee', 'island', 'and', 'later', 'served', 'as', 'lighthouse', 'keeper', '.'], ['creating', 'false', 'travel', 'records', ',', 'as', 'well', 'as', 'falsifying', 'authorization', ',', 'are', 'third', 'degree', 'felonies', '.'], ['mahon', 'reasoned', '``', 'we', 'would', 'rather', 'have', 'a', 'large', 'number', 'of', 'individual', 'applications', 'so', 'that', 'there', 'will', 'be', 'more', 'supporters', 'of', 'the', 'club', '.', \"''\"], ['another', 'describes', 'the', 'comprehensive', 'bilingual', 'dictionary', 'compilation', 'and', 'publication', 'project', 'as', '``', 'unprecedented', 'and', 'unsurpassed', 'in', '1', '9', 'th-century', 'china', \"''\", '.'], ['the', 'state', 'constituency', 'was', 'created', 'in', 'the', '1', '9', '8', '4', 'redistribution', 'and', 'was', 'mandated', 'to', 'return', 'a', 'single', 'member', 'to', 'the', 'selangor', 'state', 'legislative', 'assembly', 'under', 'the', 'first', 'past', 'the', 'post', 'voting', 'system', '.'], ['it', 'is', 'time', 'to', 'do', 'away', 'with', 'the', 'rule', 'of', 'the', 'jungle', '.'], ['russell', 'allan', 'doane', 'is', 'an', 'american', 'professional', 'mixed', 'martial', 'artist', 'currently', 'competing', 'in', 'the', 'bantamweight', 'division', 'of', 'the', 'ultimate', 'fighting', 'championship', '.'], ['over', 'the', 'longer', 'term', ',', 'the', 'risk', 'to', 'the', 'holders', 'of', 'capital', 'shares', 'should', 'be', 'moderated', 'by', 'the', 'usually', 'high', 'quality', 'of', 'the', 'underlying', 'dividend-paying', 'shares', ',', 'typically', 'blue-chip', ',', 'in', 'the', 'basket', '.'], ['however', ',', 'after', 'undergoing', 'numerous', 'changes', 'in', 'organisation', 'and', 'personnel', ',', 'the', '4', '2', 'nd', 'armoured', 'division', ',', 'after', 'an', 'existence', 'of', 'just', 'less', 'than', 'two', 'years', ',', 'was', 'broken', 'up', ',', 'many', 'of', 'its', 'units', 'reconverting', 'to', 'infantry', 'or', 'disbanding', '.'], ['appeals', 'by', 'public', 'figures', 'were', 'screened', 'at', 'football', 'matches', 'across', 'britain', '.'], ['this', 'is', 'a', 'non-competition', 'round', ',', 'but', 'it', 'determines', 'who', 'will', 'make', 'it', 'on', 'top', 'of', 'the', 'game', '.'], ['``', 'carpentier', 'was', 'awarded', 'the', '``', 'croix', 'de', 'guerre', \"''\", 'with', 'palm', '.'], ['bace', '1', '-as', 'concentrations', 'are', 'elevated', 'in', 'subjects', 'with', 'alzheimer', \"'s\", 'disease', 'and', 'in', 'amyloid', 'precursor', 'protein', 'transgenic', 'mice', '.'], ['he', 'was', 'the', 'chairman', 'of', 'the', 'connecticut', 'house', 'republican', 'caucus', 'since', '2', '0', '0', '7', '.'], ['marines', ',', 'fighters', ',', 'bombers', 'and', 'panzers', ',', 'which', 'are', 'used', 'for', 'attacking', ',', 'heavy', 'lasers', 'which', 'are', 'used', 'in', 'conjunction', 'with', 'the', 'attacking', 'units', 'for', 'defence', ',', 'missiles', 'and', 'seals', ',', 'which', 'are', 'used', 'for', 'covert', 'operations', '.'], ['the', 'charts', 'are', 'ranked', 'in', 'accordance', 'with', 'sales', ',', 'streams', ',', 'or', 'airplay', 'of', 'the', 'song', '.'], ['during', 'his', 'first', 'term', 'as', 'lord', 'chancellor', ',', 'hailsham', 'oversaw', 'the', 'passage', 'of', 'the', 'courts', 'act', '1', '9', '7', '1', ',', 'which', 'fundamentally', 'reformed', 'the', 'english', 'justice', 'by', 'abolishing', 'the', 'ancient', 'assizes', 'and', 'quarter', 'sessions', ',', 'which', 'were', 'replaced', 'by', 'permanent', 'crown', 'courts', '.'], ['an', 'ira', 'internee', 'in', 'the', 'curragh', 'reported', 'to', 'roger', 'mchugh', 'that', 'many', 'of', 'his', 'fellow', 'internees', 'supported', 'ó', 'cuinneagáin', '.'], ['this', 'resulted', 'in', 'the', 'stalling', 'of', 'recording', 'for', 'd', '1', '2', \"'s\", 'third', 'album', '.'], ['in', 'the', 'novel', ',', 'sophie', 'finds', 'a', 'letter', 'that', 'amy', 'travers', ',', 'a', 'schoolteacher', 'and', 'close', 'friend', 'of', 'helen', \"'s\", ',', 'had', 'written', 'to', 'her', ':'], ['at', 'the', 'end', 'of', '1', '9', '3', '3', ',', 'wood', 'began', 'work', 'on', 'his', 'first', 'film', ',', 'with', 'a', 'supporting', 'role', 'in', 'david', 'butler', \"'s\", 'comedy', ',', '``', 'bottom', \"'s\", 'up', \"''\", ',', 'starring', 'spencer', 'tracy', '.'], ['the', 'present', 'building', 'is', 'the', 'fifth', 'cathedral', ',', 'successor', 'to', 'four', 'previous', 'buildings', 'that', 'fell', 'victim', 'to', 'various', 'physical', 'disasters', ':', 'two', 'collapses', ',', 'a', 'fire', ',', 'and', 'damage', 'from', 'the', 'nicolet', 'landslide', 'of', '1', '9', '5', '5', '.'], ['the', 'intake', 'and', 'exhaust', 'valves', 'were', 'located', 'at', 'the', 'top', 'of', 'each', 'combustion', 'chamber', '.'], ['the', 'essential', 'threat', 'to', 'the', 'existence', 'of', 'illidge', \"'s\", 'ant-blue', 'butterfly', 'arises', 'as', 'a', 'result', 'of', 'the', 'destruction', 'of', 'mangrove', 'habitats', '.'], ['``', 'empty', 'streets', \"''\", 'was', 'released', 'in', 'september', ',', '2', '0', '0', '5', '.'], ['he', 'received', 'his', 'earliest', 'instructions', 'from', 'his', 'father', ',', 'himself', 'an', 'engraver', ';', 'but', ',', 'to', 'obtain', 'more', 'advanced', 'training', ',', 'he', 'was', 'placed', 'as', 'a', 'pupil', 'under', 'the', 'celebrated', 'giovanni', 'volpato', '.'], ['its', 'population', 'was', '1', '2', '9', ',', '1', '5', '7', 'in', '2', '0', '1', '7', ',', 'of', 'which', '4', '0', ',', '2', '1', '9', 'in', 'alès', 'proper', '.'], ['this', 'possibly', 'indicates', 'a', 'vacancy', 'in', 'the', 'see', 'of', 'oviedo', 'at', 'that', 'time', '.'], ['a', '``', 'jodhpuri', \"''\", 'or', 'a', '``', 'bandhgala', \"''\", 'is', 'a', 'formal', 'evening', 'suit', 'from', 'india', '.'], ['racial', 'vitriol', 'is', 'an', 'element', 'in', 'some', 'of', 'the', 'murders', 'of', 'white', 'farmers', '.'], ['kdlt-tv', ',', 'virtual', 'channel', '4', '6', '(', 'uhf', 'digital', 'channel', '2', '1', ')', ',', 'is', 'a', 'dual', 'nbc/fox-affiliated', 'television', 'station', 'licensed', 'to', 'sioux', 'falls', ',', 'south', 'dakota', ',', 'united', 'states', ',', 'serving', 'eastern', 'south', 'dakota', 'and', 'southwestern', 'minnesota', '.'], ['overall', ',', 'the', 'iat', 'has', 'been', 'found', 'to', 'be', 'an', 'effective', 'predictor', 'of', 'behavior', ',', 'and', 'is', 'generally', 'superior', 'to', 'self-report', 'measures', 'when', 'dealing', 'with', 'topics', 'of', 'discrimination', 'and', 'stereotyping', ',', 'especially', 'when', 'examining', 'patterns', 'of', 'ingroup', 'liking', '(', 'e.g', '.'], ['suicide', 'has', 'been', 'decriminalised', 'since', '5', 'may', '2', '0', '1', '9', ',', 'with', 'the', 'passing', 'of', 'the', 'criminal', 'law', 'reform', 'act', ',', 'which', 'repealed', 'section', '3', '0', '9', 'of', 'the', 'singapore', 'penal', 'code', '.'], ['there', 'have', 'been', 'police', 'stations', 'in', 'the', 'town', 'since', '1', '8', '5', '7', ',', 'when', 'the', 'first', 'police', 'station', 'was', 'rented', '.'], ['the', 'rosario', 'river', '(', ')', 'is', 'a', 'river', 'located', 'in', 'the', 'colonia', 'department', 'of', 'uruguay', '.'], ['he', 'stroked', 'the', '2', '0', '0', '3', ',', '2', '0', '0', '4', 'and', '2', '0', '0', '8', 'eight', 'and', 'saw', 'king', \"'s\", 'cup', 'victories', 'in', '2', '0', '0', '4', 'and', '2', '0', '0', '8', '.'], ['shows', 'after', 'that', 'date', 'included', '``', 'man', 'of', 'la', 'mancha', \"''\", ',', '``', 'beauty', 'and', 'the', 'beast', \"''\", ',', '``', 'phantom', 'of', 'the', 'opera', \"''\", ',', '``', 'mama', 'mia', '!', \"''\"], ['panchari', 'melam', ',', 'in', 'its', 'grand', 'classical', 'form', ',', 'is', 'staged', 'during', 'temple', 'festivals', 'in', 'and', 'around', 'thrissur', 'and', 'ernakulam', 'districts', '.'], ['in', 'the', '1', '8', '7', '2', 'shepherd', \"'s\", 'political', 'enemies', 'gained', 'power', 'and', 'accused', 'him', 'and', 'his', 'supporters', ',', 'of', 'corruption', '.'], ['her', 'first', 'novel', ',', '``', 'who', 'will', 'love', 'polly', 'odlum', '?', \"''\"], ['in', 'the', 'traditional', 'cultures', 'of', 'the', 'hawaiians', 'and', 'the', 'polynesians', ',', 'rat', 'was', 'an', 'everyday', 'food', 'for', 'commoners', '.'], ['in', '1', '8', '8', '9', 'and', '1', '8', '9', '3', ',', 'dr.', 'theobald', 'smith', 'made', 'discoveries', 'which', 'implicated', 'cattle', 'ticks', 'as', 'the', 'necessary', 'developmental', 'host', 'of', 'the', 'causal', 'agent', 'of', 'texas', 'cattle', 'fever', '.'], ['wjma', 'was', 'owned', 'by', 'john', 'arrington', 'jr.', 'and', 'his', 'wife', ',', 'marcia', '.'], ['the', 'module', 'declares', 'a', 'namespace', 'and', 'a', 'prefix', 'and', 'imports', 'the', 'type', 'library', 'module', 'codice_', '2', 'before', 'defining', 'the', 'type', 'codice_', '3', '.'], ['in', 'the', '2', '0', '1', '8', 'cfl', 'season', ',', 'cfl', 'broadcasts', 'on', 'espn', 'attracted', 'an', 'average', 'of', '1', '6', '3', ',', '0', '0', '0', 'u.s.', 'viewers', 'per', 'game', ',', 'which', 'accounted', 'for', 'about', 'one-fifth', 'of', 'the', 'total', 'north', 'american', 'television', 'audience', '.'], ['they', 'sang', 'in', 'the', 'bach', 'choir', 'in', 'london', 'from', 'about', '1', '9', '4', '2', 'and', 'were', 'keen', 'musicians', '.'], ['after', 'retirement', 'on', '3', '1', '.', '1', '2', '.', '2', '0', '0', '9', ',', 'he', 'still', 'continues', 'as', 'the', 'head', 'of', 'pg', 'programs', 'and', 'research', ',', 'at', 'amrita', 'institute', 'of', 'medical', 'sciences', 'and', 'research', ',', 'kochi', '.'], ['in', 'the', 'manosphere', ',', 'the', 'term', '``', 'betabux', \"''\", 'refers', 'to', 'beta', 'males', 'who', 'give', 'financial', 'favors', 'to', 'women', 'in', 'an', 'attempt', 'to', 'earn', 'their', 'romantic', 'or', 'sexual', 'interest', '.'], ['the', 'kanbun', '(', 'sign', ')', 'for', 'the', 'yamane-ryu', 'hombu', 'dojo', 'was', 'gifted', 'to', 'maeda', 'by', 'kishaba', 'upon', 'his', 'passing', '.'], ['``', 'cin', 'weekly', \"''\", 'gave', 'it', 'a', 'score', 'of', '7', '1', 'out', 'of', '1', '0', '0', ',', 'saying', ',', '``', 'an', 'undeveloped', 'but', 'great', 'take', 'on', 'first-person', 'views', 'makes', 'this', 'a', 'strong', 'rental', 'but', 'iffy', 'purchase', '.', \"''\"], ['despite', 'the', 'loss', 'of', 'massmutual', \"'s\", 'subsidiary', 'oppenheimerfunds', \"'\", 'new', 'york', 'offices', 'on', 'september', '1', '1', ',', '2', '0', '0', '1', ',', 'the', 'subsidiary', 'recovered', 'well', ',', 'posting', 'strong', 'results', 'along', 'with', 'its', 'parent', 'company', 'for', 'the', 'year', '.'], ['it', 'said', 'that', 'there', 'was', 'no', 'evidence', 'that', 'the', 'group', ',', 'or', 'any', 'of', 'its', 'related', 'organizations', ',', 'mishandled', 'any', 'of', 'the', '$', '4', '0', 'million', 'in', 'federal', 'money', 'that', 'they', 'had', 'received', 'in', 'recent', 'years', '.'], ['in', '1', '9', '8', '8', ',', 'cubria', 'was', 'posthumously', 'inducted', 'into', 'the', 'military', 'intelligence', 'hall', 'of', 'fame', '.'], ['over', 'two', 'years', 'in', 'the', 'making', ',', 'old', 'chicago', 'was', 'opened', 'to', 'the', 'public', 'on', 'june', '1', '7', ',', '1', '9', '7', '5', ',', 'in', 'a', 'grand', 'opening', 'party', 'that', 'attracted', 'over', '1', '0', ',', '0', '0', '0', 'invited', 'guests', ',', 'causing', 'massive', 'traffic', 'jams', '.'], ['the', 'enumeration', 'of', 'permutations', 'discordant', 'with', 'two', 'permutations', ',', 'one', 'of', 'which', 'is', 'a', 'simple', 'cyclic', 'shift', 'of', 'the', 'other', ',', 'is', 'known', 'as', 'the', 'reduced', 'problème', 'des', 'ménages', '.'], ['through', 'fun', 'and', 'interactive', 'hands-on', 'activities', 'that', 'teach', 'science', ',', 'engineering', 'and', 'math', 'concepts', ',', 'energy', '4', 'me', 'encourages', 'young', 'students', 'to', 'pursue', 'engineering', 'as', 'a', 'career', 'field', ',', 'ensuring', 'the', 'future', 'workforce', 'in', 'the', 'oil', 'and', 'natural', 'gas', 'industry', '.'], ['the', 'posts', 'were', 'almost', 'certainly', 'made', 'of', 'wood', 'and', 'roughly', 'in', 'diameter', '.'], ['in', 'february', '2', '0', '1', '8', ',', 'during', 'snh', '4', '8', \"'s\", 'fourth', 'request', 'time', ',', 'lin', 'was', 'transferred', 'to', 'team', 'hii', 'as', 'part', 'of', 'the', 'snh', '4', '8', 'team', 'shuffle', '.'], ['in', '2', '0', '1', '9', ',', '3', '0', ',', '0', '0', '0', 'surgeries', 'were', 'performed', 'at', 'the', 'hospital', 'and', '8', '4', ',', '0', '0', '0', 'hospitalizations', 'took', 'place', '.'], ['this', 'office', 'also', 'oversees', 'matters', 'of', 'human', 'resource', 'and', 'immigration', 'related', 'to', 'the', 'university', 'of', 'manitoba', '.'], ['several', 'battles', 'of', 'american', 'revolution', 'took', 'place', 'in', 'the', 'region', 'including', 'those', 'at', 'connecticut', 'farms', ',', 'bound', 'brook', ',', 'and', 'paulus', 'hook', '.'], ['the', 'home', 'of', 'the', 'extended', 'family', 'of', 'kentucky', 'sports', 'radio', 'founder', 'matt', 'jones', \"'s\", 'girlfriend', ',', 'rachel', 'bailey', '.'], ['it', 'inspired', 'the', 'naming', 'of', 'towns', ',', 'hotels', ',', 'steamboats', ',', 'and', 'a', 'cigar', 'brand', '.'], ['grade', '4', 'and', '5', 'avms', 'are', 'not', 'usually', 'surgically', 'treated', '.'], ['the', 'leinster', 'senior', 'league', 'cup', 'is', 'the', 'most', 'important', 'provincial', 'cricket', 'knock-out', 'cup', 'of', 'the', 'leinster', 'jurisdiction', 'in', 'ireland', '.'], ['marfino', '(', ')', 'is', 'a', 'rural', 'locality', '(', 'a', 'selo', ')', 'and', 'the', 'administrative', 'center', 'of', 'marfinsky', 'selsoviet', 'of', 'volodarsky', 'district', ',', 'astrakhan', 'oblast', ',', 'russia', '.'], ['at', 'the', 'urging', 'of', 'the', 'german', 'authorities', ',', 'the', 'isr', 'persecuted', 'those', 'plotters', 'they', 'could', 'find', ',', 'six', 'in', 'number', '.'], ['the', 'median', 'age', 'was', '3', '1', '.', '2', 'years', '.'], ['neil', 'peart', ',', 'who', 'was', 'the', 'drummer', 'of', 'rush', ',', 'was', 'actually', 'the', 'person', 'who', 'voiced', '``', 'subdivisions', \"''\", 'in', 'the', 'chorus', 'of', 'the', 'song', '.'], ['in', 'it', ',', 'mowgli', 'hears', 'the', 'story', 'of', 'how', 'the', 'tiger', 'got', 'his', 'stripes', '.'], ['her', 'parents', 'were', 'lucretia', 'deshler', 'hutcheson', 'and', 'joseph', 'hutcheson', ',', 'a', 'banker', '.'], ['this', 'would', 'have', 'allowed', 'him', 'to', 'return', 'west', 'in', 'his', 'old', 'age', '.'], ['this', 'bibliography', 'of', 'james', 'madison', 'is', 'a', 'list', 'of', 'published', 'works', 'about', 'james', 'madison', ',', '4', 'th', 'president', 'of', 'the', 'united', 'states', '.'], ['a', 'defender', ',', 'he', 'received', 'a', '1', '9', '9', '8', 'afl', 'rising', 'star', 'nomination', 'in', 'his', 'sixth', 'league', 'game', ',', 'against', 'carlton', 'at', 'the', 'mcg', ',', 'where', 'he', 'had', '2', '2', 'disposals', '.'], ['located', 'in', 'roesbrugge', 'from', '1', '2', '3', '9', 'to', 'the', 'late', '1', '6', 'th', 'century', ',', 'the', 'community', 'then', 'moved', 'into', 'ypres', ',', 'west', 'flanders', ',', 'belgium', ',', 'where', 'it', 'exists', 'today', '.'], ['however', ',', 'in', '2', '0', '1', '5', ',', 'the', 'franchise', 'was', 'lost', 'from', 'beauties', 'of', 'south', 'sudan', 'for', 'failing', 'to', 'send', 'a', 'representative', 'in', '2', '0', '1', '4', '.'], ['forming', 'canyons', 'up', 'to', 'deep', ',', 'this', 'section', 'is', 'often', 'called', 'the', '``', 'grand', 'canyon', 'of', 'the', 'east', \"''\", '.'], ['written', 'and', 'produced', 'by', 'gambino', 'and', 'ludwig', 'göransson', ',', 'the', 'song', 'was', 'released', 'by', 'wolf+rothstein', 'and', 'rca', 'records', 'on', 'july', '1', '1', ',', '2', '0', '1', '8', '.'], ['before', 'publicly', 'revealing', 'information', 'of', 'the', 'band', \"'s\", 'new', 'lineup', ',', 'aro', 'only', 'stated', 'there', 'was', 'good', 'news', 'coming', 'from', 'the', 'band', '.'], ['when', 'the', 'raiders', 'were', 'banned', ',', 'they', 'complained', 'of', 'racism', '.'], ['the', 'other', 'survivors', 'abandoned', 'ship', ':', 'three', 'dems', 'gunners', 'on', 'a', 'liferaft', ',', 'and', 'the', 'rest', 'in', 'the', 'port', 'lifeboat', '.'], ['for', 'the', 'current', 'financial', 'year', '2', '0', '1', '2', '-', '1', '3', ',', 'as', 'on', '3', '0', 'september', '2', '0', '1', '2', ',', 'the', 'total', 'exports', 'from', 'csez', 'stand', 'at', '1', '6', ',', '3', '0', '6', 'crore', ',', 'ranking', 'it', 'the', 'third', 'among', 'sezs', 'in', 'the', 'country', \"''\", '.'], ['according', 'to', 'the', 'regulations', ',', 'the', 'selection', 'of', 'the', 'candidates', 'participating', 'for', 'a', 'particular', 'country', 'are', 'chosen', 'through', 'a', 'selection', 'process', 'which', 'should', 'be', 'organized', 'or', 'be', 'under', 'the', 'auspices', 'of', 'a', 'national', 'philosophical', 'organization', 'member', 'of', 'the', 'fisp', '.'], ['others', 'have', 'a', 'more', 'general', 'concept', 'of', 'something', 'within', 'each', 'person', 'that', 'encourages', 'the', 'good', '.'], ['the', 'primary', 'ferry', 'within', 'the', 'town', 'of', 'brookhaven', 'is', 'the', 'bridgeport-port', 'jefferson', 'ferry', ',', 'which', 'takes', 'vehicles', 'and', 'passengers', 'across', 'the', 'long', 'island', 'sound', 'to', 'and', 'from', 'port', 'jefferson', 'to', 'bridgeport', ',', 'connecticut', '.'], ['intending', 'to', 'empower', 'the', 'common', 'people', 'he', 'planned', 'to', 'institute', 'political', 'and', 'economic', 'reforms', 'to', 'share', 'the', 'nation', \"'s\", 'wealth', 'more', 'equitably', '.'], ['noteworthy', 'ones', 'are', 'for', '``', 'airtel', ',', 'colgate', ',', 'palmolive', ',', 'titan', ',', 'asian', 'paints', ',', 'raymonds', ',', 'coca', 'cola', \"''\", '.'], ['hyde', 'park', 'in', 'particular', 'is', 'popular', 'for', 'sports', 'and', 'sometimes', 'hosts', 'open-air', 'concerts', '.'], ['2', '6', '.', '7', '%', 'of', 'all', 'households', 'were', 'made', 'up', 'of', 'individuals', ',', 'and', '1', '3', '.', '6', '%', 'had', 'someone', 'living', 'alone', 'who', 'was', '6', '5', 'years', 'of', 'age', 'or', 'older', '.'], ['the', 'cylinder', ',', 'steam', 'chest', ',', 'cross-head', 'guide', ',', 'and', 'the', 'boxes', 'for', 'the', 'crankshaft', 'bearings', 'were', 'all', 'cast', 'in', 'a', 'single', 'piece', 'to', 'assure', 'mechanical', 'exactness', 'and', 'perfect', 'alignment', 'of', 'piston', 'and', 'crank', '.'], ['west', 'of', 'this', 'line', ',', 'the', 'bedrock', 'is', 'almost', 'exclusively', 'characterised', 'by', 'limestone', ',', 'whilst', 'east', 'of', 'the', 'line', ',', 'stretch', 'forested', 'bunter', 'sandstone', 'hills', ',', 'dissected', 'by', 'deep', 'valleys', '.'], ['grass', 'point', 'state', 'park', 'is', 'a', 'state', 'park', 'located', 'in', 'the', 'town', 'of', 'orleans', 'in', 'jefferson', 'county', ',', 'new', 'york', '.'], ['in', '2', '0', '0', '4', ',', 'india', 'consumed', 'about', 'of', 'natural', 'gas', ',', 'the', 'first', 'year', 'in', 'which', 'the', 'country', 'showed', 'net', 'natural', 'gas', 'imports', '.'], ['images', 'can', 'be', 'created', 'in', 'a', 'computer', 'using', 'the', 'techniques', 'of', 'animated', 'cartoons', 'and', 'model', 'animation', '.'], ['in', 'the', '1', '9', '9', '0', 's', 'wmmi', 'had', 'around', '2', '0', '0', '0', 'employees', '(', '1', '9', '9', '7', ')', 'and', 'produced', 'up', 'to', '9', '0', '0', '0', 'units', 'a', 'year', '.'], ['this', 'would', 'be', 'expressed', 'as', '``', '2', '``', 'in', 'a', 'lens', 'system', '.'], ['careful', 'decision', 'making', 'during', 'drug', 'development', 'is', 'essential', 'to', 'avoid', 'costly', 'failures', '.'], ['the', 'temple', 'is', 'the', 'location', 'of', 'a', 'recumbent', 'buddha', 'sculpture', ',', 'created', 'in', '1', '3', '2', '1', '.'], ['between', '1', '9', '6', '2', 'and', '1', '9', '6', '6', ',', 'he', 'worked', 'as', 'a', 'minister', ',', 'visiting', 'chaplain', ',', 'and', 'school', 'administrator', 'in', 'wankie', '(', 'today', 'hwange', ')', 'and', 'plumtree', '.'], ['lanceolate', 'to', 'reverse', 'ovate', 'in', 'shape', ',', 'glossy', 'green', '.'], ['international', 'business', 'contributes', 'over', '6', '0', '%', 'of', 'bermuda', \"'s\", 'economic', 'output', '.'], ['however', ',', 'the', 'u.s.', 'presence', 'remained', 'insignificant', 'for', 'years', '.'], ['the', 'known', 'elements', 'most', 'susceptible', 'to', 'spontaneous', 'fission', 'are', 'the', 'synthetic', 'high-atomic-number', 'actinides', 'and', 'transactinides', 'with', 'atomic', 'numbers', 'from', '1', '0', '0', 'onwards', '.'], ['halfway', 'through', 'that', 'period', 'his', 'fleet', 'of', 'ships', 'was', 'capable', 'of', 'transporting', 'between', '8', '0', '0', 'and', '1', '5', '0', '0', 'tons', 'of', 'freight', '.'], ['comilla', 'is', 'on', 'the', 'strategically', 'important', 'dhaka-chittagong', 'highway', 'and', 'a', 'crucial', 'road', 'link', '.'], ['during', 'the', '1', '9', '7', '0', 's', 'and', '1', '9', '8', '0', 's', 'many', 'woodland', 'residents', 'began', 'to', 'restore', 'historic', 'residences', 'south', 'of', 'main', 'street', '.'], ['there', 'may', 'be', 'restrictions', 'on', 'cash', 'withdrawals', ',', 'even', 'at', 'a', 'branch', '.'], ['wulling', 'established', 'a', 'nationally', 'recognized', 'medicinal', 'plant', 'garden', 'at', 'the', 'university', '.'], ['on', 'september', '1', '7', ',', '1', '9', '8', '0', ',', 'thompson', 'was', 'nominated', 'by', 'president', 'jimmy', 'carter', 'to', 'a', 'seat', 'on', 'the', 'united', 'states', 'district', 'court', 'for', 'the', 'middle', 'district', 'of', 'alabama', 'vacated', 'by', 'judge', 'frank', 'minis', 'johnson', '.'], ['with', 'his', 'wife', '(', 'zuzana', 'zachar', ')', ',', 'he', 'demonstrated', 'that', 'transposon', 'insertion', 'mutations', 'were', 'responsible', 'for', 'most', 'of', 'the', 'alleles', 'used', 'in', 'the', 'development', 'of', 'classical', 'genetics', '(', 'zachar', 'and', 'bingham', ',', '1', '9', '8', '2', ')', '.'], ['han', 'guang', 'sent', 'his', 'subordinate', 'zang', 'tu', 'to', 'help', 'rebel', 'leader', 'xiang', 'yu', ',', 'who', 'succeeded', 'in', 'capturing', 'the', 'qin', 'capital', 'at', 'xianyang', 'in', '2', '0', '7', 'bc', '.'], ['the', 'çanakkale', '1', '9', '1', '5', 'bridge', 'of', 'the', 'dardanelles', ',', 'currently', 'under', 'construction', 'in', 'turkey', ',', 'is', 'expected', 'to', 'surpass', 'it', 'with', 'a', 'span', 'of', '.'], ['his', 'style', 'was', 'greatly', 'influenced', 'by', 'the', 'music', 'he', 'played', ',', 'and', 'showed', 'similarities', 'to', 'musical', 'symbols', 'and', 'notes', 'as', 'well', '.'], ['technical', 'support', 'is', 'provided', 'by', 'the', 'east', 'asian', 'observatory', ',', 'the', 'successor', 'organization', 'operating', 'the', 'james', 'clerk', 'maxwell', 'telescope', '.'], ['the', 'expansion', 'of', 'the', 'lime', 'works', 'commenced', 'in', '1', '9', '0', '6', 'following', 'the', 'granting', 'of', 'the', 'lease', 'to', 'pepper', 'and', 'sons', 'from', 'amberley', '.'], ['on', '1', 'november', '2', '0', '1', '6', ',', 'the', 'university', 'was', 'merged', 'with', 'national', 'tsing', 'hua', 'university', 'and', 'become', 'the', 'nan', 'da', 'campus', 'of', 'it', '.'], ['for', 'every', '1', '0', '0', 'females', 'age', '1', '8', 'and', 'over', ',', 'there', 'were', '1', '1', '9', '.', '0', 'males', '.'], ['the', 'launch', 'of', 'a', 'new', 'official', 'website', 'on', '2', '5', 'april', '2', '0', '1', '6', 'was', 'followed', 'on', '2', '6', 'april', '2', '0', '1', '6', 'with', 'the', 'announcement', 'of', 'a', 'series', 'of', 'reunion', 'shows', 'starting', 'with', 'bloodstock', 'open', 'air', '2', '0', '1', '6', 'and', 'a', 'full', 'uk', 'tour', '.'], ['the', 'violent', 'homestead', 'strike', 'of', '1', '8', '9', '2', 'also', 'served', 'as', 'a', 'catalyst', 'for', 'oppositional', 'politics', 'in', 'the', 'united', 'states', '.'], ['the', 'scarlet', 'brand', 'is', 'a', '1', '9', '3', '2', 'american', 'western', 'film', 'directed', 'by', 'j.p.', 'mcgowan', 'and', 'starring', 'bob', 'custer', ',', 'betty', 'mack', 'and', 'robert', 'd.', 'walker', '.'], ['the', 'genetics', 'of', '``', 'rubus', \"''\", 'is', 'extremely', 'complex', ',', 'so', 'that', 'it', 'is', 'difficult', 'to', 'decide', 'on', 'which', 'groups', 'should', 'be', 'recognized', 'as', 'species', '.'], ['meet', 'was', 'born', 'and', 'brought', 'up', 'in', 'ahmedabad', ',', 'gujarat', 'in', 'a', 'family', 'of', 'professors', '.'], ['it', 'launched', 'at', '2', '3', ':', '4', '4', 'utc', ',', 'on', '1', '4', 'august', '2', '0', '0', '7', 'aboard', 'an', 'ariane', '5', 'eca', 'from', 'centre', 'spatial', 'guyanais', 'ela-', '3', 'launch', 'pad', '.'], ['cristiani', 'has', 'edited', 'films', 'over', 'the', 'last', 'decade', 'with', 'several', 'different', 'directors', ',', 'and', 'she', 'herself', 'directed', 'and', 'edited', 'the', '1', '9', '9', '9', 'film', ',', '``', 'ladies', 'room', \"''\", '.'], ['near', 'the', 'end', 'of', '1', '8', '6', '5', ',', 'he', 'created', 'a', 'rotary', 'steam', 'engine', ':', 'the', 'westinghouse', 'farm', 'engine', '.'], ['austria-hungary', \"'s\", 'u-boat', 'fleet', 'was', 'largely', 'obsolete', 'at', 'the', 'outbreak', 'of', 'world', 'war', 'i', ',', 'and', 'over', 'the', 'first', 'two', 'years', 'of', 'the', 'war', 'the', 'austro-hungarian', 'navy', 'focused', 'its', 'efforts', 'on', 'building', 'a', 'u-boat', 'fleet', 'for', 'local', 'defense', 'within', 'the', 'adriatic', '.'], ['northup', 'wrote', 'that', 'on', 'one', 'occasion', 'she', 'was', 'scourged', 'to', 'the', 'point', 'of', 'near', 'death', 'because', 'she', 'had', 'gone', 'to', 'a', 'neighboring', 'plantation', 'for', 'a', 'bar', 'of', 'soap', '.'], ['rather', 'than', 'featuring', 'one', 'continuous', 'narrative', ',', 'the', 'film', 'expresses', 'the', 'influence', 'of', 'fandom', 'and', 'innocence', 'through', 'a', 'collection', 'of', 'short', 'films', 'about', 'michael', 'jackson', ',', 'several', 'of', 'which', 'are', 'long-form', 'music', 'videos', 'from', 'jackson', \"'s\", '``', 'bad', \"''\", 'album', '.'], ['the', 'first', 'miss', 'caribbean', 'uk', 'grand', 'finalé', 'was', 'held', 'on', '3', '0', 'november', '2', '0', '1', '4', 'at', 'the', 'tabernacle', ',', 'notting', 'hill', '.'], ['(', 'cubic', 'boron', 'nitride', 'is', 'very', 'hard', 'and', 'used', 'as', 'an', 'abrasive', 'and', 'cutting', 'tool', 'component', '.', ')'], ['management', 'of', 'the', 'airway', 'in', 'the', 'emergency', 'department', 'is', 'optimal', 'given', 'the', 'presence', 'of', 'trained', 'personnel', 'from', 'multiple', 'specialties', ',', 'as', 'well', 'as', 'access', 'to', '``', 'difficult', 'airway', 'equipment', \"''\", '(', 'videolaryngoscopy', ',', 'eschmann', 'tracheal', 'tube', 'introducer', ',', 'fiberoptic', 'bronchoscopy', ',', 'surgical', 'methods', ',', 'etc', '.', ')', '.'], ['he', 'had', 'been', 'a', 'priest', 'for', '5', '3', 'years', 'and', 'a', 'bishop', 'for', '3', '0', 'years', '.'], ['signs', 'of', 'calcium', 'carbonate', 'have', 'been', 'detected', 'at', 'more', 'than', 'one', 'location', '(', 'notably', 'at', 'gusev', 'and', 'huygens', 'craters', ')', '.'], ['in', '2', '0', '1', '4', ',', 'crowther', 'undertook', 'a', 'poet-in-residence', 'position', 'with', 'the', 'royal', 'mint', 'museum', 'and', 'she', 'has', 'also', 'reviewed', 'books', 'and', 'written', 'essays', '.'], ['pendor', 'is', 'a', 'fictional', 'ringworld', 'from', 'the', 'pendorwright', 'stories', 'written', 'by', 'elf', 'sternberg', '.'], ['marge', 'expresses', 'the', 'desire', 'to', 'leave', ',', 'but', 'homer', 'asks', 'her', 'to', 'sleep', 'on', 'it', ',', 'due', 'to', 'the', 'cost', 'of', 'buying', 'the', 'house', '.'], ['the', 'untimely', 'death', 'of', 'shutter', 'sent', 'the', 'band', 'into', 'a', 'tailspin', 'only', 'partially', 'rectified', 'by', 'subsequent', '``', 'live', \"''\", 'fanclub', 'release', 'and', '1', '9', '9', '0', \"'s\", '``', 'bingo', 'durango', \"''\", ',', 'a', 'collection', 'of', 'trenchant', 'power', 'pop', 'that', 'showcased', 'a', 'debt', 'to', 'the', 'beatles', 'and', 'xtc', '.'], ['it', 'originated', 'in', 'the', 'jodhpur', 'state', ',', 'and', 'was', 'popularized', 'during', 'the', 'british', 'raj', 'in', 'india', '.'], ['on', 'september', '9', ',', '2', '0', '1', '8', ',', 'les', 'moonves', 'exited', 'cbs', 'following', 'multiple', 'accusations', 'of', 'sexual', 'assault', '.'], ['for', 'example', ',', 'withdrawals', 'of', 'cash', 'above', 'a', 'threshold', 'figure', 'may', 'require', 'notice', '.'], ['rosalynn', 'agreed', 'to', 'marry', 'jimmy', 'in', 'february', '1', '9', '4', '6', 'when', 'she', 'went', 'to', 'annapolis', 'with', 'his', 'parents', '.'], ['the', 'final', 'year', 'completes', 'the', 'clinical', 'years', 'by', 'covering', 'general', 'medicine', ',', 'general', 'practice', ',', 'general', 'surgery', ',', 'critical', 'care', ',', 'anaesthesia', ',', 'emergency', 'medicine', ',', 'medicine', 'for', 'the', 'elderly', '.'], ['it', 'formerly', 'ran', 'from', 'long', 'beach', 'west', 'to', 'san', 'pedro', 'and', 'continued', 'north', 'on', 'figueroa', 'street', ',', 'briefly', 'concurrent', 'with', 'us', '6', '6', 'in', 'los', 'angeles', 'before', 'turning', 'northwest', 'and', 'co-signing', 'with', 'us', '9', '9', 'on', 'san', 'fernando', 'road', '.'], ['the', 'center', \"'s\", 'associated', 'faculty', 'and', 'students', 'share', 'a', 'commitment', 'to', 'scholarship', 'that', 'is', 'quantitative', ',', 'data-driven', ',', 'interdisciplinary', ',', 'and', 'policy-oriented', ',', 'and', 'that', 'addresses', 'questions', 'that', 'are', 'cross-nationally', 'comparative', 'and/or', 'global', 'in', 'scope', '.'], ['the', 'song', 'became', 'a', 'huge', 'success', 'in', 'the', 'united', 'states', 'reaching', 'number', 'one', 'on', 'both', 'the', '``', 'billboard', \"''\", 'top', 'latin', 'songs', 'chart', 'and', '``', 'billboard', \"''\", 'tropical', 'songs', 'chart', '.'], ['russia', \"'s\", 'debt', 'to', 'the', 'kbp', 'reached', '2', '0', 'billion', 'rubles', 'in', '1', '9', '9', '4', '.'], ['but', 'the', 'generator', 'starts', 'to', 'run', 'out', 'of', 'gas', ',', 'causing', 'the', 'music', 'to', 'turn', 'down', '.'], ['kp', 'did', 'his', 'bachelor', \"'s\", 'degree', 'in', 'humanities', 'at', 'texas', 'international', 'college', '.'], ['the', 'other', 'prisoners', 'beat', 'him', 'up', 'and', 'leave', 'him', 'in', 'the', 'courtyard', 'to', 'sulk', 'about', 'his', 'predicament', '.'], ['the', 'national', 'organisation', 'for', 'scouts', 'and', 'guides', '(', ')', 'is', 'the', 'national', 'scouting', 'and', 'guiding', 'organization', 'of', 'oman', '.'], ['active', 'galaxies', 'have', 'active', 'galactic', 'nuclei', '(', 'agn', ')', 'and', 'include', 'liner', ',', 'seyfert', ',', 'radio', 'galaxy', ',', 'quasar', 'and', 'blazar', 'types', '.'], ['rancho', 'san', 'diego', 'is', 'served', 'by', 'the', 'cajon', 'valley', 'union', 'school', 'district', 'and', 'the', 'grossmont', 'union', 'high', 'school', 'district', '.'], ['1', '2', '6', '2', '(', '1', '7', 'december', '1', '9', '8', '8', ')', '.'], ['currently', ',', 'the', 'largest', 'museums', 'of', 'the', 'west', 'dedicate', 'entire', 'halls', 'to', 'khmer', 'sculpture', ',', 'not', 'to', 'mention', 'the', 'enormous', 'exhibition', 'which', 'took', 'place', 'first', 'at', 'the', 'galeries', 'nationales', 'du', 'grand', 'palais', 'in', 'paris', 'and', 'later', 'at', 'the', 'national', 'gallery', 'of', 'art', 'in', 'washington', 'in', '1', '9', '9', '7', '.'], ['it', 'is', 'mentioned', 'in', 'the', '``', 'periplus', 'of', 'the', 'erythraean', 'sea', \"''\", ',', 'a', 'greek', 'travel', 'document', 'dating', 'from', 'the', 'first', 'century', 'ad', ',', 'as', 'one', 'of', 'a', 'series', 'of', 'commercial', 'ports', 'on', 'the', 'somali', 'littoral', '.'], ['one', 'son', ',', 'second', 'lieutenant', 'lionel', 'philip', 'russell', ',', 'of', 'the', 'second', 'battalion', ',', 'prince', 'of', 'wale', \"'s\", 'own', '(', 'west', 'yorkshire', 'regiment', ')', 'was', 'attached', 'to', 'the', '1', '4', 'th', 'mounted', 'infantry', 'in', 'the', 'second', 'boer', 'war', '.'], ['by', 'the', 'end', 'of', 'june', ',', 'bandits', 'in', 'dongning', '(', '东宁', ')', 'region', 'headed', 'by', 'wang', 'laolin', '(', '王老林', ')', 'were', 'also', 'annihilated', '.'], ['the', 'linear', 'transformation', 'formula_', '1', 'transforms', 'the', 'fictitious', 'pseudo', 'wavefunction', 'formula_', '2', 'to', 'the', 'all-electron', 'wavefunction', 'formula_', '3', ':'], ['the', 'production', 'of', 'structural', 'colours', 'concerns', 'a', 'large', 'array', 'of', 'organisms', '.'], ['he', 'was', 'beaten', 'by', 'soldiers', 'for', 'daring', 'to', 'go', 'through', 'military', 'cordon', 'to', 'capture', 'the', 'visual', 'horror', 'and', 'drama', 'of', 'the', 'tragedy', '.'], ['a', 'number', 'of', 'rail', 'links', ',', 'such', 'as', 'between', 'arusha', 'and', 'moshi', ',', 'were', 'shut', 'down', ',', 'and', 'passenger', 'services', 'abandoned', ',', 'including', 'on', 'the', 'usambara', 'railway', '.'], ['a', 'cheaper', 'trim', 'was', 'also', 'available', 'called', 'the', '``', 'dongfeng', 'fengxing', 'f', '6', '0', '0', '``', ',', 'featuring', 'restyled', 'front', 'and', 'rear', 'drg', 'designs', '.'], ['after', 'completing', 'primary', 'education', ',', 'he', 'briefly', 'apprenticed', 'as', 'a', 'tailor', 'before', 'he', 'found', 'work', 'as', 'a', 'clerk', 'to', 'christopher', 'sapara', 'williams', '.'], ['england', 'were', 'well', 'placed', 'when', 'australia', 'ended', 'at', 'stumps', 'on', '2', '5', '8', '/', '7', 'with', 'tallon', 'on', '2', '5', 'and', 'lindwall', 'on', '3', '.'], ['throughout', 'its', 'history', ',', 'volunteers', 'have', 'played', 'an', 'important', 'role', 'in', 'operating', 'the', 'station', ',', 'especially', 'in', 'producing', 'its', 'varied', 'music', 'programming', '.'], ['on', 'september', '1', '0', ',', 'mazarin', 'encouraged', 'the', 'parisians', 'to', 'take', 'up', 'arms', 'against', 'condé', '.'], ['she', 'took', 'the', 'moment', 'and', 'jumped', 'out', 'from', 'an', 'open', 'window', '.'], ['a', 'deeper', 'level', 'is', 'a', 'live', 'worship', 'album', 'by', 'israel', '&', 'amp', ';', 'new', 'breed', '.'], ['her', 'neck', 'vertebrae', 'began', 'to', 'jut', 'out', 'from', 'her', 'neck', 'at', 'this', 'age', '.'], ['on', 'the', 'way', 'there', ',', 'ivan', 'experiences', 'a', 'set', 'of', 'visions', ',', 'which', 'are', 'actually', 'data', 'implanted', 'in', 'his', 'brain', 'during', 'his', 'service', 'in', 'the', 'confederate', 'special', 'forces', 'and', 'activated', 'by', 'certain', 'visual', 'cues', '.'], ['this', 'model', 'assumes', 'that', 'the', 'market', 'price', 'per', 'share', 'is', 'equal', 'to', 'the', 'discounted', 'stream', 'of', 'all', 'future', 'dividends', ',', 'which', 'is', 'assumed', 'to', 'be', 'perpetual', '.'], ['two', 'years', 'later', ',', 'the', 'lift', 'hill', 'was', 'rehabilitated', 'and', 'straightened', ',', 'removing', 'the', 'well', 'known', '``', 'kink', \"''\", 'that', 'was', 'in', 'the', 'lift', 'hill', '.'], ['however', ',', 'while', 'we', 'known', 'the', 'original', 'percent', 'equity', 'interest', 'that', 'perfect', 'world', 'obtained', ',', 'we', 'do', 'not', 'know', 'what', 'unknown', 'worlds', 'was', 'valued', 'at', 'at', 'the', 'time', ',', 'thus', 'we', 'do', 'not', 'know', 'how', 'much', 'the', 'company', 'was', 'acquired', 'for', '.'], ['ourimbah', 'is', 'a', 'small', 'township', 'in', 'the', 'central', 'coast', 'region', 'of', 'new', 'south', 'wales', ',', 'australia', ',', 'located', 'about', 'north', 'of', 'the', 'sydney', 'cbd', '.'], ['the', 'cisticolidae', 'are', 'warblers', 'found', 'mainly', 'in', 'warmer', 'southern', 'regions', 'of', 'the', 'old', 'world', '.'], ['despite', 'the', 'change', 'in', 'terminology', ',', 'however', ',', 'the', 'demographic', 'definition', 'of', 'a', 'population', 'centre', 'remains', 'unchanged', 'from', 'that', 'of', 'an', 'urban', 'area', ':', 'a', 'population', 'of', 'at', 'least', '1', ',', '0', '0', '0', 'people', 'where', 'the', 'density', 'is', 'no', 'fewer', 'than', '4', '0', '0', 'persons', 'per', 'km', '2', '.'], ['the', 'escorts', 'claimed', 'seven', 'german', 'aircraft', 'shot', 'down', 'out', 'of', 'control', 'for', 'the', 'loss', 'of', 'two', 'aircraft', ';', 'as', 'the', 'camels', 'flew', 'home', ',', 'they', 'attacked', 'targets', 'of', 'opportunity', '.'], ['the', 'syedna', 'presided', 'over', 'the', 'majlis', 'on', '1', 'march', '2', '0', '1', '3', ',', 'and', 'mufaddal', 'saifuddin', 'conducted', 'the', 'sermon', 'on', '2', 'march', '2', '0', '1', '3', '.'], ['after', 'graduating', 'from', 'university', 'and', 'worked', 'as', 'a', 'salary', 'worker', 'at', 'a', 'sales', 'promotion', 'company', 'hori', 'entered', 'the', 'entertainment', 'industry', '.'], ['originally', 'beginning', 'at', 'san', 'francisco', 'city', 'hall', 'and', 'ending', 'on', 'treasure', 'island', ',', 'the', 'route', 'has', 'been', 'modified', 'several', 'times', 'since', '.'], ['granted', 'sweden', 'the', 'control', 'of', 'livonia', ',', 'though', 'prussia', ',', 'latgale', 'and', 'dyneburg', 'remained', 'under', 'polish', 'governance', '.'], ['he', 'has', 'been', 'the', 'brand', 'ambassador', 'for', 'sunsilk', ',', 'a', 'unilever', 'owned', 'hair', 'care', 'brand', 'from', '2', '0', '0', '0', 'to', '2', '0', '0', '9', 'and', 'later', 'went', 'on', 'to', 'promote', 'panasonic', 'styling', 'products', '.'], ['the', 'first', 'all', 'four', 'year', 'graduating', 'class', 'graduated', 'in', '2', '0', '1', '2', '.'], ['ferdinand', 'jühlke', 'attended', 'the', 'in', 'his', 'home', 'town', 'where', 'he', 'received', 'a', 'basic', 'education', '.'], ['the', 'subspecies', '``', 'zizina', 'labradus', 'labradus', \"''\", 'is', 'found', 'over', 'most', 'of', 'continental', 'australia', ',', 'as', 'well', 'as', 'on', 'lord', 'howe', 'island', ',', 'norfolk', 'island', ',', 'and', 'christmas', 'island', ',', 'while', 'the', 'subspecies', '``', 'zizina', 'labradus', 'labdalon', '``', 'is', 'restricted', 'mainly', 'to', 'cape', 'york', 'peninsula', '.'], ['however', ',', 'the', 'street', 'on', 'which', 'the', 'main', 'buildings', 'of', 'the', 'ulm', 'university', 'are', 'located', ',', 'and', 'thus', 'the', 'physical', 'address', 'of', 'the', 'university', ',', 'was', 'named', '``', 'albert-einstein-allee', \"''\", 'in', 'honor', 'of', 'einstein', '.'], ['on', 'the', 'trip', ',', '4', '2', 'of', 'the', '8', '5', '9', 'native', 'americans', 'died', ',', 'most', 'of', 'them', 'children', 'and', 'the', 'elderly', ',', 'from', 'typhoid', 'fever', 'and', 'the', 'stress', 'of', 'the', 'passage', '.'], ['however', ',', 'according', 'to', 'ultimate', 'guitar', 'archive', ',', 'joe', 'said', 'he', 'was', 'fired', '.'], ['the', 'european', 'union', 'in', 'its', 'biofuels', 'directive', '(', 'updated', '2', '0', '0', '6', ')', 'has', 'set', 'the', 'goal', 'that', 'for', '2', '0', '1', '0', 'that', 'each', 'member', 'state', 'should', 'achieve', 'at', 'least', '5', '.', '7', '5', '%', 'biofuel', 'usage', 'of', 'all', 'used', 'traffic', 'fuel', '.'], ['conservative', 'friends', 'consider', 'jesus', 'to', 'be', 'that', 'seed', 'or', 'guide', '.'], ['local', 'public', 'debt', 'was', 'used', 'to', 'finance', 'the', 'building', '.'], ['the', 'organization', \"'s\", 'archive', 'is', 'housed', 'at', 'the', 'arthur', 'and', 'elizabeth', 'schlesinger', 'library', 'on', 'the', 'history', 'of', 'women', 'in', 'america', 'at', 'the', 'radcliffe', 'institute', 'for', 'advanced', 'study', 'at', 'harvard', '.'], ['when', 'a', 'racist', 'patient', 'made', 'a', 'comment', 'about', 'simone', \"'s\", 'show', 'of', 'affection', 'toward', 'tom', ',', 'he', 'and', 'tom', 'got', 'into', 'a', 'scuffle', '.'], ['as', 'the', 'war', 'went', 'on', ',', 'some', 'indians', 'eventually', 'signed', 'peace', 'treaties', 'and', 'settled', 'among', 'the', '``', 'christians', \"''\", 'behind', 'the', 'lines', 'of', 'forts', '.'], ['a', 'cylindrical', 'quasiomnidirectional', 'antenna', 'was', 'seated', 'on', 'top', 'of', 'the', 'conical', 'tower', '.'], ['on', '1', '1', 'march', '2', '0', '0', '9', ',', 'after', 'huge', 'losses', 'in', '2', '0', '0', '7', 'and', '2', '0', '0', '8', ',', 'and', 'sales', 'decline', 'of', 'over', '6', '0', '%', 'in', 'january', '2', '0', '0', '9', ',', 'kw', 'filed', 'insolvency', 'again', '.'], ['fox', 'sports', 'won', 'its', 'eighth', 'sports', 'emmy', 'award', 'for', 'outstanding', 'live', 'sports', 'special', 'for', 'its', 'coverage', 'of', 'the', 'game', '.'], ['sit', 'had', 'a', 'facility', 'clearance', 'and', 'was', 'eligible', 'to', 'conduct', 'classified', 'instruction', 'and', 'research', '.'], ['first', 'steps', 'were', 'taken', 'into', 'politics', 'in', 'the', 'fall', 'of', '1', '8', '9', '0', ',', 'with', 'a', 'nationalist', 'state', 'ticket', 'put', 'forward', 'in', 'the', 'state', 'of', 'rhode', 'island', 'and', 'at', 'least', 'one', 'candidate', 'running', 'for', 'office', 'under', 'the', 'nationalist', 'banner', 'in', 'california', '.'], ['overall', 'winner', 'was', 'an', 'fia', 'group', '5', 'porsche', '9', '3', '5', '.'], ['for', 'most', 'of', 'the', 'year', 'these', 'workers', 'may', 'be', 'contributing', 'significant', 'tax', 'revenue', 'to', 'alberta', '(', 'e.g', '.'], ['according', 'to', 'officials', ',', 'thompson', 'phoned', 'in', 'and', 'emailed', 'many', 'of', 'the', 'threats', 'under', 'his', 'ex-girlfriend', \"'s\", 'name', 'in', 'an', 'effort', 'to', 'frame', 'her', '.'], ['thachil', 'brahmins', 'were', 'chief', 'priests', 'in', 'the', 'thirumoozhikkulam', 'temple', '.'], ['during', 'world', 'war', 'ii', ',', 'jews', 'of', 'the', 'town', 'were', 'murdered', 'in', 'a', 'mass', 'execution', 'perpetrated', 'by', 'an', 'einsatzgruppe', '.'], ['the', 'first', 'science', 'fiction', 'work', 'by', 'a', 'macedonian', 'author', 'was', 'the', '1', '9', '5', '9', 'children', \"'s\", 'novel', '``', 'големата', 'авантура', \"''\", '(', '``', 'the', 'great', 'adventure', \"''\", ')', 'by', 'lazо', 'naumovski', '.'], ['this', 'was', 'the', 'first', 'time', 'that', 'rosalynn', 'had', 'ever', 'allowed', 'a', 'boy', 'to', 'do', 'this', 'on', 'the', 'first', 'date', '.'], ['both', 'the', '5', '0', 'th', 'and', '7', '7', 'th', 'parachute', 'brigades', 'saw', 'extensive', 'action', 'in', 'the', 'indo-pakistani', 'war', 'of', '1', '9', '4', '7', '.'], ['``', 'caro', \"'s\", 'work', 'was', 'like', 'a', 'template', ';', 'i', 'saw', 'it', 'as', 'almost', 'platonic', '.'], ['he', 'then', 'lived', 'in', 'mexico', 'for', 'six', 'years', 'where', 'he', 'presented', 'cultural', 'advice', 'to', 'the', 'brazilian', 'embassy', ',', 'published', 'the', 'book', '``', 'la', 'pequeníssima', 'história', 'de', 'la', 'musiquíssima', 'brasileña', \"''\", ',', 'and', 'hosted', 'a', 'series', 'of', 'conferences', 'for', 'mexican', 'universities', '.'], ['however', ',', 'the', 'nobility', 'and', 'aristocracy', 'in', 'india', 'largely', 'continued', 'to', 'encourage', 'the', 'development', 'of', 'sciences', 'and', 'technical', 'education', ',', 'both', 'traditional', 'and', 'western', '.'], [',', 'the', 'following', 'cultivars', 'have', 'gained', 'the', 'award', 'of', 'garden', 'merit', '(', 'agm', ')', 'from', 'the', 'royal', 'horticultural', 'society', ':'], ['taran', 'adarsh', 'of', 'bollywood', 'hungama', 'gave', 'the', 'film', 'a', 'four-out-of-five', 'rating', 'and', 'called', 'it', 'a', 'madcap', 'comedy', 'which', 'dared', 'to', '``', 'push', 'the', 'envelope', 'in', 'its', 'own', 'way', \"''\", ':', '``', \"''\", 'dostana', \"''\", 'is', 'a', 'winner', 'all', 'the', 'way', '.'], ['specific', 'techniques', 'to', 'produce', 'large', 'single', 'crystals', '(', 'aka', 'boules', ')', 'include', 'the', 'czochralski', 'process', '(', 'cz', ')', ',', 'floating', 'zone', '(', 'or', 'zone', 'movement', ')', ',', 'and', 'the', 'bridgman', 'technique', '.'], ['on', '7', 'october', '2', '0', '2', '0', ',', 'kotey', 'and', 'el', 'shafee', 'elsheikh', 'were', 'brought', 'to', 'the', 'united', 'states', 'to', 'face', 'charges', 'of', 'beheading', 'western', 'hostages', '.'], ['it', 'was', 'kingsley', \"'s\", 'last', 'historical', 'novel', ',', 'and', 'was', 'instrumental', 'in', 'elevating', 'hereward', 'into', 'an', 'english', 'folk-hero', '.'], ['the', 'unit', 'runs', 'a', 'comprehensive', 'program', 'of', 'remand', 'which', 'has', 'a', 'full', 'daily', 'schedule', 'providing', 'for', 'fresh', 'air', ',', 'exercise', ',', 'medical', 'care', ',', 'occupational', 'therapy', ',', 'spiritual', 'guidance', ',', 'conditions', 'suitable', 'for', 'the', 'preparation', 'of', 'defence', ',', 'it', 'facilities', 'and', 'training', ',', 'visiting', 'and', 'recreational', 'and', 'sport', 'activities', '.'], ['in', 'the', 'fall', 'of', '2', '0', '0', '6', ',', 'this', 'was', 'expanded', 'to', 'grades', 'pk-', '7', '.'], ['on', '1', '9', 'april', '2', '0', '1', '8', ',', 'fireworks', 'were', 'thrown', 'at', 'the', 'u.s.', 'embassy', 'in', 'stockholm', 'during', 'a', 'protest', 'against', 'the', 'bombing', 'of', 'syria', '.'], ['flint', 'was', 'also', 'appointed', 'to', 'the', 'new', 'position', 'of', 'minister', 'for', 'yorkshire', 'and', 'the', 'humber', '.'], ['it', 'lies', 'approximately', 'north-west', 'of', 'mielec', 'and', 'north-west', 'of', 'the', 'regional', 'capital', 'rzeszów', '.'], ['after', 'the', 'october', 'attacks', ',', 'the', 'egyptian', 'military', 'began', 'using', 'armed', 'drones', 'for', 'the', 'first', 'time', 'since', 'the', 'sinai', 'insurgency', 'began', '.'], ['the', 'welsh', 'district', 'consisted', 'the', 'whole', 'of', 'wales', 'and', 'the', 'county', 'of', 'herefordshire', '.'], ['nevertheless', ',', 'its', 'continued', 'use', 'has', 'produced', 'a', 'degree', 'of', 'familiarization', 'with', 'a', 'certain', 'abstract', 'phonetics', 'throughout', 'spanish', 'america', '.'], ['the', 'launch', 'took', 'place', 'at', '0', '0', ':', '4', '5', ':', '2', '8', 'utc', 'on', '1', '6', 'september', '1', '9', '8', '7', ',', 'from', 'ela-', '1', 'at', 'centre', 'spatial', 'guyanais', ',', 'at', 'kourou', ',', 'french', 'guiana', '.'], ['rosenberg', \"'s\", 'goanna', '(', '``', 'varanus', 'rosenbergi', \"''\", ')', ',', 'eastern', 'pygmy', 'possum', '(', '``', 'cercartetus', 'nanus', \"''\", ')', ',', 'and', 'the', 'squirrel', 'glider', '(', '``', 'petaurus', 'norfolcensis', \"''\", ')', 'are', 'species', 'listed', 'as', 'vulnerable', 'which', 'inhabit', 'the', 'park', '.'], ['like', 'the', 'punjabis', ',', 'the', 'last', 'battalion', 'of', 'selby', \"'s\", 'brigade', ',', 'the', '2', '/', '1', 'st', 'gurkhas', 'under', 'lt.', 'col.', 'jack', 'oswald', 'fulton', ',', 'were', 'on', 'the', 'march', 'either', 'side', 'of', 'the', 'road', 'as', 'the', 'japanese', 'tanks', 'reached', 'them', '.'], ['despite', 'this', ',', 'the', 'government', 'decided', 'that', 'the', 'per-seat', 'cost', 'was', 'still', 'too', 'high', 'for', 'mass', 'deployment', 'and', 'to', 'wait', 'for', 'the', 'next', 'generation', 'systems', 'to', 'achieve', 'cost', 'reductions', '.'], ['the', 'resolution', 'was', 'immediately', 'qualified', ',', 'however', ',', 'by', 'the', '``', 'blackburn', 'amendment', ',', \"''\", 'which', 'said', 'that', '``', 'socialisation', \"''\", 'was', 'desirable', 'only', 'when', 'was', 'necessary', 'to', '``', 'eliminate', 'exploitation', 'and', 'other', 'anti-social', 'features', '.', \"''\"], ['a', 'perfect', 'crime', 'should', 'be', 'distinguished', 'from', 'one', 'that', 'has', 'merely', 'not', 'been', 'solved', 'yet', 'or', 'where', 'everyday', 'chance', 'or', 'procedural', 'matters', 'frustrate', 'a', 'conviction', '.'], ['the', 'valva', 'and', 'harpe', '(', 'or', '``', 'clasper', \"''\", ')', 'of', 'the', 'male', 'genitalia', 'are', 'highly', 'complex', 'in', 'almost', 'all', 'species', 'and', 'often', 'bear', 'various', 'extensions', '.'], ['it', 'has', 'been', 'listed', 'on', 'the', 'national', 'register', 'of', 'historic', 'places', 'since', 'october', '3', '1', ',', '1', '9', '8', '0', '.'], ['``', 'the', 'adventures', 'of', 'augie', 'march', \"''\", 'won', 'the', '1', '9', '5', '4', 'u.s.', 'national', 'book', 'award', 'for', 'fiction', '.'], ['there', 'is', 'also', 'a', 'departure', 'every', 'hour', 'the', 'other', 'way', 'to', 'the', 'third', 'biggest', 'city', 'in', 'denmark', ',', 'odense', ',', 'where', 'there', 'are', 'departures', 'for', 'the', 'capital', ',', 'copenhagen', '.'], ['an', 'illegal', 'modification', 'to', 'his', 'hummer', \"'s\", 'engine', 'then', 'saw', 'gordon', 'disqualified', ',', 'though', 'he', 'continued', 'to', 'compete', 'under', 'appeal', 'for', 'the', 'remainder', 'of', 'the', 'rally', '.'], ['economic', 'growth', 'continued', 'during', 'benigno', 'aquino', 'iii', \"'s\", 'administration', ',', 'which', 'pushed', 'for', 'good', 'governance', 'and', 'transparency', '.'], ['after', 'a', 'ten-month', \"'car-casting\", \"'\", ',', 'elia', 'created', 'the', 'world', \"'s\", 'first', 'car', 'orchestra', '.'], ['the', 'mid', '1', '9', 'th-century', 'muslim', 'historians', ',', 'such', 'as', 'shahamat', 'ali', 'who', 'experienced', 'the', 'sikh', 'empire', 'first', 'hand', ',', 'presented', 'a', 'different', 'view', 'on', 'ranjit', 'singh', \"'s\", 'empire', 'and', 'governance', '.'], ['in', 'february', '2', '0', '0', '3', ',', 'dice', 'inc.', 'filed', 'for', 'bankruptcy', 'under', 'chapter', '1', '1', 'to', 'recapitalize', ',', 'the', 'reason', 'behind', 'was', 'that', '``', 'earthweb', 'had', 'issued', 'a', 'large', 'amount', 'of', 'debt', 'in', '2', '0', '0', '0', 'that', 'resulted', 'in', 'an', 'unstable', 'cororate', 'structure', '.', \"''\"], ['when', 'engaged', 'in', 'zazen', ',', 'kōans', 'are', 'frequently', 'the', 'object', 'of', 'meditation', ',', 'while', 'shikantaza', '(', '``', 'just', 'sitting', \"''\", ')', 'is', 'less', 'emphasized', ',', 'but', 'still', 'used', '.'], ['cicala', 'did', 'engineering', 'work', 'for', 'lennon', 'and', 'ono', 'on', 'various', 'albums', ',', 'including', '``', 'imagine', \"''\", ',', '``', 'mind', 'games', \"''\", 'and', '``', 'double', 'fantasy', \"''\", '.'], ['main', 'products', 'are', 'vegetables', 'such', 'as', 'leek', ',', 'cabbage', 'and', 'tomato', '.'], ['the', 'subsequent', 'score', 'pages', 'are', 'only', 'incompletely', 'instrumented', ',', 'although', 'the', 'strings', 'are', 'written', 'down', 'in', 'detail', ',', 'but', 'the', 'winds', 'are', 'only', 'incomplete', 'or', 'only', 'hinted', 'at', '.'], ['a', 'sequel', ',', 'and', 'the', 'third', 'installment', 'in', 'the', 'series', ',', 'was', 'announced', 'after', 'the', 'release', 'of', '``', 'double', 'dhamaal', \"''\", ',', 'though', 'the', 'film', 'was', 'slammed', 'by', 'critics', ',', 'and', 'was', 'a', 'commercial', 'success', '.'], ['a', 'low', 'resolution', 'structure', 'from', '2', 'd', 'crystals', 'of', 'the', 'pm', '-atpase', 'from', '``', 'neurospora', 'crassa', \"''\", 'is', ',', 'as', 'of', 'medio', '2', '0', '1', '1', ',', 'the', 'only', 'structural', 'information', 'on', 'the', 'fungal', '-atpase', '.'], ['maternal', 'malnutrition', 'during', 'preconception', 'and', 'pregnancy', 'influences', 'fetal', 'neurodevelopment', '.'], ['sundar', 'das', 'is', 'an', 'indian', 'film', 'director', 'in', 'malayalam', 'movies', '.'], ['additionally', ',', 'multitrait-multimethod', 'studies', 'have', 'demonstrated', 'that', 'although', 'iats', 'and', 'explicit', 'measures', 'may', 'be', 'related', ',', 'they', 'appear', 'to', 'be', 'measuring', 'different', 'constructs', '.'], ['as', 'an', 'example', ',', 'a', 'new', 'department', 'in', 'a', 'factory', 'in', 'which', 'a', 'union', 'represents', 'all', 'of', 'the', 'production', 'and', 'maintenance', 'employees', 'in', 'a', '``', 'wall', 'to', 'wall', \"''\", 'unit', 'is', 'likely', 'to', 'be', 'accreted', 'to', 'that', 'unit', '.'], ['imag', 'was', 'a', 'coalition', 'of', 'indigenous', 'media', 'artists', 'organized', 'to', 'improve', 'access', 'to', 'media', 'equipment', 'and', 'increase', 'indigenous', 'representation', 'in', 'artist', 'run', 'centers', 'in', 'the', 'vancouver', 'area', ',', 'and', 'ran', 'from', '1', '9', '9', '8', 'to', '2', '0', '0', '7', '.'], ['cornes', 'made', 'an', 'impressive', 'return', 'to', 'form', 'in', '2', '0', '1', '2', ',', 'playing', 'every', 'game', ',', 'and', 'playing', 'an', 'exceptional', 'season', 'as', 'a', 'setup', 'midfielder', '.'], ['a', 'single', ',', '``', 'black', 'flowers', \"''\", ',', 'was', 'released', 'in', 'january', '2', '0', '1', '0', '.'], ['she', 'played', 'many', 'years', 'for', 'ferencváros', 'and', 'fehérvár', 'kc', 'during', 'her', 'career', ',', 'which', 'must', 'be', 'ended', 'because', 'of', 'her', 'serious', 'knee', 'injury', '.'], ['the', 'grass', 'in', 'the', 'plains', 'were', 'succulent', 'fare', 'for', 'fattening', 'cattle', 'and', 'the', 'water', 'from', 'the', 'brooks', 'and', 'streams', 'clear', 'and', 'sparkling', '.'], ['the', 'competition', 'started', 'on', '2', '7', 'october', '2', '0', '2', '0', 'and', 'will', 'finish', 'in', 'december', '2', '0', '2', '0', '.'], ['françois', 'was', 'born', 'on', '1', '2', 'december', '1', '8', '0', '6', 'with', 'his', 'twin', 'brother', 'louis', '.'], ['mcqueen', 'was', 'openly', 'gay', 'and', 'said', 'he', 'realized', 'his', 'sexual', 'orientation', 'when', 'he', 'was', 'six', 'years', 'old', '.'], ['in', '1', '9', '8', '9', ',', 'the', 'city', 'of', 'concord', 'went', 'out', 'to', 'bid', 'for', 'public', 'transit', 'service', '.'], ['edmund', 'lynch', 'was', 'born', 'on', 'may', '1', '9', ',', '1', '8', '8', '5', 'in', 'baltimore', ',', 'maryland', 'to', 'richard', 'h.', 'lynch', 'and', 'jennie', 'vernon', 'smith', 'lynch', '.'], ['soil', 'erosion', 'has', 'a', 'mixture', 'of', 'causes', ',', 'including', 'mismanagement', 'of', 'land', ',', 'climate', 'change', ',', 'intensive', 'agricultural', 'practice', ',', 'and', 'lack', 'of', 'adequate', 'protection', 'infrastructure/maintenance', 'for', 'soil', '.'], ['however', ',', 'others', 'believe', 'the', 'city', 'was', 'named', 'after', 'agbada', ',', 'a', 'popular', 'farmer', ',', 'whose', 'farm', 'was', 'named', 'agbadagrimeh', ',', 'which', 'was', 'later', 'pronounced', 'badagry', 'by', 'the', 'europeans', '.'], ['he', 'remained', 'active', 'with', 'les', 'grands', 'ballets', 'canadiens', 'for', 'many', 'years', 'and', 'in', '1', '9', '9', '0', 'was', 'named', 'choreographer', 'emeritus', ',', 'a', 'title', 'he', 'held', 'until', 'his', 'death', '.'], ['a', 'final', 'hearing', 'of', 'proposed', 'changes', 'was', 'held', 'in', 'july', '2', '0', '0', '8', 'and', 'on', '2', '4', 'september', '2', '0', '0', '8', 'a', 'full', 'council', 'confirmed', 'the', 'changes', ',', 'subject', 'to', 'some', 'amendments', '.'], ['british', 'military', 'strategy', 'during', 'the', 'american', 'revolution', 'relied', 'on', 'mobilising', 'loyalist', 'soldiers', 'throughout', 'the', 'thirteen', 'colonies', '.'], ['santa', 'cruz', 'bullring', '(', ')', 'is', 'a', 'bullring', 'in', 'santa', 'cruz', 'de', 'tenerife', ',', 'spain', '.'], ['the', 'last', 'commercial', 'navigation', 'on', 'the', 'river', 'was', 'in', '1', '9', '2', '0', '.'], ['in', 'february', '2', '0', '1', '7', ',', 'it', 'was', 'reported', 'that', 'meredith', 'corporation', 'and', 'a', 'group', 'of', 'investors', 'led', 'by', 'edgar', 'bronfman', 'jr.', 'were', 'considering', 'purchasing', 'time', 'inc', '.'], ['there', 'are', 'many', 'women', 'artists', 'mentioned', 'in', 'the', 'surveys', 'whose', 'biography', 'was', 'not', 'included', ',', 'because', 'there', 'was', 'not', 'enough', 'documented', 'material', 'to', 'fulfill', 'the', 'inclusion', 'criteria', '.'], ['in', '1', '9', '0', '6', ',', 'they', 'purchased', 'a', 'lumber', 'mill', 'and', 'several', 'stands', 'of', 'timber', '.'], ['``', 'sustained', 'strong', 'growth', ',', 'together', 'with', 'continued', 'public', 'debt', 'reduction', ',', 'would', 'reduce', 'vulnerabilities', 'arising', 'from', 'high', 'indebtedness', ',', 'particularly', 'when', 'monetary', 'accommodation', 'is', 'reduced', '.', \"''\"], ['in', '1', '7', '1', '7', ',', 'wilhelm', 'reinhard', 'von', 'neipperg', ',', 'the', 'first', 'count', 'and', 'an', 'imperial', 'field', 'marshal', 'in', 'the', 'habsburg', 'service', ',', 'returned', 'to', 'the', 'catholic', 'church', '.'], ['his', 'father', 'garrett', 'was', 'captain', 'of', 'the', 'offaly', 'team', 'which', 'won', 'the', '1', '9', '8', '8', 'all-ireland', 'under-', '2', '1', 'football', 'championship', ',', 'the', 'only', 'such', 'victory', 'in', 'the', 'county', \"'s\", 'history', '.'], ['the', 'bell', 'was', 'used', 'to', 'call', 'the', 'workers', 'from', 'the', 'field', 'at', 'the', 'end', 'of', 'the', 'day', \"'s\", 'work', '.'], ['in', 'november', '1', '9', '7', '8', ',', 'dannemeyer', 'was', 'elected', 'as', 'a', 'republican', 'to', 'the', 'united', 'states', 'house', 'of', 'representatives', ',', 'and', 'returned', 'for', 'six', 'additional', 'terms', '.'], ['a', 'post', 'office', 'was', 'established', 'in', '1', '8', '7', '8', '.'], ['a', 'spring', 'thaw', 'led', 'to', 'the', 'flooding', 'of', 'the', 'camp', ',', 'and', 'many', 'of', 'the', 'prisoners', 'were', 'forced', 'to', 'huddle', 'on', 'top', 'of', 'the', 'bunks', 'in', 'the', 'barracks', 'until', 'rescue', 'could', 'arrive', ',', 'and', '2', ',', '7', '0', '0', 'feet', 'of', 'the', 'stockade', 'wall', 'was', 'washed', 'away', '.'], ['he', 'entered', 'the', 'music', 'program', 'at', 'florida', 'state', 'university', 'in', '1', '9', '8', '0', 'at', 'the', 'age', '1', '7', '.'], ['is', 'a', 'japanese', 'former', 'volleyball', 'player', 'who', 'competed', 'in', 'the', '1', '9', '8', '4', 'summer', 'olympics', 'and', 'in', 'the', '1', '9', '8', '8', 'summer', 'olympics', '.'], ['enrolments', 'at', 'the', 'school', 'have', 'fluctuated', 'with', 'total', 'enrolments', 'ranging', 'from', '5', '1', '0', '(', '2', '0', '1', '0', ')', 'to', '1', ',', '0', '3', '6', '(', '2', '0', '1', '5', ')', '.'], ['they', 'won', 'the', 'bronze', 'with', 'a', 'strong', 'performance', ',', 'missing', 'a', 'throw', 'quadruple', 'salchow', 'attempt', '.'], ['the', 'two', 'battalions', 'upon', 'coming', 'up', 'moved', 'off', 'toward', 'the', 'kpa', 'flanks', 'in', 'what', 'proved', 'to', 'be', 'a', 'nightlong', 'movement', '.'], ['this', 'project', 'failed', ',', 'and', 'cheam', 'station', 'became', 'part', 'of', 'the', 'london', ',', 'brighton', 'and', 'south', 'coast', 'railway', 'on', '1', '0', 'may', '1', '8', '4', '7', '.'], ['as', 'vice-president', 'of', 'the', 'i.a.a.a.', ',', 'he', 'was', 'one', 'of', 'the', 'irish', 'delegates', 'to', 'the', 'congress', 'of', 'the', 'sorbonne', 'in', '1', '8', '9', '4', ',', 'organised', 'by', 'baron', 'pierre', 'de', 'coubertin', ',', 'resulting', 'in', 'the', 'foundation', 'of', 'the', 'modern', 'olympic', 'games', 'in', '1', '8', '9', '6', '.'], ['parry', 'became', 'director', 'of', 'naval', 'intelligence', 'in', 'july', '1', '9', '4', '6', 'and', 'chief', 'of', 'naval', 'staff', '(', 'commander-in-chief', ')', 'of', 'the', 'royal', 'indian', 'navy', 'in', 'august', '1', '9', '4', '8', '.'], ['many', 'of', 'its', 'priests-alumni', 'are', 'pastors', 'not', 'only', 'of', 'the', 'local', 'parishes', 'but', 'also', 'of', 'churches', 'in', 'different', 'parts', 'of', 'the', 'world', ',', 'particularly', 'the', 'united', 'states', '.'], ['because', 'of', 'this', ',', 'mads', 'had', 'an', 'oil', 'mill', 'imported', 'entire', 'from', 'europe', '.'], ['he', 'was', 'gnpp', 'secretary', 'for', 'sokoto', 'state', 'until', 'december', '1', '9', '8', '3', ',', 'when', 'the', 'military', 'resumed', 'power', 'under', 'muhammadu', 'buhari', 'and', 'banned', 'party', 'politics', '.'], ['at', 'the', 'film', \"'s\", 'premiere', ',', 'hitchcock', 'first', 'views', 'the', 'audience', 'from', 'the', 'projection', 'booth', ',', 'looking', 'out', 'through', 'its', 'small', 'window', 'at', 'them', '.'], ['in', '1', '9', '8', '7', ',', 'fernandez', 'joined', 'the', 'san', 'diego', 'sockers', 'as', 'a', 'free', 'agent', '.'], ['a', 'graduate', 'of', 'the', 'moscow', 'conservatory', ',', 'glaihengauz', 'led', 'the', 'orchestra', 'for', '1', '1', 'seasons', 'under', 'its', 'new', 'name', ',', 'centennial', 'philharmonic', '.'], ['in', 'many', 'places', 'nitrogen-loving', 'blackberry', 'and', 'nettle', 'bushes', 'are', 'interspersed', ',', 'for', 'example', 'on', 'the', '``', 'swantiberg', \"''\", 'and', '``', 'honiggrund', \"''\", '.'], ['the', 'concert', 'became', 'noteworthy', 'after', 'brooks', 'and', 'guitarist', 'ty', 'england', 'smashed', 'two', 'guitars', 'on', 'stage', '.'], ['maho', '(', '2', '0', '0', '9', ')', 'considers', 'it', 'a', 'distinct', 'dialect', '.'], ['other', 'characteristics', ',', 'including', 'eye', 'arrangement', ',', 'pedipalp', 'structure', ',', 'tibial', 'claws', ',', 'and', 'prosoma', 'dimensions', ',', 'do', 'not', 'predict', 'differences', 'in', 'sex', '.'], ['under', 'the', 'direction', 'of', 'jerry', 'blackstone', ',', 'the', 'michigan', 'men', \"'s\", 'glee', 'club', 'embarked', 'on', 'four', 'major', 'overseas', 'tours', '.'], ['the', 'church', 'has', 'two', 'bells', 'which', 'are', 'both', 'were', 'recast', '.'], ['in', '1', '8', '6', '6', 'the', 'failure', 'of', 'the', 'wooden', 'rails', 'used', 'on', 'the', 'invercargill-makarewa', 'section', 'of', 'what', 'became', 'the', 'kingston', 'branch', 'became', 'apparent', ',', 'and', 'the', 'decision', 'was', 'made', 'to', 'use', 'iron', 'rails', 'to', 'bluff', 'and', 'convert', 'the', 'makarewa', 'section', 'to', 'iron', 'rails', '.'], ['soon', 'after', 'in', 'australia', ',', 'speedcar', 'racing', 'became', 'popular', 'with', 'the', 'first', 'australian', 'speedcar', 'championship', 'being', 'contested', 'in', 'melbourne', 'in', '1', '9', '3', '5', ',', 'its', 'popularity', 'running', 'through', 'the', 'country', \"'s\", '``', 'golden', 'era', \"''\", 'of', 'the', '1', '9', '5', '0', 's', 'and', '1', '9', '6', '0', 's', '.'], ['the', 'album', ',', 'however', ',', 'was', 'shelved', 'for', 'many', 'years', 'until', 'being', 'issued', 'in', 'japan', 'in', '1', '9', '8', '0', ',', 'as', 'blue', 'note', 'gxf', '3', '0', '7', '2', '.'], ['the', 'amphibian', 'species', 'of', 'the', 'world', 'restricts', 'this', 'species', 'to', 'panama', ',', 'colombia', ',', 'trinidad', 'and', 'tobago', ',', 'and', 'bolivia', '.'], ['davies', 'was', 'a', 'co-author', 'with', 'felisa', 'wolfe-simon', 'on', 'the', '2', '0', '1', '1', '``', 'science', \"''\", 'article', '``', 'a', 'bacterium', 'that', 'can', 'grow', 'by', 'using', 'arsenic', 'instead', 'of', 'phosphorus', \"''\", '.'], ['she', 'attended', 'barnard', 'college', ',', 'the', 'école', 'des', 'beaux-arts', 'in', 'paris', ',', 'and', 'the', 'yale', 'school', 'of', 'drama', '.'], ['it', 'is', 'unclear', 'how', 'many', 'of', 'these', 'were', 'victims', 'of', 'war', 'crimes', '.'], ['she', 'is', 'based', 'on', 'the', 'protagonist', 'from', 'attack', 'of', 'the', '5', '0', 'foot', 'woman', '.'], ['traditionally', ',', '``', 'market', 'garden', \"''\", 'was', 'used', 'to', 'contrast', 'farms', 'devoted', 'to', 'raising', 'vegetables', 'and', 'berries', ',', 'a', 'specialized', 'type', 'of', 'farming', ',', 'with', 'the', 'larger', 'branches', 'of', 'grain', ',', 'dairy', ',', 'and', 'orchard', 'fruit', 'farming', ';', 'agricultural', 'historians', 'continue', 'to', 'thus', 'use', 'the', 'term', '.'], ['holocaust', 'historian', 'robert', 'michael', 'argues', 'that', 'niemöller', \"'s\", 'statements', 'were', 'a', 'result', 'of', 'traditional', 'anti-semitism', ',', 'and', 'that', 'niemöller', 'agreed', 'with', 'the', 'nazis', \"'\", 'position', 'on', 'the', '``', 'jewish', 'question', \"''\", 'at', 'that', 'time', '.'], ['trump', 'did', 'not', 'consult', 'with', 'the', 'european', 'union', 'before', 'imposing', 'the', 'travel', 'ban', '.'], ['by', 'autumn', ',', 'half', 'the', 'indigenous', 'troops', 'in', 'cochin', 'china', 'were', 'allegedly', 'sympathetic', 'to', 'the', 'communists', ',', 'with', 'icp', 'sources', 'estimating', 'that', 'up', 'to', '3', '0', 'percent', 'of', 'the', 'entire', 'population', 'of', 'the', 'colony', 'was', 'on', 'its', 'side', '.'], ['further', ',', 'the', 'wildlife', 'area', 'regulations', ',', 'a', 'component', 'of', 'the', 'canada', 'wildlife', 'act', ',', 'identifies', 'activities', 'which', 'are', 'prohibited', 'on', 'such', 'areas', 'because', 'they', 'may', 'harm', 'a', 'protected', 'species', 'or', 'its', 'habitat', '.'], ['finally', ',', 'in', 'the', 'february', '6', ',', '2', '0', '0', '5', 'episode', ',', '``', 'homer', 'and', 'ned', \"'s\", 'hail', 'mary', 'pass', \"''\", ',', 'comic', 'book', 'guy', 'nonchalantly', 'tells', 'ned', 'flanders', ':', '``', 'my', 'name', 'is', 'jeff', 'albertson', ',', 'but', 'everyone', 'calls', 'me', \"'comic\", 'book', 'guy', \"'\", \"''\", '.'], ['the', 'normans', 'conquered', 'england', 'and', 'southern', 'italy', 'in', '1', '1', 'th', 'century', ',', 'and', 'played', 'a', 'key', 'role', 'in', 'the', 'crusades', '.'], ['his', 'second', 'album', ',', 'released', 'in', '2', '0', '1', '2', ',', 'featured', 'collaborations', 'with', 'puerto', 'rican', 'superstar', 'daddy', 'yankee', ',', 'and', 'cuban', 'star', 'micha', '.'], ['also', ',', 'hydrothermal', 'monazites', 'usually', 'contain', 'low', 'tho', '2', 'content', '.'], ['the', 'old', 'eagle', 'school', 'is', 'located', 'near', 'strafford', 'station', 'on', 'the', 'main', 'line', 'of', 'the', 'pennsylvania', 'railroad', 'in', 'tredyffrin', 'township', ',', 'chester', 'county', ',', 'pennsylvania', '.'], ['born', 'in', '1', '9', '4', '7', 'in', 'copenhagen', ',', 'holdt', 'was', 'the', 'son', 'of', 'the', 'pastor', 'at', 'grundtvig', \"'s\", 'church', 'in', 'copenhagen', '.'], ['independence', 'high', 'school', 'is', 'a', 'public', ',', 'co-educational', 'high', 'school', 'located', 'in', 'bakersfield', ',', 'california', '.'], ['to', 'the', 'mobile', 'phones', 'in', 'its', 'vicinity', ',', 'a', 'device', 'called', 'an', '``', 'imsi-catcher', \"''\", 'pretends', 'to', 'be', 'a', 'legitimate', 'base', 'station', 'of', 'the', 'mobile', 'phone', 'network', ',', 'thus', 'subjecting', 'the', 'communication', 'between', 'the', 'phone', 'and', 'the', 'network', 'to', 'a', 'man-in-the-middle', 'attack', '.'], ['in', 'nscl', ',', 'chloride', 'is', 'bonded', 'to', 'the', 'chalcogen', ',', 'in', 'contrast', 'to', 'nitrosyl', 'chloride', 'with', 'an', 'n-cl', 'bond', '.'], ['shannon', 'pot', '#', 'hydrology', 'he', 'then', 'visits', 'the', 'arigna', 'mines', 'on', 'the', 'shores', 'of', 'lough', 'allen', ',', 'with', 'former', 'miner', 'maurice', 'cullen', '.'], ['he', 'is', 'the', 'former', 'chief', 'and', 'programme', 'director', 'with', 'the', 'united', 'nations', 'environment', 'programme', '.'], ['however', ',', 'wartime', 'activity', 'left', 'the', 'canal', 'in', 'a', 'terrible', 'state', 'of', 'repair', '.'], ['on', 'june', '1', '0', ',', '2', '0', '0', '9', 'british', 'columbia', 'premier', 'gordon', 'campbell', 'promoted', 'yap', 'to', 'the', 'executive', 'council', 'of', 'british', 'columbia', 'as', 'the', 'minister', 'of', 'state', 'for', 'climate', 'action', '.'], ['a', 'pair', 'of', 'glands', 'occurs', 'on', 'the', 'edge', 'of', 'the', 'leaf', ',', 'about', '5', 'mm', 'from', 'where', 'the', 'stalk', 'joins', 'the', 'leaf', '.'], ['after', 'years', 'of', 'rejection', ',', 'in', '1', '8', '7', '2', 'he', 'was', 'appointed', 'to', 'the', 'paris', 'conservatoire', 'as', 'professor', 'of', 'singing', '.'], ['the', 'tension', 'in', 'the', 'game', 'is', 'that', 'the', 'sender', 'wants', 'to', 'persuade', 'the', 'receiver', 'that', 'they', 'have', 'the', 'desirable', 'type', ',', 'and', 'they', 'will', 'try', 'to', 'choose', 'a', 'signal', 'to', 'do', 'that', '.'], ['although', 'hogan', 'and', 'savage', 'teamed', 'together', 'at', 'un-televised', 'house', 'shows', ',', 'nothing', 'more', 'was', 'made', 'of', 'it', 'on', 'national', 'television', 'until', 'shortly', 'before', 'wrestlemania', 'iv', ',', 'when', 'hogan', 'rescued', 'savage', 'a', 'similar', 'angle', 'featuring', 'andre', ',', 'dibiase', 'and', 'virgil', '.'], ['hoping', 'to', 'put', 'a', 'stop', 'to', 'salvador', \"'s\", 'crimes', ',', 'hillary', '(', 'agot', 'isidro', ')', ',', 'salvador', \"'s\", 'wife', ',', 'decides', 'to', 'run', 'for', 'mayor', '.'], ['she', 'announced', 'her', 'retirement', 'from', 'show', 'business', 'in', '2', '0', '0', '4', '.'], ['on', 'the', 'other', 'hand', ',', 'the', 'damned', 'are', 'consigned', 'to', '``', 'dìguān', \"''\", '(', '地官', ',', 'earth', 'office', ')', ',', 'equated', 'with', 'the', '``', 'diyu', \"''\", '(', '地獄', ',', '``', 'earth', 'prisons', ';', 'purgatories', \"''\", ')', 'of', 'later', 'texts', '.'], ['the', 'first', 'campaign', 'of', 'the', 'afem', 'was', 'the', 'cuban', 'missile', 'crisis', 'and', 'the', 'award', 'was', 'issued', 'for', 'military', 'service', 'between', 'october', '1', '9', '6', '2', 'and', 'june', '1', '9', '6', '3', '.'], ['there', 'are', '1', '0', '2', '4', '3', '-transpositions', ',', 'called', '``', 'anabasic', \"''\", 'that', 'do', 'not', 'commute', 'with', 'any', 'in', 'the', 'particular', 'basic', 'set', '.'], ['he', 'took', 'a', 'break', 'after', 'akasham', 'in', '2', '0', '0', '7', 'and', 'made', 'a', 'comeback', 'in', '2', '0', '1', '3', 'with', 'the', 'movie', '``', 'rebecca', 'uthup', 'kizhakkemala', \"''\", '.'], ['most', 'common', 'audio', 'magnets', ',', 'including', 'those', 'used', 'in', 'loudspeakers', 'and', 'electromagnetic', 'instrument', 'pickups', ',', 'are', 'ferrite', 'magnets', '.'], ['niemeyer', 'was', 'interested', 'in', 'changeability', 'of', 'structure', 'in', 'photography', ',', 'and', 'the', 'step', 'forwards', 'the', 'free', 'creation', 'of', 'such', 'structure', 'was', 'a', 'logical', 'and', 'natural', 'one', '.'], ['madison', '(', 'sarah', 'roemer', ')', 'lives', 'in', 'new', 'orleans', '.'], ['a', 'year', 'later', ',', 'sister', 'lucia', 'sullivan', 'established', 'the', 'great', 'falls', 'normal', 'school', 'to', 'educate', 'teachers', '.'], ['garnica', 'attended', 'instituto', 'antonia', 'mayllen', ',', 'a', 'private', 'catholic', 'school', 'in', 'the', 'historic', 'center', 'of', 'león', '.'], ['in', '1', '9', '7', '2', ',', 'munde', 'became', 'a', 'member', 'of', 'the', 'flying', 'burrito', 'brothers', ',', 'performing', 'with', 'byron', 'berline', '.'], ['the', 'village', 'gets', 'water', 'from', 'this', 'lake', 'for', 'agriculture', 'and', 'household', 'uses', '.'], ['obesity', 'is', 'the', 'by', 'far', 'the', 'most', 'significant', 'risk', 'factor', '.'], ['``', 'furcifer', 'willsii', \"''\", 'is', 'an', 'arboreal', 'species', 'often', 'found', 'high', 'in', 'the', 'canopy', 'mostly', 'in', 'humid', 'forests', '.'], ['his', 'tent', 'was', 'dwelling', ',', 'chapel', ',', 'and', 'dispensary', '.'], ['he', 'entered', 'the', 'field', 'during', 'the', 'early', 'days', '(', '1', '9', '8', '0', 's', ')', 'when', 'competition', 'was', 'nil', '.'], ['smetona', 'joined', 'and', 'chaired', 'a', 'secret', 'lithuanian', 'student', 'organization', ';', 'he', 'was', 'later', 'succeeded', 'by', 'steponas', 'kairys', '.'], ['kuścińce', 'is', 'a', 'village', 'in', 'the', 'administrative', 'district', 'of', 'gmina', 'kuźnica', ',', 'within', 'sokółka', 'county', ',', 'podlaskie', 'voivodeship', ',', 'in', 'north-eastern', 'poland', ',', 'close', 'to', 'the', 'border', 'with', 'belarus', '.'], ['guests', 'included', 'former', 'vice', 'president', 'of', 'the', 'united', 'states', 'al', 'gore', ',', 'the', 'swimmer', 'ian', 'thorpe', 'and', 'the', 'actress', 'brooke', 'satchwell', '.'], ['aravena', 'replied', '``', 'yeah', \"''\", ',', 'which', 'led', 'kelly', 'to', 'ask', 'why', 'aravena', 'did', 'not', 'flee', 'into', 'the', 'darkness', 'to', 'seek', 'help', '.'], ['on', '5', 'april', '1', '9', '4', '4', ',', 'shortly', 'after', 'converting', 'from', 'thunderbolts', 'to', 'mustangs', ',', 'the', 'group', 'successfully', 'bombed', 'and', 'strafed', 'german', 'airfields', 'during', 'a', 'snow', 'squall', ',', 'a', 'mission', 'for', 'which', 'the', 'group', 'was', 'awarded', 'a', 'distinguished', 'unit', 'citation', '.'], ['her', 'boyfriend', 'gets', 'up', 'and', 'knocks', 'on', 'the', 'door', ',', 'to', 'find', 'there', 'is', 'no', 'response', '.'], ['the', 'il', 'fornaio', 'brand', 'was', 'established', 'in', '1', '9', '7', '2', 'as', 'a', 'baking', 'school', 'in', 'barlassina', ',', 'lombardia', ',', 'italy', '.'], ['john', 'ferdinand', '``', 'jt', \"''\", 'thompson', 'is', 'a', 'lieutenant', 'general', 'in', 'the', 'united', 'states', 'air', 'force', 'serving', 'as', 'the', 'commander', 'of', 'the', 'space', 'and', 'missile', 'systems', 'center', 'since', 'may', '2', '0', '1', '7', '.'], ['these', 'three', 'factors', ',', 'plus', 'an', 'estimated', 'cost', 'of', '£', '1', 'million', '(', 'in', '1', '9', '5', '1', ')', 'and', 'uncosted', 'concerns', 'over', 'the', 'nearby', 'doe', 'lea', 'viaduct', 'made', 'the', 'decision', 'to', 'close', 'the', 'tunnel', 'easy', '.'], ['it', 'had', 'a', 'primitive', 'notochord', ',', 'a', 'structure', 'that', 'could', 'have', 'developed', 'into', 'a', 'vertebral', 'column', 'later', '.'], ['it', 'is', 'obvious', 'that', 'the', 'followings', 'are', 'possible', 'solutions', ':'], ['brighton', 'mall', 'opened', 'in', 'november', '1', '9', '7', '1', 'as', 'a', 'small', 'enclosed', 'mall', ',', 'with', 'an', 'the', 'great', 'atlantic', '&', 'amp', ';', 'pacific', 'tea', 'company', '(', 'a', '&', 'amp', ';', 'p', ')', 'supermarket', ',', 'a', 'w.t', '.'], ['along', 'the', 'prealps', 'are', 'some', 'of', 'the', 'largest', 'lakes', 'in', 'italy', '(', 'garda', ',', 'maggiore', ',', 'and', 'como', ')', 'while', 'numerous', 'rivers', 'and', 'streams', '(', 'po', ',', 'adda', ',', 'oglio', ',', 'mincio', ',', 'and', 'the', 'ticino', ')', 'cut', 'the', 'mountains', 'into', 'deep', 'and', 'narrow', 'valleys', '.'], ['pease', 'then', 'studied', 'medicine', 'at', 'rush', 'medical', 'college', 'and', 'practiced', 'medicine', '.'], ['a', 'short', 'but', 'bloody', 'campaign', 'occurred', 'in', 'which', 'a', 'number', 'of', 'british', 'men', 'and', 'officers', 'were', 'killed', '.'], ['at', 'rangiahua', 'state', 'highway', '1', 'is', 'where', 'the', 'rails', 'used', 'to', 'be', ',', 'with', 'a', 'loading', 'bank', 'to', 'the', 'west', 'and', 'a', 'platform', 'to', 'the', 'east', '.'], ['shanmuckinish', 'castle', '(', 'or', 'seanmuckinish', 'castle', ')', '(', '``', 'muck', 'inis', \"''\", ',', 'irish', 'for', 'pig', 'island', ')', 'is', 'a', 'ruined', 'tower', 'house', 'located', 'in', 'drumcreehy', 'civil', 'parish', 'of', 'county', 'clare', ',', 'ireland', '.'], ['the', 'closing', 'stages', 'of', 'the', 'contest', 'saw', 'mannamead', 'and', 'his', 'principal', 'rival', 'loaningdale', 'racing', 'on', 'opposite', 'sides', 'of', 'the', 'course', 'and', 'the', 'racecourse', 'judge', 'declared', 'a', 'dead', 'heat', '.'], ['at', 'the', 'beginning', 'of', 'the', '2', '1', 'st-century', 'there', 'was', 'over', 'eighty', 'mute', 'swan', '(', '``', 'cygnus', 'olor', \"''\", ')', 'and', 'many', 'canada', 'goose', '(', '``', 'branta', 'canadensis', \"''\", ')', 'due', 'to', 'feeding', 'them', 'out', 'of', 'date', 'items', 'from', 'a', 'local', 'bakery', '.'], ['the', 'film', 'concerns', 'a', 'man', 'called', 'mr.', 'purvis', '(', \"o'donnell\", ')', 'trying', 'to', 'arrange', 'car', 'insurance', 'after', 'he', 'has', 'been', 'convicted', 'of', 'drunk', 'driving', '.'], ['previously', ',', 'it', 'had', 'also', 'hosted', 'the', '1', '9', '8', '1', 'and', '1', '9', '9', '1', 'editions', 'of', 'the', 'games', '.'], ['in', 'spokane', \"'s\", 'east', 'central', 'district', ',', 'the', 'property', 'acquisition', 'process', 'has', 'been', 'ongoing', 'since', 'june', '2', '0', '1', '0', 'and', 'includes', 'the', 'acquisition', 'and', 'demolition', 'of', '6', '0', '6', 'homes', ',', 'businesses', 'and', 'industrial', 'buildings', '.'], ['the', 'unit', 'became', '``', 'escadrille', 'spa', '7', '3', '``', 'when', 'it', 're-equipped', 'with', 'spad', 'viis', 'in', 'january', '1', '9', '1', '7', '.'], ['dusc', '2', '0', '1', '5', 'has', 'a', '6', 'm', '2', 'solar', 'array', ',', 'using', 'high-efficiency', 'cells', 'from', 'gochermann', 'solar', 'technology', '.'], ['native', 'vegetation', 'is', 'mostly', 'woody', ',', 'grassy', 'savanna', 'in', 'the', 'caatinga', 'biome', ',', 'with', 'scattered', 'shrub', 'sized', 'hyperxerophilic', 'plants', '.'], ['as', 'of', '2', '0', '1', '9', ',', 'there', 'are', 'nine', 'national', 'monuments', ':'], ['later', ',', 'lance', 'says', 'that', 'reno', \"'s\", 'ways', 'of', 'doing', 'things', 'attract', 'too', 'much', 'attention', '.'], ['they', 'had', 'chiefly', 'been', 'used', 'for', 'hunting', ',', 'and', 'not', 'yet', 'developed', 'very', 'much', 'for', 'agriculture', '.'], ['all', 'her', 'books', 'are', 'bestsellers', 'in', 'canada', 'and', 'germany', '.'], ['it', 'included', '6', 'korean', 'songs', ',', '6', 'japanese', 'songs', 'and', '2', 'instrumentals', '.'], ['it', 'ceased', 'to', 'exist', 'after', 'the', 'delimitation', 'of', 'seats', 'in', '2', '0', '0', '8', '.'], ['in', 'addition', 'to', 'the', 'complete', 'version', ',', 'the', 'archives', 'also', 'holds', 'an', 'incomplete', 'print', 'of', 'episode', '1', ',', 'returned', 'from', 'abc', 'in', 'australia', 'in', 'late', '1', '9', '7', '8', '.'], ['bengali', 'communist', 'cadres', 'had', 'arrived', 'in', 'the', 'hajong', 'areas', 'in', 'the', '1', '9', '3', '0', 's', ',', 'and', 'helped', 'to', 'organise', 'the', 'hajong', 'peasants', '.'], ['there', 'were', '1', '1', ',', '0', '1', '6', 'housing', 'units', 'at', 'an', 'average', 'density', 'of', '.'], ['the', 'company', 'remains', 'family', 'owned', 'with', 'production', 'still', 'based', 'in', 'bloomington', ',', 'operating', 'out', 'of', 'the', '1', '0', '0', ',', '0', '0', '0', '-square-foot', 'facility', 'it', 'relocated', 'to', 'in', '1', '9', '7', '3', '.'], ['during', 'his', 'career', ',', 'harris', 'served', 'on', 'the', 'board', 'of', 'the', 'lithographic', 'technical', 'foundation', '.'], ['mbiko', 'masuku', ',', 'a', 'trusted', 'confident', 'of', 'king', 'mzilikazi', 'and', 'leader', 'of', 'the', 'zwangendaba', 'regiment', 'fought', 'prince', 'lobengula', 'as', 'he', 'did', 'not', 'believe', 'that', 'he', 'was', 'the', 'legitimate', 'heir', 'to', 'the', 'throne', '.'], ['penrith', 'again', 'reached', 'the', 'grand', 'final', 'in', 'a', 'rematch', 'of', 'the', 'previous', 'years', 'decider', 'against', 'canberra', '.'], ['during', 'the', 'egyptian', 'occupation', 'of', 'nubia', ',', 'there', 'were', 'temple', 'towns', 'with', 'egyptian', 'cults', ',', 'but', '``', 'production', 'and', 'redistribution', \"''\", 'was', 'based', 'mostly', 'on', 'indigenous', 'social', 'structures', '.'], ['in', '1', '6', '0', '0', 'he', 'had', 'a', 'portrait', 'painted', 'by', 'el', 'greco', '.'], ['chowdhury', 'had', 'the', 'responsibility', 'to', 'negotiate', 'with', 'the', 'political', 'parties', 'to', 'bring', 'them', 'to', 'participation', 'in', 'the', 'election', '.'], ['part', '3', ':', 'the', '``', 'application', \"''\", 'focus', 'mainly', 'on', 'the', 'application', 'of', 'architectonic', 'principles', 'on', 'four', 'regions', ',', 'the', 'temperate', 'zone', ',', 'the', 'cold', 'zone', ',', 'the', 'warm-barren', 'zone', 'and', 'the', 'warm', 'humid', 'zone', '.'], ['elizabeth', 'barchas', 'prelogar', 'is', 'an', 'american', 'attorney', 'serving', 'as', 'the', 'acting', 'solicitor', 'general', 'of', 'the', 'united', 'states', '.'], ['renamed', 'montgomerystown', ',', 'it', 'was', 'created', 'a', 'burgh', 'of', 'regality', ',', 'and', 'became', 'the', 'seat', 'of', 'a', 'considerable', 'trade', ',', 'including', 'a', 'family', 'owned', 'brewery', '.'], ['the', 'author', 'thomas', 'alexander', 'browne', ',', 'better', 'known', 'by', 'his', 'pseudonym', 'rolf', 'boldrewood', ',', 'wrote', 'the', 'novel', '``', 'the', 'sphinx', 'of', 'eaglehawk', \"''\", 'in', '1', '8', '9', '5', ',', 'based', 'on', 'his', 'experiences', 'as', 'a', 'station', 'owner', 'in', 'the', 'area', '.'], ['for', 'other', 'european', 'markets', 'and', 'south', 'africa', ',', 'the', 'hilux', 'was', 'built', 'in', 'durban', ',', 'south', 'africa', '.'], ['this', 'incarnation', 'met', 'with', 'limited', 'success', ',', 'so', 'in', '1', '9', '9', '8', ',', 'the', 'selection', 'was', 'expanded', 'to', 'include', 'all', 'of', 'hsn', \"'s\", 'inventory', 'categories', ',', 'and', 'the', 'word', 'jewelry', 'was', 'removed', 'from', 'the', 'network', \"'s\", 'name', '.'], ['this', 'institution', 'merged', 'with', 'monash', 'university', 'in', '1', '9', '9', '0', 'and', 'became', 'monash', 'university', ',', 'caulfield', 'campus', '.'], ['according', 'to', 'third-party', 'web', 'analytics', 'provider', 'similarweb', ',', 'the', 'site', 'received', 'over', '4', '0', 'million', 'visits', 'per', 'month', '.'], ['the', 'fully', 'qualified', 'name', 'with', 'drive', ',', 'path', ',', 'and', 'extension', ',', 'which', 'is', 'found', 'possibly', 'by', 'name', 'only', 'via', 'the', 'path', 'environment', 'variable', ',', 'or', 'through', 'codice_', '1', ',', 'codice_', '6', 'and', 'codice_', '1', '3', 'filesystem', 'mappings', '.'], ['angela', ',', 'who', 'has', 'come', 'to', 'the', 'station', 'to', 'meet', 'her', 'sister', ',', 'sees', 'her', 'lover', '.'], ['the', 'motte', 'of', 'the', 'castle', 'overlooked', 'the', 'river', ',', 'just', 'south', 'of', 'the', 'cathedral', '.'], ['yamada', \"'s\", 'designs', 'can', 'also', 'be', 'found', 'in', '``', \"''\", 'for', 'the', 'super', 'nes', 'and', 'in', '``', 'front', 'mission', '3', '``', 'for', 'the', 'playstation', '.'], ['on', '5', 'april', '2', '0', '1', '0', ',', 'de', 'smet', 'revealed', 'that', 'they', 'are', 'working', 'on', 'a', 'new', 'album', ',', 'during', 'an', 'interview', 'he', 'gave', 'during', \"'de\", 'zwaarste', 'lijst', \"'\", ',', 'a', 'radio', 'show', 'on', 'the', 'belgian', 'radio', 'station', ',', 'studio', 'brussel', '.'], ['for', 'example', ',', 'the', '4', 'th', 'company', ',', 'washington', 'artillery', '(', 'eshleman', \"'s\", ')', 'was', 'equipped', 'with', 'two', '6', '-pounders', 'and', 'two', '1', '2', '-pounder', 'howitzers', '.'], ['starlight', \"'s\", 'village', ',', 'also', 'called', 'our', 'town', ',', 'is', 'a', 'community', 'in', 'the', 'manehattan', 'region', 'and', 'is', 'characterized', 'by', 'a', 'semi-arid', 'climate', '.'], ['in', 'august', '2', '0', '0', '6', ',', 'the', 'government', 'of', 'guatemala', 'declared', 'a', '2', '0', '0', '3', 'contract', 'for', 'the', 'usufruct', 'of', 'rolling', 'stock', 'and', 'other', 'equipment', 'as', 'contrary', 'to', 'public', 'interest', '(', '``', \"''\", ')', ',', 'invalidating', 'it', '.'], ['shirakawa', 'is', 'then', 'supposed', 'to', 'attack', 'the', 'sleeping', 'kabamaru', '.'], ['he', 'followed', 'this', 'up', 'on', '1', '1', 'may', 'with', 'victory', 'over', 'adrien', 'bossel', 'at', 'the', 'israel', 'f', '5', 'futures', 'in', 'ashkelon', ',', 'reaching', 'the', 'final', 'without', 'dropping', 'a', 'set', '.'], ['however', 'at', 'least', 'one', 'source', 'suggests', 'that', 'only', 'five', 'victories', 'are', 'verifiable', '.'], ['the', 'ground', 'floor', 'of', 'the', 'jefferson', 'station', 'was', 'formerly', 'occupied', 'by', 'restaurants', 'such', 'as', 'subway', ',', 'veritable', 'quandary', '(', 'vq', ')', 'and', 'tom', \"'s\", 'first', 'avenue', 'bento', '.'], ['their', 'children', ',', 'described', 'as', '``', 'comical', 'pickannies', \"''\", ':', 'abraham', 'lincoln', ',', 'dilsie', ',', 'zeb', ',', 'and', 'dinah', '.'], ['the', 'song', 'was', 'performed', 'by', 'underwood', 'on', 'her', 'cry', 'pretty', 'tour', '3', '6', '0', '.'], ['roy', 'is', 'credited', 'with', 'seizing', 'the', 'initiative', 'and', 'planning', 'underwater', 'guerrilla', 'operations', 'behind', 'enemy', 'lines', '.'], ['avon', 'fire', 'and', 'rescue', 'service', 'said', 'the', 'incident', 'happened', 'at', '1', '1', ':', '3', '0', 'bst', ';', 'due', 'to', 'heavy', 'rain', 'and', 'reduced', 'visibility', 'it', 'was', 'not', 'possible', 'for', 'the', 'air', 'ambulance', 'to', 'land', '.'], ['the', 'research', 'institute', 'engages', 'in', 'trend', 'forecasting', 'across', 'a', 'wide', 'range', 'of', 'topics', 'including', 'global', 'economics', 'to', 'geopolitics', ',', 'to', 'health', 'and', 'education', 'etc', '.'], ['to', 'raise', 'further', 'funds', ',', 'tardini', 'sold', 'a', 'plot', 'of', 'land', 'for', '£', '1', '6', '3', ',', '0', '0', '0', 'to', 'the', 'municipal', 'administration', '.'], ['designed', 'by', 'cpg', 'corporation', ',', 'with', 'skidmore', ',', 'owings', 'and', 'merrill', 'designing', 'the', 'roof', 'feature', 'and', 'interior', 'design', 'by', 'woodhead', ',', 'terminal', '3', 'departs', 'from', 'the', 'largely', 'utilitarian', 'architecture', 'in', 'the', 'first', 'two', 'terminals', '.'], ['raksin', 'died', 'in', '2', '0', '0', '4', ',', 'aged', '9', '2', '.'], ['kavetka', '(', ')', 'is', 'a', 'rural', 'locality', '(', 'a', 'village', ')', 'in', 'yeremeyevsky', 'selsoviet', ',', 'chishminsky', 'district', ',', 'bashkortostan', ',', 'russia', '.'], ['by', 'the', 'late', '1', '4', '0', 's', 'bc', ',', 'ptolemy', 'memphites', 'had', 'been', 'promoted', 'to', 'co-regent', '.'], ['other', 'names', 'he', 'was', 'known', 'to', 'perform', 'under', 'include', ':', 'j', '.'], ['as', 'a', 'result', ',', 'mallard', 'announced', 'that', 'it', 'would', 'no', 'longer', 'be', 'compulsory', 'to', 'wear', 'ties', 'in', 'parliament', '.'], ['imag', 'grew', 'out', 'of', 'the', 'first', 'nations', 'arts', 'performance', 'group', '(', 'fnap', ')', ',', 'which', 'was', 'organized', 'by', 'margo', 'kane', 'and', 'operated', 'out', 'of', 'video', 'in', 'from', '1', '9', '9', '2', 'until', '1', '9', '9', '5', '.'], ['any', 'intervention', 'on', 'this', 'type', 'of', 'cultural', 'property', 'requires', 'previous', 'approval', 'and', 'their', 'exportation', 'is', 'forbidden', ',', 'except', 'when', 'authorized', '.'], ['the', 'victoria', 'likewise', 'ran', 'out', 'of', 'money', 'after', 'reaching', 'haliburton', 'late', 'in', '1', '8', '7', '8', '.'], ['there', 'is', 'a', 'two-storey', 'military', 'barracks', 'within', 'the', 'walls', 'dating', 'from', 'the', 'early', '1', '8', 'th-century', '.'], ['in', 'the', '2', '0', '0', '9', 'census', 'it', 'had', 'a', 'population', 'of', '1', '1', ',', '8', '0', '0', '.'], ['david', 'emanuel', 'hoffman', 'is', 'an', 'american', 'writer', 'and', 'journalist', ',', 'a', 'contributing', 'editor', 'to', '``', 'the', 'washington', 'post', \"''\", '.'], ['the', 'afrikaner', 'rights', 'group', 'afriforum', 'claim', 'that', 'some', 'attacks', 'are', 'racially', 'motivated', '.'], ['in', 'hawaii', ',', 'sharon', 'found', 'skye', ',', 'but', 'after', 'an', 'argument', ',', 'skye', 'fell', 'to', 'her', 'death', 'in', 'a', 'volcano', '.'], ['the', 'final', 'round', 'attendance', 'in', '1', '9', '8', '3', 'was', 'over', '2', '0', ',', '0', '0', '0', ',', 'and', 'this', 'was', 'the', 'first', 'year', 'that', 'amateurs', 'were', 'invited', ';', 'two', 'made', 'the', 'cut', 'and', 'future', 'major', 'winner', 'kathy', 'baker', 'was', 'the', 'low', 'amateur', '.'], ['the', 'site', 'aims', 'to', 'be', 'the', 'number', 'one', 'source', 'of', 'news', 'and', 'reviews', 'for', 'all', 'types', 'of', 'british', 'films', 'from', 'mainstream', 'to', 'arthouse', ',', 'from', 'studio', 'to', 'independent', '.'], ['the', 'abbey', 'of', 'onze-lieve-vrouw', 'ter', 'nieuwe', 'plant', '(', '``', 'our', 'lady', 'of', 'the', 'new', 'plantation', \"''\", ';', ')', ',', 'formerly', 'also', 'roesbrugge', 'abbey', '(', ')', 'is', 'a', 'community', 'of', 'augustinian', 'canonesses', 'belonging', 'to', 'the', 'congregation', 'of', 'windesheim', '.'], ['later', 'in', 'life', ',', 'he', 'suffered', 'from', 'the', 'medical', 'condition', 'kyphosis', ',', 'resulting', 'in', '(', 'often', 'severe', ')', 'curvature', 'of', 'the', 'spine', '.'], ['while', 'not', 'typically', 'viewed', 'as', 'the', 'most', 'prominent', 'columbus', 'neighborhood', ',', 'the', 'density', 'of', 'academic', 'and', 'arts-based', 'institutions', 'in', 'this', 'area', 'are', 'what', 'make', 'this', 'creative', 'campus', 'unique', '.'], ['other', 'notable', 'bird', 'species', 'include', 'woodcocks', ',', 'wild', 'turkeys', 'and', 'large', 'birds', 'of', 'prey', 'like', 'red-tailed', 'hawks', '.'], ['jackson', 'w.', 'moore', 'is', 'an', 'american', 'attorney', 'and', 'retired', 'executive', 'chairman', 'of', 'union', 'planters', 'bank', 'and', 'regions', 'financial', 'corporation', '.'], ['the', 'move', 'signified', 'a', '3', '0', '%', 'devaluation', 'of', 'the', 'peso', ',', 'and', 'was', 'met', 'with', 'both', 'criticism', 'and', 'praise', '.'], ['his', 'wife', ',', 'zong', ',', 'was', 'a', 'granddaughter', 'of', 'zong', 'chuke', '(', '宗楚客', ',', 'died', '7', '1', '0', ')', ',', 'an', 'important', 'government', 'official', 'during', 'the', 'tang', 'dynasty', 'and', 'the', 'interregnal', 'period', 'of', 'wu', 'zetian', '.'], ['along', 'with', 'vendors', 'are', 'various', 'forms', 'of', 'live', 'entertainment', 'and', 'edible', 'treats', 'for', 'guests', 'to', 'enjoy', ',', 'such', 'as', 'its', 'traditional', 'lemon', 'sticks', '.'], ['they', 'became', 'the', 'first', 'chinese', 'pair', 'to', 'win', 'a', 'medal', 'at', 'the', 'olympics', 'for', 'figure', 'skating', '.'], ['the', 'case', 'also', 'served', 'to', 'confirm', 'that', 'the', 'balance', 'of', 'probabilities', 'is', 'the', 'applicable', 'standard', 'of', 'proof', 'in', 'civil', 'proceedings', ',', 'subject', 'to', 'statute', '.'], ['darla', 'and', 'lindsey', \"'s\", 'plan', 'goes', 'into', 'effect', 'when', 'angel', 'breaks', 'into', 'her', 'home', 'in', 'time', 'to', 'find', 'himself', 'setup', 'for', 'murdering', 'darla', \"'s\", 'supposed', 'husband', '.'], ['in', '1', '9', '3', '7', 'he', 'appeared', 'in', 'a', 'small', 'role', 'in', '``', 'maytime', \"''\", ',', 'the', 'sound', 'version', 'of', 'the', '1', '9', '1', '0', 's', 'play', 'in', 'which', 'he', 'had', 'starred', '.'], ['the', 'baptistery', 'is', 'renowned', 'for', 'its', 'three', 'sets', 'of', 'artistically', 'important', 'bronze', 'doors', 'with', 'relief', 'sculptures', '.'], ['and', 'as', 'a', 'measure', 'to', 'counter', 'weapon', 'and', 'militant', 'trafficking', 'between', 'egypt', 'and', 'gaza', 'strip', ',', 'the', 'egyptian', 'government', 'announced', 'the', 'creation', 'of', 'a', 'buffer', 'zone', 'along', 'the', 'egypt-gaza', 'border', '.'], ['the', 'land', 'is', 'barren', 'today', 'but', 'was', 'well', 'wooded', 'when', 'the', 'bible', 'was', 'written', ',', 'especially', 'on', 'the', 'hills', 'east', 'of', 'the', 'jordan', 'river', '.'], ['however', ',', 'since', 'the', 'practice', 'is', 'held', 'to', 'come', 'from', 'doctrine', ',', 'this', 'is', 'essentially', 'orthodoxy', 'applied', 'to', 'practice', '.'], ['rexha', 'has', 'won', 'one', 'award', 'and', 'additionally', 'received', 'three', 'nominations', '.'], ['the', 'bar-on', 'affair', ',', 'an', 'attempt', 'to', 'alter', 'the', 'investigation', 'of', 'shas', 'leader', 'aryeh', 'deri', ',', 'created', 'tension', 'within', 'the', 'partners', ',', 'as', 'did', 'netanyahu', \"'s\", 'unclear', 'policies', 'on', 'peace', 'negotiations', '.'], ['it', 'was', 'formerly', 'classified', 'in', 'the', 'genus', '``', 'neofinetia', \"''\", '.'], ['the', 'film', 'was', 'one', 'of', 'the', 'final', 'projects', 'nicole', 'kidman', 'worked', 'on', 'in', 'her', 'native', 'australia', 'before', 'achieving', 'mainstream', 'international', 'success', 'with', '1', '9', '9', '0', \"'s\", '``', 'days', 'of', 'thunder', \"''\", '.'], ['in', '1', '8', '9', '4', ',', 'the', 'lombard', '&', 'amp', ';', 'ayres', 'company', 'was', 'worth', '$', '1', ',', '0', '0', '0', ',', '0', '0', '0', ',', 'as', 'the', 'majority', 'of', 'its', 'wealth', 'was', 'kept', 'in', 'the', 'phenix', 'national', 'bank', 'in', 'london', ',', 'where', 'lombard', 'was', 'the', 'director', '.'], ['pudarci', 'is', 'located', 'in', 'the', 'eastern', 'part', 'of', 'the', 'municipality', ',', '4', '1', 'km', 'southeast', 'of', 'belgrade', 'and', '7', 'km', 'south', 'of', 'the', 'municipal', 'seat', 'grocka', '.'], ['when', 'feasting', ',', 'the', 'polynesian', 'people', 'of', 'rapa', 'nui', 'could', 'eat', 'rat', 'meat', ',', 'but', 'the', 'king', 'was', 'not', 'allowed', 'to', ',', 'due', 'to', 'the', 'islanders', \"'\", 'belief', 'in', 'his', '``', 'state', 'of', 'sacredness', \"''\", 'called', '``', 'tapu', \"''\", '.'], ['he', 'began', 'scouting', 'and', 'holding', 'tryout', 'camps', 'for', 'the', 'new', 'team', 'in', 'the', 'fall', 'of', '1', '9', '6', '7', '.'], ['born', 'in', 'jawad', 'of', 'neemuch', 'district', 'in', 'madhya', 'pradesh', 'in', '1', '9', '4', '6', 'he', 'studied', 'b.sc.', ',', 'ma.', ',', 'll.b.', ',', 'ph.d', 'at', 'vikram', 'university', ',', 'ujjain', '.'], ['fielding', \"'s\", 'patron', 'was', 'the', 'opposition', 'whig', 'mp', 'george', 'lyttelton', ',', 'a', 'boyhood', 'friend', 'from', 'eton', '.'], ['the', 'bernheim', 'original', 'wheat', 'whiskey', 'brand', 'introduced', 'by', 'heaven', 'hill', 'in', '2', '0', '0', '5', 'was', 'also', 'named', 'after', 'the', 'bernheim', 'brothers', ',', 'the', 'distilling', 'company', 'they', 'founded', ',', 'and', 'the', 'modern', 'distillery', 'that', 'bears', 'their', 'name', '.'], ['his', 'younger', 'brother', ',', 'virgilio', 'mazzocchi', ',', 'was', 'a', 'less', 'notable', 'roman', 'composer', 'and', 'had', 'a', 'similar', 'career', 'as', 'a', 'vatican', 'music', 'provider', '.'], ['when', '``', 'metamorphosis', 'alpha', \"''\", 'was', 'updated', 'and', 'expanded', 'into', '``', 'gamma', 'world', \"''\", ',', 'it', 'seemed', 'the', 'right', 'time', 'for', 'gygax', 'to', 'reintroduce', '``', 'expedition', 'to', 'the', 'barrier', 'peaks', \"''\", 'to', 'the', 'public', '.'], ['he', 'later', 'studied', 'at', 'a', 'teacher', 'training', 'institute', 'before', 'earning', 'a', 'diploma', 'in', 'theology', 'at', 'epworth', 'theological', 'college', 'in', 'salisbury', '(', 'today', 'harare', ')', '.'], ['indeed', ',', 'rats', 'became', 'a', 'currency', 'in', 'the', 'trade', 'system', 'of', 'the', 'prisoners', 'for', 'other', 'supplies', '.'], ['the', 'faculty', 'consists', 'of', 'principal', ',', '5', '0', 'teachers', 'and', 'two', 'counselors', '.'], ['he', 'is', 'buried', 'in', 'the', 'christian', 'churchyard', 'of', 'nieuwe', 'kerk', 'in', 'the', 'hague', '.'], ['promoted', 'to', 'lieutenant', 'on', '1', '1', 'october', '1', '8', '5', '1', ',', 'he', 'volunteered', 'for', 'a', 'second', 'mission', 'this', 'time', 'in', 'the', 'barque', 'which', 'was', 'despatched', 'in', '1', '8', '5', '2', ',', 'under', 'the', 'command', 'of', 'captain', 'henry', 'kellett', ',', 'in', 'search', 'of', 'franklin', '.'], ['he', 'told', 'his', 'family', 'when', 'he', 'was', '1', '8', 'and', ',', 'after', 'a', 'rocky', 'period', ',', 'they', 'accepted', 'it', '.'], ['the', 'character', 'has', 'been', 'criticized', 'by', 'people', 'who', 'believe', 'that', 'mocks', 'the', 'myopic', 'persons', ',', 'but', 'ibáñez', 'says', 'that', 'he', 'has', 'poor', 'vision', 'himself', 'and', 'does', 'not', 'pretend', 'to', 'do', 'any', 'harm', '.'], ['born', 'in', 'sydney', ',', 'new', 'south', 'wales', ',', 'leuluai', 'is', 'of', 'samoan', 'descent', 'and', 'played', 'his', 'junior', 'rugby', 'league', 'for', 'the', 'minto', 'cobras', '.'], ['(', '1', '2', 'october', ')', ',', 'and', 'was', 'elected', '(', '1', '1', 'december', ')', 'fellow', 'of', 'lincoln', 'on', 'the', 'recommendation', 'of', 'the', 'chancellor', 'of', 'the', 'university', ',', 'oliver', 'cromwell', '.'], ['feeding', 'damage', 'takes', 'the', 'form', 'of', 'holes', 'in', 'the', 'leaves', '.'], ['the', 'other', 'two', 'deputy', 'director-generals', '(', 'housing', ',', 'homelessness', 'and', 'sport', ';', 'building', 'policy', 'and', 'asset', 'management', ')', 'are', 'also', 'supported', 'by', 'their', 'own', 'assistant', 'director-general', '.'], ['they', 'are', 'rather', 'large', ',', 'depressed', 'helicoid', ',', 'well', 'rounded', ',', 'and', 'about', 'half', 'immersed', 'in', 'the', 'first', 'of', 'the', 'succeeding', 'turns', '.'], ['the', 'genus', 'was', 'introduced', 'by', 'the', 'dutch', 'naturalist', 'pieter', 'boddaert', 'in', '1', '7', '8', '3', 'for', 'a', 'single', 'species', ',', 'the', 'crinkle-collared', 'manucode', '(', '``', 'manucodia', 'chalybatus', \"''\", ')', '.'], ['it', 'is', 'part', 'of', 'the', '``', 'nationalpark', 'niedersächsisches', 'wattenmeer', \"''\", '(', 'lower', 'saxony', 'wadden', 'sea', 'national', 'park', ')', ',', 'one', 'of', 'three', 'german', 'wadden', 'sea', 'national', 'parks', '.'], ['as', 'of', 'the', 'census', 'of', '2', '0', '1', '0', ',', 'there', 'were', '1', '0', ',', '4', '2', '8', 'people', 'living', 'in', 'the', 'city', '.'], ['in', '2', '0', '0', '9', ',', 'he', 'was', 'elected', 'as', 'president', 'of', 'the', 'senegal', 'football', 'association', '.'], ['he', 'married', 'volpato', \"'s\", 'daughter', ',', 'and', ',', 'being', 'invited', 'to', 'florence', 'to', 'engrave', 'the', 'masterpieces', 'of', 'the', 'florentine', 'gallery', ',', 'he', 'removed', 'thither', 'with', 'his', 'wife', 'in', '1', '7', '8', '2', '.'], ['a', 'grove', 'of', 'white', 'pine', ',', 'planted', 'by', 'girl', 'scouts', 'in', 'the', 'late', '1', '9', '6', '0', 's', ',', 'offers', 'visitors', 'a', 'cool', ',', 'scented', 'respite', '.'], ['in', 'the', 'quarterfinal', 'round', ',', 'each', 'team', 'played', 'games', 'against', 'the', 'other', 'three', 'teams', 'in', 'its', 'group', '.'], ['in', '1', '8', '4', '0', ',', 'he', 'went', 'to', 'reside', 'in', 'rome', ',', 'where', 'he', 'executed', 'the', '``', 'north', 'american', 'indian', ',', \"''\", 'which', 'was', 'the', 'first', 'distinctive', 'american', 'piece', 'of', 'sculpture', 'made', 'in', 'rome', ',', 'and', 'attracted', 'a', 'large', 'number', 'of', 'italians', 'to', 'his', 'studio', '.'], ['the', 'conservative', 'media', 'in', 'iran', 'hailed', 'ahmadinejad', \"'s\", 'speech', ',', 'while', 'the', 'reformist', 'press', 'focused', 'on', 'the', 'walkout', 'and', 'demonstrations', ',', 'but', 'without', 'criticizing', 'the', 'president', '.'], ['it', 'was', 'part', 'of', 'the', 'larger', 'skagit', 'valley', 'arts', 'community', ',', 'centered', 'on', 'the', 'town', 'of', 'la', 'conner', ',', 'but', 'was', 'rustic', 'and', 'isolated', ',', 'without', 'electricity', 'or', 'plumbing', ',', 'and', 'tended', 'to', 'attract', 'younger', 'and', 'more', 'eccentric', 'artists', '.'], ['the', 'tyler', 'summoned', 'the', 'brethren', '(', 'among', 'them', 'her', 'father', ')', ',', 'and', 'they', 'ultimately', 'decided', 'to', 'initiate', 'her', 'into', 'the', 'lodge', '.'], ['rodoljub', 'čolaković', ',', 'who', 'participated', 'in', 'the', 'capture', 'on', 'the', 'partisan', 'side', ',', 'wrote', 'in', 'his', '1', '9', '6', '2', 'memoir', '``', 'winning', 'freedom', \"''\", ':', '``', 'we', 'had', 'reached', 'a', 'grand', 'and', 'most', 'significant', 'victory', 'in', 'eastern', 'bosnia', '.'], ['the', 'intersection', 'had', 'previously', 'been', 'called', 'kay', \"'s\", 'corner', ',', 'after', 'the', 'w.', 'l.', 'kay', '&', 'amp', ';', 'co.', 'grocers', 'on', 'the', 'southeast', 'corner', '.'], ['acid', 'mine', 'drainage', 'pollutes', 'hundreds', 'of', 'miles', 'of', 'streams', 'in', 'pennsylvania', '.'], ['he', 'was', 'afterward', 'ordered', 'to', 'the', 'south', ',', 'and', 'was', 'surrendered', 'by', 'general', 'lincoln', 'at', 'charleston', 'in', '1', '7', '8', '0', '.'], ['he', 'was', 'a', 'professor', 'and', 'chairman', 'of', 'the', 'department', 'of', 'psychology', 'at', 'the', 'university', 'of', 'indiana', '.'], ['he', 'studied', 'under', 'simon', 'vouet', 'and', 'became', 'a', 'friend', 'of', 'charles', 'le', 'brun', ',', 'who', 'was', 'working', 'in', 'the', 'same', 'studio', '.'], ['after', 'jan', 'jerzy', 'przebendowski', \"'s\", 'death', ',', 'the', 'palace', 'was', 'inherited', 'by', 'his', 'daughter', 'dorothy', 'henrietta', ',', 'then', 'by', 'piotr', 'jerzy', 'przebendowski', '.'], ['other', '2', '0', 'th', 'century', 'excavations', 'focused', 'on', 'skiddy', \"'s\", 'castle', ',', 'a', '1', '5', 'th', 'century', 'tower', 'house', 'which', 'became', 'a', 'gunpowder', 'magazine', 'for', 'a', 'period', ',', 'prior', 'to', 'its', 'demolition', 'in', 'the', 'late', '1', '8', 'th', 'century', '.'], ['during', 'the', 'two', 'years', ',', 'kuenssberg', 'made', 'many', 'trips', 'to', 'london', 'by', 'british', 'rail', 'sleeper', 'and', 'on', 'occasions', 'flew', 'back', 'to', 'edinburgh', 'for', 'an', 'evening', 'surgery', '.'], ['the', 'church', 'has', 'a', 'baroque', 'altarpiece', 'carved', 'of', 'wood', 'by', 'abel', 'schrøder', 'in', '1', '6', '6', '5', '.'], ['intended', 'to', 'pressure', 'president', 'wilson', 'to', 'support', 'an', 'amendment', ',', 'he', 'resisted', 'their', 'demands', 'for', 'years', 'afterward', '.'], ['the', 'orchestra', \"'s\", 'primary', 'concert', 'venue', 'is', 'the', 'bridgewater', 'hall', ',', 'manchester', '.'], ['in', 'the', '2', '0', '0', '7', 'elections', ',', 'the', 'citizens', 'of', 'medicine', 'hat', 'elected', 'one', 'mayor', ',', 'eight', 'aldermen', '(', 'all', 'at', 'large', ')', ',', 'the', 'five', 'medicine', 'hat', 'school', 'district', 'no', '.'], ['robert', 'wodrow', ',', 'the', 'historian', ',', 'was', 'minister', 'at', 'eastwood', '.'], ['under', 'the', 'diplomacy', 'of', 'the', 'military', 'regime', ',', 'there', 'were', 'periodic', 'crises', 'with', 'turkey', ',', 'which', 'suspected', 'that', 'the', 'greek', 'regime', 'was', 'planning', 'a', 'pro-unification', 'coup', 'in', 'cyprus', '.'], ['he', 'died', 'on', '1', '7', 'october', '1', '9', '8', '9', ',', 'aged', '8', '0', ',', 'as', 'the', 'archbishop', 'emeritus', 'of', 'honiara', '.'], ['among', 'the', 'factors', 'for', 'this', 'growth', 'are', 'the', 'opening', 'of', 'br-', '1', '7', '4', '(', 'manaus-boa', 'vista-pacaraima', ')', ',', 'and', 'the', 'development', 'campaign', 'by', 'the', 'government', 'of', 'roraima', ',', 'including', 'the', 'opening', 'of', 'diamond', 'prospecting', '.'], ['the', 'sisters', 'are', 'shown', 'in', 'a', 'house', 'playing', 'their', 'guitars', 'and', 'singing', '.'], ['however', ',', 'despite', 'lack', 'of', 'support', 'from', 'the', 'group', \"'s\", 'record', 'label', ',', 'it', 'soon', 'grew', 'into', 'an', 'underground', 'classic', '.'], ['as', 'a', 'side', 'project', ',', 'guitarist', 'kahuna', 'plays', 'in', 'a', 'sonics', 'tribute', 'band', 'called', 'new', 'original', 'sonic', 'sound', ',', 'featuring', 'members', 'of', 'mudhoney', 'and', 'the', 'young', 'fresh', 'fellows', '.'], ['``', 'los', 'angeles', 'times', \"''\", 'writer', 'mikael', 'wood', 'complimented', 'lorde', 'for', 'being', 'able', 'to', 'create', 'a', '``', 'sense', 'of', 'intimacy', \"''\", 'in', 'such', 'an', '``', 'expansive', 'space', \"''\", '.'], ['malaysia', 'airlines', 'also', 'flew', 'to', 'mexico', 'city', 'between', '1', '9', '9', '4', 'and', '1', '9', '9', '8', 'with', 'fifth-freedom', 'rights', 'to', 'carry', 'passengers', 'between', 'mexico', 'city', 'and', 'los', 'angeles', ',', 'en', 'route', 'to', 'kuala', 'lumpur', '.'], ['there', 'have', 'been', 'new', 'breakthroughs', 'such', 'as', 'chemical', 'vapor', 'depositions', '(', 'cvd', ')', 'along', 'with', 'different', 'variations', 'and', 'tweaks', 'to', 'the', 'existing', 'methods', '.'], ['jasmine', 'gathers', 'evidence', 'and', 'tries', 'to', 'talk', 'to', 'jac', ',', 'who', 'refuses', 'to', 'listen', '.'], ['the', 'bretzfeld', 'located', 'wolpert', 'group', 'karosseriewerke', 'weinsberg', 'acquired', 'kw', 'in', 'december', '2', '0', '0', '9', '.'], ['adjani', 'won', 'in', '1', '9', '7', '5', 'for', '``', 'the', 'story', 'of', 'adele', 'h.', \"''\", ',', 'while', 'cotillard', 'was', 'awarded', 'for', 'her', 'performances', 'in', '``', 'the', 'immigrant', \"''\", 'and', '``', 'two', 'days', ',', 'one', 'night', \"''\", 'in', '2', '0', '1', '4', '.'], ['employees', 'pay', '1', '.', '2', '%', 'of', 'their', 'gross', 'salary', 'below', 'the', 'social', 'security', 'threshold', 'and', 'employers', 'pay', '1', '.', '2', '%', 'contribution', 'on', 'top', 'of', 'the', 'salary', 'paid', 'to', 'the', 'employee', '.'], ['the', 'song', 'was', 'ranked', '4', 'th', ',', 'missing', '3', 'rd', 'place', 'by', '3', 'votes', '.'], ['the', 'next', 'year', ',', 'healthsouth', 'expanded', 'into', 'two', 'new', 'fields', ',', 'worker', \"'s\", 'compensation', 'and', 'sports', 'medicine', ',', 'allowing', 'the', 'company', 'to', 'double', 'its', 'earnings', 'and', 'obtain', 'assets', 'close', 'to', '$', '1', '0', '0', 'million', '.'], ['though', 'danny', 'bonaduce', 'was', 'not', 'part', 'of', 'the', 'session', 'band', ',', 'he', 'also', 'got', 'a', 'recording', 'contract', '.'], ['raj', 'tells', 'her', 'that', 'he', 'can', 'help', 'her', 'out', 'if', 'she', 'agrees', 'to', 'compromise', 'with', 'him', '.'], ['the', 'company', 'specialized', 'in', 'manufacturing', 'parts', ',', 'as', 'well', 'as', 'fixture', 'and', 'toolmaking', '.'], ['their', 'third', 'album', 'and', 'first', 'with', 'marcus', 'vik', ',', '``', 'greyview', \"''\", ',', 'was', 'released', 'on', 'march', '1', '3', ',', '2', '0', '2', '0', '.'], ['``', 'at', '1', '1', ':', '1', '0', 'a.m.', 'the', 'feather', 'river', 'express', 'boomed', 'into', 'decoto', 'at', '5', '0', 'mph', '.'], ['wai-ben', '(', 'meaning', \"'the\", 'dry', 'island', \"'\", ')', 'had', 'no', 'permanent', 'water', 'supply', ',', 'and', 'no', 'permanent', 'kaurareg', 'settlement', 'was', 'established', 'there', '.'], ['in', '1', '9', '9', '9', 'it', 'was', 'reported', 'that', 'telomeres', ',', 'which', 'cap', 'the', 'end', 'of', 'chromosomes', ',', 'terminate', 'in', 'a', 'lariat-like', 'structure', 'termed', 'a', 't-loop', '(', 'telomere-loop', ')', '.'], ['in', '1', '9', '3', '1', 'a', 'cannery', 'near', 'the', 'castle', 'burnt', 'down', 'exposing', 'the', 'foundations', 'of', 'a', 'tower', 'on', 'the', 'north', 'west', 'of', 'the', 'site', 'and', 'during', '1', '9', '3', '6', 'the', 'castle-moat', 'was', 'restored', '.'], ['civilisations', 'active', 'in', 'trading', 'during', 'the', 'road', \"'s\", 'history', 'included', 'scythia', ',', 'ancient', 'and', 'byzantine', 'greece', ',', 'the', 'han', 'and', 'tang', 'dynasties', ',', 'parthia', ',', 'rouran', ',', 'sogdiana', ',', 'göktürks', ',', 'xiongnu', ',', 'yuezhi', 'and', 'the', 'mongol', 'empire', '.'], ['in', 'order', 'to', 'explain', 'how', 'a', 'human', 'views', 'him', 'or', 'herself', ',', 'two', 'different', 'conceptual', 'views', 'of', 'self-perception', 'exist', ':', 'the', 'individualist', 'and', 'collectivistic', 'views', 'of', 'self', '.'], ['he', 'also', 'said', ',', '``', 'it', 'is', 'truly', 'rare', ',', 'even', 'within', 'the', 'religious', 'right', ',', 'to', 'see', 'a', 'group', 'display', 'simultaneously', 'such', 'a', 'poor', 'understanding', 'of', 'history', 'and', 'a', 'remarkable', 'lack', 'of', 'respect', 'for', 'religious', 'diversity', '.'], ['only', 'episodes', '1', 'and', '3', 'of', 'this', 'serial', 'exist', 'in', 'the', 'bbc', 'archives', '.'], ['kaziranga', 'started', 'in', '1', '9', '0', '8', 'as', 'a', 'reserve', 'forest', 'to', 'protect', 'rhinoceros', 'and', 'other', 'wild', 'animals', '.'], ['wolverine', ',', 'who', 'happens', 'to', 'be', 'vacationing', 'on', 'the', 'island', ',', 'recognizes', 'cyber', \"'s\", 'scent', 'on', 'kayla', 'and', 'tracks', 'cyber', 'to', 'the', 'coven', '.'], ['this', 'principle', 'of', '``', 'ketuanan', 'melayu', \"''\", 'had', 'been', 'repeatedly', 'used', 'in', 'successive', 'election', 'by', 'umno', 'to', 'galvanise', 'malay', 'support', 'for', 'the', 'party', '.'], ['country', 'music', 'superstar', 'garth', 'brooks', 'filmed', 'his', 'first', 'television', 'special', ',', '``', 'this', 'is', 'garth', 'brooks', \"''\", ',', 'in', 'the', 'arena', 'on', 'september', '2', '0', ',', '1', '9', '9', '1', '.'], ['allard', 'de', 'la', 'court', ',', 'who', 'inherited', 'most', 'of', 'his', 'father', \"'s\", 'collection', ',', 'describes', 'van', 'wassenaer', \"'s\", 'efforts', 'to', 'acquire', 'the', 'painting', 'at', 'a', 'hefty', 'price', '.'], ['and', 'it', 'was', \"n't\", 'seen', 'as', \"'serious\", \"'\", 'enough', ',', 'perhaps', 'meaning', 'it', 'was', \"n't\", 'seen', 'as', 'commercially', 'viable', 'enough', '...', 'who', 'knows', '.'], ['in', 'atmospheric', 'chemistry', ',', 'the', 'leighton', 'relationship', 'is', 'an', 'equation', 'that', 'determines', 'the', 'concentration', 'of', 'tropospheric', 'ozone', 'in', 'areas', 'polluted', 'by', 'the', 'presence', 'of', 'nitrogen', 'oxides', '.'], ['i', 'wrote', '``', 'the', 'kiss', 'murder', \"''\", 'first', ',', 'but', 'here', 'in', 'uk', 'and', 'in', 'turkey', '``', 'the', 'prophet', 'murders', \"''\", 'was', 'published', 'first', '.'], ['(', 'turin', ',', '1', '8', '5', '4', ')', ';', '``', 'sacre', 'rappresentazioni', 'dei', 'secoli', 'xiv.', ',', 'xv.', ',', 'e', 'xvi', '.', \"''\"], ['the', 'bankruptcy', 'and', 'major', 'restructuring', 'of', 'the', 'boston', 'theatre', 'in', '1', '7', '9', '7', 'would', 'have', 'sent', 'susanna', 'and', 'william', 'to', 'charleston', ',', 'but', 'rather', 'than', 'head', 'south', 'they', 'abandoned', 'the', 'stage', 'after', 'a', 'few', 'summer', 'performances', 'in', 'newport', 'and', 'providence', ',', 'rhode', 'island', '.'], ['these', 'words', 'usually', 'reflected', 'one', 'or', 'another', 'meaning', 'of', 'an', 'ambiguous', 'word', 'or', 'phrase', 'or', 'are', 'unrelated', 'control', 'words', 'in', 'the', 'recorded', 'sentence', '.'], ['in', 'september', '2', '0', '1', '3', ',', 'liwa', 'thuwar', 'al-raqqa', 'pledged', 'allegiance', 'to', 'the', 'al-nusra', 'front', ',', 'part', 'of', 'al-qaeda', '.'], ['the', 'quebec', 'atlantic', 'salmon', 'federation', 'said', 'that', 'the', 'measures', 'did', 'not', 'go', 'nearly', 'far', 'enough', 'in', 'protecting', 'salmon', 'for', 'future', 'generations', '.'], ['the', 'school', 'district', 'is', 'surrounded', 'by', 'the', 'dell', 'rapids', 'school', 'district', '.'], ['three', 'weeks', 'after', 'falco', \"'s\", 'death', 'in', 'a', 'car', 'accident', ',', 'the', 'album', 'was', 'officially', 'released', 'in', 'austria', ',', 'germany', ',', 'switzerland', 'and', 'the', 'netherlands', '.'], ['on', 'one', 'day', 'each', 'week', ',', 'they', 'have', 'to', 'stay', 'behind', 'and', 'are', 'assigned', 'chores', '.'], ['because', 'less', 'time', 'was', 'spent', 'travelling', 'to', 'and', 'from', 'the', 'fishing', 'grounds', ',', 'more', 'time', 'could', 'be', 'spent', 'fishing', '.'], ['put', 'differently', ',', 'the', 'empire', 'had', 'become', 'a', 'part', 'of', 'the', 'european', 'concert', ',', 'but', 'not', 'an', 'actor', 'in', 'the', 'european', 'balance', 'of', 'power', '.'], ['the', 'current', 'champion', 'is', 'oraculo', ',', 'who', 'won', 'the', 'championship', 'on', 'november', '1', ',', '2', '0', '1', '9', ',', 'when', 'he', 'defeated', 'then-champion', 'jonathan', 'gresham', 'in', 'a', 'match', 'that', 'also', 'included', 'black', 'danger', 'and', 'dinámico', '.'], ['a', 'goal', 'of', 'usaid', 'in', 'sudan', 'is', 'to', 'build', 'local', 'sudanese', 'capacity', 'to', 'address', 'the', 'causes', 'and', 'effects', 'of', 'political', 'conflict', ',', 'violence', ',', 'and', 'instability', '.'], ['the', 'latter', 'is', 'responsible', 'for', 'regional', 'routes', 'in', '1', '7', 'municipalities', 'in', 'troms', 'using', '1', '2', '4', 'buses', ',', 'while', 'tromsbuss', 'operates', 'in', 'the', 'city', 'bus', 'in', 'tromsø', 'and', 'ofotens', 'bilruter', 'in', 'ofoten', 'in', 'nordland', '.'], ['from', '2', '0', 'teams', 'in', '1', '9', '8', '2', ',', 'the', 'event', 'now', 'has', 'about', '1', '0', '0', 'teams', 'competing', '.'], ['when', 'santhumala', 'came', 'back', 'to', 'her', 'home', 'and', 'found', 'that', 'the', 'girls', 'were', 'gone', ',', 'she', 'flew', 'into', 'a', 'rage', '.'], ['the', 'park', ',', 'with', 'a', 'separate', 'play', 'area', 'for', 'children', ',', 'is', 'kept', 'open', 'to', 'the', 'public', 'from', '5', 'a.m.', 'to', '8', 'p.m.', 'and', 'is', 'a', 'popular', 'place', 'for', 'morning', 'walks', 'among', 'the', 'locals', '.'], ['commercially', ',', 'fish', 'is', 'landed', 'at', 'only', 'four', 'yorkshire', 'ports', '(', 'bridlington', ',', 'hull', ',', 'scarborough', 'and', 'whitby', ')', 'though', 'not', 'all', 'fish', 'landed', 'at', 'these', 'ports', 'are', 'from', 'fleets', 'registered', 'at', 'those', 'ports', '.'], ['shaw', 'was', 'active', 'during', 'world', 'war', 'i', ',', 'chairing', 'charities', 'such', 'as', 'the', 'lanarkshire', 'prisoners', 'of', 'war', 'relief', 'committee', '.'], ['``', 'better', 'than', 'i', 'found', 'it', \"''\", 'was', 'released', 'december', '9', ',', '2', '0', '1', '6', '.'], ['she', 'was', 'pursuing', 'an', 'acting', 'career', 'until', 'she', 'met', 'emily', 'armstrong', 'in', '2', '0', '0', '2', 'and', 'the', 'two', 'began', 'writing', 'songs', 'together', '.'], ['the', 'cabinet', 'of', 'the', 'prime', 'minister', 'is', 'composed', 'of', 'multiple', 'departments', 'directly', 'responsible', 'to', 'the', 'premier', 'and', 'coordinated', 'by', 'the', 'chief', 'of', 'staff', '.'], ['on', '3', '0', 'december', 'in', 'fog', '2', '8', '0', 'miles', 'south', 'of', 'iceland', 'hx', '9', '7', 'ran', 'into', 'convoy', 'ob', '2', '6', '5', 'coming', 'in', 'the', 'opposite', 'direction', '.'], ['in', 'agreement', 'with', 'the', 'library', 'bill', 'of', 'rights', ',', 'she', 'advocated', 'for', 'more', 'enlightenment', ',', 'not', 'repression', ',', 'to', 'combat', 'the', 'effects', 'of', 'racism', 'and', 'sexism', 'in', 'library', 'materials', '.'], ['the', '``', 'chicago', 'tribune', \"''\", 'has', 'called', 'her', '``', 'a', 'miraculous', 'writer', '.', \"''\"], ['the', 'argentine', 'rap', 'duo', 'illya', 'kuryaki', 'and', 'the', 'valderramas', 'were', 'named', 'after', 'him', '.'], ['jones', 'would', 'join', 'on', 'for', 'two', 'out', 'of', 'the', 'five', 'height', 'tours', 'that', 'occurred', 'throughout', '2', '0', '0', '5', '-', '2', '0', '0', '6', '.'], ['in', 'march', '1', '9', '6', '6', ',', 'factory', 'plant', 'wastewater', 'was', 'reported', 'to', 'be', 'suspected', 'as', 'the', 'source', 'of', 'pollution', ',', 'and', 'in', 'september', ',', 'the', 'ministry', 'of', 'health', 'and', 'welfare', 'announced', 'it', 'had', 'discovered', 'methylmercury', 'in', 'moss', 'at', 'the', 'outlet', 'of', 'the', 'showa', 'denko', 'factory', 'in', 'kanose', 'village', '.'], ['neurological', 'complications', 'occur', 'in', '3', '0', '%', 'to', '5', '0', '%', 'of', 'hiv-infected', 'persons', ',', 'and', 'they', 'can', 'present', 'as', 'the', 'initial', 'symptom', ',', 'throughout', 'the', 'course', 'of', 'the', 'disease', 'or', 'in', 'the', 'advanced', 'stage', '.'], ['in', 'addition', ',', 'the', '``', 'petite', 'rivière', 'yamachiche', \"''\", 'runs', 'for', '1', '6', 'km', 'parallel', 'to', 'the', 'west', 'side', ';', 'this', 'river', 'takes', 'its', 'source', 'in', 'the', 'area', 'of', 'saint-barnabé-nord', '.'], ['the', 'first', 'single', 'from', 'the', 'album', 'was', 'the', 'title', 'track', ',', '``', 'now', 'we', 'can', 'see', \"''\", '.'], ['by', 'the', 'early', '1', '9', '9', '0', 's', ',', 'the', 'company', 'had', 'expanded', 'even', 'more', ',', 'with', 'facilities', 'in', 'each', 'of', 'the', '5', '0', 'u.s.', 'states', 'and', 'revenues', 'in', 'excess', 'of', '$', '1', '8', '1', 'million', '.'], ['he', 'has', 'the', 'mindset', 'that', 'all', 'robots', 'are', 'a', 'threat', 'to', 'humanity', 'and', 'must', 'be', 'fought', 'against', 'for', 'survival', '.'], ['he', 'lost', 'the', 'right', 'to', 'participate', 'in', 'a', 'conclave', 'when', 'he', 'turned', '8', '0', 'years', 'of', 'age', 'in', '1', '9', '9', '9', '.'], ['the', 'ghost', 'of', 'gonzalo', 'appears', 'again', ',', 'and', 'he', 'sets', 'out', 'a', 'table', 'on', 'the', 'cover', 'of', 'a', 'tomb', '.'], ['the', 'last', 'service', 'was', 'held', 'in', 'october', '1', '9', '9', '6', 'by', 'rev', 'r.', 'bob', 'teachout', '.'], ['the', 'building', 'was', 'confiscated', 'and', 'nationalized', 'after', 'the', 'second', 'world', 'war', ',', 'the', 'nuns', 'were', 'expelled', ',', 'and', 'it', 'was', 'used', 'to', 'train', 'police', 'dogs', '.'], ['on', '5', 'april', '2', '0', '1', '3', ',', 'it', 'was', 'revealed', 'that', 'an', 'upcoming', 'storyline', 'would', 'see', 'mrs', 'tembe', 'be', 'given', 'a', 'romance', 'with', 'reverend', 'gordon', 'portrayed', 'by', 'steven', 'elder', '.'], ['however', 'the', 'entire', 'area', 'is', 'surrounded', 'by', 'heavily', 'armed', 'police', ',', 'who', 'shoot', 'henderson', 'dead', '.'], ['the', 'series', 'finale', 'aired', 'on', 'march', '1', '0', ',', '2', '0', '2', '1', '.'], ['their', 'final', 'game', 'saw', 'them', 'take', 'a', '1', '4', '-', '0', 'drubbing', 'against', 'the', 'ingersoll', 'marlands', '.'], ['following', 'the', '1', '8', '6', '7', 'alaska', 'purchase', 'by', 'the', 'united', 'states', ',', 'the', 'island', 'became', 'part', 'of', 'the', 'united', 'states', '.'], ['the', 'museum', 'is', 'located', 'in', 'jinkou', 'subdistrict', 'of', 'wuhan', \"'s\", 'suburban', 'jiangxia', 'district', ',', 'some', '2', '5', 'km', 'southwest', 'of', 'downtown', 'wuchang', '.'], ['he', 'was', 'arrested', ',', 'and', 'led', 'to', 'the', 'tihany', 'abbey', '.'], ['his', 'designs', 'were', 'born', 'of', 'craft', ',', 'not', 'technology', ',', 'inspired', 'by', 'natural', 'materials', ',', 'informed', 'by', 'a', 'personal', 'artistic', 'expression', 'yet', 'firmly', 'committed', 'to', 'principles', 'of', 'humanism', ',', 'function', ',', 'responsive', 'to', 'the', 'patron', ',', 'context', 'and', 'climate', ';', 'for', 'the', 'pleasure', 'of', 'use', '.'], ['it', 'also', 'refers', 'to', 'the', 'kʼicheʼ', 'rulers', 'forcing', 'the', 'king', 'qʼuicab', 'the', 'great', 'to', 'leave', '``', 'chaiviar', \"''\", '(', 'chichicastenango', ')', ',', 'and', 'migrate', 'to', 'the', '``', 'ratzamut', 'mountains', \"''\", 'to', 'found', 'iximché', ',', 'which', 'remained', 'the', 'new', 'kaqchikel', 'capital', 'until', 'the', 'arrival', 'of', 'the', '``', 'conquistadores', \"''\", '.'], ['in', '2', '0', '0', '9', ',', 'he', 'appeared', 'in', '``', 'flashpoint', \"''\", 'in', 'the', 'episode', '``', 'the', 'farm', \"''\", '.'], ['the', 'eastern', 'catholic', 'italo-byzantine', 'or', 'italo-albanian', 'catholic', 'church', 'was', 'set', 'up', 'to', 'enable', 'them', 'to', 'keep', 'orthodox', 'traditions', 'within', 'the', 'catholic', 'church', ';', 'it', 'now', 'has', 'some', '7', '0', ',', '0', '0', '0', 'members', ',', 'not', 'all', 'in', 'italy', '.'], ['also', 'known', 'as', '``', 'jodhpuri', 'suit', \"''\", ',', 'it', 'is', 'a', 'western', 'style', 'suit', 'product', ',', 'with', 'a', 'coat', 'and', 'a', 'trouser', ',', 'at', 'times', 'accompanied', 'by', 'a', 'vest', '.'], ['born', 'in', 'palo', 'alto', ',', 'california', 'to', 'oliver', ',', 'a', 'stanford', 'professor', ',', 'and', 'florence', 'johnston', ',', 'johnston', 'had', 'two', 'older', 'sisters', ',', 'winifred', 'and', 'florence', '.'], ['this', 'is', 'acceptable', 'as', 'locally', 'defined', 'functions', 'implement', 'the', 'full', 'power', 'of', 'closures', 'and', 'are', 'almost', 'as', 'efficient', 'as', 'the', 'use', 'of', 'a', 'lambda', 'in', 'python', '.'], ['however', ',', 'president', 'barack', 'obama', 'publicly', 'opposed', 'the', 'legislation', 'on', 'october', '7', ',', '2', '0', '1', '0', '.'], ['there', 'is', 'also', 'a', 'booster', 'station', 'in', 'martinez', ',', 'california', 'called', 'koit-', '3', 'that', 'improves', 'the', 'coverage', 'in', 'the', 'diablo', 'valley', 'area', '.'], ['the', 'museum', 'was', 'founded', 'in', 'order', 'to', 'show', 'dutch', 'overseas', 'possessions', ',', 'and', 'the', 'inhabitants', 'of', 'these', 'foreign', 'countries', ',', 'such', 'as', 'indonesia', '.'], ['she', 'was', 'awarded', 'an', 'mfa', 'in', 'painting', 'from', 'the', 'university', 'of', 'minnesota', 'in', '2', '0', '0', '3', ',', 'where', 'she', 'received', 'a', 'graduate', 'school', 'fellowship', '.'], ['there', 'is', 'a', 'narrow', 'white', 'dorsal', 'streak', 'about', 'the', 'apical', 'fourth', 'of', 'the', 'wing-length', 'pointing', 'a', 'little', 'obliquely', 'backward', ',', 'and', 'indistinctly', 'connected', 'with', 'a', 'nearly', 'square', 'costal', 'white', 'spot', ',', 'which', 'is', 'a', 'little', 'farther', 'back', 'than', 'the', 'dorsal', 'streak', '.'], ['there', 'is', 'also', 'an', 'adaptation', 'to', 'use', 'key', 'for', 'the', 'symbolic', 'execution', 'of', 'abstract', 'state', 'machines', ',', 'that', 'was', 'developed', 'at', 'eth', 'zürich', '.'], ['on', 'september', '2', '6', ',', 'clinton', 'acknowledged', 'a', 'possible', 'link', 'between', 'al-qaeda', 'in', 'the', 'islamic', 'maghreb', 'and', 'the', 'benghazi', 'attack', '.'], ['solomon', 'wilcots', '(', 'born', 'october', '9', ',', '1', '9', '6', '4', ')', 'is', 'a', 'former', 'american', 'football', 'free', 'safety', 'in', 'the', 'nfl', ',', 'a', 'current', 'national', 'television', 'analyst', 'and', 'broadcaster', 'as', 'well', 'as', 'a', 'head', 'coach', 'in', 'your', 'call', 'football', '.'], ['at', 'first', '1', '0', '0', 'grams', 'of', 'cheese', 'were', 'allotted', 'every', 'two', 'weeks', ';', 'the', 'meat', 'coupons', 'became', 'worthless', '.'], ['in', 'december', '2', '0', '1', '1', ',', 'sea', 'world', 'welcomed', 'a', 'gentoo', 'penguin', 'chick', 'to', 'the', 'exhibit', 'making', 'the', 'exhibit', 'feature', '1', '7', 'gentoo', 'and', '8', 'king', 'penguins', '.'], ['these', 'types', 'of', 'shelters', 'are', 'typically', 'prefabricated', 'and', 'installed', 'on', 'a', 'home', 'site', 'or', 'commercial', 'location', '.'], ['after', 'the', 'season', ',', 'he', 'signed', 'a', 'new', 'contract', 'to', 'play', 'for', 'wigan', 'warriors', ',', 'shortly', 'after', 'his', 'brother', 'joel', 'had', 'agreed', 'to', 'switch', 'codes', 'and', 'play', 'rugby', 'union', 'for', 'saracens', 'f.c', '.'], ['additionally', ',', 'the', 'characters', 'are', 'often', 'impolite', 'towards', 'each', 'other', '.'], ['like', 'the', '``', 'popol', 'vuh', \"''\", ',', 'the', '``', 'annals', \"''\", 'also', 'identifies', 'the', 'almost', 'legendary', 'tulan', 'as', 'the', 'place', 'from', 'which', 'they', 'all', 'set', 'out', ',', 'at', 'least', 'at', 'one', 'point', 'in', 'their', 'various', 'migrations', '.'], ['most', 'recently', 'franklin', 'directed', 'the', 'animated', 'version', 'of', 'the', 'fan', 'favorite', 'and', 'cult', 'classic', ',', 'graphic', 'novel', ',', 'prison', 'pit', ',', 'written', 'by', 'johnny', 'ryan', 'and', 'published', 'by', 'fantagraphics', '.'], ['from', '1', '9', '1', '7', 'until', '1', '9', '6', '2', ',', 'the', 'democratic', 'party', 'in', 'the', 'u.s.', 'state', 'of', 'georgia', 'used', 'a', 'voting', 'system', 'called', 'the', 'county', 'unit', 'system', 'to', 'determine', 'victors', 'in', 'statewide', 'primary', 'elections', '.'], ['the', 'company', 'was', 'particularly', 'interested', 'in', 'the', 'eureka', 'creek', 'mines', ',', 'which', 'had', 'been', 'abandoned', 'by', 'tin', 'workers', 'in', 'the', 'early', '1', '8', '9', '0', 's', 'due', 'to', 'high', 'transport', 'costs', '.'], ['he', 'attended', 'livermore', 'high', 'school', 'where', 'he', 'was', 'a', 'four', 'year', 'varsity', 'soccer', 'player', '.'], ['julie', 'doolittle', 'has', 'received', 'a', 'subpoena', 'from', 'the', 'grand', 'jury', 'investigating', 'jack', 'abramoff', ',', 'according', 'to', 'her', 'lawyer', '.'], ['students', 'take', 'some', 'of', 'the', 'first', 'term', '(', '1', '3', 'weeks', ')', 'in', 'separate', 'classes', 'specifically', 'designed', 'for', 'extended', 'foundation', 'students', 'with', 'a', 'focus', 'on', 'key', 'competencies', ',', 'skills', 'and', 'content', 'essential', 'for', 'success', 'at', 'foundation', 'level', '.'], ['she', 'was', 'married', 'to', 'film', 'director', 'and', 'writer', 'edward', 'dmytryk', ',', 'who', 'was', 'one', 'of', 'the', 'hollywood', 'ten', ',', 'the', 'most', 'prominent', 'blacklisted', 'group', 'in', 'the', 'film', 'industry', 'during', 'the', 'mccarthy-era', '.'], ['agent', '5', '1', 'was', 'an', 'american', 'punk', 'rock', 'band', 'from', 'poway', ',', 'california', ',', 'formed', 'in', '1', '9', '9', '5', '.'], ['lance', 'had', 'told', 'reno', 'that', 'if', 'he', 'got', 'j.j.', 'out', 'of', 'the', 'way', ',', 'then', 'lance', 'would', 'get', 'approval', 'to', 'build', 'the', 'casino', '.'], ['pather', 'is', 'also', 'only', 'a', 'few', 'minutes', 'away', 'from', 'wishaw', 'sports', 'centre', 'and', 'wishaw', 'train', 'station', 'as', 'well', 'as', 'tesco', 'extra', 'supermarket', 'and', 'mcdonald', \"'s\", 'and', 'other', 'fast', 'food', 'establishments', 'and', 'petrol', 'filling', 'stations', 'and', 'the', 'local', 'recycling', 'centre', 'is', 'not', 'far', '.'], ['he', 'was', 'appointed', 'secretary', 'of', 'state', 'for', 'wales', 'on', '4', 'september', '2', '0', '1', '2', ',', 'following', 'david', 'cameron', \"'s\", 'first', 'cabinet', 'reshuffle', ',', 'and', 'removed', 'from', 'office', 'in', 'another', 'reshuffle', 'on', '1', '4', 'july', '2', '0', '1', '4', '.'], ['arthur', 'capell', \"'s\", 'eldest', 'son', ',', 'also', 'called', 'arthur', 'capell', ',', 'inherited', 'both', 'the', 'hadham', 'and', 'cassiobury', 'estates', '.'], ['variants', 'of', 'the', 'm', '1', '8', '4', '1', 'bronze', '6', '-pounder', 'were', 'also', 'manufactured', 'in', 'the', 'confederacy', 'though', 'records', 'are', 'sketchy', '.'], ['another', 'popular', 'theory', 'is', 'loop', 'quantum', 'gravity', '(', 'lqg', ')', ',', 'which', 'describes', 'quantum', 'properties', 'of', 'gravity', 'and', 'is', 'thus', 'a', 'theory', 'of', 'quantum', 'spacetime', '.'], ['it', 'is', 'also', 'possible', 'to', 'have', 'a', '1', 'in', 'an', 'online', 'counter', ',', 'and', 'a', 'check', 'against', 'a', 'hot', 'card', 'list', '(', 'which', 'is', 'only', 'necessary', 'for', 'off-line', 'transactions', ')', '.'], ['the', 'glacially-formed', 'adam', 'run', 'valley', 'is', 'home', 'to', 'an', 'unusual', 'plant', 'called', 'rush', ',', 'which', 'lines', 'the', 'banks', 'of', 'the', 'stream', '.'], ['it', 'resulted', 'in', 'creation', 'of', 'several', 'groups', ',', 'mostly', 'youth', ',', 'of', 'prayer', 'and', 'material', 'support', '.'], ['the', 'songs', 'are', 'often', 'based', 'on', 'the', 'medieval', 'and', 'modern', 'poetry', 'of', 'azerbaijan', ',', 'and', 'although', 'love', 'is', 'a', 'common', 'topic', 'in', 'these', 'poems', ',', 'to', 'the', 'uninitiated', 'ear', 'many', 'of', 'the', 'intricacies', 'and', 'allusions', 'are', 'lost', '.'], ['duplessis', \"'s\", 'first', 'government', 'was', 'defeated', 'in', 'the', '1', '9', '3', '9', 'election', ',', 'a', 'snap', 'election', 'called', 'by', 'the', 'premier', 'in', 'hopes', 'of', 'exploiting', 'the', 'issue', 'of', 'canadian', 'participation', 'in', 'world', 'war', 'ii', '.'], ['the', '1', '9', '7', '3', 'new', 'zealand', 'open', ',', 'also', 'known', 'as', 'benson', 'and', 'hedges', 'open', 'for', 'sponsorship', 'reasons', ',', 'was', 'a', 'combined', 'men', \"'s\", 'and', 'women', \"'s\", 'professional', 'tennis', 'tournament', 'held', 'in', 'auckland', ',', 'new', 'zealand', '.'], ['athletic', 'shooting', 'sports', 'are', 'hybrid', 'events', 'of', 'normally', 'stationary', 'shooting', 'sport', 'competitions', 'and', 'the', 'sport', 'of', 'athletics', 'or', 'other', 'physically', 'demanding', 'non-shooting', 'sports', '.'], ['in', '2', '0', '1', '3', ',', 'barbacena', 'joined', 'the', 'cast', 'of', '``', 'bubble', 'gang', \"''\", 'where', 'she', 'had', 'done', 'many', 'comedy', 'skits', 'including', 'spoofing', 'yaya', 'dub', ',', 'the', 'character', 'of', 'maine', 'mendoza', 'in', '``', 'kalyeserye', '.', \"''\"], ['that', 'year', ',', 'despite', 'the', 'ambitions', 'of', 'its', 'owners', 'to', 'create', 'a', 'local', 'station', ',', 'xhch', 'became', 'an', 'affiliate', 'of', 'televisión', 'independiente', 'de', 'méxico', '.'], ['the', 'catholic', 'parish', '``', 'st.', 'kilian', \"''\", 'massenbachhausen', 'is', 'responsible', 'for', 'massenbachhausen', 'and', 'massenbach', '.'], ['the', 'last', 'one', 'endures', 'for', 'a', 'record', 'duration', 'of', 'four', 'hours', '.'], ['in', 'the', 'event', 'of', 'an', 'investiture', 'process', 'failing', 'to', 'elect', 'a', 'regional', 'president', 'within', 'a', 'two-month', 'period', 'from', 'the', 'first', 'ballot', ',', 'the', 'parliament', 'was', 'to', 'be', 'automatically', 'dissolved', 'and', 'a', 'fresh', 'election', 'called', '.'], ['on', '1', '4', 'august', '1', '9', '9', '4', ',', '8', '0', 'of', 'the', '1', '1', '6', 'seats', 'in', 'the', 'national', 'congress', 'came', 'up', 'for', 'election', ',', 'unusual', 'in', 'guatemala', 'where', 'the', 'members', 'of', 'congress', 'normally', 'stand', 'for', 'election', 'to', 'coincide', 'with', 'the', 'presidential', 'election', '.'], ['customers', 'may', 'need', 'to', 'attend', 'a', 'bank', 'branch', 'for', 'a', 'wide', 'range', 'of', 'banking', 'transactions', 'including', 'cash', 'withdrawals', 'and', 'financial', 'advice', '.'], ['in', 'military', 'science', ',', 'there', 'are', 'two', 'meanings', 'to', 'morale', '.'], ['akor', 'started', 'his', 'career', 'in', 'his', 'homeland', 'of', 'nigeria', 'with', 'prime', 'f.c.', ',', 'where', 'he', 'scored', 'seven', 'goals', 'in', 'six', 'games', 'during', 'the', '2', '0', '1', '2', 'federation', 'cup', '.'], ['the', 'boxer', 'and', 'mma', 'fighter', 'aravena', 'replied', ':', '``', 'so', 'i', 'can', 'get', 'smacked', 'around', '?'], ['she', 'was', 'used', 'to', 'carry', 'bulk', 'cargo', 'for', 'trade', 'until', '1', '9', '2', '1', ',', 'when', 'she', 'was', 'sold', 'and', 'scrapped', 'as', 'a', 'breakwater', 'in', 'cuba', '.'], ['the', 'group', \"'s\", 'sixth', 'ep', ',', '``', 'badman', \"''\", ',', 'was', 'released', 'on', 'august', '6', 'with', 'the', 'promotional', 'singles', '``', 'coffee', 'shop', \"''\", ',', '``', 'hurricane', \"''\", 'and', '``', 'badman', \"''\", '.'], ['he', 'brought', 'her', 'to', 'canada', 'and', 'after', 'five', 'years', 'they', 'divorced', 'amicably', '.'], ['places', 'where', 'portaging', 'occurred', 'often', 'became', 'temporary', 'and', 'then', 'permanent', 'settlements', '(', 'such', 'as', 'hull', ',', 'quebec', ';', 'sault', 'ste', '.'], ['construction', 'was', 'started', 'in', 'the', 'wyżyny', 'district', 'on', '3', 'may', '1', '9', '7', '1', '.'], ['his', 'currie', 'cup', 'debut', 'came', 'later', 'in', 'the', 'same', 'year', ',', 'when', 'he', 'was', 'included', 'in', 'the', 'blue', 'bulls', 'starting', 'team', 'to', 'face', 'in', 'the', 'opening', 'match', 'of', 'the', '2', '0', '1', '3', 'currie', 'cup', 'premier', 'division', 'season', '.'], ['as', 'the', 'other', 'cargotram', 'was', 'also', 'not', 'in', 'service', 'at', 'that', 'time', ',', 'this', 'accident', 'eventually', 'was', 'the', 'end', 'of', 'service', 'for', 'the', 'cargotram', '.'], ['oyem', 'is', 'located', '4', '1', '1', 'kilometers', 'away', 'from', 'the', 'national', 'capital', ',', 'libreville', '.'], ['the', 'commission', ',', 'in', 'agreement', 'with', 'the', 'european', 'council', 'and', 'the', 'european', 'parliament', ',', 'agreed', 'on', 'a', 'joint', 'statement', 'to', 'condemn', 'the', 'attacks', 'and', 'designated', '1', '4', 'september', '2', '0', '0', '1', 'as', 'a', 'day', 'of', 'mourning', 'in', 'member', 'states', 'and', 'eu', 'institutions', '.'], ['several', 'versions', 'of', 'cosmology', 'can', 'be', 'found', 'in', 'existing', 'hindu', 'texts', '.'], ['seretse', 'khama', 'received', 'the', 'most', 'votes', 'in', 'the', 'election', 'for', 'the', 'black', 'representatives', '.'], ['he', 'was', 'also', 'a', 'key', 'contributor', 'to', 'the', 'development', 'of', 'the', 'transformative', 'educational', 'project', 'called', '``', 'learning', 'communities', \"''\", '.'], ['it', 'is', 'located', 'in', 'the', 'huzur', 'tehsil', 'and', 'the', 'phanda', 'block', '.'], ['with', 'its', '1', '3', 'lines', ',', 'route', 'length', 'of', 'and', '5', '1', '0', 'tram', 'stops', ',', 'the', 'network', 'is', 'currently', 'the', 'third', 'biggest', 'in', 'germany', ',', 'after', 'the', 'cologne', 'and', 'berlin', 'tramway', 'networks', '.'], ['unlike', 'simultaneous', 'multithreading', 'in', 'modern', 'superscalar', 'architectures', ',', 'it', 'generally', 'does', 'not', 'allow', 'execution', 'of', 'multiple', 'instructions', 'in', 'one', 'cycle', '.'], ['the', 'building', 'of', 'houses', 'from', 'timber', 'posed', 'a', 'fire', 'risk', ',', 'and', 'declined', 'after', 'may', '1', '6', '2', '2', ',', 'when', 'a', 'lightning', 'strike', 'on', 'north', 'main', 'street', 'resulted', 'in', 'a', 'loss', 'of', '1', '5', '0', '0', 'houses', 'in', 'the', 'city', '.'], ['this', 'action', 'was', 'halted', 'by', 'international', 'diplomacy', 'but', 'although', 'the', 'rebel', 'croatian', 'serbs', 'brought', 'reinforcements', 'forward', 'fairly', 'quickly', ',', 'the', 'strength', 'of', 'the', 'croatian', 'forces', 'proved', 'superior', '.'], ['the', 'three', 'sisters', 'established', 'a', 'convent', 'which', 'contained', 'an', 'orphanage', 'and', 'school', 'in', 'penang', 'that', 'same', 'year', '.'], ['the', 'maldive', 'anemonefish', 'is', 'found', 'in', 'the', 'western', 'indian', 'ocean', 'in', 'the', 'maldive', 'islands', ',', 'laccadive', 'islands', ',', 'and', 'sri', 'lanka', '.'], ['the', 'place', 'is', 'most', 'notable', 'for', 'its', 'scenic', 'situation', 'in', 'the', 'high', ',', 'remote', 'coldbrook', 'valley', 'of', 'the', 'town', 'of', 'spafford', '.'], ['the', 'first', 'smuttynose', 'pints', 'were', 'poured', 'on', 'july', '1', '4', ',', '1', '9', '9', '4', ',', 'along', 'portsmouth', \"'s\", 'historic', 'waterfront', '.'], ['partnered', 'with', 'jonas', 'blixt', ',', 'they', 'won', 'the', '2', '0', '1', '7', 'zurich', 'classic', 'of', 'new', 'orleans', '.'], ['minang', 'traditional', 'musical', 'instruments', '(', 'see', 'description', 'below', ')', ',', 'namely', ':', 'saluang', ',', 'agung', ',', 'gondang', ',', 'rebana', ',', 'serunai', ',', 'talempong', ',', 'rebab', ',', 'bansi', '.'], ['abc', 'which', 'over', 'the', 'past', '1', '0', '0', 'years', 'has', 'been', 'synonymous', 'with', 'textile', 'manufacturing', 'in', 'africa', 'and', 'europe', 'for', 'english', 'wax', '.'], ['the', 'total', 'speakers', 'of', 'khotta', 'bhasha', 'is', 'about', '1', '0', 'lakhs', 'in', 'the', 'state', 'of', 'west', 'bengal', '.'], ['pierre', 'lalonde', 'received', 'quebec', \"'s\", 'medal', 'of', 'honour', 'of', 'the', 'national', 'assembly', 'in', '2', '0', '1', '1', 'for', 'his', 'artistic', 'contributions', '.'], ['``', '1', '3', 'lakes', \"''\", ',', '``', 'ten', 'skies', \"''\", ',', 'and', '``', '2', '7', 'years', 'later', \"''\", ',', 'the', 'three', '2', '0', '0', '5', 'productions', 'of', 'james', 'benning', '.'], ['her', 'male', 'flatmates', 'found', 'her', 'at', 'home', 'hours', 'later', ',', 'bruised', ',', 'swollen', 'and', 'semi-conscious', '.'], ['gauley', 'mills', 'is', 'an', 'unincorporated', 'community', 'in', 'webster', 'county', ',', 'west', 'virginia', ',', 'united', 'states', '.'], ['the', 'wildcat', 'hides', 'inside', 'a', 'fortune', 'teller', \"'s\", 'hut', 'and', 'pepé', ',', 'disguised', 'as', 'a', 'swami', ',', 'predicts', 'to', 'her', 'that', 'she', 'will', 'meet', 'a', 'fine', 'gentleman', '.'], ['designed', 'as', 'a', 'heavy', 'tank', ',', 'the', 'pershing', 'was', 'a', 'significant', 'upgrade', 'from', 'the', 'm', '4', 'sherman', 'in', 'terms', 'of', 'firepower', ',', 'protection', ',', 'and', 'mobility', '.'], ['it', 'reviews', ',', 'on', 'the', 'other', 'hand', ',', 'said', 'of', 'the', 'same', 'console', 'version', ',', '``', 'the', '3', 'd', 'glasses', 'bundled', 'in', 'are', 'a', 'gimmick', 'at', 'best', ',', 'a', 'one-way', 'trip', 'to', 'a', 'headache', 'at', 'worst', '.', \"''\"], ['the', 'higher-flowing', 'intake', 'ports', 'stepped', 'up', 'intake', 'flow', 'dramatically', 'in', 'comparison', 'to', 'the', 'original', 'la', 'heads', ',', 'and', 'the', 'exhaust', 'ports', 'improved', 'cylinder', 'evacuation', 'as', 'well', '.'], ['at', 'a', 'large', 'sheep', 'farm', ',', 'he', 'joined', 'a', 'hunting', 'party', 'and', 'caught', 'his', 'first', 'marsupial', ',', 'a', '``', 'potoroo', \"''\", '(', 'rat-kangaroo', ')', '.'], ['instead', 'of', 'storing', 'the', 'augmented', 'lists', 'in', 'arrays', ',', 'they', 'should', 'be', 'stored', 'as', 'binary', 'search', 'trees', ',', 'so', 'that', 'these', 'changes', 'can', 'be', 'handled', 'efficiently', 'while', 'still', 'allowing', 'binary', 'searches', 'of', 'the', 'augmented', 'lists', '.'], ['a', 'new', 'multilateral', 'framework', 'and', '``', 'multi-polar', 'system', \"''\", 'for', 'managing', 'capital', 'flows', 'and', 'national', 'debts', 'is', 'also', 'called', 'for', ',', 'but', 'the', 'imf', 'cautions', 'that', 'it', 'prefers', 'a', 'gradual', 'shift', 'to', 'this', 'new', 'framework', ',', 'rather', 'than', 'a', 'sudden', 'change', '.'], ['post', 'holes', ',', 'a', 'sunken', 'area', 'and', 'concentrations', 'of', 'flints', ',', 'burning', 'and', 'other', 'artefacts', 'indicate', 'the', 'presence', 'of', 'a', 'structure', 'approximately', 'wide', '.'], ['nacto', 'guidelines', 'state', '``', 'desired', 'width', 'for', 'a', 'cycle', 'track', 'should', 'be', '5', 'feet', '(', '1', '.', '5', 'm', ')', '.'], ['the', 'authors', 'describe', 'that', 'laws', 'making', 'enslavement', 'an', 'inheritable', 'status', 'increased', 'the', 'scrutiny', 'of', 'black', 'women', 'and', 'forced', 'them', 'into', 'bearing', 'children', 'for', 'the', 'economic', 'gain', 'of', 'their', 'enslavers', '.'], ['the', 'planetary', 'nebula', 'rcw', '4', '4', '(', 'also', 'known', 'as', 'wray', '1', '7', '-', '3', '1', 'or', 'eso', '1', '6', '6', '-', '2', '1', ')', 'lies', '5', '1', 'arcminutes', 'to', 'northeast', 'and', 'is', 'probably', 'not', 'related', 'with', 'the', 'cluster', '.'], ['with', 'their', 'tight', 'musicianship', 'and', 'the', 'often', 'outrageous', 'humor', 'in', 'their', 'music', 'and', 'lyrics', ',', 'lunceford', \"'s\", 'orchestra', 'made', 'an', 'ideal', 'band', 'for', 'the', 'club', ',', 'and', 'lunceford', \"'s\", 'reputation', 'began', 'to', 'steadily', 'grow', '.'], ['it', 'is', 'a', 'farce', 'in', 'which', 'a', 'respectable', 'group', 'of', 'english', 'campers', 'are', 'innocently', 'enjoying', 'themselves', 'at', 'a', '1', '9', '6', '0', 's', 'holiday', 'camp', 'before', 'catastrophe', 'strikes', 'and', 'they', 'find', 'themselves', 'fighting', 'against', 'the', 'camp', \"'s\", 'demonic', ',', 'rigid', ',', 'moral', 'and', 'patronising', 'manager', ',', '``', 'erpingham', \"''\", '.'], ['in', 'this', 'way', ',', 'fishes', 'with', 'increasing', 'sizes', 'evolved', 'during', 'the', 'early', 'paleozoic', ',', 'such', 'as', 'the', 'titanic', 'placoderm', '``', 'dunkleosteus', \"''\", ',', 'which', 'could', 'grow', 'long', '.'], ['his', 'role', 'as', 'the', 'secretary', 'youth', 'affairs', 'involved', 'oversight', 'of', 'youth-related', 'functions', 'of', 'the', 'government', 'of', 'kenya', 'including', 'the', 'uwezo', 'fund', ',', 'youth', 'enterprise', 'development', 'fund', ',', 'the', 'national', 'youth', 'service', 'and', 'the', 'kenya', 'national', 'volunteers', 'programme', '.'], ['this', 'was', 'an', 'enormous', 'county', ',', 'including', 'the', 'northern', 'part', 'of', 'new', 'york', 'state', 'as', 'well', 'as', 'all', 'of', 'the', 'present', 'state', 'of', 'vermont', 'and', ',', 'in', 'theory', ',', 'extending', 'westward', 'to', 'the', 'pacific', 'ocean', '.'], ['shiner', 'was', 'not', 'intimidated', 'and', 'firmly', 'denied', 'any', 'wrong', 'doing', 'by', 'himself', 'or', 'shepherd', '.'], ['she', 'has', 'an', 'ms', 'in', 'strategic', 'studies', 'from', 'the', 'united', 'states', 'army', 'war', 'college', '.'], ['thousands', 'of', 'slaves', 'were', 'imported', 'to', 'work', 'on', 'plantations', 'producing', 'rice', ',', 'indigo', ',', 'and', 'sugar', '.'], ['a', 'possibly', 'apocryphal', 'story', 'records', 'a', 'visit', 'by', 'the', 'colour-loving', 'gardener', 'christopher', 'lloyd', ',', 'during', 'which', 'he', 'is', 'supposed', 'to', 'have', 'scattered', 'seeds', 'of', 'brightly', 'coloured', 'nasturtiums', 'across', 'the', 'lawn', '.'], ['when', 'he', 'returned', ',', 'he', 'played', 'for', 'san', 'jose', 'where', 'he', 'batted', '.', '2', '5', '7', '/', '3', '2', '3', '/', '3', '4', '0', 'with', 'two', 'home', 'runs', 'and', '2', '0', 'rbis', 'in', '4', '1', 'games', '.'], ['the', 'team', 'announced', 'a', 'partial', 'schedule', 'for', 'the', '2', '0', '0', '8', 'indycar', 'series', 'season', 'that', 'will', 'include', 'the', 'indianapolis', '5', '0', '0', '.'], ['she', 'formed', 'a', 'close', 'alliance', 'with', 'a', 'related', 'family', ',', 'whose', 'leader', 'joão', 'guterres', 'ngola', 'kanini', ',', 'became', 'one', 'of', 'her', 'most', 'important', 'councillors', '.'], ['i', 'said', 'i', 'would', 'provide', 'straps', 'on', 'top', 'of', 'the', 'structure', 'that', 'would', 'take', 'all', 'the', 'forces', 'outside', 'to', 'the', 'walls', '.'], ['when', 'dockery', 'was', 'term-limited', 'in', '2', '0', '1', '2', ',', 'stargel', 'ran', 'to', 'succeed', 'her', ',', 'creating', 'an', 'open', 'seat', 'in', 'the', '3', '9', 'th', 'district', ',', 'and', 'combee', 'once', 'again', 'declared', 'his', 'candidacy', '.'], ['the', 'application', 'for', 'these', 'systems', 'are', 'not', 'only', 'limited', 'to', 'car', 'manufacturers', ',', 'but', 'third', 'party', 'technological', 'companies', 'as', 'well', '.'], ['unlike', '``', 'honolulu', \"''\", ',', '``', 'northampton', \"''\", 'did', 'not', 'increase', 'speed', 'or', 'attempt', 'any', 'radical', 'maneuvers', '.'], ['night', 'mode', 'has', 'been', 'improved', ',', 'and', 'the', 'mate', '3', '0', 'pro', 'can', 'take', '4', 'k', 'hdr', 'plus', 'time-lapse', 'and', 'ultraslow-motion', 'video', ',', 'shooting', '7', '2', '0', 'p', 'at', '7', '6', '8', '0', 'frames', 'per', 'second', '.'], ['hansen', 'won', 'three', 'matches', 'at', 'the', '1', '9', '0', '4', 'olympics', 'and', 'won', 'a', 'gold', 'medal', 'in', 'heavyweight', 'category', '.'], ['famous', 'politicians', 'native', 'to', 'the', 'area', 'include', 'ulysses', 's.', 'grant', ',', 'ronald', 'reagan', ',', 'barack', 'obama', ',', 'j.', 'dennis', 'hastert', ',', 'donald', 'rumsfeld', ',', 'hillary', 'clinton', ',', 'and', 'mayors', 'richard', 'j.', 'daley', 'and', 'richard', 'm.', 'daley', '.'], ['rings', 'are', 'usually', 'mild', 'carbon', 'steel', ',', 'astm', 'a', '3', '6', 'plate', ',', 'or', 'equivalent', '.'], ['silverton', 'is', 'an', 'unincorporated', 'community', 'located', 'within', 'the', 'north-eastern', 'portion', 'of', 'toms', 'river', 'township', 'in', 'ocean', 'county', ',', 'new', 'jersey', ',', 'united', 'states', '.'], ['in', '1', '9', '3', '0', ',', 'she', 'was', 'the', 'first', 'woman', 'to', 'be', 'elected', 'to', 'lanarkshire', 'county', 'council', '.'], ['its', 'architect', ',', 'jean-eugène', 'fromageau', ',', 'who', 'had', 'been', 'appointed', 'the', 'chief', 'architect', 'for', 'ecclesiastical', 'buildings', 'in', 'french', 'algeria', 'in', '1', '8', '5', '9', ',', 'employed', 'a', 'neo-byzantine', 'style', '.'], ['it', 'is', 'solely', 'administrated', 'by', 'russia', 'and', 'is', 'the', 'only', 'part', 'of', 'the', 'aforementioned', 'country', 'located', 'in', 'asia', '.'], ['ky', '3', '6', '3', '0', 'heads', 'through', 'more', 'rural', 'areas', 'with', 'some', 'development', 'before', 'coming', 'to', 'its', 'eastern', 'terminus', 'at', 'ky', '3', '0', '.'], ['imagos', 'films', 'also', 'completed', 'for', 'frictional', 'games', 'a', 'set', 'of', 'live', 'action', 'clips', 'that', 'were', 'set', 'to', 'release', 'in', '2', '0', '1', '5', 'in', 'monthly', 'installments', 'and', 'would', 'connect', 'to', 'the', 'story', 'of', 'the', 'upcoming', 'game', '.'], ['he', 'won', 'seven', 'caps', 'for', 'the', 'sweden', 'national', 'team', 'and', 'represented', 'the', 'sweden', 'olympic', 'football', 'team', 'at', 'the', '1', '9', '8', '8', 'summer', 'olympics', 'where', 'he', 'scored', 'two', 'goals', '.'], ['the', 'window', 'was', 'described', 'by', 'the', 'art', 'historian', 'virginia', 'teehan', 'as', '``', 'kaleidoscopically', 'sumptuous', \"''\", 'and', '``', 'filled', 'with', 'a', 'wealth', 'of', 'art', 'historical', 'allusions', ',', 'often', 'unexpected', \"''\", '.'], ['optima', \"'s\", 'sloped', 'version', 'was', 'originally', 'an', 'oblique', 'or', 'sloped', 'roman', ',', 'in', 'which', 'the', 'letters', 'do', 'not', 'take', 'on', 'handwriting', 'characteristics', '.'], ['kat', '&', 'amp', ';', 'jared', 'are', 'an', 'american', 'christian', 'music', 'husband-and-wife', 'duo', 'from', 'belton', ',', 'texas', ',', 'and', 'they', 'started', 'making', 'music', 'together', 'in', '2', '0', '1', '7', '.'], ['there', 'was', 'a', 'grand', 'gathering', 'of', 'ptm', 'near', 'sarhad', 'university', 'in', 'peshawar', ',', 'the', 'capital', 'of', 'khyber', 'pakhtunkhwa', ',', 'on', '8', 'april', '2', '0', '1', '8', '.'], ['in', '2', '0', '1', '6', ',', 'the', 'owner', 'statkraft', 'started', 'a', 'court', 'case', 'against', 'swedish', 'authorities', 'in', 'disagreements', 'over', 'profits', 'from', 'electricity', 'trade', 'in', 'the', 'cable', '.'], ['she', 'nevertheless', 'retained', 'her', 'position', 'in', 'katz', \"'s\", 'executive', 'committee', ',', 'and', 'in', 'october', '2', '0', '0', '4', 'was', 'shuffled', 'to', 'the', 'position', 'of', 'secretary', 'for', 'urban', 'aboriginal', 'opportunities', '.'], ['viner', 'sound', 'is', 'a', 'sound', 'on', 'the', 'northwest', 'side', 'of', 'gilford', 'island', 'and', 'northeast', 'of', 'baker', 'island', 'in', 'the', 'central', 'coast', 'of', 'british', 'columbia', ',', 'canada', '.'], ['sixth', 'century', ')', 'was', 'a', 'late', 'gallo-roman', 'aristocrat', 'and', 'scholar', '.'], ['this', 'followed', 'the', 'ndebele', 'people', \"'s\", 'great', 'trek', 'from', 'northern', 'kwazulu', '.'], ['the', 'punjabi', 'culture', 'is', 'the', 'culture', 'of', 'the', 'punjabi', 'people', ',', 'who', 'are', 'now', 'distributed', 'throughout', 'the', 'world', '.'], ['the', 'fischer', 'groups', 'are', 'named', 'by', 'analogy', 'with', 'the', 'large', 'mathieu', 'groups', '.'], ['it', 'features', 'a', 'quick-shifting', 'xtrac', '6', '-speed', 'sequential', 'gearbox', ',', 'an', 'alcon', 'motorsport', 'multi-plate', 'clutch', ',', 'öhlins', 'four-way', 'adjustable', 'dampers', ',', 'alcon', 'brakes', ',', 'and', 'a', 'bosch', 'anti-lock', 'braking', 'system', '.'], ['eliab', 'harvey', 'was', 'born', 'in', 'chigwell', ',', 'essex', 'to', 'william', 'and', 'emma', 'harvey', '.'], ['this', 'was', 'followed', 'by', 'the', 'release', 'of', 'his', 'self-titled', 'debut', 'album', 'in', 'november', '2', '0', '1', '4', ',', 'which', 'debuted', 'at', 'number', 'five', 'on', 'the', 'aria', 'albums', 'chart', 'and', 'was', 'certified', 'gold', 'by', 'the', 'australian', 'recording', 'industry', 'association', '.'], ['a', '2', '0', '1', '3', 'report', 'by', 'the', 'city', 'of', 'london', 'corporation', 'said', 'that', 'london', 'is', 'the', '``', 'greenest', 'city', \"''\", 'in', 'europe', 'with', '3', '5', ',', '0', '0', '0', 'acres', 'of', 'public', 'parks', ',', 'woodlands', 'and', 'gardens', '.'], ['the', 'school', 'was', 'founded', 'on', 'the', 'old', 'national', 'model', 'school', 'in', 'spring', 'street', ',', 'with', 'principal', 'joseph', 'hocking', '.'], ['he', 'served', 'in', 'the', 'second', 'schleswig', 'war', 'in', '1', '8', '6', '4', '.'], ['specifications', 'for', 'the', 'class', 'gj', '2', '-', '6', '-', '2', '+', '2', '-', '6', '-', '2', 'garratt', 'locomotive', 'were', 'prepared', 'by', 'colonel', 'f.r', '.'], ['a', 'navigation', 'device', 'such', 'as', 'a', 'compass', 'or', 'a', 'gps', 'is', 'recommended', '.'], ['trouble', 'at', 'the', 'first', 'bend', 'ended', 'the', 'chances', 'of', 'glengar', 'ranger', 'and', 'gentle', 'warning', '.'], ['this', 'methodology', 'requires', 'exact', 'positioning', 'of', 'a', 'patient', 'to', 'correctly', 'measure', 'any', 'deformity', '.'], ['the', '1', '5', 'guns', 'armstrong', 'made', 'were', 'used', 'to', 'arm', 'two', 'italian', 'battleships', 'and', ',', 'to', 'counter', 'these', ',', 'british', 'fortifications', 'at', 'malta', 'and', 'gibraltar', '.'], ['nielson', 'achieved', 'critical', 'acclaim', 'and', 'success', 'worldwide', 'with', 'the', 'band', \"'s\", 'self-titled', 'debut', 'album', '``', 'unknown', 'mortal', 'orchestra', \"''\", ',', 'released', 'in', '2', '0', '1', '1', '.'], ['in', '1', '9', '9', '1', ',', 'he', 'became', 'the', 'founder', 'of', 'the', 'chennai-based', 'theatre', 'group', ',', 'boardwalkers', '.'], ['sherwood', 'is', 'a', 'residential', 'neighbourhood', 'in', 'the', 'northwest', 'quadrant', 'of', 'calgary', ',', 'alberta', ',', 'canada', '.'], ['she', 'told', 'the', '``', 'los', 'angeles', 'times', \"''\", 'in', '1', '9', '9', '4', ',', '``', 'i', 'asked', 'who', 'else', 'was', 'on', '[', 'the', 'soundtrack', ']', 'and', 'they', 'said', 'paul', 'westerberg', ',', 'so', 'i', 'said', ',', \"'great\", \"'\", '.'], ['cata', 'provides', 'weekend', 'service', 'during', 'the', 'summer', 'on', 'its', 'purple', 'line', 'ipswich', '-', 'essex', '-', 'crane', 'beach', 'shuttle', '.'], ['strachan', \"'s\", 'ashes', 'were', 'scattered', 'near', 'the', 'rose', 'garden', 'columbarium', 'at', 'boal', 'chapel', 'memorial', 'gardens', 'in', 'north', 'vancouver', ',', 'bc', 'on', '5', 'may', '.'], ['the', 'community', 'is', 'in', 'zip', 'code', '9', '4', '9', '6', '0', 'and', 'area', 'codes', '4', '1', '5', 'and', '6', '2', '8', '.'], ['he', 'later', 'made', 'millions', 'of', 'dollars', 'in', 'the', 'oil', 'industry', 'and', 'became', 'a', 'trustee', 'and', 'significant', 'benefactor', 'to', 'the', 'university', 'and', 'its', 'athletic', 'department', '.'], ['it', 'is', 'part', 'of', 'the', 'municipal', 'unit', 'of', 'kalampaki', '.'], ['the', 'historical', 'list', 'of', 'postal', 'codes', 'from', 'lima', 'and', 'callao', 'is', 'shown', 'below', '.'], ['it', 'was', 'a', 'major', 'allied', 'bombing', 'campaign', 'in', 'collaboration', 'with', 'the', 'local', 'partisan', 'troops', 'in', 'order', 'to', 'prevent', 'german', 'troops', 'retreating', 'back', 'and', 'reinforcing', 'those', 'in', 'central', 'and', 'western', 'europe', ',', 'thus', 'prolonging', 'the', 'war', '.'], ['this', 'ordinance', 'and', 'the', '1', '9', '7', '4', 'amendment', 'in', 'the', 'constitution', 'effectively', 'gave', 'the', 'state', 'of', 'pakistan', ',', 'the', 'exclusive', 'right', 'to', 'determine', 'the', 'meaning', 'of', 'the', 'term', '``', 'muslim', \"''\", '.'], ['clearly', ',', 'in', 'the', 'united', 'states', 'at', 'least', ',', 'clark', 'was', 'known', 'only', 'as', 'a', 'singer', ',', 'although', 'she', 'had', 'appeared', 'as', 'an', 'actress', 'in', 'british', 'films', 'since', 'she', 'was', 'a', 'child', '.'], ['paul', 'goldsmith', 'pulled', 'out', 'of', 'the', 'race', 'due', 'to', 'engine', 'problems', 'on', 'lap', '3', '4', '5', '.'], ['for', 'this', 'action', 'he', 'received', 'the', 'navy', 'cross', ',', 'which', 'he', 'publicly', 'refused', '(', 'the', 'only', 'man', 'to', 'do', 'so', 'in', 'world', 'war', 'ii', ')', '.'], ['until', 'february', '1', '2', ',', 'over', '1', '4', '0', 'hospitals', 'reached', 'out', 'to', 'liang', 'yu', 'for', 'help', '.'], ['in', '1', '9', '8', '9', ',', 'mazda', 'was', 'selected', 'as', 'a', 'technical', 'partner', '.'], ['values', 'of', 'other', 'variables', 'can', 'be', 'found', 'subsequently', 'in', 'the', 'same', 'way', '.'], ['the', 'house', ',', 'also', 'called', 'mineral', 'point', 'mansion', ',', 'was', 'built', 'for', 'samuel', 'j.', 'tipton', ',', 'who', 'introduced', 'shorthorn', 'cattle', 'to', 'kansas', '.'], ['the', '2', '0', '0', '7', 'fiesta', 'bowl', 'won', 'the', '2', '0', '0', '7', 'best', 'game', 'espy', 'award', ',', 'and', 'the', 'game', \"'s\", 'final', 'play', 'won', 'the', '2', '0', '0', '7', 'best', 'play', 'espy', 'award', '.'], ['thus', 'began', 'a', 'business', 'relationship', 'that', 'would', 'endure', 'for', 'the', 'next', 'quarter', 'century', '.'], ['in', 'the', '1', '5', 'th', 'century', ',', 'the', 'village', 'found', 'its', 'way', 'into', 'manderscheid-schleiden', 'hands', '.'], ['ftelia', 'is', 'a', 'village', 'in', 'the', 'drama', 'regional', 'unit', ',', 'in', 'northeastern', 'greece', '.'], ['the', 'single-light', 'window', 'in', 'the', 'north', 'wall', 'of', 'the', 'northeast', 'tower', 'stairway', 'is', 'a', 'memorial', 'to', 'marie', 'louise', 'weightman', 'faries', ',', 'who', 'died', 'in', '1', '8', '9', '8', '.'], ['the', 'diverse', 'vegetation', 'supports', 'populations', 'of', 'insects', 'and', 'butterflies', ',', 'which', 'together', 'with', 'autumn', 'fruits', ',', 'attract', 'visiting', 'birds', 'such', 'as', 'warblers', ',', 'finches', 'and', 'siskins', '.'], ['on', 'september', '2', '4', ',', 'a', 'large', 'demonstration', 'took', 'place', 'outside', 'the', 'palais-royal', ',', 'demanding', 'the', 'return', 'of', 'the', 'king', '.'], ['however', ',', 'he', 'was', 'unable', 'to', 'wrest', 'the', 'throne', 'from', 'his', 'valois', 'cousins', ',', 'who', 'were', 'senior', 'to', 'him', 'by', 'agnatic', 'primogeniture', '.'], ['he', 'represented', 'hungary', 'in', 'the', '1', '9', '6', '7', 'world', 'championship', 'where', 'he', 'finished', 'in', 'eighth', 'place', '.'], ['agomelatine', 'is', 'also', 'studied', 'for', 'its', 'effects', 'on', 'sleep', 'regulation', '.'], ['european', 'presence', 'in', 'the', 'new', 'world', 'had', 'drawbacks', ',', 'as', 'well', 'as', 'benefits', ',', 'for', 'native', 'americans', '.'], ['robert', ',', 'the', 'last', 'of', 'the', 'children', ',', 'was', 'born', 'in', 'coleford', 'on', '8', 'april', '1', '8', '1', '1', '.'], ['three-quarters', 'of', 'belfast', \"'s\", 'estimated', '9', '7', 'peace', 'lines', 'and', 'related', 'structures', '(', 'such', 'as', 'gates', 'and', 'closed', 'roads', ')', 'are', 'in', 'the', 'north', 'and', 'west', 'of', 'the', 'city', '.'], ['the', 'fifth', 'track', 'of', 'the', 'album', 'is', 'titled', '``', 'hai', 'allah', \"''\", 'and', 'was', 'sung', 'by', 'dilshad', 'nahar', 'kona', '.'], ['in', '1', '9', '8', '4', 'friday', 'street', 'was', 'used', 'as', 'a', 'location', 'for', 'the', 'bbc', 'television', 'series', '``', 'the', 'tripods', \"''\", 'based', 'on', 'the', 'books', 'by', 'john', 'christopher', ',', 'where', ',', 'for', 'the', 'sake', 'of', 'the', 'story', 'it', 'became', 'the', 'fictional', 'future', 'village', 'of', '``', 'wherton', '.', \"''\"], ['on', 'september', '1', '5', ',', '2', '0', '0', '9', ',', 'jung', 'made', 'an', 'official', 'announcement', 'as', 'to', 'his', 'retirement', '.'], ['his', 'estate', 'in', 'gibsonia', ',', 'pennsylvania', 'was', 'devoted', 'to', 'a', 'large', 'extent', 'to', 'fruit', 'trees', '.'], ['rip', 'currents', 'from', 'the', 'storm', 'pulled', 'a', 'swimmer', 'underwater', 'for', 'over', 'ten', 'minutes', 'off', 'oak', 'island', ';', 'the', 'man', 'died', 'of', 'his', 'injuries', 'the', 'next', 'day', '.'], ['queho', '(', 'born', 'around', '1', '8', '8', '0', ';', 'his', 'name', 'was', 'also', 'spelled', 'quehoe', 'on', 'his', 'grave', 'or', 'quejo', 'in', 'other', 'sources', ')', 'was', 'a', 'native', 'american', 'outlaw', 'and', 'renegade', 'whose', 'exploits', 'became', 'part', 'of', 'nevada', 'legend', '.'], ['``', '0', '-ji', 'mae', 'no', 'cinderella', \"''\", 'was', 'used', 'as', 'the', 'april', 'ending', 'theme', 'to', 'the', 'television', 'program', '``', 'hiro', 'obi', '!'], ['according', 'to', '``', 'the', 'sunday', 'times', \"''\", ',', 'the', 'hardback', 'edition', 'was', 'the', 'year', \"'s\", '4', 'th-biggest', 'seller', 'in', 'the', '``', 'general', 'hardbacks', \"''\", 'category', 'with', '1', '5', '3', ',', '1', '6', '0', 'copies', 'sold', 'by', 'end', 'of', 'the', 'year', '.'], ['however', ',', 'the', 'inside', 'is', 'only', 'open', 'to', 'the', 'public', 'at', 'special', 'events', 'held', 'by', 'the', 'museum', '.'], ['the', 'game', 'is', 'based', 'around', 'the', 'idea', 'that', ',', 'human', 'nature', 'being', 'what', 'it', 'is', ',', 'the', 'ability', 'for', 'alternate', 'worlds', 'to', 'contact', 'each', 'other', 'would', 'inevitably', 'lead', 'to', 'conflict', '.'], ['over', 'the', 'next', '2', '0', 'years', 'he', 'appeared', 'in', 'over', '1', '2', '5', 'films', ',', 'mostly', 'in', 'smaller', 'and', 'supporting', 'roles', '.'], ['along', 'with', 'other', 'species', 'in', 'the', 'genus', '``', 'scylla', \"''\", ',', 'it', 'is', 'widely', 'farmed', 'in', 'aquaculture', 'using', 'wild-caught', 'stocks', '.'], ['he', 'was', 'captured', 'on', '7', 'august', 'and', ',', 'including', 'a', 'period', 'of', 'seven', 'weeks', 'in', 'a', 'concentration', 'camp', ',', 'remained', 'in', 'a', 'pow', 'camp', 'in', 'gerolstein', ',', 'germany', ',', 'until', 'liberated', 'by', 'the', 'allies', 'on', '8', 'march', '1', '9', '4', '5', '.'], ['she', 'also', 'acted', ',', 'under', 'the', 'direction', 'of', 'philippe', 'monnier', ',', 'in', '``', 'monsieur', 'papa', \"''\", ',', 'in', 'which', 'the', 'dialogue', 'was', 'written', 'by', 'jean-marie', 'poiré', '.'], ['in', 'this', 'sequence', ',', 'rihanna', 'wears', 'a', 'high-waisted', 'black', 'bikini', 'and', 'waves', 'a', 'large', 'black', 'flag', 'with', 'a', 'white', '``', 'r', \"''\", 'in', 'the', 'middle', 'of', 'it', '.'], ['his', 'relics', 'were', 'later', 'translated', 'into', 'the', 'near', 'basilica', 'of', \"sant'ambrogio\", '.'], ['on', 'december', '1', '6', ',', '2', '0', '1', '9', ',', 'flynn', 'signed', 'with', 'the', 'texas', 'rangers', 'on', 'a', 'minor', 'league', 'contract', '.'], ['she', 'visited', 'german', 'prisoners', 'of', 'war', 'and', 'publicised', 'the', 'work', 'of', 'her', 'german', 'counterparts', 'in', 'berlin', '.'], ['instead', ',', 'he', 'calls', 'himself', '``', 'leon', 'abbot', \"''\", 'after', 'the', 'general', 'in', 'the', 'book', 'he', 'brought', 'back', ',', '``', 'lady', 'heatherington', 'smythe', \"'s\", 'hedgerow', \"''\", '.'], ['the', 'system', 'is', 'largely', 'self-financed', 'but', 'also', 'receives', 'a', 'subsidy', 'from', 'the', 'state', 'to', 'run', 'the', 'job', 'centers', '.'], ['girls', \"'\", 'peer', 'groups', 'are', 'characterized', 'by', 'strong', 'interpersonal', 'relations', ',', 'empathy', 'for', 'others', ',', 'and', 'working', 'towards', 'connection-oriented', 'goals', ',', 'while', 'boys', 'focus', 'more', 'on', 'asserting', 'their', 'own', 'dominance', 'in', 'the', 'peer', 'group', 'and', 'agenda-oriented', 'goals', '.'], ['in', '1', '8', '0', '5', ',', 'josé', 'presas', 'was', 'arrested', 'and', 'then', 'released', ',', 'accused', 'of', 'wanting', 'to', 'destabilize', 'the', 'government', 'of', 'the', 'viceroy', 'sobremonte', '.'], ['``', 'portraits', \"''\", 'was', 'then', 'released', 'through', 'artery', 'recordings', 'in', 'march', '2', '0', '1', '0', 'in', 'japan', 'and', 'the', 'united', 'states', '.'], ['in', 'the', 'first', 'intifada', ',', 'tax', 'payments', 'dropped', '5', '0', '%', ',', 'and', 'israel', 'responded', 'by', 'cutting', 'health', 'benefits', '.'], ['in', '2', '0', '1', '1', 'kennedy', 'was', 'planning', 'a', 'concert', 'in', 'sheffield', 'to', 'raise', 'funds', 'for', 'his', 'one', 'song', 'foundation', '.'], ['it', 'follows', 'the', 'adventures', 'of', 'campus', 'radio', 'dj', 'and', 'indie-rock', 'band', 'manager', ',', 'xavier', 'p.', 'thortenberry', ',', 'as', 'he', 'tried', 'to', 'find', 'a', 'new', 'the', 'lead', 'singer', 'for', 'his', 'band', '.'], ['the', 'original', ',', 'watered-down', 'version', 'was', 'recorded', 'with', 'cassidy', 'for', 'the', '``', 'sound', 'magazine', \"''\", 'album', ',', 'but', 'was', 'discarded', 'and', 'never', 'released', '.'], ['one', 'reviewer', 'says', 'that', 'the', 'game', \"'s\", 'biggest', 'weakness', 'lay', 'in', 'its', 'lack', 'of', 'variety', 'in', 'building', 'models', 'and', 'resources', '.'], ['the', 'group', 'specializes', 'in', 'a', 'novel', 'synthesis', 'technique', 'for', 'producing', 'high-quality', ',', 'long', '(', 'several', 'millimeters', ')', ',', 'aligned', 'cnts', 'which', 'can', 'be', 'strategically', 'incorporated', 'in', 'existing', 'advanced', 'composite', 'systems', '.'], ['at', 'the', 'time', 'of', 'his', 'death', 'he', 'was', 'engaged', 'on', 'a', '``', 'dictionnaire', 'universelle', 'ecclésiastique', \"''\", '.'], ['degradation', 'of', 'the', 'basement', 'membrane', 'is', 'an', 'essential', 'step', 'for', 'the', 'metastatic', 'progression', 'of', 'most', 'cancers', '.'], ['as', 'a', 'result', ',', 'huerta', 'proceeded', 'more', 'carefully', ',', 'and', 'his', 'engineers', 'managed', 'to', 'find', 'all', 'the', 'remaining', 'mines', 'placed', 'by', 'orozco', \"'s\", 'men', '.'], ['in', 'the', 'cabinet', 'reshuffle', 'of', '2', '9', 'june', '2', '0', '0', '7', 'caroline', 'flint', 'moved', 'to', 'the', 'department', 'for', 'work', 'and', 'pensions', 'where', 'she', 'served', 'as', 'the', 'minister', 'for', 'employment', 'and', 'welfare', 'reform', '.'], ['mazarin', ',', 'victorious', ',', 'returned', 'to', 'paris', 'on', 'february', '3', ',', '1', '6', '5', '3', 'and', 'took', 'charge', 'once', 'again', 'of', 'the', 'government', '.'], ['there', 'is', 'also', 'a', 'portal', 'to', 'another', 'dimension', 'in', 'the', 'kitchen', '.'], ['the', 'racial', 'makeup', 'of', 'the', 'town', 'was', '9', '5', '.', '1', '%', 'white', ',', '1', '.', '1', '%', 'african', 'american', ',', '2', '.', '2', '%', 'asian', ',', '0', '.', '5', '%', 'from', 'other', 'races', ',', 'and', '1', '.', '1', '%', 'from', 'two', 'or', 'more', 'races', '.'], ['the', 'stave', 'church', 'was', 'in', 'use', 'for', 'several', 'centuries', 'until', '1', '6', '2', '7', 'when', 'it', 'was', 'torn', 'down', '.'], ['he', 'told', 'the', 'asthma', 'society', 'of', 'ireland', ',', '``', 'i', 'thought', 'to', 'myself', ',', 'this', 'is', 'something', 'that', 'i', 'am', 'just', 'going', 'to', 'have', 'to', 'put', 'up', 'with', '.', \"''\"], ['the', 'nazi', 'gau', '(', 'plural', 'gaue', ')', 'system', 'was', 'originally', 'established', 'in', 'a', 'party', 'conference', 'on', '2', '2', 'may', '1', '9', '2', '6', ',', 'in', 'order', 'to', 'improve', 'administration', 'of', 'the', 'party', 'structure', '.'], ['the', 'expelling', 'of', 'the', 'portuguese', 'colonizers', 'happened', 'during', 'the', 'yaruba', 'imams', 'era', 'in', 'the', '1', '7', 'th', 'century', '.'], ['more', 'than', '1', '0', ',', '0', '0', '0', 'years', 'ago', ',', 'glaciers', 'retreated', 'from', 'northeast', 'ohio', ',', 'carving', 'ravines', 'and', 'valleys', '.'], ['the', 'large', 'high', 'altitude', 'air', 'shower', 'observatory', '(', 'lhaaso', ')', 'is', 'a', 'gamma-ray', 'and', 'cosmic-ray', 'observatory', 'in', 'daocheng', ',', 'in', 'the', 'garzê', 'tibetan', 'autonomous', 'prefecture', 'in', 'sichuan', ',', 'china', '.'], ['the', 'dam', 'was', 'commissioned', 'in', '1', '9', '8', '2', ',', 'has', 'a', 'storage', 'capacity', 'of', ',', 'and', 'a', 'surface', 'area', 'of', ',', 'the', 'dam', 'wall', 'is', 'high', '.'], ['during', 'the', '2', '0', '0', '0', 's', 'there', 'became', 'more', 'and', 'more', 'hardcore', 'punk', 'groups', ',', 'like', 'guerilla', 'poubelle', 'or', 'tagada', 'jones', '.'], ['badami', 'cliff', '``', 'shilashaasana', \"''\", 'of', 'pulakeshin', 'i', 'is', 'an', 'example', 'of', 'a', 'sanskrit', 'inscription', 'in', '``', 'hale', 'kannada', \"''\", 'script', '.'], ['it', 'took', 'place', 'on', '1', '6', 'may', 'in', 'the', 'stal', 'gorzów', 'stadium', 'in', 'gorzów', 'wielkopolski', ',', 'poland', '.'], ['mark', 'mckinnon', ',', 'a', 'former', 'advisor', 'to', 'republican', 'president', 'george', 'w.', 'bush', ',', 'criticized', 'republican', 'opposition', 'to', 'the', 'project', ':', '``', 'and', 'here', 'we', 'are', ',', 'reinforcing', 'al', 'qaeda', \"'s\", 'message', 'that', 'we', \"'re\", 'at', 'war', 'with', 'muslims', '.', \"''\"], ['the', 'highest', 'mountain', 'peaks', 'are', 'in', 'the', 'west', 'where', 'the', 'bedrock', 'is', 'primarily', 'dark', 'børgefjell', 'granite', ',', 'which', 'gives', 'the', 'landscape', 'its', 'desolate', 'appearance', '.'], ['what', 'makes', 'the', 'sociolinguistics', 'of', 'sign', 'language', 'different', 'from', 'the', 'sociolinguistics', 'of', 'spoken', 'languages', 'is', 'that', 'sign', 'languages', 'have', 'several', 'variables', 'both', 'internal', 'and', 'external', 'to', 'the', 'language', 'that', 'are', 'unique', 'to', 'the', 'deaf', 'community', '.'], ['the', 'perishables', 'area', 'of', 'the', 'center', 'is', 'temperature-', 'and', 'climate-controlled', '.'], ['the', 'initial', 'collection', 'centered', 'around', 'the', 'arts', 'of', 'avadh', 'and', 'objects', 'related', 'to', 'the', 'customs', ',', 'habits', ',', 'mythology', 'and', 'contemporary', 'objects', 'of', 'awadh', ',', 'but', 'later', 'on', 'it', 'was', 'expanded', 'to', 'more', 'interesting', 'excavated', 'antiquities', 'from', 'nearby', 'places', 'of', 'lucknow', 'particularly', 'where', 'buddha', 'grew', 'up', '.'], ['around', '9', ',', '0', '0', '0', 'athletes', 'from', 'over', '4', '0', 'countries', 'compete', 'every', 'year', '.'], ['beginning', 'his', 'career', 'at', 'dreams', 'fc', ',', 'he', 'played', 'in', 'the', 'ghanaian', 'premier', 'league', 'with', 'asante', 'kotoko', '.'], ['the', 'episode', 'begins', 'with', 'creedon', 'trying', 'to', 'locate', 'the', 'true', 'source', 'of', 'the', 'shannon', '.'], ['in', 'march', '1', '9', '4', '2', 'the', 'division', 'prepared', 'a', 'programmatic', 'statement', 'that', 'concerned', 'the', '``', 'specific', 'conditions', 'of', 'bosnia', 'and', 'herzegovina', ',', 'northern', 'dalmatia', ',', 'and', 'southwestern', 'croatia', '(', 'lika', ')', '.', \"''\"], ['that', 'is', ',', 'the', 'functions', 'and', 'are', 'composed', 'to', 'yield', 'a', 'function', 'that', 'maps', 'in', 'to', 'in', '.'], ['following', 'a', 'brief', 'period', 'at', 'monmouth', 'college', ',', 'he', 'entered', 'the', 'united', 'states', 'naval', 'academy', 'in', 'annapolis', ',', 'maryland', ',', 'in', 'june', '1', '9', '4', '3', '.'], ['rodríguez', 'became', 'the', 'youngest', 'player', 'in', 'the', 'history', 'of', 'the', 'texas', 'rangers', 'to', 'hit', 'a', 'home', 'run', ',', 'on', 'august', '3', '0', ',', '1', '9', '9', '1', ',', 'facing', 'the', 'kansas', 'city', 'royals', 'and', 'right-hander', 'storm', 'davis', '.'], ['the', 'first', 'chapter', 'of', 'this', 'constitution', 'establishes', 'the', 'south', 'african', 'commitment', 'to', 'democratic', 'values', ',', 'human', 'rights', 'and', 'rule', 'of', 'law', '.'], ['huggins', 'earned', 'a', 'backup', 'running', 'back', 'spot', 'in', 'camp', 'in', '2', '0', '1', '0', ',', 'but', 'a', 'week', '6', 'knee', 'injury', 'against', 'the', 'new', 'orleans', 'saints', 'ended', 'his', 'season', ',', 'landing', 'him', 'on', 'injured', 'reserve', '.'], ['this', 'relationship', 'produced', 'promos', 'for', '``', 'risingson', \"''\", '(', '1', '9', '9', '7', ')', ',', '``', 'teardrop', \"''\", 'and', '``', 'angel', \"''\", '(', 'both', '1', '9', '9', '8', ')', '.'], ['the', 'supply', 'of', 'vegetable', 'fats', 'dwindled', 'to', 'a', 'minuscule', 'seven-month', 'supply', 'of', '1', '.', '3', 'liters', 'per', 'person', '.'], ['even', 'before', 'their', 'defeat', 'the', 'italians', 'had', 'asked', 'for', 'the', 'loan', 'of', 'heavy', 'artillery', ',', 'and', 'now', 'a', 'number', 'of', 'units', 'were', 'hurriedly', 'sent', 'by', 'rail', ',', 'including', '1', '/', '1', 'st', 'warwickshire', 'battery', ',', 'which', 'went', 'on', '1', '4', 'november', '.'], ['on', 'the', 'other', 'hand', ',', 'boys', 'are', 'more', 'likely', 'than', 'girls', 'to', 'engage', 'in', 'organized', 'play', 'such', 'as', 'sports', 'and', 'activities', 'with', 'well-defined', 'rules', '.'], ['the', 'missions', 'range', 'from', 'physical', 'to', 'emotional', ',', 'and', 'they', 'meet', 'and', 'learn', 'skills', 'from', 'many', 'mentors', 'in', 'different', 'areas', '.'], ['after', 'the', 'divorce', 'of', 'her', 'parents', ',', 'cassie', 'lives', 'for', 'most', 'of', 'her', 'childhood', 'with', 'her', 'father', ',', 'whom', 'she', 'loves', 'and', 'admires', 'greatly', '.'], ['next', 'to', 'the', 'kovpak', 'tower', 'stood', 'an', 'eastern', 'orthodox', 'church', 'where', 'prince', 'koriatovych', 'was', 'buried', '.'], ['the', 'film', 'documents', 'a', 'part', 'of', 'the', 'months-long', 'intense', 'training', 'program', 'of', 'several', 'hundred', 'children', 'between', 'the', 'ages', 'of', 'nine', 'and', 'fourteen', ',', 'most', 'of', 'whom', 'are', 'either', 'orphaned', 'or', 'from', 'very', 'poor', 'families', '.'], ['the', 'anteaters', 'have', 'won', '2', '8', 'national', 'championships', 'in', 'nine', 'different', 'team', 'sports', '.'], ['the', 'genus', 'was', 'erected', 'by', 'francis', 'walker', 'in', '1', '8', '5', '5', '.'], ['the', 'film', 'is', 'named', 'after', 'the', 'dance', 'technique', 'known', 'as', 'the', 'moonwalk', ',', 'which', 'jackson', 'was', 'known', 'for', 'performing', '.'], ['especially', ',', 'artefacts', 'bearing', 'christian', 'symbolism', ',', 'hoards', 'of', 'bronze', 'roman', 'coins', 'and', 'roman-style', 'pottery', 'are', 'listed', 'among', 'the', 'archaeological', 'finds', 'verifying', 'the', 'theory', '.'], ['he', 'identified', 'with', 'ordinary', 'people', 'rather', 'than', 'the', 'court', 'officials', 'and', 'often', 'sat', 'on', 'his', 'verandah', 'in', 'the', 'sunshine', 'with', 'the', 'office', 'clerks', '.'], ['stuck', 'in', 'neutral', 'is', 'a', 'young', 'adult', 'novel', 'by', 'terry', 'trueman', '.'], ['upon', 'his', 'death', 'in', '1', '8', '3', '1', ',', 'he', 'bequeathed', 'his', 'entire', 'library', ',', 'his', 'collection', 'of', 'early', 'american', 'newspapers', ',', 'as', 'well', 'as', 'his', 'personal', 'papers', 'and', 'records', 'to', 'the', 'american', 'antiquarian', 'society', '.'], ['under', 'university', 'auspices', ',', 'excavation', 'at', 'the', 'bone', 'bed', 'has', 'continued', 'in', 'the', 'summers', 'of', '2', '0', '0', '6', ',', '2', '0', '0', '7', 'and', '2', '0', '0', '8', '.'], ['in', '1', '9', '5', '9', ',', 'secon', 'started', 'taking', 'long', 'trips', 'to', 'europe', 'in', 'search', 'of', 'new', 'product', 'lines', ',', 'and', 'asked', 'morris', 'to', 'help', 'manage', 'the', 'store', '.'], ['in', 'the', 'early', '1', '9', '7', '0', 's', ',', 'aart', 'staartjes', 'created', 'the', 'children', \"'s\", 'television', 'programme', '``', 'de', 'stratemakeropzeeshow', \"''\", 'with', 'lead', 'roles', 'for', 'wieteke', 'van', 'dort', ',', 'prinsen', 'and', 'himself', '.'], ['the', 'iet', 'represents', 'the', 'engineering', 'profession', 'in', 'matters', 'of', 'public', 'concern', 'and', 'assists', 'governments', 'to', 'make', 'the', 'public', 'aware', 'of', 'engineering', 'and', 'technological', 'issues', '.'], ['its', '2', '0', '1', '1', 'population', 'was', '5', ',', '4', '2', '0', '.'], ['whilst', 'his', 'father', 'had', 'served', 'in', 'the', 'egyptian', 'army', ',', 'it', 'was', 'actually', 'largely', 'due', 'to', 'his', 'mother', 'than', 'latif', 'was', 'able', 'to', 'rise', 'into', 'the', 'emerging', 'middle', 'class', ',', 'commonly', 'referred', 'to', 'as', 'the', 'effendiyya', '.'], ['his', 'works', '``', 'kameni', 'spavač', '(', 'stone', 'sleeper', ')', \"''\", 'and', '``', 'modra', 'rijeka', '(', 'blue', 'river', ')', \"''\", 'are', 'probably', 'the', 'most', 'important', 'bosnian', 'poetic', 'achievements', 'of', 'the', '2', '0', 'th', 'century', '.'], ['``', 'savannah', 'law', 'review', \"''\", 'has', 'published', 'nationally', 'and', 'internationally', 'respected', 'scholars', 'and', 'local', 'practitioners', '.'], ['qadri', 'has', 'focused', 'her', 'research', 'on', 'enteric', 'diseases', ',', 'specifically', 'in', 'the', 'areas', 'of', 'immunology', ',', 'genomics', ',', 'proteomic', 'technology', 'and', 'diagnostics', ',', 'and', 'vaccine', 'development', '.'], ['their', 'engines', 'were', 'mechanically', 'inefficient', 'and', 'took', 'up', 'much', 'space', ',', 'while', 'fuel', 'and', 'fitting', 'out', 'costs', 'were', 'very', 'high', '.'], ['çorak', '(', 'literally', '``', 'barren', \"''\", 'or', '``', 'arid', \"''\", ')', 'is', 'a', 'turkish', 'place', 'name', 'that', 'may', 'refer', 'to', 'the', 'following', 'places', 'in', 'turkey', ':'], ['the', 'most', 'successful', 'group', 'from', 'the', '2', '0', '0', '0', 's', 'is', 'les', 'wampas', 'with', 'the', 'songs', '``', 'manu', 'chao', \"''\", 'and', '``', 'chirac', 'en', 'prison', \"''\", '.'], ['after', 'eight', 'days', ',', 'the', 'bandits', 'were', 'annihilated', 'and', 'by', '1', '2', 'july', '1', '9', '4', '6', ',', '9', '7', '2', 'bandits', 'were', 'captured', 'alive', '.'], ['mature', 'leaves', 'contain', 'a', 'high', 'proportion', 'of', 'hard-to-digest', 'cellulose', ',', 'less', 'energy', 'than', 'other', 'types', 'of', 'foods', ',', 'and', 'often', 'toxic', 'compounds', '.'], ['the', 'journal', 'is', 'indexed', 'in', 'the', 'web', 'of', 'science', 'emerging', 'sources', 'citation', 'index', '(', 'esci', ')', ',', 'has', '0', '.', '7', '3', 'scopus', 'citescore', '(', '2', '0', '1', '8', ')', ',', 'and', 'ranks', '4', '8', '7', 'out', 'of', '1', ',', '1', '1', '1', 'journals', 'in', 'sociology', 'and', 'political', 'science', '.'], ['(', '2', ')', 'free', 'roaming', 'mobile', 'agent', ':', 'have', 'dynamic', 'migration', 'path', '.'], ['he', 'competed', 'in', 'the', '2', '0', '0', '6', ',', '2', '0', '0', '9', 'and', '2', '0', '1', '3', 'world', 'baseball', 'classic', 'representing', 'china', '.'], ['gameplay', 'involved', 'acquisition', 'of', 'the', 'siddhis', 'of', 'clairvoyance', ',', 'levitation', ',', 'invisibility', ',', 'shrinking', 'and', 'strength', ',', 'and', 'the', 'ultimate', 'goal', 'of', 'the', 'game', 'was', 'to', 'achieve', 'pure', 'consciousness', 'by', 'removing', 'karma', 'through', 'completion', 'of', 'quests', 'and', 'cleansing', 'the', 'six', 'chakras', 'in', 'ascending', 'order', '.'], ['tolls', 'were', 'waived', 'for', 'the', 'first', 'few', 'months', 'of', 'operations', 'and', 'began', 'to', 'be', 'collected', 'on', 'november', '9', ',', '2', '0', '1', '9', '.'], ['in', 'order', 'to', 'effectively', 'deal', 'with', 'consequences', 'of', 'the', 'crusader', 'latin', 'plunder', ',', 'king', 'uroš', 'the', 'great', 'constructed', 'a', 'large', 'fortification', 'surrounding', 'the', 'monastery', 'with', 'the', 'protective', 'tower', 'named', 'after', 'the', 'transfiguration', 'of', 'christ', '.'], ['to', 'the', 'north', 'of', 'wipkingen', 'station', ',', 'the', 'line', 'enters', 'wipkingen', 'tunnel', ',', 'which', 'emerges', 'on', 'the', 'approach', 'to', 'oerlikon', 'station', '.'], ['meredith', 'worked', 'on', 'the', 'exchange', 'for', 'nearly', 'twenty', 'years', ',', 'and', 'at', 'his', 'retirement', 'was', 'one', 'of', 'its', 'oldest', 'members', '.'], ['the', 'story', 'is', 'based', 'on', '``', 'up', 'pops', 'the', 'devil', \"''\", 'by', 'frances', 'goodrich', 'and', 'albert', 'hackett', '.'], ['in', 'october', '2', '0', '1', '8', ',', 'she', 'began', 'serving', 'as', 'an', 'associate', 'professor', 'at', 'the', 'technical', 'university', 'of', 'denmark', '.'], ['the', 'site', 'is', 'within', 'the', 'parish', 'of', 'little', 'snoring', 'in', 'north', 'norfolk', '.'], ['the', 'history', 'of', 'scandinavia', 'is', 'the', 'history', 'of', 'the', 'geographical', 'region', 'of', 'scandinavia', 'and', 'its', 'peoples', '.'], ['matisse', 'himself', ',', 'serious', ',', 'plaintive', ',', 'a', 'conscientious', 'experimenter', ',', 'whose', 'works', 'are', 'but', 'studies', 'in', 'expression', ',', 'who', 'is', 'concerned', 'at', 'present', 'with', 'but', 'the', 'working', 'out', 'of', 'the', 'theory', 'of', 'simplicity', ',', 'denies', 'all', 'responsibility', 'for', 'the', 'excesses', 'of', 'his', 'unwelcome', 'disciples', '.'], ['i', 'was', 'able', 'to', 'hear', 'clearly', 'vadm', 'steele', \"'s\", 'radio', 'conversations', 'with', 'the', 'embassy', 'in', 'saigon', ',', 'discussions', 'with', 'radm', 'whitmire', 'as', 'well', 'as', 'deliberations', 'with', 'the', 'various', 'tf', '7', '6', 'coordinators', 'present', 'as', 'the', 'operation', 'went', 'forward', '.'], ['all', 'enemies', 'fought', 'in', 'the', 'next', 'two', 'books', 'in', 'adventure', 'will', 'be', 'added', 'here', '.'], ['obugs', 'maintains', 'gardens', 'dedicated', 'to', 'in-school', 'classes', 'and', 'after', 'school', 'activities', 'in', 'which', 'children', 'grow', 'and', 'use', 'organic', 'vegetables', 'through', 'gardening', ',', 'cooking', ',', 'and', 'nutrition', 'and', 'the', 'environmental', 'education', '.'], ['akuffo', 'served', 'as', 'the', 'first', 'minister', 'of', 'aviation', 'from', '2', '0', '0', '6', 'till', 'july', '2', '0', '0', '8', '.'], ['hillary', 'wins', 'as', 'mayor', 'and', 'salvador', 'wins', 'the', 'gubernatorial', 'seat', '.'], ['sutyagin', \"'s\", 'record', 'is', 'generally', 'held', 'to', 'be', '2', '2', 'solo', 'victories', ',', 'with', 'another', 'two', 'shared', '.'], ['in', 'the', 'course', 'of', 'his', 'work', 'he', 'came', 'to', 'know', 'the', 'major', 'players', 'in', 'the', 'apartheid', 'struggle', 'and', 'gained', 'the', 'respect', 'and', 'confidence', 'of', 'leaders', 'such', 'as', 'nelson', 'mandela', '.'], ['all', 'i', 'am', 'afraid', 'of', 'is', 'that', 'our', 'good', 'work', 'will', 'amount', 'to', 'little', 'when', 'it', 'is', 'found', '!', \"''\"], ['classified', 'courses', ',', 'however', ',', 'were', 'conducted', 'in', 'government', 'facilities', '.'], ['the', 'privy', 'midden', '(', 'also', 'midden', 'closet', ')', 'was', 'a', 'toilet', 'system', 'that', 'consisted', 'of', 'a', 'privy', '(', 'outhouse', ')', 'associated', 'with', 'a', 'midden', '(', 'or', 'middenstead', ',', 'ie', 'a', 'dump', 'for', 'waste', ')', '.'], ['she', 'grew', 'up', 'in', 'shannon', 'before', 'going', 'on', 'to', 'study', 'communication', 'studies', 'at', 'dublin', 'city', 'university', '.'], ['it', 'was', 'released', 'on', '2', '9', 'september', '2', '0', '0', '3', '.'], ['noura', 'was', 'born', 'in', 'riyadh', 'in', '1', '8', '7', '5', '.'], ['primarily', 'it', 'means', 'unit', 'cohesion', ':', 'the', 'cohesion', 'of', 'a', 'unit', ',', 'task', 'force', ',', 'or', 'other', 'military', 'group', '.'], ['in', '1', '9', '8', '0', ',', 'after', 'completing', 'his', 'studies', ',', 'began', 'teaching', 'at', 'the', 'university', 'of', 'tehran', 'and', 'university', 'of', 'isfahan', '.'], ['other', 'voices', 'include', 'that', 'of', 'arianna', 'huffington', 'as', 'tim', \"'s\", 'wife', 'arianna', 'the', 'bear', ',', 'nat', 'faxon', 'as', 'tim', 'and', 'arianna', \"'s\", 'son', 'raymond', 'the', 'bear', ',', 'jamie', 'kennedy', 'as', 'roberta', \"'s\", 'boyfriend', 'gabriel', 'friedman', ',', 'a.k.a.', '``'], ['the', 'racial', 'makeup', 'of', 'the', 'cdp', 'was', '3', '.', '4', '7', '%', 'white', ',', '9', '2', '.', '0', '8', '%', 'native', 'american', ',', 'and', '4', '.', '4', '6', '%', 'from', 'two', 'or', 'more', 'races', '.'], ['however', ',', 'the', 'tax', 'proved', 'very', 'difficult', 'to', 'collect', '.'], ['initially', 'two', 'versions', 'were', 'offered', 'for', 'sale', 'in', 'the', 'civilian', 'market', 'from', '1', '9', '6', '0', ':'], ['the', 'walls', 'are', 'in', 'thickness', 'on', 'the', 'ground', 'floor', ',', 'on', 'the', 'first', 'floor', 'and', 'on', 'the', 'second', '.'], ['ansab', 'has', 'a', 'vision', 'of', 'rural', 'south', 'asia', 'built', 'on', 'rich', 'biodiversity', 'and', 'prosperous', 'communities', '.'], ['he', 'joined', 'the', 'staff', 'of', 'the', 'carnegie', 'corporation', 'of', 'new', 'york', 'in', '1', '9', '4', '6', ',', 'and', 'in', '1', '9', '5', '5', 'he', 'became', 'president', 'of', 'that', 'group', ',', 'and', 'concurrently', ',', 'the', 'carnegie', 'foundation', 'for', 'the', 'advancement', 'of', 'teaching', '.'], ['after', 'his', 'defeat', 'at', 'the', '1', '6', '9', '5', 'election', ',', 'lawson', 'began', 'to', 'travel', ',', 'spending', 'a', 'month', 'in', 'ireland', 'in', '1', '6', '9', '7', 'and', 'in', 'june', '1', '6', '9', '9', 'he', 'journeyed', 'to', 'france', '.'], ['still', ',', 'receives', 'the', 'confidence', 'of', 'the', 'coach', ',', 'but', 'the', 'campi', 'is', 'returned', ',', 'since', 'their', 'actions', 'begin', 'to', 'generate', 'impatience', 'in', 'the', 'academic', 'audience', '.'], ['he', 'also', 'placed', 'first', 'in', 'throwing', 'out', 'runners', ',', 'catching', '4', '8', '.', '6', 'percent', 'of', 'runners', 'attempting', 'to', 'steal', '.'], ['even', 'a', 'decade', 'later', ',', 'one', 'of', 'comyn', \"'s\", 'successors', 'wrote', 'that', '``', \"''\", 'the', 'burnt', 'stumps', 'of', 'his', 'stockade', ',', 'and', 'the', 'mud', 'walls', 'of', 'his', 'houses', \"''\", 'were', 'still', 'visible', '.'], ['this', 'same', 'unofficial', 'full', 'build', 'of', 'transmission', 'daemon', 'running', 'as', 'a', 'windows', 'service', 'can', 'be', 'used', 'for', 'direct', 'streaming', 'of', 'the', 'downloading', 'file', '(', 's', ')', '.'], ['she', 'made', 'her', 'first', 'film', 'in', '1', '9', '2', '4', ',', 'and', 'with', 'her', 'blonde', 'hair', ',', 'green', 'eyes', ',', 'delicate', 'features', ',', 'and', 'good-natured', 'demeanor', ',', 'was', 'cast', 'in', 'a', 'string', 'of', 'supporting', 'roles', ',', 'where', 'she', 'was', 'required', 'to', 'do', 'very', 'little', 'but', 'smile', 'and', 'look', 'pretty', '.'], ['bowes', 'believed', 'that', 'yardley', 'attacked', 'very', 'well', ',', 'keeping', 'the', 'pressure', 'on', 'australia', 'by', 'rotating', 'his', 'bowlers', 'effectively', 'so', 'his', 'three', 'main', 'bowlers', 'were', 'always', 'at', 'the', 'crease', '.'], ['westminster', 'high', 'school', 'drama', 'also', 'attends', 'and', 'performs', 'yearly', 'at', 'the', 'county-wide', '``', 'drama', 'fest', \"''\", 'where', 'every', 'school', 'does', 'a', 'variety', 'of', 'scenes/numbers', 'from', 'a', 'chosen', 'show', 'of', 'their', 'season', ',', 'and', 'are', 'critiqued', '.'], ['john', 'iv', 'crispo', 'was', 'the', 'son', 'of', 'francesco', 'iii', 'crispo', ';', 'his', 'mother', 'was', 'taddea', 'caterina', 'loredan', ',', 'sister', 'of', 'antonio', 'loredan', '.'], ['the', 'first', 'church', 'on', 'this', 'site', 'was', 'likely', 'a', 'stave', 'church', 'built', 'during', 'the', '1', '3', 'th', 'century', '.'], ['then', 'nusrat', 'khan', 'was', 'sent', 'to', 'conquer', 'gujarat', 'itself', ',', 'where', 'he', 'defeated', 'its', 'solanki', 'king', '.'], ['he', 'also', 'sold', 'an', 'original', 'script', 'to', 'fox', 'titled', '``', 'no', 'place', 'like', 'home', \"''\", ',', 'but', 'it', 'appears', 'to', 'have', 'not', 'been', 'made', '.'], ['narvasa', 'also', 'stated', 'that', 'tnt', \"'s\", 'manager', 'magnum', 'membrere', 'submitted', 'draft', 'application', 'papers', 'on', 'behalf', 'of', 'standhardinger', ',', 'even', 'if', 'standhardinger', 'already', 'submitted', 'his', 'own', 'papers', 'three', 'weeks', 'before', 'the', 'september', '4', 'draft', 'application', 'deadline', 'for', 'fil-foreign', 'applicants', '.'], ['it', 'lies', 'approximately', 'south-west', 'of', 'naruszewo', ',', 'south', 'of', 'płońsk', ',', 'and', 'north-west', 'of', 'warsaw', '.'], ['from', 'february', '2', '0', '0', '6', 'to', 'october', '2', '0', '1', '4', ',', 'the', 'cluster', 'data', 'could', 'be', 'accessed', 'via', 'the', 'cluster', 'active', 'archive', '.'], ['however', ',', 'they', 'were', 'a', 'maritime', 'people', 'who', 'lived', 'from', 'harvesting', 'the', 'sea', ',', 'shifting', 'camp', 'sites', 'regularly', '.'], ['he', 'wrote', 'the', '2', '0', '1', '9', 'book', '``', 'antisocial', ':', 'online', 'extremists', ',', 'techno-utopians', 'and', 'the', 'hijacking', 'of', 'the', 'american', 'conversation', \"''\", ',', 'the', 'edition', 'of', 'the', 'book', 'published', 'by', 'london', \"'s\", 'picador', 'is', 'entitled', '``', 'antisocial', ':', 'how', 'extremists', 'broke', 'america', \"''\", '.'], ['the', 'colonisation', 'of', 'new', 'niches', 'resulted', 'in', 'massive', 'body', 'sizes', '.'], ['although', 'popular', 'with', 'many', 'in', 'september', '1', '9', '1', '4', 'mrs', 'myra', 'mchenry', 'made', 'it', '``', 'her', 'hobby', 'now', \"''\", 'to', 'go', 'after', 'marshall', \"'s\", '``', 'political', 'scalp', \"''\", 'not', 'believing', 'he', 'was', 'fit', 'for', 'the', 'position', '.'], ['the', 'last', 'horror', 'movie', 'is', 'a', '2', '0', '0', '3', 'british', 'found', 'footage', 'horror', 'film', 'directed', 'by', 'julian', 'richards', '.'], ['since', '1', 'november', '2', '0', '1', '4', ',', 'it', 'is', 'the', 'sole', 'public', 'access', 'point', 'to', 'the', 'cluster', 'mission', 'scientific', 'data', 'and', 'supporting', 'datasets', '.'], ['this', 'gave', 'him', 'practical', 'experience', 'with', 'orchestration', ',', 'an', 'art', 'he', 'more', 'than', 'mastered', '.'], ['the', 'species', 'overwinters', 'as', 'an', 'immature', 'or', 'mature', 'larva', '.'], ['koufax', 'had', 'his', 'strong', 'season', 'despite', 'an', 'injured', 'pitching', 'hand', '.'], ['in', '1', '9', '9', '6', 'ophelia', 'june', 'left', 'the', 'band', ',', 'and', 'the', '4', 'remaining', 'members', 'left', 'their', 'hometown', 'of', 'kuching', 'and', 'moved', 'to', 'kuala', 'lumpur', 'to', 'record', 'their', 'first', 'album', '.'], ['``', 'mambo', 'mouth', \"''\", 'won', 'an', 'obie', 'award', 'and', 'an', 'outer', 'critics', 'award', '.'], ['in', '1', '7', '9', '8', 'the', 'area', 'was', 'included', 'in', 'the', 'mississippi', 'territory', 'but', 'was', 'controlled', 'by', 'the', 'creek', 'nation', '.'], ['capelin', 'are', 'a', 'forage', 'fish', 'of', 'the', 'smelt', 'family', 'found', 'in', 'the', 'atlantic', 'and', 'arctic', 'oceans', '.'], ['at', 'cascadia', 'con', ',', 'st.', 'louis', 'won', 'the', 'vote', 'for', 'the', '9', 'th', 'north', 'american', 'science', 'fiction', 'convention', 'in', '2', '0', '0', '7', '.'], ['rice', 'kept', 'being', 'announced', 'for', 'low', 'prices', 'in', 'the', 'newspapers', 'of', 'singapore', ',', 'australia', 'and', 'china', '.'], ['shadow', 'banning', ',', 'also', 'called', 'stealth', 'banning', ',', 'ghost', 'banning', 'or', 'comment', 'ghosting', ',', 'is', 'the', 'practice', 'of', 'blocking', 'or', 'partially', 'blocking', 'a', 'user', 'or', 'their', 'content', 'from', 'an', 'online', 'community', 'so', 'that', 'it', 'will', 'not', 'be', 'readily', 'apparent', 'to', 'the', 'user', 'that', 'they', 'have', 'been', 'banned', '.'], ['barrichello', ',', 'who', 'switched', 'for', 'intermediates', 'as', 'the', 'safety', 'car', 'came', 'in', ',', 'began', 'setting', 'times', 'at', 'the', 'same', 'pace', 'as', 'the', 'leaders', ',', 'and', 'gained', '1', '5', 'th', 'position', 'as', 'the', 'drivers', 'in', 'front', 'changed', 'tyres', '.'], ['the', 'son', 'of', 'a', 'swedish', 'immigrant', ',', 'he', 'studied', 'at', 'the', 'minneapolis', 'school', 'of', 'fine', 'arts', 'and', 'the', 'university', 'of', 'minnesota', 'with', 'the', 'hope', 'of', 'becoming', 'a', 'writer', '.'], ['dmytryk', 'made', '``', 'walk', 'on', 'the', 'wild', 'side', \"''\", '(', '1', '9', '6', '2', ')', 'for', 'producer', 'charles', 'feldman', '.'], ['the', 'olmsted', 'brothers', 'of', 'brookline', ',', 'massachusetts', ',', 'were', 'selected', 'to', 'plan', 'the', 'exposition', ';', 'the', 'firm', 'was', 'already', 'involved', 'in', 'planning', 'parks', 'and', 'parkways', 'for', 'the', 'city', 'of', 'seattle', '.'], ['other', 'flashes', 'from', 'human', 'interaction', 'are', 'at', 'fairburn', 'ings', 'along', 'the', 'river', 'aire', ';', 'these', 'were', 'caused', 'by', 'mining', 'subsidence', '.'], ['in', 'its', 'role', 'as', 'a', 'courthouse', ',', 'it', 'provided', 'an', 'important', 'contribution', 'to', 'the', 'administering', 'of', 'law', 'and', 'order', 'and', 'the', 'furthering', 'of', 'social', 'justice', 'over', 'a', 'period', 'spanning', '1', '2', '0', 'years', '.'], ['he', 'stated', 'an', 'indifference', 'towards', 'eu', 'membership', ',', 'and', 'that', 'if', 'accessing', 'the', 'union', ',', 'norway', 'could', 'always', 'use', 'a', 'veto', 'against', 'eu', 'policies', 'when', 'needed', '.'], ['there', 'were', 'reports', 'that', 'mgm', 'distributed', 'a', 'different', 'version', 'of', 'the', 'film', 'in', 'china', '.'], ['during', 'this', 'time', 'speedcars', 'were', 'arguably', 'the', 'most', 'popular', 'category', 'in', 'australian', 'speedway', 'with', 'crowds', 'of', 'up', 'to', '3', '0', ',', '0', '0', '0', 'attending', 'meetings', 'at', 'the', 'sydney', 'showground', 'and', 'over', '1', '0', ',', '0', '0', '0', 'in', 'adelaide', 'and', 'brisbane', '.'], ['its', 'construction', 'continued', 'in', 'the', '1', '4', 'th', 'century', 'and', 'was', 'finally', 'completed', 'in', 'the', '1', '5', 'th', 'century', '.'], ['he', 'has', 'also', 'had', 'starring', 'voice-overs', 'in', 'animated', 'features', ',', 'including', 'zeke', 'in', '``', 'ice', 'age', \"''\", '(', '2', '0', '0', '2', ')', 'and', 'lenny', 'in', '``', 'shark', 'tale', \"''\", '(', '2', '0', '0', '4', ')', '.'], ['this', 'would', 'allow', 'taxes', 'on', 'inputs', 'and', 'outputs', 'to', 'be', 'removed', 'or', 'reduced', 'and', 'would', 'encourage', 'only', 'those', 'prepared', 'to', 'maximise', 'the', 'potential', 'of', 'their', 'land', 'to', 'remain', 'in', 'farming', '.'], ['this', 'was', 'one', 'of', 'the', 'earliest', 'decrees', 'of', 'this', 'kind', 'in', 'germany', '.'], ['however', ',', 'despite', 'his', 'powers', 'threatening', 'to', 'go', 'out', 'of', 'control', ',', 'he', 'escaped', 'from', 'croit', \"'s\", 'attempts', 'to', 'cure', 'him', 'and', 'fled', '.'], ['experts', 'estimated', 'that', 'it', 'could', 'handle', 'even', 'large', 'aircraft', '.'], ['the', 'opera', 'was', 'later', 'reissued', 'in', 'different', 'packaging', 'as', 'part', 'of', 'philips', \"'s\", 'duo', 'and', 'decca', \"'s\", 'grandopera', 'ranges', '.'], ['the', 'title', 'of', 'the', 'film', 'is', 'a', 'play', 'on', 'hoffman', \"'s\", '1', '9', '7', '0', 'counter-culture', 'guidebook', 'titled', '``', 'steal', 'this', 'book', \"''\", '.'], ['the', 'unnamed', 'doctor', 'reacted', 'by', 'saying', 'that', 'the', 'women', 'were', 'well', 'when', 'they', 'left', 'the', 'hospital', '.'], ['the', 'election', 'was', 'very', 'close', ',', 'with', 'the', 'house', 'of', 'representatives', 'required', 'to', 'decide', 'the', 'final', 'outcome', '.'], ['he', 'also', 'served', 'as', 'the', 'sunday', 'editor', 'of', '``', 'the', 'new', 'york', 'world', 'journal', 'tribune', \"''\", 'and', 'assistant', 'managing', 'editor', 'of', '``', 'the', 'washington', 'post', \"''\", 'before', 'joining', 'nbc', 'in', '1', '9', '6', '7', '.'], ['congress', 'enacted', 'the', 'rocky', 'mountain', 'arsenal', 'national', 'wildlife', 'refuge', 'act', 'on', 'september', '2', '5', ',', '1', '9', '9', '2', ',', 'and', 'the', 'legislation', 'was', 'signed', 'into', 'law', 'by', 'president', 'george', 'h.', 'w.', 'bush', 'on', 'october', '9', '.'], ['he', 'returned', 'to', 'broadway', 'as', 'co-bookwriter', 'of', '``', 'elf', \"''\", 'with', 'thomas', 'meehan', ',', 'lyrics', 'by', 'chad', 'beguelin', 'and', 'music', 'by', 'matthew', 'sklar', '.'], ['they', 'are', 'often', 'cutting-edge', 'shops', 'or', 'feature', 'progressive', 'designers', 'and', 'products', '.'], ['he', 'entered', 'the', 'united', 'states', 'air', 'force', 'in', '1', '9', '8', '4', 'as', 'a', 'graduate', 'of', 'the', 'united', 'states', 'air', 'force', 'academy', '.'], ['these', 'reports', 'must', 'be', 'formatted', 'within', 'gsa', 'standards', 'and', 'must', 'list', 'the', 'following', 'information', 'for', 'trips', 'taken', 'during', 'the', 'preceding', 'six-month', 'period', ':'], ['on', 'the', 'same', 'day', ',', 'three', 'other', 'combats', 'were', 'reported', '.'], ['during', 'the', '1', '9', '8', '0', 's', 'novikov', 'worked', 'at', 'the', 'russian', 'museum', 'and', 'enjoyed', 'access', 'to', 'its', 'collection', 'and', 'archive', ',', 'as', 'well', 'as', 'close', 'working', 'relationships', 'with', 'its', 'curators', '.'], ['tharoor', \"'s\", 'first', 'wife', 'was', 'tilottama', 'mukherji', ',', 'a', 'half-bengali', 'and', 'half-kashmiri', 'academic', ',', 'and', 'the', 'granddaughter', 'of', 'politician', 'kailash', 'nath', 'katju', '.'], ['charlie', 'lister', 'holds', 'the', 'record', 'as', 'the', 'most', 'successful', 'trainer', 'at', 'the', 'derby', ',', 'having', 'won', 'it', 'on', 'seven', 'occasions', '.'], ['further', 'success', 'came', 'with', 'ii', ',', 'released', 'in', '2', '0', '1', '3', ',', 'and', 'the', 'group', 'began', 'selling', 'out', 'shows', 'across', 'north', 'america', '.'], ['statutory', 'provision', 'for', 'juvenile', 'emancipation', 'has', 'spread', 'outside', 'of', 'common', 'law', 'jurisdictions', ',', 'for', 'example', 'brazil', '.'], ['she', 'established', 'the', 'lithuanian', 'people', \"'s\", 'party', 'soon', 'afterwards', '.'], ['his', 'first', 'book', ',', '``', 'lord', 'brougham', 'and', 'the', 'whig', 'party', \"''\", '(', '1', '9', '2', '7', ')', ',', 'grew', 'out', 'of', 'his', 'doctoral', 'thesis', '.'], ['namibogenius', 'confusus', 'is', 'a', 'species', 'of', 'beetles', 'in', 'the', 'family', 'buprestidae', ',', 'the', 'only', 'species', 'in', 'the', 'genus', 'namibogenius', '.'], ['southeast', 'leatherfest', 'is', 'owned', 'and', 'produced', 'by', 'catherine', 'gross', '.'], ['meanwhile', ',', 'another', 'communist', 'force', 'cross', 'the', 'wanda', '(', '完达', ')', 'mountain', 'and', 'with', 'the', 'help', 'of', 'communist', 'force', 'in', 'hejiang', ',', 'attacked', 'bandits', 'fled', 'to', 'baoqing', '(', '宝清', ')', '.'], ['the', 'recovered', 'segebert', 'and', 'outlaw', 'also', 'arrive', ';', 'the', 'outlaws', 'confess', 'and', 'are', 'forgiven', '.'], ['after', 'the', 'war', ',', 'the', 'soviet', 'union', 'expelled', 'a', 'moderate', 'number', 'of', 'ethnic', 'germans', 'to', 'the', 'west', '.'], ['by', 'the', 'beginning', 'of', 'the', '1', '1', 'th', 'century', 'most', 'of', 'the', 'slavic', 'world', ',', 'including', ',', 'bulgaria', ',', 'serbia', ',', 'and', 'russia', 'had', 'converted', 'to', 'orthodox', 'christianity', '.'], ['haiku', 'was', 'still', 'quite', 'unstable', ',', 'as', 'should', 'be', 'expected', 'in', 'its', 'pre-release', 'state', ',', 'as', 'crashes', 'had', 'been', 'prevalent', 'and', 'no', 'release', 'date', 'had', 'been', 'set', '.'], ['the', 'city', 'population', 'was', '5', ',', '4', '6', '3', 'at', 'the', '2', '0', '1', '0', 'united', 'states', 'census', '.'], ['the', 'stream', 'flows', 'first', 'to', 'the', 'northeast', 'and', 'passes', 'different', 'parts', 'of', 'georgenthal', '.'], [')', ',', 'to', 'be', 'paid', 'to', 'his', 'wife', 'in', 'scotland', ',', 'to', 'be', 'secured', 'an', 'equivalent', 'for', 'his', 'lands', 'in', 'mecklenburg', ',', 'and', 'to', 'be', 'conducted', 'safely', 'to', 'the', 'swedish', 'quarters', '.'], ['frogs', ',', 'newts', ',', 'dragonflies', 'and', 'other', 'aquatic', 'insects', 'occupy', 'the', 'wetland', 'areas', '.'], ['this', 'conflict', 'between', 'park', 'and', 'the', 'lee', 'administration', 'cost', 'her', 'a', 'considerable', 'decrease', 'in', 'her', 'approval', 'rating', 'at', 'the', 'time', '.'], ['one', 'of', 'isson', \"'s\", 'paintings', '(', 'amami', 'forest', ',', 'palm', 'trees', 'and', 'bougainvillea', ')', 'was', 'selected', 'by', 'japan', 'post', 'for', 'a', 'commemorative', 'postage', 'stamp', 'in', '2', '0', '0', '3', ',', 'commemorating', 'the', '5', '0', 'th', 'anniversary', 'of', 'the', 'reversion', 'of', 'the', 'amami', 'islands', 'to', 'japanese', 'administration', '.'], ['in', 'israel', 'the', 'cabinet', 'secretary', '(', 'also', 'called', 'the', 'government', 'secretary', ')', 'heads', 'an', 'office', 'responsible', 'for', 'preparing', 'the', 'agenda', 'of', 'cabinet', 'meetings', 'and', 'facilitating', 'communication', 'between', 'ministers', '.'], ['shavers', 'would', 'throw', 'punches', 'against', 'any', 'legal', 'area', 'he', 'could', 'reach', ',', 'exposed', 'or', 'covered', ',', 'relying', 'on', 'his', 'tremendous', 'power', 'to', 'wear', 'down', 'his', 'opponents', 'and', 'exploiting', 'any', 'opening', '.'], ['daniels', 'always', 'wondered', 'what', 'it', 'would', 'be', 'like', 'to', 'harness', 'the', 'energy', 'they', 'were', 'researching', ',', 'to', 'be', 'powerful', '.'], ['between', '1', '9', '7', '0', 'and', '1', '9', '7', '3', ',', 'he', 'chaired', 'the', 'southern', 'africa', 'content', 'group', ',', 'part', 'of', 'the', 'all', 'africa', 'conference', 'of', 'churches', \"'\", 'urban-industrial', 'ministry', '.'], ['the', 'album', 'marked', 'her', 'forty-first', 'week', 'atop', 'the', 'chart', ',', 'breaking', 'her', 'tie', 'with', 'adele', 'and', 'ranking', 'her', 'at', 'number', 'five', 'on', 'the', 'list', 'of', 'artists', 'with', 'most', 'accumulated', 'weeks', 'at', 'the', 'top', '.'], ['initial', 'hostility', 'derived', 'from', 'resentment', 'of', 'the', 'novel', ',', 'which', 'critics', 'charged', 'focused', 'only', 'on', 'the', 'perceived', 'backwardness', 'of', 'the', 'country', ',', 'while', 'some', 'government', 'officials', 'hoped', 'to', 'have', 'control', 'which', 'would', 'be', 'gone', 'if', 'the', 'film', 'work', 'was', 'done', 'outside', 'china', '.'], ['the', 'henleys', 'refurbished', 'the', 'lodge', \"'s\", 'reception', 'room', 'and', 'partly', 'refurbished', 'the', 'parlour', ',', 'leaving', 'some', 'original', 'panelling', 'and', 'the', 'original', 'decorated', 'ceiling', ',', 'but', 'made', 'minimal', 'changes', 'to', 'the', 'great', 'oak', 'room', ',', 'small', 'oak', 'room', 'and', 'bedroom', ',', 'leaving', 'the', 'rich', 'tudor', 'decoration', 'largely', 'untouched', '.'], ['the', 'kaqchikel', 'document', 'continues', 'with', 'an', 'account', 'of', 'their', 'journeys', 'and', 'the', 'places', 'through', 'which', 'they', 'passed', 'along', 'the', 'way', ',', 'ending', 'with', 'a', 'sober', ',', 'factual', 'account', 'of', 'the', 'conquest', '.'], ['bertha', 'is', 'happy', 'with', 'anthynus', 'as', 'her', 'husband', ',', 'so', 'making', 'him', 'king', 'of', 'the', 'west', 'saxons', 'and', 'fulfilling', 'his', 'vision', '.'], ['in', '1', '9', '8', '5', 'he', 'took', 'up', 'writing', 'full-time', '.'], ['lasantha', 'wickrematunge', 'was', 'threatened', 'by', 'president', 'mahinda', 'rajapaksa', 'using', 'abusive', 'language', 'in', 'a', 'telephone', 'call', 'on', '1', '1', 'january', '2', '0', '0', '6', '.'], ['fuller', 'died', 'in', 'his', 'office', ',', 'while', 'resting', 'from', 'his', 'work', '.'], ['in', 'the', 'first', 'article', 'published', ',', 'the', 'editorial', 'team', 'described', 'the', 'planning', 'process', 'for', 'the', 'launch', ':', '``', 'we', 'decided', 'we', 'want', 'to', 'publish', 'in', 'arabic', 'as', 'well', 'as', 'english', ',', 'that', 'we', 'want', 'to', 'see', 'more', 'data-based', 'reports', ',', 'more', 'investigative', 'journalism', '.'], ['at', 'the', 'end', 'of', 'the', '1', '5', 'th', 'century', 'the', 'abbey', 'joined', 'the', 'bursfelde', 'congregation', '.'], ['hayate', 'rescues', 'her', 'from', 'being', 'run', 'over', ',', 'which', 'leaves', 'him', 'conflicted', 'between', 'the', 'loyalty', 'to', 'his', 'old', 'friend', 'kabamaru', 'and', 'the', 'grateful', 'ran', 'on', 'one', 'side', 'and', 'his', 'duty', 'to', 'his', 'employer', ',', 'mrs.', 'matsuno', ',', 'on', 'the', 'other', '.'], ['he', 'has', 'played', 'in', 'major', 'league', 'baseball', '(', 'mlb', ')', 'for', 'the', 'cleveland', 'indians', ',', 'baltimore', 'orioles', ',', 'tampa', 'bay', 'rays', ',', 'milwaukee', 'brewers', ',', 'st.', 'louis', 'cardinals', ',', 'and', 'toronto', 'blue', 'jays', '.'], ['while', 'the', 'bsb', 'conducts', 'special', 'operations', ',', 'its', 'missions', 'are', 'not', 'planned', 'by', 'the', 'netherlands', 'special', 'operations', 'command', '(', 'nld', 'socom', ')', '.'], ['at', '2', '3', ':', '4', '8', ',', 'after', 'returning', 'to', 'the', 'base', 'course', ',', '``', 'northampton', \"''\", 'was', 'hit', 'by', 'two', 'of', '``', 'kawakaze', \"'s\", \"''\", 'torpedoes', '.'], ['by', 'the', 'time', 'of', 'independence', 'of', 'pakistan', ',', 'the', 'hajong', 'guerrillas', 'operating', 'along', 'the', 'indo-pakistani', 'border', 'were', 'well', 'organised', '.'], ['progressively', ',', 'he', 'added', 'to', 'what', 'was', 'known', 'as', 'the', 'original', '``', 'cottage', \"''\", 'that', 'was', 'at', 'the', 'back', 'of', 'the', 'house', '.'], ['the', 'time', 'delay', 'τj', 'between', 'the', 'center', 'site', '0', 'and', 'site', 'j', 'with', 'the', 'relative', 'coordinates', '(', '``', 'xj', ',', 'yj', \"''\", ')', 'is'], ['following', 'the', 'inaugural', 'may', '2', '0', '1', '3', 'county', 'elections', 'the', 'ward', 'was', 'represented', 'by', 'two', 'independent', 'councillors', ',', 'victor', 'hughes', 'and', 'hywel', 'eifion', 'jones', ',', 'on', 'a', 'turnout', 'of', '5', '2', '.', '8', '%', '.'], ['in', '2', '0', '1', '6', ',', 'brentz', 'missed', 'the', 'beginning', 'of', 'the', 'season', ',', 'from', 'april', '6', 'to', 'may', '6', ',', 'with', 'an', 'oblique', 'injury', '.'], ['on', '1', '1', 'october', '1', '9', '8', '7', ',', 'calder', 'park', 'hosted', 'round', '9', 'of', 'the', 'inaugural', 'world', 'touring', 'car', 'championship', 'on', 'the', 'combined', 'road', 'course', 'and', 'the', 'newly', 'built', 'high', 'banked', 'thunderdome', '.'], ['in', 'september', '2', '0', '1', '9', ',', 'he', 'was', 'named', 'in', 'the', 'squad', 'for', 'the', 'cape', 'town', 'blitz', 'team', 'for', 'the', '2', '0', '1', '9', 'mzansi', 'super', 'league', 'tournament', '.'], ['on', 'leaving', 'school', ',', 'she', 'worked', 'at', 'the', 'nearby', 'ford', 'dagenham', 'factory', ',', 'and', 'did', 'some', 'part-time', 'modelling', 'before', 'coming', 'second', 'as', 'a', 'singer', 'in', 'a', 'local', 'talent', 'contest', '.'], ['the', 'north', 'wales', 'coast', 'line', 'runs', 'through', 'holywell', 'junction', 'with', 'trains', 'running', 'fast', 'through', 'the', 'station', '.'], ['nineteen', 'of', 'the', 'forty-three', 'were', 'teenagers', 'while', 'sixteen', 'were', 'between', 'ages', 'five', 'to', 'eleven', '.'], ['andrew', 'ager', '(', 'born', 'february', '1', '2', ',', '1', '9', '6', '2', ')', 'is', 'a', 'canadian', 'composer', 'of', 'symphonies', ',', 'operas', ',', 'chamber', ',', 'and', 'solo', 'music', '.'], ['in', 'july', '2', '0', '1', '5', ',', 'lockheed', 'martin', 'confirmed', 'the', 'authenticity', 'of', 'a', 'leaked', 'report', 'showing', 'the', 'f-', '3', '5', 'to', 'be', 'less', 'maneuverable', 'than', 'an', 'older', 'f-', '1', '6', 'd', 'with', 'wing', 'tanks', '.'], ['it', 'was', 'described', 'by', 'zeller', 'in', '1', '8', '7', '7', '.'], ['normally', ',', 'these', 'are', 'under', 'the', 'control', 'of', 'the', 'secretary', 'general', 'of', 'the', 'presidency', ',', 'but', 'they', 'can', 'be', 'assigned', 'to', 'the', 'undersecretaries', 'of', 'state', '.'], ['trujillo', 'earned', 'a', 'certificate', 'in', 'dental', 'assisting', 'from', 'jordan', 'technical', 'college', 'and', 'studied', 'business', 'management', 'at', 'salt', 'lake', 'community', 'college', 'in', 'utah', '.'], ['the', 'show', 'ran', 'from', 'august', '2', '0', '1', '1', 'until', 'october', '2', '0', '1', '8', 'with', '3', '7', '1', 'episodes', 'made', '.'], ['during', 'that', 'time', 'unemployment', 'skyrocketed', '1', '7', '0', '%', ',', 'the', 'unemployment', 'rate', 'rose', 'from', '4', '.', '2', '%', 'in', 'the', 'september', '1', '9', '8', '7', 'quarter', 'to', '7', '.', '5', '%', 'in', 'the', 'june', '1', '9', '8', '9', 'quarter', '.'], ['secon', 'remained', 'store', 'manager', ',', 'while', 'morris', ',', 'who', 'was', 'also', 'musically', 'inclined', ',', 'became', 'principal', 'hornist', 'for', 'the', 'rochester', 'philharmonic', 'orchestra', 'and', 'teacher', 'at', 'the', 'eastman', 'school', 'of', 'music', '.'], ['the', 'stable', 'court', ',', 'some', 'to', 'the', 'north', ',', 'is', 'also', 'a', 'grade', 'ii', 'listed', 'building', 'and', 'both', 'are', 'owned', 'by', 'pembrokeshire', 'county', 'council', '.'], ['maximin', 'share', 'cake-cutting', ',', 'when', 'the', 'pieces', 'must', 'be', 'separated', 'by', 'a', 'positive', 'distance', ',', 'can', 'not', 'be', 'done', 'using', 'finitely-many', 'rw', 'queries', '.'], ['it', 'would', 'also', 'have', 'been', 'the', 'place', 'where', 'he', 'retired', 'during', 'the', 'persecutions', ',', 'which', 'may', 'be', 'true', 'to', 'the', 'extent', 'that', 'the', 'site', 'was', 'at', 'least', 'located', 'outside', 'the', 'walls', 'of', 'the', 'former', 'city', '.'], ['he', 'served', 'as', 'chief', 'judge', 'from', '1', '9', '9', '1', 'to', '1', '9', '9', '8', '.'], ['``', 'elf', \"''\", 'had', 'two', 'limited', 'engagements', 'for', 'the', 'holiday', 'seasons', 'of', '2', '0', '1', '0', 'and', '2', '0', '1', '2', '.'], ['prince', 'talaha', 'pok', '(', ',', ')', 'was', 'appointed', 'the', 'regent', 'of', 'cambodia', '.'], ['he', 'served', 'in', 'the', 'second', 'world', 'war', 'in', 'north', 'west', 'europe', 'for', 'which', 'he', 'was', 'awarded', 'the', 'distinguished', 'service', 'order', '.'], ['charan', 'banjaras', ',', 'also', 'called', 'gormati', 'banjaram', ',', 'in', 'pusad', 'taluk', 'belong', 'to', 'both', '``', 'bada', 'rathod', \"''\", 'and', '``', 'chota', 'rathode', \"''\", 'clans', '.'], ['several', 'charismatic', 'players', '(', 'ilya', 'tsymbalar', 'and', 'andrey', 'tikhonov', 'among', 'others', ')', 'left', 'the', 'club', 'as', 'a', 'result', 'of', 'conflict', 'with', 'romantsev', '.'], ['fazañas', 'was', 'a', 'customary', 'law', 'system', 'used', 'in', 'the', 'county', 'of', 'castile', ',', 'similar', 'to', 'the', 'ones', 'used', 'in', 'principality', 'of', 'catalonia', ',', 'kingdom', 'of', 'aragón', 'and', 'kingdom', 'of', 'valencia', 'during', 'the', 'middle', 'ages', '.'], ['other', 'facilities', 'in', 'the', 'living', 'group', '(', 'bathrooms', ',', 'common', 'rooms', ',', 'tea', 'kitchens', 'etc', '.', ')'], ['in', '1', '3', '2', '2', ',', 'hallschlag', 'had', 'its', 'first', 'documentary', 'mention', '.'], ['the', 'camels', 'dropped', 'from', 'low', 'altitude', 'and', 'then', 'strafed', 'the', 'airfield', 'from', 'so', 'low', 'that', 'two', 'camels', 'touched', 'the', 'ground', 'with', 'their', 'wheels', '.'], ['it', 'was', 'named', 'to', 'imply', 'that', 'the', 'area', 'is', 'full', 'of', 'possibility', 'due', 'to', 'the', 'number', 'of', 'learning', 'and', 'creative', 'campuses', 'in', 'this', 'small', 'area', '.'], ['during', 'his', 'time', 'in', 'the', 'new', 'zealand', 'medical', 'corps', '.'], ['it', 'is', 'mrs.', 'eleanor', 'maxie', 'who', 'eventually', 'confesses', 'to', 'the', 'murder', 'of', 'sally', 'jupp', 'after', 'dalgliesh', 'reveals', 'everyone', \"'s\", 'movements', 'on', 'the', 'night', '.'], ['ptfe', 'or', 'teflon', 'was', 'invented', 'in', '1', '9', '3', '8', 'and', 'can', 'be', 'refined', 'for', 'use', 'in', 'the', 'medical', 'industry', 'for', 'prolonged', 'contact', 'with', 'skin', '.'], ['in', 'thailand', ',', 'the', 'vehicle', 'is', 'called', 'the', 'hilux', 'vigo', ',', 'or', 'simply', 'vigo', '.'], ['simjur', 'al-dawati', 'was', 'then', 'installed', 'as', 'governor', 'of', 'sistan', '.'], ['the', 'new', 'updated', 'skoda', 'rapid', \"'s\", 'petrol', 'gets', 'powered', 'by', 'the', 'familiar', '1', '.', '6', '-liter', 'petrol', 'motor', 'that', 'has', 'the', 'capability', 'to', 'generate', 'a', 'maximum', 'power', 'output', 'of', '1', '0', '5', 'bhp', 'along', 'with', '1', '5', '3', 'nm', 'of', 'top', 'torque', '.'], ['paul', 'reminds', 'the', 'people', 'that', 'they', 'are', '``', 'no', 'longer', \"'belong\", 'to', 'the', 'world', \"'\", '(', ')', ',', 'but', 'in', 'intimate', 'union', 'with', 'christ', '.'], ['if', 'a', 'senator', 'were', 'to', 'die', ',', 'hawaii', 'election', 'law', 'requires', 'that', 'the', 'governor', 'appoint', 'a', 'replacement', 'of', 'the', 'same', 'party', '.'], ['it', 'is', 'estimated', 'that', 'without', 'significant', 'human', 'intervention', ',', 'plaquemines', 'parish', 'will', 'lose', '5', '5', '%', 'of', 'its', 'current', 'land', 'to', 'rising', 'sea', 'levels', 'over', 'the', 'next', '5', '0', 'years', '.'], ['eckhart', 'believed', 'that', 'the', 'intellect', 'was', 'superior', 'to', 'the', 'will', 'in', 'this', 'regard', 'since', 'through', 'it', ',', 'god', 'can', 'be', 'known', 'without', 'any', 'of', 'the', 'human', 'qualities', 'with', 'which', 'the', 'will', 'invests', 'its', 'image', 'of', 'him', '.'], ['the', 'lack', 'of', 'water', ',', 'coupled', 'with', 'the', 'destruction', 'of', 'soil', 'that', 'takes', 'centuries', 'to', 'form', ',', 'can', 'cause', 'the', 'failure', 'of', 'a', 'civilisation', '.'], ['the', 'final', '8', '-', '7', 'vote', ',', 'which', 'split', 'along', 'partisan', 'lines', ',', 'effectively', 'made', 'hayes', 'president', ',', 'and', 'bradley', 'was', 'characterized', 'in', 'the', 'press', 'as', 'the', '``', 'casting', 'vote', \"''\", ',', 'or', 'tiebreaker', '.'], ['this', 'skipper', \"'s\", 'oval', 'eggs', 'are', 'pale', 'greenish-yellow', ',', 'flattened', 'above', 'and', 'below', 'with', 'slightly', 'depressed', 'tops', '.'], ['in', '2', '0', '0', '4', ',', 'songwriter', 'jeff', 'swope', 'began', 'writing', 'a', 'film', 'treatment', 'for', 'a', 'biographical', 'film', 'concerning', 'whitley', \"'s\", 'life', 'and', 'death', 'that', 'was', 'shelved', 'in', '2', '0', '0', '6', '.'], ['the', 'episode', 'was', 'written', 'by', 'john', 'pardee', 'and', 'joey', 'murphy', 'and', 'directed', 'by', 'david', 'warren', '.'], ['that', 'same', 'year', 'she', 'portrayed', 'clara', 'in', 'the', 'new', 'york', 'city', 'center', 'revival', 'of', 'george', 'gershwin', \"'s\", '``', 'porgy', 'and', 'bess', \"''\", 'with', 'william', 'warfield', 'and', 'martha', 'flowers', 'in', 'the', 'title', 'roles', '.'], ['this', 'list', 'also', 'contained', 'a', 'sequence', 'of', '2', '8', 'asteroids', ',', 'starting', 'with', '1', '0', '5', '4', 'forsytia', ',', 'that', 'were', 'all', 'named', 'after', 'plants', ',', 'in', 'particular', 'flowering', 'plants', '``', '(', 'also', 'see', 'list', 'of', 'minor', 'planets', 'named', 'after', 'animals', 'and', 'plants', ')', \"''\", '.'], ['the', 'building', 'dates', 'to', 'the', '1', '6', 'th', 'century', 'and', 'the', 'exterior', 'was', 'renovated', 'in', '1', '9', '0', '8', '.'], ['yap', 'was', 'responsible', 'for', 'implementing', 'british', 'columbia', \"'s\", 'climate', 'action', 'plan', 'and', 'overseeing', 'b.c', '.'], ['you', 'really', 'do', \"n't\", 'know', 'about', 'these', 'horses', 'until', 'you', 'put', 'them', 'in', 'that', 'scenario', ',', 'and', 'that', \"'s\", 'twice', 'now', 'that', 'he', 'just', 'fought', 'and', 'came', 'on', 'to', 'win', 'like', 'that', '.'], ['the', 'company', 'was', 'started', 'and', 'run', 'by', 'edward', 'kingsley', '(', '1', '9', '1', '4', '-', '1', '9', '6', '2', ')', ',', 'a', 'pioneer', 'in', '``', 'art', 'house', \"''\", 'film', 'distribution', 'in', 'the', 'us', '.'], ['in', '1', '9', '0', '3', ',', 'he', 'returned', 'to', 'remoland', 'where', 'he', 'worked', 'as', 'a', 'tailor', ',', 'a', 'farmer', 'and', 'public', 'letter', 'writer', '.'], ['all', 'use', 'of', 'government', 'aircraft', 'by', 'agencies', 'must', 'be', 'reported', 'semi-annually', 'to', 'the', 'general', 'services', 'administration', '(', 'gsa', ')', '.'], ['bulgaria', \"'s\", 'church', 'was', 'officially', 'recognized', 'as', 'a', 'patriarchate', 'by', 'constantinople', 'in', '9', '2', '7', ',', 'serbia', \"'s\", 'in', '1', '3', '4', '6', ',', 'and', 'russia', \"'s\", 'in', '1', '5', '8', '9', '.'], ['under', 'lee', ',', 'correlation', 'quickly', 'took', 'on', 'a', 'much', 'wider', 'scope', 'than', 'just', 'the', 'church', 'curriculum', '.'], ['on', 'august', '2', '9', ',', '2', '0', '1', '3', ',', 'the', '``', 'sporting', 'news', \"''\", 'reported', 'that', 'allmendinger', 'would', 'be', 'the', 'full-time', 'driver', 'for', 'jtg', 'daugherty', 'racing', 'in', '2', '0', '1', '4', '.'], ['following', 'this', 'encouragement', 'he', 'rose', 'to', 'a', 'position', 'of', 'responsibility', 'and', 'was', 'given', 'control', 'over', 'an', 'ira', 'arms', 'dump', 'which', 'was', 'subsequently', 'discovered', '-', 'the', 'largest', 'find', 'by', 'gardaí', 'on', 'the', 'island', 'of', 'ireland', '.'], ['the', 'tenth', ',', '1', '8', '8', 'years', 'after', 'lamech', ',', 'was', 'that', 'of', 'noah', '.'], ['about', '7', '.', '2', '%', 'of', 'families', 'and', '1', '1', '.', '9', '%', 'of', 'the', 'population', 'were', 'below', 'the', 'poverty', 'line', ',', 'including', '2', '0', '.', '3', '%', 'of', 'those', 'under', 'age', '1', '8', 'and', '9', '.', '8', '%', 'of', 'those', 'age', '6', '5', 'or', 'over', '.'], ['less', 'than', 'a', 'month', 'before', 'his', '3', '5', 'th', 'birthday', ',', 'félix', 'sánchez', ',', 'the', '2', '0', '0', '1', 'and', '2', '0', '0', '3', 'world', 'champion', 'showed', 'he', 'was', 'still', 'in', 'the', 'game', ',', 'running', 'a', 'season', 'best', '4', '7', '.', '7', '6', '.'], ['after', 'the', 'outbreak', 'of', 'world', 'war', 'ii', 'and', 'the', 'occupation', 'of', 'lviv', 'by', 'the', 'ussr', ',', 'he', 'remained', 'at', 'the', 'university', '.'], ['the', 'announcement', 'was', 'met', 'with', 'surprise', 'and', 'intrigue', 'from', 'political', 'commentators', '.'], ['dockery', 'was', 'born', 'on', 'february', '7', ',', '1', '9', '4', '2', 'in', 'cleveland', ',', 'tennessee', '.'], ['it', 'had', 'two', 'airtight', 'hatches', 'with', 'fast-opening', 'locks', ';', 'ballast', 'was', 'carried', 'externally', 'and', 'could', 'be', 'instantly', 'released', 'on', 'demand', '.'], ['``', 'faith', \"''\", 'was', 'launched', 'march', '1', '8', ',', '1', '9', '1', '8', '.'], ['as', 'of', 'the', '2', '0', '1', '0', 'united', 'states', 'census', ',', 'the', 'population', 'was', '8', '2', ',', '1', '2', '8', '.'], ['there', 'are', '8', ',', '3', '5', '9', 'rivers', 'of', 'various', 'lengths', 'within', 'azerbaijan', '.'], ['his', 'daughter', ',', 'nancy', ',', 'also', 'is', 'incapable', 'of', 'handling', 'small', 'electrical', 'problems', '.'], ['they', 'are', 'tossed', 'together', 'by', 'fate', 'when', 'felix', 'is', 'accused', 'of', 'destroying', 'the', 'crystal', 'virtu', ',', 'an', 'orb', 'which', 'channels', 'the', 'magical', 'energy', 'of', 'the', 'magicians', 'in', 'mélusine', '.'], ['his', 'first', 'win', 'came', 'in', '1', '9', '8', '5', 'at', 'the', 'buick', 'open', ',', 'and', 'his', 'last', 'was', 'at', 'the', 'kmart', 'greater', 'greensboro', 'open', 'in', '1', '9', '8', '9', '.'], ['an', 'active', 'nucleus', 'has', 'a', 'spectrum', 'with', 'a', 'continuum', 'that', 'can', 'not', 'be', 'explained', 'by', 'radiation', 'from', 'one', 'or', 'more', 'stellar', '(', 'or', 'blackbody', ')', 'objects', '.'], ['salta', 'is', 'the', 'seat', 'of', 'the', 'capital', 'department', ',', 'the', 'most', 'populous', 'department', 'in', 'the', 'province', '.'], ['utilizing', 'netphos', ',', 'a', 'total', 'of', '4', '8', 'phosphorylation', 'sites', 'have', 'been', 'predicted', '(', '4', '1', 'serines', ',', '2', 'threonines', ',', 'and', '5', 'tyrosines', ')', ',', 'all', 'of', 'which', 'occur', 'after', 'the', 'predicted', 'transmembrane', 'domain', ',', 'suggesting', 'cytoplasmic', 'topology', '.'], ['most', 'of', 'the', 'ministers', 'resigned', 'as', 'a', 'result', 'of', 'it', '.'], ['apart', 'from', 'lee', 'kuan', 'yew', ',', 'many', 'first-generation', 'leaders', 'of', 'singapore', 'were', 'of', 'hakka', 'descent', ',', 'including', 'chor', 'yeok', 'eng', ',', 'hon', 'sui', 'sen', ',', 'howe', 'yoon', 'chong', 'and', 'yong', 'nyuk', 'lin', '.'], ['the', 'coda', 'briefly', 'returns', 'to', 'a', 'fragment', 'of', 'this', 'lament', ',', 'ending', 'with', 'the', 'marking', '``', 'fermata', 'breve', ';', 'poi', 'attacca', \"''\", '(', '``', 'pause', 'briefly', ',', 'then', 'connect', 'to', 'the', 'next', 'movement', \"''\", ')', '.'], ['on', 'weekends', ',', 'his', 'schoolmates', 'watched', 'movies', 'at', 'the', 'cinemas', '.'], ['in', '2', '0', '1', '1', ',', 'karger', 'encouraged', 'republicans', 'to', 'boycott', 'florida', 'orange', 'juice', 'in', 'protest', 'of', 'the', 'florida', 'republican', 'party', \"'s\", 'decision', 'to', 'reschedule', 'its', 'presidential', 'primary', 'to', 'january', ',', 'which', 'upsets', 'the', 'normal', 'primary', 'calendar', '.'], ['director', 'gareth', 'evans', 'came', 'across', 'the', 'idea', 'for', 'the', 'film', 'when', 'he', 'moved', 'to', 'indonesia', 'to', 'film', 'a', 'documentary', 'about', 'the', 'country', \"'s\", 'martial', 'art', 'pencak', 'silat', ',', 'as', 'suggested', 'by', 'his', 'wife', 'of', 'indonesian', 'japanese', 'descent', '.'], ['public', 'high', 'schools', 'of', 'the', '``', 'instituto', 'de', 'educación', 'media', 'superior', 'del', 'distrito', 'federal', \"''\", '(', 'iems', ')', 'include', ':'], ['new', 'hampshire', \"'s\", 'open', 'source', 'voting', 'software', 'is', 'called', 'one', '4', 'all', 'and', 'is', 'based', 'on', 'the', 'prime', 'iii', 'system', 'developed', 'by', 'cavo', 'advisory', 'board', 'member', 'dr.', 'juan', 'e.', 'gilbert', '.'], ['that', 'would', 'in', 'eventually', 'provide', 'insufficient', 'support', 'for', 'the', 'alliance', \"'s\", 'aspirations', '.'], ['seven', 'gp', 'doctors', 'and', 'six', 'dentists', 'work', 'in', 'the', 'garmen', 'municipality', 'area', 'with', 'no', 'hospitals', 'nearby', '.'], ['during', 'that', 'time', ',', 'he', 'implemented', 'the', 'first', 'law', 'concerning', 'kindergartens', ',', 'and', 'introduced', 'the', 'state', \"'s\", 'first', 'welfare', 'stations', '.'], ['though', 'renewed', 'neighborhood', 'protest', 'has', 'blocked', 'this', 'measure', ',', 'the', 'road', 'has', 'been', 'blacktopped', 'and', 'striped', ',', 'and', 'the', 'i-', '3', '5', 'e', 'ramps', 'were', 'reopened', 'after', 'signals', 'were', 'put', 'on', 'ayd', 'mill', \"'s\", 'entrance', 'ramps', '.'], ['according', 'to', 'mrs', 'eliza', 'blight', ',', 'a', 'second', 'witness', ',', 'mrs', 'phoebe', 'veitch', 'had', 'two', 'children-', 'albert', '(', '7', ')', 'and', '``', 'flossie', \"''\", '(', 'phoebe', ')', '(', '4', ')', '.'], ['in', 'the', 'lebanon', 'war', '2', '0', '0', '6', 'he', 'photographed', 'five', 'young', 'lebanese', 'driving', 'through', 'the', 'rubble', 'of', 'the', 'bombed', 'beirut', 'in', 'a', 'cabriolete', '.'], ['the', 'per', 'capita', 'income', 'for', 'the', 'borough', 'was', '$', '2', '1', ',', '2', '3', '9', '.'], ['organizations', 'like', 'μfun', 'provide', 'a', 'forum', 'and', 'a', 'listserv', 'for', 'instant', 'notification', 'to', 'amateur', 'and', 'professional', 'astronomers', 'all', 'over', 'the', 'globe', ',', 'so', 'that', 'microlensing', 'events', 'can', 'be', 'mined', 'for', 'all', 'the', 'information', 'that', 'can', 'be', 'gathered', '.'], ['he', 'has', 'also', 'gone', 'on', 'tour', 'with', 'companies', 'of', '``', 'man', 'of', 'la', 'mancha', \"''\", 'and', '``', 'west', 'side', 'story', '.', \"''\"], ['the', 'hills', 'also', 'contain', 'unique', 'flora', 'and', 'fauna', 'that', 'are', 'not', 'found', 'this', 'far', 'east', 'of', 'alberta', \"'s\", 'rocky', 'mountains', 'in', 'as', 'large', 'numbers', 'as', 'at', 'dry', 'island', '.'], ['this', 'was', 'achieved', 'due', 'to', 'ambartsumian', \"'s\", 'political', 'skills', ',', 'with', 'the', 'active', 'support', 'of', 'mstislav', 'keldish', ',', 'the', 'then', 'president', 'of', 'the', 'academy', 'of', 'sciences', 'of', 'the', 'ussr', '.'], ['rising', 'prices', 'and', 'the', 'scarcity', 'of', 'food', 'in', 'paris', 'made', 'the', 'government', 'of', 'frondeurs', 'more', 'and', 'more', 'unpopular', '.'], ['it', 'also', 'maintains', 'an', 'africa-wide', 'network', 'for', 'information', 'exchange', 'and', 'capacity', 'building', 'of', 'conservation', 'efforts', 'in', 'the', 'region', '.'], ['users', 'could', 'subscribe', 'to', 'the', 'syndicated', 'feeds', 'for', 'free', 'using', 'a', 'web', 'browser', '.'], ['it', 'is', 'one', 'of', 'five', 'communities', 'located', 'within', 'the', 'symons', 'valley', 'area', '.'], ['nana', 'is', 'a', 'cross-platform', 'c++', 'library', 'for', 'creating', 'graphical', 'user', 'interfaces', '.'], ['it', 'was', 'probably', 'in', 'lyon', 'that', 'he', 'met', 'samuel', 'chappuzeau', ',', 'who', 'claimed', 'to', 'have', 'first', 'given', 'him', 'the', 'idea', 'of', 'writing', 'his', 'encyclopedia', '.'], ['my', 'lands', '(', 'also', 'known', 'as', 'mlgame', ',', 'ml', ')', 'is', 'a', 'browser-based', 'multiplayer', 'game', 'in', 'the', 'genre', 'of', 'military-economic', 'real-time', 'strategy', 'set', 'in', 'a', 'fantasy', 'world', '.'], ['accordingly', ',', 'jackson', 'set', 'out', 'on', 'august', '7', 'for', 'culpeper', '.'], ['brigadier', 'gerard', 'won', 'by', '8', 'lengths', 'over', 'dictus', 'in', 'near', 'course', 'record', 'time', '.'], ['the', 'population', 'was', '2', '2', '6', 'at', 'the', '2', '0', '0', '0', 'census', '.'], ['kocian', 'was', 'sidelined', 'for', 'the', 'first', 'few', 'weeks', 'of', 'the', '2', '0', '2', '0', 'season', 'with', 'shoulder', 'soreness', '.'], ['this', 'has', 'led', 'to', 'criticism', 'of', 'the', 'grouping', 'as', 'unscientific', 'and', 'driven', 'by', 'marketing', '.'], ['within', 'months', 'of', 'opening', ',', 'tunnel', 'usage', 'had', 'increased', 'to', 'over', '7', '0', ',', '0', '0', '0', 'trips', 'per', 'weekday', 'and', 'a', 'weekly', 'volume', 'just', 'under', '5', '0', '0', ',', '0', '0', '0', 'trips', 'by', 'late', 'march', '2', '0', '1', '9', '.'], ['originally', 'he', 'was', 'a', 'norwegian', 'wrestler', 'in', 'nordland', ',', 'but', 'one', 'and', 'a', 'half', 'years', 'before', 'the', '1', '9', '0', '4', 'olympic', 'games', ',', 'he', 'left', 'norway', 'for', 'the', 'united', 'states', '.'], ['mayfield', 'gives', 'house', 'a', 'good-bye', 'party', ',', 'and', 'house', 'is', 'discharged', 'and', 'gets', 'on', 'a', 'bus', 'back', 'to', 'princeton', '.'], ['klaus', 'bugdahl', '(', 'born', '2', '4', 'november', '1', '9', '3', '4', ')', 'is', 'a', 'retired', 'german', 'cyclist', 'who', 'was', 'active', 'between', '1', '9', '5', '4', 'and', '1', '9', '7', '8', 'both', 'on', 'the', 'road', 'and', 'track', '.'], ['after', 'modernization', ',', 'the', 'inuit', 'began', 'to', 'move', 'into', 'arctic', 'towns', 'and', 'participate', 'in', 'wage', 'labor', ',', 'government', 'employment', ',', 'community', 'councils', ',', 'and', 'the', 'acquisition', 'of', 'modern', 'clothing', ',', 'housing', ',', 'and', 'vehicles', '.'], ['he', 'produced', 'and', 'directed', '``', 'the', 'reluctant', 'saint', \"''\", '(', '1', '9', '6', '2', ')', '.'], ['the', \"qu'appelle\", 'valley', 'contains', 'a', 'number', 'of', 'parks', 'and', 'recreational', 'sites', 'including', 'those', 'of', 'echo', 'valley', ',', 'crooked', 'lake', ',', 'katepwa', 'point', ',', 'regina', 'beach', ',', 'buffalo', 'pound', ',', 'mission', 'ridge', ',', 'and', 'beaver', 'creek', '.'], ['guo', 'zhendong', '(', ';', 'born', '4', 'august', '1', '9', '8', '4', ')', 'is', 'a', 'badminton', 'player', 'from', 'china', '.'], ['following', 'a', 'game', ',', 'players', 'may', 'enter', 'their', 'names', 'into', 'a', 'high', 'score', 'list', '.'], ['numerous', 'choices', 'were', 'discarded', 'as', 'talks', 'continued', ',', 'including', '``', 'moto', 'perpetuo', \"''\", 'by', 'niccolò', 'paganini', 'with', '``', 'shots', 'of', 'dynamos', ',', 'cogs', ',', 'pistons', \"''\", 'and', '``', 'whirling', 'wheels', \"''\", 'to', 'show', 'the', 'production', 'of', 'a', 'collar', 'button', '.'], ['for', 'every', '1', '0', '0', 'females', ',', 'there', 'were', '1', '1', '2', '.', '9', 'males', '.'], ['mott', ',', 'island', 'foundation', ',', 'new', 'york', 'community', 'trust', ',', 'pisces', 'foundation', ',', 'and', 'more', '.'], ['these', 'prefectural', 'police', 'departments', 'are', 'primarily', 'municipal', 'police', 'with', 'their', 'own', 'police', 'authority', ',', 'but', 'their', 'activities', 'are', 'coordinated', 'by', 'national', 'police', 'agency', 'and', 'national', 'public', 'safety', 'commission', '.'], ['typically', ',', 'there', 'is', 'only', 'one', 'of', 'each', 'type', 'of', '3', 'd', 'sketch', 'per', 'episode', ',', 'but', 'some', 'segments', 'appear', 'twice', ',', 'and', 'some', 'do', 'not', 'appear', 'at', 'all', '.'], ['according', 'to', '``', 'the', 'guardian', \"''\", ',', 'schools', 'were', 'urged', 'to', 'destroy', 'copies', 'of', 'the', 'unedited', 'anthology', ',', 'though', 'this', 'was', 'later', 'denied', 'by', 'aqa', '.'], ['the', 'team', 'has', 'won', 'the', 'under-', '1', '9', 'world', 'cup', 'four', 'times', 'and', 'finished', 'runners-up', 'twice', '.'], ['his', 'teachers', 'were', 'percussionists', 'kobla', 'and', 'alfred', 'ladzekpo', ',', 'and', 'guitarist', 'miroslav', 'tadić', '.'], ['yen', 'organized', 'the', 'philippine', 'rural', 'reconstruction', 'movement', 'and', 'in', '1', '9', '6', '0', ',', 'he', 'established', 'the', 'international', 'institute', 'of', 'rural', 'reconstruction', '.'], ['current', 'gen-iii', 'nuclear', 'plant', 'operating', 'lifetimes', 'appear', 'to', 'be', 'limited', 'primarily', 'by', 'long-term', 'radiation-induced', 'ageing', 'phenomena', 'in', 'the', 'reactor', 'pressure', 'vessel', ',', 'primary', 'coolant', 'system', 'piping', ',', 'concrete', 'containment', 'structures', ',', 'and', 'cabling', '(', 'particularly', 'medium-voltage', 'power', 'cables', ')', '.'], ['there', 'he', 'began', 'his', 'own', '``', 'mail', 'order', \"''\", 'art', 'business', '.'], ['it', \"'s\", 'heartbreaking', 'that', 'jadin', \"'s\", 'story', 'has', 'become', 'a', 'reminder', 'of', 'the', 'horrifying', 'consequences', 'of', 'bullying', ',', 'rather', 'than', 'a', 'story', 'of', 'a', 'young', 'man', 'overcoming', 'adversity', 'and', 'a', 'community', 'changing', 'its', 'ways', '.', \"''\"], ['at', 'least', '1', '2', '5', 'of', 'the', '5', '0', '0', '+', 'human', 'protein', 'kinases', 'are', 'serine/threonine', 'kinases', '(', 'stk', ')', '.'], ['video', \"'s\", 'however', 'were', 'introduced', 'in', 'may', '2', '0', '0', '7', '.'], ['arab', 'localities', 'in', 'israel', 'include', 'all', 'population', 'centers', 'with', 'a', '5', '0', '%', 'or', 'higher', 'arab', 'population', 'in', 'israel', '.'], ['to', 'alleviate', 'the', 'shortage', 'of', 'teachers', ',', 'vocational', 'and', 'technical', 'teachers', \"'\", 'colleges', 'were', 'to', 'be', 'reformed', 'and', 'other', 'colleges', 'and', 'universities', 'were', 'to', 'be', 'mobilized', 'for', 'assistance', '.'], ['the', 'section', 'of', 'line', 'between', 'croydon', 'and', 'epsom', 'was', 'part', 'of', 'the', 'london', '&', 'amp', ';', 'croydon', 'railway', 'company', 'who', 'promoted', 'the', 'clegg', 'and', 'samuda', 'atmospheric', 'principle', ',', 'utilizing', 'a', 'pipe', '.'], ['retrospectively', ',', '``', 'seventeen', 'seconds', \"''\", 'has', 'been', 'considered', 'an', 'early', 'example', 'of', 'gothic', 'rock', '.'], ['for', 'most', 'of', 'his', 'retirement', ',', 'sven', 'tumba', 'and', 'his', 'wife', 'lived', 'in', 'west', 'palm', 'beach', ',', 'florida', ',', 'returning', 'to', 'sweden', 'for', 'the', 'summer', '.'], ['the', 'original', 'environment', 'of', 'the', 'deposits', 'has', 'been', 'interpreted', 'as', 'being', 'that', 'of', 'a', 'shallow', 'coastal', 'marine', 'reef', ',', 'to', 'open', 'brackish', 'waters', ',', 'with', 'a', 'maximum', 'depth', 'of', 'less', 'than', '1', '5', 'meters', '.'], ['the', 'most', 'famous', 'work', 'is', '1', '8', 'th', 'century', 'poet', '``', 'kabisurjya', \"''\", 'baladev', 'rath', \"'s\", '``', 'kishorachandrananda', 'champu', \"''\", ',', 'often', 'shortened', 'to', 'simply', '``', 'kishori', 'champu', \"''\", '.'], ['walter', 'thomas', 'was', 'born', 'in', 'athlone', 'and', 'educated', 'at', 'trinity', 'college', 'there', '.'], ['the', 'contents', 'of', 'the', 'gallery', 'changes', 'approximately', 'every', 'six', 'months', 'to', 'reflect', 'a', 'different', 'theme', 'found', 'within', 'the', 'pop', 'art', 'movement', '.'], ['monash', 'university', ',', 'caulfield', 'campus', 'was', 'founded', 'as', 'the', 'caulfield', 'technical', 'school', 'in', '1', '9', '2', '2', '.'], ['the', 'green', 'wall', ',', 'designed', 'by', 'singapore-based', 'landscape', 'design', 'firm', 'tierra', 'design', ',', 'also', 'helps', 'to', 'regulate', 'the', 'internal', 'temperature', 'of', 'the', 'terminal', 'with', 'the', 'occasional', 'misting', '.'], ['``', 'nme', \"''\", 'claimed', 'that', 'the', 'album', '``', 'pretty', 'much', 'invented', 'emo', \"'s\", 'melodic', 'wing', \"''\", '.'], ['as', 'a', 'result', ',', 'open', 'source', 'voting', 'systems', 'will', 'be', 'used', 'throughout', 'the', 'state', 'of', 'new', 'hampshire', 'in', 'the', '2', '0', '1', '6', 'presidential', 'election', '.'], ['throughout', 'that', 'period', 'it', 'was', 'held', 'by', 'hedges', 'eyre', 'chatterton', '(', 'who', 'was', 'born', 'in', 'cork', 'and', 'died', 'in', '1', '9', '1', '0', 'aged', '9', '1', ')', '.'], ['her', 'height', 'is', 'specified', 'as', 'just', 'short', 'of', 'fifty', 'feet', ',', 'so', 'as', 'not', 'to', 'invoke', 'copyright', 'violations', 'of', 'the', 'previous', 'character', '.'], ['for', 'example', ',', 'to', 'bring', 'priesthood', 'correlation', 'into', 'the', 'local', 'level', ',', 'priesthood', 'home', 'teaching', 'was', 'introduced', 'replacing', 'the', 'role', 'formerly', 'occupied', 'by', 'ward', 'teachers', '.'], ['the', 'battle', 'of', 'seacroft', 'moor', 'took', 'place', 'in', 'whinmoor', 'moor', 'near', 'the', 'village', 'of', 'seacroft', ',', 'north-east', 'of', 'leeds', 'in', 'west', 'riding', 'on', '3', '0', 'march', '1', '6', '4', '3', 'during', 'the', 'first', 'english', 'civil', 'war', '.'], ['the', 'following', 'week', ',', 'the', 'beautiful', 'people', 'were', 'attacked', 'backstage', 'by', 'the', 'dollhouse', ',', 'which', 'resulted', 'in', 'love', 'breaking', 'her', 'arm', 'in', 'the', 'storyline', ',', 'writing', 'her', 'off', 'television', 'due', 'to', 'her', 'legitimate', 'pregnancy', '.'], ['according', 'to', 'the', 'cbs', ',', 'in', '2', '0', '0', '1', 'there', 'were', '2', '2', ',', '2', '0', '0', 'males', 'and', '2', '3', ',', '7', '0', '0', 'females', '.'], ['he', 'was', 'born', 'in', 'new', 'britain', ',', 'connecticut', 'on', 'april', '1', '9', ',', '1', '8', '8', '4', '.'], ['on', '2', '3', 'october', '2', '0', '1', '8', ',', 'davis', 'resigned', 'from', 'a', 'committee', 'chaired', 'by', 'commons', 'speaker', 'john', 'bercow', ',', 'citing', 'lack', 'of', 'confidence', 'in', 'bercow', \"'s\", 'ability', 'to', 'tackle', 'bullying', 'and', 'sexual', 'harassment', 'problems', 'in', 'parliament', '.'], ['at', 'least', 'half', 'of', 'the', 'entries', 'were', 'copied', 'directly', ',', 'without', 'permission', ',', 'from', 'thomas', 'blount', \"'s\", '``', 'glossographia', \"''\", ',', 'which', 'had', 'been', 'published', 'a', 'couple', 'of', 'years', 'before', '.'], ['within', 'the', 'main', 'exhibition', 'hall', ',', 'there', 'is', 'a', 'large', 'trader', 'zone', 'that', 'contains', 'many', 'dealers', 'selling', 'film', 'and', 'television', ',', 'comic', 'and', 'science', 'fiction', 'related', 'memorabilia', ',', 'comics', ',', 'games', ',', 'artwork', ',', 'toys', 'and', 'collectibles', '.'], ['all', 'national', 'federations', 'were', 'allowed', 'to', 'enter', 'four', 'riders', 'for', 'the', 'race', ',', 'with', 'a', 'maximum', 'of', 'two', 'riders', 'to', 'start', '.'], ['this', 'only', 'referred', 'to', 'the', 'four', 'main', 'clove-producing', 'islands', 'to', 'the', 'west', 'of', 'halmahera', ':', 'ternate', ',', 'tidore', '.'], ['the', 'two', 'kiss', 'and', 'darla', 'tries', 'to', 'convince', 'angel', 'to', 'let', 'her', 'make', 'him', 'happy', '.'], ['the', 'eight', 'banners', 'army', 'played', 'an', 'important', 'role', 'in', 'unifying', 'china', 'in', 'the', 'qing', 'dynasty', '.'], ['with', 'the', 'advent', 'of', 'the', 'talking', 'picture', ',', 'fine', 'began', 'to', 'work', 'steadily', 'in', 'feature', 'films', '.'], ['an', 'additional', 'problem', 'is', 'the', 'vulnerability', 'of', 'some', 'current', 'mine', 'flail', 'vehicles', 'to', 'anti-tank', 'mines', '.'], ['first', 'run', 'in', '1', '9', '5', '1', ',', 'the', 'engine', 'was', 'flight', 'tested', 'during', '1', '9', '5', '3', 'using', 'an', 'avro', 'lancaster', 'provided', 'by', 'air', 'service', 'training', '.'], ['he', 'then', 'apologizes', 'for', 'his', 'actions', 'that', 'he', 'had', 'caused', 'and', 'wishes', 'to', 'meet', 'up', 'with', 'mega', 'man', 'peacefully', '.'], ['the', 'armoured', 'vehicles', 'that', 'participate', 'in', 'the', 'show', 'include', 'those', 'from', 'the', 'wheatcroft', 'collection', 'and', 'the', 'jon', 'phillips', 'armor', 'collection', '.'], ['the', 'event', 'concluded', 'with', 'a', 'flashmob', 'action', 'outside', 'the', 'sydney', 'opera', 'house', '.'], ['access', 'to', 'most', 'public', 'services', 'in', 'areas', 'under', 'israeli', 'control', 'is', 'conditional', 'on', 'proof', 'one', 'is', 'not', 'in', 'arrears', 'with', 'paying', 'one', \"'s\", 'taxes', ',', 'income', ',', 'property', 'and', 'value-added', '(', 'vat', ')', 'and', 'fines', ',', 'to', 'the', 'military', 'administration', '.'], ['the', '2', '0', '2', '0', 'turkmenistan', 'cup', '(', ')', 'is', 'the', '2', '7', 'th', 'season', 'of', 'the', 'turkmenistan', 'cup', 'knockout', 'tournament', '.'], ['dance', ',', 'learn', 'a', 'skill', ',', 'shoot', 'fireworks', ',', 'socket', 'items', ')', ',', 'and', '``', 'material', \"''\", 'which', 'covers', 'general', 'miscellany', ',', 'such', 'as', 'materials', 'for', 'crafting', ',', 'gems', ',', 'and', 'ammunition', 'for', 'weapons', 'that', 'need', 'them', '.'], ['the', 'don', 'bosco', 'technical', 'college-grade', 'school', 'is', 'a', 'catholic', 'elementary', 'school', 'for', 'boys', 'and', 'girls', ',', 'offering', 'grades', '1', 'until', 'grade', '6', '.'], ['bass', 'signed', 'a', 'four-year', ',', '$', '3', '.', '4', '7', '5', 'million', 'contract', 'with', 'the', 'bills', 'on', 'may', '7', ',', '2', '0', '2', '0', '.'], ['on', '7', 'june', '1', '9', '6', '6', ',', 'a', 'c-', '1', '3', '0', 'hercules', ',', 'piloted', 'by', 'cdr', 'marion', 'morris', 'of', 'vx-', '6', ',', 'returned', 'to', 'christchurch', 'after', 'a', 'flight', 'to', 'mcmurdo', 'station', 'to', 'evacuate', 'ut-', '2', 'robert', 'l.', 'mayfield', ',', 'who', 'had', 'been', 'critically', 'injured', 'in', 'a', 'fall', '.'], ['congressman', 'keliher', 'was', 'the', 'uncle', 'of', 'brigadier-general', 'john', 'j.', 'keliher', 'and', 'rear', 'admiral', 'thomas', 'joseph', 'keliher', '.'], ['a', 'race', 'on', 'turf', 'over', 'a', 'distance', 'of', 'one', 'mile', ',', 'it', 'is', 'open', 'to', 'horses', 'of', 'either', 'sex', 'age', 'three', 'and', 'older', '.'], ['in', 'may', '2', '0', '0', '6', ',', 'cossiga', 'gave', 'his', 'support', 'to', 'the', 'formation', 'of', 'prodi', \"'s\", 'second', 'government', '.'], ['the', 'two', 'men', 'bond', 'during', 'the', 'fruitless', 'negotiations', 'that', 'follow', ',', 'and', 'after', 'some', 'time', 'agree', 'to', 'try', 'to', 'get', 'away', 'through', 'the', 'trapdoor', 'in', 'the', 'ceiling', 'of', 'the', 'elevator', '.'], ['pratim', 'd.', 'gupta', 'of', '``', 'the', 'telegraph', \"''\", 'rated', 'the', 'film', '7', '.', '2', 'out', 'of', '1', '0', ',', 'writing', 'that', '``', 'dostana', \"''\", '``', 'can', 'make', 'you', 'laugh', 'out', 'loud', 'and', 'also', 'strike', 'an', 'emotional', 'chord', '.', \"''\"], ['ségolène', 'royal', ',', 'the', 'party', \"'s\", 'candidate', 'for', 'the', '2', '0', '0', '7', 'presidential', 'election', ',', 'was', 'defeated', 'by', 'conservative', 'ump', 'candidate', 'nicolas', 'sarkozy', '.'], ['but', 'during', 'the', 'brazilian', 'grand', 'prix', ',', 'eddie', 'irvine', 'was', 'blamed', 'for', 'causing', 'a', 'massive', 'accident', 'which', 'saw', 'jos', 'verstappen', 'barrel', 'roll', 'over', 'the', 'top', 'of', 'martin', 'brundle', '.'], ['in', 'old', 'alsace', '(', 'french', 'title', ':', \"l'ami\", 'fritz', ')', 'is', 'a', '1', '9', '3', '3', 'french', 'drama', 'film', 'directed', 'by', 'jacques', 'de', 'baroncelli', 'and', 'starring', 'lucien', 'duboscq', ',', 'simone', 'bourday', 'and', 'madeleine', 'guitty', '.'], ['this', '2', ',', '1', '0', '0', '-acre', '(', '8', '5', '0', 'ha', ')', 'public', 'recreation', 'area', 'on', 'the', 'west', 'bank', 'of', 'the', 'colorado', 'river', 'offers', 'boating', ',', 'fishing', ',', 'camping', ',', 'picnicking', ',', 'and', 'hiking', 'on', 'four', 'miles', 'of', 'developed', 'trails', '.'], ['tao', 'has', 'also', 'been', 'selected', 'to', 'represent', 'china', 'in', 'baseball', 'at', 'the', '2', '0', '0', '8', 'summer', 'olympics', '.'], ['after', 'the', 'consistory', ',', 'the', 'college', 'of', 'cardinals', 'had', '2', '0', '1', 'members', ',', 'of', 'whom', '1', '2', '0', 'were', 'eligible', 'to', 'vote', 'in', 'a', 'papal', 'election', '.'], ['according', 'to', 'herbert', 'friedman', ',', 'the', 'unidentified', 'war', 'correspondent', 'was', 'edward', 'hymoff', ',', 'the', 'bureau', 'chief', 'of', 'the', 'international', 'news', 'service', 'and', 'former', 'world', 'war', 'ii', 'oss', 'veteran', ',', 'whom', 'he', 'interviewed', '.'], ['it', 'is', 'part', 'of', 'the', 'safford', 'unified', 'school', 'district', '.'], ['louise', 'élisabeth', 'was', 'known', 'at', 'court', 'either', 'as', '``', 'madame', 'la', 'princesse', 'de', 'conti', 'troisième', \"''\", 'or', '``', 'madame', 'la', 'princesse', 'de', 'conti', 'dernière', 'douairière', \"''\", ',', 'in', 'order', 'to', 'distinguish', 'louise', 'élisabeth', 'from', 'the', 'other', 'two', 'widowed', 'princesses', 'of', 'conti', 'still', 'alive', ':'], ['while', 'uncovering', 'the', 'political', 'underworld', ',', 'she', 'falls', 'for', 'her', 'cameraman', ',', 'ben', 'chapman', ',', 'who', 'is', 'an', 'ex-navy', 'seal.they', 'uncover', 'secrets', 'of', 'the', 'past', 'mixed', 'with', 'love', '.'], ['generally', ',', 'alfred', 'hitchcock', \"'s\", '``', 'blackmail', \"''\", 'is', 'regarded', 'as', 'the', 'first', 'film', 'with', 'sound', ',', 'but', 'wilcox', \"'s\", '``', 'black', 'waters', \"''\", 'was', 'trade-shown', 'several', 'weeks', 'earlier', 'in', 'may', ',', '1', '9', '2', '9', '.'], ['she', 'then', 'appeared', 'in', '``', 'surrender', \"''\", '(', '1', '9', '3', '1', ')', 'in', 'which', 'warner', 'baxter', 'and', 'ralph', 'bellamy', 'desperately', 'competed', 'for', 'her', 'attention', '.'], ['the', 'operating', 'signals', 'for', 'the', 'relay', 'are', 'provided', 'by', 'the', 'prime', 'mover', 'brake', 'pedal', 'air', 'valve', ',', 'trailer', 'service', 'brake', 'hand', 'control', '(', 'subject', 'to', 'local', 'heavy', 'vehicle', 'legislation', ')', 'and', 'the', 'prime', 'mover', 'park', 'brake', 'hand', 'control', '.'], ['in', '1', '9', '0', '6', 'a', 'stud', 'book', 'was', 'established', 'for', 'horses', 'of', 'noriker', 'type', 'in', 'the', ',', 'the', 'upland', 'region', 'of', 'central', 'southern', 'bavaria', 'that', 'borders', 'with', 'modern', 'austria', '.'], ['endean', 'threatens', 'revenge', 'if', 'he', 'ever', 'sees', 'the', 'mercenary', 'in', 'london', ',', 'but', 'shannon', 'ignores', 'the', 'warning', '.'], ['in', '1', '9', '3', '6', ',', 'he', 'was', 'appointed', 'as', 'deputy', 'commissar', 'of', 'justice', 'of', 'the', 'ussr', 'and', 'was', 'proposed', 'for', 'membership', 'in', 'the', 'soviet', 'academy', 'of', 'sciences', '.'], ['crossing', 'a', 'rope', 'bridge', ',', 'wolverine', 'eventually', 'gains', 'the', 'upper', 'hand', 'and', 'strangles', 'cyber', 'with', 'their', 'shackles', '.'], ['the', 'tax', 'was', 'also', 'levied', 'on', 'ownership', 'of', 'slaves', '.'], ['over', 'the', 'course', 'of', 'his', 'career', ',', 'deming', 'received', 'dozens', 'of', 'academic', 'awards', ',', 'including', 'another', ',', 'honorary', ',', 'phd', 'from', 'oregon', 'state', 'university', '.'], ['shikoku', 'lacks', 'a', 'full', 'international', 'airport', 'but', 'has', 'four', 'regional/domestic', 'airports', '(', 'tokushima', 'airport', ',', 'takamatsu', 'airport', ',', 'kōchi', 'ryōma', 'airport', 'and', 'matsuyama', 'airport', ')', '.'], ['when', 'investigating', 'an', 'aviation', 'disaster', ',', 'ntsb', 'investigators', 'piece', 'together', 'evidence', 'from', 'the', 'crash', 'and', 'determine', 'the', 'likely', 'cause', '(', 's', ')', ',', 'whereas', 'the', 'cbi', 'will', 'also', 'investigate', 'if', 'there', 'is', 'any', 'involved', 'criminal', 'actions', '.'], ['leckava', '(', 'samogitian', ':', '``', 'leckava', \"''\", ',', ')', 'is', 'a', 'town', 'in', 'telšiai', 'county', ',', 'lithuania', '.'], ['the', 'final', 'dnf', 'of', 'the', 'race', 'would', 'be', 'curtis', 'turner', \"'s\", 'crash', 'on', 'lap', '3', '4', '8', '.'], ['herbivory', 'can', 'have', 'impacts', 'on', 'both', 'economics', 'and', 'ecology', '.'], ['her', 'fifth', 'post-world', 'war', 'ii', 'westpac', 'deployment', ',', 'from', 'january', 'to', 'june', '1', '9', '6', '3', ',', 'included', 'participation', 'in', 'two', 'major', 'asw', 'exercises', 'with', 'u.s.', 'and', 'seato', 'forces', '.'], ['president', 'maloney', 'retired', 'in', '1', '9', '4', '6', 'in', 'ill', 'health', '.'], ['only', 'two', 'cities', 'ended', 'with', 'multiple', 'area', 'codes', 'with', 'this', 'change', '.'], ['in', '2', '0', '1', '0', ',', 'in', 'a', 'list-a', 'match', 'against', 'bermuda', ',', 'javed', 'hit', 'blitzed', '8', '9', 'off', '5', '9', 'balls', 'which', 'included', 'seven', 'fours', 'and', 'five', 'sixes', 'as', 'uae', 'extended', 'their', 'domination', 'over', 'bermuda', 'with', 'a', 'thumping', '1', '3', '4', '-run', 'win', 'at', 'the', 'national', 'stadium', '.'], ['on', 'december', '2', '7', ',', '1', '9', '8', '5', ',', 'the', 'los', 'angeles', 'lazers', 'for', 'the', 'remainder', 'of', 'the', 'season', '.'], ['it', 'also', 'organizes', 'keynote', 'speaker', 'engagements', ',', 'and', 'symposiums', 'and', 'engages', 'in', 'private', 'consultations', 'for', 'business', 'and', 'for', 'individuals', '.'], ['in', 'the', '1', '9', 'th', 'century', ',', 'palissy', \"'s\", 'pottery', 'became', 'the', 'inspiration', 'for', 'mintons', 'ltd', \"'s\", 'victorian', 'majolica', ',', 'which', 'was', 'exhibited', 'at', 'the', 'london', 'great', 'exhibition', 'of', '1', '8', '5', '1', 'under', 'the', 'name', '``', 'palissy', 'ware', \"''\", '.'], ['blank', 'rome', 'subsequently', 'filed', 'a', 'motion', 'to', 'have', 'thompson', \"'s\", 'behavior', 'declared', '``', 'contempt', 'for', 'the', 'court', \"''\", '.'], ['it', 'was', 'built', 'with', 'a', 'ninety-year', 'lease', 'of', 'land', 'previously', 'occupied', 'by', 'a', 'private', 'house', 'and', 'workshop', 'that', 'served', 'as', 'a', 'home', 'of', 'ginger-beer', 'maker', 'and', 'a', 'tea', 'chest', 'dealer', '.'], ['this', 'accumulation', 'is', 'believed', 'to', 'damage', 'the', 'retina', 'over', 'time', '.'], ['at', 'the', '2', '0', '0', '6', 'census', ',', 'its', 'population', 'was', '5', '1', '9', ',', 'in', '7', '7', 'families', '.'], ['adverse', 'effects', 'of', 'alteplase', 'include', 'symptomatic', 'intracranial', 'hemorrhage', 'and', 'fatal', 'intracranial', 'hemorrhage', '.'], ['vijay', 'gutte', 'is', 'an', 'indian', 'film', 'director', 'and', 'producer', '.'], ['the', 'geographic', 'collection', 'scope', 'is', 'worldwide', 'and', 'includes', 'all', 'sexual', 'orientations', 'and', 'genders', '.'], ['an', 'iranian', 'drama', 'film', ',', '``', 'when', 'the', 'moon', 'was', 'full', \"''\", ',', 'written', 'and', 'directed', 'by', 'narges', 'abyar', ',', 'was', 'released', 'in', '2', '0', '1', '9', '.'], ['however', ',', 'tests', 'found', 'no', 'sign', 'of', 'injury', 'at', 'the', 'time', ',', 'and', 'there', 'is', 'no', 'evidence', 'that', 'the', 'accident', 'caused', 'the', 'neck', 'deformity', '.'], ['the', 'shopping', 'bonus', 'round', 'was', 'later', 'replaced', 'with', 'a', 'game', 'called', 'the', '``', 'winner', \"'s\", 'board', \"''\", ',', 'which', 'was', 'introduced', 'in', 'october', '1', '9', '8', '4', 'on', 'nbc', 'and', 'on', 'november', '1', '8', ',', '1', '9', '8', '5', 'in', 'syndication', '.'], ['built', 'in', '1', '9', '3', '2', ',', 'it', 'is', 'the', 'only', 'element', 'of', 'the', 'island', \"'s\", 'most', 'prominent', 'roman', 'catholic', 'church', 'to', 'survive', 'bombardment', 'in', 'world', 'war', 'ii', '.'], ['dedicated', 'to', 'the', 'creation', 'and', 'performance', 'of', 'high', 'energy', 'music', ',', 'they', 'are', 'known', 'for', 'playing', 'songs', 'based', 'on', 'video', 'games', 'and', 'for', 'their', 'covers', 'of', 'songs', 'from', 'popular', 'television', 'shows', 'and', 'movies', '.'], ['at', 'the', 'supreme', 'war', 'council', 'at', 'versailles', '(', '2', '9', 'january', ')', 'haig', 'and', 'petain', 'complained', 'of', 'shortage', 'of', 'troops', ',', 'but', 'haig', \"'s\", 'political', 'credibility', 'was', 'so', 'low', 'that', 'hankey', 'wrote', 'that', 'they', '``', 'made', 'asses', 'of', 'themselves', \"''\", '.'], ['he', 'was', 'praised', 'in', 'the', 'village', 'for', 'his', 'hunting', 'skills', '.'], ['on', 'july', '7', ',', '2', '0', '1', '5', ',', 'the', 'fbi', 'and', 'indiana', 'state', 'police', 'investigators', 'raided', 'fogle', \"'s\", 'zionsville', ',', 'indiana', ',', 'residence', ';', 'computers', 'and', 'other', 'electronic', 'equipment', 'were', 'removed', 'from', 'his', 'home', '.'], ['during', 'the', '2', '0', '1', '2', 'american', 'league', 'playoffs', ',', 'tbs', 'was', 'criticized', 'for', 'its', 'graphics', 'and', 'game', 'preview', 'packages', '.'], [',', 'the', 'construction', 'rate', 'of', 'new', 'housing', 'units', 'was', '3', '.', '3', 'new', 'units', 'per', '1', '0', '0', '0', 'residents', '.'], ['the', 'platform', 'was', 'given', 'a', 'moderate', 'facelift', 'in', '1', '9', '7', '0', 'when', 'the', 'royal', 'train', 'was', 'stabled', 'overnight', 'in', 'the', 'station', '.'], ['it', 'disappeared', 'in', 'favor', 'of', 'the', 'writings', 'of', 'tacitus', '(', 'which', 'are', 'far', 'shorter', ')', ',', 'and', ',', 'early', 'in', 'the', 'fifth', 'century', ',', 'symmachus', 'had', 'little', 'hope', 'of', 'finding', 'a', 'copy', '.'], ['it', 'became', 'the', 'number', '1', 'global', 'trend', 'on', 'twitter', '.'], ['the', '``', 'chasa', \"''\", 'unwittingly', 'accept', 'the', 'offerings', 'before', 'realizing', 'that', 'that', 'they', 'have', 'accepted', 'gifts', 'from', 'the', 'man', 'that', 'they', 'were', 'supposed', 'to', 'kill', '.'], ['then', ',', 'in', '1', '9', '2', '7', 'and', '1', '9', '2', '8', ',', 'he', 'teamed', 'with', 'earl', 'averill', 'and', 'smead', 'jolley', 'to', 'give', 'the', 'seals', 'one', 'of', 'its', 'most', 'feared', 'hitting-outfields', 'in', 'minor', 'league', 'history', '.'], ['however', ',', 'after', 'adelphia', 'missed', 'a', 'required', 'payment', 'and', 'subsequently', 'filed', 'for', 'bankruptcy', 'in', '2', '0', '0', '2', ',', 'the', 'agreement', 'was', 'abandoned', 'and', 'the', 'stadium', 'became', 'known', 'simply', 'as', '``', 'the', 'coliseum', \"''\", 'for', 'four', 'years', '.'], ['malana', 'and', 'maíra', 'are', 'criticized', 'for', 'lack', 'of', 'variety', 'in', 'their', 'pictures', '.'], ['mandrell', 'appeared', 'on', 'the', 'opry', \"'s\", 'country', 'classic', 'show', 'in', 'nashville', '.'], ['he', 'announced', 'his', 'invention', 'at', 'a', 'meeting', 'of', 'the', 'american', 'chemical', 'society', 'on', 'february', '5', ',', '1', '9', '0', '9', '.'], ['international', 'flights', 'to', 'seoul', ',', 'south', 'korea', 'are', 'serviced', 'by', 'asiana', 'airlines', 'from', 'matsuyama', 'and', 'takamatsu', '.'], ['in', '2', '0', '0', '8', ',', 'the', 'chicago', 'department', 'of', 'transportation', 'hired', 'knight', 'e/a', 'to', 'redevelop', 'the', '1', '8', 'th', 'street', 'bridge', 'underpass', 'and', 'create', 'two', 'plazas', 'to', 'extend', 'the', 'park', 'north', '.'], ['that', 'same', 'year', ',', 'its', 'southern', 'terminus', 'moved', 'slightly', 'to', 'the', 'west', ',', 'avoiding', 'sextonville', '.'], ['in', '2', '0', '0', '6', ',', 'cooke', 'founded', 'teams', '4', 'u', ',', 'an', 'international', 'humanitarian', 'aid', 'charity', 'based', 'in', 'wrexham', 'who', 'take', 'volunteers', 'overseas', 'to', 'facilitate', 'health', ',', 'education', ',', 'training', 'and', 'empowerment', 'programs', 'in', 'africa', ',', 'asia', 'and', 'eastern', 'europe', '.'], ['this', 'facility', 'is', 'owned', 'by', 'iberdrola', ';', 'it', 'was', 'shut', 'down', 'on', 'june', '3', '0', ',', '2', '0', '2', '0', '.'], ['adam', 'mcnamara', 'has', 'suggested', 'that', 'memes', 'can', 'be', 'thereby', 'classified', 'as', 'either', 'internal', 'or', 'external', 'memes', '(', 'i-memes', 'or', 'e-memes', ')', '.'], ['a', '2', '0', '0', '6', 'estimate', 'placed', 'the', 'township', \"'s\", 'population', 'at', '2', '2', '0', '.'], ['the', 'typical', 'rings', 'are', 'fabricated', 'from', 'rolled', 'steel', 'plate', ',', 'angles', 'or', 'tee', \"'s\", 'welded', 'together', 'to', 'create', 'the', 'ring', 'cross', 'section', 'required', '.'], ['the', 'largest', 'remaining', 'brown', 'hyena', 'population', 'is', 'located', 'in', 'the', 'southern', 'kalahari', 'desert', 'and', 'coastal', 'areas', 'in', 'southwest', 'africa', '.'], ['although', 'most', 'early', 'georgia', 'colonists', 'were', 'english', ',', 'scottish', ',', 'and', 'german', 'artisans', 'seeking', 'arable', 'land', 'or', 'freedom', 'of', 'religion', ',', 'many', 'of', 'them', 'complained', 'to', 'their', 'leaders', 'that', 'the', 'ban', 'on', 'slavery', 'created', 'a', 'labor', 'shortage', 'that', 'impeded', 'local', 'finances', ',', 'compared', 'to', 'other', 'southern', 'colonies', '.'], ['there', 'were', '1', '7', '8', 'married', 'individuals', ',', '1', '6', 'widows', 'or', 'widowers', 'and', '2', '6', 'individuals', 'who', 'are', 'divorced', '.'], ['in', '1', '8', '1', '2', 'napoleon', 'invited', 'him', 'to', 'paris', 'and', 'paid', 'him', 'the', 'most', 'flattering', 'attentions', '.'], ['later', ',', 'in', '1', '8', '8', '5', ',', 'mary', 'would', 'donate', 'the', 'funds', 'to', 'build', 'a', 'library', 'in', 'her', 'late', 'husband', \"'s\", 'name', ',', 'located', 'in', 'dr.', 'hall', \"'s\", 'original', 'hometown', 'of', 'northfield', ',', 'new', 'hampshire', '.'], ['first', 'rhapsody', 'may', 'refer', 'to', 'the', 'following', 'musical', 'works', '(', 'arranged', 'alphabetically', 'by', 'surname', 'of', 'composer', ')', ':'], ['ing', 'called', 'for', 'mediation', 'and', 'community', 'outreach', 'and', 'quipped', 'that', '``', 'in', 'hawaii', '...', 'we', 'do', \"n't\", 'initiate', 'conversation', 'by', 'filing', 'a', 'lawsuit', 'against', 'our', 'neighbors', '.', \"''\"], ['the', 'side', 'with', 'fewer', 'than', '3', '0', 'points', 'is', '``', 'schneider', \"''\", 'and', 'a', 'side', 'with', 'no', 'tricks', 'at', 'all', 'is', '``', 'schwarz', \"''\", '(', '``', 'black', \"''\", ')', '.'], ['at', 'that', 'time', ',', 'a', 'lot', 'of', 'the', 'earliest', 'and', 'most', 'influential', 'film', 'workshops', 'were', 'situated', 'there', '.'], ['activities', 'occur', 'year-round', 'in', 'the', 'valley', 'despite', 'the', 'cold', 'winters', '.'], ['wildlife', 'enthusiast', 'colin', 'stafford', 'johnson', 'shows', 'creedon', 'the', 'natural', 'sounds', 'and', 'local', 'wildlife', 'of', 'the', 'river', 'shannon', '.'], ['however', ',', 'as', 'for', 'population', 'growth', ',', 'it', 'ranks', 'the', 'highest', 'percent', 'increase', 'of', '1', '8', '.', '9', '0', '%', 'with', 'an', 'increase', 'population', 'of', '2', ',', '1', '4', '6', 'between', '1', '9', '9', '0', 'and', '1', '9', '9', '5', '.'], ['in', '1', '9', '2', '9', ',', 'he', 'joined', 'the', 'meteorological', 'office', 'at', 'kew', 'observatory', ',', 'where', 'he', 'carried', 'out', 'studies', 'on', 'the', 'atmospheric', 'electrical', 'balance', 'in', 'good', 'and', 'bad', 'weather', '.'], ['before', 'their', 'divorce', 'in', '1', '9', '2', '5', ',', 'they', 'were', 'the', 'parents', 'of', 'one', 'son', ':'], ['in', 'the', 'early', '1', '9', '5', '0', 's', ',', 'he', 'was', 'a', 'founder', 'and', 'contributor', 'to', '``', 'encounter', \"''\", '.'], ['in', '1', '9', '9', '6', 'the', 'group', 'followed', 'with', 'a', 'four-track', 'ep', ',', '``', 'blip', \"''\", ',', 'and', 'then', 'a', 'split', 'single', ',', 'with', '``', 'postal', \"''\", 'by', 'minimum', 'chips', ',', 'and', 'alastair', 'galbraith', 'providing', 'the', 'other', 'side', '.'], ['in', 'december', '2', '0', '1', '5', ',', 'the', 'fund', 'stood', 'at', 'around', '£', '7', '5', '0', ',', '0', '0', '0', '.'], ['it', 'consisted', 'of', 'transforming', 'vehicles', 'and', 'robots', 'piloted', 'by', 'miniature', ',', 'magnet-shoed', 'figures', 'spun', 'off', 'from', 'the', 'prior', 'microman', 'toy', 'line', '.'], ['auchterlonie', 'worked', 'as', 'an', 'abc', 'broadcaster', 'and', 'journalist', 'in', 'sydney', ',', 'brisbane', 'and', 'canberra', 'from', '1', '9', '4', '2', 'to', '1', '9', '4', '9', ',', 'and', 'in', '1', '9', '5', '5', 'became', 'co-principal', 'of', 'a', 'queensland', 'school', '.'], ['the', '[', '[', 'collegiate', 'chorale', ']', ']', 'and', 'the', 'national', 'orchestra', 'association', 'were', 'conducted', 'by', 'william', 'johnson', ',', 'and', 'the', 'soloists', 'were', '[', '[', 'inez', 'manier', ']', ']', 'and', '[', '[', 'paul', 'ukena', ']', ']', '.'], ['this', 'legacy', 'has', 'persisted', 'into', 'modern', 'times', 'and', 'has', 'made', 'black', 'women', 'less', 'likely', 'to', 'trust', 'the', 'medical', 'community', '.'], ['madeleine', \"'s\", 'fund', 'did', 'not', 'cover', 'the', 'couple', \"'s\", 'legal', 'costs', 'arising', 'from', 'their', 'status', 'as', '``', 'arguidos', \"''\", ',', 'but', 'it', 'was', 'criticized', 'in', 'october', '2', '0', '0', '7', 'for', 'having', 'made', 'two', 'of', 'the', 'mccanns', \"'\", 'mortgage', 'payments', ',', 'before', 'they', 'were', 'made', '``', 'arguidos', \"''\", '.'], ['the', 'second', 'platform', 'and', 'building', 'and', 'much', 'of', 'the', 'infrastructure', 'for', 'the', 'yard', 'and', 'passenger', 'use', 'has', 'been', 'removed', 'but', 'the', 'remaining', 'structures', 'are', 'an', 'important', 'surviving', 'relic', 'which', 'make', 'an', 'important', 'contribution', 'to', 'the', 'townscape', 'of', 'culcairn', 'with', 'its', 'location', 'in', 'the', 'centre', 'of', 'the', 'town', '.'], ['the', 'site', 'is', 'located', 'about', '1', '4', 'minutes', 'on', 'foot', 'from', 'takagimachi', 'station', 'on', 'the', 'jr', 'east', 'senseki', 'line', '.'], ['after', 'failed', 'negotiations', ',', 'botaneiates', 'sent', 'the', 'young', 'general', 'alexios', 'komnenos', 'with', 'whatever', 'forces', 'he', 'could', 'gather', 'to', 'confront', 'him', '.'], ['at', 'the', 'request', 'of', 'the', 'bolitho', 'estate', 'feeding', 'was', 'stopped', 'to', 'protect', 'the', 'fishery', 'and', 'water', 'quality', '.'], ['the', 'corpus', 'suffered', 'large-scale', 'destruction', 'by', 'fire', 'in', '1', '4', '9', '9', 'when', 'cardinal', 'jimenez', 'de', 'cisneros', 'made', 'a', 'public', '``', 'auto-da-fé', \"''\", 'in', 'granada', ',', 'burning', '1', ',', '0', '2', '5', ',', '0', '0', '0', 'arabic', 'volumes', '.'], ['its', 'capital', 'and', 'largest', 'city', 'is', 'the', 'city', 'of', 'arusha', '.'], ['on', '1', '7', 'april', '1', '9', '4', '0', ',', 'wark', 'returned', 'to', 'active', 'duty', 'in', 'the', 'second', 'world', 'war', ',', 'and', 'was', 'appointed', 'to', 'the', '1', 'st', 'battalion', '(', 'city', 'of', 'sydney', \"'s\", 'own', 'regiment', ')', 'as', 'a', 'major', '.'], ['kaziranga', 'has', 'a', 'long', 'history', 'of', 'management', 'and', 'practices', 'include', 'annual', 'burning', 'of', 'the', 'grasslands', 'by', 'wildlife', 'staff', '.'], ['merola', 'married', 'tulia', 'palermo', 'in', '1', '9', '4', '9', ',', 'and', 'they', 'had', 'three', 'children', 'together', ':', 'michael', ',', 'elizabeth', 'and', 'marilou', '.'], ['possessing', 'the', 'observational', 'and', 'deductive', 'powers', 'of', 'his', 'fictional', 'creation', ',', 'sherlock', 'holmes', ',', 'doyle', 'has', 'served', 'queen', 'and', 'country', 'under', 'the', 'tutelage', 'of', 'konstantin', 'duvall', '.'], ['during', 'much', 'of', 'the', 'civil', 'war', ',', 'branch', 'served', 'in', 'the', 'confederate', 'states', 'army', 'as', 'a', 'captain', 'in', 'company', 'a', ',', 'the', '2', '1', 'st', 'texas', 'cavalry', '(', 'also', 'known', 'as', 'the', '1', 'st', 'texas', 'lancers', ')', '.'], ['in', '1', '9', '2', '1', ',', 'once', 'the', 'low', 'pressure', 'building', 'was', 'constructed', 'and', 'made', 'fully', 'operational', ',', 'the', 'original', 'tejo', 'power', 'station', 'was', 'deactivated', 'and', 'dismantled', ',', 'with', 'a', 'set', 'of', 'workshops', 'and', 'warehouses', 'taking', 'its', 'place', '.'], ['the', 'sales', 'of', 'trucks', 'had', 'achieved', 'a', '5', '%', 'and', '1', '%', 'in', 'buses', 'and', 'trucks', 'in', '1', '9', '9', '8', ',', 'based', 'on', 'the', 'then-current', 'argentine', 'automotive', 'market', '.'], ['the', 'total', 'swiss', 'population', 'change', 'in', '2', '0', '0', '8', '(', 'from', 'all', 'sources', ',', 'including', 'moves', 'across', 'municipal', 'borders', ')', 'was', 'a', 'decrease', 'of', '8', 'and', 'the', 'non-swiss', 'population', 'decreased', 'by', '1', 'people', '.'], ['he', 'again', 'receives', 'a', 'mauling', 'from', 'the', 'wildcat', ',', 'and', 'incorrectly', 'assumes', ',', '``', 'flirt', \"''\", '.'], ['in', 'november', '1', '9', '9', '7', ',', 'the', 'use', 'of', 'all', 'organochlorines', 'other', 'than', 'mirex', 'was', 'phased', 'out', 'in', 'australia', '.'], ['it', 'can', 'blink', 'or', 'pulse', 'like', 'a', 'light', 'continuously', ',', 'or', 'some', 'phone', 'manufacturers', 'light', 'up', 'the', 'display', \"'s\", 'pixels', 'like', 'a', 'ring', 'or', 'have', 'edge', 'lighting', '.'], ['males', 'have', 'grey', 'forewings', 'with', 'dark', 'grey', 'scales', 'at', 'the', 'base', 'of', 'the', 'costal', 'margin', '.'], ['her', 'tenure', 'has', 'also', 'been', 'met', 'by', 'fierce', 'criticism', 'relating', 'to', 'executive', 'compensation', 'bonuses', ',', 'layoffs', ',', 'outsourcing', ',', 'and', 'presiding', 'over', '2', '4', 'consecutive', 'quarters', 'of', 'revenue', 'decline', '.'], ['in', '1', '8', '7', '3', ',', 'its', 'name', 'was', 'changed', 'to', 'electoral', 'district', 'of', 'toowoomba', '.'], ['he', 'also', 'established', 'its', 'city', 'government', ',', 'the', 'third', 'oldest', 'in', 'new', 'spain', '.'], ['all', 'lines', 'of', 'a', 'song', 'start', 'with', 'its', 'assigned', 'letter', '.'], ['kentucky', 'was', 'officially', 'admitted', 'as', 'a', 'state', 'on', 'june', '1', ',', '1', '7', '9', '2', '.'], ['ingalls', 'shipbuilding', 'had', 'the', 'lowest', 'us', 'bid', 'at', '$', '2', '4', ',', '4', '4', '4', ',', '1', '8', '1', '(', '$', 'today', ')', 'for', 'each', 'of', 'the', 'two', 'ships', '.'], ['these', 'pictures', 'include', 'many', 'picnics', ',', 'tennis', 'parties', 'and', 'horse', 'riding', 'outings', '.'], ['he', 'left', 'his', 'position', 'with', 'the', 'board', 'of', 'education', 'when', 'he', 'was', 'elected', 'to', 'the', 'state', 'house', 'of', 'representatives', 'in', '1', '9', '9', '2', '.'], ['the', 'classification', 'of', '``', 'closed', \"''\", 'and', '``', 'open', \"''\", 'views', 'set', 'out', 'in', 'the', '``', 'runnymede', 'report', \"''\", 'has', 'been', 'criticized', 'as', 'an', 'oversimplification', 'of', 'a', 'complex', 'issue', 'by', 'scholars', 'like', 'chris', 'allen', ',', 'fred', 'halliday', ',', 'and', 'kenan', 'malik', '.'], ['she', 'was', 're-elected', 'in', '1', '9', '2', '2', ',', '1', '9', '2', '3', 'and', '1', '9', '2', '6', ',', 'serving', 'in', 'the', 'seimas', 'until', 'it', 'was', 'dissolved', 'following', 'the', '1', '9', '2', '6', 'coup', '.'], ['endocrine', 'diseases', 'may', 'also', 'contribute', '(', 'though', 'are', 'far', 'less', 'of', 'a', 'risk', 'than', 'obesity', ')', ',', 'such', 'as', 'hypothyroidism', ',', 'hypopituitarism', ',', 'and', 'renal', 'osteodystrophy', '.'], ['popov', 'provided', 'the', 'germans', 'with', 'misleading', 'and', 'inaccurate', 'information', 'for', 'much', 'of', 'the', 'war', '.'], ['larvae', 'kept', 'free', 'of', 'natural', 'enemies', 'can', 'almost', 'completely', 'defoliate', 'a', 'plant', '.'], ['in', 'the', 'book', ',', 'the', 'star', 'is', 'referenced', 'by', 'the', 'name', 'ain', ',', 'but', 'the', 'characters', 'rename', 'the', 'star', 'coronis', '.'], ['seriously', 'ill', ',', 'in', '1', '9', '2', '0', 'he', 'returns', 'to', 'latvia', ',', 'where', 'he', 'dies', 'in', '1', '9', '2', '2', '.'], ['the', 'sultan', 'was', 'erratic', 'even', 'by', 'the', 'standards', 'of', 'the', 'time', 'and', 'for', 'six', 'years', 'ibn', 'battuta', 'veered', 'between', 'living', 'the', 'high', 'life', 'of', 'a', 'trusted', 'subordinate', 'and', 'falling', 'under', 'suspicion', 'of', 'treason', 'for', 'a', 'variety', 'of', 'offences', '.'], ['the', 'fero', 'elevation', 'knob', 'features', 'bullet', 'drop', 'compensation', '(', 'bdc', ')', 'settings', 'for', 'in', 'increments', 'calibrated', 'for', '5', '.', '5', '6', '×', '4', '5', 'mm', 'nato', 'ball', 'ammunition', '.'], ['1', '0', '6', 'derg', 'officials', 'were', 'accused', 'of', 'genocide', 'during', 'the', 'trials', ',', 'but', 'only', '3', '6', 'of', 'them', 'were', 'present', '.'], ['cawfe', 'explicitly', 'considers', 'the', 'feedback', 'mechanisms', 'between', 'atmospheric', 'dynamics', 'and', 'fire', 'behavior', 'over', 'time', ',', 'and', 'it', 'remains', 'the', 'most', 'capable', 'modeling', 'tool', 'to', 'predict', 'a', 'fire', \"'s\", 'intensity', 'and', 'spread', '.'], ['``', '[', 'jack', ']', 'is', 'a', 'soul', 'in', 'turmoil', 'and', 'has', 'been', 'moving', 'from', 'place', 'to', 'place', 'trying', 'to', 'find', 'somewhere', 'he', 'can', 'be', 'at', 'peace', ',', \"''\", 'says', 'co-executive', 'producer', ',', 'manny', 'coto', '.'], ['george', 'newbern', 'plays', 'a', 'developer', 'trying', 'to', 'force', 'dearborn', 'off', 'his', 'land', ';', 'he', 'tries', 'to', 'enlist', 'the', 'help', 'of', 'his', 'psychologist', 'girlfriend', ',', 'played', 'by', 'mary-louise', 'parker', ',', 'a', 'move', 'which', 'backfires', 'badly', '.'], ['she', 'flees', 'before', 'a', 'flashback', 'to', 'the', 'previous', 'day', ',', 'when', 'she', 'rides', 'her', 'bike', ',', 'meets', 'friends', 'and', 'is', 'alone', 'in', 'a', 'bedroom', 'at', 'dusk', '.'], ['while', 'researching', 'the', 'market', 'in', 'india', ',', 'raghu', 'realizes', 'that', 'there', 'is', 'no', 'genuine', 'solution', 'available', 'for', 'sexual', 'problems', 'faced', 'by', 'men', '.'], ['it', 'is', 'served', 'by', 'the', 'b', '4', '5', '1', '8', 'road', 'which', 'runs', 'three', 'miles', 'southwestwards', 'from', 'rhayader', 'to', 'end', 'at', 'the', 'village', ',', 'though', 'continuing', 'as', 'a', 'minor', 'road', 'to', 'caban-coch', 'reservoir', '.'], ['rita', 'wore', 'a', 'silver', 'callot', 'soeurs', 'dress', 'when', 'she', 'posed', 'for', 'giovanni', 'boldini', 'in', '1', '9', '1', '1', '.'], ['overpelt', 'improved', 'upon', 'this', 'design', 'by', 'using', 'only', 'one', 'large', 'condensation', 'chamber', ',', 'instead', 'of', 'many', 'small', 'ones', ',', 'as', 'it', 'was', 'originally', 'designed', '.'], ['alexandru', '``', 'sandu', \"''\", 'boc', '(', 'born', '3', 'june', '1', '9', '4', '6', ')', 'is', 'a', 'retired', 'romanian', 'footballer', ',', 'who', 'played', 'as', 'a', 'defender', 'and', 'won', 'two', 'liga', 'i', 'titles', '.'], ['redd', 'hott', 'is', 'a', '1', '9', '8', '2', 'dance-oriented', 'lp', 'by', 'post-disco/urban', 'singer', 'sharon', 'redd', '.'], ['it', 'had', 'a', 'maximum', 'surface', 'speed', 'of', '6', 'knots', ',', 'and', 'a', 'maximum', 'speed', 'of', '4', 'knots', 'while', 'submerged', '.'], ['a', 'sizable', 'minority', 'also', 'have', 'some', 'japanese', 'ancestry', ',', 'which', 'is', 'a', 'result', 'of', 'intermarriages', 'between', 'japanese', 'settlers', 'and', 'micronesians', 'during', 'the', 'japanese', 'colonial', 'period', '.'], ['mohammad', 'usman', ',', 'was', 'killed', 'in', 'action', 'on', '3', 'july', '1', '9', '4', '8', ',', 'and', 'was', 'posthumously', 'awarded', 'the', 'maha', 'vir', 'chakra', '.'], ['front-line', 'forts', 'were', 'to', 'receive', 'two', 'men', 'per', 'yard', ',', 'when', 'needed', '.'], ['the', 'caf', 'first', 'round', 'was', 'the', 'first', 'stage', 'of', 'the', 'qualification', 'for', 'the', '1', '9', '9', '0', 'fifa', 'world', 'cup', 'in', 'the', 'confederation', 'of', 'african', 'football', '(', 'caf', ')', 'zone', '.'], ['i', 'answered', ',', \"'\", 'i', 'want', 'to', 'go', 'to', 'muhammad', 'and', 'listen', 'to', 'what', 'he', 'says', '.', \"'\"], ['banning', 'had', 'not', 'been', 'politically', 'active', 'before', 'the', 'outbreak', 'of', 'the', 'first', 'world', 'war', ',', 'but', 'that', 'event', 'motivated', 'him', 'and', 'his', 'future', 'wife', 'to', 'start', 'studying', 'the', 'works', 'of', 'karl', 'marx', 'and', 'karl', 'kautsky', ',', 'as', 'he', 'blamed', '``', 'capitalism', \"'\", 'for', 'the', 'war', '.'], ['she', 'unsuccessfully', 'pleaded', 'with', 'the', 'home', 'office', 'to', 'prevent', 'german', 'aliens', 'from', 'being', 'deported', 'back', 'to', 'germany', '.'], ['he', 'won', 'an', 'olympics', 'gold', 'medal', 'in', '1', '9', '8', '0', 'and', 'silver', 'medals', 'at', 'the', 'world', 'and', 'european', 'championships', 'in', '1', '9', '8', '1', '.'], ['it', 'is', 'the', 'home', 'of', 'the', 'sauerland', 'cup', ',', 'which', 'is', 'a', 'competition', 'for', 'handball', 'clubs', 'from', 'all', 'around', 'the', 'world', '.'], ['he', 'received', 'his', 'phd', 'from', 'edinburgh', 'in', '1', '9', '7', '2', 'for', 'a', 'thesis', 'on', 'university', 'liberalism', 'and', 'democracy', ',', '1', '8', '6', '0', '-', '1', '8', '8', '6', '.'], ['the', 'bill', 'was', 'deposited', 'in', 'parliament', ',', 'but', 'no', 'progress', 'was', 'made', 'in', 'the', '1', '8', '9', '8', 'session', 'and', 'it', 'disappeared', 'afterwards', ',', 'although', 'the', 'bs', '&', 'amp', ';', 'wr', 'presented', 'a', 'modified', 'version', 'of', 'the', 'euston', 'branch', 'in', 'a', 'bill', 'for', 'the', '1', '8', '9', '9', 'session', '.'], ['it', 'is', 'a', 'part', 'of', 'the', 'municipality', 'of', 'brielle', 'and', 'lies', 'about', '5', 'km', 'south', 'of', 'maassluis', '.'], ['bakelite', ',', 'his', '``', 'method', 'of', 'making', 'insoluble', 'products', 'of', 'phenol', 'and', 'formaldehyde', ',', \"''\", 'was', 'filed', 'on', 'july', '1', '3', ',', '1', '9', '0', '7', ',', 'and', 'granted', 'on', 'december', '7', ',', '1', '9', '0', '9', '.'], ['as', 'a', 'result', ',', 'two', 'composite', 'teams', 'regrouping', 'players', 'from', 'weaker', 'unions', 'were', 'created', ',', 'the', 'highveld', 'xv', 'being', 'one', 'of', 'them', '.'], ['misuse', ',', 'including', 'large', 'quantities', 'of', 'garbage', 'left', 'behind', 'by', 'users', 'and', 'illegal', 'fires', ',', 'as', 'well', 'as', 'discourtesy', 'toward', 'landowners', ',', 'has', 'led', 'many', 'beaches', 'to', 'be', 'posted', 'and', 'monitored', '.'], ['most', 'focus', 'on', 'stated', 'research', 'priorities', 'and', 'governed', 'by', 'a', 'board', 'of', 'medical', 'and', 'scientific', 'experts', '.'], ['lycaenopsis', 'minima', ',', 'the', 'tiny', 'hedge', 'blue', ',', 'is', 'a', 'small', 'butterfly', 'found', 'in', 'india', 'that', 'belongs', 'to', 'the', 'lycaenids', 'or', 'blues', 'family', '.'], ['in', '1', '9', '9', '4', ',', 'the', 'national', 'registration', 'authority', 'for', 'agricultural', 'and', 'veterinary', 'chemicals', 'published', 'a', 'use', 'of', 'organochlorines', 'in', 'termite', 'control', ',', 'recommending', 'the', 'phase-out', 'of', 'organochlorines', 'used', 'in', 'termite', 'control', 'upon', 'development', 'of', 'viable', 'alternatives', '.'], ['if', 'people', 'ca', \"n't\", 'handle', 'or', 'like', 'my', 'movies', 'they', 'just', 'do', \"n't\", 'watch', 'them', '.'], ['8', '7', 'squadron', 'and', 'landed', 'in', 'france', 'in', 'april', '1', '9', '1', '8', '.'], ['in', 'march', '2', '0', '1', '7', ',', 'the', 'record', 'was', 'surpassed', 'once', 'again', 'by', 'ed', 'sheeran', ',', 'after', 'his', 'album', '``', '÷', \"''\", 'spawned', '1', '0', 'top-', '1', '0', 'songs', 'on', 'the', 'uk', 'chart', '.'], ['the', 'unity', 'of', 'the', 'brethren', 'executed', 'the', 'first', 'czech', 'bible', 'translation', 'from', 'the', 'original', 'languages', '.'], ['a', 'number', 'of', 'goods', 'depots', 'were', 'established', 'near', 'fenchurch', 'street', 'owing', 'to', 'the', 'station', \"'s\", 'proximity', 'to', 'the', 'city', 'of', 'london', '.'], ['all', 'tracks', 'from', '``', \"c'mon\", 'everybody', \"''\", 'originated', 'from', 'four', 'of', 'elvis', \"'s\", 'films', 'and', 'were', 'only', 'released', 'on', 'soundtrack', 'ep', \"'s\", 'prior', 'to', 'this', 'issue', '.'], ['the', 'card', 'also', 'had', 'been', 'described', 'as', '``', 'radeon', '2', '5', '6', '``', 'in', 'the', 'months', 'leading', 'up', 'to', 'its', 'launch', ',', 'possibly', 'to', 'draw', 'comparisons', 'with', 'the', 'competing', 'nvidia', 'card', ',', 'although', 'the', 'moniker', 'was', 'dropped', 'with', 'the', 'launch', 'of', 'the', 'final', 'product', '.'], ['on', '2', '5', 'april', '4', '3', '3', 'hussites', 'attacked', 'the', 'city', '.'], ['on', '2', '9', 'november', '1', '9', '7', '5', 'two', 'bombs', 'exploded', 'at', 'dublin', 'airport', ',', 'killing', 'one', 'person', 'and', 'injuring', 'ten', 'others', '.'], ['he', 'was', 'to', 'be', 'aimed', 'at', 'the', 'champion', 'stakes', 'in', 'autumn', 'but', 'the', 'prevailing', 'firm', 'ground', 'made', 'him', 'difficult', 'to', 'train', 'and', 'he', 'was', 'retired', 'from', 'racing', '.'], ['however', ',', 'some', 'sources', 'suggest', 'that', 'this', 'is', 'partly', 'a', 'myth', 'and', 'exaggerated', '.'], ['the', 'act', 'also', 'provided', 'that', ',', 'to', 'the', 'extent', 'possible', ',', 'the', 'rma', 'was', 'to', 'be', 'managed', 'as', 'a', 'wildlife', 'refuge', 'in', 'the', 'interim', '.'], ['although', 'the', 'business', 'environment', 'is', 'characterised', 'by', 'a', 'clear', 'set', 'of', 'rules', 'and', 'little', 'interference', ',', 'corruption', 'remains', 'an', 'obstacle', 'to', 'doing', 'business', 'in', 'public', 'procurement', ',', 'awarding', 'of', 'subsidies', 'and', 'direct', 'interactions', 'between', 'public', 'and', 'private', 'sectors', '.'], ['the', 'next', 'morning', 'they', 'found', 'the', 'enemy', 'positions', 'abandoned', '.'], ['he', 'did', 'everything', 'to', 'support', 'anybody', 'in', 'need', 'of', 'shoes', ',', 'blankets', ',', 'health', 'service', ',', 'food', ',', 'and', 'people', 'who', 'were', 'struggling', '.'], ['they', 'secured', 'advertisers', 'and', 'were', 'eventually', 'picked', 'up', 'by', 'cklw', '.'], ['on', '4', 'january', '2', '0', '1', '3', ',', 'martin', 'jol', 'confirmed', 'that', 'tavares', 'was', 'not', 'offered', 'a', 'new', 'contract', 'and', 'had', 'left', 'the', 'club', '.'], ['well-preserved', 'microscopic', 'fossils', 'of', 'bacteria', 'older', 'than', '3', '.', '4', '6', 'billion', 'years', 'have', 'been', 'found', 'in', 'western', 'australia', '.'], ['a', 'former', 'member', 'of', 'kenya', \"'s\", 'parliament', ',', 'omar', 'masumbuko', ',', 'addressed', 'the', 'mob', 'gathered', 'outside', 'the', 'police', 'station', '.'], ['adriano', 'de', 'micheli', 'was', 'born', 'on', 'june', '2', '0', ',', '1', '9', '7', '5', '.'], ['the', 'aim', 'of', 'these', 'events', 'would', 'be', 'to', 'raise', 'the', 'profile', 'of', 'professional', 'golf', 'in', 'the', 'region', ',', 'and', 'compete', 'with', 'the', 'likes', 'of', 'the', 'european', 'tour', '.'], ['in', 'australia', 'the', 'electronic', 'information', 'exchange', '(', 'eie', ')', 'administration', 'node', 'provides', 'a', 'blocked', 'imei', 'lookup', 'service', 'for', 'australian', 'customers', '.'], ['in', 'german', ',', 'the', 'word', 'has', 'the', 'general', 'denotation', 'of', 'hybrid', ',', 'mongrel', ',', 'or', 'half-breed', '.'], ['ambassador', 'khoc', 'said', ',', '``', 'manute', 'had', 'a', 'very', 'great', 'heart', 'for', 'his', 'country', 'and', 'people', '.'], ['one', 'way', 'the', 'foundation', 'does', 'this', 'is', 'by', 'funding', 'initiatives', 'that', 'foster', 'engagement', 'and', 'exchange', 'between', 'young', 'canadians', 'of', 'different', 'secular', ',', 'spiritual', 'and', 'religious', 'beliefs', '.'], ['his', 'pro', 'career', 'began', 'in', '1', '9', '2', '6', ',', 'when', 'he', 'hit', '.', '3', '6', '9', 'in', 'the', 'class', 'c', 'utah-idaho', 'league', ',', 'earning', 'him', 'a', 'call-up', 'to', 'the', 'top-level', 'san', 'francisco', 'seals', 'of', 'the', 'pacific', 'coast', 'league', '.'], ['anyway', ',', 'i', 'did', 'it', \"'cos\", 'i', 'had', 'the', 'ideas', '.', \"''\"], ['align=center', 'valign=bottom', 'rowspan=', '2', 'width=', \"''\", '5', '0', '``', '|total', '&', 'lt', ';', 'br', '&', 'gt', ';', 'votes', '!', '!'], ['vectors', 'in', 'a', 'euclidean', 'space', 'form', 'a', 'linear', 'space', ',', 'but', 'each', 'vector', 'formula_', '1', 'has', 'also', 'a', 'length', ',', 'in', 'other', 'words', ',', 'norm', ',', 'formula_', '2', '.'], ['wieden', 'is', 'a', 'small', 'region', 'near', 'the', 'city', 'centre', '.'], ['o', 'páramo', '(', ')', 'is', 'a', 'municipality', 'in', 'the', 'spanish', 'province', 'of', 'lugo', ',', 'situated', 'in', 'galicia', '.'], ['after', 'a', 'european', 'tour', ',', 'the', 'burritos', 'split', 'up', 'and', 'munde', 'joined', 'country', 'gazette', ',', 'then', 'consisting', 'of', 'roger', 'bush', 'on', 'bass', ',', 'kenny', 'wertz', 'on', 'guitar', ',', 'and', 'on', 'the', 'fiddle', ',', 'byron', 'berline', ',', 'who', 'had', 'formed', 'country', 'gazette', 'earlier', 'in', 'the', 'year', '.'], ['president', 'chen', 'also', 'credited', 'practicing', 'muslims', 'on', 'taiwan', 'for', 'helping', 'to', 'create', 'a', 'richer', ',', 'more', 'diverse', 'culture', 'on', 'the', 'island', '.'], ['david', 'hayman', 'jr.', 'left', 'school', 'at', 'the', 'age', 'of', '1', '6', 'to', 'study', 'a', 'sports', 'coaching', 'course', 'in', 'glasgow', '.'], ['in', '1', '7', '0', '2', ',', 'lawson', 'stood', 'as', 'a', 'whig', 'candidate', 'where', 'he', 'finished', 'second', 'in', 'the', 'poll', '.'], ['he', 'tried', 'to', 'start', 'a', 'second', 'occupation', 'against', 'hungary', 'with', 'the', 'little', 'entente', ':', 'his', 'plans', 'surprisingly', 'were', 'supported', 'solely', 'by', 'yugoslavia', ',', 'while', 'romania', 'remained', 'steady', 'over', 'the', 'case', '.'], ['according', 'to', 'the', 'swiss', 'order', 'of', 'precedence', ',', 'the', 'president', 'of', 'the', 'confederation', 'is', 'the', 'highest-ranking', 'swiss', 'official', '.'], ['in', '1', '9', '8', '8', ',', 'husein', 'met', 'with', 'doug', 'mulvanny', ',', 'mulvannyg', '2', 'architects', ',', 'which', 'was', 'responsible', 'for', 'costco', 'construction', '.'], ['the', 'forks', 'city', 'council', 'passed', 'a', 'resolution', 'in', '2', '0', '0', '7', 'celebrating', 'stephenie', 'meyer', 'day', 'in', 'honor', 'of', 'the', 'twilight', 'young', 'adult', 'novels', 'and', 'film', 'series', ',', 'set', 'for', 'september', '1', '3', ',', 'the', 'day', 'before', 'the', 'fictional', 'bella', \"'s\", 'birthday', '.'], ['since', 'then', 'other', 'examples', 'of', 'this', 'pattern', 'of', 'growing', 'respect', 'for', 'cultures', 'has', 'taken', 'hold', 'in', 'specific', 'instances', '.'], ['they', 'eventually', 'married', 'in', '1', '8', '5', '8', ',', 'but', 'in', '1', '8', '6', '4', 'august', 'peters', 'died', 'from', 'heart', 'disease', '.'], ['otherwise', ',', 'the', 'question', 'is', 'asked', 'on', 'the', 'partly', 'instantiated', 'formula', 'φ', '{', '``', 'x', \"''\", '1', '=true', '}', ',', 'i.e', '.'], ['manic', 'moonlight', 'is', 'the', 'ninth', 'studio', 'album', 'by', 'american', 'rock', 'band', 'king', \"'s\", 'x', ',', 'released', 'in', '2', '0', '0', '1', 'via', 'metal', 'blade', 'records', '.'], ['when', 'arthur', 'case', ',', 'chairman', 'of', 'the', 'board', 'of', 'directors', 'and', 'founder', 'of', 'the', 'bank', ',', 'learns', 'of', 'the', 'robbery', 'taking', 'place', ',', 'he', 'hires', '``', 'fixer', \"''\", 'madeleine', 'white', 'to', 'try', 'to', 'protect', 'the', 'contents', 'of', 'his', 'safe', 'deposit', 'box', 'within', 'the', 'bank', '.'], ['certain', 'gambling', 'problems', 'that', 'were', 'studied', 'centuries', 'earlier', 'can', 'be', 'considered', 'as', 'problems', 'involving', 'random', 'walks', '.'], ['the', 'steam', 'boats', 'also', 'gained', 'the', 'highest', 'prices', 'for', 'their', 'fish', ',', 'as', 'they', 'could', 'return', 'quickly', 'to', 'harbour', 'with', 'their', 'fresh', 'catch', '.'], ['en', '1', '4', '0', '4', '6', ':', '2', '0', '0', '4', '-', 'evaluation', 'of', 'the', 'ultimate', 'aerobic', 'biodegradability', 'and', 'disintegration', 'of', 'packaging', 'materials', 'under', 'controlled', 'composting', 'conditions', '.'], ['``', 'amnesia', \"''\", 'is', 'a', 'ballad', 'written', 'by', 'chico', 'novarro', 'and', 'co-written', 'by', 'dino', 'ramos', ',', 'produced', 'by', 'óscar', 'lópez', 'and', 'co-produced', 'by', 'daniel', 'freiberg', 'and', 'performed', 'by', 'mexican', 'singer', 'josé', 'josé', '.'], ['the', 'high', 'failure', 'rates', 'associated', 'with', 'pharmaceutical', 'development', 'are', 'referred', 'to', 'as', 'the', '``', 'attrition', 'rate', \"''\", 'problem', '.'], ['there', 'were', 'over', '5', '9', '8', ',', '0', '0', '0', 'visits', 'to', 'the', 'outpatient', 'clinics', '.'], ['he', 'was', 'educated', 'at', 'eton', 'between', '1', '8', '0', '5', 'and', '1', '8', '1', '1', ',', 'and', 'later', 'at', 'christ', 'church', ',', 'oxford', '.'], ['the', 'first', 'track', 'of', 'the', 'album', '``', 'dhakai', 'sharee', \"''\", 'was', 'released', 'as', 'single', 'on', '2', '6', 'february', '2', '0', '1', '6', '.'], ['alleyne', 'signed', 'for', 'middlesex', 'in', '1', '9', '9', '7', 'as', 'a', 'wicketkeeper-batsman', '.'], ['this', 'project', 'was', 'done', 'under', 'the', 'guidance', 'of', 'dr.', 'maria', 'orlowska', 'and', 'dr.', 'shazia', 'sadiq', '.'], ['the', 'film', 'holds', 'a', '2', '4', '%', 'approval', 'rating', 'at', 'rotten', 'tomatoes', 'based', 'on', '3', '4', 'reviews', ';', 'the', 'average', 'rating', 'is', '5', '.', '3', '/', '1', '0', '.'], ['american', 'sociologist', 'werner', 'cohn', 'lived', 'as', 'a', 'jew', 'in', 'nazi', 'germany', ',', 'and', 'he', 'also', 'reports', 'on', 'antisemitic', 'statements', 'by', 'niemöller', '.'], ['the', 'sun', 'parakeet', '(', '``', 'aratinga', 'solstitialis', \"''\", ')', ',', 'also', 'known', 'in', 'aviculture', 'as', 'the', 'sun', 'conure', ',', 'is', 'a', 'medium-sized', ',', 'vibrantly', 'colored', 'parrot', 'native', 'to', 'northeastern', 'south', 'america', '.'], ['the', 'population', 'was', '4', ',', '9', '9', '4', 'inhabitants', 'at', 'the', '2', '0', '1', '0', 'census', '.'], ['the', 'game', 'was', 'directed', 'by', 'bill', 'wentworth', ',', 'produced', 'by', 'garry', 'kitchen', ',', 'and', 'composed', 'by', 'chris', 'kelly', '.'], ['these', 'receptors', 'are', 'named', 'after', 'agonists', 'that', 'facilitate', 'glutamate', 'activity', '.'], ['its', 'disease', 'prevention', 'activities', 'were', 'focused', 'on', 'public', 'health', 'surveillance', ',', 'testing', 'and', 'evaluation', 'of', 'preventative', 'and', 'diagnostic', 'measures', ',', 'development', 'of', 'educational', 'and', 'training', 'materials', ',', 'and', 'grants', 'to', 'states', '.'], ['in', 'the', 'indigenous', 'town', 'of', 'caxitlán', ',', 'near', 'the', 'coast', ',', 'sandoval', 'founded', 'the', 'city', 'of', 'colima', 'in', 'its', 'first', 'location', 'on', 'july', '2', '5', ',', '1', '5', '2', '3', '.'], ['in', '2', '0', '1', '4', ',', 'the', 'school', 'had', '8', '9', '8', 'pupils', ',', 'with', '3', '5', '.', '9', '%', 'of', 'pupils', 'eligible', 'for', 'a', 'free', 'lunch', 'due', 'to', 'the', 'family', 'meeting', 'the', 'federal', 'poverty', 'level', '.'], ['biv', 'was', 'specifically', 'identified', 'by', 'dr.', 'cameron', 'seger', ',', 'a', 'veterinarian', 'of', 'the', 'louisiana', 'state', 'university', 'agricultural', 'center', ',', 'while', 'he', 'was', 'studying', 'dairy', 'cattle', 'at', 'the', 'southeast', 'louisiana', 'experiment', 'station', 'at', 'franklinton', ',', 'louisiana', '.'], ['in', 'december', '2', '0', '0', '5', ',', 'the', 'two', 'countries', 'signed', 'an', 'agreement', 'to', 'develop', 'biotech', 'joint', 'ventures', 'within', 'the', 'next', 'three', 'to', 'five', 'years', '.'], ['the', 'collaboration', 'between', 'marsh', 'and', 'nicol', 'ended', 'after', 'the', 'release', 'of', 'the', 'duo', \"'s\", 'final', 'album', ',', '1', '9', '7', '8', \"'s\", '``', 'nicol', '&', 'amp', ';', 'marsh', \"''\", '.'], ['the', 'bondi', 'short', 'film', 'festival', 'is', 'an', 'annual', 'one-day', 'competitive', 'short', 'film', 'festival', 'open', 'to', 'amateur', 'filmmakers', 'held', 'in', 'the', 'australian', 'city', 'of', 'sydney', ',', 'at', 'bondi', 'beach', '.'], ['hanina', 'requested', 'a', '3', '0', '-day', 'delay', 'in', 'which', 'to', 'review', 'his', 'studies', '(', 'in', 'accordance', 'with', 'the', 'saying', '``', 'happy', 'is', 'one', 'who', 'comes', 'to', '[', 'the', 'world', 'to', 'come', ']', 'with', 'his', 'studies', 'in', 'his', 'hand', \"''\", ')', '.'], ['for', 'every', '1', '0', '0', 'females', 'age', '1', '8', 'and', 'over', ',', 'there', 'were', '8', '8', '.', '4', 'males', '.'], ['he', 'also', 'has', 'a', 'very', 'hypocritical', 'sense', 'of', 'humor', '.'], ['a', 'free-to-play', 'cut', 'version', 'of', '``', 'doa', '5', 'ultimate', \"''\", ',', 'titled', 'dead', 'or', 'alive', '5', 'ultimate', ':', 'core', 'fighters', ',', 'was', 'released', 'on', 'the', 'playstation', 'store', 'alongside', 'the', 'retail', 'game', '.'], ['the', 'st.', 'rose', 'of', 'lima', 'catholic', 'church', 'and', 'school', 'complex', 'in', 'crofton', 'in', 'knox', 'county', ',', 'nebraska', 'was', 'listed', 'on', 'the', 'national', 'register', 'of', 'historic', 'places', 'in', '2', '0', '1', '1', '.'], ['the', 'elevation', 'near', 'the', 'mouth', 'of', 'meeker', 'run', 'is', 'above', 'sea', 'level', '.'], ['in', 'march', '1', '8', '9', '8', ',', 'the', 'canadian', 'mining', 'institute', 'was', 'founded', 'in', 'montreal', 'at', 'the', 'second', 'annual', 'meeting', 'of', 'the', 'federated', 'canadian', 'mining', 'institute', ',', 'which', 'was', 'dissolved', '.'], ['during', 'his', 'term', 'as', 'mayor', 'he', 'led', 'the', 'calls', 'for', 'a', 'federal', 'investigation', 'into', 'the', 'hyatt', 'regency', 'walkway', 'collapse', 'in', '1', '9', '8', '1', '.'], ['soon', 'after', ',', 'the', 'town', 'itself', 'was', 'established', 'and', 'the', 'first', 'wooden', 'bridge', 'over', 'the', 'river', 'to', 'the', 'town', 'was', 'built', 'in', '1', '8', '0', '5', ',', 'along', 'with', 'the', 'first', 'post', 'office', ',', 'taverns', ',', 'banks', ',', 'and', 'stores', 'all', 'by', '1', '8', '1', '2', '.'], ['he', 'said', 'to', 'me', ',', \"'what\", 'do', 'you', 'want', '?', \"'\"], ['and', 'became', 'known', 'as', '``', 'the', 'founding', 'father', 'of', 'st', 'george', \"'s\", 'altrincham', \"''\", '.'], ['the', 'creation', 'of', 'the', 'park', 'was', 'formally', 'ratified', 'by', 'gazette', 'notification', 'no', '1', '7', '3', '5', '/', '2', '1', 'on', '6', 'december', '2', '0', '1', '1', '.'], ['the', 'battle', 'of', 'saddada', 'castle', 'was', 'a', 'battle', 'fought', 'between', 'the', 'libyan', 'national', 'army', ',', 'and', 'the', 'sirte', 'protection', 'force', 'and', 'the', 'benghazi', 'defense', 'brigades', 'on', '1', '9', 'december', '2', '0', '1', '8', ',', 'which', 'took', 'place', 'in', 'saddada', 'castle', ',', 'between', 'misrata', 'and', 'bani', 'walid', '.'], ['as', 'such', ',', 'it', 'exerts', 'the', 'greatest', 'influence', 'on', 'colloquial', 'singaporean', 'mandarin', ',', 'resulting', 'in', 'a', 'hokkien-style', 'singaporean', 'mandarin', 'widely', 'spoken'], ['aro', 'was', 'also', 'in', 'the', 'band', 'the', 'resistance', 'and', 'did', \"n't\", 'want', 'to', 'have', 'conflicting', 'schedules', 'with', 'both', 'bands', ',', 'so', 'he', 'had', 'to', 'have', 'a', 'discussion', 'with', 'the', 'resistance', 'as', 'well', '.'], ['by', 'august', '2', '0', '1', '7', ',', 'with', 'the', 'release', 'of', \"'\", ',', 'the', 'entire', '3', '5', '0', '-person', 'team', 'at', 'naughty', 'dog', 'had', 'shifted', 'to', 'develop', '``', 'part', 'ii', \"''\", '.'], ['once', 'it', 'was', 'clear', 'that', 'the', 'doctor', 'was', 'willing', 'to', 'help', 'them', 'defeat', 'the', 'animus', ',', 'they', 'were', 'only', 'too', 'glad', 'to', 'assist', 'in', 'any', 'way', 'they', 'could', '.'], ['the', 'songwe', 'is', 'fast-flowing', 'and', 'changes', 'its', 'course', 'regularly', 'in', 'a', 'short', 'period', 'of', 'time', ',', 'forming', 'new', 'meanders', 'and', 'causing', 'the', 'precise', 'border', 'location', 'to', 'shift', 'and', 'become', 'ambiguous', '.'], ['then', 'he', 'was', 'sent', 'to', 'zhejiang', 'to', 'mobilize', 'youth', ',', 'and', 'once', 'was', 'secretary', 'of', 'communism', 'youth', 'league', 'for', 'that', 'province', '.'], ['once', 'a', 'project', 'is', 'financially', 'sustainable', ',', 'omega', 'international', 'uses', 'any', 'profits', 'from', 'operations', 'to', 'provide', 'grants', ',', 'microcredits', 'and', 'microloans', 'to', 'promote', 'new', 'opportunities', ',', 'and', 'ventures', 'helping', 'people', 'throughout', 'the', 'region', '.'], ['he', 'was', 'survived', 'by', 'his', 'wife', ';', 'two', 'children', ',', 'michael', 'reynolds', 'jencks', 'and', 'nancy', 'de', 'laguna', 'jencks', 'and', 'four', 'step-children', '-', 'lynn', 'christopher', 'collins', ',', 'martha', 'm.', 'barrett', ',', 'elizabeth', 'b.', 'snyder', ',', 'and', 'george', 'b.', 'barrett', 'iii', '.'], ['the', 'soldiers', 'of', 'the', 'western', 'counties', 'oathed', 'to', 'horthy', 'again', ',', 'and', 'prevented', 'charles', 'from', 'leaving', 'the', 'country', '.'], ['it', 'is', 'endemic', 'to', 'ecuador', '(', 'loja', 'province', ')', '.'], ['on', '6', 'november', '2', '0', '1', '2', ',', 'six', 'people', 'on', 'three', 'motorbikes', 'entered', 'the', 'shopping', 'centre', 'and', 'smashed', 'in', 'the', 'windows', 'at', 'jewellers', 'fraser', 'hart', '.'], ['alonso', 'and', 'the', 'mercedes', 'pitted', 'for', 'intermediate', 'tyres', ',', 'leaving', 'massa', 'in', 'second', 'and', 'kobayashi', 'in', 'third', 'by', 'lap', '1', '7', '.'], ['out', 'of', 'that', 'number', 'over', '1', '0', '0', 'were', 'shot', 'on', 'the', 'local', '(', 'jewish', ')', 'cemetery', '.'], ['in', 'his', 'memoir', ',', 'stuart', 'hodes', 'described', 'the', 'piece', 'as', 'possibly', '``', 'a', 'metaphor', 'for', 'martha', \"'s\", 'life', '-', 'one', 'against', 'many', '-', 'her', 'role', 'in', 'the', 'world', ',', 'in', 'dance', ',', 'in', 'her', 'troupe', ',', 'and', 'likely', ',', 'in', 'her', 'own', 'family', '.', \"''\"], ['he', 'was', 'assigned', 'to', 'the', '1', 'st', 'squadron', ',', '1', '0', 'th', 'u.s.', 'cavalry', 'regiment', ',', '4', 'th', 'infantry', 'division', '.'], ['shawn', \"'s\", 'mother', ',', 'brother', ',', 'sister', ',', 'and', 'father', 'are', 'all', 'talked', 'about', 'in', 'the', 'book', '.'], ['gemina', 'gave', 'birth', 'to', 'a', 'calf', 'in', '1', '9', '9', '1', ',', 'but', 'the', 'calf', 'died', 'of', 'pneumonia', 'soon', 'after', 'birth', '.'], ['historically', ',', 'the', 'punjab/punjabis', ',', 'in', 'addition', 'to', 'their', 'rural-agrarian', 'lands', 'and', 'culture', ',', 'have', 'also', 'enjoyed', 'a', 'unique', 'urban', 'cultural', 'development', 'in', 'two', 'great', 'cities', ',', 'lahore', 'and', 'amritsar', '.'], ['the', 'following', 'year', 'he', 'originated', 'the', 'role', 'in', 'talking', 'pictures', 'of', 'wopsle', 'in', 'stuart', 'walker', \"'s\", '1', '9', '3', '4', 'production', 'of', '``', 'great', 'expectations', \"''\", '.'], ['it', 'is', 'also', 'when', 'she', 'clearly', 'recounts', 'a', 'dreamlike', 'memory', 'that', 'even', 'she', 'does', \"n't\", 'trust', 'of', 'meeting', 'an', 'illegitimate', 'half-brother', 'and', 'staring', 'at', 'him', ',', 'realizing', 'how', 'much', 'alike', 'they', 'look', ',', 'and', 'feeling', 'as', 'if', 'really', 'he', 'was', 'a', 'male', 'reflection', 'of', 'herself', '.'], ['as', 'the', 'herring', 'fishing', 'industry', 'declined', ',', 'steam', 'boats', 'became', 'too', 'expensive', '.'], ['however', ',', 'by', '3', '0', 'october', ',', 'the', 'sky', 'was', 'full', 'of', 'enemy', 'fokkers', ',', 'generally', 'found', 'in', 'groups', 'of', 'five', 'to', 'seven', '.'], ['the', 'resulting', 'conflagration', 'destroyed', 'many', 'buildings', ',', 'most', 'of', 'which', 'were', 'commercial', ',', 'as', 'well', 'as', 'confederate', 'warships', 'docked', 'on', 'the', 'james', 'river', '.'], ['bikkulovo', '(', ')', 'is', 'a', 'rural', 'locality', '(', 'a', 'selo', ')', 'in', 'bikkulovsky', 'selsoviet', ',', 'miyakinsky', 'district', ',', 'bashkortostan', ',', 'russia', '.'], ['a', 'video', 'of', 'this', 'event', 'can', 'be', 'viewed', 'at', 'craig', \"'s\", 'website', ',', 'reasonable', 'faith', '.'], ['after', 'the', 'liberation', ',', 'the', 'first', 'brewery', 'was', 'inaugurated', 'in', 'the', 'city', '.'], ['thus', 'it', 'was', 'not', 'recognized', 'as', 'a', 'great', 'power', 'that', 'could', 'claim', 'compensation', 'in', 'case', 'of', 'territorial', 'gain', 'by', 'another', 'member', 'of', 'the', 'system', \"''\", '.'], ['the', 'project', 'has', 'elaborated', '4', '4', 'target', 'families', ',', 'where', '2', '2', 'of', 'them', 'successfully', 'received', 'financial', 'aid', '.'], ['like', 'the', 'seventh', 'dalai', 'lama', ',', 'the', 'tenth', ',', 'tsultrim', 'gyatso', ',', 'was', 'born', 'in', 'lithang', ',', 'kham', ',', 'where', 'the', 'third', 'dalai', 'lama', 'had', 'built', 'a', 'monastery', '.'], ['their', 'on-screen', 'friendship', ',', 'then', ',', 'was', 'formed', 'when', 'hogan', '(', 'at', 'the', 'persuasion', 'of', 'savage', \"'s\", 'valet', ',', 'miss', 'elizabeth', ')', 'intervened', 'when', 'savage', 'was', 'being', 'attacked', 'by', 'the', 'honky', 'tonk', 'man', 'and', 'the', 'hart', 'foundation', 'in', 'an', 'angle', '.'], ['south', 'bedfordshire', 'was', ',', 'from', '1', '9', '7', '4', 'to', '2', '0', '0', '9', ',', 'a', 'non-metropolitan', 'district', 'of', 'bedfordshire', ',', 'in', 'the', 'east', 'of', 'england', '.'], ['he', 'does', \"n't\", 'kiss', 'her', ',', 'though', ',', 'promising', 'to', 'claim', 'his', 'prize', 'without', 'prying', 'eyes', '.'], ['in', '1', '7', '9', '8', ',', 'it', 'was', 'named', 'by', 'martin', 'heinrich', 'klaproth', ',', 'who', 'had', 'earlier', 'isolated', 'it', 'from', 'the', 'mineral', 'calaverite', '.'], ['the', 'end', 'saw', 'carrillo', 'attempt', 'a', 'hurricanrana', 'on', 'andrade', ',', 'who', 'countered', 'into', 'a', 'roll-up', 'to', 'retain', 'the', 'title', '.'], ['``', ',', 'so', 'that', 'it', 'belongs', 'to', 'pseudoscience', 'without', 'empirical', 'evidence', 'of', 'truth', '.'], ['fénix', 'was', 'the', 'first', 'champion', ',', 'having', 'won', 'a', 'multi-man', 'match', 'on', 'june', '1', '4', ',', '2', '0', '1', '3', ',', 'to', 'become', 'the', 'inaugural', 'champion', ',', 'he', 'is', 'also', 'the', 'only', 'wrestler', 'to', 'have', 'won', 'the', 'championship', 'twice', '.'], ['the', 'dispute', 'arose', 'from', 'payments', 'that', 'bh', 'motor', 'spares', 'alleges', 'to', 'have', 'made', 'to', 'pupkewitz', 'for', 'goods', 'that', 'they', 'had', 'neither', 'ordered', 'nor', 'received', 'from', 'the', 'motoring', 'mogul', '.'], ['other', 'products', 'that', 'have', 'introduced', 'futuristic', 'elements', 'into', 'd', '&', 'amp', ';', 'd', 'include', 'the', 'adventure', '``', 'city', 'of', 'the', 'gods', \"''\", '(', '1', '9', '8', '7', ')', 'and', 'the', 'novel', '``', 'tale', 'of', 'the', 'comet', \"''\", '(', '1', '9', '9', '7', ')', '.'], ['the', 'house', 'was', 'demolished', 'in', 'the', '1', '9', '6', '0', 's', '.'], ['it', 'belonged', 'to', 'the', 'earls', 'of', 'stradbroke', ',', 'as', 'part', 'of', 'the', 'henham', 'park', 'estate', ',', 'until', '1', '9', '5', '1', 'when', 'it', 'became', 'part', 'of', 'the', 'blyford', 'estate', 'of', 'john', 'hill', '.'], ['he', 'said', 'that', '``', 'homosexuality', 'must', 'be', 'stopped', 'and', 'every', 'means', 'used', 'to', 'make', 'that', 'happen', \"''\", '.'], ['he', 'was', 'also', 'the', 'oldest', 'living', 'brother', 'of', 'the', 'pi', 'kappa', 'alpha', 'fraternity', '.'], ['butler', 'county', 'has', 'often', 'been', 'used', 'as', 'a', 'setting', 'for', 'films', 'shot', 'in', 'the', 'north', 'pittsburgh', 'area', '.'], ['on', '1', '8', 'august', '2', '0', '1', '0', ',', 'after', 'a', 'publicity', 'stunt', 'where', 'it', 'briefly', 'branded', 'as', '``', 'glee', 'fm', \"''\", '(', 'airing', 'only', 'music', 'from', 'the', 'american', 'musical', 'comedy-drama', 'series', '``', 'glee', ',', \"''\", 'the', 'station', 'relaunched', 'as', 'glide', 'fm', '.'], ['it', 'is', 'found', 'in', 'south', 'africa', ',', 'where', 'it', 'has', 'been', 'recorded', 'from', 'gauteng', '.'], ['the', 'relationship', 'the', 'property', 'manager', 'has', 'with', 'the', 'landlord', 'and', 'with', 'the', 'tenant', 'are', 'crucial', 'in', 'forming', 'the', 'expectations', 'of', 'both', 'parties', 'to', 'the', 'lease', 'since', 'both', 'parties', 'will', 'seek', 'and', 'expect', 'certain', 'rights', 'and', 'benefits', 'out', 'of', 'it', '.'], ['fat', 'man', 'also', 'suggested', 'that', 'the', 'twins', 'take', 'their', 'instrumental', 'for', 'their', 'club', 'hit', 'hooked', 'on', 'your', 'love', 'and', 'use', 'it', 'as', 'a', 'backing', 'track', 'for', 'a', 'group', 'called', 'dr.', 'jeckyll', '&', 'amp', ';', 'mr.', 'hyde', '(', 'andre', 'harrell', 'and', 'alonzo', 'brown', ')', '.'], ['there', 'are', 'no', 'return', 'tickets', ',', 'except', 'on', 'the', 'airport', 'express', '.'], ['nicolai', 'is', 'a', 'lunar', 'impact', 'crater', 'that', 'is', 'located', 'in', 'the', 'southern', 'hemisphere', 'of', 'the', 'moon', ',', 'in', 'a', 'region', 'that', 'is', 'less', 'disturbed', 'by', 'significant', 'impacts', 'than', 'most', 'of', 'the', 'highlands', '.'], ['before', '1', '9', '7', '1', ',', 'the', 'official', 'form', 'for', 'the', 'latin', 'church', 'was', 'the', '``', 'breviarium', 'romanum', \"''\", ',', 'first', 'published', 'in', '1', '5', '6', '8', '.'], ['he', 'joined', 'a', 'cavalry', 'troop', 'in', '1', '8', '8', '0', 'and', 'helped', 'crush', 'the', 'manchu', 'independence', 'plan', '(', 'supported', 'by', 'the', 'japanese', ')', 'in', '1', '9', '1', '2', '.'], ['his', 'son', ',', 'andrzej', ',', 'was', 'born', 'during', 'the', 'warsaw', 'uprising', 'on', '2', '3', 'september', ',', 'as', 'pluskowski', 'later', 'wrote', ',', '``', 'on', 'a', 'table', ',', 'in', 'our', 'cellar', ',', 'in', 'the', 'middle', 'of', 'a', 'german', 'bombardment', \"''\", '.'], ['dyotopasta', 'is', 'a', 'genus', 'of', 'moths', 'belonging', 'to', 'the', 'family', 'tineidae', '.'], ['in', 'australia', 'its', 'range', 'is', 'in', 'the', 'southern', 'part', 'of', 'the', 'continent', 'where', 'it', 'occurs', 'from', 'shark', 'bay', 'in', 'western', 'australia', ',', 'south', 'to', 'the', 'southern', 'coast', 'of', 'the', 'continent', ',', 'east', 'to', 'tasmania', 'and', 'north', 'to', 'fraser', 'island', 'in', 'queensland', '.'], ['in', 'the', 'speech', ',', 'the', 'president', 'announced', 'a', 'temporary', '3', '0', '-day', 'travel', 'ban', 'on', 'all', 'european', 'goods', 'and', 'passengers', 'from', 'europe', 'in', 'response', 'to', 'the', 'coronavirus', 'pandemic', '.'], ['japanese', 'jōmon', 'influences', 'are', 'dominant', 'on', 'the', 'okinawa', 'islands', ',', 'although', 'clay', 'vessels', 'on', 'the', 'sakishima', 'islands', 'have', 'a', 'commonality', 'with', 'those', 'in', 'taiwan', '.'], ['the', 'subject', 'is', 'a', 'draped', 'angel', 'figure', ',', 'crowned', 'by', 'a', 'golden', 'halo', ',', 'standing', 'in', 'a', 'field', 'of', 'lilies', '.'], ['the', 'changes', 'were', 'generally', 'favorable', ',', 'but', 'at', 'the', 'cost', 'of', 'increasing', 'the', 'craft', \"'s\", 'sensitivity', 'to', 'the', 'wind', '.'], ['the', 'same', 'day', ',', 'a', 'spokesperson', 'for', 'subway', 'announced', 'that', 'the', 'company', 'and', 'fogle', 'had', 'mutually', 'agreed', 'to', 'suspend', 'their', 'business', 'relationship', ';', 'subsequently', ',', 'subway', 'removed', 'all', 'references', 'to', 'fogle', 'from', 'its', 'website', '.'], ['percy', 'w.', 'abbott', 'died', 'in', '1', '9', '4', '2', 'at', 'the', 'age', 'of', '6', '0', '.'], ['blackwood', 'island', 'is', 'part', 'of', 'the', 'great', 'barrier', 'reef', 'marine', 'park', 'at', 'the', 'tip', 'of', 'cape', 'melville', ',', 'queensland', 'in', 'bathurst', 'bay', '.'], ['she', 'demonstrated', 'the', 'efficacy', 'of', 'shanchol', 'vaccine', 'in', 'mass', 'population', 'in', 'slam', 'areas', 'in', 'dhaka', ',', 'then', 'worked', 'to', 'have', 'it', 'adopted', 'as', 'a', 'public', 'health', 'intervention', 'in', 'bangladesh', ',', 'including', 'rohingya', 'refugees', '.'], ['as', 'carlin', 'relates', 'the', 'history', 'of', 'a', 'high', 'school', 'boy', 'who', 'saw', 'the', 'reaper', 'and', 'disappeared', 'without', 'a', 'trace', ',', 'spangler', 'becomes', 'ill', 'and', 'rushes', 'out', 'of', 'the', 'second', 'floor', '.'], ['poverty', 'inc.', 'is', 'a', '2', '0', '1', '4', 'film', 'by', 'gary', 'null', 'and', 'valerie', 'van', 'cleve', 'which', '``', 'claims', 'that', 'the', 'federal', 'reserve', ',', 'like', 'other', 'central', 'banks', 'such', 'as', 'the', 'international', 'monetary', 'fund', 'and', 'the', 'world', 'bank', ',', 'is', 'a', 'pyramid', 'scheme', '.', \"''\"], ['on', 'the', 'death', 'of', 'his', 'father-in-law', 'in', '1', '7', '3', '4', 'he', 'succeeded', 'to', 'the', 'latter', \"'s\", 'estates', ',', 'including', 'shotwick', 'park', '.'], ['minneapolis', 'absorbed', 'sizeable', 'portions', 'of', 'richfield', 'territory', 'through', 'legislative', 'action', 'or', 'annexations', 'in', '1', '8', '6', '7', ',', '1', '8', '8', '3', ',', '1', '8', '8', '7', 'and', '1', '9', '2', '7', '.'], ['as', 'of', '1', '9', '8', '3', ',', 'the', 'wwb', 'package', 'contained', '2', '9', 'utilities', '.'], ['the', 'three', 'battalions', 'distinguished', 'themselves', 'in', 'the', 'battles', 'of', 'shelatang', ',', 'naushera', ',', 'jhangar', 'and', 'poonch', ',', 'after', 'which', 'they', 'were', 'awarded', 'the', 'respective', 'battle', 'honours', '.'], ['vermion', ',', 'thus', 'further', 'demoralizing', 'the', 'men', 'and', 'slowing', 'down', 'the', 'march', '.'], ['the', 'angel', 'described', 'an', 'incident', 'in', 'which', 'joshua', 'had', 'shown', 'his', 'righteousness', 'in', 'a', 'way', 'hanina', 'had', 'not', ',', 'and', 'hanina', 'was', 'left', 'without', 'an', 'answer', '.'], ['the', 'express', 'depot', 'consists', 'of', 'a', '-story', 'central', 'section', 'flanked', 'by', 'two', '1', '-story', 'wings', '.'], ['studies', 'of', 'various', 'projectile', 'types', 'have', 'been', 'crucial', 'in', 'overturning', 'a', 'prior', 'theory', 'that', 'spallation', 'occurs', 'at', 'a', 'threshold', 'of', 'pressure', ',', 'independent', 'of', 'time', '.'], ['the', 'allmusic', 'review', 'by', 'scott', 'yanow', 'called', 'it', 'an', '``', 'intriguing', 'if', 'erratic', 'set', \"''\", 'stating', '``', 'not', 'essential', ',', 'but', 'it', 'is', 'a', 'missing', 'link', 'in', 'the', 'long', 'career', 'of', 'chico', 'hamilton', \"''\", '.'], ['groening', 'stated', 'that', 'he', 'had', 'originally', 'intended', 'him', 'to', 'be', 'called', 'louis', 'lane', 'and', 'be', '``', 'obsessed', 'and', 'tormented', 'by', \"''\", 'lois', 'lane', ',', 'but', 'groening', 'was', 'not', 'present', 'when', 'the', 'writers', 'chose', 'the', 'name', '.'], ['parr', 'was', 'also', 'a', 'friend', 'of', 'johnson', ',', 'as', 'frank', 'b.', 'lloyd', ',', 'the', 'district', 'attorney', '(', 'da', ')', 'in', 'alice', ',', 'texas', 'recalled', ':', '``', 'george', 'and', 'lyndon', 'were', 'very', 'close', '.'], ['the', 'dearne', 'and', 'dove', 'canal', 'was', 'authorised', 'on', 'the', 'same', 'day', '.'], ['analogous', 'to', 'an', 'electric', 'field', 'and', 'electric', 'charges', ',', 'the', 'strong', 'force', 'acting', 'between', 'color', 'charges', 'can', 'be', 'depicted', 'using', 'field', 'lines', '.'], ['a', 'real', 'or', 'complex', 'linear', 'space', 'endowed', 'with', 'a', 'norm', 'is', 'a', 'normed', 'space', '.'], ['large', 'numbers', 'of', 'this', 'species', 'were', 'exported', 'from', 'madagascar', 'between', '1', '9', '8', '9', 'and', '1', '9', '9', '3', 'before', 'the', 'trade', 'from', 'madagascar', 'was', 'banned', 'by', 'the', 'cites', 'multilateral', 'treaty', '.'], ['bryennios', 'had', 'rebelled', 'against', 'michael', 'vii', 'doukas', '(', ')', 'and', 'had', 'won', 'over', 'the', 'allegiance', 'of', 'the', 'byzantine', 'army', \"'s\", 'regular', 'regiments', 'in', 'the', 'balkans', '.'], ['samshvilde', 'served', 'as', 'the', 'kuirikid', 'capital', 'until', 'a', 'member', 'of', 'that', 'dynasty', ',', 'kiurike', 'ii', ',', 'was', 'made', 'captive', 'by', 'king', 'bagrat', 'iv', 'of', 'georgia', 'and', 'had', 'to', 'ransom', 'himself', 'by', 'surrendering', 'samshvilde', 'to', 'the', 'georgians', 'in', '1', '0', '6', '4', '.'], ['in', 'kg', 'd-', '6', ',', 'most', 'of', 'the', 'cost', 'had', 'been', 'recovered', 'by', 'the', 'private', 'player', 'and', 'the', 'increase', 'in', 'price', 'would', 'only', 'go', 'as', 'profit', '.'], ['he', 'began', 'training', 'in', 'karate', 'whilst', 'at', 'takushoku', 'university', 'under', 'the', 'then-head', 'instructor', 'of', 'shotokan', 'karate', ',', 'masatoshi', 'nakayama', '.'], ['since', '1', '9', '9', '0', ',', 'he', 'lectures', 'at', 'the', 'belgrade', 'faculty', 'of', 'philosophy', 'on', 'the', 'courses', '``', 'introduction', 'to', 'the', 'social', 'theory', \"''\", 'and', '``', 'philosophy', 'of', 'politics', \"''\", '.'], ['he', 'and', 'his', 'collaborators', 'were', 'the', 'first', 'to', 'propose', 'the', 'use', 'of', 'p', 'element', 'transposon', 'tagging', 'to', 'clone', 'the', 'first', 'metazoan', 'rna', 'polymerase', 'subunit', '(', 'searles', 'et', 'al.', ',', '1', '9', '8', '2', ')', '.'], ['the', 'eyes', 'are', 'red', 'and', 'there', 'is', 'some', 'dark', 'pigmentation', 'in', 'front', 'of', 'them', 'and', 'along', 'the', 'sides', 'of', 'the', 'body', '.'], ['fielding', 'iaf', 'flight', 'academy', 'aircraft', ',', 'it', 'flew', 'the', 'boeing-stearman', 'kaydet', 'during', 'the', '1', '9', '5', '6', 'suez', 'crisis', 'and', 'the', 'fouga', 'magister', 'during', 'the', '1', '9', '6', '7', 'six-day', 'war', ',', 'in', 'the', 'course', 'of', 'which', 'it', 'suffered', 'six', 'fatalities', '.'], ['while', 'on', 'the', 'peninsula', ',', 'the', 'sisters', 'continued', 'establishing', 'schools', 'with', 'help', 'from', 'the', 'local', 'community', 'such', 'as', 'kuala', 'lumpur', \"'s\", 'oldest', 'girls', \"'\", 'school', 'convent', 'bukit', 'nanas', 'and', 'the', 'only', 'chinese', 'convent', 'girls', 'school', 'convent', 'datuk', 'keramat', 'in', 'penang', '.'], ['in', 'this', 'very', 'complex', 'headwaters', ',', 'the', 'river', 'passes', 'through', 'numerous', 'lakes', 'and', 'marshes', ',', 'such', 'as', 'cramoisy', 'lakes', ',', 'teilhard', ',', 'biggar', 'and', 'mountains', '.'], ['he', 'personally', 'recruited', 'a', 'damage', 'control', 'party', 'and', 'led', 'it', 'into', 'one', 'of', 'the', 'main', 'ammunition', 'magazines', 'to', 'wet', 'it', 'down', 'and', 'prevent', 'its', 'exploding', '.'], ['she', 'makes', 'a', 'cameo', 'in', 'a', 'cliffhanger', 'at', 'the', 'beginning', 'of', '``', 'night', 'of', 'the', 'living', 'carrots', \"''\", '.'], ['his', 'talent', 'and', 'bravery', 'almost', 'immediately', 'became', 'stuff', 'of', 'legends', 'and', 'his', 'unit', ',', 'which', 'had', 'many', 'young', 'men', 'and', 'teenagers', ',', 'was', 'nicknamed', 'the', '``', 'partisan', 'artillery', \"''\", '.'], ['on', '1', '0', 'september', '2', '0', '0', '8', ',', 'cbc', 'north', 'reported', 'that', 'sheutiapik', 'would', 'be', 'taking', 'a', 'leave', 'of', 'absence', 'to', 'run', 'in', 'the', 'nunavut', 'election', '.'], ['the', 'population', 'density', 'was', '8', '5', '7', '.', '6', 'people', 'per', 'square', 'mile', '(', '3', '3', '1', '.', '1', '/km', ')', '.'], ['two', 'manufacturing', 'plants', 'using', 'cuban', 'technology', 'and', 'processes', ',', 'were', 'operating', 'in', 'china', 'as', 'of', 'early', '2', '0', '0', '6', '.'], ['in', '2', '0', '0', '6', 'he', 'recorded', 'the', 'cd', '``', 'upside', 'down', \"''\", 'and', 'in', '2', '0', '0', '7', '``', 'desert', 'pirate', \"''\", '.'], ['the', 'insurance', 'claims', 'reached', 'nz', '$', '9', '1', '.', '5', 'million', '(', 'us', '$', '6', '3', '.', '8', 'million', ')', '.'], ['boloff', \"'s\", 'tuberculosis', ',', 'which', 'he', 'contracted', 'at', 'the', 'oregon', 'state', 'penitentiary', ',', 'was', 'advanced', 'due', 'to', 'the', 'lack', 'of', 'treatment', '.'], ['the', 'oregon', 'supreme', 'court', 'denied', 'a', 'second', 'hearing', 'of', 'the', 'case', ',', 'reaffirming', 'their', 'previous', 'ruling', 'that', 'upheld', 'the', 'lower', 'court', \"'s\", 'ruling', '.'], ['the', 'course', 'is', 'aimed', 'at', 'students', 'from', 'the', 'gsd', ',', 'and', 'mit', '.'], ['after', 'two', 'days', 'of', 'clashes', ',', 'oppositions', 'and', 'fsa', 'sources', 'confirmed', 'that', 'the', 'syrian', 'army', 'seized', 'back', 'the', 'control', 'of', 'the', 'eastern', 'suburbs', 'of', 'damascus', 'from', 'the', 'rebels', 'and', 'started', 'to', 'make', 'house', 'to', 'house', 'arrests', '.'], ['the', 'town', 'was', 'founded', 'in', '1', '7', '9', '2', 'by', 'col.', 'jacob', 'weiss', '.'], ['he', 'was', 'appointed', 'to', 'the', 'washington', 'state', 'public', 'works', 'commission', 'during', 'the', 'administration', 'of', 'franklin', 'roosevelt', '.'], ['the', 'station', 'building', 'is', 'a', 'large', 'structure', 'with', 'simplified', 'detail', 'but', 'without', 'the', 'form', 'of', 'the', 'grander', 'brick', 'buildings', '.'], ['this', 'custom', 'was', 'noted', 'by', 'many', '1', '9', 'th', 'century', 'authors', ',', 'and', 'continues', 'today', '.'], ['the', 'first', 'title', 'holder', 'of', 'this', 'award', ',', 'vice', 'ganda', ',', 'retains', 'his', 'reign', 'up', 'to', 'now', 'by', 'receiving', 'the', 'award', 'for', '8', 'consecutive', 'years', '.'], ['he', 'is', 'identified', 'on', 'his', 'tombstone', 'by', 'the', 'personal', 'name', 'of', \"'zhensi\", \"'\", ',', 'or', \"'he\", 'who', 'shakes', 'surabaya', \"'\", '.'], ['he', 'specializes', 'in', 'site-specific', 'installations', ',', 'and', 'sometimes', 'works', 'with', 'local', 'communities', 'to', 'produce', 'his', 'works', '.'], ['australia', 'was', 'the', 'first', 'nation', 'to', 'implement', 'imei', 'blocking', 'across', 'all', 'gsm', 'networks', ',', 'in', '2', '0', '0', '3', '.'], ['he', 'became', 'king', 'of', 'kantipur', 'in', '1', '5', '8', '3', 'and', 'in', '1', '5', '9', '7', ',', 'king', 'shiva', 'simha', 'of', 'kathmandu', 'conquered', 'lalitpur', 'and', 'he', 'ruled', 'both', 'kingdoms', 'as', 'one', 'then', 'until', 'his', 'death', 'in', '1', '6', '1', '9', '.'], ['many', 'community', ',', 'student', 'and', 'hospital', 'radio', 'stations', 'around', 'the', 'uk', 'take', 'the', 'hourly', 'bulletin', 'service', '.'], ['building', 'material', 'was', 'taken', 'from', 'the', 'ruins', 'of', 'theodoric', \"'s\", 'palace', 'by', 'charlemagne', ',', 'including', 'several', 'columns', 'that', 'he', 'reused', 'in', 'the', 'construction', 'of', 'his', 'palatine', 'chapel', 'in', 'aachen', '.'], ['from', '1', '6', '7', '8', 'until', '1', '9', '1', '0', ',', 'the', 'church', 'was', 'owned', 'by', 'the', 'nearby', 'barony', 'rosendal', ',', 'where', 'many', 'of', 'the', 'rosenkrantz', 'family', 'are', 'buried', '.'], ['in', 'mid-october', ',', 'it', 'was', 'reported', 'that', 'flu', 'caused', 'by', 'the', 'h', '1', 'n', '1', 'virus', 'was', 'widespread', 'in', '4', '1', 'states', ',', 'and', 'flu-like', 'illnesses', 'accounted', 'for', '6', '.', '1', 'percent', 'of', 'all', 'doctor', 'visits', ',', 'which', 'was', 'considered', 'high', ',', 'particularly', 'for', 'october', '.'], ['steve', 'morse', 'in', 'a', '1', '9', '9', '3', '``', 'boston', 'globe', \"''\", 'review', 'called', 'it', 'one', 'of', '``', 'standouts', \"''\", 'of', 'the', '1', '9', '9', '3', 'album', '``', 'colour', 'of', 'your', 'dreams', \"''\", '.'], ['in', '2', '0', '1', '7', ',', 'the', 'three', 'species', 'of', '``', 'strophocactus', \"''\", 'have', 'tubular', 'to', 'funnel-shaped', 'flowers', 'with', 'tubercules', 'arranged', 'in', 'ribs', 'and', 'areoles', 'with', 'bristles', '.'], ['the', 'park', 'contains', 'the', 'most', 'important', '``', 'albertosaurus', \"''\", 'bone', 'bed', 'in', 'the', 'world', ',', 'which', 'was', 'first', 'discovered', 'by', 'barnum', 'brown', 'in', '1', '9', '1', '0', 'and', 'rediscovered', 'by', 'dr.', 'phil', 'currie', 'in', '1', '9', '9', '7', '.'], ['it', 'also', 'marked', 'the', 'debut', 'of', 'new', 'vocalist', 'hubert', 'tubbs', '.'], ['the', 'league', 'was', 'founded', 'in', '1', '9', '4', '2', ',', 'although', 'clubs', 'did', 'not', 'take', 'part', 'in', 'european', 'competitions', 'until', '1', '9', '9', '2', ',', 'because', 'the', 'faroe', 'islands', 'football', 'association', 'joined', 'uefa', 'only', 'in', '1', '9', '9', '0', '.'], ['after', 'his', 'death', 'in', '1', '8', '2', '8', ',', 'the', 'hyderabad', 'branch', 'of', 'the', 'talpurs', 'was', 'ruled', 'by', 'mir', 'murad', 'ali', 'khan', 'until', '1', '8', '3', '3', '.'], ['its', 'colloquia', 'and', 'publication', 'brought', 'national', 'attention', 'to', 'both', 'the', 'journal', 'and', 'savannah', 'law', 'school', '.'], ['instead', ',', 'other', 'than', 'the', '5', '5', 'th', 'reserve', 'infantry', 'regiment', ',', 'which', 'was', 'raised', 'by', 'the', '4', 'th', 'guards', 'grenadiers', ',', 'it', 'was', 'primarily', 'made', 'up', 'of', 'non-guards', 'reservists', 'from', 'westphalia', 'and', 'hanover', '.'], ['gug', ',', 'the', 'oldest', 'known', 'ancestor', 'of', 'the', 'family', ',', 'possessed', 'estates', 'in', 'the', 'area', 'of', 'dubica', 'district', 'in', 'lower', 'slavonia', ',', 'and', 'that', 'is', 'why', 'the', 'historians', 'believe', 'that', 'the', 'family', 'originated', 'from', 'there', '.'], ['it', 'is', 'spoken', 'around', '1', '3', '0', 'villages', 'in', 'kichha', 'and', 'kashipur', 'tehsils', ',', 'some', 'in', 'bijnor', 'and', 'pauri', 'garhwal', 'district', '.'], ['these', 'activities', ',', 'especially', 'the', 'space', 'missions', ',', 'when', 'for', 'example', 'a', 'special', 'manned', 'spaceship', 'had', 'to', 'be', 'devoted', 'to', 'an', 'experiment', 'from', 'the', 'smallest', 'soviet', 'republic', ',', 'needed', 'powerful', 'backing', ',', 'both', 'in', 'kremlin', 'corridors', 'and', 'within', 'the', 'top-secret', 'rocket', 'industry', 'establishment', '.'], ['mount', 'hagen', 'has', 'a', 'subtropical', 'highland', 'climate', '(', 'cfb', ')', 'with', 'warm', 'days', ',', 'cool', 'nights', 'and', 'heavy', 'rainfall', 'year-round', '.'], ['eaglerider', 'australia', 'began', 'with', 'one', 'sydney', 'location', 'and', '1', '2', 'harley-davidson', 'motorcycles', 'and', 'has', 'grown', 'to', 'include', 'locations', 'in', 'brisbane', ',', 'cairns', 'and', 'melbourne', '.'], ['there', 'exist', 'perceptions', 'of', 'socioeconomic', 'status', 'and', 'variation', 'of', '``', 'grassroots', \"''\", 'deaf', 'people', 'and', 'middle-class', 'deaf', 'professionals', ',', 'but', 'this', 'has', 'not', 'been', 'studied', 'in', 'a', 'systematic', 'way', '.'], ['he', 'remained', 'steadfast', 'in', 'his', 'commitment', 'to', 'the', 'highest', 'ideals', 'and', 'the', 'noblest', 'standards', 'of', 'his', 'legal', 'education', 'at', 'the', 'college', 'of', 'law', 'of', 'the', 'ateneo', 'de', 'manila', 'university', '.'], ['the', 'plan', 'almost', 'works', ',', 'but', 'kabamaru', 'offers', 'one', 'candy', 'to', 'ran', ',', 'who', 'later', 'faints', 'in', 'the', 'middle', 'of', 'the', 'road', '.'], ['kupper', 'has', 'proposed', 'that', 'the', 'new', 'name', 'for', 'this', 'place', ',', 'limburg', ',', 'was', 'taken', 'from', 'the', 'name', 'of', 'the', 'fort', 'of', 'the', 'ruling', 'salian', 'dynasty', 'who', 'had', 'in', 'about', 'the', 'same', 'period', 'given', 'their', 'possession', 'to', 'become', 'limburg', 'abbey', '.'], ['he', 'made', 'it', 'past', 'the', 'packers', \"'\", 'final', 'roster', 'cutdown', 'before', 'the', '2', '0', '1', '0', 'nfl', 'season', 'as', 'their', 'fourth-string', 'tight', 'end', 'behind', 'jermichael', 'finley', ',', 'donald', 'lee', 'and', 'rookie', 'andrew', 'quarless', '.'], ['fact', 'checkers', 'have', 'widely', 'identified', 'the', 'notion', 'of', 'a', 'white', 'genocide', 'in', 'south', 'africa', 'as', 'a', 'falsehood', 'or', 'myth', '.'], ['more', 'generally', 'still', ',', 'one', 'can', 'define', 'the', 'cartesian', 'product', 'of', 'an', 'indexed', 'family', 'of', 'sets', '.'], ['nietzsche', \"'s\", 'influence', 'on', 'mann', 'runs', 'deep', 'in', 'his', 'work', ',', 'especially', 'in', 'nietzsche', \"'s\", 'views', 'on', 'decay', 'and', 'the', 'proposed', 'fundamental', 'connection', 'between', 'sickness', 'and', 'creativity', '.'], ['the', 'western', 'colorado', 'university', 'mountaineers', 'compete', 'in', 'the', 'rocky', 'mountain', 'athletic', 'conference', '(', 'rmac', ')', 'at', 'the', 'ncaa', 'division', 'ii', 'level', '.'], ['he', 'first', 'began', 'to', 'write', 'short', 'fiction', 'in', '1', '9', '0', '6', 'and', 'his', 'mother', 'was', 'his', 'first', 'reader', 'and', 'critic', '.'], ['the', '1', '8', '1', 'st', 'brigade', 'marching', 'from', 'the', 'south', ',', 'captured', 'the', 'town', 'at', '1', '7', ':', '0', '0', 'along', 'with', '8', '0', '0', 'prisoners', '.'], ['in', 'the', 'music', 'hall', 'there', 'are', 'murals', 'by', 'georg', 'pauli', 'and', 'the', 'decoration', 'in', 'the', 'staff', 'room', 'is', 'by', 'the', 'artist', 'filip', 'månsson', '.'], ['he', 'was', 'later', 'transferred', 'to', 'parkhurst', 'prison', ',', 'where', 'four', 'of', 'the', 'belfast', 'ten', 'were', 'on', 'hunger', 'strike', 'for', 'political', 'status', '.'], ['in', '2', '0', '1', '6', ',', 'yoo', 'starred', 'in', 'the', 'period', 'music', 'drama', '``', 'love', ',', 'lies', \"''\", 'followed', 'by', 'romantic', 'comedy', '``', 'mood', 'of', 'the', 'day', \"''\", '.'], ['in', '2', '0', '0', '8', '``', 'modern', 'life', '?', \"''\"], ['the', 'same', 'day', ',', '``', 'jornal', 'nacional', \"''\", 'tv', 'news', 'program', '(', 'part', 'of', 'globo', 'organizations', ')', 'aired', 'a', 'completed', 'report', 'on', 'the', 'incident', '.'], ['in', 'sweden', 'and', 'denmark', ',', 'there', 'are', 'legally', 'two', 'types', 'of', 'car', 'parking', ',', 'either', 'on', 'streets', 'and', 'roads', ',', 'or', 'on', 'private', 'land', '.'], ['efforts', 'to', 'control', 'inflation', 'rates', 'were', 'set', 'forth', 'by', 'the', 'government', 'through', 'a', 'three-tiered-multiple-exchange-rate', ';', 'this', 'effect', 'has', 'failed', 'to', 'prevent', 'the', 'rise', 'in', 'cost', 'of', 'basic', 'goods', ',', 'simultaneously', 'adding', 'to', 'the', 'public', \"'s\", 'reliance', 'on', 'the', 'iranian', 'black-market', 'exchange', 'rate', 'network', '.'], ['many', 'of', 'the', 'village', \"'s\", 'residents', 'are', 'descendants', 'of', 'greeks', 'who', 'fled', 'from', 'the', 'northern', 'thrace', 'region', 'of', 'bulgaria', 'during', 'the', 'balkan', 'wars', '.'], ['the', 'launch', 'of', 'this', \"'monster\", 'vessel', \"'\", ',', 'as', 'she', 'was', 'then', 'regarded', ',', 'was', 'one', 'of', 'the', 'notable', 'events', 'of', 'the', 'time', '.'], ['the', 'bass', 'boarding', 'house', 'is', 'an', 'historic', 'house', 'on', 'canal', 'street', 'in', 'wilton', ',', 'maine', ',', 'united', 'states', '.'], ['the', 'rabinowitz', 'building', 'was', 'temporally', 'used', 'as', 'the', 'courthouse', '.'], ['shapira', 'was', 'also', 'responsible', 'for', 'developing', 'the', '``', 'quixey', 'challenge', \"''\", ',', 'where', 'contestants', 'were', 'each', 'paid', '$', '1', '0', '0', 'for', 'identifying', 'a', 'simple', 'software', 'bug', 'in', 'under', 'sixty', 'seconds', '.'], ['the', 'show', 'was', 'broadcast', 'live', 'on', 'the', 'radio', 'program', ',', 'opry', 'country', 'classics', 'at', 'the', 'ryman', 'auditorium', ',', 'october', '3', ',', '2', '0', '1', '9', '.'], ['on', 'july', '1', '1', ',', '2', '0', '1', '8', ',', 'king', 'ov', 'hell', 'have', 'left', 'the', 'band', 'due', 'to', 'conflicting', 'views', 'on', 'lyrical', 'concepts', 'of', 'the', 'upcoming', 'album', '.'], ['for', 'the', 'rest', 'of', 'his', 'life', 'he', 'remained', 'a', 'great', 'baron', 'of', 'brittany', ',', 'with', 'no', 'interests', 'in', 'england', '.'], ['the', 'first', 'year', 'that', 'the', 'new', 'school', 'was', 'open', ',', 'it', 'was', 'used', 'for', 'classrooms', 'for', 'some', 'sixth', 'grade', 'students', 'and', 'for', 'the', '9', 'th', 'grade', 'year', 'of', 'the', 'class', 'of', '1', '9', '7', '0', '.'], ['both', 'the', 'nova', 'scotia', 'royal', 'canadian', 'mounted', 'police', 'and', 'the', 'halifax', 'regional', 'police', 'monitor', 'the', 'gang', '.'], ['he', 'returned', 'to', 'the', 'small', 'screen', 'with', 'hit', 'medical', 'drama', '``', 'dr', '.'], ['the', 'interior', 'is', 'decorated', 'with', 'roses', 'to', 'honour', 'saint', 'george', '.'], ['the', 'building', 'is', '5', '0', '0', ',', '0', '0', '0', 'square', 'feet', 'and', '5', '2', 'feet', 'high', '.'], ['in', '2', '0', '0', '3', ',', 'relics', 'from', 'the', 'ship', 'were', 'also', 'displayed', 'at', 'hong', 'kong', \"'s\", 'museum', 'of', 'coastal', 'defense', '.'], ['mujer', '(', 'spanish', ':', '``', 'woman', \"''\", ')', 'is', 'the', 'title', 'of', 'the', 'first', 'album', 'by', 'spanish', 'singer', 'marta', 'sánchez', '.'], ['prapreče', '(', ')', 'is', 'a', 'settlement', 'in', 'the', 'municipality', 'of', 'trbovlje', 'in', 'central', 'slovenia', '.'], ['when', 'waititi', 'attempted', 'to', 'ask', 'corrections', 'minister', 'kelvin', 'davis', 'a', 'supplementary', 'question', ',', 'mallard', 'denied', 'him', 'permission', 'to', 'speak', 'since', 'he', 'was', 'not', 'wearing', 'a', 'tie', '.'], ['staffing', 'ratios', 'were', '1', 'staff', 'person', 'for', '1', '0', 'children', ',', 'and', 'on', 'particularly', 'bad', 'days', 'could', 'worsen', 'to', '1', 'to', '1', '5', '.'], ['gorontaloan', 'people', 'are', 'also', 'famous', 'for', 'their', 'developed', 'musical', 'culture', '.'], ['weeks', 'of', 'hard', 'duty', 'took', 'their', 'toll', 'on', 'abbott', ',', 'who', 'was', 'not', 'fully', 'recovered', 'from', 'the', 'wound', 'he', 'suffered', 'at', 'the', 'battle', 'of', 'glendale', '.'], ['this', 'was', 'a', 'shock', 'to', 'many', 'southerners', 'who', 'had', 'never', 'experienced', 'such', 'cold', 'temperatures', '.'], ['the', 'building', 'was', 'designed', 'by', 'boris', 'barkhin', ',', 'evgeny', 'kireev', ',', 'nataliya', 'orlova', ',', 'valentin', 'strogy', 'and', 'kirill', 'fomin', ',', 'and', 'the', 'cornerstone', 'was', 'laid', 'by', 'yuri', 'gagarin', 'on', '1', '3', 'june', '1', '9', '6', '1', '.'], ['on', '4', 'october', '1', '9', '1', '8', ',', '``', 'escadrille', 'spa', '7', '3', '``', 'was', 'cited', 'in', 'orders', 'as', 'having', 'downed', '3', '0', 'enemy', 'aircraft', 'and', 'an', 'observation', 'balloon', '.'], ['upon', 'arriving', 'to', 'the', 'boundary', '(', 'the', 'name', 'given', 'to', 'the', 'ancient', 'wall', 'protecting', 'the', 'city', ')', ',', 'ivan', 'is', 'accepted', 'into', 'the', 'warrior', 'satt', '.'], ['the', 'implementation', 'took', 'place', 'during', 'the', 'seventh', 'five-year', 'plan', 'and', 'an', 'update', 'has', 'been', 'made', 'during', 'the', 'period', 'of', 'the', 'tenth', ',', 'which', 'lasted', 'from', '2', '0', '0', '1', 'to', '2', '0', '0', '5', '.'], ['he', 'even', 'went', 'as', 'far', 'as', 'devoting', 'one', 'of', 'his', 'viruses', 'to', 'her', '.'], ['not', 'later', 'than', '1', '1', '6', 'it', 'was', 'transferred', 'to', 'raetia', '(', 'germany', 's', 'of', 'danube', ')', '.'], ['in', '1', '9', '5', '9', ',', 'she', 'married', 'hungarian', 'physical', 'education', 'teacher', 'robert', 'biro', 'whom', 'she', 'met', 'in', 'israel', ',', 'and', 'they', 'had', 'two', 'sons', ',', 'daniel', 'and', 'rafael', '.'], ['at', 'first', ',', 'the', 'circassian', 'settlers', 'faced', 'many', 'challenges', '.'], ['he', 'also', 'competed', 'for', 'venezuela', 'at', 'the', '1', '9', '8', '0', 'summer', 'olympics', 'in', 'moscow', ',', 'soviet', 'union', ',', 'where', 'the', 'team', 'was', 'eliminated', 'after', 'the', 'preliminary', 'round', '.'], ['incidentally', ',', 'in', '2', '0', '1', '7', ',', 'barbacena', 'recorded', 'the', 'singles', '``', 'aking', 'tadhana', \"''\", 'and', '``', 'to', 'be', 'yours', ',', 'i', \"'m\", 'destined', \"''\", 'for', 'the', 'original', 'soundtrack', 'of', '``', 'destined', 'to', 'be', 'yours', ',', \"''\", 'which', 'top', 'billed', 'by', 'maine', 'mendoza', 'and', 'alden', 'richards', '.'], ['attitudes', 'very', 'often', 'come', 'in', 'pairs', ',', 'one', 'conscious', 'and', 'the', 'other', 'unconscious', '.'], ['it', 'narrates', 'the', 'tale', 'of', 'radha', 'and', 'krishna', \"'s\", 'romance', 'in', '3', '4', 'songs', '.'], ['southampton', 'water', 'has', 'the', 'benefit', 'of', 'a', 'double', 'high', 'tide', ',', 'with', 'two', 'high', 'tide', 'peaks', ',', 'making', 'the', 'movement', 'of', 'large', 'ships', 'easier', '.'], ['of', 'them', '8', ',', '1', '8', '8', 'rivers', 'are', 'less', 'than', '2', '5', 'kilometers', 'in', 'length', '.'], ['while', 'it', 'was', 'not', 'a', 'major', 'hit', 'it', 'still', 'sold', 'well', 'and', 'one', 'of', 'the', 'album', \"'s\", 'singles', '``', 'el', 'bueno', ',', 'el', 'malo', 'y', 'el', 'feo', \"''\", ',', 'referring', 'to', 'eddie', 'dee', ',', 'himself', 'and', 'tego', 'calderón', 'respectively', '.'], ['compsoctena', 'lycophanes', 'is', 'a', 'moth', 'in', 'the', 'family', 'eriocottidae', '.'], ['the', 'school', 'was', 'established', 'in', '2', '0', '1', '1', 'by', 'the', 'merging', 'of', 'the', 'district', \"'s\", 'two', 'former', 'high', 'schools', '(', 'indian', 'valley', 'high', 'school', 'and', 'lewistown', 'area', ')', '.'], ['he', 'married', 'miss', 'harriette', 'julia', 'hodgskin', 'of', 'cawley', 'priory', ',', 'sussex', ',', 'england', ',', 'in', '1', '8', '6', '7', '.'], ['his', 'photographs', 'of', 'conductors', 'and', 'musicians', 'includes', 'eugene', 'ormandy', ',', 'dmitri', 'mitropolous', ',', 'john', 'browning', ',', 'andré', 'watts', ',', 'alesander', 'brailowsky', ',', 'eugene', 'list', ',', 'lorin', 'maazel', ',', 'andre', 'kostelanez', ',', 'igor', 'markevitch', ',', 'lukas', 'foss', ',', 'bruno', 'walter', ',', 'arturo', 'toscanini', ',', 'julius', 'rudel', ',', 'and', 'leopold', 'stokowski', '.'], ['licking', 'view', 'is', 'an', 'unincorporated', 'community', 'in', 'muskingum', 'county', ',', 'ohio', ',', 'united', 'states', '.'], ['pandoro', 'appeared', 'in', 'remote', 'times', ',', 'the', 'product', 'of', 'the', 'ancient', 'art', 'of', 'breadmaking', ',', 'as', 'the', 'name', ',', '``', 'pan', \"d'oro\", \"''\", '(', 'literally', ':', \"'golden\", 'bread', \"'\", ')', ',', 'suggests', '.'], ['varnum', 'married', 'mary', 'witherspoon', 'dickey', 'in', '1', '8', '9', '9', '.'], ['in', '2', '0', '1', '2', ',', 'perry', 'cast', 'stewart', 'in', 'her', 'first', 'film', ',', 'playing', 'the', 'role', 'of', 'a', 'secretary', 'in', 'perry', \"'s\", 'film', '``', 'good', 'deeds', \"''\", '.'], ['the', 'song', 'was', 'written', 'by', 'serge', 'ramaekers', ',', 'chantal', 'kashala', ',', 'laurent', 'wery', ',', 'christophe', 'baggerman', '.'], ['there', 'exist', 'approximately', '$', '3', '0', '0', 'in', 'additional', 'costs', 'of', 'registration', 'fees', 'and', 'textbooks', ',', 'and', 'an', 'annual', 'student', 'lunch', 'fee', 'of', '$', '4', '5', '0', '.'], ['nonetheless', 'gpus', 'are', 'built', 'around', 'a', 'larger', 'number', 'of', 'longer', 'latency', ',', 'slower', 'threads', ',', 'and', 'designed', 'around', 'texture', 'and', 'framebuffer', 'data', 'paths', ',', 'and', 'poor', 'branching', 'performance', ';', 'this', 'distinguishes', 'them', 'from', 'ppus', 'and', 'cell', 'as', 'being', 'less', 'well', 'optimized', 'for', 'taking', 'over', 'game', 'world', 'simulation', 'tasks', '.'], ['there', 'is', 'both', 'mirth', 'and', 'sadness', 'evoked', 'in', 'this', 'piece', 'of', 'artwork', 'with', 'the', 'different', 'colors', 'of', 'strings', 'and', 'notes', '.'], ['the', 'hamlet', \"'s\", 'unusual', 'toponym', 'is', 'of', 'uncertain', 'origin', '.'], ['the', 'route', 'was', 'closed', 'within', 'a', 'year', ',', 'but', 'taken', 'up', 'again', 'by', 'coast', 'air', 'in', '1', '9', '9', '0', '.'], ['aboriginal', 'stories', 'that', 'they', 'laid', 'eggs', 'were', 'believed', 'by', 'few', 'europeans', '.'], ['in', '1', '9', '6', '2', ',', 'she', 'became', 'warden', 'of', 'canterbury', 'hall', ',', 'a', 'hall', 'of', 'residence', 'of', 'the', 'university', 'of', 'london', '.'], ['he', 'was', 'active', 'in', 'the', 'union', 'of', 'polish', 'patriots', 'in', 'the', 'ussr'], ['but', 'this', 'coorg', 'campaign', 'came', 'to', 'a', 'quick', 'end', 'when', 'the', 'raja', 'sent', 'his', 'diwan', 'apparanda', 'bopu', 'to', 'surrender', 'to', 'the', 'british', 'and', 'lead', 'them', 'from', 'kushalnagar', 'into', 'madikeri', '.'], ['had', 'this', 'detail', 'of', 'his', 'tall', 'tale', 'been', 'true', ',', 'he', 'would', 'have', 'been', 'a', 'citizen', 'of', 'the', 'cherokee', 'nation', ',', 'which', 'he', 'was', 'not', '.'], ['the', 'first', 'edition', 'contained', 'chapter-heading', 'illustrations', 'by', 'phil', 'foglio', ',', 'but', 'those', 'are', 'missing', 'from', 'all', 'other', 'editions', 'except', 'the', '2', '0', '0', '8', 'scrybe', 'press', 'edition', '.'], ['the', 'video', 'ends', 'with', 'horler', 'walking', 'out', 'of', 'the', 'lounge', 'wearing', 'the', 'necklace', '.'], ['in', '1', '7', '0', '6', ',', 'fray', 'francisco', 'de', 'fonseca', 'was', 'designated', 'as', 'the', 'town', 'prior', '.'], ['there', ',', 'she', 'participated', 'in', 'a', 'panel', 'with', 'rex', 'reed', ',', 'where', 'she', 'discussed', 'her', 'experiences', 'with', 'williams', 'and', 'performing', 'in', '``', 'baby', 'doll', \"''\", '.'], ['the', 'programme', \"'s\", 'plot', 'was', 'debated', ',', 'before', 'finally', 'deciding', 'on', 'an', 'island', '(', 'later', 'to', 'be', 'renamed', 'mammoth', 'island', ')', 'on', 'which', 'the', 'inhabitants', 'build', 'outlandish', 'contraptions', 'to', 'make', 'their', 'lives', 'easier', '.'], ['like', 'many', 'sudanese', 'of', 'slave', 'origins', ',', 'latif', 'joined', 'the', 'military', ',', 'as', 'it', 'offered', 'one', 'of', 'the', 'few', 'means', 'of', 'social', 'mobility', '.'], ['as', 'a', 'child', 'she', 'studied', 'music', ',', 'but', 'when', 'she', 'was', '1', '8', 'her', 'interests', 'turned', 'to', 'literature', '.'], ['presidential', 'elections', 'were', 'held', 'in', 'liberia', 'in', 'may', '1', '8', '6', '7', '.'], ['abd', 'allah', 'may', 'not', 'have', 'actually', 'been', 'latif', \"'s\", 'biological', 'uncle', ',', 'but', 'instead', 'the', 'term', 'may', 'have', 'just', 'arisen', 'from', 'abd', 'allah', 'sharing', 'latif', \"'s\", 'mothers', 'dinka', 'and', 'bahr', 'el', 'ghazal', 'roots', '.'], ['after', 'being', 'discharged', 'early', 'from', 'the', 'army', 'due', 'to', 'getting', 'pronounced', '``', 'temporarily', 'unable', 'to', 'serve', \"''\", ',', 'ivandić', 'rejoined', 'the', 'band', 'during', 'mid', '1', '9', '7', '7', '.'], ['paul', 'jackson', ',', 'in', 'a', 'critical', 'study', 'of', 'the', 'anti-islamic', 'english', 'defence', 'league', ',', 'argues', 'that', 'the', 'criteria', 'put', 'forward', 'by', 'the', 'runnymede', 'report', 'for', 'islamophobia', '``', 'can', 'allow', 'for', 'any', 'criticism', 'of', 'muslim', 'societies', 'to', 'be', 'dismissed', '...', \"''\", '.'], ['the', 'cows', 'presented', 'with', 'high', 'white', 'blood', 'cell', 'counts', ',', 'referred', 'to', 'as', 'persistent', 'lymphocytosis', '(', 'pl', ')', 'which', 'is', 'associated', 'with', 'the', 'development', 'of', 'bovine', 'leukemia/lymphosarcoma', '.'], ['current', 'experts', 'in', 'experimental', 'methodology', 'in', 'political', 'science', 'include', 'rebecca', 'morton', 'and', 'donald', 'green', '.'], ['in', 'the', 'elections', ',', 'the', 'ldp', 'won', '2', '9', '1', 'seats', ',', 'a', 'loss', 'of', '3', ',', 'but', 'the', 'komeito', 'gained', '4', 'to', 'win', '3', '5', '.'], ['north', 'of', 'the', 'sr', '7', '9', '5', 'interchange', ',', 'the', 'freeway', 'turns', 'to', 'the', 'northwest', '.'], ['lemoyne-owen', 'college', 'was', 'formed', 'through', 'the', '1', '9', '6', '8', 'merger', 'of', 'lemoyne', 'college', 'and', 'owen', 'college', ',', 'both', 'private', ',', 'historically', 'black', ',', 'church-affiliated', 'colleges', '.'], ['when', 'asked', 'to', 'compare', 'the', 'winner', 'to', 'the', 'eclipse', 'award', 'winner', 'american', 'pharoah', 'baffert', 'said', ',', '``', 'it', \"'s\", 'like', 'asking', 'which', 'kid', 'i', 'love', 'more', '.'], ['it', 'was', 'formed', 'on', 'mobilization', 'in', 'august', '1', '9', '1', '4', 'as', 'part', 'of', 'x', 'reserve', 'corps', 'and', 'dissolved', 'in', '1', '9', '1', '9', 'during', 'the', 'demobilization', 'of', 'the', 'german', 'army', 'after', 'the', 'armistice', '.'], ['it', 'released', 'the', 'subsequent', 'version', 'called', 'microsoft', 'photodraw', '2', '0', '0', '0', 'version', '2', 'to', 'general', 'availability', 'on', 'october', '4', ',', '1', '9', '9', '9', '.'], ['he', 'graduated', 'with', 'second-class', 'honours', 'from', 'brasenose', 'college', ',', 'oxford', ',', 'in', '1', '8', '2', '3', 'with', 'a', 'bachelor', 'of', 'arts', 'in', 'classics', 'and', 'took', 'his', 'master', 'of', 'arts', 'degree', 'in', '1', '8', '2', '8', '.'], ['she', 'also', 'does', 'not', 'seem', 'to', 'be', 'above', 'any', 'form', 'of', 'inappropriate', 'intercourse', ',', 'once', 'saying', 'that', 'she', 'and', 'a', 'boy', 'she', 'had', 'just', 'discovered', 'was', 'her', 'son', 'could', 'still', 'make', 'out', ',', 'or', 'continuing', 'to', 'have', 'sex', 'after', 'being', 'diagnosed', 'with', 'syphilis', ',', 'gonorrhea', ',', 'and', 'crabs', '.'], ['this', 'warrant', 'was', 'continued', 'on', 'his', 'accession', 'to', 'the', 'throne', 'as', 'king', 'edward', 'vii', '.'], ['after', 'world', 'war', 'ii', 'roos', 'founded', 'the', 'automatic', 'coin', 'machine', 'company', 'in', 'kansas', 'city', 'to', 'distribute', 'jukebox', 'machines', '.'], ['having', 'fled', 'into', 'a', 'forest', 'reserve', ',', 'this', 'group', 'is', 'considered', 'isolated', 'indigenous', 'people', ',', 'only', 'allowing', 'outside', 'contact', 'in', '1', '9', '9', '5', 'after', 'many', 'years', 'of', 'attempts', 'by', 'the', 'ethno', 'environmental', 'protection', 'front', '.'], ['the', '4', '3', 'rd', 'army', 'corps', '(', 'military', 'unit', 'number', '1', '6', '4', '6', '0', ')', 'was', 'a', 'corps', 'of', 'the', 'soviet', 'army', 'from', '1', '9', '4', '5', 'to', '1', '9', '8', '9', '.'], ['other', 'issaquah', 'employers', 'include', 'siemens', 'medical', 'solutions', \"'\", 'ultrasound', 'group', ',', 'overtime', 'technologies', ',', 'boehm', \"'s\", 'candies', ',', 'and', 'darigold', '.'], ['hugh', 'saddler', 'has', 'a', 'degree', 'in', 'science', 'from', 'adelaide', 'university', 'and', 'a', 'phd', 'from', 'cambridge', 'university', '.'], ['small', 'medals', ',', 'later', 'mini', 'medals', ',', 'were', 'introduced', 'as', 'a', 'new', 'item', 'to', 'search', 'for', 'and', 'trade', 'for', 'special', 'unique', 'items', 'from', 'a', 'secluded', 'king', '.'], ['the', 'government', 'then', 'enacted', 'an', 'ordinance', 'providing', 'for', 'unbundling', 'in', '2', '0', '0', '3', ',', 'and', 'parliament', 'amended', 'the', 'act', 'in', '2', '0', '0', '6', '.'], ['they', 'were', 'initially', 'built', 'as', 'temporary', 'structures', ',', 'but', 'due', 'to', 'their', 'effective', 'nature', 'they', 'have', 'become', 'wider', ',', 'longer', ',', 'more', 'numerous', 'and', 'more', 'permanent', '.'], ['he', 'was', 'married', 'twice', ',', 'first', 'to', 'mary', 'elizabeth', 'emmett', ',', 'daughter', 'of', 'henry', 'james', 'emmett', 'and', 'mary', 'elizabeth', 'thompson', ',', 'née', 'townsend', ',', 'after', 'the', 'death', 'of', 'his', 'first', 'wife', 'he', 'married', 'francis', 'emily', 'barker', ',', 'daughter', 'of', 'dr.', 'thomas', 'barker', 'and', 'francis', 'alicia', 'née', 'lauder', 'of', 'melbourne', '.'], ['in', 'late', '1', '9', '9', '6', ',', 'it', 'was', 'announced', 'that', 'writer-director', 'jeffrey', 'nachmanoff', 'would', 'adapt', 'the', 'novel', 'for', 'the', 'kennedy/marshall', 'company', 'and', 'touchstone', 'pictures', '.'], ['he', 'was', 'affiliated', 'with', 'the', 'brooklyn-based', 'norwegian', 'turnverein', 'gymnastic', 'society', '.'], ['wanderer', 'instructs', 'leafie', 'to', 'take', 'his', 'unborn', 'child', 'to', 'the', 'everglades', ',', 'telling', 'her', 'she', 'will', 'understand', 'why', 'in', 'time', 'before', 'he', 'leaves', 'her', 'to', 'find', 'the', 'weasel', '.'], ['the', 'front', 'cameras', 'on', 'both', 'are', 'assisted', 'by', 'a', '3', 'd', 'tof', 'camera', ',', 'but', 'the', 'mate', '3', '0', 'pro', 'has', 'a', 'higher', 'resolution', '3', '2', 'mp', 'sensor', 'compared', 'to', 'the', 'mate', '3', '0', \"'s\", '2', '4', 'mp', 'sensor', '.'], ['copley', \"'s\", 'upper', 'west', 'side', 'loft', 'became', 'a', 'meeting', 'place', 'for', 'performers', ',', 'artists', ',', 'curators', ',', 'and', 'composers', 'to', 'work', 'together', 'on', 'the', 'open-ended', 'collective', '.'], ['the', 'storyline', 'takes', 'place', 'during', 'inauguration', 'day', 'for', 'the', 'next', 'u.s.', 'president', ',', 'allison', 'taylor', ',', 'and', 'is', 'shot', 'partially', 'in', 'south', 'africa', '.'], ['gideon', 'haigh', 'of', '``', 'australian', 'book', 'review', \"''\", 'discussed', 'it', 'in', 'december', '2', '0', '0', '0', '.'], ['she', 'also', 'came', 'the', 'presenter', 'of', 'various', 'tv', 'programs', 'such', 'as', '``', 'sport', 'rcti', \"''\", ',', '``', 'bundesliga', \"''\", ',', '``', 'la', 'liga', \"''\", ',', '``', 'celebrity', 'jam', \"''\", 'and', '``', 'good', 'morning', 'on', 'the', 'weekend', \"''\", '.'], ['he', 'was', 'survived', 'by', 'his', 'two', 'daughters', ',', 'six', 'grandchildren', 'and', 'two', 'great-grandchildren', '.'], ['in', 'the', 'following', 'years', ',', 'writers', 'peni', 'trpkovski', ',', 'tome', 'arsovski', 'and', 'ljiljana', 'beleva', 'would', 'write', 'in', 'similar', 'fashion', '.'], ['along', 'with', '``', 't.', 'trachurus', \"''\", ',', 'it', 'is', 'one', 'of', 'two', '``', 'trachurus', \"''\", 'species', 'in', 'the', 'mediterranean', '.'], ['the', 'show', 'first', 'aired', 'in', '2', '0', '1', '2', 'with', 'the', 'first', 'season', 'premiere', 'airing', 'on', '1', '1', 'april', '2', '0', '1', '2', 'and', 'ending', '3', '0', 'may', '2', '0', '1', '2', '.'], ['she', 'removed', 'some', 'of', 'the', 'bricks', 'and', 'watched', 'the', 'proceedings', '.'], ['writing', 'in', 'the', 'bhaskar', 'mailing', 'list', 'archive', ',', 'ruth', 'groff', 'offers', 'this', 'expansion', 'of', 'bhaskar', \"'s\", 'note', 'above', ':'], ['in', 'the', '1', '9', 'th', 'century', ',', 'the', 'philosopher', 'arthur', 'schopenhauer', 'argued', 'that', 'teaching', 'some', 'ideas', 'to', 'children', 'at', 'a', 'young', 'age', 'could', 'foster', 'resistance', 'to', 'doubting', 'those', 'ideas', 'later', 'on', '.'], ['``', 'i', 'do', \"n't\", 'believe', 'in', 'using', 'faith', 'as', 'a', 'marketing', 'tool', ',', 'it', \"'s\", 'not', 'a', 'commodity', '.'], ['in', 'this', 'stanza', 'thorpe', 'has', 'treated', '``', 'brimir', \"''\", '(', 'old', 'norse', '``', 'the', 'bloody', 'moisture', \"''\", ')', 'and', '``', 'blain', \"''\", '(', 'old', 'norse', ',', 'disputed', ')', 'as', 'common', 'nouns', '.'], ['the', 'point', 'was', 'a', 'music', 'venue', 'in', 'cardiff', 'bay', ',', 'cardiff', ',', 'wales', ',', 'located', 'in', 'the', 'deconsecrated', 'grade', 'ii-listed', 'st', 'stephen', \"'s\", 'church', '.'], ['the', 'dabo', 'zellelew', 'cave', 'in', 'aregen', 'at', 'a', 'height', 'of', 'about', '2', '0', '0', '0', 'metres', ',', 'has', 'been', 'explored', 'over', '1', '4', '.', '4', 'm', 'but', 'its', 'distance', 'is', 'claimed', 'to', 'be', 'way', 'longer', '(', ')', '.'], ['he', 'won', 'another', 'gold', 'medal', 'at', 'the', '1', '9', '9', '9', 'tournament', 'of', 'the', 'americas', 'and', 'an', 'olympic', 'gold', 'medal', 'with', 'the', 'usa', 'men', \"'s\", 'national', 'basketball', 'team', 'at', 'the', '2', '0', '0', '0', 'summer', 'olympics', 'with', 'eleven', 'other', 'nba', 'all-stars', '.'], ['the', 'majority', 'of', 'asturias', 'population', 'live', 'within', 'a', 'range', 'from', 'the', 'port', 'of', 'gijón', ',', 'so', 'pollution', 'would', 'be', 'likely', 'to', 'heavily', 'affect', 'the', 'population', '.'], ['among', 'the', 'men', 'who', 'were', 'sexual', 'partners', 'of', 'casati', 'stampa', \"'s\", 'wife', 'was', 'massimo', 'minorenti', ',', 'a', 'young', 'italian', 'involved', 'in', 'far-right', 'circles', 'who', ',', 'after', 'briefly', 'appearing', 'in', 'porn', 'films', ',', 'worked', 'as', 'an', 'escort', 'of', '``', 'older', 'rich', 'women', '.', \"''\"], ['b.', 'r.', 'ambedkar', 'led', 'a', 'protest', 'outside', 'the', 'temple', 'on', '2', 'march', '1', '9', '3', '0', ',', 'in', 'order', 'to', 'allow', 'dalits', 'into', 'the', 'temple', '.'], ['this', 'section', 'of', 'harden', 'has', 'suffered', 'less', 'of', 'the', 'problems', 'which', 'affected', 'areas', 'like', 'the', 'poet', \"'s\", 'estate', ',', 'and', 'the', 'emphasis', 'on', 'improving', 'the', 'housing', 'and', 'environment', 'has', 'been', 'on', 'modernisation', 'rather', 'than', 'demolition', '.'], ['then', 'takes', 'a', 'rubber', 'ball', 'and', 'stuffs', 'it', 'in', 'the', 'dog', \"'s\", 'mouth', ',', 'then', 'punctures', 'the', 'ball', 'with', 'a', 'needle', 'causing', 'the', 'dog', 'to', 'fly', 'away', '.'], ['they', 'are', 'generally', 'very', 'small', 'birds', 'of', 'drab', 'brown', 'or', 'grey', 'appearance', 'found', 'in', 'open', 'country', 'such', 'as', 'grassland', 'or', 'scrub', '.'], ['cbs', 'sportsline.com', 'rated', 'the', 'game', 'as', 'the', 'most', 'meaningful', 'bowl', 'played', 'in', 'the', 'twenty', 'seasons', 'from', '1', '9', '9', '2', 'to', '2', '0', '1', '1', ',', 'in', 'terms', 'of', 'its', 'impact', 'on', 'college', 'football', '.'], ['it', 'has', 'been', 'listed', 'on', 'the', 'national', 'register', 'of', 'historic', 'places', 'since', 'july', '2', ',', '2', '0', '0', '8', '.'], ['a.', 'cipriani', ',', 'a', 'former', 'soldier', 'of', 'the', 'west', 'india', 'regiment', 'and', 'a', 'sympathizer', 'of', 'the', 'racism', 'and', 'tough', 'conditions', 'faced', 'by', 'the', 'working', 'class', 'of', 'trinidad', '.'], ['it', 'moved', 'west', 'and', 'strengthened', 'to', 'a', 'typhoon', 'on', 'june', '2', '0', 'and', 'reached', 'its', 'peak', 'of', '1', '7', '5', 'mph', '(', '2', '8', '0', 'km/h', ')', 'and', 'a', 'minimum', 'central', 'pressure', 'of', '9', '0', '0', 'mbar', 'on', 'june', '2', '2', '.'], ['``', 'ussr-', '1', '``', ',', 'the', 'air', 'forces', 'stratospheric', 'balloon', ',', 'was', 'designed', 'by', 'georgy', 'prokofiev', 'with', 'assistance', 'of', 'vladimir', 'chizhevsky', ',', 'konstantin', 'godunov', 'and', 'the', 'air', 'force', 'academy', 'staff', '.'], ['the', 'faculty', 'of', 'engineering', 'aims', 'not', 'only', 'to', 'impart', 'contemporary', 'engineering', 'and', 'scientific', 'knowledge', 'in', 'the', 'disciplines', 'concerned', ',', 'but', 'also', 'to', 'inculcate', 'creativity', ',', 'research', 'techniques', ',', 'and', 'self', 'development', '.'], ['trans', 'international', 'airlines', 'flight', '8', '6', '3', 'was', 'a', 'ferry', 'flight', 'from', 'john', 'f.', 'kennedy', 'international', 'airport', 'in', 'new', 'york', 'city', 'to', 'washington', 'dulles', 'international', 'airport', '.'], ['experimental', 'rock', 'group', 'pere', 'ubu', 'included', 'a', 'live', 'version', 'of', 'the', 'song', 'on', 'their', '1', '9', '9', '6', 'box', 'set', '``', 'datapanik', 'in', 'year', 'zero', \"''\", '.'], ['it', 'had', 'capital', 'of', '£', '2', '0', '0', '0', '0', 'in', '£', '1', '0', '0', 'shares', '.'], ['in', 'november', '2', '0', '1', '9', ',', 'rees', 'announced', 'that', 'he', 'had', 'decided', 'to', 'end', 'his', 'ten-year', 'stint', 'with', '``', 'giggle', 'and', 'hoot', \"''\", '.'], ['the', 'change', 'of', 'gear', 'ratio', 'did', 'not', ',', 'however', ',', 'increase', 'the', 'design', 'speed', '(', 'misaligned', 'transmission', 'system', '-', 'hollow', 'shaft', 'bearing', 'on', 'slide', 'bearings', ')', ',', 'but', 'decreased', 'the', 'engine', 'speed', ',', 'making', 'it', 'difficult', 'to', 'drive', 'freight', 'trains', 'with', 'this', 'locomotive', '.'], ['she', 'has', 'received', 'two', 'awards', 'from', 'the', 'indian', 'council', 'of', 'medical', 'research', ';', 'the', 'basanti', 'devi', 'amir', 'chand', 'prize', 'in', '2', '0', '1', '1', 'and', 'the', 'chaturvedi', 'ghanshyam', 'das', 'jaigopal', 'memorial', 'award', 'in', '2', '0', '1', '5', '.'], ['adrian', 'phillips', '(', 'born', 'march', '2', '8', ',', '1', '9', '9', '2', ')', 'is', 'an', 'american', 'football', 'safety', 'for', 'the', 'new', 'england', 'patriots', 'of', 'the', 'national', 'football', 'league', '(', 'nfl', ')', '.'], ['some', 'of', 'his', 'slaves', 'who', 'had', 'killed', 'the', '``', 'amir', \"''\", 'were', 'caught', 'and', 'executed', ',', 'while', 'others', 'fled', 'to', 'turkestan', '.'], ['in', 'september', '2', '0', '1', '4', ',', 'dr', 'sambar', 'was', 'appointed', 'senior', 'advisor', 'to', 'the', 'executive', 'board', 'of', 'stoxx', 'ltd.', ',', 'wholly', 'owned', 'by', 'deutsche', 'börse', 'and', 'smi', '(', 'swiss', 'stock', 'exchange', ')', '.'], ['in', '2', '0', '1', '2', ',', 'professor', 'hübner', 'became', 'a', 'member', 'of', 'the', 'international', 'honorary', 'council', 'of', 'the', 'european', 'academy', 'of', 'diplomacy', '.'], ['the', 'rear', 'suspension', 'consisted', 'of', 'twin', 'radius', 'arms', ',', 'reversed', 'lower', 'wishbones', ',', 'single', 'top', 'links', 'and', 'outboard', 'springs', 'and', 'dampers', ',', 'attached', 'to', 'the', 'gearbox', 'and', 'engine', '.'], ['david', 'then', 'granted', 'samshvilde', 'to', 'his', 'loyal', 'commander', ',', 'ivane', 'orbeli', ',', 'in', '1', '1', '2', '3', '.'], ['in', 'april', '1', '8', '5', '8', 'she', 'suffered', 'an', '``', 'hysterical', 'attack', \"''\", 'and', 'died', 'the', 'following', 'day', 'in', 'unclear', 'circumstances', '.'], ['in', 'the', 'fourth', 'game', 'of', 'the', 'series', ',', 'toronto', 'sent', 'todd', 'stottlemyre', 'to', 'the', 'mound', 'while', 'philadelphia', 'countered', 'with', 'tommy', 'greene', '.'], ['brandi', 'chastain', 'recalled', 'hong', \"'s\", 'ability', 'to', 'psych', 'her', 'out', '.'], ['after', 'the', 'war', ',', 'he', 'was', 'awarded', 'a', 'contract', 'to', 'supply', 'pork', 'to', 'fort', 'malden', ';', 'mccormick', 'raised', 'his', 'pigs', 'on', 'pelee', 'island', '.'], ['on', '6', 'may', '2', '0', '1', '2', ',', 'françois', 'hollande', ',', 'the', 'first', 'secretary', 'of', 'the', 'party', 'from', '1', '9', '9', '7', 'to', '2', '0', '0', '8', ',', 'was', 'elected', 'president', 'and', 'the', 'next', 'month', 'the', 'party', 'won', 'a', 'majority', 'in', 'the', '2', '0', '1', '2', 'legislative', 'election', '.'], ['this', 'prize', 'gone', 'on', 'to', 'become', 'one', 'of', 'the', 'richest', 'and', 'most', 'prestigious', 'poetry', 'competitions', 'in', 'the', 'country', ',', 'and', 'is', 'now', 'known', 'as', 'the', 'newcastle', 'poetry', 'prize', '.'], ['the', 'course', 'is', 'paid', ',', 'lasting', '7', '2', 'academic', 'hours', ',', 'taught', 'by', 'teachers', 'of', 'the', 'faculty', 'of', 'law', 'and', 'the', 'faculty', 'of', 'public', 'administration', 'of', 'moscow', 'state', 'university', '.'], ['the', 'show', 'used', 'social', 'networking', 'sites', '(', 'such', 'as', 'facebook', 'and', 'twitter', ')', 'to', 'advertise', 'the', 'show', 'as', 'well', 'as', 'to', 'find', 'contestants', '.'], ['in', '1', '9', '9', '2', ',', 'the', 'crunch', 'moved', 'to', 'the', 'national', 'professional', 'soccer', 'league', '.'], ['the', 'prospect', 'of', 'using', 'wise', 'was', 'proposed', 'by', 'nasa', 'officials', '.'], ['the', 'nominating', 'committee', 'declined', 'to', 'give', 'nominations', 'in', 'the', 'leading', 'actor', 'in', 'a', 'musical', 'and', 'choreography', 'categories', 'because', 'they', 'did', 'not', 'consider', 'any', 'of', 'the', 'performances', 'or', 'choreography', 'outstanding', 'or', 'excellent', '.', \"''\"], ['a', 'draft', 'of', 'american', 'players', 'not', 'contracted', 'to', 'the', 'nba', 'or', 'aba', 'was', 'planned', 'for', 'september', ',', 'with', 'league', 'play', 'set', 'for', 'november', '.'], ['for', 'excellent', 'camera', 'shots', ',', 'the', 'east', 'of', 'the', 'top', 'observatory', 'of', 'yanxiu', 'tidal', 'echo', '(', 'yansiou', 'echoing', 'with', 'tidal', 'cave', ')', '(', ')', 'is', 'the', 'best', 'bet', '.'], ['both', 'the', 'constituency', 'liberal', 'and', 'labour', 'parties', 'actively', 'supported', 'his', 'campaign', '.'], ['the', 'amorite', 'name', ',', '``', 'ila-kabkabu', \"''\", 'appears', 'twice', 'in', 'the', '``', 'kings', 'whose', 'fathers', 'are', 'known', \"''\", '.'], ['this', 'category', 'of', 'bent', 'spring', 'uses', 'the', 'two', 'concepts', 'together', ':', 'parallel', 'and', 'series', 'connection', 'in', 'order', 'to', 'ensure', 'optimal', 'torsional', 'compensation', 'for', 'each', 'value', 'of', 'torque', '.'], ['in', '2', '0', '1', '3', ',', 'a', 'forever', '2', '1', 'and', 'a', 'two-story', 'h', '&', 'amp', ';', 'm', 'opened', 'in', 'the', 'sears', 'wing', '.'], ['chimbote', 'forms', 'a', 'conurbation', 'with', 'nuevo', 'chimbote', 'district', 'to', 'the', 'south', '.'], ['skin-to-skin', 'contact', '(', 'including', 'unabraded', 'skin', ')', 'and', 'indirect', 'contact', 'with', 'contaminated', 'objects', 'such', 'as', 'towels', ',', 'sheets', 'and', 'sports', 'equipment', 'seem', 'to', 'represent', 'the', 'mode', 'of', 'transmission', '.'], ['the', 'village', 'of', 'schmacht', 'that', 'lent', 'the', 'lake', 'its', 'name', 'lies', 'near', 'the', 'western', 'shore', 'of', 'the', 'lake', '.'], ['however', ',', 'he', 'signed', 'a', 'new', 'deal', 'with', 'northampton', ',', 'making', 'his', 'move', 'permanent', 'at', 'franklin', \"'s\", 'gardens', '.'], ['mary', 'dobson', '(', 'born', '1', '9', '1', '2', ')', 'was', 'a', 'british', 'artist', ',', 'who', 'was', 'originally', 'a', 'painter', 'and', 'illustrator', 'but', 'later', 'specialised', 'in', 'producing', 'stained', 'glass', 'and', 'mosaic', 'works', '.'], ['-', 'in', '2', '0', '1', '4', ',', 'with', 'a.', 'ouamane', 'an', 'innovative', 'association', 'of', 'above', 'optimized', 'structures', 'which', 'increases', 'fivefold', 'the', 'discharge', 'of', 'a', 'traditional', 'free', 'flow', 'spillway', '.'], ['in', '1', '8', '9', '1', 'he', 'was', 'appointed', 'president', 'of', 'the', 'société', 'géologique', 'de', 'france', '.'], ['john', 'shaffner', '(', 'born', '1', '9', '5', '2', ')', 'is', 'an', 'emmy', 'award-winning', 'american', 'production', 'designer', 'and', 'art', 'director', '.'], ['basic', 'scrubbers', 'remove', 'sulfur', 'dioxide', ',', 'forming', 'gypsum', 'by', 'reaction', 'with', 'lime', '.'], ['finally', 'the', 'starch', 'and', 'corn', 'flour', 'are', 'added', ',', 'mixing', 'everything', 'using', 'the', 'hands', 'until', 'a', 'thick', 'powder-like', 'preparation', 'results', '.'], ['president', 'harry', 'truman', 'intervened', 'after', 'the', 'resulting', 'public', 'outcry', 'and', 'the', 'medal', 'of', 'honor', 'was', 'awarded', 'to', \"o'callahan\", 'on', 'january', '2', '3', ',', '1', '9', '4', '6', '.'], ['determined', 'to', 'save', 'cookie', ',', 'seth', 'and', 'jed', '(', 'who', 'finally', 'knows', 'everything', 'and', 'resolved', 'the', 'mystery', 'about', 'the', 'curse', ')', 'takes', 'her', 'to', 'a', 'secluded', 'house', 'and', 'installs', 'cctv', 'cameras', 'to', 'monitor', 'her', '.'], ['he', 'is', 'also', 'the', 'only', 'hairstylist', 'to', 'be', 'featured', 'in', 'times', 'and', 'forbes', 'magazine', '.'], ['in', 'general', ',', 'the', 'rinzai', 'school', 'is', 'known', 'for', 'the', 'rigor', 'and', 'severity', 'of', 'its', 'training', 'methods', '.'], ['these', 'rhizomatous', 'perennial', 'plants', 'are', 'noted', 'for', 'their', 'unique', 'bird-attracting', 'flowers', '.'], ['opened', 'in', '1', '8', '9', '3', ',', 'it', 'hosted', 'its', 'last', 'bullfight', 'in', '1', '9', '8', '3', '.'], ['she', 'competed', 'in', 'the', 'women', \"'s\", '1', '0', 'kilometres', 'walk', 'at', 'the', '1', '9', '9', '2', 'summer', 'olympics', '.'], ['they', 'fought', 'under', 'cobb', 'at', 'the', 'battle', 'of', 'fredericksburg', 'in', 'december', ',', 'defending', 'the', 'famous', 'stone', 'wall', 'at', 'the', 'base', 'of', 'marye', \"'s\", 'heights', '.'], ['it', 'bridges', 'the', 'gap', 'between', 'the', 'inside', 'and', 'outside', 'of', 'my', 'mind', '.', \"''\"], ['in', '1', '9', '4', '0', ',', 'a', 'contest', 'was', 'held', 'to', 'choose', 'a', 'mascot', 'for', 'comstock', 'high', 'school', '.'], ['he', 'later', 'served', 'as', 'police', 'commissioner', 'for', 'buffalo', ',', 'new', 'york', 'for', 'about', 'a', 'year', 'and', 'a', 'half', '.'], ['the', 'main', 'subclans', 'among', 'chota', 'rathod', 'are', 'meghwat', ',', 'ghegawat', ',', 'ralsot', ',', 'ramawat', ',', 'khelkhawat', ',', 'manlot', ',', 'harawat', ',', 'tolawat', ',', 'dudhawat', ',', 'sangawat', ',', 'and', 'patolot', '.'], ['müller', 'earned', 'a', 'call-up', 'to', 'the', 'german', 'national', 'team', 'in', '2', '0', '1', '0', '.'], ['the', 'reward', 'for', 'completing', 'the', 'challenge', 'was', 'a', 'selection', 'of', 'salts', 'and', 'spices', 'with', 'which', 'they', 'could', 'used', 'to', 'spice', 'up', 'their', 'meals', '.'], ['4', 'company', ',', 'was', 'part', 'of', 'the', 'defensive', 'force', 'from', 'the', '4', 'th', '(', 'guards', ')', 'brigade', 'covering', 'the', 'retirement', 'of', 'the', '2', 'nd', 'infantry', 'division', 'on', 'the', 'retreat', 'from', 'mons', '.'], ['santa', 'elena', 'is', 'located', 'on', 'the', 'shores', 'of', 'lake', 'petén', 'itzá', 'in', 'the', 'petén', 'department', 'of', 'guatemala', '.'], ['both', '``', 'time', \"''\", 'magazine', 'and', 'the', 'modern', 'library', 'board', 'named', 'it', 'one', 'of', 'the', 'hundred', 'best', 'novels', 'in', 'the', 'english', 'language', '.'], ['however', ',', 'the', 'church', 'records', 'show', 'that', 'the', 'independent', 'cause', 'in', 'tollesbury', 'was', 'already', 'under', 'discussion', 'in', 'the', 'years', 'preceding', '.'], ['in', '1', '4', '7', '5', ',', 'on', 'the', 'same', 'day', 'that', 'edward', \"'s\", 'eldest', 'son', ',', 'the', 'future', 'edward', 'v', ',', 'was', 'invested', 'as', 'prince', 'of', 'wales', ',', 'vaughan', 'was', 'knighted', ',', 'having', 'acted', 'for', 'some', 'years', 'as', 'chamberlain', 'to', 'the', 'young', 'prince', '.'], ['the', 'original', 'mission', 'of', 'the', 'festival', 'was', 'to', 'encourage', 'the', 'growing', 'of', 'flowers', 'and', 'vegetables', 'in', 'home', 'back', 'and', 'fronts', 'yards', ',', 'as', 'well', 'as', 'on', 'vacant', 'lots', '.'], ['hype', 'is', 'a', '1', '9', '8', '0', 'american', 'comedy-drama', 'horror', 'romance', 'film', 'directed', 'by', 'charles', 'b.', 'griffith', ',', 'starring', 'oliver', 'reed', 'and', 'sunny', 'johnson', '.'], ['it', 'remained', 'at', 'the', 'fish', 'docks', 'in', 'rogers', 'city', 'until', '2', '0', '0', '1', ',', 'when', 'the', 'vogelheims', 'donated', 'the', 'fishing', 'vessel', 'to', 'the', 'besser', 'museum', '.'], ['in', 'the', 'late', '1', '9', '8', '0', 's', 'and', 'early', '1', '9', '9', '0', 's', ',', 'walker', 'trained', 'karen', 'national', 'liberation', 'army', 'insurgents', 'on', 'the', 'thailand-myanmar', 'border', ',', 'where', 'he', 'met', 'his', 'wife', 'in', 'a', 'remote', 'northern', 'thai', 'village', '.'], ['the', 'voice', 'israel', '(', 'season', '3', ')', 'is', 'the', 'third', 'season', 'of', 'the', 'reality', 'show', '``', 'the', 'voice', 'israel', \"''\", ',', 'which', 'focuses', 'on', 'finding', 'the', 'next', 'israeli', 'pop', 'star', '.'], ['earl', 'brooks', 'would', 'suddenly', 'have', 'a', 'faulty', 'engine', 'in', 'his', 'vehicle', 'on', 'lap', '1', '2', '0', 'while', 'blackie', 'watt', 'had', 'similar', 'issues', 'on', 'lap', '1', '7', '2', '.'], ['it', 'is', 'not', 'generally', 'considered', 'credible', 'for', 'dates', 'and', 'ages', '.'], ['it', 'studies', 'what', 'motivates', 'employees', ',', 'how', 'to', 'make', 'them', 'work', 'more', 'effectively', ',', 'what', 'influences', 'this', 'behavior', ',', 'and', 'how', 'to', 'use', 'these', 'patterns', 'in', 'order', 'to', 'achieve', 'the', 'company', \"'s\", 'goals', '.'], ['at', 'the', '1', '9', '9', '5', 'atp', 'st.', 'pölten', 'he', 'took', 'third', 'seed', 'gilbert', 'schaller', 'to', 'three', 'sets', 'in', 'the', 'first', 'round', 'and', 'also', 'lost', 'in', 'the', 'opening', 'round', 'of', 'the', 'croatia', 'open', 'in', '2', '0', '0', '1', ',', 'in', 'three', 'sets', 'to', 'óscar', 'serrano', '.'], ['one', 'month', 'later', ',', 'on', '1', '3', 'april', ',', 'the', 'fishing', 'smack', '``', 'ruth', \"''\", 'was', 'boarded', 'and', 'sunk', 'by', '``', 'ub-', '1', '6', '``', ';', '``', 'ruth', \"''\", 'was', 'the', 'final', 'ship', 'sunk', 'by', '``', 'ub-', '1', '6', '``', '.'], ['the', 'album', 'was', 'notable', 'for', 'its', 'inclusion', 'of', 'electronic', 'loops', '.'], ['some', 'of', 'the', 'columns', 'were', 'later', 'returned', 'to', 'aachen', '.'], ['about', 'a', 'year', 'before', 'the', 'incident', ',', 'iizuka', 'had', 'received', 'treatment', 'on', 'his', 'right', 'knee', 'and', 'was', 'advised', 'by', 'his', 'doctor', 'to', 'drive', 'as', 'little', 'as', 'possible', '.'], ['in', '1', '9', '4', '7', ',', 'he', 'shot', 'the', 'documentary', ',', '``', 'thunderbolt', \"''\", ',', 'in', 'color', '.'], ['salad', 'fingers', 'refers', 'to', 'the', 'creature', 'as', '``', 'aunty', 'bainbridge', \"''\", 'and', 'asks', 'for', 'a', 'hug', ',', 'but', 'the', 'creature', 'takes', 'a', 'step', 'back', 'and', 'makes', 'an', 'odd', 'wailing', 'noise', ',', 'as', 'it', 'did', 'in', \"'spoons\", \"'\", '.'], ['the', 'little', 'house', 'was', 'built', 'some', 'time', 'around', '1', '6', '0', '0', 'by', ',', 'a', 'canon', 'of', 'the', 'diocese', 'of', 'constance', 'and', 'descendant', 'of', 'jakob', 'fugger', 'the', 'rich', '.'], ['st', 'kilda', 'had', 'a', 'sub', 'post', 'office', 'by', '1', '9', '0', '0', ';', 'in', 'by', '1', '9', '0', '6', 'steam', 'trawlers', 'brought', 'mail', '``', 'as', 'often', 'as', 'six', 'times', 'a', 'year', \"''\", '.'], ['he', 'is', 'considered', 'to', 'be', 'one', 'of', 'the', 'hardworking', 'actor', 'having', 'years', 'of', 'experience', '.'], ['in', 'the', '2', '0', '1', '5', 'live-action', 'film', ',', 'ella', 'was', 'the', 'character', \"'s\", 'original', 'name', ',', '``', 'cinderella', \"''\", 'was', 'instead', 'a', 'spiteful', 'nickname', 'given', 'by', 'the', 'stepsisters', 'to', 'ella', 'after', 'she', 'slept', 'near', 'the', 'fireplace', 'and', 'subsequently', 'covered', 'by', '``', 'cinder', \"''\", '(', 'ash', ')', '.'], ['on', '1', '8', 'april', '1', '9', '1', '6', ',', 'it', 'was', 'redesignated', ',', 'this', 'time', 'as', 'detachment', 'n', '7', '3', '.'], ['after', 'the', 'war', 'he', 'became', 'deputy', 'head', 'of', 'the', 'naval', 'division', 'at', 'the', 'allied', 'control', 'commission', 'in', 'germany', '.'], ['in', '1', '9', '4', '2', ',', 'he', 'joined', 'the', '2', 'nd', 'proletarian', 'brigade', 'of', 'ynla', '.'], ['it', 'rode', 'on', 'the', 'lower', 'berth', 'under', 'the', 'sylda', 'with', 'spaceway-', '3', '.'], ['the', 'natives', 'lost', 'about', 'of', 'land', 'in', 'the', 'louisiana', 'territory', 'under', 'the', 'leadership', 'of', 'thomas', 'jefferson', ',', 'who', 'championed', 'property', 'rights', '.'], ['there', 'are', 'three', 'electoral', 'wards', 'named', '``', 'ilfracombe', \"''\", '(', 'central', ',', 'east', '&', 'amp', ';', 'west', ')', '.'], ['the', 'residence', 'is', 'similar', 'to', 'several', 'constructed', 'on', 'the', 'southern', 'line', 'and', 'is', 'interesting', 'as', 'it', 'is', 'out', 'of', 'scale', 'with', 'other', 'development', 'on', 'the', 'site', ',', 'although', 'reflecting', 'the', 'expected', 'importance', 'of', 'the', 'freight', 'traffic', 'on', 'the', 'line', '.'], ['it', 'lies', 'on', 'the', 'warta', 'river', ',', 'approximately', 'north', 'of', 'konopnica', ',', 'north-east', 'of', 'wieluń', ',', 'and', 'south-west', 'of', 'the', 'regional', 'capital', 'łódź', '.'], ['collins', 'dso', ',', 'chief', 'mechanical', 'engineer', 'of', 'the', 'south', 'african', 'railways', '(', 'sar', ')', 'in', '1', '9', '2', '5', ',', 'but', 'the', 'class', 'designation', 'was', 'changed', 'to', 'class', 'u', 'when', 'orders', 'for', 'its', 'design', 'and', 'construction', 'were', 'placed', 'with', 'maffei', 'in', 'munich', ',', 'germany', '.'], ['the', 'same', 'month', 'a', 'member', 'was', 'arrested', 'for', 'plotting', 'to', 'assassinate', 'journalists', '.'], ['the', 'main', 'goals', 'of', 'the', 'game', 'consist', 'of', 'developing', 'one', \"'s\", 'own', 'kingdom', ',', 'training', 'army', 'units', ',', 'interacting', 'with', 'other', 'players', '(', 'their', 'kingdoms', ')', ',', 'and', 'gaining', 'black', 'gems', 'in', 'various', 'ways', '.'], ['also', 'numerous', 'studies', 'of', 'various', '``', 'harpullia', \"''\", 'species', \"'\", 'chemical', 'constituents', ',', 'often', 'the', 'saponins', ',', 'have', 'been', 'published', '.'], ['early', 'in', 'the', '1', '8', '8', '0', 's', ',', 'she', 'appeared', 'in', 'halle', 'as', 'klärchen', 'in', 'goethe', \"'s\", '``', 'egmont', \"''\", '.'], ['the', 'bus', 'driver', \"'s\", 'prayer', ',', 'also', 'known', 'as', 'the', 'busman', \"'s\", 'lord', \"'s\", 'prayer', ',', 'is', 'a', 'parody', 'of', 'the', 'lord', \"'s\", 'prayer', 'that', 'takes', 'the', 'bus', 'driver', 'around', 'greater', 'london', '(', 'while', 'avoiding', 'further', 'destinations', ')', '.'], ['it', 'is', 'a', 'cephalometric', 'landmark', 'with', 'significance', 'in', 'biological', 'anthropology', 'and', 'in', 'clinical', 'applications', 'such', 'as', 'oral', 'and', 'maxillofacial', 'surgery', '.'], ['he', 'served', 'throughout', 'the', 'french', 'revolutionary', 'wars', ',', 'in', 'flanders', 'and', 'holland', ',', 'at', 'the', 'conclusion', 'of', 'which', 'he', 'was', 'promoted', 'to', 'lieutenant-colonel', 'of', 'his', 'regiment', ',', 'despite', 'being', 'severely', 'wounded', 'in', '1', '7', '9', '9', '.'], ['the', 'firm', 'lasted', 'until', '1', '9', '3', '4', ',', 'with', 'fuller', \"'s\", 'death', '.'], ['the', 'plan', 'calls', 'for', 'increased', 'job', 'training', ',', 'small-business', 'development', ',', 'and', 'infrastructure', 'investment', ',', 'especially', 'in', 'appalachia', '.'], ['during', 'the', 'reign', 'of', 'kublai', 'khan', 'the', 'territory', 'of', 'the', 'yuan', 'was', 'administered', 'in', '1', '2', 'districts', ',', 'each', 'with', 'a', 'governor', 'and', 'vice-governor', '.'], ['the', '6', 'remaining', 'contestants', 'have', 'to', 'do', 'their', 'action-themed', 'acting', 'skills', 'and', 'stunts', 'for', 'them', 'to', 'appear', 'either', 'on', 'tv', ',', 'movies', 'or', 'even', 'in', 'theater', 'stage', '.'], ['this', 'double', 'line', 'pipeline', 'transports', 'natural', 'gas', 'from', 'russian', 'vyborg', 'via', 'the', 'baltic', 'sea', 'to', 'the', 'german', 'lubmin', '.'], ['in', '1', '9', '8', '9', ',', 'tasmagambetov', 'was', 'elected', 'as', 'the', 'first', 'secretary', 'of', 'the', 'central', 'committee', 'of', 'the', 'komsomol', 'in', 'kazakh', 'ssr', '.'], ['runs', 'on', 'the', 'southern', 'bank', 'of', 'the', 'river', ',', 'and', 'the', 'stillwater', '-', 'westport', 'line', 'railway', 'runs', 'on', 'the', 'northern', 'bank', '.'], ['in', 'august', '2', '0', '1', '7', 'he', 'represented', 'israel', 'at', 'the', '2', '0', '1', '7', 'world', 'championships', 'in', 'athletics', ',', 'coming', 'in', '6', '3', 'rd', 'in', 'the', 'marathon', 'with', 'a', 'time', 'of', '2', ':', '2', '6', ':', '3', '7', '.'], ['the', 'show', 'was', 'influential', 'in', 'launching', 'the', 'careers', 'of', 'the', 'group', \"'s\", 'various', 'artists', '.'], ['later', ',', 'romantsev', 'sold', 'his', 'stock', 'to', 'oil', 'magnate', 'andrei', 'chervichenko', ',', 'who', 'in', '2', '0', '0', '3', 'became', 'the', 'club', 'president', '.'], ['zane', 'smith', 'and', 'tom', 'berte', 'both', 'drove', 'the', 'no', '.'], ['in', '``', 'acanthostega', \"''\", ',', 'which', 'is', 'more', 'derived', ',', 'the', 'large', 'teeth', 'are', 'absent', '.'], ['in', 'that', 'capacity', ',', 'he', 'worked', 'with', 'southern', 'african', 'churches', 'as', 'they', 'adjusted', 'to', 'respond', ',', 'theologically', 'and', 'practically', ',', 'to', 'urbanisation', 'and', 'industrialisation', '.'], ['in', 'addition', ',', 'new', 'employees', 'may', 'be', 'added', 'to', 'an', 'existing', 'unit', 'without', 'the', 'need', 'for', 'either', 'an', 'election', 'or', 'proof', 'of', 'majority', 'support', 'if', 'they', 'share', 'such', 'an', 'overwhelming', 'community', 'of', 'interest', 'with', 'the', 'employees', 'in', 'the', 'existing', 'unit', 'that', 'they', 'could', 'not', 'be', 'represented', 'separately', '.'], ['a', '6', '-week', 'elective', 'attachment', ',', 'where', 'students', 'often', 'experience', 'medicine', 'abroad', ',', 'and', 'a', '6', '-week', 'fy', '1', 'assistantship', 'are', 'undertaken', 'towards', 'the', 'end', 'of', 'the', 'year', 'following', 'the', 'final', 'examinations', '.'], ['paul', 'taylor', '(', 'born', '2', '6', 'july', '1', '9', '5', '9', ')', 'is', 'an', 'australian', 'former', 'professional', 'rugby', 'league', 'footballer', 'who', 'played', 'in', 'the', '1', '9', '8', '0', 's', 'and', '1', '9', '9', '0', 's', '.'], ['a', 'few', 'months', 'later', ',', 'he', 'was', 'cast', 'in', 'the', 'reprise', '!'], ['there', 'are', 'irregular', 'depressions', 'with', 'a', 'halo', 'of', 'high-albedo', 'material', 'in', 'the', 'northeast', 'quadrant', 'of', 'the', 'crater', ',', 'which', 'may', 'be', 'volcanic', 'in', 'nature', '.'], ['the', 'parking', 'brake', 'is', 'the', 'air', 'operated', 'spring', 'brake', 'type', 'where', 'its', 'applied', 'by', 'spring', 'force', 'in', 'the', 'spring', 'brake', 'cylinder', 'and', 'released', 'by', 'compressed', 'air', 'via', 'a', 'hand', 'control', 'valve', '.'], ['eschweilera', 'beebei', 'is', 'a', 'species', 'of', 'woody', 'plant', 'in', 'the', 'family', 'lecythidaceae', '.'], ['elms', 'received', 'a', 'bfa', 'in', 'painting', 'from', 'michigan', 'state', 'university', 'and', 'an', 'mfa', 'from', 'the', 'university', 'of', 'chicago', '.'], ['mr.', 'carlin', 'remains', 'behind', 'to', 'wait', '...', 'and', 'wait', '.'], ['the', 'national', 'anthem', 'of', 'haiti', ',', '``', 'la', 'dessalinienne', \"''\", ',', 'written', 'in', '1', '9', '0', '3', ',', 'is', 'named', 'in', 'his', 'honour', '.'], ['it', 'was', 'renamed', 'university', 'of', 'providence', 'in', 'july', '2', '0', '1', '7', '.'], ['the', 'first', 'written', 'record', 'in', 'the', 'kannada', 'language', 'is', 'traced', 'to', 'emperor', 'ashoka', \"'s\", '``', 'brahmagiri', 'edict', \"''\", 'dated', '2', '0', '0', 'bce', '.'], ['elizabeth', 'is', 'a', 'sweet', 'child', 'but', 'her', 'high', 'spirits', 'and', 'creative', 'imagination', 'often', 'lead', 'her', 'into', 'trouble', 'with', 'the', 'superintendent', ';', 'such', 'as', 'one', 'night', 'when', 'she', 'snuck', 'in', 'her', 'pet', 'horse', 'spunky', 'into', 'the', 'children', \"'s\", 'bedroom', '.'], [')', ';', 'w', 'f', 'swords', 'kc', '(', 'son-in-law', 'of', 'dr', 'william', 'corbin', 'finch', 'jnr', '.'], ['the', 'estate', 'is', 'now', 'a', 'country', 'park', 'and', 'golf', 'course', '.'], ['harris', 'is', 'also', 'a', 'songwriter', ',', 'having', 'penned', 'a', 'top', '2', '0', 'hit', 'on', 'the', '``', 'billboard', 'magazine', \"''\", 'adult', 'contemporary', 'charts', 'in', 'april', '2', '0', '0', '5', 'called', '``', 'sunset', 'blvd', \"''\", '.'], ['the', 'median', 'income', 'for', 'a', 'household', 'in', 'the', 'town', 'was', '$', '3', '3', ',', '8', '3', '9', ',', 'and', 'the', 'median', 'income', 'for', 'a', 'family', 'was', '$', '3', '7', ',', '6', '9', '2', '.'], ['work', 'resumed', 'on', 'this', 'locomotive', 'in', 'early', '2', '0', '1', '2', '.'], ['``', 'micryletta', 'steinegeri', \"''\", 'is', 'a', 'small', 'frog', ',', 'growing', 'to', 'a', 'maximum', 'length', 'of', '.'], ['many', 'new', 'homes', 'and', 'gas', 'stations', 'were', 'also', 'constructed', 'during', 'this', 'time', '.'], ['its', 'filling', 'drowned', 'the', 'former', 'site', 'of', 'celilo', 'falls', 'and', 'the', 'neighboring', 'fishing', 'and', 'trade', 'village', 'sites', '.'], ['the', 'hardenville', 'post', 'office', '(', 'zip', 'code', '6', '5', '6', '6', '6', ')', 'was', 'established', 'in', '1', '9', '2', '1', '.'], ['the', 'moscow', 'school', 'district', '#', '2', '8', '1', 'is', 'a', 'public', 'school', 'district', 'located', 'in', 'moscow', ',', 'latah', 'county', ',', 'idaho', '.'], ['on', 'the', 'other', 'hand', ',', 'morrison', \"'s\", 'chinese', 'dictionary', 'has', 'won', 'critical', 'acclaims', 'from', 'scholars', 'all', 'over', 'the', 'world', 'since', 'the', 'publication', 'of', 'the', 'first', 'volume', 'in', '1', '8', '1', '5', '.'], ['characteristic', 'and', 'unifying', 'features', 'of', 'the', 'natural', 'regions', 'grouped', 'within', 'the', 'saxon-lower', 'lusatian', 'heathland', 'are', 'soils', 'that', 'are', 'poor', 'in', 'nutrients', 'lying', 'on', 'thick', ',', 'unconsolidated', ',', 'ice', 'age', 'sediments', ',', 'with', 'an', 'abundance', 'of', 'groundwater', 'and', 'underground', 'deposits', 'of', 'brown', 'coal', '.'], ['she', 'stood', 'as', 'a', 'candidate', 'for', 'the', '2', '0', '2', '0', 'labour', 'party', 'deputy', 'leadership', 'election', ',', 'ultimately', 'coming', 'second', 'to', 'angela', 'rayner', '.'], ['in', 'october', '1', '9', '8', '2', 'all', 'the', 'cuts', 'from', 'this', 'lp', 'hit', '#', '1', 'on', 'the', 'dance', 'charts', 'for', 'one', 'week', '.'], ['valve', 'issues', 'would', 'take', 'out', 'stick', 'elliott', 'on', 'lap', '7', '8', '.'], ['he', 'and', 'several', 'others', 'were', 'arrested', ',', 'then', 'released', 'without', 'charge', 'due', 'to', 'lack', 'of', 'evidence', '.'], ['amyloid', 'beta', ',', 'which', 'builds', 'up', 'in', 'alzheimer', \"'s\", 'disease', 'brains', ',', 'is', 'one', 'of', 'the', 'proteins', 'that', 'accumulate', 'in', 'amd', ',', 'which', 'is', 'a', 'reason', 'why', 'amd', 'is', 'sometimes', 'called', '``', 'alzheimer', \"'s\", 'of', 'the', 'eye', \"''\", 'or', '``', 'alzheimer', \"'s\", 'of', 'the', 'retina', \"''\", '.'], ['the', 'mgs', 'is', 'an', 'assembly', 'organization', 'based', 'in', 'different', 'assemblies', 'of', 'area', '(', 'comarcas', 'level', ')', ',', 'with', 'ability', 'to', 'set', 'the', 'political', 'strategy', 'of', 'the', 'national', 'organization', '.'], ['though', 'bonaduce', 'was', 'credited', 'as', 'lead', 'singer', 'on', 'all', 'songs', ',', 'he', 'insists', 'that', 'he', 'had', 'a', 'weak', 'voice', 'and', 'that', 'bruce', 'roberts', 'provided', 'most', 'of', 'the', 'vocals', 'on', 'the', 'album', '.'], ['in', 'the', 'time', 'of', 'these', 'elections', ',', 'the', 'party', 'was', 'controlled', 'from', 'behind', 'the', 'scenes', 'by', 'romanian', 'mogul', 'and', 'securitate', 'collaborator', 'dan', 'voiculescu', '.'], ['in', 'the', 'fight', 'he', 'would', 'lose', 'his', 'first', 'fight', 'in', 'seven', 'years', 'by', 'ninth', 'round', 'stoppage', '.'], ['yiddish', 'also', 'has', 'diminutive', 'forms', 'of', 'adjectives', '(', 'all', 'the', 'following', 'examples', 'are', 'given', 'in', 'masculine', 'single', 'form', ')', ':'], [',', 'the', 'genus', 'was', 'not', 'accepted', 'by', 'the', 'paleobiology', 'database', '.'], ['the', 'world', 'economic', 'forum', 'met', 'in', '2', '0', '1', '4', 'to', 'discuss', 'resiliency', 'after', 'natural', 'disasters', '.'], ['aeroponic', 'culture', 'differs', 'from', 'both', 'conventional', 'hydroponics', ',', 'aquaponics', ',', 'and', 'in-vitro', '(', 'plant', 'tissue', 'culture', ')', 'growing', '.'], ['some', 'versions', 'of', 'ms-dos', 'codice_', '9', 'support', 'the', 'undocumented', 'internal', 'codice_', '1', '0', 'command', 'which', 'can', 'display', 'the', '``', 'true', 'name', \"''\", 'of', 'a', 'file', ',', 'i.e', '.'], ['the', 'symbol', 'of', 'the', 'firm', 'after', 'the', 'merger', 'was', '``', 'xom', \"''\", '.'], ['on', '9', 'october', '2', '0', '1', '9', ',', 'charlie', 'savage', ',', 'of', '``', 'the', 'new', 'york', 'times', \"''\", ',', 'reported', 'that', 'kotey', 'and', 'el', 'shafee', 'elsheikh', 'were', 'in', 'the', 'process', 'of', 'being', 'transferred', 'from', 'kurdish', 'territories', 'to', 'custody', 'of', 'the', 'usa', '.'], ['drivers', 'such', 'as', 'leilani', 'münter', 'and', 'chandler', 'smith', 'drove', 'the', 'no', '.'], ['adjustments', 'to', 'the', 'goods', 'review', 'list', 'would', 'be', 'considered', 'and', 'decided', 'upon', 'within', '3', '0', 'days', 'of', 'the', 'adoption', 'of', 'the', 'current', 'resolution', '.'], ['he', 'also', 'painted', 'the', 'mays', 'for', '1', '6', '5', '2', '(', '``', 'saint', 'peter', 'reviving', 'the', 'widow', 'tabitha', \"''\", ',', 'now', 'in', 'the', 'musée', 'des', 'beaux-arts', \"d'arras\", ')', 'and', '1', '6', '5', '5', '(', '``', 'the', 'whipping', 'of', 'saints', 'paul', 'and', 'silas', \"''\", ')', '.'], ['the', 'regiment', 'sailed', 'for', 'oregon', 'on', '1', '4', 'june', '1', '8', '9', '9', ',', 'and', 'was', 'among', 'the', 'first', 'infantry', 'units', 'to', 'return', 'to', 'the', 'united', 'states', 'from', 'the', 'philippines', '.'], ['he', 'led', 'better', 'off', 'out', \"'s\", 'campaign', 'for', 'britain', 'to', 'leave', 'the', 'european', 'union', ',', 'liaising', 'with', 'the', 'official', 'campaign', '(', 'vote', 'leave', ')', 'as', 'well', 'as', 'with', 'leave.eu', 'and', 'grassroots', 'out', '.'], ['conservative', 'mennonites', 'believe', 'in', 'a', 'three-office', 'ministry', 'working', 'together', 'in', 'what', 'is', 'called', 'a', 'plural', 'ministry', '.'], ['dollar', 'lake', 'is', 'off', 'the', 'trail', ',', 'about', 'southwest', 'of', 'the', 'pass', '.'], ['other', 'tablets', 'and', 'versions', 'were', 'used', 'to', 'bring', 'the', 'myth', 'to', 'its', 'present', 'form', 'with', 'a', 'composite', 'text', 'by', 'miguel', 'civil', 'produced', 'in', '1', '9', '8', '9', 'and', 'latest', 'translations', 'by', 'thorkild', 'jacobsen', 'in', '1', '9', '8', '7', 'and', 'joachim', 'krecher', 'in', '1', '9', '9', '6', '.'], ['the', 'giants', 'added', 'him', 'to', 'their', '4', '0', '-man', 'roster', 'after', 'the', '2', '0', '1', '7', 'season', '.'], ['the', 'most', 'commonly', 'violated', 'restrictions', 'in', 'affirmative', 'covenants', 'are', 'tangible', 'net', 'worth', ',', 'working', 'capital/short', 'term', 'liquidity', ',', 'and', 'debt', 'service', 'coverage', '.'], ['brimir', 'and', 'blain', 'are', 'usually', 'held', 'to', 'be', 'proper', 'names', 'that', 'refer', 'to', 'ymir', ',', 'as', 'in', 'bellows', \"'s\", 'translation', '.'], ['the', 'opening', 'of', 'the', 'school', 'marked', 'the', 'beginning', 'of', 'secondary', 'state', 'education', 'in', 'victoria', '.'], ['morrison', 'made', 'four', 'appearances', 'for', 'various', 'junior', 'u.s.', 'national', 'teams', '.'], ['mario', 'manningham', 'caught', 'seven', 'passes', 'for', '1', '1', '3', 'yards', 'and', 'two', 'touchdowns', ',', 'giving', 'him', 'five', 'in', 'the', 'past', 'two', 'weeks', '.'], ['they', 'released', 'an', 'extended', 'play', ',', '``', 'kat', '&', 'amp', ';', 'jared', \"''\", '(', '2', '0', '1', '7', ')', ',', 'with', 'natives', 'music', 'group', '.'], ['many', 'holidays', 'were', 'spent', 'camping', 'in', 'welcome', 'valley', 'close', 'to', 'the', 'north-coast', 'border', 'of', 'devon', 'and', 'cornwall', '.'], ['the', 'latter', 'descendants', 'include', 'relict', 'populations', 'such', 'as', 'the', 'eile', ',', 'aweer', ',', 'the', 'wa-ribi', ',', 'and', 'especially', 'the', 'wa-boni', '.'], ['she', 'attended', 'robert', 'clack', 'technical', 'school', 'in', 'becontree', 'heath', ',', 'dagenham', '.'], ['``', 'forever', \"''\", 'is', 'a', 'song', 'written', 'by', 'buddy', 'killen', ',', 'which', 'was', 'released', 'by', 'the', 'little', 'dippers', 'and', 'billy', 'walker', 'in', 'january', '1', '9', '6', '0', ','], ['koit', '(', '9', '6', '.', '5', 'fm', ')', 'is', 'a', 'commercial', 'adult', 'contemporary', 'radio', 'station', 'licensed', 'to', 'san', 'francisco', ',', 'california', '.'], ['there', 'are', 'significant', 'gender', 'differences', 'in', 'the', 'relationship', 'styles', 'among', 'children', 'which', 'particularly', 'begin', 'to', 'emerge', 'after', 'early', 'childhood', 'and', 'at', 'the', 'onset', 'of', 'middle', 'childhood', 'around', 'age', '6', 'and', 'grow', 'more', 'prevalent', 'with', 'age', '.'], ['these', 'problems', 'have', 'led', 'many', 'humanitarian', 'demining', 'organisations', 'to', 'abandon', 'the', 'use', 'of', 'flails', '.'], ['calling', 'himself', 'blackout', ',', 'his', 'body', 'was', 'now', 'flushed', 'with', 'power', ',', 'becoming', 'a', 'surface', 'of', 'control', 'of', 'the', 'darkforce', 'dimension', '.'], ['german', 'playwright', 'carl', 'zuckmayer', 'in', '1', '9', '6', '6', 'used', 'the', 'song', \"'s\", 'line', '``', 'als', 'wär', \"'s\", 'ein', 'stück', 'von', 'mir', \"''\", 'as', 'the', 'title', 'for', 'his', 'autobiography', '(', 'english', 'title', ':', '``', 'a', 'part', 'of', 'myself', \"''\", ')', '.'], ['out', 'of', 'the', '4', '3', 'race', 'car', 'drivers', 'on', 'the', 'grid', ',', 'there', 'were', '4', '1', 'american-born', 'driers', 'and', 'two', 'foreigners', '(', 'marcos', 'ambrose', 'from', 'australia', 'and', 'juan', 'pablo', 'montoya', 'from', 'colombia', ')', '.'], ['from', '1', '9', '0', '7', 'to', '1', '9', '1', '4', ',', 'the', 'company', 'manufactured', 'the', 'marathon', 'automobile', '.'], ['he', 'was', 'the', 'first', 'assamese', 'muslim', 'to', 'graduate', 'from', 'sandhurst', '.'], ['this', 'axis', 'later', 'became', 'the', 'rainier', 'vista', 'of', 'the', 'university', 'of', 'washington', 'campus', '.'], ['the', 'design', 'of', 'the', 'central', 'section', 'matches', 'the', 'design', 'of', 'the', 'adjacent', 'passenger', 'terminal', 'building', '.'], ['the', 'third', 'species', ',', '``', 's.', 'wittii', \"''\", ',', 'is', 'an', 'epiphyte', 'with', 'flattened', 'stems', 'that', 'cling', 'to', 'the', 'trunks', 'of', 'trees', 'using', 'aerial', 'roots', '.'], ['he', 'was', 'archdeacon', 'of', 'killaloe', 'from', '1', '7', '1', '4', 'to', '1', '7', '1', '5', '.'], ['the', 'police', 'was', 'dispatched', 'to', 'the', 'site', 'after', 'receiving', 'a', 'report', 'that', 'he', 'was', 'half-naked', ',', 'intoxicated', 'and', 'swearing', 'in', 'a', 'karaoke', 'room', ',', 'but', 'jung', 'was', 'not', 'arrested', '.'], ['on', 'november', '2', '1', ',', '1', '8', '6', '4', 'mary', 'married', 'dr.', 'adino', 'brackett', 'hall', ',', 'a', 'prominent', 'boston', 'physician', 'who', 'was', 'also', 'an', 'active', 'member', 'of', 'the', 'boston', 'school', 'board', 'and', 'councilor', 'in', 'the', 'massachusetts', 'medical', 'society', '.'], ['powerscourt', 'golf', 'club', ',', 'located', 'at', 'the', 'powerscourt', 'estate', 'in', 'county', 'wicklow', ',', 'ireland', ',', 'is', 'home', 'to', 'two', 'par', '7', '2', ',', '1', '8', '-hole', 'courses', ':', 'the', 'east', ',', 'which', 'was', 'created', 'first', ',', 'and', 'the', 'west', '.'], ['thus', '2', '2', '4', '2', 'years', 'may', 'be', 'counted', 'from', 'adam', 'to', 'the', 'flood', '.'], ['she', 'was', 'part', 'of', 'the', 'whitney', \"'s\", '3', 'rd', 'biennial', 'exhibition', 'of', 'contemporary', 'american', 'painting', 'in', '1', '9', '3', '6', '.'], ['despite', 'the', 'initial', 'issues', 'on', 'set', ',', 'the', 'two', 'otherwise', 'had', 'a', 'positive', 'relationship', 'and', 'worked', 'together', 'on', 'later', 'films', 'including', '``', 'track', 'of', 'the', 'cat', \"''\", 'and', '``', 'blood', 'alley', \"''\", '.'], ['there', 'is', 'also', 'an', 'art', 'exhibition', ',', 'and', 'raffle', 'raising', 'money', 'for', 'charitable', 'causes', '.'], ['the', 'malawi-tanzania', 'border', 'is', 'an', 'international', 'boundary', 'that', 'separates', 'malawi', 'and', 'tanzania', 'in', 'east', 'africa', '.'], ['along', 'the', 'trails', ',', 'oak', ',', 'elm', ',', 'sycamore', 'and', 'black', 'walnut', 'trees', 'provide', 'habitat', 'for', 'a', 'variety', 'of', 'birds', 'and', 'other', 'wildlife', '.'], ['the', 'tribal', 'council', 'is', 'responsible', 'for', 'the', 'general', 'welfare', 'of', 'tribal', 'members', 'and', 'the', 'management', 'of', 'day-to-day', 'tribal', 'business', '.'], ['determining', 'the', 'extent', 'of', 'ilc', 'plasticity', 'during', 'disease', 'could', 'be', 'useful', 'to', 'allow', 'us', 'to', 'prevent', 'or', 'enhance', 'their', 'conversion', 'into', 'other', 'subsets', 'that', 'may', 'be', 'contributing', 'to', 'the', 'pathogenicity', '.'], ['studies', 'report', 'various', 'improvements', 'in', 'general', 'quality', 'of', 'sleep', 'metrics', ',', 'as', 'well', 'as', 'benefits', 'in', 'circadian', 'rhythm', 'disorders', '.'], ['(', '1', '9', '3', '8', ')', 'and', '``', 'i', \"'ll\", 'be', 'seeing', 'you', \"''\", ',', 'which', 'was', 'written', 'in', '1', '9', '3', '8', ',', 'but', 'became', 'a', 'hit', 'in', '1', '9', '4', '3', 'especially', 'among', 'the', 'families', 'of', 'servicemen', 'sent', 'overseas', '.'], ['the', 'next', 'day', ',', 'crown', 'attorney', 'kelly', 'began', 'his', 'cross-examination', 'of', 'aravena', '.'], ['no', 'one', 'was', 'injured', ',', 'and', 'not', 'a', 'shot', 'was', 'fired', '.'], ['king', 'recruits', 'upper', 'class', 'british', 'raf', 'officer', 'flight', 'lieutenant', 'peter', 'marlowe', 'to', 'act', 'as', 'a', 'translator', '.'], ['within', 'a', 'few', 'hours', 'of', 'the', 'incident', ',', 'inspector', 'jagdish', 'pandey', 'of', 'the', 'police', 'control', 'room', 'of', 'delhi', 'police', 'traced', 'the', 'car', 'by', 'trailing', 'the', 'oil', 'leak', 'to', 'the', 'grade', 'from', 'the', 'spot', 'of', 'the', 'accident', '.'], ['he', 'built', 'his', 'home', 'in', '1', '8', '0', '5', 'along', 'alum', 'creek', 'in', 'berkshire', 'township', '.'], ['heather', 'along', 'with', 'the', 'telepaths', 'that', 'compose', 'the', 'overmind', 'are', 'later', 'confronted', 'and', 'killed', 'by', 'the', 'shadow', 'king', '.'], ['the', 'hotel', ',', 'operated', 'by', 'kempinski', 'hotels', ',', 'opened', 'for', 'business', 'in', 'may', '2', '0', '1', '7', 'and', 'celebrated', 'its', 'grand', 'opening', 'in', 'june', '2', '0', '1', '7', '.'], ['carell', 'later', 'stated', 'that', 'he', 'had', 'only', 'seen', 'about', 'half', 'of', 'the', 'original', 'pilot', 'episode', 'of', 'the', 'british', 'series', 'before', 'he', 'auditioned', '.'], ['nieminen', 'also', 'finished', 'sixth', 'in', 'the', 'nordic', 'combined', 'event', 'at', 'the', '1', '9', '5', '4', 'fis', 'nordic', 'world', 'ski', 'championships', 'in', 'falun', '.'], ['the', 'bishop', \"'s\", 'house', '(', '``', 'bischofshaus', \"''\", ')', 'from', 'that', 'period', 'remains', 'in', 'a', 'grave', '.'], ['she', 'is', 'allergic', 'to', 'both', 'dogs', 'and', 'cats', ',', 'as', 'well', 'as', '``', 'anything', 'warm', 'and', 'adorable', \"''\", '.'], ['in', 'a', 'genre', 'full', 'of', 'tragic', 'heroines', ',', 'he', \"'s\", '``', 'neighbours', \"''\", \"'\", 'tragic', 'hero', '.'], ['the', 'inhabitants', 'of', 'the', 'valley', 'are', 'of', 'polynesian', 'descent', 'and', 'live', 'in', 'large', 'villages', 'under', 'a', 'chieftain', 'political', 'system', '.'], ['it', 'stood', 'adjacent', 'to', 'another', 'manor', 'known', 'as', 'the', 'luckmann', 'castle', '(', ')', '.'], ['the', 'max', 'planck', 'institute', 'for', 'solar', 'system', 'research', 'is', 'leading', 'the', 'development', '.'], ['bluebird', 'boxes', ',', 'which', 'are', 'monitored', 'by', 'volunteers', ',', 'rise', 'above', 'the', 'meadow', 'grasses', '.'], ['girls', 'are', 'also', 'more', 'prosocial', 'in', 'conflict', 'situations', 'and', 'are', 'better', 'at', 'collaborative', 'work', 'and', 'play', 'than', 'boys', '.'], ['fleeing', 'with', 'his', 'brother', 'tommy', 'and', 'his', 'twelve-year-old', 'daughter', 'sarah', ',', 'they', 'got', 'involved', 'in', 'a', 'firefight', 'with', 'a', 'soldier', ',', 'and', 'sarah', 'was', 'mortally', 'wounded', 'and', 'died', 'in', 'his', 'arms', ',', 'leaving', 'him', 'traumatized', '.'], ['carol', 'rhodes', 'sibley', '(', '1', '9', '0', '2', '-', '1', '9', '8', '6', ')', ',', '``', 'nee', \"''\", 'rhodes', ',', 'was', 'a', 'prominent', 'civic', 'activist', 'in', 'berkeley', ',', 'california', '.'], ['bardsley', 'later', 'served', 'as', 'head', 'tennis', 'professional', 'at', 'shaughnessy', 'golf', '&', 'amp', ';', 'country', 'club', 'from', '1', '9', '7', '8', 'until', '1', '9', '9', '0', 'and', 'volunteer', 'director', 'of', 'tournament', 'operations', 'for', 'the', 'itf', 'federation', 'cup', 'held', 'in', 'west', 'vancouver', 'in', '1', '9', '8', '7', '.'], ['the', 'temple', 'was', 'established', 'in', '1', '9', '0', '6', 'by', 'hu', 'atong', '(', '胡阿統', ')', ',', 'though', 'the', 'building', \"'s\", 'construction', 'was', 'not', 'completed', 'until', '1', '9', '1', '7', '.'], ['twenty-three', '(', '2', '8', '%', ')', 'of', 'the', 'species', 'are', 'found', 'only', 'in', 'the', 'sierra', 'nevada', 'de', 'santa', 'marta', ',', 'an', 'isolated', 'mountain', 'range', 'in', 'northern', 'colombia', 'with', 'a', 'very', 'high', 'degree', 'of', 'endemism', '.'], ['one', 'of', 'the', 'major', 'implications', 'of', 'mmps', 'in', 'cancer', 'progression', 'is', 'their', 'role', 'in', 'ecm', 'degradation', ',', 'which', 'allows', 'cancer', 'cells', 'to', 'migrate', 'out', 'of', 'the', 'primary', 'tumor', 'to', 'form', 'metastases', '.'], ['although', 'poland', 'emerged', 'victorious', 'in', 'the', 'final', 'battle', 'at', 'trzciana', ',', 'sigismund', \"'s\", 'exhausted', 'camp', 'accepted', 'a', 'peace', 'offer', '.'], ['during', 'the', 'dictatorship', 'of', 'juan', 'vicente', 'gómez', ',', 'in', '1', '9', '1', '9', ',', 'a', 'disarmament', 'law', 'was', 'decreed', ',', 'ordering', 'every', 'weapon', 'owner', 'to', 'give', 'them', 'away', 'to', 'the', 'authorities', ';', 'the', 'only', 'exceptions', 'were', 'machetes', 'and', 'hunting', 'shotguns', '.'], ['marcuse', 'had', 'little', 'direct', 'concern', 'with', 'freud', 'while', 'in', 'frankfurt', ',', 'but', 'devoted', 'more', 'attention', 'to', 'psychoanalysis', 'in', 'the', '1', '9', '5', '0', 's', ',', 'and', 'in', '1', '9', '5', '3', 'suggested', 'to', 'brown', 'that', 'he', 'should', 'read', 'freud', '.'], ['at', 'mine', 'number', 'six', 'in', 'vintondale', ',', 'in', 'the', 'coal', 'mining', 'region', 'of', 'south', 'central', 'pennsylvania', ',', 'artists', ',', 'landscape', 'architects', ',', 'scientists', 'and', 'historians', 'collaborated', 'on', 'ways', 'to', 'treat', 'amd', 'while', 'interpreting', 'the', 'coal', 'mining', 'history', 'and', 'the', 'passive', 'treatment', 'processes', '.'], ['in', '1', '9', '7', '1', 'a', 'fire', 'destroyed', 'the', 'main', 'school', 'building', '.'], ['the', 'park', 'also', 'hosts', 'music', 'kutcheris', 'and', 'civic', 'forums', ',', 'on', 'the', 'weekends', 'all', 'year', 'round', '.'], ['``', 'wiffle', 'ball', \"''\", 'was', 'developed', 'by', 'skyworks', 'technologies', 'and', 'was', 'published', 'by', 'destination', 'software', 'inc.', 'in', 'north', 'america', ',', 'and', 'by', 'zoo', 'digital', 'publishing', 'in', 'europe', '.'], ['as', 'such', ',', 'the', 'firm', 'had', 'metal-working', 'and', 'power', 'plant', 'experience', 'which', 'could', 'easily', 'be', 'transferred', 'into', 'the', 'then-new', 'and', 'rapidly', 'expanding', 'automobile', 'industry', '.'], ['according', 'to', 'him', ',', 'this', 'was', 'the', 'moment', 'when', 'he', 'decided', 'to', 'become', 'a', 'violinist', '.'], ['these', 'areas', 'are', 'now', 'under', 'the', 'administrative', 'control', 'of', 'kohlu', ',', 'sibi', ',', 'bolan', ',', 'barkhan', ',', 'nasirabad', ',', 'and', 'dera', 'bugti', 'districts', 'of', 'the', 'baluchistan', 'province', '.'], ['in', '2', '0', '9', 'bc', ',', 'a', 'group', 'of', 'conscripts', 'who', 'were', 'delayed', 'in', 'their', 'march', 'to', 'the', 'north', 'by', 'flooding', 'in', 'central', 'china', 'and', 'faced', 'penalty', 'by', 'death', ',', 'rose', 'in', 'rebellion', 'under', 'the', 'leadership', 'of', 'chen', 'sheng', 'and', 'wu', 'guang', '.'], [\"'s\", 'legislated', 'carbon', 'emissions', 'reduction', 'target', 'of', '3', '3', '%', 'by', '2', '0', '2', '0', '.'], ['some', 'species', 'live', 'on', 'the', 'sediment', 'surface', 'or', 'reside', 'in', 'burrows', ',', 'while', 'others', 'live', 'on', 'aerial', 'roots', 'and', 'lower', 'tree', 'trunks', 'or', 'prop', 'roots', '.'], ['‡', '-', 'the', 'watkins', 'glen', 'six', 'hours', 'was', 'a', 'round', 'of', 'the', 'world', 'championship', 'for', 'makes', '.'], ['he', 'uses', 'it', 'as', 'a', 'medium', 'for', 'communicating', 'messages', 'of', 'peace', ',', 'love', 'and', 'unity', '.'], ['the', 'james', 'm.', 'and', 'cathleen', 'd.', 'stone', 'center', 'on', 'socio-economic', 'inequality', 'was', 'launched', 'on', 'september', '1', ',', '2', '0', '1', '6', '.'], ['child', 'compiled', 'the', 'american', 'anti-slavery', 'almanac', 'for', '1', '8', '4', '3', ',', 'which', 'includes', 'a', 'page', 'on', 'the', 'national', 'anti-slavery', 'standard', ',', 'a', 'publication', 'she', 'also', 'edited', '.'], ['in', 'addition', ',', 'yap', 'supported', 'the', '$', '1', '5', '-million', ',', 'three-year', 'livesmart', 'bc', 'for', 'small', 'businesses', 'across', 'b.c', '.'], ['gilmour', 'followed', 'the', 'example', 'of', 'jesus', 'in', 'healing', 'the', 'sick', 'as', 'far', 'as', 'he', 'was', 'able', ';', 'and', 'the', 'few', 'simple', 'remedies', 'he', 'found', 'a', 'very', 'great', 'help', 'to', 'him', 'in', 'his', 'work', '.'], ['the', 'song', 'was', 'speculated', 'to', 'be', 'the', 'lead', 'single', 'from', 'gambino', \"'s\", 'then-upcoming', 'fourth', 'studio', 'album', ',', 'but', 'was', 'eventually', 'not', 'included', '.'], ['in', '1', '9', '1', '0', ',', 'he', 'became', 'president', 'of', 'hillcress', 'collieries', 'ltd.', ',', 'and', 'he', 'was', 'a', 'director', 'of', 'tuckett', 'tobacco', 'and', 'the', 'british', '&', 'amp', ';', 'colonial', 'press', 'service', '.'], ['the', 'temple', 'formed', 'a', 'pivotal', 'role', 'in', 'the', 'dalit', 'movement', 'in', 'india', '.'], ['in', '2', '0', '0', '2', ',', 'a', '2', '4', '-year-old', 'man', 'was', 'run', 'over', 'by', 'a', 'metro', 'train', 'approaching', 'the', 'station', '.'], ['the', 'team', 'soon', 'find', 'out', ',', 'however', ',', 'that', 'their', 'new', 'coach', 'requires', 'just', 'as', 'much', 'self-assurance', 'as', 'they', 'do', '.'], ['the', 'basilica', 'was', 'inaugurated', 'in', '1', '8', '7', '2', ',', 'after', 'fourteen', 'years', 'of', 'construction', '.'], ['the', 'cane', 'was', 'thus', 'less', 'functional', 'and', 'rather', 'for', 'the', 'sake', 'of', 'fashion', '.'], ['it', 'was', 'not', 'built', 'in', 'a', 'series', 'either', ',', 'and', 'the', 'prototype', 'was', 'used', 'as', 'a', 'courier', 'plane', 'by', 'the', 'ministry', 'of', 'foreign', 'affairs', 'during', '1', '9', '4', '7', ',', 'then', 'by', 'the', 'factory', '.'], ['when', 'it', 'returns', 'in', 'the', 'third', 'section', ',', 'it', 'is', 'transposed', 'to', 'c', '.'], ['as', 'the', 'roman', 'catholic', 'church', 'strengthened', 'as', 'an', 'institution', ',', 'the', 'franciscan', 'and', 'dominican', 'preaching', 'orders', 'were', 'founded', ',', 'and', 'there', 'was', 'a', 'rise', 'of', 'competitive', 'middle-class', ',', 'town-dwelling', 'christians', '.'], ['bob', 'derrington', 'and', 'eddie', 'macdonald', 'made', 'their', 'final', 'nascar', 'appearances', '.'], ['both', 'menem', 'and', 'cavallo', 'tried', 'to', 'be', 'recognized', 'as', 'the', 'designer', 'of', 'the', 'convertibility', 'plan', '.'], ['latjoor', 'was', 'a', 'state', 'in', 'south', 'sudan', 'that', 'existed', 'between', '2', 'october', '2', '0', '1', '5', 'and', '2', '2', 'february', '2', '0', '2', '0', '.'], ['``', 'we', 'have', 'your', 'name', 'on', 'iraqi', 'documents', ',', 'some', 'prepared', 'before', 'the', 'fall', 'of', 'saddam', ',', 'some', 'after', ',', 'that', 'identify', 'you', 'as', 'one', 'of', 'the', 'allocation', 'holders', ',', \"''\", 'senator', 'coleman', 'accused', 'mp', 'galloway', 'in', 'may', '2', '0', '0', '5', '.'], ['she', 'later', 'became', 'one', 'of', 'the', 'first', 'foreign', 'artists', 'to', 'visit', 'dhaka', ',', 'performing', 'at', 'an', 'open-air', 'concert', 'in', 'paltan', 'maidan', 'in', 'dhaka', 'to', 'celebrate', 'the', 'first', 'ekushey', 'february', 'after', 'bangladeshi', 'independence', 'in', '1', '9', '7', '1', '.'], ['the', 'family', 'oyster', 'farm', 'and', 'business', ',', 'les', 'huitres', 'cadoret', ',', 'had', 'been', 'founded', 'in', '1', '8', '8', '0', ',', 'and', 'cadoret', 'began', 'working', 'there', '.'], ['while', 'most', 'countries', 'are', 'working', '``', 'within', 'the', 'framework', \"''\", 'of', 'a', 'constitution', ',', 'the', 'european', 'union', 'must', 'decide', 'how', 'strongly', 'it', 'will', 'commit', 'to', 'a', 'future', 'of', '``', 'constitutionalization', \"''\", '.'], ['declaring', 'himself', 'the', 'king', 'of', 'all', 'robots', ',', 'he', 'seeks', 'to', 'wipe', 'out', 'humanity', 'and', 'establish', 'a', 'world', 'populated', 'only', 'by', 'robots', '.'], ['ishaan', 'is', 'a', 'former', 'senior', 'editor', 'at', '``', 'time', \"''\", 'magazine', ',', 'and', 'now', 'writes', 'on', 'foreign', 'affairs', 'for', '``', 'the', 'washington', 'post', \"''\", '.'], ['he', 'supported', 'yuan', 'shikai', \"'s\", 'monarchy', 'in', '1', '9', '1', '5', 'and', 'zhang', 'zuolin', \"'s\", 'effort', 'to', 'seize', 'manchuria', '.'], ['in', '1', '9', '5', '7', 'brian', 'shenton', 'was', 'timed', 'as', 'having', 'set', 'the', 'english', '1', '0', '0', 'yards', 'native', 'record', 'in', 'a', 'time', 'of', '9', '.', '7', 'seconds', '.'], ['``', 'i', 'do', \"n't\", 'think', 'it', 'added', 'anything', 'to', 'the', 'debate', 'on', 'the', 'uk', \"'s\", 'energy', 'future', '.', \"''\"], ['maba', 'is', 'a', 'white', 'solid', ',', 'although', 'commercial', 'samples', 'are', 'often', 'colored', '.'], ['on', 'september', '8', ',', '1', '9', '7', '0', ',', 'the', 'douglas', 'dc-', '8', '(', 'registration', 'n', '4', '8', '6', '3', 't', ')', 'crashed', 'during', 'take-off', 'from', 'jfk', \"'s\", 'runway', '1', '3', 'r', '.'], ['the', 'draw', 'of', 'the', 'tournament', 'was', 'held', 'on', '1', '3', 'july', '2', '0', '2', '0', '.'], ['in', '1', '9', '9', '0', ',', 'the', 'chief', 'financial', 'officers', '(', 'cfo', ')', 'act', 'called', 'for', 'reforms', 'that', 'brought', 'the', 'goal', 'of', 'accountability', 'to', 'the', 'forefront', '.'], ['her', 'initial', 'enquiries', 'to', 'find', 'out', 'the', 'whereabouts', 'of', 'nandha', 'prove', 'difficult', ',', 'but', 'she', 'continues', '.'], ['land', 'for', 'both', 'projects', 'along', 'jamaica', 'bay', 'in', 'the', 'area', 'was', 'acquired', 'via', 'eminent', 'domain', 'in', '1', '9', '3', '8', ',', 'and', 'shore', 'parkway', 'opened', 'in', '1', '9', '4', '0', ',', 'with', 'an', 'interchange', 'to', 'the', 'south', 'end', 'of', 'pennsylvania', 'avenue', '.'], ['milliken', 'worked', 'for', 'his', 'family', 'business', ',', 'the', 'j.w', '.'], ['due', 'to', 'his', 'many', 'discoveries', ',', 'karl', 'reinmuth', 'submitted', 'a', 'large', 'list', 'of', '6', '6', 'newly', 'named', 'asteroids', 'in', 'the', 'early', '1', '9', '3', '0', 's', '.'], ['the', 'surviving', 'rim', 'and', 'the', 'remaining', 'interior', 'floor', 'are', 'relatively', 'indistinct', ',', 'possibly', 'due', 'to', 'deposits', 'of', 'ejecta', 'from', 'the', 'mare', 'orientale', 'impact', 'basin', 'to', 'the', 'northeast', '.'], ['according', 'to', 'the', 'von', 'braun', 'center', 'website', ',', 'elvis', 'presley', 'appeared', 'may', '3', '0', 'through', 'june', '1', ',', '1', '9', '7', '5', 'for', 'an', 'unprecedented', 'five', 'performances', '.'], ['he', 'also', 'is', 'a', 'winthrop', 'professor', 'at', 'the', 'university', 'of', 'western', 'australia', 'and', 'an', 'infectious', 'diseases', 'consultant', 'at', 'the', 'perth', 'children', \"'s\", 'hospital', '(', 'formerly', 'known', 'as', 'princess', 'margaret', 'hospital', 'for', 'children', ')', '.'], ['b.', 's.', 'haldane', 'in', '1', '9', '4', '8', ',', 'who', 'suggested', 'that', 'thalassaemia', 'might', 'provide', 'similar', 'protection', '.'], ['despite', 'efforts', 'to', 'right', 'the', 'economy', ',', 'hoover', 'was', 'himself', 'defeated', 'in', 'a', 'landslide', 'in', '1', '9', '3', '2', 'to', 'franklin', 'd.', 'roosevelt', '.'], ['she', 'was', 'a', 'descendant', 'of', 'john', 'of', 'gaunt', \"'s\", 'eldest', 'son', ',', 'john', 'beaufort', '.'], ['on', 'december', '1', '7', ',', '2', '0', '1', '5', 'johnson', 'recorded', 'a', '4', '4', '-save', 'shutout', ',', 'breaking', 'the', 'sabres', 'franchise', 'record', 'for', 'most', 'saves', 'in', 'a', 'regular', 'season', 'shutout', ',', 'which', 'had', 'been', 'held', 'by', 'ryan', 'miller', '.'], ['together', 'with', 'his', 'manager', 'paul', 'brinks', ',', 'he', 'decided', 'that', 'making', 'a', 'movie', 'would', 'be', 'good', 'for', 'his', 'career', '.'], ['the', 'joy', 'education', 'society', ',', 'jabalpur', ',', 'runs', 'it', '.'], ['pausanias', 'also', 'describes', 'a', 'group', 'sculpture', 'in', 'the', 'sanctuary', 'of', 'hippodamia', 'at', 'olympia', 'donated', 'by', 'the', 'phliasians', '.'], ['synopsys', ',', 'inc.', ',', 'a', 'provider', 'of', 'software', 'and', 'ip', 'for', 'semiconductor', 'design', ',', 'verification', 'and', 'manufacturing', 'has', 'partnered', 'with', 'nits', 'mirza', 'to', 'establish', 'one', 'of', 'its', 'five', 'regional', 'centres', 'of', 'excellence', 'in', 'india', 'at', 'nits', 'mirza', 'for', 'its', 'vlsi', 'design', 'curriculum', '.'], ['2', '6', '2', '5', '(', 'county', 'of', 'cornwall', ')', 'sqn', 'royal', 'auxiliary', 'air', 'force', '(', 'rauxaf', ')', 'was', 'disbanded', '.'], ['in', '1', '9', '3', '8', 'irimescu', 'was', 'appointed', 'minister', 'to', 'the', 'united', 'states', '.'], ['arcus', 'senilis', '(', 'as', ')', ',', 'also', 'known', 'as', 'gerontoxon', ',', 'arcus', 'lipoides', ',', 'arcus', 'cornae', ',', 'coroneal', 'arcus', ',', 'arcus', 'adiposus', ',', 'or', 'arcus', 'cornealis', ',', 'is', 'a', 'deposition', 'of', 'phospholipid', 'and', 'cholesterol', 'in', 'the', 'peripheral', 'cornea', 'that', 'forms', 'a', 'white', ',', 'light', 'gray', ',', 'or', 'bluish', 'ring', '.'], ['henry', 'julian', ',', 'better', 'known', 'by', 'his', 'stage', 'name', 'julian', 'whiterose', ',', 'was', 'a', 'pioneering', 'calypso', 'performing', 'and', 'recording', 'artist', '.'], ['the', 'communists', 'continued', 'their', 'attack', 'eastward', 'from', \"dong'an\", '(', '东安', ')', 'toward', 'tiger', 'forest', '(', 'hulin', ',', '虎林', ')', 'and', 'rao', '(', '饶', ')', 'river', 'regions', ',', 'annihilating', 'local', 'bandits', '.'], ['after', 'experiencing', 'success', 'as', 'part', 'of', 'the', 'madchester', 'music', 'scene', ',', 'a', 'new', 'version', 'was', 'released', 'in', 'march', '1', '9', '9', '1', 'that', 'was', 'shorter', 'and', 'with', 'new', 'lyrics', '.'], ['one', 'of', 'the', 'first', 'changes', 'to', 'economic', 'policy', 'from', 'the', 'macri', 'administration', ',', 'just', 'seven', 'days', 'after', 'macri', 'had', 'taken', 'office', ',', 'was', 'to', 'remove', 'the', 'currency', 'controls', 'that', 'had', 'been', 'in', 'place', 'for', 'four', 'consecutive', 'years', '.'], ['with', 'that', 'of', 'gertrude', ',', 'the', 'body', 'of', 'mechtildis', 'most', 'likely', 'still', 'reposes', 'at', 'old', 'helfta', ',', 'though', 'the', 'exact', 'spot', 'is', 'unknown', '.'], ['it', 'is', 'awarded', 'for', 'merits', 'in', 'the', 'fields', 'of', 'public', ',', 'economic', ',', 'cultural', ',', 'educational', ',', 'sports', 'and', 'humanitarian', 'activities', '.'], ['his', 'latest', 'book', ',', '``', 'wild', 'horse', 'country', \"''\", ',', 'traces', 'the', 'culture', 'and', 'history', 'that', 'created', 'modern', 'wild', 'horse', 'management', '.'], ['uematsu', 'is', 'a', '1', '9', '8', '2', 'master', 'of', 'divinity', 'graduate', 'of', 'the', 'episcopal', 'theological', 'seminary', 'of', 'the', 'southwest', 'in', 'austin', ',', 'texas', '.'], ['she', 'will', 'operate', 'out', 'of', 'portsmouth', ',', 'england', ',', 'to', 'santander', ',', 'spain', 'and', 'cherbourg', ',', 'france', '.'], ['drepanulatrix', 'secundaria', 'is', 'a', 'species', 'of', 'moth', 'in', 'the', 'family', 'geometridae', 'first', 'described', 'by', 'william', 'barnes', 'and', 'james', 'halliday', 'mcdunnough', 'in', '1', '9', '1', '6', '.'], ['between', '1', '9', '7', '9', 'and', '1', '9', '8', '8', ',', 'bfc', 'dynamo', 'won', 'ten', 'consecutive', 'east', 'german', 'league', 'titles', ',', 'with', 'popular', 'allegations', 'of', 'sporting', 'misconduct', 'helping', 'to', 'fuel', 'the', 'rivalry', ',', 'and', 'clashes', 'between', 'both', 'sets', 'of', 'fans', 'occurred', '.'], ['for', 'much', 'of', 'the', 'line', \"'s\", 'length', ',', 'its', 'formation', 'is', 'quite', 'obvious', 'and', 'includes', 'embankments', 'and', 'cuttings', '.'], ['despite', 'press', 'reports', 'of', 'interest', 'from', 'arsenal', ',', 'and', 'the', 'offer', 'of', 'a', 'player-manager', 'role', 'by', 'southend', 'united', ',', 'robson', 'left', 'fulham', 'in', '1', '9', '6', '7', 'and', 'accepted', 'a', 'three-year', 'deal', 'with', 'canada', \"'s\", 'vancouver', 'royals', '.'], ['in', 'late', '1', '9', '4', '2', ',', 'buha', 'was', 'publicly', 'commended', 'by', 'tito', '.'], ['two', 'high', 'schools', 'in', 'garmen', 'and', 'ribnovo', 'and', 'six', 'primary', 'schools', 'ognyanovo', ',', 'debren', ',', 'gorno', 'dryanovo', ',', 'dolno', 'dryanovo', ',', 'hvostyane', 'and', 'dabnitsa', ',', 'all', 'of', 'them', 'municipal', ',', 'form', 'the', 'educational', 'base', 'of', 'the', 'community', '.'], ['while', 'in', 'shock', 'of', 'what', 'comes', 'to', 'light', ',', 'sebastian', 'plans', 'another', 'romantic', 'date', ',', 'which', 'ends', 'with', 'a', 'magical', 'dance', 'for', 'the', 'lovebirds', '.'], ['seeing', 'an', 'animal', 'controller', 'from', 'the', 'zoo', 'pursuing', 'her', ',', 'she', 'spots', 'some', 'black', 'and', 'white', 'paint', 'nearby', 'and', 'paints', 'herself', 'to', 'look', 'like', 'a', 'skunk', ',', 'scaring', 'the', 'animal', 'controller', 'off', '.'], ['the', 'whorls', 'in', 'the', 'protoconch', 'number', 'at', 'least', 'two', '.'], ['the', 'elias', 'bassalygo', 'bound', 'is', 'a', 'mathematical', 'limit', 'used', 'in', 'coding', 'theory', 'for', 'error', 'correction', 'during', 'data', 'transmission', 'or', 'communications', '.'], ['in', 'january', '2', '0', '1', '1', ',', 'truecar', 'released', 'clearbook', ',', 'a', 'used', 'vehicle', 'index', 'that', 'analyzes', 'the', 'used', 'car', 'market', 'in', 'the', 'same', 'way', 'truecar', 'did', 'for', 'new', 'cars', '.'], ['in', '1', '9', '4', '8', ',', 'the', 'm', '2', '6', 'e', '2', 'version', 'was', 'developed', 'with', 'a', 'new', 'powerplant', '.'], ['scylla', 'olivacea', ',', 'commonly', 'known', 'as', 'the', 'orange', 'mud', 'crab', ',', 'is', 'a', 'commercially', 'important', 'species', 'of', 'mangrove', 'crab', 'in', 'the', 'genus', '``', 'scylla', \"''\", '.'], ['before', 'and', 'after', 'that', 'time', 'span', ',', 'winners', 'have', 'been', 'announced', 'by', '``', 'billboard', \"''\", ',', 'both', 'in', 'the', 'press', 'and', 'as', 'part', 'of', 'their', 'year-end', 'issue', '.'], ['five', 'seconds', 'after', 'liftoff', ',', 'the', 'left', 'engine', 'fire', 'alarm', 'sounded', 'in', 'the', 'cockpit', '.'], ['in', '1', '9', '9', '1', ',', 'penrith', 'changed', 'their', 'jersey', 'design', 'from', 'brown', 'and', 'white', 'to', 'the', 'now', 'famous', 'licorice', 'all', 'sorts', 'design', '.'], ['this', 'is', 'typically', 'done', 'with', 'a', '2', '4', '-hour', 'urine', 'collection', '.'], ['the', 'ability', 'of', 'tie-', '1', 'to', 'eat', 'electricity', 'can', 'be', 'used', 'to', 'manufacture', 'batteries', ',', 'but', 'its', 'efficiency', 'as', 'a', 'fuel', 'source', 'remains', 'questionable', '.'], ['in', '1', '9', '9', '4', ',', 'for', 'the', 'first', 'time', 'since', '1', '9', '8', '0', ',', 'de', 'cesaris', 'started', 'the', 'season', 'without', 'a', 'formula', 'one', 'drive', '.'], ['it', 'was', 'created', 'in', 'january', '2', '0', '1', '3', 'by', 'the', 'merger', 'of', 'the', 'former', '``', 'communauté', \"d'agglomération\", 'du', 'grand', 'alès', \"''\", 'with', '3', 'former', '``', 'communautés', 'de', 'communes', \"''\", 'and', '5', 'other', 'communes', '.'], ['2', '0', '(', 'cambie', ')', 'rd', 'near', 'the', 'main', 'settlement', 'on', 'the', 'northwestern', 'tip', 'of', 'lulu', 'island', 'at', 'north', 'arm', '.'], ['it', 'is', 'considered', 'a', 'cultural', 'district', 'because', 'of', 'its', 'close', 'proximity', 'to', 'higher', 'educational', 'campuses', 'and', 'art', 'destinations', '.'], ['fagui', 'is', 'a', 'commune', 'in', 'the', 'cercle', 'of', 'koutiala', 'in', 'the', 'sikasso', 'region', 'of', 'southern', 'mali', '.'], ['she', 'reprised', 'the', 'role', 'in', 'an', 'episode', 'of', '``', 'omnibus', \"''\", 'on', 'television', ',', 'conducted', 'by', 'werner', 'torkanowsky', '(', '1', '9', '5', '9', ')', '.'], ['if', 'transactions', 'are', 'always', 'carried', 'out', 'on-line', '(', 'e.g.', ',', 'atms', ')', 'or', 'always', 'off-line', ',', 'this', 'step', 'can', 'be', 'skipped', '.'], ['on', '1', 'july', '1', '9', '4', '6', ',', 'in', 'the', 'region', 'of', 'youtou', '(', '尤头', ')', 'bridge', 'and', 'toudaihezi', '(', '头道河子', ')', ',', 'the', 'surviving', 'bandits', 'headed', 'by', 'xie', 'wendong', '(', '谢文东', ')', 'was', 'once', 'again', 'defeated', '.'], ['husein', 'related', 'the', 'pivotal', 'meeting', ',', '``', 'he', 'asked', 'me', 'a', 'question', 'that', 'was', 'a', 'turning', 'point', '.'], ['in', 'dimensions', '6', 'to', '8', 'there', 'are', '3', 'exceptional', 'coxeter', 'groups', ';', 'one', 'uniform', 'polytope', 'from', 'each', 'dimension', 'represents', 'the', 'roots', 'of', 'the', 'exceptional', 'lie', 'groups', 'en', '.'], ['interleukin', '1', 'receptor', ',', 'type', 'ii', '(', 'il-', '1', 'r', '2', ')', 'also', 'known', 'as', 'cd', '1', '2', '1', 'b', '(', 'cluster', 'of', 'differentiation', '1', '2', '1', 'b', ')', 'is', 'an', 'interleukin', 'receptor', '.'], ['he', 'scored', 'his', 'first', 'and', 'second', 'goals', 'on', '1', '2', 'june', '2', '0', '1', '2', ',', 'in', 'a', 'world', 'cup', 'qualifying', 'match', 'against', 'lebanon', '.'], ['the', 'book', 'is', 'widely', 'cited', 'as', 'a', 'reference', 'for', 'western', 'women', 'artists', 'and', 'has', 'a', 'disclaimer', 'that', 'it', 'is', 'biased', 'towards', 'western', 'artists', 'because', 'of', 'the', 'constraints', 'imposed', 'on', 'the', 'selection', '.'], ['the', 'darkingung', 'people', 'occupied', 'large', 'areas', 'inland', 'west', 'towards', 'rylstone', ',', 'and', 'north', 'to', 'cessnock', 'and', 'wollombi', '.'], ['lindwall', 'joined', 'tallon', 'and', 'the', 'pair', 'survived', 'to', 'the', 'close', 'of', 'play', '.'], ['approximately', '3', '3', '%', 'is', 'used', 'on', 'alfalfa', ',', '3', '1', '%', 'in', 'forestry', ',', '2', '9', '%', 'in', 'industrial', 'areas', ',', '4', '%', 'on', 'rangeland', 'and', 'pastures', ',', 'and', '&', 'lt', ';', '2', '%', 'on', 'sugarcane', '.'], ['rejoining', 'chunxiu', ',', 'the', 'boundary', 'stays', 'with', 'it', 'for', 'another', 'to', 'beijing', 'workers', \"'\", 'stadium', ',', 'where', 'it', 'becomes', 'workers', \"'\", 'stadium', 'west', 'road', ',', 'with', 'workers', 'indoor', 'arena', 'on', 'the', 'east', 'side', '.'], ['(', 'receipt', 'is', 'an', 'archaic', 'rural', 'form', 'of', 'recipe', '.', ')'], ['he', 'won', 'many', 'writing', 'awards', 'and', 'was', 'inducted', 'into', '1', '2', 'halls', 'of', 'fame', '.'], ['this', 'was', 'replaced', 'in', '2', '0', '1', '3', 'by', 'the', '1', '8', '7', '5', 'organ', 'by', 'hunter', 'originally', 'in', 'christ', 'church', ',', 'brixton', 'road', ',', 'then', 'queen', \"'s\", 'hall', 'methodist', 'church', ',', 'derby', '.'], ['karyakin', 'hums', 'his', 'friend', \"'s\", 'favorite', 'song', '-', '``', 'the', 'bullet', 'whizzed', 'and', 'aha', '!', '..', '``', '.'], ['the', 'council', 'is', 'governed', 'by', 'the', 'tribal', 'constitution', 'and', 'by-laws', ',', 'which', 'were', 'originally', 'ratified', 'in', '1', '9', '3', '4', 'under', 'the', 'indian', 'reorganization', 'act', '.'], ['this', 'kleptoparasitic', \"'cuckoo\", \"'\", 'bee', 'does', 'not', 'build', 'its', 'own', 'nests', 'but', 'uses', 'nests', 'of', '``', 'tetrapedia', \"''\", 'as', 'a', 'resource', 'for', 'its', 'brood', '.'], ['he', 'told', 'john', ',', 'who', 'took', 'the', 'box', 'away', '.'], ['kim', 'jae-gyu', ',', 'the', 'director', 'of', 'the', 'kcia', 'and', 'the', 'president', \"'s\", 'security', 'chief', ',', 'was', 'responsible', 'for', 'the', 'assassination', '.'], ['also', 'at', 'the', 'same', 'time', 'that', 'the', 'endocardial', 'tubes', 'are', 'forming', ',', 'vasculogenesis', '(', 'the', 'development', 'of', 'the', 'circulatory', 'system', ')', 'has', 'begun', '.'], ['she', 'and', 'walter', 'annenberg', ',', 'then', 'editor', 'of', '``', 'the', 'philadelphia', 'inquirer', \"''\", ',', 'met', 'in', '1', '9', '5', '0', 'at', 'a', 'party', 'in', 'florida', 'and', 'the', 'two', 'were', 'married', 'the', 'following', 'year', '.'], ['he', 'was', 'ordained', 'a', 'priest', 'of', 'the', 'diocese', 'of', 'saluzzo', 'on', '2', '5', 'june', '1', '9', '6', '7', '.'], ['one', 'of', 'six', 'children', ',', 'her', 'mother', 'died', 'in', 'childbirth', 'when', 'ólafía', 'einarsdóttir', 'was', 'five', ';', 'soon', 'after', 'her', 'father', 'became', 'blind', '.'], ['after', 'the', 'spirit', 'of', 'the', 'house', 'threatens', 'them', 'again', ',', 'marge', 'loses', 'her', 'patience', 'and', 'confronts', 'the', 'house', ',', 'demanding', 'that', 'it', 'treat', 'them', 'with', 'respect', 'during', 'their', 'stay', '.'], ['both', 'were', 'described', 'as', 'being', 'upper-echelon', 'drug', 'suppliers', 'motivated', 'by', 'greed', '.'], ['she', 'is', 'scheduled', 'to', 'perform', 'on', 'the', 'grand', 'ole', 'opry', 'live', 'from', 'the', 'ryman', 'on', 'november', '3', '0', ',', '2', '0', '1', '9', '.'], ['dalibor', 'ðurđić', '(', 'born', '7', 'june', '1', '9', '7', '5', ')', 'is', 'a', 'serbian', 'bobsledder', '.'], ['tisza', 'opposed', 'the', 'expansion', 'of', 'the', 'empire', 'on', 'the', 'balkan', '(', 'see', 'bosnian', 'crisis', 'in', '1', '9', '0', '8', ')', ',', 'because', '``', 'the', 'dual', 'monarchy', 'already', 'had', 'too', 'many', 'slavs', \"''\", ',', 'which', 'would', 'further', 'threaten', 'the', 'integrity', 'of', 'the', 'dual', 'monarchy', '.'], ['the', 'remaining', 'form', 'factor', 'formula_', '1', '4', 'would', ',', 'if', 'non', 'zero', ',', 'be', 'the', 'anapole', 'moment', '.'], ['between', '1', '9', '9', '0', 'and', '1', '9', '9', '5', 'deportations', 'had', 'increased', 'to', 'about', 'an', 'average', 'of', '4', '0', ',', '0', '0', '0', 'a', 'year', '.'], ['according', 'to', 'tulku', 'urgyen', 'rinpoche', 'one', 'could', 'ask', 'him', 'for', 'clarification', 'about', 'some', 'point', ',', 'in', 'any', 'of', 'the', 'termas', 'from', 'any', 'of', 'the', 'numerous', 'lineages', ',', 'and', 'he', 'always', 'had', 'an', 'answer', '.'], ['in', 'new', 'zealand', 'it', 'has', 'been', 'found', 'as', 'far', 'south', 'as', 'jackson', 'bay', 'on', 'the', 'west', 'coast', 'of', 'south', 'island', 'but', 'it', 'is', 'only', 'really', 'common', 'around', 'the', 'north', 'island', '.'], ['in', 'september', '2', '0', '2', '0', ',', 'miller', 'returned', 'to', 'the', 'role', '.'], ['with', 'sumoylation', 'having', 'a', 'role', 'in', 'various', 'cellular', 'processes', 'like', 'nuclear-cytosolic', 'transport', 'and', 'transcriptional', 'regulation', ',', 'it', 'is', 'expected', 'cxorf', '6', '6', 'is', 'modified', 'by', 'a', 'sumo', 'protein', 'post-translation', '.'], ['mae', 'yao', '(', ')', 'is', 'a', '``', 'tambon', \"''\", '(', 'subdistrict', ')', 'of', 'mueang', 'chiang', 'rai', 'district', ',', 'in', 'chiang', 'rai', 'province', ',', 'thailand', '.'], ['latin', 'hymns', 'such', 'as', '``', 'veni', 'redemptor', 'gentium', \"''\", ',', 'written', 'by', 'ambrose', ',', 'archbishop', 'of', 'milan', ',', 'were', 'austere', 'statements', 'of', 'the', 'theological', 'doctrine', 'of', 'the', 'incarnation', 'in', 'opposition', 'to', 'arianism', '.'], ['billy', 'dukes', 'of', '``', 'taste', 'of', 'country', \"''\", 'gave', 'the', 'song', 'three', 'and', 'a', 'half', 'stars', 'out', 'of', 'five', ',', 'writing', 'that', '``', 'the', 'charismatic', 'songwriter', 'is', 'a', 'natural', 'storyteller', ',', 'and', 'his', 'lyrics', 'bounce', 'to', 'life', 'with', 'each', 'verse', 'and', 'chorus', '.', \"''\"], ['bombing', 'raids', 'were', 'made', 'on', 'abeele', 'and', 'heule', 'airfields', 'and', 'in', 'dogfights', 'with', 'german', 'fighters', ',', 'ten', 'aircraft', 'were', 'claimed', 'shot', 'down', ',', 'for', 'a', 'loss', 'of', 'aircrew', 'casualties', '.'], ['ocean', 'grove', 'was', 'featured', 'in', 'the', '2', '0', '0', '6', 'film', '``', 'kenny', \"''\", ',', 'while', 'the', 'bridge', 'between', 'ocean', 'grove', 'and', 'barwon', 'heads', 'featured', 'in', 'the', 'popular', 'abc', 'television', 'show', '``', 'seachange', \"''\", '.'], ['the', 'construction', 'of', 'the', 'university', \"'s\", 'current', 'premises', ',', 'the', 'puente', 'del', 'comun', 'campus', '(', 'spanish', ':', '``', 'campus', 'del', 'puente', 'del', 'comun', \"''\", ')', ',', 'started', 'in', '1', '9', '8', '7', 'in', 'chía', '.'], ['millions', 'of', 'pakistanis', 'emigrated', 'to', 'various', 'countries', 'during', 'the', '1', '9', '7', '0', 's', 'and', '1', '9', '8', '0', 's', '.'], ['in', '1', '9', '5', '5', 'the', 'name', 'was', 'changed', 'again', 'to', 'thompson', 'academy', '.'], ['the', 'film', 'received', 'limited', 'theatrical', 'release', 'in', 'the', 'us', 'and', 'canada', '.'], ['thames', 'television', 'and', 'london', 'weekend', 'television', 'took', 'over', 'the', 'london', 'franchise', 'area', 'in', '1', '9', '6', '8', '.'], ['now', 'one', 'of', 'the', 'wealthiest', 'men', 'in', 'england', ',', 'he', 'embarked', 'on', 'an', 'ambitious', 'project', 'to', 'redecorate', 'cassiobury', 'house', 'in', 'the', 'style', 'of', 'the', 'sumptuous', 'state', 'rooms', 'of', 'windsor', 'castle', ',', 'hoping', 'to', 'attract', 'a', 'visit', 'from', 'the', 'king', 'to', 'cassiobury', '.'], ['miss', 'turner', 'reprised', 'the', 'role', 'on', 'television', 'in', 'a', 'performance', 'on', 'nbc', 'opera', 'theatre', '.'], ['the', 'scheme', 'was', 'eventually', 'exposed', ',', 'and', 'all', 'of', 'those', 'involved', 'were', 'prosecuted', ',', 'including', 'villette', '.'], ['the', 'tunnel', 'opened', 'to', 'northbound', 'vehicular', 'traffic', 'at', '1', '1', 'p.m.', 'on', 'february', '3', 'and', 'southbound', 'traffic', 'at', '1', '2', ':', '1', '5', 'a.m.', 'on', 'february', '4', '.'], ['he', 'also', 'restored', 'the', '``', 'transfiguration', \"''\", ',', 'a', 'large', 'altar', 'at', 'the', 'salvador', 'church', 'in', 'leganés', 'which', 'was', 'completed', 'in', '1', '7', '0', '2', '.'], ['two', 'brief', 'plane', 'shots', 'used', 'in', 'episode', '4', 'also', 'survive', '.'], ['during', 'the', 'socialism', 'the', 'city', \"'s\", 'economy', 'greatly', 'expanded', 'dominated', 'by', 'heavy', 'industry', '-', 'it', 'still', 'produces', 'large', 'amount', 'of', 'lead', 'and', 'zinc', ',', 'machinery', ',', 'electronics', ',', 'motor', 'trucks', ',', 'chemicals', ',', 'cosmetics', '.'], ['data', 'sets', 'are', 'not', 'unstructured', 'streams', 'of', 'bytes', ',', 'but', 'rather', 'are', 'organized', 'in', 'various', 'logical', 'record', 'and', 'block', 'structures', 'determined', 'by', 'the', 'codice_', '1', '(', 'data', 'set', 'organization', ')', ',', 'codice_', '2', '(', 'record', 'format', ')', ',', 'and', 'other', 'parameters', '.'], ['in', 'this', 'example', ',', 'the', 'built-in', 'power', 'function', 'can', 'be', 'said', 'to', 'have', 'been', 'curried', ':'], ['on', '1', 'january', '2', '0', '1', '3', 'the', 'former', 'municipality', 'of', 'bressaucourt', 'merged', 'into', 'the', 'municipality', 'of', 'fontenais', '.'], ['at', 'the', 'time', 'of', 'the', 'capitol', 'theatre', 'shows', ',', 'the', 'new', 'riders', 'of', 'the', 'purple', 'sage', 'were', 'regularly', 'performing', 'as', 'the', 'opening', 'act', 'for', 'the', 'grateful', 'dead', '.'], ['duncan', 'made', 'his', 'stage', 'debut', 'in', '1', '8', '9', '3', 'in', 'san', 'francisco', ',', 'and', 'toured', 'for', 'seven', 'years', 'before', 'appearing', 'in', 'new', 'york', 'in', '1', '9', '0', '0', ',', 'then', 'continuing', 'in', 'roles', 'in', 'new', 'york', 'and', 'london', '.'], ['the', 'development', 'of', 'the', 'main', 'sewerage', 'systems', 'represented', 'part', 'of', 'the', 'advance', 'in', 'the', 'protection', 'of', 'public', 'health', 'in', 'sydney', 'by', 'collectively', 'reducing', 'the', 'discharge', 'of', 'sewage', 'from', 'port', 'jackson', 'via', 'the', 'city', \"'s\", 'early', 'sewers', 'and', 'divert', 'to', 'the', 'tasman', 'sea', '.'], ['he', 'led', 'the', 'brigade', ',', 'now', 'referred', 'to', 'as', 'wofford', \"'s\", 'brigade', ',', 'at', 'chancellorsville', 'and', 'gettysburg', ',', 'where', 'he', 'followed', 'william', 'barksdale', \"'s\", 'mississippi', 'brigade', 'in', 'the', 'assault', 'through', 'the', 'peach', 'orchard', 'late', 'in', 'the', 'afternoon', 'of', 'july', '2', '.'], ['north', 'asia', 'consists', 'of', 'the', 'russian', 'regions', 'east', 'of', 'the', 'ural', 'mountains', ':', 'ural', ',', 'siberia', 'and', 'the', 'russian', 'far', 'east', '.'], ['``', 'the', '5', '1', 'day', 'war', ':', 'ruin', 'and', 'resistance', 'in', 'gaza', \"''\", 'was', 'awarded', 'a', 'palestine', 'book', 'award', 'that', 'year', 'by', 'the', '``', 'middle', 'east', 'monitor', \"''\", '.'], ['out', 'of', '8', '0', 'troops', 'at', 'benua', 'baroe', ',', '1', '0', 'of', 'them', ',', 'along', 'with', 'their', 'commander', 'lt.', 'van', 'mossel', 'did', 'not', 'reached', 'kota', 'bangoen', 'at', '0', '2', ':', '0', '0', 'the', 'next', 'day', '.'], ['it', 'is', 'situated', 'south-west', 'of', 'boston', ',', 'north', 'of', 'spalding', 'and', 'north-west', 'of', 'holbeach', '.'], ['because', 'of', 'the', 'pressures', 'of', 'front-line', 'service', 'there', 'were', 'always', 'exceptions', 'to', 'the', 'standards', 'set', 'by', 'the', 'raf', 'and', 'that', 'deadlines', 'were', 'not', 'necessarily', 'met', '.'], ['trans', 'hirstory', 'in', '9', '9', 'objects', 'is', 'a', 'project', 'that', 'takes', 'inspiration', 'from', 'smithsonian', \"'s\", 'history', 'of', 'america', 'in', '1', '0', '1', 'objects', '.'], ['this', 'way', 'of', 'working', 'taught', 'me', 'to', 'think', 'sculpturally', 'rather', 'than', 'to', 'think', 'about', 'sculpture', '.'], ['the', 'conduction', 'path', 'can', 'arise', 'from', 'different', 'mechanisms', ',', 'including', 'vacancy', 'or', 'metal', 'defect', 'migration', '.'], ['the', 'proceedings', 'of', 'the', 'royal', 'commission', 'were', 'kept', 'confidential', ',', 'but', 'when', 'it', 'was', 'published', 'on', '1', '1', 'june', '1', '9', '6', '9', ',', 'the', 'report', 'was', 'found', 'to', 'include', 'a', 'memorandum', 'of', 'dissent', 'by', 'senior', 'as', 'long', 'as', 'the', 'main', 'report', 'itself', '.'], ['in', '1', '8', '7', '9', ',', 'at', 'the', 'university', 'of', 'pennsylvania', ',', 'he', 'was', 'a', 'demonstrator', 'in', 'histology', '.'], ['he', 'also', 'served', 'as', 'an', 'advisor', 'to', 'the', 'u.s.', 'delegation', 'to', 'the', 'united', 'nations', 'and', 'as', 'a', 'consultant', 'to', 'the', 'u.s.', 'air', 'force', ',', 'which', 'awarded', 'him', 'the', 'exceptional', 'service', 'award', 'in', '1', '9', '5', '6', '.'], ['``', 'i', 'remember', 'that', \"''\", 'is', 'the', '6', '1', 'st', 'episode', 'of', 'the', 'abc', 'television', 'series', ',', '``', 'desperate', 'housewives', \"''\", '.'], ['the', 'following', 'day', ',', 'a', 'standing', 'orders', 'meeting', 'accepted', 'a', 'māori', 'party', 'submission', 'proposing', 'the', 'elimination', 'of', 'neckties', 'from', 'parliament', \"'s\", 'business', 'attire', '.'], ['in', 'the', 'process', 'they', 'created', 'a', 'gap', 'for', 'desert', 'mounted', 'corps', 'to', 'advance', 'northwards', '.'], ['other', 'innovations', 'include', 'the', 'calling', 'of', 'regional', 'representatives', ',', 'a', 'uniform', 'annual', 'report', 'from', 'each', 'ward', 'starting', 'in', '1', '9', '6', '7', 'and', 'further', 'centralization', 'and', 'standardization', 'of', 'tithing', 'in', '1', '9', '7', '0', '.'], ['the', 'bird', 'became', 'commonly', 'known', 'as', 'coachwhip', 'bird', 'or', 'stockwhip', 'bird', '.'], ['hirsch', 'supports', 'abortion', 'rights', ',', 'lgbt', 'rights', ',', 'immigration', ',', 'raising', 'taxes', 'on', 'the', 'wealthy', ',', 'and', 'gun', 'restrictions', '.'], ['while', 'maintaining', 'a', 'professional', 'opera', 'career', ',', 'she', 'has', 'been', 'teaching', 'at', 'wilfrid', 'laurier', 'university', 'since', 'july', '2', '0', '0', '2', 'and', 'is', 'currently', 'coordinator', 'of', 'the', 'opera', 'program', 'there', '.'], ['we', 'wrote', 'to', 'all', 'of', 'them', ',', 'collectively', 'and', 'individually', '.'], ['dolores', \"'\", 'upcoming', 'trial', 'was', 'first', 'suspended', 'and', 'then', 'the', 'case', 'was', 'closed', 'and', 'she', 'was', 'set', 'free', 'having', 'been', '1', '7', 'months', 'in', 'prison', '.'], ['others', ',', 'then', ',', 'have', 'contended', 'that', 'hart', 'was', 'a', 'trans', 'pioneer', ',', 'who', 'lived', 'after', 'his', 'transition', 'exclusively', 'as', 'a', 'man', ',', 'just', 'as', 'modern', 'transgender', 'people', 'do', '.'], ['the', 'sicilian-american', 'respect', 'for', '``', 'san', 'giuseppe', \"''\", '(', 'st.', 'joseph', ')', 'is', 'reflected', 'in', 'the', 'celebration', 'of', 'the', 'feast', 'of', 'st.', 'joseph', ',', 'primarily', 'in', 'new', 'orleans', 'and', 'buffalo', ',', 'every', 'march', '1', '9', '.'], ['with', 'the', 'union', 'having', 'organized', 'every', 'single', 'plant', 'in', 'the', 'glass', 'container', 'industry', ',', 'minton', 'won', 'the', 'membership', \"'s\", 'approval', 'to', 're-establish', 'the', 'union', 'newsletter', 'for', 'the', 'first', 'time', 'since', '1', '9', '2', '4', '.'], ['sawada', \"'s\", 'voice', 'is', 'the', 'only', 'one', 'dubbed', 'in', 'the', 'film', ',', 'as', 'sawada', 'himself', 'only', 'speaks', 'a', 'little', 'english', '.'], ['this', 'trade', 'relationship', 'lasted', 'well', 'into', 'the', '1', '8', '7', '0', 's', ',', 'and', 'persisted', 'even', 'when', 'comanches', 'used', 'weapons', 'and', 'steel', 'provided', 'by', 'comancheros', 'to', 'fight', 'enemies', 'living', 'in', 'texas', 'and', 'northern', 'mexico', '.'], ['after', 'opening', 'as', 'far', 'as', 'uxbridge', 'in', '1', '8', '7', '1', ',', 'the', 'contractor', 'walked', 'away', 'from', 'the', 'job', ',', 'leaving', 'the', 'partially', 'completed', 'line', 'to', 'coboconk', '.'], ['they', 'regarded', 'njinga', 'in', 'her', 'later', 'days', 'as', 'a', 'model', 'christian', 'and', 'thousands', 'of', 'matamba', 'subjects', 'were', 'baptized', '.'], ['it', 'is', 'connected', 'by', 'a', 'causeway', 'to', 'its', 'sister', 'town', 'of', 'flores', '(', 'the', 'capital', 'of', 'the', 'petén', 'department', ')', 'and', 'the', 'two', '(', 'together', 'with', 'san', 'benito', ')', 'are', 'often', 'referred', 'to', 'as', 'just', 'flores', '.'], ['in', 'a', 'start', 'in', 'cincinnati', ',', 'his', 'finger', 'split', 'open', 'after', 'one', 'inning', '.'], ['krissy', 'krissy', ',', 'styled', 'krissy', 'krissy', '(', 'born', 'krislyn', 'rivera', ';', 'september', '2', '4', ',', '1', '9', '8', '8', 'in', 'california', ')', 'is', 'a', 'pop', 'singer', 'based', 'in', 'brooklyn', ',', 'new', 'york', '.'], ['one', 'play', 'after', 'bollinger', 'connected', 'on', 'a', '1', '4', '-yard', 'pass', 'to', 'bobby', 'sippio', ',', 'locos', 'defensive', 'end', 'josh', 'mallard', 'forced', 'a', 'tatum', 'bell', 'fumble', 'that', 'was', 'quickly', 'recovered', 'by', 'bollinger', '.'], ['in', '2', '0', '1', '7', ',', 'the', 'last', 'chapter', 'of', '``', 'the', 'man', 'from', 'the', 'train', \"''\", 'by', 'bill', 'james', 'and', 'his', 'daughter', 'rachel', 'mccarthy', 'james', ',', 'briefly', 'discusses', 'the', 'murders', 'at', 'hinterkaifeck', '.'], ['however', ',', 'due', 'to', 'the', 'controversy', ',', 'he', 'was', 'released', 'from', 'the', 'lotte', 'giants', 'on', 'september', '1', ',', '2', '0', '0', '9', '.'], ['the', 'hyderabadi', 'branch', 'of', 'the', 'talpur', 'mirs', 'were', 'defeated', 'by', 'the', 'british', 'at', 'the', 'battle', 'of', 'miani', 'on', '1', '7', 'february', '1', '8', '4', '3', '.'], ['the', 'site', 'is', 'located', 'on', 'the', 'leona', 'river', ',', 'and', 'is', 'dominated', 'by', 'the', '1', '4', '0', '-ft-high', '(', '4', '3', 'm', ')', 'remains', 'of', 'an', 'extinct', 'volcano', 'named', 'mount', 'inge', '.'], ['brand', 'also', 'popularised', 'the', 'technique', 'of', 'serial', 'casting', 'for', 'the', 'finger', 'deformities', '(', 'flexion', 'contractures', ')', 'that', 'often', 'result', 'from', 'hansen', \"'s\", 'disease', ',', 'a', 'technique', 'that', 'is', 'now', 'widely', 'used', 'by', 'hand', 'therapists', 'to', 'treat', 'contractures', 'from', 'many', 'different', 'hand', 'injuries', 'and', 'conditions', '.'], ['soon', ',', 'multimillion-dollar', 'wayne', 'gretzky', 'roller', 'hockey', 'center', \"'s\", 'began', 'to', 'spring', 'up', 'in', 'california', ',', 'with', 'youngsters', 'wearing', 'wayne', 'gretzky', \"'s\", 'ultra', 'wheels', 'roller', 'hockey', 'equipment', '.'], ['the', 'new', 'york', 'giants', 'season', 'was', 'the', 'franchise', \"'s\", '9', '2', 'nd', 'season', 'in', 'the', 'national', 'football', 'league', ',', 'their', 'seventh', 'season', 'playing', 'their', 'home', 'games', 'at', 'metlife', 'stadium', 'in', 'east', 'rutherford', ',', 'new', 'jersey', ',', 'and', 'the', 'first', 'under', 'head', 'coach', 'ben', 'mcadoo', '.'], ['it', 'is', 'not', 'taken', 'seriously', 'by', 'professional', 'historians', ',', 'as', 'the', 'evidence', 'presented', 'is', 'rather', 'scant', 'and', 'no', 'archaeological', 'finds', 'of', 'any', 'significance', 'have', 'been', 'made', 'in', 'the', 'area', 'since', '.'], ['beginning', 'in', 'the', '1', '9', '2', '0', 's', ',', 'the', 'city', 'planned', 'to', 'develop', 'a', 'large', 'ship', 'and', 'rail', 'terminal', 'along', 'jamaica', 'bay', ',', 'particularly', 'along', 'the', 'paerdegat', 'basin', 'in', 'nearby', 'canarsie', ',', 'to', 'relieve', 'port', 'operations', 'in', 'the', 'greater', 'new', 'york', 'harbor', '.'], ['water', 'is', 'much', 'more', 'dense', 'and', 'viscous', 'compared', 'to', 'air', ',', 'causing', 'hunting', 'techniques', 'adapted', 'in', 'water', 'to', 'be', 'less', 'successful', 'when', 'applied', 'on', 'land', '.'], ['according', 'to', 'jenna', 'fischer', ',', 'the', 'series', 'used', 'an', 'unusual', 'casting', 'process', 'that', 'did', 'not', 'involve', 'a', 'script', '.'], ['it', 'was', 'described', 'by', 'hou-hun', 'li', ',', 'hui', 'zhen', 'and', 'wolfram', 'mey', 'in', '2', '0', '1', '3', '.'], ['prinsen', 'played', 'the', 'role', 'of', 'jan', 'j.', 'de', 'bom', ',', 'the', 'owner', 'of', 'a', 'toy', 'shop', '.'], ['harry', 'also', 'believes', 'that', 'lack', 'of', 'practical', 'experience', 'makes', 'them', 'more', 'vulnerable', 'to', 'lord', 'voldemort', \"'s\", 'forces', ',', 'though', 'the', 'ministry', 'staunchly', 'refuses', 'to', 'accept', 'that', 'lord', 'voldemort', 'has', 'returned', '.'], ['he', 'identified', 'the', 'attackers', 'to', 'the', 'responding', 'officers', 'as', 'three', 'men', 'who', 'drove', 'past', 'the', 'scene', 'in', 'a', 'white', 'pickup', 'truck', '.'], ['two', 'weeks', 'after', 'her', 'march', '1', '9', '9', '5', '``', 'guardian', \"''\", 'column', 'about', 'rape', 'provoked', 'controversy', ',', 'she', 'again', 'recalled', 'her', 'own', 'experience', ',', 'which', 'took', 'place', 'in', 'january', '1', '9', '5', '8', 'when', 'she', 'was', '1', '9', '.'], ['madsen', 'was', 'influenced', 'by', 'jean-pierre', 'melville', \"'s\", '``', 'army', 'of', 'shadows', \"''\", '(', '1', '9', '6', '9', ')', ',', 'about', 'the', 'french', 'resistance', ',', 'especially', '``', 'the', 'way', 'it', 'told', 'its', 'story', 'through', 'only', 'rituals', 'and', 'dialogue', \"''\", '.'], ['she', 'is', 'known', 'for', 'her', 'work', 'in', 'mapping', 'and', 'the', 'use', 'of', 'satellite', 'imagery', 'for', 'geological', 'and', 'glaciological', 'studies', '.'], ['this', 'densely', 'populated', 'community', 'of', 'small', 'cottages', 'was', 'developed', 'after', 'world', 'war', 'i', 'as', 'a', 'summer', 'colony', ',', 'largely', 'for', 'nearby', 'providence', \"'s\", 'middle-class', 'irish', ',', 'greek', 'and', 'italian', 'communities', '.'], ['hill', 'won', 'over', '1', '0', '0', 'trophies', 'in', 'his', 'motorcycle', 'career', '.'], ['she', 'writes', 'of', 'how', 'she', 'planned', 'to', 'climb', 'without', 'supplementary', 'oxygen', 'partly', 'as', 'a', 'kick', 'start', 'to', 'open', 'the', 'european', 'market', 'to', '``', 'mountain', 'madness', \"''\", ',', 'scott', 'fischer', \"'s\", 'mountain', 'guiding', 'operation', ',', 'with', 'her', 'as', 'the', 'company', \"'s\", 'representative', '.'], ['in', '1', '7', '2', '6', 'it', 'was', 'purchased', 'by', 'four', 'merchants', 'from', 'the', 'town', ',', 'and', 'circa', '1', '8', '7', '0', ',', 'most', 'of', 'it', 'covered', 'with', 'high', 'quality', 'housing', '.'], ['video', \"'s\", 'from', 'gametrailers', ',', 'ifilm', 'and', 'youtube', 'can', 'now', 'be', 'seen', 'at', 'their', 'corresponding', 'gamepage', '.'], ['fish', 'and', 'wildlife', 'service', '(', 'usfws', ')', 'discovered', 'that', 'the', 'rma', 'was', 'home', 'more', 'than', '3', '3', '0', 'species', 'of', 'wildlife', '.'], ['8', '0', '7', 'households', '(', '1', '4', '.', '7', '%', ')', 'were', 'one', 'person', 'and', '3', '4', '6', '(', '6', '.', '3', '%', ')', 'had', 'someone', 'living', 'alone', 'who', 'was', '6', '5', 'or', 'older', '.'], ['the', 'independently', 'verified', 'chart', 'includes', 'sales', 'of', 'albums', 'across', 'digital', ',', 'cd', 'and', 'vinyl', 'formats', ';', 'singles', ',', 'both', 'downloaded', 'and', 'physical', ';', 'and', 'streams', 'across', 'the', 'calendar', 'year', '.'], ['in', '1', '9', '3', '0', ',', 'hogan', 'presided', 'over', 'a', 'meeting', 'to', 'found', 'an', 'old', 'timers', \"'\", 'association', 'of', 'st.', 'albert', '.'], ['alonso', 'and', 'button', ',', 'who', 'were', 'in', 'fifth', 'and', 'eighth', 'respectively', ',', 'fell', 'to', 'ninth', 'and', 'eleventh', ',', 'while', 'the', 'drivers', 'on', 'the', 'full', 'wet', 'tyres', 'began', 'pitting', 'for', 'fresh', 'wet', 'tyres', '.'], ['i', 'mean', 'no', 'slight', 'to', 'whitmire', ',', 'but', 'with', 'steele', 'present', ',', 'actively', 'engaged', 'with', 'everyone', 'deferring', 'to', 'him', 'and', 'steele', 'doing', 'most', 'of', 'the', 'talking', 'and', 'directing', ',', 'there', 'did', 'not', 'appear', 'to', 'be', 'any', 'question', 'of', 'who', 'was', 'in', 'charge', '.'], ['the', 'benedictine', 'history', 'of', 'tholey', 'is', 'thought', 'to', 'have', 'begun', 'in', 'about', '7', '5', '0', '.'], ['it', 'is', 'at', '1', '2', '3', '6', 'maryhill', 'road', ',', 'glasgow', ',', 'on', 'the', 'corner', 'of', 'ruchill', 'street', '.'], ['all', 'pupils', 'in', 'this', 'key', 'stage', 'must', 'follow', 'a', 'programme', 'of', 'education', 'in', 'these', 'areas', ':'], ['it', 'was', 'described', 'by', 'theodore', 'dru', 'alison', 'cockerell', 'in', '1', '9', '3', '3', '.'], ['if', 'i', 'was', ',', 'i', 'would', 'have', 'stuck', 'with', 'the', 'democrats', '.'], ['1', ')', ',', '2', '0', '1', '6', '(', '5', 'a', 'div', '.'], ['bionicle', '(', 'also', 'known', 'as', 'bionicle', ':', 'the', 'game', ')', 'is', 'an', 'action-adventure', 'video', 'game', 'released', 'in', '2', '0', '0', '3', '.'], ['by', 'july', ',', 'though', ',', 'his', 'entire', 'hand', 'was', 'becoming', 'numb', 'and', 'he', 'was', 'unable', 'to', 'complete', 'some', 'games', '.'], ['as', 'the', 'second', 'chorus', 'starts', ',', 'rihanna', ',', 'wearing', 'a', 'bullet', 'bra', 'and', 'a', 'helmet', 'similar', 'in', 'appearance', 'to', 'the', 'ears', 'of', 'mickey', 'mouse', ',', 'stands', 'on', 'a', 'pink', 'army', 'tank', '.'], ['the', 'lake', 'of', 'schmachter', 'see', 'lies', 'immediately', 'southwest', 'of', 'binz', '.'], ['the', 'commune', 'covers', 'an', 'area', 'of', '5', '0', '4', 'square', 'kilometers', 'and', 'includes', '9', 'villages', '.'], ['in', '1', '9', '7', '2', 'robert', 'mcwhirk', 'purchased', 'the', 'gable', 'mansion', 'from', 'the', 'gable', 'estate', 'and', 'spent', 'twenty', 'years', 'rehabilitating', 'it', '.'], ['(', 'derived', 'from', 'the', 'word', '``', 'quick', 'understanding', 'of', 'block', 'extrusion', \"''\", ')', 'is', 'a', 'physics-based', 'puzzle', 'video', 'game', 'developed', 'and', 'published', 'by', 'toxic', 'games', ',', 'with', 'help', 'from', 'indie', 'fund', ',', 'a', 'group', 'of', 'independent', 'game', 'developers', '.'], ['the', 'diagram', 'on', 'the', 'right', 'illustrates', 'most', 'of', 'the', 'conventional', 'methods', '.'], ['most', 'of', 'the', 'band', 'is', 'back', 'including', 'miss', 'guy', ',', 'sean', ',', 'eddie', 'and', 'adam', 'with', 'the', 'addition', 'of', 'shane', 'on', 'guitar', '.'], ['sazan', ',', 'located', 'in', 'southern', 'albania', ',', 'was', 'historically', 'considered', 'a', 'part', 'of', 'the', 'diapontia', 'islands', '.'], ['in', '2', '0', '0', '0', ',', '``', 'minor', 'move', \"''\", 'was', 'released', 'on', 'cd', '.'], ['in', 'the', 'evening', '``', 'volynets', \"''\", ',', 'flying', 'the', 'finnish', 'flag', 'under', 'the', 'command', 'of', 'segersven', ',', 'arrived', 'in', 'tallinn', ',', 'where', 'she', 'was', 'welcomed', 'by', 'a', 'group', 'of', 'high-ranking', 'german', 'officers', ',', 'including', 'prince', 'henry', 'of', 'prussia', '.'], ['preston', 'blake', 'guilmet', '(', ';', 'born', 'july', '2', '7', ',', '1', '9', '8', '7', ')', 'is', 'an', 'american', 'professional', 'baseball', 'pitcher', 'for', 'the', 'miami', 'marlins', 'organization', '.'], ['notable', 'features', 'of', 'the', 'setting', 'include', 'conventions', 'differing', 'from', 'ponyville', \"'s\", ',', 'as', 'seen', 'in', 'the', 'episode', ',', '``', 'stranger', 'than', 'fan', 'fiction', \"''\", ',', 'and', 'an', 'elevated', 'train', '.'], ['mie', 'ayam', ',', 'mi', 'ayam', 'or', 'bakmi', 'ayam', '(', 'indonesian', 'for', \"'chicken\", 'bakmi', \"'\", ',', 'literally', 'chicken', 'noodles', ')', 'is', 'a', 'common', 'indonesian', 'dish', 'of', 'seasoned', 'yellow', 'wheat', 'noodles', 'topped', 'with', 'diced', 'chicken', 'meat', '(', '``', 'ayam', \"''\", ')', '.'], ['according', 'to', '2', '0', '1', '8', 'idi', ',', 'the', 'leading', 'economy', 'is', 'norway', ',', 'with', '6', '.', '0', '8', ',', 'followed', 'by', 'iceland', '(', '6', '.', '0', '7', ')', 'and', 'luxembourg', '(', 'also', '6', '.', '0', '7', ')', '.'], ['as', 'she', 'later', 'mucks', 'out', 'the', 'stables', ',', 'wondering', 'aloud', 'if', 'she', 'can', 'remove', 'the', 'collar', ',', 'a', 'runaway', 'slave', 'warns', 'her', 'through', 'a', 'hole', 'in', 'a', 'wall', 'that', 'she', 'should', \"n't\", 'bother', 'fighting', '.'], ['mirabad', '(', ',', 'also', 'romanized', 'as', 'mīrābād', ';', 'also', 'known', 'as', 'nurābād', ')', 'is', 'a', 'village', 'in', 'sardshir', 'rural', 'district', ',', 'in', 'the', 'central', 'district', 'of', 'buin', 'va', 'miandasht', 'county', ',', 'isfahan', 'province', ',', 'iran', '.'], ['the', 'book', \"'s\", 'heroine', 'edna', 'earl', 'became', 'the', 'namesake', 'of', 'eudora', 'welty', \"'s\", 'heroine', '(', 'edna', 'earle', 'ponder', ')', 'in', '``', 'the', 'ponder', 'heart', \"''\", 'published', 'in', '1', '9', '5', '4', '.'], ['philipps', \"'\", 'subsequent', 'reporting', 'led', 'to', 'state', 'and', 'federal', 'investigation', 'of', 'the', 'wild', 'horse', 'program', 'and', 'its', 'largest', 'horse', 'buyer', '.'], ['sicut', 'dudum', '(', ')', 'is', 'a', 'papal', 'bull', 'promulgated', 'by', 'pope', 'eugene', 'iv', 'in', 'florence', 'on', 'january', '1', '3', ',', '1', '4', '3', '5', ',', 'which', 'forbade', 'the', 'enslavement', 'of', 'local', 'natives', 'in', 'the', 'canary', 'islands', 'who', 'had', 'converted', 'or', 'were', 'converting', 'to', 'christianity', '.'], ['an', 'article', 'had', 'been', 'published', 'by', '``', 'the', 'spectator', \"''\", 'describing', 'the', 'men', 'as', 'drinking', 'heavily', 'during', 'a', 'socialist', 'conference', 'in', 'italy', '.'], ['this', 'increases', 'the', 'strength', 'of', 'hydrogen', 'bonding', 'and', 'lowers', 'the', 'transition', 'state', 'energy', ',', 'thus', 'accelerating', 'the', 'reaction', '.'], ['there', 'is', 'a', 'william', 'richard', 'motherwell', 'and', 'catherine', 'motherwell', 'fonds', 'at', 'library', 'and', 'archives', 'canada', '.'], ['aged', '8', '6', ',', 'she', 'died', 'there', 'on', '2', '6', 'september', '1', '9', '9', '5', '.'], ['this', 'formula', 'of', 'engine', 'equalisation', 'took', 'over', 'the', 'series', ',', 'eliminating', 'any', 'previous', 'engine', 'that', 'did', 'not', 'fit', 'into', 'the', '3', '.', '5', 'l', 'category', '.'], ['the', 'development', 'was', 'completed', 'in', '1', '9', '8', '2', '.'], ['after', 'this', 'town', 'there', 'is', '1', 'additional', 'kilometer', 'of', 'highway', 'a', '3', '0', ',', 'leading', 'to', 'the', 'a', '2', '.'], ['mount', 'erciyes', 'is', 'the', 'peak', 'at', '3', '9', '1', '6', 'meters', '.'], ['the', 'top', 'responses', 'for', 'religious', 'affiliation', 'were', 'catholic', '(', '3', '2', '.', '6', '%', ')', ',', 'islam', '(', '1', '1', '.', '4', '%', ')', ',', 'no', 'religion', '(', '9', '.', '9', '%', ')', 'and', 'buddhism', '9', '.', '6', '%', '.'], ['it', 'means', '``', 'little', 'dark', 'one', \"''\", 'or', '``', 'little', 'dark-haired', 'one', \"''\", ',', 'produced', 'by', 'appending', 'a', 'diminutive', 'suffix', 'to', '``', 'ciar', \"''\", '(', '``', 'black', \"''\", ',', '``', 'dark', \"''\", ')', '.'], ['he', 'attended', 'wesley', 'college', ',', 'sagamu', 'and', 'completed', 'his', 'primary', 'education', 'with', 'the', 'methodists', 'in', 'lagos', '.'], ['the', 'achenes', 'are', 'dispersed', 'through', 'animal', 'vectors', 'and', 'through', 'hydrochory', '(', 'dispersal', 'through', 'wind', ',', 'water', ',', 'or', 'gravity', ')', '.'], ['hoffman', \"'s\", 'reduced', 'rationing', 'began', 'to', 'take', 'its', 'toll', 'on', 'the', 'prisoners', ',', 'as', 'they', 'were', 'reduced', 'to', 'eating', 'rats', '.'], ['in', '2', '0', '1', '4', ',', 'he', 'was', 'the', 'runner-up', 'on', 'the', 'sixth', 'season', 'of', '``', 'the', 'x', 'factor', 'australia', \"''\", '.'], ['keiller', 'park', 'was', 'designed', 'in', 'a', 'national', 'romantic', 'style', ',', 'partly', 'by', 'eugen', 'thorburn', 'who', 'also', 'designed', 'kungsportsbron', 'in', 'central', 'gothenburg', '.'], ['sidi', 'aïssa', 'is', 'a', 'town', 'and', 'commune', 'in', \"m'sila\", 'province', ',', 'algeria', '.'], ['in', '2', '0', '1', '7', ',', 'the', 'fourteenth', 'conference', 'was', 'held', 'at', 'csu', 'long', 'beach', '.'], ['he', 'received', 'the', 'man', 'of', 'the', 'match', 'award', 'for', 'this', 'effort', '.'], ['the', 'school', 'also', 'has', 'sculptures', 'by', 'carl', 'eldh', 'and', 'carl', 'milles', 'and', 'frescos', 'by', 'axel', 'törneman', 'and', 'prince', 'eugen', '.'], ['the', 'truce', 'of', 'altmark', 'signed', 'on', '2', '6', 'september', '1', '6', '2', '9', '(', '1', '6', 'september', 'o.s', '.', ')'], ['the', 'temple', 'was', 'heavily', 'damaged', 'by', 'the', '1', '9', '3', '5', 'shinchiku-taichū', 'earthquake', ',', 'but', 'was', 'crudely', 'repaired', '.'], ['knights', 'columbus', 'museum', 'http', ':', '//www.kofcmuseum.org/km/en/exhibits/', '2', '0', '1', '0', '/michelangelo/', 'visited', 'on', '0', '1', '/', '0', '7', '/', '2', '0', '1', '4'], ['as', 'snow', 'melts', 'and', 'rainfall', 'moves', 'over', 'and', 'through', 'the', 'ground', ',', 'the', 'water', 'picks', 'up', 'improperly', 'applied', 'insecticides', 'and', 'deposits', 'them', 'in', 'to', 'larger', 'bodies', 'of', 'water', ',', 'rivers', ',', 'wetlands', ',', 'or', 'percolates', 'in', 'to', 'watersheds', '.'], ['the', 'game', 'features', 'an', 'open-ended', 'structure', 'that', 'presents', 'the', 'player', 'with', 'multiple', 'ways', 'to', 'progress', 'through', 'the', 'game', ',', 'all', 'at', 'the', 'player', \"'s\", 'own', 'pace', '.'], ['the', 'result', 'was', 'a', 'victory', 'for', 'james', 'spriggs', 'payne', 'of', 'the', 'republican', 'party', ',', 'defeating', 'opposition', 'party', 'candidate', 'edward', 'james', 'roye', '.'], ['larry', 'is', 'shocked', 'to', 'see', 'sharon', 'engaged', 'to', 'tony', 'and', 'keeps', 'trying', 'to', 'spirit', 'her', 'away', 'for', 'a', '``', 'last', 'fling', '.', \"''\"], ['the', 'establishment', 'of', 'a', 'memorial', 'in', 'willy', 'brandt', \"'s\", 'hometown', 'was', 'suggested', 'by', 'günter', 'grass', ',', 'nobel', 'prize', 'laureate', 'for', 'literature', ',', 'who', 'had', 'maintained', 'political', 'ties', 'to', 'him', 'since', 'the', '1', '9', '6', '0', 's', '.'], ['while', 'working', 'in', 'radio', 'in', 'the', '1', '9', '8', '0', 's', 'and', '1', '9', '9', '0', 's', ',', 'she', 'also', 'performed', 'at', 'many', 'comedy', 'clubs', 'around', 'new', 'york', 'city', ',', 'chicago', ',', 'and', 'los', 'angeles', '.'], ['in', 'a', 'clap', 'of', 'thunder', ',', 'the', 'ghost', ',', 'the', 'tomb', ',', 'and', 'don', 'juan', 'disappear', ',', 'leaving', 'only', 'catalinón', ',', 'who', 'runs', 'away', 'in', 'terror', '.'], ['in', 'most', 'places', 'track', 'and', 'bridges', 'have', 'been', 'removed', ',', 'though', 'evidence', 'of', 'the', 'bridge', 'piles', 'and', 'ballast', 'remain', '.'], ['at', 'the', '1', '3', 'th', 'national', 'film', 'awards', ',', 'it', 'won', 'the', 'award', 'for', 'certificate', 'of', 'merit', 'for', 'the', 'third', 'best', 'feature', 'film', 'and', 'certificate', 'of', 'merit', 'for', 'the', 'best', 'story', 'writer', 'was', 'awarded', 'posthumously', 'to', 'motilal', '.'], ['the', 'music', 'video', 'for', '``', 'you', '&', 'amp', ';', 'i', \"''\", 'was', 'recorded', 'at', 'southampton', 'solent', 'university', 'and', 'featured', 'bury', 'tomorrow', 'performing', 'to', '2', '0', '0', 'fans', ',', 'the', 'video', 'was', 'shot', 'over', 'the', 'course', 'of', 'two', 'days', ',', 'with', 'the', 'second', 'day', 'focusing', 'on', 'the', 'band', 'performing', '.'], ['she', 'represented', 'her', 'country', 'in', 'that', 'event', 'at', 'the', '1', '9', '8', '4', 'summer', 'olympics', 'and', '1', '9', '8', '3', 'world', 'championships', 'in', 'athletics', '.'], ['he', 'also', 'asserts', 'that', 'the', 'age', 'of', 'npf', 'members', 'mostly', 'ranges', 'between', '1', '8', 'and', '2', '8', '.'], ['aip', \"'s\", 'editing', 'reduced', 'the', 'film', \"'s\", 'runtime', 'to', '8', '3', 'minutes', ',', 'compared', 'to', 'the', '8', '7', 'minute', 'runtime', 'of', 'most', 'italian', 'prints', '.'], ['the', 'hangar', 'deck', 'immediately', 'became', 'an', 'inferno', 'of', 'exploding', 'gas', 'tanks', 'and', 'ammunition', '.'], ['in', 'a', 'letter', 'to', 'henry', 'clay', 'frick', 'she', 'lamented', 'that', '``', 'with', 'the', 'passing', 'away', 'of', 'my', 'husband', ',', 'my', 'life', 'and', 'fortune', 'have', 'been', 'completely', 'wrecked', \"''\", '.'], ['we', 'had', 'liberated', 'zvornik', ',', 'an', 'important', 'junction', 'of', 'communications', 'along', 'the', 'drina', '.', \"''\"], ['hilde', 'teerlinck', '(', 'born', '1', '9', '6', '6', 'in', 'bruges', ',', 'belgium', ')', 'is', 'a', 'belgian', 'curator', ',', 'and', 'general', 'director', 'of', 'the', 'han', 'nefkens', 'foundation', '-', 'barcelona', '.'], ['norsk', 'air', 'started', 'serving', 'fornebu', 'following', 'the', 'opening', 'of', 'fagernes', 'airport', ',', 'leirin', 'in', '1', '9', '8', '7', '.'], ['myers', 'argues', 'that', ':', '``', 'when', 'the', 'average', '[', 'south', 'korean', ']', 'man', 'sees', 'the', '[', 'south', 'korean', ']', 'flag', ',', 'he', 'feels', 'fraternity', 'with', '[', 'ethnic', ']', 'koreans', 'around', 'the', 'world', '.', \"''\"], ['in', '1', '9', '6', '6', ',', 'after', '1', '9', 'years', 'of', 'service', 'in', 'india', ',', 'he', 'moved', 'to', 'the', 'usa', 'on', 'invitation', 'to', 'take', 'up', 'the', 'position', 'of', 'chief', 'of', 'rehabilitation', 'branch', 'at', 'the', 'national', 'hansen', \"'s\", 'disease', 'center', 'at', 'carville', ',', 'louisiana', '.'], ['as', 'he', 'was', 'admitted', 'as', 'a', \"'wijnmeester\", \"'\", '(', 'wine', 'master', \"'\", ')', 'it', 'is', 'likely', 'his', 'father', 'was', 'or', 'had', 'been', 'a', 'master', 'of', 'the', 'guild', '.'], ['the', 'msu', 'graduate', 'school', 'of', 'management', 'and', 'innovation', 'program', 'includes', 'a', 'full', 'academic', 'course', 'in', 'social', 'entrepreneurship', '.'], ['sattur/saathur', 'taluk', 'has', 'contents', 'of', 'black', 'soil', 'around', 'the', 'town', ',', 'suitable', 'for', 'crop', 'cultivation', '.'], ['her', 'broadcasts', 'began', 'on', '2', '0', 'august', '1', '9', '8', '3', ';', 'her', 'final', 'pirate', 'broadcast', 'took', 'place', 'in', 'november', '1', '9', '9', '0', '.'], ['in', '2', '0', '2', '0', 'rajesh', 'kumar', 'singh', 'of', 'rashtriya', 'janata', 'dal', 'defeated', 'ramsewak', 'singh', 'of', 'janata', 'dal', '(', 'united', ')', 'to', 'emerge', 'victorious', '.'], ['his', '``', 'vie', 'de', 'descartes', \"''\", 'is', 'a', 'mine', 'of', 'information', 'on', 'the', 'philosopher', 'and', 'his', 'work', ',', 'derived', 'from', 'numerous', 'unimpeachable', 'authorities', '.'], ['in', 'a', '2', '0', '2', '0', 'essay', ',', 'beinart', 'rejected', 'the', 'two-state', 'solution', 'in', 'favor', 'of', 'a', 'one-state', 'solution', ',', 'detailing', 'his', 'views', 'in', 'a', 'longer', 'essay', 'in', '``', 'jewish', 'currents', \"''\", '.'], ['under', 'the', 'command', 'of', 'robert', 's.', 'rice', ',', 'the', 'battery', 'continued', 'to', 'suffer', 'heavier', 'casualties', 'with', 'each', 'battle', 'as', 'the', 'war', 'continued', '.'], ['the', 'award', 'ceremony', 'was', 'held', 'from', '1', '9', '9', '0', 'to', '2', '0', '0', '7', ',', 'until', 'its', 'reintroduction', 'in', '2', '0', '1', '1', '.'], ['it', 'is', 'the', 'largest', 'of', 'the', 'surviving', 'gardens', ',', 'and', 'it', 'is', 'subdivided', 'into', 'two', 'parts', ',', 'a', 'small', 'enclosed', 'garden', 'and', 'a', 'large', 'field', 'at', 'the', 'back', '.'], ['on', 'december', '7', ',', 'manny', 'started', 'to', 'undergo', 'a', 'clockwise', 'loop', ',', 'while', 'located', 'approximately', '9', '5', '0', 'km', 'to', 'the', 'east', 'of', 'manila', ',', 'the', 'capital', 'of', 'the', 'philippines', '.'], ['the', '#', 'whomademyclothes', 'hashtag', 'was', 'launched', 'in', '2', '0', '1', '4', 'by', 'fashion', 'revolution', 'co-founders', ',', 'carry', 'somers', 'and', 'orsola', 'de', 'castro', '.'], ['the', '``', 'tome', 'of', 'knowledge', \"''\", 'contains', 'all', 'information', 'of', 'the', 'enemies', ',', 'their', 'attacks', 'and', 'abilities', ',', 'their', 'flavor', 'text', ',', 'and', 'secrets', 'that', 'the', 'player', 'has', 'found', '.'], ['in', '1', '8', '9', '6', ',', 'he', 'wrote', 'this', 'letter', 'to', 'one', 'dr.', 'white', 'of', 'uxbridge', ',', 'massachusetts', 'which', 'was', 'in', 'the', 'midst', 'of', 'a', 'malaria', 'outbreak', '.'], ['in', 'the', 'spring', ',', 'presley', 'auditioned', 'for', 'an', 'amateur', 'gospel', 'quartet', 'called', 'the', 'songfellows', ',', 'as', 'one', 'of', 'the', 'group', 'was', 'leaving', 'and', 'they', 'were', 'seeking', 'a', 'replacement', '.'], ['there', 'is', 'also', 'an', 'airport', ',', 'jacqueline', 'cochran', 'regional', 'airport', ',', 'in', 'the', 'community', 'of', 'thermal', 'to', 'the', 'east', '.'], ['lighting', 'a', 'flare', ',', 'he', 'hollers', 'to', 'the', 'infected', 'and', 'they', 'follow', '.'], ['the', 'actual', 'working', 'in', 'the', 'studio', 'was', ',', 'in', 'a', 'sense', ',', 'the', 'expression', '.'], ['the', 'vantage', 'gt', '3', 'has', 'a', 'dry', 'weight', 'of', '.'], ['in', '1', '8', '6', '2', ',', 'only', '5', '%', 'of', 'total', 'revenue', 'came', 'from', 'direct', 'taxes', ',', 'and', 'it', 'was', 'not', 'until', '1', '8', '6', '4', 'that', 'the', 'amount', 'reached', 'the', 'still-low', 'level', 'of', '1', '0', '%', '.'], ['daveco', 'became', 'the', 'subject', 'of', 'news', 'coverage', 'when', 'the', 'colorado', 'state', 'government', 'threatened', 'to', 'shut', 'it', 'down', 'due', 'to', 'violations', 'of', 'state', 'liquor', 'laws', 'in', 'early', '2', '0', '1', '0', '.'], ['jakoub', 'has', 'attempted', 'to', 'distance', 'the', 'band', 'from', 'the', 'christian', 'band', 'label', 'stating', ',', '``', 'we', \"'ve\", 'actually', 'never', 'classified', 'our', 'music', 'as', \"'christian\", 'rock', \"'\", ',', 'we', 'have', 'always', 'been', 'an', 'alternative', 'band', 'on', 'all', 'formats', '.', \"''\"], ['in', 'an', 'ordinary', 'fermion', 'gas', 'in', 'which', 'thermal', 'effects', 'dominate', ',', 'most', 'of', 'the', 'available', 'electron', 'energy', 'levels', 'are', 'unfilled', 'and', 'the', 'electrons', 'are', 'free', 'to', 'move', 'to', 'these', 'states', '.'], ['eddie', 'bond', ',', 'the', 'owner', 'of', 'the', 'hi-hat', ',', 'turned', 'him', 'down', '.'], ['it', 'has', 'branches', 'in', 'shaker', 'heights', ',', 'akron', ',', 'canton', 'and', 'alliance', ',', 'ohio', '.'], ['nurse', '&', 'amp', ';', 'hinnebusch', '(', '1', '9', '9', '3', ')', 'classify', 'it', 'as', 'a', 'northern', 'dialect', 'of', 'swahili', '.'], ['he', 'has', 'always', 'done', 'this', ',', 'ever', 'since', 'he', 'and', 'aladin', 'were', 'both', 'children', '.'], ['ashdon', 'halt', 'was', 'a', 'railway', 'station', 'on', 'the', 'saffron', 'walden', 'railway', '.'], ['the', '``', 'tatort', '``', '``', 'die', 'dunkle', 'zeit', \"''\", '(', 'director', ':', 'niki', 'stein', ')', ',', 'on', 'which', 'nils', 'doergelo', 'worked', 'together', 'with', 'wotan', 'wilke', 'möhring', 'premiered', 'at', 'filmfest', 'hamburg', '2', '0', '1', '7', '.'], ['in', '1', '7', '9', '6', ',', 'susanna', 'reestablished', 'contact', 'with', 'her', 'old', 'edinburgh', 'director', ',', 'john', 'brown', 'williamson', '.'], ['in', '1', '9', '0', '2', ',', 'he', 'became', 'manager', 'of', 'the', 'cuban', 'fe', 'club', 'on', 'a', 'cooperative', 'basis', ',', 'meaning', 'that', 'it', 'was', 'not', 'a', 'paid', 'position', '.'], ['in', 'order', 'to', 'placate', 'and', 'recruit', 'him', 'to', 'their', 'cause', ',', 'sayd', 'offers', 'to', 'relinquish', 'her', 'freedom', 'and', 'pledge', 'her', 'devotion', 'to', 'him', 'if', 'he', 'agrees', 'to', 'accompany', 'them', '(', 'despite', 'ganthet', \"'s\", 'protest', ')', '.'], ['``', 'kud', 'wafter', \"''\", 'was', 'released', 'in', 'japan', 'on', 'june', '2', '5', ',', '2', '0', '1', '0', 'as', 'a', 'limited', 'edition', 'version', 'for', 'windows', 'as', 'a', 'dvd', '.'], ['on', 'the', 'death', 'of', 'owen', 'stockton', '(', '1', '0', 'september', '1', '6', '8', '0', ')', ',', 'he', 'took', 'the', 'charge', 'of', 'the', 'nonconformist', 'congregation', 'in', 'ipswich', ',', 'in', 'addition', 'to', 'his', 'own', '.'], ['in', '1', '9', '9', '5', ',', 'he', 'was', 'named', 'as', 'artistic', 'director', 'of', 'the', 'national', 'theatre', 'of', 'greece', ',', 'an', 'institution', 'he', 'managed', 'to', 'turn', 'into', 'a', 'profitable', 'organization', 'without', 'compromising', 'on', 'artistic', 'integrity', '.'], ['in', 'polygon', ',', 'ben', 'kuchera', 'described', '``', 'henry', \"''\", 'as', '``', 'perfect', 'for', 'anyone', 'who', 'wants', 'a', 'gentle', 'and', 'warm', 'introduction', 'to', 'virtual', 'reality', \"''\", '.'], ['3', '8', 'degrees', 'have', 'also', 'raised', 'over', '£', '2', '0', ',', '0', '0', '0', 'in', 'donations', 'to', 'fund', 'newspaper', 'advertisements', 'against', 'the', 'bill', '.'], ['other', 'ramps', 'and', 'roads', 'associated', 'with', 'the', 'tunnel', 'project', ',', 'including', 'an', 'extension', 'of', 'alaskan', 'way', 'to', 'terminal', '4', '6', 'and', 'the', 'harrison', 'street', 'crossing', 'were', 'opened', ';', 'the', 'lone', 'exception', 'was', 'the', 'northbound', 'offramp', 'from', 'sr', '9', '9', 'to', 'dearborn', 'street', ',', 'which', 'opened', 'on', 'february', '1', '9', '.'], ['consideration', 'of', 'replacing', 'georgia', \"'s\", 'republic', 'with', 'some', 'form', 'of', 'constitutional', 'monarchy', 'has', 'become', 'part', 'of', 'georgian', 'political', 'debate', 'since', 'the', 'georgian', 'orthodox', 'primate', 'and', 'other', 'leading', 'georgians', 'suggested', 'the', 'idea', 'in', '2', '0', '0', '7', '.'], ['for', 'some', 'exercises', ',', 'multiple', 'kettlebells', 'can', 'be', 'held', 'in', 'the', 'same', 'hand', ',', 'for', 'trainees', 'lacking', 'sufficiently', 'heavy', 'kettlebells', '.'], ['in', '1', '9', '0', '6', ',', 'her', 'husband', 'was', 'elevated', 'to', 'peerage', 'and', 'she', 'became', 'baroness', 'courtney', 'of', 'penwith', '.'], ['qasımbəyli', '(', 'also', ',', 'kasymbeyli', ')', 'is', 'a', 'village', 'and', 'municipality', 'in', 'the', 'sabirabad', 'rayon', 'of', 'azerbaijan', '.'], ['the', 'first', 'collision', 'was', 'the', 'left', 'main', 'landing', 'gear', 'with', 'some', 'cables', 'on', 'a', 'road', 'near', 'vnukovo', '.'], ['over', '3', '0', ',', '0', '0', '0', 'inscriptions', 'written', 'in', 'the', 'kannada', 'language', 'have', 'been', 'discovered', 'so', 'far', '.'], ['he', 'later', 'joined', 'the', 'congress', 'party', 'and', 'became', 'one', 'of', 'its', 'prominent', 'members', '.'], ['words', 'that', 'are', 'homonymic', ',', 'paronymic', ',', 'alliterative', 'or', 'rhyming', ',', 'or', 'metalinguistic', 'devices', 'of', 'language', 'can', 'be', 'used', 'to', 'produce', 'humour', '.'], ['miller', 'also', 'performed', 'at', 'the', 'laugh', 'factory', 'when', 'she', 'moved', 'back', 'to', 'los', 'angeles', 'from', 'new', 'york', 'city', 'in', '2', '0', '0', '3', '.'], ['any', 'of', 'these', '1', '1', 'proteins', 'would', 'be', 'a', 'suitable', 'target', 'for', 'dandruff', 'medications', '.'], ['until', 'he', 'was', 'fourteen', 'years', 'of', 'age', ',', 'grand', 'duke', 'kirill', 'was', 'educated', 'at', 'home', 'by', 'private', 'tutors', '.'], ['at', 'this', 'time', 'in', 'my', 'life', 'the', 'historical', 'context', 'of', 'high', 'modernism', 'was', 'really', 'beyond', 'my', 'grasp', '.'], ['presented', 'as', 'a', 'letter', 'from', 'ds', '9', \"'s\", 'resident', 'cardassian', 'spy', 'and', 'tailor', 'elim', 'garak', 'to', 'dr.', 'julian', 'bashir', ',', 'garak', 'recounts', 'his', 'life', 'story', ',', 'and', 'also', 'notes', 'developments', 'on', 'cardassia', 'after', 'the', 'end', 'of', 'the', 'dominion', 'war', '.'], ['in', 'all', 'other', 'regions', 'it', 'will', 'still', 'take', 'place', 'as', 'scheduled', 'on', '3', '0', 'december', '.'], ['in', '2', '0', '1', '9', ',', 'the', 'school', 'launched', 'the', 'saint', 'cecilia', \"'s\", 'rugby', 'academy', 'as', 'a', 'partnership', 'with', 'premier', 'rugby', 'club', ',', 'london', 'irish', '.'], ['it', 'received', 'the', 'san', 'diego', 'architectural', 'foundation', 'orchid', 'award', ',', 'san', 'diego', 'architectural', 'foundation', 'for', '2', '0', '1', '3', '.'], ['in', '2', '0', '1', '7', 'the', 'degree', 'of', 'dr.', 'habil', '.'], ['there', ',', 'orozco', 'had', 'a', 'locomotive', 'filled', 'with', 'dynamite', '(', 'the', '``', 'loco', 'loco', \"''\", 'or', 'the', '``', 'máquina', 'loca', \"''\", ')', ',', 'which', 'he', 'then', 'sent', 'against', 'incoming', 'federal', 'troops', '.'], ['arok', 'died', 'in', 'the', '1', '9', '9', '8', 'sudan', 'air', 'force', 'crash', 'at', 'nasir', '.'], ['she', 'was', 'also', 'a', 'part-time', 'lecturer', 'and', 'tutor', 'in', 'theology', 'at', 'king', \"'s\", 'college', 'london', '.'], ['the', 'tamar', 'regional', 'council', '(', ',', '``', \"mo'atza\", 'ezorit', 'tamar', \"''\", ')', 'is', 'a', 'regional', 'council', 'in', 'israel', \"'s\", 'southern', 'district', ',', 'on', 'the', 'south', 'and', 'western', 'edges', 'of', 'the', 'dead', 'sea', 'along', 'the', 'arava', 'valley', '.'], ['``', 'blue', 'heelers', \"''\", 'is', 'fourth', 'with', '2', '5', 'logies', '.'], ['thus', 'she', 'was', 'married', 'as', 'a', 'child', 'to', 'john', 'de', 'la', 'pole', ',', 'son', 'of', 'the', 'ambitious', 'duke', 'of', 'suffolk', '.'], ['microsoft', 'software', 'assurance', '(', 'sa', ')', 'is', 'a', 'microsoft', 'maintenance', 'program', 'aimed', 'at', 'business', 'users', 'who', 'use', 'microsoft', 'windows', ',', 'microsoft', 'office', ',', 'and', 'other', 'server', 'and', 'desktop', 'applications', '.'], ['according', 'to', '``', 'the', 'guardian', \"''\", ',', 'the', 'deal', 'would', 'make', 'sam', 'tomkins', 'the', 'highest', 'paid', 'player', 'in', 'super', 'league', 'at', '£', '3', '0', '0', ',', '0', '0', '0', 'a', 'year', ',', 'and', 'this', 'ruled', 'out', 'the', 'prospect', 'of', 'a', 'cross-code', 'transfer', 'for', 'at', 'least', 'three', 'years', '.'], ['silver', 'would', 'be', 'ideal', 'for', 'telescope', 'mirrors', 'and', 'other', 'demanding', 'optical', 'applications', ',', 'since', 'it', 'has', 'the', 'best', 'initial', 'front-surface', 'reflectivity', 'in', 'the', 'visible', 'spectrum', '.'], ['in', '7', '4', '4', ',', 'he', 'married', 'for', 'the', 'second', 'time', 'in', 'what', 'now', 'is', 'the', 'liangyuan', 'district', 'of', 'henan', '.'], ['it', 'was', 'registered', 'as', 'a', 'california', 'state', 'landmark', 'on', 'september', '1', '3', ',', '1', '9', '7', '3', ',', 'as', 'an', 'example', 'of', '1', '9', 'th-century', 'victorian', 'italianate', 'architecture', 'and', 'for', 'being', '``', 'one', 'of', 'the', 'last', 'of', 'its', 'style', ',', 'size', ',', 'and', 'proportion', 'in', 'california', \"''\", '.'], ['the', 'primary', 'precursor', 'network', ',', 'the', 'arpanet', ',', 'initially', 'served', 'as', 'a', 'backbone', 'for', 'interconnection', 'of', 'regional', 'academic', 'and', 'military', 'networks', 'in', 'the', '1', '9', '7', '0', 's', '.'], ['the', 'southern', 'border', 'established', 'by', 'the', 'treaty', 'of', 'versailles', 'defines', 'the', 'current', 'international', 'boundary', 'between', 'lithuania', 'and', 'the', 'kaliningrad', 'oblast', 'of', 'the', 'russian', 'federation', '.'], ['until', 'approached', 'by', 'reynolds', ',', 'yotsuda', 'had', 'only', 'built', 'sampans', 'and', 'was', 'struggling', 'to', 'recover', 'financially', 'from', 'the', 'second', 'world', 'war', '.'], ['in', 'the', 'evening', ',', 'on', 'division', 'street', 'in', 'west', 'town', 'and', 'humboldt', 'park', ',', 'an', 'altercation', 'began', 'between', 'police', 'and', 'revelers', 'near', 'damen', 'avenue', 'and', 'division', 'street', '.'], ['the', 'lake', 'basin', 'is', 'surrounded', 'by', 'volcanoes', ',', 'such', 'as', 'aguas', 'calientes', ',', 'lascar', ',', 'tumisa', ',', 'lejía', ',', 'chiliques', 'and', 'cordon', 'de', 'puntas', 'negras', '.'], ['it', 'is', 'now', 'operated', 'under', 'a', 'scientific', 'cooperation', 'agreement', 'among', 'the', 'university', 'of', 'arizona', ',', 'the', 'university', 'of', 'hawaii', 'and', 'lockheed', 'martin', 'advanced', 'technology', 'center', '.'], ['the', 'entrance', 'contains', 'an', 'inscription', ',', 'but', 'no', 'royal', 'cypher', '.'], ['in', '2', '0', '0', '0', 'the', '``', 'johannesburg', 'times', \"''\", 'tracked', 'down', 'laing', 'to', 'learn', 'about', 'her', 'years', 'since', 'the', 'end', 'of', 'apartheid', '.'], ['she', 'was', 'later', 'convicted', 'and', 'sentenced', 'to', '3', '6', 'months', 'probation', 'and', 'a', '$', '5', '0', ',', '0', '0', '0', 'fine', '.'], ['1', '9', '9', '6', 'brought', 'the', 'club', 'to', 'south', 'america', 'including', 'brazil', ',', 'argentina', ',', 'uruguay', ',', 'chile', ',', 'and', 'peru', ',', 'and', 'the', 'club', 'most', 'recently', 'traversed', 'australia', 'in', '2', '0', '0', '0', '.'], ['gopendra-raja', '(', 'r.', 'c.', '7', '7', '1', '-', '7', '8', '4', 'ce', ')', 'was', 'an', 'indian', 'king', 'belonging', 'to', 'the', 'chahamana', 'dynasty', 'that', 'ruled', 'parts', 'of', 'present-day', 'rajasthan', 'in', 'north-western', 'india', '.'], ['from', '1', '9', '5', '3', 'to', '1', '9', '5', '4', ',', 'he', 'was', 'enrolled', 'at', 'the', 'royal', 'danish', 'academy', 'of', 'fine', 'arts', 'studying', 'under', 'einar', 'utzon-frank', 'and', 'mogens', 'bøggild'], ['this', 'performance', 'led', 'to', 'his', 'being', 'offered', 'the', 'role', 'of', 'jeremy', 'poldark', 'in', 'the', '1', '9', '9', '6', 'tv', 'remake', 'of', '``', 'poldark', \"''\", '.'], ['he', 'was', 'also', 'part', 'of', 'an', 'advertising', 'group', 'during', 'his', 'college', 'years', 'and', 'served', 'as', 'chairman', 'during', 'his', 'third', 'year', '.'], ['the', 'large', 'people', \"'s\", 'square', 'in', 'the', 'centre', 'of', 'the', 'town', 'marks', 'the', 'place', 'where', 'a', 'castle', 'with', 'towers', 'was', 'built', ',', 'probably', 'in', 'the', '4', 'th', 'or', 'the', '5', 'th', 'century', ',', 'and', 'torn', 'down', 'in', '1', '8', '0', '8', '.'], ['chris', 'kohler', ',', 'in', 'his', '2', '0', '0', '4', 'book', '``', \"''\", ',', 'said', ',', 'while', 'it', 'was', 'not', 'as', 'far-reaching', 'as', '``', 'tecmo', 'bowl', \"''\", ',', '``', 'it', 'ended', 'up', 'revolutionizing', 'video', 'games', 'with', 'its', 'courageous', ',', 'unique', ',', 'and', 'trailblazing', 'use', 'of', 'cinema', 'scenes', \"''\", '.'], ['watson', 'was', 'born', 'in', 'gisborne', 'on', '2', '1', 'february', '1', '9', '3', '8', 'to', 'a', 'farming', 'family', '.'], ['the', 'contents', 'of', 'the', 'bedford', 'hours', 'can', 'be', 'divided', 'into', 'several', 'major', 'sections', 'of', 'content', 'normal', 'for', 'a', 'conventional', 'book', 'of', 'hours', ',', 'with', 'the', 'later', 'addition', 'of', 'three', 'smaller', 'sections', 'of', 'supplementary', 'material', ',', 'mostly', 'miniatures', '.'], ['the', 'governing', 'body', 'is', 'comprised', 'of', 'a', 'six-member', 'board', 'of', 'trustees', 'and', 'a', 'village', 'president', '(', 'equivalent', 'to', 'a', 'mayor', ')', ',', 'all', 'of', 'which', 'are', 'unpaid', 'positions', '.'], ['her', 'parents', 'divorced', 'when', 'she', 'was', 'in', 'high', 'school', 'and', 'she', 'since', 'then', 'lived', 'with', 'her', 'mother', '.'], ['in', 'particular', ',', 'the', 'lattice', 'structure', 'of', 'borophene', 'was', 'shown', 'to', 'depend', 'on', 'the', 'metal', 'surface', ',', 'displaying', 'a', 'disconnect', 'from', 'that', 'in', 'a', 'freestanding', 'state', '.'], ['the', 'valley', 'contains', 'two', 'districts', 'of', 'morobe', 'province', ':', 'huon', 'gulf', 'district', 'on', 'the', 'east', 'and', 'markham', 'district', 'on', 'the', 'west', '.'], ['the', 'city', 'was', 'founded', 'by', 'the', 'ndebele', 'king', ',', 'lobhengula', ',', 'the', 'son', 'of', 'king', 'mzilikazi', ',', 'born', 'of', 'matshobana', ',', 'who', 'settled', 'in', 'modern-day', 'zimbabwe', 'around', 'the', '1', '8', '4', '0', 's', '.'], ['sometimes', ',', 'these', 'holds', 'will', 'be', 'reinforced', 'to', 'prevent', 'them', 'from', 'breaking', '.'], ['the', 'machine', 'helped', 'american', 'farms', 'transition', 'from', 'horse', 'to', 'machines', '.'], ['many', 'of', 'the', 'browhead', 'rooms', 'retain', 'original', 'victorian', 'features', ',', 'such', 'as', 'sash', 'windows', 'and', 'cast-iron', 'fireplaces', '.'], ['steger', 'has', 'been', 'invited', 'to', 'testify', 'before', 'congress', 'on', 'polar', 'and', 'environmental', 'issues', 'based', 'on', 'his', 'first-hand', 'experience', 'in', 'the', 'polar', 'regions', 'and', 'environmental', 'expertise', '.'], ['fowler', 'resigned', 'in', '1', '9', '7', '7', 'after', 'a', 'dispute', 'with', 'vmfa', 'administration', 'over', 'the', 'content', 'in', 'vmt', \"'s\", 'premiere', 'of', 'romulus', 'linney', \"'s\", '``', 'childe', 'byron', \"''\", '.'], ['kuenssberg', 'sought', 'to', 'influence', 'the', 'development', 'of', 'primary', 'care', '.'], ['historical', 'photographs', 'from', 'the', 'original', 'valdez', 'town', 'site', 'taken', 'by', 'p.s', '.'], ['the', 'dump', 'was', 'improved', 'over', 'the', 'years', ',', 'but', 'the', 'most', 'important', 'work', 'was', 'done', 'in', '2', '0', '0', '3', ':', 'the', 'dump', 'was', 'expanded', 'and', 'a', 'recycling', 'plant', 'was', 'incorporated', '.'], ['he', 'succeeded', 'on', 'the', 'death', 'of', 'his', 'father', 'on', 'august', '2', '0', ',', '1', '7', '6', '0', '.'], ['new', 'york', ':', 'allows', 'first', 'responders', 'to', 'claim', 'for', 'mental', 'injury', 'after', 'extraordinary', 'work-related', 'stress'], ['in', '1', '9', '3', '4', 'he', 'published', '``', 'deutscher', 'sozialismus', \"''\", 'where', 'he', 'claimed', 'a', '``', 'new', 'spirit', \"''\", 'was', 'beginning', 'to', '``', 'rule', 'mankind', \"''\", '.'], ['he', 'was', 'elected', 'mp', 'for', 'liverpool', 'again', 'at', 'the', 'general', 'election', 'in', '1', '7', '3', '4', 'and', 'was', 'returned', 'unopposed', 'in', '1', '7', '4', '1', '.'], ['the', 'dam', 'serves', 'mainly', 'for', 'municipal', 'and', 'industrial', 'water', 'supply', 'purposes', 'and', 'its', 'hazard', 'potential', 'has', 'been', 'ranked', 'high', '(', '3', ')', '.'], ['he', 'had', 'taken', 'over', 'the', 'federal', 'street', 'theatre', 'in', 'boston', ',', 'and', 'the', 'rowson', 'trio', 'relocated', 'there', 'in', 'part', 'to', 'be', 'closer', 'to', 'the', 'more', 'familiar', 'residence', 'of', 'her', 'youth', 'and', 'her', 'core', 'american', 'literary', 'fan-base', '.'], ['echo', 'tv', '(', 'since', 'february', '1', '5', ',', '2', '0', '0', '2', ',', 'also', 'ekho', 'tv', ',', 'телекомпания', '«', 'эхо', '»', ',', 'эхо-тв', ')', 'is', 'tv', 'company', '.'], ['is', 'a', 'japanese', 'light', 'novel', 'series', 'about', 'space', 'pirates', 'written', 'by', 'yūichi', 'sasamoto', 'and', 'published', 'by', 'asahi', 'shimbun', 'shuppan', 'since', 'october', '2', '0', '0', '8', '.'], ['in', '1', '6', '2', '7', 'his', 'descendant', 'arthur', 'capell', 'married', 'elizabeth', 'morrison', ',', 'daughter', 'and', 'heir', 'of', 'sir', 'charles', 'morrison', 'of', 'cassiobury', 'in', 'watford', '.'], ['in', 'october', '2', '0', '1', '5', ',', 'southern', 'cross', 'austereo', 'announced', 'that', 'mcmanus', 'and', 'sam', 'frost', 'will', 'host', 'breakfast', 'on', '2', 'day', 'fm', 'replacing', 'the', 'ailing', '``', 'the', 'dan', '&', 'amp', ';', 'maz', 'show', \"''\", '.'], ['a', '1', '4', '0', '-game', 'schedule', 'had', 'last', 'been', 'used', 'in', '1', '9', '0', '3', ';', 'the', '1', '5', '4', '-game', 'schedule', 'was', 're-instituted', 'in', '1', '9', '2', '0', '.'], ['the', 'bullets', 'were', 'confirmed', 'to', 'be', '9', 'mm', 'casings', '.'], ['while', 'king', 'seemingly', 'dies', 'after', 'this', 'revelation', ',', 'during', 'mega', 'man', \"'s\", 'ending', 'it', 'is', 'revealed', 'that', 'he', 'survived', 'and', 'is', 'now', 'a', 'wanderer', ',', 'much', 'like', 'proto', 'man', '.'], ['it', 'is', 'told', 'that', 'hanina', 'had', 'a', 'friendship', 'with', 'the', 'angel', 'of', 'death', '.'], ['hazen', 'street', 'released', 'their', 'self-titled', 'debut', 'album', ',', 'hazen', 'street', 'on', 'joel', 'and', 'benji', 'madden', \"'s\", 'dc', 'flag', 'records', '.'], ['the', 'team', 'vacated', 'the', 'championship', 'on', 'february', '2', '0', ',', '2', '0', '0', '7', '.'], ['in', '2', '0', '1', '7', ',', 'when', 'the', 'chargers', 'moved', 'their', 'practice', 'facility', 'to', 'orange', 'county', ',', 'the', 'chargers', 'removed', 'all', 'references', 'to', 'the', 'city', 'of', 'san', 'diego', 'from', 'their', 'website', 'and', 'merchandise', '.'], ['excessive', 'facial', 'hair', ',', 'severe', 'burns', ',', 'and', 'maxillofacial', 'trauma', 'may', 'prevent', 'acquisition', 'of', 'a', 'good', 'mask', 'seal', ',', 'rendering', 'bag-valve', 'mask', 'ventilation', 'difficult', '.'], ['daniel', 'gerard', 'purdie', '(', 'born', '2', '0', 'july', '1', '9', '7', '3', ')', 'is', 'an', 'australian', 'politician', '.'], ['the', '``', 'north', 'star', \"''\", 'managed', 'to', 'survive', 'the', 'fire', 'on', 'the', 'happenstance', 'that', 'it', 'was', 'out', 'on', 'the', 'water', 'returning', 'from', 'a', 'trip', 'to', 'pembroke', 'that', 'morning', '.'], ['promoted', 'to', 'brevet', 'major', 'on', '1', 'march', '1', '7', '9', '4', ',', 'dunlop', 'was', 'confirmed', 'major', 'of', 'his', 'regiment', 'on', '1', '5', 'september', '1', '7', '9', '5', 'and', 'promoted', 'to', 'lieutenant-colonel', 'of', 'the', '7', '7', 'th', 'foot', 'on', '1', '2', 'december', '1', '7', '9', '5', '.'], ['governor', 'stirling', 'gave', 'giustiniani', 'a', 'parcel', 'of', 'his', 'own', 'land', 'at', 'woodbridge', ',', 'guildford', ',', 'upon', 'which', 'to', 'start', 'a', 'mission', 'and', 'school', ',', 'which', 'he', 'intended', 'to', 'be', 'along', 'moravian', 'lines', '.'], ['he', 'assisted', 'this', 'master', 'in', 'engraving', 'the', 'famous', 'pictures', 'of', 'raphael', 'in', 'the', 'vatican', 'city', ',', 'and', 'the', 'print', 'which', 'represents', 'the', '``', 'miracle', 'of', 'bolsena', \"''\", 'is', 'inscribed', 'with', 'his', 'name', '.'], ['the', 'number', 'of', 'foreigners', 'wanting', 'to', 'study', 'in', 'china', 'has', 'been', 'rising', 'by', 'approximately', '2', '0', '%', 'annually', 'since', 'the', 'reform', 'and', 'opening', 'period', 'began', '.'], ['mir', 'murad', 'ali', 'khan', 'was', 'succeeded', 'by', 'mir', 'noor', 'muhammad', ',', 'who', 'was', 'in', 'turn', 'succeeded', 'by', 'mir', 'naseer', 'khan', 'talpur', '.'], ['the', 'eight', 'whorls', 'of', 'the', 'teleoconch', 'are', 'moderately', 'well', 'rounded', '.'], ['they', 'hold', 'the', '9', 'th', 'longest', 'winning', 'streak', 'in', 'iowa', 'boys', \"'\", 'basketball', 'history', ',', 'with', '4', '9', 'consecutive', 'wins', '(', 'including', 'postseason', 'games', ')', 'from', '1', '9', '9', '6', 'through', '1', '9', '9', '8', '.'], ['it', 'is', 'taught', 'by', 'professors', 'from', 'paris', 'ii', 'and', 'leads', 'to', 'exactly', 'the', 'same', 'degree', 'offerings', 'the', 'same', 'rights', '.'], ['``', 'kannywood', \"''\", 'has', 'origins', 'in', 'the', 'late', '1', '9', '9', '0', 's', ',', 'when', 'sunusi', 'shehu', 'of', '``', 'tauraruwa', 'magazine', \"''\", 'created', 'the', 'term', 'kannywood', 'and', 'then', 'it', 'became', 'the', 'popular', 'reference', 'term', 'for', 'the', 'industry', 'in', 'the', 'northern', 'nigeria', '.'], ['whether', 'he', 'did', 'it', 'formally', 'or', 'not', 'did', \"n't\", 'seem', 'important', 'to', 'anyone', 'at', 'the', 'time', ',', 'getting', 'the', 'operation', 'underway', 'was', '.'], ['elementary', 'events', 'and', 'their', 'corresponding', 'outcomes', 'are', 'often', 'written', 'interchangeably', 'for', 'simplicity', ',', 'as', 'such', 'an', 'event', 'corresponds', 'to', 'precisely', 'one', 'outcome', '.'], ['on', '1', 'april', '1', '9', '1', '6', ',', 'it', 'was', 'renamed', 'detachment', 'nieuport', 'de', 'corcieux', '.'], ['this', 'is', 'thought', 'of', 'as', 'a', 'somewhat', 'permanent', 'perception', 'of', 'oneself', 'that', 'is', 'unaffected', 'by', 'environmental', 'and', 'temporary', 'cues', 'and', 'influences', '.'], ['many', 'of', 'the', 'victims', ',', 'whose', 'ages', 'ranged', 'from', '6', '5', 'to', '9', '7', ',', 'were', 'incapacitated', 'and', 'suffered', 'from', 'alzheimer', \"'s\", 'disease', '.'], ['on', '1', '3', 'march', ',', 'prime', 'minister', 'of', 'spain', 'pedro', 'sánchez', 'announced', 'a', 'declaration', 'of', 'a', 'nationwide', 'state', 'of', 'alarm', 'for', '1', '5', 'days', ',', 'to', 'become', 'effective', 'the', 'following', 'day', 'after', 'the', 'approval', 'of', 'the', 'council', 'of', 'ministers', '.'], ['he', 'is', 'brother', 'to', 'richard', 'dela', 'peña', ',', 'who', 'also', 'has', 'an', 'accomplished', 'background', 'in', 'basketball', '.'], ['cafero', 'first', 'became', 'a', 'member', 'of', 'the', 'norwalk', 'republican', 'town', 'committee', 'in', '1', '9', '8', '7', '.'], ['to', 'access', 'free', 'energy-efficiency', 'advice', ',', 'equipment', 'and', 'incentives', '.'], ['``', 'webster', \"'s\", 'new', 'millennium', 'dictionary', 'of', 'english', \"''\", 'defines', '``', 'flash', 'mob', \"''\", 'as', '``', 'a', 'group', 'of', 'people', 'who', 'organize', 'on', 'the', 'internet', 'and', 'then', 'quickly', 'assemble', 'in', 'a', 'public', 'place', ',', 'do', 'something', 'bizarre', ',', 'and', 'disperse', '.', \"''\"], ['nurina', 'land', 'district', 'is', 'a', 'land', 'district', '(', 'cadastral', 'division', ')', 'of', 'western', 'australia', ',', 'located', 'within', 'the', 'eucla', 'land', 'division', 'on', 'the', 'nullarbor', 'plain', '.'], ['1', '3', '5', '9', 'wakes', 'the', 'crew', 'to', 'visit', 'the', 'planet', '.'], ['although', 'early', 'bay-and-gables', 'were', 'symmetrical', 'and', 'were', 'built', 'as', 'mirrored', 'pairs', ';', 'by', '1', '8', '7', '8', ',', 'rows', 'of', 'identical', 'semi-detached', 'bay-and-gable', 'units', 'were', 'built', '.'], ['the', 'following', 'day', ',', 'as', 'he', 'wrote', 'to', 'annemarie', 'of', 'his', 'encounter', 'with', 'a', 'sopwith', 'pup', 'pilot', ':'], ['``', 'good', 'morning', 'america', \"''\", 'featured', 'a', '``', 'gilligan', \"'s\", 'island', \"''\", 'reunion', 'presided', 'over', 'by', 'guest', 'host', 'kathie', 'lee', 'gifford', 'on', 'november', '2', '6', ',', '1', '9', '8', '2', '.'], ['as', 'in', 'finland', ',', 'an', 'academic', 'degree', 'in', 'engineering', 'is', 'required', 'in', 'order', 'to', 'be', 'eligible', 'for', 'admission', '.'], ['with', 'the', 'release', 'of', '``', 'game', 'dev', 'story', \"''\", 'for', 'ios', 'and', 'android', 'in', '2', '0', '1', '0', ',', 'kairosoft', 'found', 'itself', 'a', 'large', 'hit', ',', 'which', 'reached', 'the', 'top', 'ten', 'in', 'iphone', 'app', 'sales', 'in', 'its', 'first', 'week', '.'], ['``', 'note', ':', 'pos', '=', 'position', ';', 'g', '=', 'games', 'played', ';', 'ab', '=', 'at', 'bats', ';', 'h', '=', 'hits', ';', 'avg', '.'], ['he', 'competed', 'in', 'the', 'four', 'man', 'event', 'at', 'the', '2', '0', '0', '2', 'winter', 'olympics', ',', 'representing', 'yugoslavia', '.'], ['he', 'was', 'chosen', 'to', 'represent', 'queensland', 'in', 'the', 'state', 'cup', 'representative', 'team', ',', 'unfortunately', 'going', 'down', '3', '6', 'to', '1', '6', 'in', 'the', 'curtain', 'raiser', 'to', 'state', 'of', 'origin', 'at', 'sydney', 'olympic', 'stadium', '.'], ['on', 'january', '2', '0', ',', '2', '0', '0', '7', ',', 'sexxxy', 'eddy', 'lost', 'a', 'match', 'against', 'iws', 'canadian', 'champion', 'don', 'paysan', '.'], ['also', 'as', 'a', 'child', ',', 'he', 'enjoyed', 'visiting', 'chicago', 'museums', ',', 'libraries', 'and', 'the', 'adler', 'planetarium', 'that', 'supplemented', 'his', 'avid', 'science-fiction', 'reading', '.'], ['story', 'concepts', 'were', 'first', 'conceived', 'in', 'late', '2', '0', '1', '3', ',', 'following', 'the', 'development', 'and', 'release', 'of', '``', 'the', 'last', 'of', 'us', \"''\", '.'], ['however', ',', 'there', 'is', 'evidence', 'that', 'life', 'could', 'have', 'evolved', 'over', '4', '.', '2', '8', '0', 'billion', 'years', 'ago', '.'], ['more', 'than', '3', '5', ',', '0', '0', '0', 'people', 'signed', 'a', 'number', '1', '0', 'petition', ',', 'started', 'by', 'andrew', 'heaney', 'at', 'isp', 'talktalk', ',', 'objecting', 'to', 'being', 'disconnected', 'without', 'fair', 'trial', '.'], ['patsey', 'was', 'often', 'whipped', 'and', 'had', 'many', 'scars', 'on', 'her', 'back', '.'], ['in', 'exchange', 'for', 'tcm', 'dropping', 'all', 'lawsuits', 'that', 'contest', 'the', 'government', \"'s\", 'handling', 'of', 'the', 'tendering', 'process', ',', 'reolian', 'was', 'deprived', 'from', 'one', 'of', 'its', 'awarded', 'section', '.'], ['this', 'lunar', 'eclipse', 'is', 'related', 'to', 'two', 'total', 'solar', 'eclipses', 'of', 'solar', 'saros', '1', '3', '6', '.'], ['entries', 'in', 'the', 'world', 'show', 'are', 'from', 'fédération', 'cynologique', 'internationale', 'member', 'clubs', ',', 'and', 'non-member', 'clubs', '(', 'such', 'as', 'the', 'american', 'kennel', 'club', ')', 'by', 'invitation', '.'], ['there', 'is', 'a', 'temple', 'of', 'lord', 'shivji', 'named', 'prasannath', 'mandir', '.'], ['``', 'the', 'new', 'york', 'times', \"''\", 'stated', ':', '``', 'the', 'trailer', 'opens', 'with', 'scenes', 'of', 'egyptian', 'security', 'forces', 'standing', 'idle', 'as', 'muslims', 'pillage', 'and', 'burn', 'the', 'homes', 'of', 'egyptian', 'christians', '.'], ['she', 'was', 'part', 'of', 'an', '1', '1', '-member', 'delegation', 'to', 'observe', 'the', 'conduct', 'of', 'the', '2', '0', '1', '6', 'parliamentary', 'elections', 'in', 'morocco', '.'], ['after', 'the', 'french', 'relinquished', 'west', 'louisiana', 'to', 'the', 'spanish', ',', 'new', 'orleans', 'merchants', 'attempted', 'to', 'ignore', 'spanish', 'rule', 'and', 'even', 're-institute', 'french', 'control', 'on', 'the', 'colony', '.'], ['ndma', 'receptors', 'have', 'multiple', 'binding', 'sites', 'just', 'like', 'ionotropic', 'gaba', 'receptors', 'and', 'can', 'be', 'influenced', 'by', 'co-agonists', 'such', 'the', 'glycine', 'neurotransmitter', 'or', 'phencyclidine', '(', 'pcp', ')', '.'], ['kim', \"'s\", 'bandmates', 'later', 'stated', 'that', 'they', 'had', 'resented', 'kim', 'up', 'until', 'their', 'debut', 'due', 'to', 'the', 'change', 'in', 'line-up', 'and', 'kim', \"'s\", 'relatively', 'short', 'training', 'period', 'compared', 'to', 'them', '.'], ['the', 'oil', 'ministry', 'imposed', 'a', 'fine', 'of', '₹', '7', '0', '0', '0', 'crores', 'on', 'mukesh', 'ambani', \"'s\", 'company', 'for', 'the', 'sharp', 'drop', 'in', 'production', 'of', 'gas', 'and', 'violations', 'mentioned', 'in', 'cag', \"'s\", '2', '0', '1', '1', 'report', '.'], ['``', 'c', \"''\", 'means', 'there', 'are', 'three', 'powered', 'axles', 'under', 'the', 'unit', '.'], ['shirley', 'is', 'so', 'distraught', 'by', 'her', 'failed', 'attempts', 'to', 'connect', 'with', 'any', 'guy', ',', 'she', 'plans', 'on', 'drowning', 'herself', 'in', 'the', 'bath', 'tub', '.'], ['the', 'current', 'two', 'official', 'varieties', 'of', 'written', 'norwegian', ',', 'bokmål', 'and', 'nynorsk', '(', 'until', '1', '9', '2', '9', 'called', 'riksmål', 'and', 'landsmål', 'respectively', ')', ',', 'were', 'not', 'developed', 'until', 'the', 'late', '1', '9', 'th', 'century', '.'], ['``', 'redemption', \"''\", 'takes', 'place', 'approximately', '4', '2', 'months', 'after', 'day', '6', 'and', 'day', '7', 'takes', 'place', '6', '5', 'days', 'after', '``', 'redemption', \"''\", '.'], ['the', 'hdz', 'ruled', 'croatia', 'from', '1', '9', '9', '0', 'before', 'the', 'country', 'gained', 'independence', 'from', 'yugoslavia', 'until', '2', '0', '0', '0', 'and', ',', 'in', 'coalition', 'with', 'junior', 'partners', ',', 'from', '2', '0', '0', '3', 'to', '2', '0', '1', '1', ',', 'and', 'since', '2', '0', '1', '6', '.'], ['at', 'work', 'raj', 'recruits', 'jenny', ',', 'a', 'woman', 'with', 'no', 'good', 'qualifications', 'when', 'she', 'gives', 'him', 'a', 'hint', 'that', 'she', 'is', 'ready', 'to', 'please', 'him', 'outside', 'the', 'office', 'and', 'later', 'that', 'night', 'they', 'get', 'intimate', 'with', 'each', 'other', '.'], ['mowrer', 'detailed', 'the', 'use', 'of', 'a', 'bedwetting', 'alarm', 'that', 'sounds', 'when', 'children', 'urinate', 'while', 'asleep', '.'], ['trevor', 'francis', ',', 'former', 'nottingham', 'forest', 'and', 'birmingham', 'city', 'professional', 'footballer', ',', 'and', 'the', 'first', 'english', 'footballer', 'to', 'cost', '£', '1', 'million', ',', 'was', 'born', 'and', 'brought', 'up', 'in', 'plymouth', '.'], ['aside', 'from', 'the', 'measurement', ',', 'the', 'beauty', 'of', 'the', 'oil', 'drop', 'experiment', 'is', 'that', 'it', 'is', 'a', 'simple', ',', 'elegant', 'hands-on', 'demonstration', 'that', 'charge', 'is', 'quantized', '.'], ['flaherty', 'hall', ',', 'for', 'women', ',', 'was', 'completed', 'and', 'opened', 'that', 'semester', 'as', 'well', '.'], ['after', 'a', 'separate', 'trial', ',', 'charles', 'sweetman', 'received', 'a', 'fourteen-year', 'prison', 'sentence', 'for', 'his', 'part', ',', 'plus', '5', '0', 'lashes', ',', 'to', 'be', 'handed', 'out', 'on', 'two', 'separate', 'occasions', '.'], ['the', 'new', 'ownership', 'made', 'a', 'number', 'of', 'front', 'office', 'changes', 'with', 'the', 'aim', 'of', 'returning', 'the', 'team', 'to', 'the', 'top', 'of', 'the', 'russian', 'premier', 'league', '.'], ['the', 'second', ',', 'after', '2', '3', '0', 'years', ',', 'was', 'that', 'of', 'seth', 'begotten', 'of', 'adam', '.'], ['police', 'alleged', 'that', 'arcelis', 'cruz', ',', 'a', 'young', 'puerto', 'rican', 'man', ',', 'was', 'armed', 'and', 'involved', 'in', 'a', 'street', 'fight', '.'], ['the', 'next', 'three', 'most', 'popular', 'parties', 'were', 'the', 'fdp', '(', '2', '2', '.', '0', '5', '%', ')', ',', 'the', 'sp', '(', '1', '5', '.', '4', '6', '%', ')', 'and', 'the', 'green', 'party', '(', '1', '2', '.', '7', '6', '%', ')', '.'], ['singaporean', 'hokkien', 'is', 'the', 'largest', 'non-mandarin', 'chinese', 'dialect', 'spoken', 'in', 'singapore', '.'], ['he', 'also', 'served', 'edward', 'as', 'a', 'diplomat', 'in', 'the', 'negotiations', 'over', 'the', 'proposed', 'marriage', 'of', 'the', 'future', 'edward', 'ii', 'to', 'margaret', ',', 'the', 'maid', 'of', 'norway', ',', 'which', 'never', 'came', 'to', 'pass', 'after', 'margaret', \"'s\", 'death', 'soon', 'after', 'the', 'marriage', 'was', 'arranged', '.'], ['the', 'jailhouse', 'warden', ',', 'armed', 'with', 'a', 'thompson', 'sub', 'machine', 'gun', ',', 'threatens', 'to', 'execute', 'all', 'the', 'prisoners', 'if', 'the', 'riot', 'does', \"n't\", 'stop', 'soon', ',', 'but', 'one', 'of', 'them', ',', 'scarface', 'jones', ',', 'retaliates', 'by', 'carrying', 'dynamite', '.'], ['in', 'march', '2', '0', '1', '8', 'ferguson', 'laid', 'a', 'charge', 'of', 'rape', 'against', 'jordaan', 'and', 'said', 'she', 'expected', 'more', 'women', 'to', 'come', 'forward', 'about', 'assault', 'by', 'jordaan', '.'], ['kuroki', 'responds', ',', '``', 'the', 'men', 'who', 'find', 'my', 'videos', 'frightening', 'often', 'recognize', 'the', 'wilder', ',', 'more', 'uninhibited', 'side', 'of', 'their', 'own', 'girlfriends', '.'], ['the', 'following', 'year', 'he', 'successfully', 'contested', 'the', 'election', 'at', 'cockermouth', ',', 'where', 'he', 'was', 'classed', 'as', 'a', 'court', '(', 'tory', ')', 'supporter', '.'], ['in', 'the', 'early', '1', '8', '9', '0', 's', ',', 'a', 'group', 'of', 'four', 'brothers', '(', 'giuseppe', 'morello', ',', 'and', 'his', 'half-brothers', 'nicholo', ',', 'vincenzo', 'and', 'ciro', 'terranova', ')', 'arrived', 'in', 'new', 'york', 'city', 'from', 'corleone', ',', 'sicily', '.'], ['anderson', 'municipal', 'airport', 'in', 'indiana', 'was', 'another', 'major', 'hub', 'for', 'gmats', ',', 'as', 'the', 'region', 'had', 'important', 'production', 'facilities', 'and', 'no', 'regularly', 'scheduled', 'flights', '.'], ['the', 'soviet', 'union', 'invaded', 'from', 'the', 'north', 'with', 'the', 'armored', 'forces', 'occupying', 'iran', \"'s\", 'northern', 'provinces', 'and', 'the', 'british', 'coming', 'from', 'the', 'south', '.'], ['communication', 'may', 'be', 'direct', 'or', 'indirect', ',', 'where', 'memes', 'transmit', 'from', 'one', 'individual', 'to', 'another', 'through', 'a', 'copy', 'recorded', 'in', 'an', 'inanimate', 'source', ',', 'such', 'as', 'a', 'book', 'or', 'a', 'musical', 'score', '.'], ['a', 'study', 'examined', 'the', 'parasocial', 'relationships', 'between', 'men', 'and', 'superheroes', ';', 'the', 'study', 'looked', 'at', 'muscular', 'vs.', 'non-muscular', 'superheroes', 'and', 'men', 'who', 'either', 'did', 'or', 'did', 'not', 'develop', 'a', 'one-sided', 'psychological', 'bond', 'with', 'a', 'superhero', 'character', '.'], ['gambling', 'on', 'horse', 'races', 'appears', 'to', 'go', 'hand-in', 'hand', 'with', 'racing', 'and', 'has', 'a', 'long', 'history', 'as', 'well', '.'], ['``', 'the', 'sociolinguistic', 'reality', 'of', 'these', 'perceptions', 'has', 'yet', 'to', 'be', 'explored', \"''\", '.'], ['van', 'eysinga', 'was', 'the', 'dutch', 'government', \"'s\", 'representative', 'at', 'the', '1', '9', '3', '0', 'league', 'of', 'nations', 'codification', 'conference', ',', 'which', 'purported', 'to', 'codify', 'certain', 'aspects', 'of', 'international', 'law', '.'], ['it', 'takes', 'place', 'in', 'spring', 'and', 'nearly', 'every', 'sports', 'hall', 'available', 'is', 'used', '.'], ['mermaids', 'have', 'been', 'a', 'popular', 'subject', 'of', 'art', 'and', 'literature', 'in', 'recent', 'centuries', ',', 'such', 'as', 'in', 'hans', 'christian', 'andersen', \"'s\", 'literary', 'fairy', 'tale', '``', 'the', 'little', 'mermaid', \"''\", '(', '1', '8', '3', '6', ')', '.'], ['in', '1', '8', '9', '5', ',', 'boundaries', 'were', 'redrawn', ',', 'and', 'the', 'territory', 'covering', 'glamorgan', ',', 'monmouthshire', 'and', 'herefordshire', 'was', 'named', 'the', '``', 'diocese', 'of', 'newport', \"''\", '.'], ['the', 'philharmonic', 'is', 'a', 'department', 'of', 'the', 'bbc', 'north', 'group', 'division', 'based', 'at', 'mediacityuk', ',', 'salford', '.'], ['the', 'little', 'buffalo', 'oil', 'spill', 'on', 'april', '2', '9', ',', '2', '0', '1', '1', ',', 'resulted', 'in', 'the', 'discharge', 'of', '2', '8', ',', '0', '0', '0', 'barrels', 'of', 'oil', 'in', 'an', 'isolated', 'stretch', 'of', 'boreal', 'forest', 'in', 'northern', 'alberta', ',', 'about', 'ten', 'kilometres', 'from', 'little', 'buffalo', ',', 'alberta', '.'], ['he', 'was', 'named', 'the', 'professor', 'of', 'painting', 'at', 'the', 'academy', 'of', 'fine', 'arts', 'of', 'parma', ',', 'and', 'in', '1', '7', '7', '7', 'was', 'made', 'academic', 'of', 'honor', 'for', 'the', 'clementine', 'academy', 'in', 'bologna', '.'], ['liang', 'yu', 'started', 'donating', 'sanitary', 'pads', 'by', 'herself', 'on', 'february', '7', ',', 'but', 'she', 'soon', 'realized', 'that', 'her', 'donations', 'were', 'only', 'a', 'drop', 'in', 'the', 'bucket', '.'], ['he', 'also', 'acted', 'in', 'plays', ',', 'produced', 'theatre', 'and', 'taught', '.'], ['it', 'was', 'filmed', 'in', 'technicolor', 'and', 'released', 'by', 'warner', 'bros', '..'], ['mary', 'later', 'miscarried', 'twins', 'by', 'bothwell', 'while', 'a', 'prisoner', 'at', 'lochleven', 'castle', '.'], ['commissioned', 'on', '9', 'february', '1', '9', '6', '8', 'and', 'decommissioned', 'on', '9', 'march', '1', '9', '9', '0', ',', '``', 'stalwart', \"''\", 'served', 'as', 'a', 'destroyer', 'tender', ',', 'the', 'ran', 'flagship', ',', 'and', 'a', 'training', 'vessel', 'during', 'her', 'career', '.'], ['the', 'international', 'airport', 'for', 'mayotte', 'is', 'located', 'on', 'pamanzi', 'island', 'in', 'the', 'neighboring', 'commune', 'of', 'pamandzi', '.'], ['the', 'different', 'buddhist', 'schools', 'had', 'their', 'own', 'collections', 'of', 'these', 'tales', 'and', 'often', 'disagreed', 'on', 'which', 'stories', 'were', 'canonical', '.'], ['it', 'is', 'endemic', 'to', 'south', 'africa', ',', 'where', 'it', 'occurs', 'in', 'the', 'dry', ',', 'western', 'interior', 'regions', 'of', 'namaqualand', 'and', 'bushmanland', '.'], ['unlike', 'the', 'other', 's', 'series', 'adventures', ',', '``', 'expedition', 'to', 'the', 'barrier', 'peaks', \"''\", 'was', 'not', 'included', 'in', 'the', '``', 'dungeon', 'survival', 'guide', \"''\", 'by', 'author', 'bill', 'slavicsek', 'because', 'to', 'him', 'it', 'was', 'a', '``', 'wonderful', 'adventure', \"''\", ',', 'but', 'not', '``', 'a', 'd', '&', 'amp', ';', 'd', 'adventure', '.'], ['millimages', 'had', 'plans', 'for', 'a', 'second', 'series', ',', 'but', 'the', 'programme', 'was', 'promptly', 'discontinued', ',', 'as', 'it', 'was', 'not', 'attracting', 'enough', 'audiences', '.'], ['according', 'to', 'a', 'report', 'in', 'the', '``', 'washington', 'post', \"''\", ',', 'every', 'great', 'african', 'american', 'professional', 'golfer', 'in', 'the', 'united', 'states', 'has', 'played', 'at', 'the', 'course', 'since', 'its', 'opening', ',', 'with', 'the', 'exception', 'of', 'tiger', 'woods', '.'], ['reformed', 'churches', 'in', 'south', 'africa', 'is', 'a', 'member', 'of', 'the', 'world', 'reformed', 'fellowship', 'and', 'the', 'international', 'conference', 'of', 'reformed', 'churches'], ['the', 'town', 'acquired', 'its', 'first', 'steam', 'driven', 'fire', 'engine', 'in', '1', '9', '1', '4', 'which', 'cost', '£', '1', '0', '0', 'and', 'was', 'paid', 'for', 'by', 'voluntary', 'subscription', '.'], ['usually', 'the', 'term', 'gluteomics', 'is', 'used', 'in', 'the', 'context', 'of', 'global', 'approach', 'to', 'identify', ',', 'target', 'or', 'detect', 'large', 'sets', 'of', 'the', 'disease-related', 'sequences', '.'], ['however', ',', 'news', 'of', 'higuaín', \"'s\", 'departure', 'to', 'madrid', 'was', 'premature', ',', 'as', 'river', 'plate', 'rejected', 'a', '€', '1', '0', 'million', 'bid', 'for', 'the', 'striker', ',', 'stating', 'they', 'would', 'prefer', 'him', 'to', 'remain', 'until', 'at', 'least', 'june', '2', '0', '0', '7', '.'], ['after', 'liu', 'bang', 'prevailed', 'and', 'founded', 'the', 'han', 'dynasty', ',', 'zang', 'tu', 'was', 'appointed', 'the', 'prince', 'of', 'yan', ',', 'and', 'governed', 'the', 'principality', 'of', 'yan', 'from', 'ji', '.'], ['in', 'the', 'early', 'years', 'of', 'its', 'existence', 'the', 'office', 'of', '``', 'the', 'hay', 'standard', \"''\", 'was', 'located', 'at', 'the', 'government', 'wharf', 'at', 'hay', '.'], ['this', 'system', 'consisted', 'of', 'two', 'arc', 'lights', 'placed', 'in', 'the', 'middle', 'of', 'a', 'white', 'parabolic', 'reflector', 'that', 'measured', 'in', 'diameter', '.'], ['``', 'saratoga', \"''\", 'sank', 'the', 'during', 'the', 'battle', 'of', 'the', 'eastern', 'solomons', 'three', 'months', 'later', ',', 'then', 'supported', 'a', 'number', 'of', 'american', 'operations', 'in', 'the', 'pacific', 'before', 'being', 'attached', 'to', 'the', 'british', 'eastern', 'fleet', 'for', 'operations', 'in', 'the', 'indian', 'ocean', '.'], ['the', 'sms', 'portfolio', 'contained', 'six', 'volumes', ',', 'each', 'of', 'which', 'were', 'shipped', 'out', 'from', 'the', 'artists', 'to', 'subscribers', '.'], ['will', 'and', 'abby', 'were', 'walking', 'down', 'the', 'street', 'after', 'having', 'lunch', 'with', 'his', 'parents', ',', 'when', 'abby', 'announced', 'that', 'she', 'was', 'having', 'a', 'girl', 'and', 'wanted', 'to', 'name', 'her', 'dylan', '.'], ['erv', 'wilson', 'patented', 'a', 'keyboard', 'in', '1', '9', '6', '7', 'with', 'five', 'perpendicular', 'chromatic', 'lines', 'of', 'keys', 'in', 'an', 'octave', ',', 'using', 'fourths', 'as', 'generators', '.'], ['artwork', 'is', 'incorporated', 'into', 'vdara', \"'s\", 'interior', 'and', 'exterior', 'design', '.'], ['in', 'march', '1', '9', '6', '6', ',', 'duncan', 'announced', 'his', 'candidacy', 'for', 'the', 'democratic', 'nomination', ',', 'which', 'was', 'quickly', 'endorsed', 'by', 'neuberger', '.'], ['the', 'asce-asme', 'journal', 'of', 'risk', 'and', 'uncertainty', 'in', 'engineering', 'systems', 'is', 'a', 'peer-reviewed', 'scientific', 'journal', 'established', 'in', '2', '0', '1', '4', 'by', 'the', 'american', 'society', 'of', 'civil', 'engineers', '(', 'asce', ')', 'and', 'the', 'american', 'society', 'of', 'mechanical', 'engineers', '(', 'asme', ')', '.'], ['the', 'ellesmerocerids', 'were', 'the', 'only', 'shelled', 'cephalopods', 'known', 'to', 'have', 'survived', 'the', 'end-cambrian', 'extinction', ';', 'all', 'subsequent', 'cephalopods', 'are', 'thus', 'thought', 'to', 'be', 'derived', 'from', 'these', 'forms', ',', 'which', 'diversified', 'throughout', 'the', 'ordovician', 'period', '.'], ['there', 'are', 'three', 'types', 'of', 'items', ',', 'to', 'which', 'the', 'inventory', 'is', 'divided', ':', '``', 'equipment', \"''\", ',', 'items', 'characters', 'may', 'wear', 'on', 'their', 'bodies', ';', '``', 'consumable', \"''\", 'which', 'consists', 'of', 'consumable', 'items', 'that', 'may', 'recover', 'hp', 'or', 'mp', ',', 'or', 'perform', 'an', 'effect', '(', 'i.e', '.'], ['the', 'area', 'by', 'the', 'omerê', 'river', 'is', 'believed', 'to', 'be', 'the', 'original', 'territory', 'of', 'the', 'kanoê', 'people', 'by', 'victor', 'dequech', '(', '1', '9', '4', '2', ')', 'and', 'etta', 'becker-donner', '(', '1', '9', '5', '5', ')', '.'], ['because', 'of', 'the', 'configuration', 'of', 'their', 'glycosidic', 'bonds', ',', 'galacto-oligosaccharides', '(', 'gos', ')', 'largely', 'resist', 'hydrolysis', 'by', 'salivary', 'and', 'intestinal', 'digestive', 'enzymes', '.'], ['emory', 'united', 'methodist', 'church', 'in', 'new', 'oxford', ',', 'pa', ',', 'erected', 'in', '1', '8', '8', '7', ',', 'was', 'named', 'for', 'him', 'after', 'he', 'helped', 'to', 'establish', 'the', 'emory', 'sunday', 'school', 'during', 'the', 'church', \"'s\", 'early', 'years', '-', 'between', '1', '8', '3', '2', 'and', '1', '8', '3', '5', '.'], ['with', 'her', 'sister', 'emilie', 'de', 'azevedo', 'brown', ',', 'she', 'created', 'the', \"''\", 'signing', 'time', '!', \"''\"], ['as', 'they', 'become', 'acquainted', ',', 'marlowe', 'comes', 'to', 'like', 'the', 'man', 'and', 'appreciate', 'his', 'cunning', '.'], ['later', ',', 'in', '1', '5', '2', '7', ',', 'francisco', 'cortés', 'de', 'san', 'buenaventura', 'moved', 'the', 'city', 'to', 'its', 'present', 'location', 'and', 'gave', 'it', 'the', 'name', 'of', '``', 'san', 'sebastián', 'de', 'colima', \"''\", '.'], ['in', '2', '0', '1', '4', ',', 'after', 'working', 'on', 'various', 'production', 'roles', 'on', 'river', 'city', ',', 'he', 'was', 'offered', 'the', 'chance', 'to', 'direct', 'his', 'very', 'first', 'episode', 'of', 'the', 'television', 'series', '.'], ['the', 'road', 'heads', 'through', 'several', 'more', 'miles', 'of', 'rural', 'areas', 'with', 'some', 'homes', 'and', 'curves', 'to', 'the', 'east', '.'], ['on', '6', 'july', '2', '0', '1', '8', ',', 'members', 'of', 'the', 'nrm', 'assaulted', 'two', 'pro-israel', 'activists', 'in', 'gotland', '.'], ['at', 'that', 'time', ',', 'the', 'club', 'had', 'the', 'most', 'members', 'on', 'record', '.'], ['there', 'is', 'an', 'added', 'feature', 'though-', 'a', 'champu', 'in', 'odia', 'usually', 'has', '3', '4', 'songs', ',', 'one', 'for', 'each', 'consonant', 'of', 'the', 'alphabet', '.'], ['in', '1', '9', '6', '3', ',', 'seymour', 'and', 'three', 'business', 'partners', ',', 'including', 'co-producer', 'art', 'cervi', '(', 'bozo', 'the', 'clown', ')', ',', 'created', '``', 'teen', 'town', \"''\", ',', 'a', 'dance-party', 'format', 'similar', 'to', 'american', 'bandstand', ',', 'with', 'each', 'show', 'focusing', 'on', 'a', 'different', 'detroit', 'area', 'high', 'school', '.'], [')', \"''\", ',', 'the', 'character', 'of', 'whom', 'is', 'based', 'on', 'dj', 'koo', 'from', 'trf', '.'], ['the', 'software', 'can', 'be', 'deployed', 'on-premises', ',', 'hosted', 'in', 'a', 'data', 'center', ',', 'or', 'run', 'on', 'a', 'cloud-computing', 'platform', '(', 'see', 'operating', 'environment', 'below', ')', '.'], ['this', 'led', 'to', 'queensland', 'hospitals', 'refusing', 'to', 'perform', 'medical', 'abortions', 'given', 'the', 'section', '2', '8', '2', 'exemption', 'from', 'criminal', 'liability', 'appeared', 'to', 'cover', 'only', 'surgical', 'abortion', '.'], ['lawson', 'petitioned', 'against', 'the', 'return', ',', 'but', 'no', 'report', 'was', 'forthcoming', '.'], ['sbt', 'network', 'also', 'confirmed', 'in', 'its', 'tv', 'news', 'program', '``', 'sbt', 'brasil', \"''\", 'that', 'the', 'images', 'of', 'the', 'paper', 'ball', 'preceded', 'the', 'scene', 'with', 'the', 'roll', 'of', 'duct', 'tape', '.'], ['the', 'closest', 'siding', 'on', 'the', 'government', 'railway', 'to', 'the', 'eureka', 'creek', 'tin', 'fields', 'was', 'boonmoo', ',', 'also', 'known', 'as', 'the', '3', '5', 'mile', ',', 'at', '.'], ['documentary', 'evidence', 'from', 'papyri', 'indicates', 'that', 'in', 'reality', ',', 'the', 'boy', 'was', 'initially', 'maintained', 'as', 'heir', 'and', 'only', 'removed', 'after', 'the', 'birth', 'of', 'ptolemy', 'memphites', '.'], ['he', 'is', 'employed', 'in', 'the', 'criminal', 'department', 'of', 'kingsley', 'napley', ',', 'a', 'firm', 'of', 'solicitors', 'based', 'in', 'farringdon', ',', 'central', 'london', '.'], ['title', 'ix', 'states', 'that', 'the', 'fda', 'should', 'apply', 'accelerated', 'approval', 'and', 'fast', 'track', 'provisions', 'to', 'expedite', 'the', 'development', 'of', 'treatments', 'for', 'serious', 'or', 'life-threatening', 'diseases', ',', 'while', 'maintaining', 'safety', 'and', 'effectiveness', 'standards', 'for', 'such', 'treatments', '.'], ['their', 'elongate', 'chrysalids', 'are', 'yellowish-green', ',', 'and', 'each', 'has', 'a', 'dark', 'dorsal', 'stripe', 'seen', 'in', 'caterpillars', '.'], ['his', 'thesis', 'is', 'titled', '``', 'design', 'considerations', 'for', 'query', 'dissemination', 'in', 'wireless', 'sensor', 'networks', \"''\", '.'], ['prince', 'isaravongs', 'vorarajakumara', 'died', 'at', 'the', 'babyhood', 'on', '1', '7', 'september', '1', '8', '7', '6', ',', 'at', 'the', 'age', 'of', 'only', '1', 'year', '9', 'months', '.'], ['bruno', 'conti', '(', ';', 'born', '1', '3', 'march', '1', '9', '5', '5', ')', 'is', 'an', 'italian', 'football', 'manager', 'and', 'former', 'player', '.'], ['at', 'the', 'yale', 'school', 'of', 'drama', ',', 'where', 'he', 'obtained', 'an', 'm.f.a', '.'], ['other', 'places', ',', 'such', 'as', 'in', 'the', 'rainesfjellet', 'area', ',', 'have', 'rough', 'stone', 'screes', 'without', 'vegetation', '.'], ['murray', 'sent', 'highway', 'crews', 'across', 'the', 'new', 'bridge', 'to', 'destroy', 'the', 'barricades', '.'], ['it', 'also', 'formed', 'an', 'important', 'connection', 'with', 'the', 'elster', 'valley', 'railway', 'between', 'bohemia', 'and', 'western', 'germany', '.'], ['general', 'frank', 'w.', 'milburn', ',', 'the', 'i', 'corps', \"'\", 'commander', ',', 'watched', 'the', 'action', 'from', 'an', 'apple', 'orchard', 'at', 'the', 'side', 'of', 'the', 'road', ',', 'and', 'about', 'midafternoon', 'general', 'gay', 'came', 'up', 'and', 'joined', 'him', '.'], ['the', 'rulebook', 'contains', '8', '1', 'combinations', ',', 'based', 'on', 'patterns', 'and', 'scoring', 'elements', 'popular', 'in', 'classic', 'and', 'modern', 'regional', 'chinese', 'variants', ';', 'some', 'table', 'practices', 'of', 'japan', 'have', 'also', 'been', 'adopted', '.'], ['a', 'north', 'african', 'tirailleur', 'regiment', 'was', 'composed', 'of', 'over', '3', ',', '0', '0', '0', 'men', '(', 'including', '5', '0', '0', 'officers', 'and', 'sous-officers', ')', 'and', '2', '0', '0', 'vehicles', '.'], ['after', 'the', 'necklace', 'had', 'been', 'purchased', 'by', 'rohan', 'and', 'given', 'to', 'saint-remy', 'to', 'pass', 'along', 'to', 'the', 'queen', ',', 'she', 'and', 'her', 'husband', ',', 'nicolas', 'de', 'la', 'motte', ',', 'immediately', 'took', 'off', 'to', 'london', 'and', 'began', 'selling', 'the', 'jewels', 'from', 'the', 'necklace', 'for', 'their', 'own', 'profit', '.'], ['villas', 'boas', 'has', 'also', 'served', 'as', 'a', 'member', 'of', 'the', 'council', 'and', 'the', 'spiritual', 'coordinator', 'of', 'the', 'portuguese', 'knights', 'of', 'the', 'order', '.'], ['gartmore', '(', 'scottish', 'gaelic', '``', 'an', 'gart', 'mòr', \"''\", ')', 'is', 'a', 'village', 'in', 'the', 'stirling', 'council', 'area', ',', 'scotland', '.'], ['tip', 'dating', 'is', 'a', 'technique', 'used', 'in', 'molecular', 'dating', 'that', 'allows', 'the', 'inference', 'of', 'time-calibrated', 'phylogenetic', 'trees', '.'], ['the', 'highway', 'runs', 'from', 'the', 'beginning', 'of', 'state', 'maintenance', 'east', 'to', 'ky', '6', '1', '6', '2', '.'], ['males', 'had', 'a', 'median', 'income', 'of', '$', '2', '7', ',', '5', '0', '0', 'versus', '$', '1', '6', ',', '8', '5', '7', 'for', 'females', '.'], ['in', '1', '8', '9', '7', 'the', 'family', 'firm', 'became', 'a', 'public', 'company', ',', '``', 'heelas', 'sons', 'and', 'co.', 'ltd', \"''\", ',', 'and', 'in', '1', '8', '9', '0', 'the', 'house', 'of', 'heelas', 'was', 'appointed', 'linen', 'drapers', 'and', 'house', 'furnishers', 'to', 'the', 'then', 'prince', 'of', 'wales', '.'], ['the', 'contribution', 'level', 'was', 'reduced', 'from', '1', '.', '3', '%', 'for', 'employees', 'and', 'employers', 'during', 'the', 'covid-', '1', '9', 'pandemic', '.'], ['micrelephas', 'mesodonta', 'is', 'a', 'moth', 'in', 'the', 'family', 'crambidae', '.'], ['irina', 'bokova', ',', 'director', 'general', 'of', 'unesco', 'announced', 'the', 'decision', 'at', 'its', 'headquarters', 'in', 'paris', 'on', '3', '0', 'october', '2', '0', '1', '7', '.'], ['the', 'iat', 'has', 'also', 'established', 'itself', 'to', 'be', 'an', 'acceptably', 'valid', 'measure', ',', 'and', 'has', 'demonstrated', 'this', 'through', 'its', 'convergent', 'validity', ',', 'discriminant', 'validity', ',', 'and', 'predictive', 'validity', '.'], ['in', '1', '9', '8', '4', ',', 'jawed', 'habib', 'started', 'working', 'with', 'his', 'father', 'in', 'their', 'first', 'salon', ',', 'habib', \"'s\", 'hair', 'and', 'beauty', ',', 'in', 'the', 'oberoi', 'hotel', 'in', 'new', 'delhi', '.'], ['the', 'first', 'german', 'frogman', 'commando', 'unit', 'was', 'formed', 'under', 'the', 'direction', 'of', 'alfred', 'von', 'wurzian', 'during', 'world', 'war', 'ii', ',', 'an', 'olympic', 'swimmer', 'originally', 'from', 'austria', '.'], ['terminal', 'risk', 'management', 'is', 'only', 'performed', 'in', 'devices', 'where', 'there', 'is', 'a', 'decision', 'to', 'be', 'made', 'whether', 'a', 'transaction', 'should', 'be', 'authorised', 'on-line', 'or', 'offline', '.'], ['situated', 'near', 'costa', 'rica', ',', 'scattered', 'convection', 'accompanied', 'the', 'well-defined', 'system', '.'], ['in', '2', '0', '0', '7', 'it', 'co-produced', 'the', 'tv', 'series', '``', \"''\", 'with', 'gonzino', 'and', 'animated', 'the', 'film', '``', 'tetsujin', '2', '8', '-go', ':', 'hakuchū', 'no', 'zangetsu', \"''\", '.'], ['in', '1', '9', '7', '7', 'he', 'became', 'a', 'member', 'of', 'the', 'letopis', '(', 'chronicles', ')', 'art', 'group', ';', 'and', 'in', '1', '9', '8', '2', 'he', 'founded', 'the', 'novye', 'khudozhniki', '(', 'new', 'artists', ')', 'movement', '.'], ['he', 'appointed', 'his', 'press', 'spokesman', ',', 'the', 'journalist-editor', 'turned', 'politician', 'm', 'mukhlesur', 'rahman', 'chowdhury', ',', 'as', 'his', 'chief', 'presidential', 'advisor', ',', 'with', 'the', 'status', 'of', 'minister', 'of', 'state', '.'], ['4', '9', '.', '1', '%', 'of', 'people', 'were', 'born', 'in', 'australia', '.'], ['it', 'turned', 'northward', 'on', 'june', '2', '4', ',', 'strengthened', 'to', 'a', 'secondary', 'peak', 'of', '1', '6', '0', 'mph', '(', '2', '6', '0', 'km/h', ')', ',', 'and', 'weakened', 'before', 'it', 'made', 'landfall', 'in', 'taiwan', 'on', 'june', '2', '5', 'as', 'a', 'category', '2', 'typhoon', '.'], ['as', 'of', 'j', '2', 'se', '5', '.', '0', ',', 'this', 'problem', 'has', 'been', 'fixed', '.'], ['lawson', 'was', 'high', 'sheriff', 'of', 'cumberland', 'in', '1', '6', '8', '9', 'and', 'although', 'he', 'had', 'succeeded', 'to', 'the', 'family', 'estate', 'the', 'previous', 'year', 'he', 'quickly', 'sought', ',', 'and', 'was', 'granted', ',', 'permission', 'to', 'live', 'outside', 'the', 'county', '.'], ['the', 'station', 'has', 'been', 'classified', 'as', 'a', '``', 'typical', 'walking-station', \"''\", ',', 'in', 'which', 'seventy', 'to', 'eighty', 'percent', 'of', 'the', 'ridership', 'walk', 'to', 'the', 'station', '.'], ['a', 'second', 'annual', 'autism', 'awareness', 'game', 'took', 'place', 'between', 'on', 'december', '1', '5', ',', '2', '0', '1', '3', ',', 'when', 'rpi', 'played', 'the', 'usa', 'under-', '1', '8', 'men', \"'s\", 'ice', 'hockey', 'team'], ['less', 'than', 'a', 'year', 'later', ',', 'leontiev', 'already', 'gave', 'a', 'full-fledged', 'solo', 'concert', 'in', ',', 'and', 'for', 'the', 'performance', 'of', 'compositions', 'by', 'david', 'tukhmanov', '``', 'dance', 'time', 'in', 'the', 'sun', \"''\", 'he', 'received', 'first', 'prize', 'of', 'the', 'international', 'festival', '``', 'golden', 'orpheus', \"''\", '.'], ['at', 'an', 'international', 'level', 'the', 'venue', 'is', 'used', 'for', 'rallycross', 'races', '.'], ['kim', 'first', 'meets', 'him', 'when', 'he', 'calls', 'her', 'to', 'cambodia', 'to', 'retrieve', 'a', 'jade', 'monkey', 'idol', 'from', 'a', 'tomb', 'full', 'of', 'traps', 'and', 'unknowingly', 'completes', 'a', 'set', 'of', 'four', 'such', 'mystical', 'idols', 'in', 'his', 'possession', '.'], ['in', 'infants', ',', 'some', 'elderly', 'individuals', ',', 'and', 'those', 'with', 'neurological', 'injury', ',', 'urination', 'may', 'occur', 'as', 'an', 'involuntary', 'reflex', '.'], ['on', 'october', '1', ',', '1', '9', '4', '1', ',', 'he', 'purchased', 'controlling', 'interest', 'of', 'the', 'aldred', 'investment', 'trust', 'at', 'a', 'public', 'auction', '.'], ['from', '1', '9', '0', '9', 'nicholls', 'was', 'a', 'member', 'of', 'the', '``', 'women', \"'s\", 'non-party', 'political', 'association', \"''\", ',', 'becoming', 'its', 'president', 'in', '1', '9', '1', '1', '.'], ['the', 'inherent', 'concepts', 'of', 'the', 'ibts', 'can', 'be', 'used', 'to', 'engineer', ',', 'terra-form', 'and', 'activate', 'deserts', 'and', 'other', 'landscapes', 'with', 'harsh', 'conditions', '.'], ['myricetin', 'was', 'found', 'to', 'be', 'absent', 'from', 'all', 'studied', 'taxa', '.'], ['she', 'also', 'won', 'gold', 'in', '``', 'women', \"'s\", '3', 'm', 'springboard', \"''\", ',', 'giving', 'her', 'all', 'three', 'medals', 'in', 'three', 'participations', 'in', 'this', 'event', 'after', 'silver', 'in', '2', '0', '0', '4', 'and', 'bronze', 'in', '2', '0', '0', '8', '.'], ['originally', ',', 'barcodes', 'represented', 'data', 'in', 'the', 'widths', '(', 'lines', ')', 'and', 'the', 'spacings', 'of', 'parallel', 'lines', ',', 'and', 'may', 'be', 'referred', 'to', 'as', 'linear', 'or', 'one-dimensional', 'barcodes', 'or', 'symbologies', '.'], ['caroline', 'and', 'josef', 'died', 'of', 'cholera', 'in', '1', '8', '5', '0', ',', 'and', 'a', 'year', 'later', 'his', 'father', 'died', '.'], ['on', 'review', 'aggregation', 'website', 'rotten', 'tomatoes', ',', 'the', 'film', 'holds', 'an', 'approval', 'rating', 'of', '9', '0', '%', 'based', 'on', '3', '6', '3', 'reviews', ',', 'and', 'an', 'average', 'rating', 'of', '8', '.', '0', '0', '/', '1', '0', '.'], ['he', 'started', 'playing', 'basketball', 'while', 'studying', 'in', 'secondary', 'school', ',', 'and', 'was', 'selected', 'for', 'his', 'school', 'team', '.'], ['the', 'successive', 'defeats', 'of', 'confederate', 'forces', 'under', 'the', 'commands', 'of', 'col.', 'porterfield', ',', 'gen.', 'robert', 'garnett', 'and', 'robert', 'e.', 'lee', 'enabled', 'the', 'establishment', 'of', 'a', 'unionist', 'government', 'in', 'wheeling', ',', 'one', 'of', 'virginia', \"'s\", 'largest', 'cities', '.'], ['national', 'monuments', 'are', 'gazetted', 'after', 'approval', 'by', 'the', 'cabinet', '.'], ['in', '1', '9', '9', '5', 'he', 'recorded', 'an', 'album', 'with', ',', 'a', 'record', 'making', 'company', ',', 'where', 'he', 'sang', 'pino', 'daniele', \"'s\", 'songs', '.'], ['we', 'entered', 'and', 'he', 'presented', 'islam', 'to', 'us', 'and', 'we', 'became', 'muslim', '.'], ['its', 'area', 'roughly', 'correlates', 'to', 'the', 'ballajá', ',', 'catedral', ',', 'marina', ',', 'mercado', ',', 'san', 'cristóbal', ',', 'and', 'san', 'francisco', 'subbarrios', 'of', 'barrio', 'san', 'juan', 'antiguo', 'in', 'the', 'municipality', 'of', 'san', 'juan', ',', 'puerto', 'rico', '.'], ['zwartewaal', 'is', 'a', 'village', 'in', 'the', 'dutch', 'province', 'of', 'south', 'holland', ',', 'the', 'netherlands', '.'], ['the', 'font', 'was', 'included', 'with', 'microsoft', 'software', 'after', 'microsoft', 'hired', 'norton', '.'], ['following', 'miller', \"'s\", 'exit', ',', 'mansi', 'returned', 'to', 'the', 'role', 'for', 'multiple', 'extended', 'stay', 'visits', ';', 'her', 'latest', 'stint', 'lasting', 'from', 'november', '2', '0', '1', '9', 'to', 'may', '2', '0', '2', '0', ',', 'when', 'abigail', 'leaves', 'salem', 'for', 'florida', 'to', 'seek', 'medical', 'treatment', '.'], ['in', 'the', 'spring', 'of', '1', '9', '4', '2', ',', '8', '0', '4', 'jews', 'of', 'bukowsko', 'and', 'over', '3', '0', '0', 'of', 'the', 'surrounding', 'villages', 'were', 'put', 'into', 'a', 'ghetto', '.'], ['spitzer', 'ran', 'out', 'of', 'liquid', 'helium', 'coolant', 'on', '1', '5', 'may', '2', '0', '0', '9', ',', 'which', 'stopped', 'far-ir', 'observations', '.'], ['thompson', 'academy', 'became', 'a', 'college', 'preparatory', 'boarding', 'school', 'and', 'continued', 'the', 'tradition', 'of', 'shelter', 'and', 'guidance', 'to', 'boys', 'from', 'the', 'boston', 'area', 'and', 'beyond', '.'], ['at', 'the', 'beginning', 'of', 'the', 'story', 'zenon', 'is', 'against', 'beet', 'becoming', 'a', 'vandel', 'buster', 'since', 'he', 'left', 'beet', 'in', 'the', 'care', 'of', 'poala', \"'s\", 'parents', 'to', 'live', 'a', 'peaceful', 'life', 'in', 'the', 'age', 'of', 'darkness', '.'], ['many', 'later', 'opted', 'to', 'cover', 'the', 'wood', 'siding', 'with', 'fake', 'brick', 'known', 'as', 'insulbrick', '.'], ['by', 'the', 'time', 'the', 'indian', 'battalion', 'reached', 'the', 'point', 'of', 'conflict', ',', 'chinese', 'units', 'controlled', 'both', 'banks', 'of', 'the', 'namka', 'chu', 'river', '.'], ['it', 'is', 'thought', 'that', ',', 'at', 'the', 'time', 'of', 'the', 'formation', 'of', 'the', 'city', ',', 'there', 'was', 'a', 'civil', 'war', '.'], ['the', 'north', 'branch', 'canal', 'historically', 'had', 'an', 'aqueduct', 'that', 'crossed', 'keeler', 'creek', '.'], ['wwe', 'great', 'balls', 'of', 'fire', 'was', 'a', 'professional', 'wrestling', 'pay-per-view', '(', 'ppv', ')', 'and', 'wwe', 'network', 'event', 'produced', 'by', 'wwe', 'for', 'their', 'raw', 'brand', 'division', '.'], ['while', 'gone', ',', 'she', 'met', 'an', 'african-american', 'doctor', 'named', 'harrison', 'davis', '.'], ['a', 'person', 'with', 'recurrent', 'kidney', 'stones', 'may', 'be', 'screened', 'for', 'such', 'disorders', '.'], ['``', 'sagittaria', 'lancifolia', \"''\", 'reproduces', 'both', 'asexually', 'through', 'spreading', 'rhizomes', 'and', 'sexually', 'through', 'reproduction', 'of', 'copious', 'achenes', ',', 'a', 'dry', 'fruit', 'each', 'of', 'which', 'carries', 'a', 'single', 'seed', '.'], ['the', 'following', 'years', 'he', 'produced', 'his', 'most', 'prestigious', 'and', 'well-known', 'designs', ',', 'e.g', '.'], ['after', '9', '6', '7', 'there', 'is', 'one', 'confirmation', 'from', '9', '6', '8', ',', 'one', 'from', '9', '6', '9', ',', 'three', 'from', '9', '7', '1', ',', 'all', 'royal', 'charters', 'of', 'ramiro', 'iii', 'and', 'elvira', 'ramírez', 'of', 'león', '.'], ['the', 'other', 'passengers', 'consisted', 'of', '1', '7', '8', 'germans', ',', '6', '0', 'norwegians', ',', '4', '3', 'swedes', ',', '2', '2', 'swiss', 'and', '1', '7', 'italians', '.'], ['mackenzie', 'emphasised', 'the', 'moral', 'and', 'political', 'failings', 'of', 'the', 'government', 'but', 'was', 'unsure', 'of', 'how', 'to', 'create', 'his', 'ideal', 'society', '.'], ['the', 'two', 'counts', 'of', 'alt-', 'and', 'neu-', 'leiningen', 'were', 'arrested', 'and', 'jailed', 'in', 'paris', '.'], ['martin', 'was', 'born', 'in', 'hull', ',', 'quebec', '(', 'now', 'gatineau', ')', '.'], ['most', 'natural', 'action', 'tends', 'to', 'follow', 'an', 'arched', 'trajectory', ',', 'and', 'animation', 'should', 'adhere', 'to', 'this', 'principle', 'by', 'following', 'implied', '``', 'arcs', \"''\", 'for', 'greater', 'realism', '.'], ['pooled', 'reviews', 'from', 'novices', 'of', 'the', 'franchise', 'stated', 'that', 'the', 'coaches', 'were', 'found', 'to', 'be', 'a', 'bit', 'exaggerated', 'on', 'television', '.'], ['but', 'his', 'main', 'academic', 'contribution', 'was', 'the', 'development', 'of', 'the', 'research', 'line', 'on', 'preventive', 'socialization', 'of', 'gender', 'violence', ',', 'with', 'the', 'ultimate', 'aim', 'of', 'eliminating', 'gender', 'violence', 'in', 'society', '.'], ['on', '3', '0', 'november', '2', '0', '1', '6', ',', 'charles', 'signed', 'for', 'nagoya', 'grampus', 'in', 'the', 'j', '2', 'league', ',', 'with', 'his', 'contract', 'being', 'terminated', 'by', 'mutual', 'consent', 'on', '2', '6', 'june', '2', '0', '1', '7', '.'], ['as', 'some', 'of', 'its', 'names', 'imply', ',', '``', 'v.', 'tricolor', \"''\", 'has', 'a', 'long', 'history', 'of', 'use', 'in', 'herbalism', 'and', 'folk', 'medicine', ',', 'both', 'for', 'epilepsy', ',', 'skin', 'diseases', 'and', 'eczema', ',', 'and', 'for', 'respiratory', 'problems', 'such', 'as', 'bronchitis', ',', 'asthma', ',', 'and', 'cold', 'symptoms', '.'], ['this', 'light', 'was', 'erected', 'to', 'replace', 'the', 'old', 'frank', \"'s\", 'island', 'light', ',', 'which', 'was', 'abandoned', 'when', 'the', 'neighboring', 'channel', 'became', 'unnavigable', '.'], ['she', 'has', 'designed', 'book', 'covers', 'for', 'forty', 'penguin', 'books', 'shakespeare', 'editions', '.'], ['the', 'station', 'is', 'owned', 'by', 'gray', 'television', ',', 'as', 'part', 'of', 'a', 'duopoly', 'with', 'abc', 'affiliate', 'ksfy-tv', '(', 'channel', '1', '3', ')', '.'], ['however', ',', 'priest', 'has', 'delivered', 'talks', 'on', 'the', 'relationship', 'between', 'philosophy', 'and', 'theology', 'at', 'numerous', 'events', ',', 'some', 'of', 'which', 'can', 'be', 'watched', 'online', '.'], ['the', 'firm', 'was', 'first', 'located', 'on', 'threadneedle', 'street', 'early', 'in', 'the', 'century', ';', 'it', 'moved', 'to', 'ludgate', 'hill', 'in', 'the', 'middle', 'of', 'the', 'century', ',', 'and', 'then', 'to', 'fleet', 'street', 'from', '1', '8', '7', '1', 'to', '1', '8', '9', '0', '.'], ['flávio', 'gonçalves', 'was', 'a', 'notable', 'historian', 'of', 'portuguese', 'art', '.'], ['the', 'contrasting', ',', 'middle', 'section', 'of', 'the', 'movement', 'is', 'a', 'mournful', 'one', ',', 'characterized', 'by', 'short-long', 'figurations', '.'], ['i', 'was', 'taught', 'that', 'the', 'finished', 'sculpture', 'was', 'maybe', 'the', 'end', 'of', 'the', 'paragraph', '.'], ['these', 'include', 'the', 'phobic', 'individual', 'crossing', 'their', 'legs', ',', 'making', 'tight', 'fists', 'with', 'both', 'hands', ',', 'or', 'engaging', 'muscles', 'of', 'the', 'trunk', 'or', 'arms', '.'], ['whitaker', 'played', 'high', 'school', 'football', 'for', 'the', 'a.', 'crawford', 'mosley', 'high', 'school', 'dolphins', '.'], ['this', 'necessitated', 'all', 'collected', 'samples', 'of', 'the', 'species', 'to', 'be', 'registered', 'and', 'made', 'it', 'illegal', 'to', 'collect', 'the', 'species', 'without', 'prior', 'consent', 'from', 'relevant', 'state', 'officials', '.'], ['in', 'the', 'federal', 'election', ',', 'a', 'total', 'of', '2', '8', '3', 'votes', 'were', 'cast', ',', 'and', 'the', 'voter', 'turnout', 'was', '4', '1', '.', '0', '%', '.'], ['this', 'requires', 'significant', 'lithium', 'to', 'adversely', 'affect', 'the', '3', 'he/', '4', 'he', 'ratio', '.'], ['the', 'american', 'bar', 'association', ',', 'which', 'has', 'consistently', 'refused', 'to', 'support', 'or', 'participate', 'in', 'law', 'school', 'rankings', ',', 'has', 'issued', 'disclaimers', 'on', 'law', 'school', 'rating', 'systems', ',', 'and', 'encourages', 'prospective', 'law', 'students', 'to', 'consider', 'a', 'variety', 'of', 'factors', 'in', 'making', 'their', 'choice', 'among', 'schools', '.'], ['it', 'formerly', 'hosted', 'the', 'pbr', 'australia', 'world', 'finals', 'since', '2', '0', '1', '0', '.'], ['in', '2', '0', '1', '4', ',', 'theta', 'xi', 'celebrated', 'its', 'sesquicentennial', '.'], ['eyster', \"'s\", 'teaching', 'extended', 'to', 'california', \"'s\", 'chinese', 'immigrants', ';', 'she', 'was', 'also', 'a', 'teacher', 'of', 'music', ',', 'rhetoric', 'and', '``', 'belles', 'lettres', \"''\", 'in', 'various', 'seminaries', ';', 'and', 'was', 'a', 'state', 'lecturer', 'on', 'scientific', 'temperance', 'in', 'colleges', 'and', 'public', 'schools', '.'], ['the', 'compilation', 'is', 'guided', 'by', 'a', '``', 'pointer', \"''\", 'that', 'moves', 'around', 'the', 'image', ',', 'from', 'one', 'continuous', 'coloured', 'region', 'to', 'the', 'next', '.'], ['workcells', 'can', 'often', 'be', 'reconfigured', 'easily', 'to', 'allow', 'the', 'adaptation', 'of', 'the', 'process', 'to', 'fit', 'takt', 'time', '.'], ['he', 'trained', 'at', 'the', 'royal', 'irish', 'academy', 'of', 'music', '.'], ['although', 'geelong', 'made', 'it', 'into', 'the', 'final', 'in', 'three', 'of', 'the', 'seasons', 'he', 'was', 'at', 'the', 'club', ',', 'rahilly', 'was', 'never', 'selected', 'for', 'a', 'finals', 'game', '.'], ['the', '1', '9', '9', '4', 'national', 'census', 'reported', 'sawla', 'had', 'a', 'total', 'population', 'of', '1', '5', ',', '7', '6', '4', 'of', 'whom', '7', ',', '8', '6', '1', 'were', 'men', 'and', '7', ',', '9', '0', '3', 'were', 'women', '.'], ['he', 'resigned', 'his', 'seat', 'on', '2', '7', 'october', '1', '9', '0', '2', 'by', 'the', 'procedural', 'device', 'of', 'accepting', 'appointment', 'as', 'steward', 'of', 'the', 'chiltern', 'hundreds', ',', 'triggering', 'the', 'by-election', '.'], ['in', '2', '0', '1', '1', 'it', 'had', '1', '5', '8', '1', 'inhabitants', '.'], ['his', 'sentence', 'was', 'pronounced', 'on', 'september', '1', '7', ',', '1', '5', '5', '6', '.'], ['after', 'the', 'failed', 'attempt', 'to', 'capture', 'the', 'small', 'finnish', 'icebreaker', '``', 'avance', \"''\", 'from', 'the', 'russian', 'revolutionaries', 'in', 'march', '1', '9', '1', '8', ',', 'finnish', 'captain', 'theodor', 'segersven', 'and', 'his', 'men', 'shifted', 'their', 'focus', 'to', 'the', 'much', 'larger', '``', 'volynets', \"''\", '.'], ['trailers', 'from', 'a', 'fictional', 'cbs', 'buddy-cop', 'show', 'featuring', 'dutch', 'plains', '(', 'kate', 'mckinnon', ')', 'as', 'lesbian', 'cop', 'les', 'dykawitz', ',', 'and', 'velvy', \"o'malley\", '(', 'aidy', 'bryant', ')', 'as', 'food-loving', 'cop', 'chubbina', 'fatzarelli', '.'], ['lånkebanen', 'has', 'featured', 'a', 'round', 'of', 'the', 'fia', 'european', 'rallycross', 'championship', 'since', '2', '0', '1', '1', '.'], ['unlike', 'other', 'events', 'using', 'freestyle', ',', 'swimmers', 'could', 'not', 'use', 'butterfly', ',', 'backstroke', ',', 'or', 'breaststroke', 'for', 'the', 'freestyle', 'leg', ';', 'most', 'swimmers', 'use', 'the', 'front', 'crawl', 'in', 'freestyle', 'events', '.'], ['there', 'were', '6', 'households', ',', 'of', 'which', '3', '3', '.', '3', '%', 'had', 'children', 'under', 'the', 'age', 'of', '1', '8', 'living', 'with', 'them', ',', '8', '3', '.', '3', '%', 'were', 'married', 'couples', 'living', 'together', ',', 'and', '1', '6', '.', '7', '%', 'had', 'a', 'male', 'householder', 'with', 'no', 'wife', 'present', '.'], ['the', 'comparative', 'superlative', 'indicates', 'the', 'maximum', 'degree', 'of', 'the', 'quality', 'expressed', 'in', 'comparison', 'to', 'other', 'items', '.'], ['ife', 'conducts', 'research', ',', 'provides', 'training', ',', 'runs', 'conferences', 'and', 'establishes', 'professional', 'qualifications', 'within', 'all', 'public', 'and', 'private', 'fire', 'sectors', '.'], ['the', 'east', 'franconian', 'dialect', 'branch', 'is', 'one', 'of', 'the', 'most', 'spoken', 'dialect', 'branches', 'in', 'germany', '.'], ['after', 'being', 'used', 'for', 'a', 'variety', 'of', 'other', 'events', 'it', 'closed', 'in', '2', '0', '0', '3', ',', 'and', 'is', 'now', 'vacant', ',', 'with', 'potential', 'plans', 'to', 'redevelop', 'it', '.'], ['the', '8', '5', '0', 'core', 'words', 'of', 'basic', 'english', 'are', 'found', 'in', 'wiktionary', \"'s\", 'basic', 'english', 'word', 'list', '.'], ['merrygold', 'was', 'eliminated', 'on', '5', 'november', '2', '0', '1', '7', ',', 'coming', 'in', 'tenth', 'place', '.'], ['during', 'the', '1', '8', 'th', 'century', ',', 'migration', 'inland', 'increased', 'along', 'the', 'horseneck', 'tract', 'and', 'raritan', 'valley', '.'], ['as', 'of', 'march', '2', '0', '0', '8', ',', 'four', 'probes', 'by', 'the', 'state', 'attorney', 'general', \"'s\", 'office', ',', 'the', 'state', 'senate', 'investigations', 'committee', ',', 'the', 'albany', 'county', 'district', 'attorney', \"'s\", 'office', ',', 'and', 'the', 'spitzer-appointed', 'state', 'ethics', 'board', ',', 'the', 'new', 'york', 'commission', 'on', 'public', 'integrity', ',', 'were', 'ongoing', '.'], ['this', 'project', 'creates', 'a', 'public', 'park', 'and', 'water', 'treatment', 'facility', '.'], ['mccormick', 'also', 'served', 'as', 'deputy', 'collector', 'of', 'customs', ',', 'a', 'magistrate', 'and', 'deputy', 'postmaster', '.'], ['the', 'ngr', 'offered', 'both', 'passenger', 'and', 'freight', 'service', 'and', 'also', 'delivered', 'letters', 'and', 'packages', 'for', 'the', 'post', 'office', '.'], ['the', 'population', 'at', 'the', '2', '0', '1', '1', 'census', 'was', 'less', 'than', '1', '0', '0', '.'], ['in', '2', '0', '1', '6', ',', 'harkin', 'worked', 'with', 'waxahatchee', 'on', 'their', 'album', '``', 'out', 'in', 'the', 'storm', \"''\", ',', 'performing', 'on', 'the', 'album', 'and', 'also', 'contributing', 'to', 'some', 'of', 'the', 'songwriting', 'process', '.'], ['she', 'was', 'illiterate', 'until', 'the', 'episode', '``', 'the', 'blank', 'page', ',', \"''\", 'where', 'she', 'tried', 'out', 'for', 'cheerleading', 'and', 'was', 'shunned', 'because', 'she', 'guessed', 'that', '``', 'v-i-c-t-o-r-y', \"''\", 'spelled', '``', 'win', '!', \"''\"], ['two', 'prototypes', 'of', 'the', 'type', '9', '0', 'were', 'completed', 'in', '1', '9', '8', '0', ',', 'both', 'armed', 'with', 'a', 'japanese', '1', '2', '0', 'mm', 'gun', '(', 'produced', 'by', 'japan', 'steel', 'works', 'limited', ')', 'firing', 'japanese', 'ammunition', '(', 'produced', 'by', 'daikin', 'industries', 'limited', ')', '.'], ['after', 'several', 'months', 'of', 'negotiations', ',', 'the', 'differences', 'were', 'settled', ',', 'and', 'in', 'december', '2', '0', '0', '6', ',', 'kswt', 'digital', 'subchannel', '1', '3', '.', '2', 'was', 'placed', 'on', 'cable', 'channel', '6', '.'], ['traditionally', 'the', 'lions', 'only', 'play', 'against', 'the', 'best', 'currie', 'cup', 'teams', 'when', 'touring', 'south', 'africa', 'but', 'the', 'south', 'african', 'rugby', 'union', 'felt', 'the', 'best', 'players', 'from', 'all', 'teams', 'should', 'have', 'an', 'opportunity', 'to', 'play', 'against', 'the', 'touring', 'side', '.'], ['while', 'still', 'a', 'law', 'student', ',', 'he', 'ran', 'his', 'father', ',', 'william', 'la', 'follette', \"'s\", ',', 'congressional', 'office', 'in', 'the', 'nation', \"'s\", 'capital', '.'], ['each', 'year', ',', '2', '6', 'boys', 'from', 'the', 'sixth', 'form', 'will', 'train', 'with', 'the', 'professionals', 'whilst', 'studying', 'for', 'a', 'levels', 'and', 'btecs', 'at', 'the', 'school', '.'], ['he', 'is', 'the', 'author', 'of', 'a', 'book', 'on', 'australian', 'energy', 'policy', ',', '``', 'energy', 'in', 'australia', \"''\", 'and', 'over', '5', '0', 'scientific', 'papers', ',', 'monographs', 'and', 'articles', 'on', 'energy', 'technology', 'and', 'environmental', 'policy', ',', 'and', 'is', 'recognised', 'as', 'one', 'of', 'australia', \"'s\", 'leading', 'experts', 'in', 'this', 'field', '.'], ['the', 'following', 'list', 'of', 'bioluminescent', 'mushrooms', 'is', 'based', 'on', 'a', '2', '0', '0', '8', 'literature', 'survey', 'by', 'dennis', 'desjardin', 'and', 'colleagues', ',', 'in', 'addition', 'to', 'accounts', 'of', 'several', 'new', 'species', 'published', 'since', 'then', '.'], ['it', 'was', 'the', '3', '6', 'th', 'edition', 'of', 'the', 'event', 'known', 'that', 'year', 'as', 'the', 'davidoff', 'swiss', 'indoors', ',', 'and', 'was', 'part', 'of', 'the', 'international', 'series', 'of', 'the', '2', '0', '0', '5', 'atp', 'tour', '.'], ['``', 'the', 'penguin', 'guide', 'to', 'jazz', \"''\", 'described', 'this', 'and', '``', 'bluesette', \"''\", 'from', 'the', 'same', 'label', 'as', 'having', '``', 'a', 'soft', 'and', 'occasionally', 'plangent', 'quality', 'which', 'is', 'highly', 'appealing', \"''\", '.'], ['she', 'further', 'said', 'that', 'the', 'poem', 'speaks', 'about', 'not', 'conforming', 'to', 'society', 'and', 'being', 'a', 'leader', 'as', 'well', 'as', 'accepting', 'that', 'being', 'misunderstood', 'is', 'a', 'positive', 'thing', '.'], ['after', 'his', 'military', 'service', ',', 'davis', 'was', 'the', 'operator', 'of', '``', 'hyperion', 'protective', 'consultants', ',', 'llc', \"''\", 'a', 'company', 'organized', 'as', 'an', 'llc', '.'], ['the', 'president', 'had', 'the', 'prerogative', 'to', 'dissolve', 'the', 'parliament', 'of', 'andalusia', 'and', 'call', 'a', 'snap', 'election', ',', 'provided', 'that', 'no', 'motion', 'of', 'no', 'confidence', 'was', 'in', 'process', 'and', 'that', 'dissolution', 'did', 'not', 'occur', 'before', 'one', 'year', 'had', 'elapsed', 'since', 'the', 'previous', 'one', '.'], ['following', 'the', 'completion', 'of', 'her', 'phd', ',', 'she', 'served', 'as', 'a', 'postdoctoral', 'researcher', 'at', 'stanford', 'university', 'and', 'in', '2', '0', '1', '6', 'was', 'promoted', 'to', 'staff', 'scientist', 'at', 'slac', 'national', 'accelerator', 'laboratory', '.'], ['the', 'first', 'ever', 'opposition', 'at', 'firs', 'park', 'was', 'heart', 'of', 'midlothian', 'f.c', '..'], ['ran', 'jacob', 'torten', '(', 'also', '``', 'ram', \"''\", 'and', '``', 'ron', ',', \"''\", 'and', '``', 'tortan', \"''\", ';', 'רן', 'טורטן', ';', 'december', '1', '4', ',', '1', '9', '6', '6', ')', 'is', 'an', 'israeli', 'former', 'olympic', 'competitive', 'sailor', '.'], ['this', 'allowed', 'the', 'third', 'competitor', ',', 'the', 'air', 'forces', ',', 'a', 'solid', 'lead', 'in', 'time', '.'], ['but', 'they', 'all', 'are', 'bilingual', 'and', 'speak', '&', 'amp', ';', 'learn', 'bengali', ',', 'as', 'khotta', 'bhasha', 'has', 'no', 'written', 'form', '.'], ['a', 'few', 'of', 'these', 'resources', 'include', 'sample', 'campaign', 'petition', 'forms', ',', 'community', 'outreach', 'letters', ',', 'and', 'press', 'release', 'examples', '.'], ['andrographolide', 'is', 'a', 'labdane', 'diterpenoid', 'that', 'has', 'been', 'isolated', 'from', 'the', 'stem', 'and', 'leaves', 'of', '``', 'andrographis', 'paniculata', \"''\", '.'], ['as', 'an', 'author', 'ishmael', 'houston-jones', \"'\", 'essays', ',', 'fiction', ',', 'interviews', ',', 'and', 'performance', 'texts', 'have', 'been', 'anthologized', 'in', 'the', 'books', ':'], ['cole', 'joined', 'i.o.', ',', 'and', 'received', 'training', 'from', 'future', 'team', '7', 'teammate', 'marc', 'slayton', '(', 'who', 'would', 'eventually', 'become', 'the', 'hero', 'known', 'as', 'backlash', ')', ',', 'as', 'well', 'as', 'former', 'members', 'of', 'i.o', '.'], ['through', 'fuel', ',', 'tobacco', 'and', 'alcohol', 'taxes', ')', 'while', 'their', 'health', 'insurance', 'costs', 'are', 'borne', 'by', 'their', 'home', 'province', 'in', 'atlantic', 'canada', '.'], ['kgtn-lp', '(', '1', '0', '6', '.', '7', 'fm', ')', 'is', 'a', 'radio', 'station', 'broadcasting', 'a', 'variety', 'format', '.'], ['various', 'companies', 'have', 'attempted', 'to', 'claim', 'patents', 'for', 'specific', 'aspects', 'of', 'syslog', 'implementations', '.'], ['he', 'earned', 'a', 'certificate', 'in', 'education', 'and', 'a', 'ba', 'degree', 'from', 'the', 'respective', 'institutions', '.'], ['specialty', 'chocolate', ',', 'typical', 'of', 'the', 'municipality', 'of', 'modica', 'in', 'sicily', ',', 'characterized', 'by', 'an', 'ancient', 'and', 'original', 'recipe', 'using', 'manual', 'grinding', '(', 'rather', 'than', 'conching', ')', 'which', 'gives', 'the', 'chocolate', 'a', 'peculiar', 'grainy', 'texture', 'and', 'aromatic', 'flavor', '.'], ['bart', 'd.', 'ehrman', ',', 'a', 'biblical', 'scholar', ',', 'says', 'that', '``', 'today', 'there', 'is', 'not', 'a', 'single', 'recognized', 'scholar', 'on', 'the', 'planet', 'who', 'has', 'any', 'doubts', 'about', 'the', 'matter', '.'], ['it', 'is', 'considered', 'the', 'longest', 'lichen', 'in', 'the', 'world', '.'], ['he', 'was', 'buried', 'at', 'batangan', ',', 'riau', ',', 'having', 'had', 'issue', ',', 'two', 'sons', '.'], ['obregón', 'is', 'the', 'artist', 'perhaps', 'most', 'closely', 'identified', 'with', 'the', 'spirit', 'of', 'artistic', 'renewal', 'manifested', 'in', 'the', '1', '9', '5', '0', 's', 'in', 'colombia', '.'], ['hamilton', \"'s\", 'copps', 'coliseum', 'and', 'oshawa', 'were', 'reportedly', 'under', 'consideration', 'to', 'host', 'the', 'franchise', '.'], ['like', 'all', 'charities', ',', 'the', 'covid-', '1', '9', 'pandemic', 'has', 'resulted', 'in', 'new', 'financial', 'pressures', 'for', 'rnid', '.'], ['it', 'is', 'found', 'in', 'north', 'america', ',', 'where', 'it', 'has', 'been', 'recorded', 'from', 'arizona', '.'], ['banahaw', 'is', 'a', 'custom', 'pilgrimage', 'site', 'for', 'locals', ',', 'believed', 'by', 'many', 'as', 'a', 'holy', 'mountain', ',', 'a', 'spiritually-charged', 'location', '.'], ['patricia', 'died', 'in', 'loughborough', 'the', 'following', 'year', ';', 'she', 'was', '4', '7', '.'], ['he', 'defeated', 'dominic', 'clark', 'via', 'tko', 'in', 'october', '2', '0', '1', '0', 'and', 'nick', 'gonzalez', 'via', 'submission', 'in', 'february', '2', '0', '1', '1', '.'], ['ruggero', 'verroca', '(', 'born', '3', 'january', '1', '9', '6', '1', ')', 'is', 'an', 'italian', 'lightweight', 'rower', '.'], ['released', 'in', 'april', '2', '0', '0', '9', 'for', 'microsoft', 'windows', 'the', 'game', 'is', 'a', 'sequel', 'to', '``', 'fantasy', 'wars', \"''\", '.'], ['from', 'ages', 'nine', 'to', 'fourteen', ',', 'page', 'lived', 'in', 'europe', 'with', 'her', 'parents', 'until', 'her', 'father', 'died', '.'], ['by', 'july', ',', 'as', 'florida', 'became', 'a', 'global', 'epicenter', 'of', 'the', 'virus', ',', 'trump', 'called', 'off', 'the', 'event', '.'], ['one', 'of', 'its', 'services', 'is', 'providing', 'advisors', 'for', 'college', 'and', 'alumnae', 'panhellenic', 'organizations', '.'], ['she', 'gave', 'an', 'acoustic', 'performance', 'of', 'the', 'song', 'from', 'her', 'home', 'for', 'the', 'television', 'special', '``', 'acm', 'presents', ':', 'our', 'country', \"''\", '.'], ['stalker', 'died', 'on', '1', '5', 'february', '2', '0', '1', '9', ',', 'aged', '7', '9', '.'], ['from', 'the', 'perspective', 'of', 'homotopy', 'theory', ',', 'a', 'real', 'line', 'bundle', 'therefore', 'behaves', 'much', 'the', 'same', 'as', 'a', 'fiber', 'bundle', 'with', 'a', 'two-point', 'fiber', ',', 'that', 'is', ',', 'like', 'a', 'double', 'cover', '.'], ['ksol', \"'s\", 'call', 'letters', 'were', 'changed', 'to', 'kyld', 'the', 'following', 'year', '.'], ['the', 'graduating', 'class', 'of', '1', '9', '7', '5', 'was', 'the', 'first', 'class', 'to', 'attend', '4', 'years', 'in', 'the', 'new', 'building', '.'], ['the', 'west', 'australian', 'state', 'government', 'continued', 'to', 'support', 'development', 'at', 'the', 'site', ',', 'arguing', 'a', 'lack', 'of', 'cost-effective', 'alternative', 'sites', 'and', 'that', 'geographical', 'expansion', 'of', 'facility', 'areas', 'will', 'be', 'extremely', 'limited', '.'], ['one', 'of', 'the', 'earliest', 'was', 'the', 'dalkey', 'atmospheric', 'railway', 'which', 'operated', 'near', 'dublin', 'between', '1', '8', '4', '4', 'and', '1', '8', '5', '4', '.'], ['the', 'catenary', 'curve', 'has', 'a', 'u-like', 'shape', ',', 'superficially', 'similar', 'in', 'appearance', 'to', 'a', 'parabolic', 'arch', ',', 'but', 'it', 'is', 'not', 'a', 'parabola', '.'], ['when', 'the', 'state', \"'s\", 'budget', 'declined', 'due', 'to', 'lower', 'oil', 'prices', ',', 'and', 'later', 'due', 'to', 'declining', 'oil', 'production', ',', 'so', 'did', 'krbd', \"'s\", '.'], ['his', 'biggest', 'individual', 'successes', 'have', 'been', 'in', 'winning', 'the', '2', '0', '2', '0', 'sony', 'open', 'in', 'hawaii', 'and', 'the', 'australian', 'pga', 'championship', ',', 'which', 'he', 'won', 'back-to-back', 'in', '2', '0', '1', '7', 'and', '2', '0', '1', '8', '.'], ['it', 'is', 'designed', 'to', 'observe', 'air', 'showers', 'triggered', 'by', 'gamma', 'rays', 'and', 'cosmic', 'rays', '.'], ['months', 'were', 'spent', 'in', 'the', 'creation', 'of', 'floats', 'and', 'in', 'the', 'costuming', 'of', 'students', 'and', 'models', '.'], ['echoing', 'similar', 'thoughts', ',', 'jim', 'harrington', 'of', '``', 'the', 'mercury', 'news', \"''\", 'lauded', 'lorde', 'for', 'her', 'personality', ',', 'saying', 'she', '``', 'dominated', 'our', 'attention', 'and', 'fascination', 'during', 'each', 'and', 'every', 'moment', 'of', 'the', 'concert', \"''\", '.'], ['topographic', 'influences', 'on', 'fuel', 'moisture', 'with', 'variance', 'in', 'elevation', ',', 'aspect', ',', 'etc', '.', ')', '.'], ['after', 'fighting', 'in', 'world', 'war', 'i', ',', 'he', 'began', 'appearing', 'in', 'vaudeville', ',', 'honing', 'a', 'comic', 'xylophone', 'act', 'that', 'he', 'used', 'successfully', 'for', 'many', 'years', '.'], ['when', 'spangler', 'looks', 'again', ',', 'the', 'duct', 'tape', 'is', 'gone', '.'], ['this', 'railway', 'was', 'opened', 'to', 'te', 'kuha', 'from', 'westport', 'in', '1', '9', '1', '2', ',', 'but', 'a', 'connection', 'through', 'the', 'buller', 'gorge', 'to', 'connect', 'with', 'the', 'railway', 'in', 'inangahua', 'junction', 'was', 'not', 'completed', 'until', '1', '9', '4', '2', '.'], ['in', 'this', 'experiment', ',', 'he', 'randomly', 'assigned', 'districts', 'to', 'receive', 'information', 'on', 'voter', 'registration', 'and', 'encouragements', 'to', 'vote', '.'], ['in', 'late', '2', '0', '1', '0', ',', 'hilton', 'announced', 'a', 'name', 'change', 'of', 'the', 'hilton', 'hotels', 'brand', 'to', 'hilton', 'hotels', '&', 'amp', ';', 'resorts', 'along', 'with', 'a', 'new', 'logo', 'design', ',', 'as', 'part', 'of', 'a', 'rebranding', 'effort', 'for', 'the', 'flagship', 'brand', '.'], ['he', 'held', 'a', 'great', 'aversion', 'to', 'nazism', ',', 'and', 'in', '1', '9', '4', '0', ',', 'infiltrated', 'the', 'abwehr', ',', 'germany', \"'s\", 'military', 'intelligence', 'service', ',', 'which', 'considered', 'him', 'a', 'valuable', 'asset', 'due', 'to', 'his', 'business', 'connections', 'in', 'france', 'and', 'the', 'united', 'kingdom', '.'], ['1', 'of', 'the', 'uk', 'singles', 'chart', 'in', 'august', 'and', 'two', 'weeks', 'at', 'no', '.'], ['as', 'each', 'new', 'phase', 'is', 'flooded', 'and', 'naturally', 'populated', 'with', 'wildlife', ',', 'fish', 'samples', 'are', 'routinely', 'collected', 'and', 'analyzed', 'to', 'ensure', 'that', 'pesticide', 'levels', 'in', 'their', 'tissues', 'are', 'below', 'established', 'safe', 'levels', 'for', 'fish-eating', 'birds', '.'], ['here', ',', 'she', 'received', 'british', 'asdic', ',', 'degaussing', 'equipment', ',', 'y-gun', ',', 'and', 'oerlikon', '2', '0', 'mm', 'anti-aircraft', 'autocannons', '.'], ['after', 'world', 'war', 'ii', ',', 'the', 'building', 'became', 'the', 'property', 'of', 'the', 'treasury', 'department', '.'], ['his', 'first', 'known', 'chart', 'was', 'a', 'major', 'world', 'map', ',', 'produced', 'around', '1', '5', '0', '3', '.'], ['some', 'road-safety', 'advocates', 'have', 'voiced', 'concern', 'over', 'the', 'prospect', 'of', 'more', 'drivers', 'using', 'waze', ',', 'which', 'they', 'say', 'has', 'the', 'potential', 'to', 'distract', 'them', 'with', 'a', 'flurry', 'of', 'icons', 'and', 'notifications', 'and', 'put', 'them', 'at', 'greater', 'risk', 'of', 'an', 'accident', '.'], ['every', 'normed', 'space', 'is', 'both', 'a', 'linear', 'topological', 'space', 'and', 'a', 'metric', 'space', '.'], ['nominalism', 'had', 'been', 'prevalent', 'from', 'the', 'time', 'of', 'marsilius', 'until', 'after', '1', '4', '0', '6', ',', 'when', 'jerome', 'of', 'prague', ',', 'the', 'friend', 'of', 'john', 'hus', ',', 'introduced', 'realism', 'at', 'heidelberg', ',', 'on', 'which', 'account', 'he', 'was', 'expelled', 'by', 'the', 'faculty', '.'], ['in', 'july', '2', '0', '1', '8', ',', 'during', 'snh', '4', '8', \"'s\", 'fifth', 'general', 'election', ',', 'lin', 'came', 'in', '1', '0', 'th', '.'], ['mrs', 'tembe', 'was', 'given', 'the', 'storyline', 'following', 'laidlaw', 'telling', 'producers', 'that', 'she', 'wanted', 'her', 'alter', 'ego', 'to', 'have', 'a', 'relationship', '.'], ['valerie', 'is', 'located', 'on', 'california', 'state', 'route', '8', '6', 'south', 'of', 'coachella', '.'], ['similar', 'systems', 'still', 'exist', 'in', 'some', 'developing', 'countries', ',', 'but', 'the', 'term', '``', 'privy', 'midden', \"''\", 'is', 'now', 'an', 'archaism', '.'], ['``', 'rolling', 'stone', \"''\", 'ranked', 'it', '5', '0', 'th', 'on', 'their', 'list', 'of', 'the', '5', '0', 'greatest', 'prog-rock', 'albums', 'of', 'all', 'time', '.'], ['the', 'dog', 'goes', 'in', 'pursuit', ',', 'but', 'reaches', 'a', 'painted', 'white', 'line', 'with', 'a', 'sign', 'that', 'reads', '``', 'rope', 'limit', \"''\", 'which', 'causes', 'the', 'dog', 'to', 'be', 'jerked', 'to', 'a', 'stop', 'by', 'the', 'rope', 'around', 'his', 'neck', '.'], ['in', 'april', '2', '0', '0', '8', 'a', 'symposium', 'took', 'place', 'at', 'the', 'faculty', 'of', 'philosophy', 'of', 'the', 'university', 'of', 'oxford', 'on', 'an', 'unpublished', 'manuscript', 'by', 'priest', 'entitled', \"'philosophical\", 'questions', ':', 'theological', 'answers', \"'\", '.'], ['university', 'of', 'michigan', 'press', ',', '2', '0', '0', '7', '.'], ['0', '.', '0', '%', 'of', 'all', 'households', 'were', 'made', 'up', 'of', 'individuals', '.'], ['joshua', 'incorrectly', 'predicted', 'that', 'hillary', 'clinton', 'would', 'win', 'the', '2', '0', '1', '6', 'us', 'election', '.'], ['an', 'insolvent', 'company', 'was', 'going', 'into', 'voluntary', 'liquidation', ',', 'with', 'the', 'help', 'of', 'deloitte', 'accountants', ',', 'on', '2', '5', 'july', '2', '0', '0', '6', '.'], ['goods', 'arriving', 'from', 'overseas', 'by', 'post', 'were', 'cleared', 'by', 'customs', 'and', 'aqis', 'officers', 'before', 'being', 'released', 'to', 'australia', 'post', 'for', 'delivery', '.'], ['it', 'is', 'promulgated', 'so', 'that', 'the', 'law', 'can', 'be', 'known', '.'], ['it', 'was', 'part', 'of', 'radetzky', \"'s\", 'good', 'fortune', 'that', 'he', 'died', 'one', 'year', 'before', 'his', 'whole', 'work', 'dissolved', '.'], ['in', 'common', 'slavic', 'and', 'later', 'ukrainian', ',', 'it', 'retained', 'its', 'present', 'meaning', 'only', 'for', 'imperfective', 'verbs', 'and', 'developed', 'a', 'future', 'meaning', 'for', 'perfective', 'verbs', '.'], ['ramiro', 'burr', 'of', '``', 'billboard', \"''\", 'magazine', 'said', 'that', 'the', 'show', \"'s\", 'musical', 'numbers', '``', 'deliver', 'the', 'hardest', 'punches', '.', \"''\"], ['in', '2', '0', '1', '1', 'it', 'accounted', 'for', '2', '1', '%', 'of', 'total', 'cargo', 'turnover', 'in', 'the', 'country', '.'], ['so', 'little', 'is', 'known', 'about', 'these', 'ranks', 'that', 'it', 'is', 'impossible', 'to', 'equate', 'them', 'with', 'the', 'traditional', 'ranks', 'with', 'any', 'certainty', '.'], ['at', 'the', 'investiture', ',', 'decree', 'of', 'the', 'emperor', 'of', 'china', 'was', 'issued', 'and', 'read', 'out', '.'], ['torgny', 'melins', 'is', 'a', 'dansband', 'from', 'säffle', ',', 'sweden', ',', 'scoring', 'chart', 'successes', 'in', 'sweden', 'by', 'the', 'mid-late', '2', '0', '0', '0', 's', '.'], ['the', 'first', 'discussions', 'concerning', 'the', 'formation', 'of', 'dylex', 'took', 'place', 'during', 'a', 'lunchtime', 'meeting', 'in', 'december', '1', '9', '6', '6', '.'], ['impressed', 'with', 'the', 'success', 'of', '``', 'dayz', \"''\", ',', 'bohemia', 'appointed', 'hall', 'to', 'fully', 'capitalize', 'on', 'it', 'by', 'leading', 'the', 'development', 'of', 'a', 'standalone', '``', 'dayz', \"''\", 'video', 'game', ',', 'which', 'ensured', 'that', 'he', 'would', 'not', 'be', 'limited', 'by', 'the', 'restraints', 'of', '``', 'arma', '2', '``', '.'], ['at', 'the', 'chosen', 'spot', ',', 'the', 'zhabdrung', 'encountered', 'a', 'boy', 'named', 'wangdi', 'playing', 'beside', 'the', 'river', 'and', 'hence', 'named', 'the', 'dzong', '``', 'wangdi', \"'s\", 'palace', \"''\", '.'], ['the', 'migration', 'of', 'year', '7', 'students', 'to', 'public', 'high', 'schools', 'were', 'the', 'likely', 'cause', 'in', 'the', '3', '0', '1', 'enrolment', 'number', 'spike', 'from', '2', '0', '1', '4', 'to', '2', '0', '1', '5', '.'], ['basic', 'treatment', 'services', 'include', 'psychiatry', ',', 'psychology', ',', 'social', 'services', ',', 'rehabilitation', 'therapies', ',', 'medical', ',', 'nursing', ',', 'pharmacy', ',', 'dietary', ',', 'etc', '.'], ['many', 'deaths', 'were', 'blamed', 'on', 'queho', 'and', 'so', 'he', 'earned', 'the', 'title', 'of', 'being', 'the', 'first', 'mass', 'murderer', 'in', 'the', 'state', 'of', 'nevada', 'and', '``', 'the', 'mad', 'indian', \"''\"], ['the', 'pair', 'won', 'five', 'doubles', 'titles', 'on', 'the', 'itf', 'women', \"'s\", 'circuit', ',', 'and', 'the', 'silver', 'medal', 'in', 'doubles', 'at', 'the', 'southeast', 'asian', 'games', 'in', '2', '0', '0', '5', '.'], ['he', 'was', 'assigned', 'to', 'the', 'infantry', 'training', 'centre', 'in', 'jinja', 'for', 'training', '.'], ['after', 'liberation', ',', 'the', 'stadium', 'was', 'started', 'to', 'be', 'removed', 'from', 'the', 'mines', '.'], ['on', 'one', 'side', 'of', 'the', 'table', 'sat', 'jimmy', 'kay', ',', 'a', 'toronto-based', 'entrepreneur', 'with', 'business', 'interests', 'in', 'housewares', ',', 'plastics', ',', 'and', 'lighting', '.'], ['traditional', 'minang', 'music', 'is', 'characterized', 'by', 'the', 'minang', 'style', 'or', 'rent', 'and', 'traditional', 'minang', 'musical', 'instruments', '.'], ['the', 'city', 'of', 'brush', 'is', 'a', 'statutory', 'city', 'located', 'in', 'morgan', 'county', ',', 'colorado', ',', 'united', 'states', '.'], ['one', 'of', 'the', 'enemy', 'aircraft', 'managed', 'to', 'get', 'on', 'the', 'tail', 'of', 'one', 'of', 'the', 'protection', 'aircraft', 'but', 'lt.', 'myers', 'placed', 'his', 'aircraft', 'in', 'a', 'position', 'which', 'enabled', 'lt.', 'mccollough', 'to', 'shoot', 'it', 'down', '.'], ['there', 'are', 'four', 'lifts', 'out', 'of', 'the', 'base', 'area', ':', 'rip', \"'s\", 'ride', 'lift', 'which', 'services', 'a', 'beginner', 'learning', 'area', ';', '5', 'chair', ',', 'which', 'services', 'more', 'advanced', 'beginner', 'terrain', ',', 'the', 'freeway', 'and', 'park', 'lane', 'terrain', 'parks', ',', 'and', 'the', 'alpine', 'slide', '.'], ['a', 'somewhat', 'common', 'adelaidean', 'urban', 'myth', 'asserts', 'that', 'the', 'da', 'costa', 'estate', 'was', 'intended', 'to', 'be', 'given', 'to', 'the', 'catholic', 'church', 'rather', 'than', 'the', 'anglican', ',', 'and', 'that', 'the', 'funds', 'were', 'awarded', 'to', 'saints', 'after', 'a', 'supposed', 'legal', 'battle', '.'], ['her', 'father', ',', 'shlomo', 'shababo', ',', 'taught', 'arabic', 'at', 'al-azhar', 'university', 'and', 'moved', 'to', 'zikhron', \"ya'akov\", 'after', 'being', 'invited', 'to', 'teach', 'there', '.'], ['during', 'his', 'stay', 'at', 'the', 'university', 'of', 'chicago', 'white', 'was', 'able', 'to', 'finish', '``', 'an', 'anatomy', 'of', 'kinship', \"''\", ',', 'published', 'in', '1', '9', '6', '3', 'within', 'the', 'prentice-hall', 'series', 'in', 'mathematical', 'analysis', 'of', 'social', 'behavior', ',', 'with', 'james', 'coleman', 'and', 'james', 'march', 'as', 'chief', 'editors', '.'], ['the', '2', 'nd', 'oregon', 'received', 'a', 'hero', \"'s\", 'welcome', 'when', 'it', 'arrived', 'in', 'san', 'francisco', 'on', '1', '3', 'july', '1', '8', '9', '9', '.'], ['carlin', 'claims', 'however', 'that', 'there', 'is', 'no', 'duct', 'tape', ',', 'and', 'that', 'spangler', 'is', '``', 'seeing', 'the', 'reaper', '.', \"''\"], ['businessmen', 'in', 'toronto', 'were', 'becoming', 'interested', 'in', 'capturing', 'some', 'of', 'this', 'traffic', 'for', 'themselves', ',', 'as', 'well', 'as', 'providing', 'transport', 'for', 'goods', 'they', 'were', 'personally', 'interested', 'in', '.'], ['the', 'roof', 'has', 'been', 'designed', 'to', 'allow', 'natural', 'light', 'to', 'enter', 'the', 'building', ',', 'with', '9', '1', '9', 'skylights', '.'], ['angle', 'is', 'also', 'a', 'two-time', 'king', 'of', 'the', 'mountain', '.'], ['franconia', 'consists', 'of', 'the', 'bavarian', 'districts', 'of', 'upper', ',', 'middle', ',', 'and', 'lower', 'franconia', ',', 'the', 'region', 'of', 'south', 'thuringia', '(', 'thuringia', ')', ',', 'and', 'the', 'eastern', 'parts', 'of', 'the', 'region', 'of', 'heilbronn-franken', '(', 'tauber', 'franconia', 'and', 'hohenlohe', ')', 'in', 'baden-württemberg', '.'], ['important', 'irrigated', 'crops', 'include', 'barley', ',', 'corn', ',', 'cotton', ',', 'various', 'fruits', ',', 'grapes', ',', 'opium', 'poppies', ',', 'sugar', 'beets', ',', 'roses', ',', 'and', 'tobacco', '.'], ['the', 'workingman', \"'s\", 'association', 'was', 'renamed', 'the', 'trinidad', 'labour', 'party', 'in', '1', '9', '3', '4', ',', 'becoming', 'the', 'country', \"'s\", 'first', 'political', 'party', '.'], ['peggy', 'joy', 'kleinplatz', 'is', 'a', 'canadian', 'clinical', 'psychologist', 'and', 'sexologist', 'whose', 'work', 'often', 'concerns', 'optimal', 'sexuality', ',', 'opposition', 'to', 'the', 'medicalization', 'of', 'human', 'sexuality', ',', 'and', 'outreach', 'to', 'marginalized', 'groups', '.'], ['it', 'was', 'released', 'in', '1', '9', '8', '0', 'via', 'rca', 'nashville', '.'], ['kentucky', 'trailer', 'relocated', 'to', 'southwestern', 'jefferson', 'county', '(', 'jefferson', 'riverport', 'international', ')', '.'], ['in', '1', '8', '8', '3', ',', 'schleier', 'installed', 'an', 'early', 'artificial', 'lighting', 'system', 'in', 'his', 'nashville', 'studio', 'with', 'the', 'help', 'of', 't.', 'p.', 'keck', 'of', 'the', 'city', \"'s\", 'brush', 'electric', 'light', 'company', '.'], ['he', 'has', 'debated', 'other', 'scholar', 'like', 'ali', 'mazrui', 'and', 'unmasked', 'wole', 'soyinka', \"'s\", 'obscurantist', 'writings', '.'], ['the', 'landscape', 'varies', 'from', 'dramatic', 'peaks', 'of', 'dark', 'granite', 'and', 'grey', 'mountains', 'with', 'little', 'vegetations', ',', 'to', 'fertile', 'mountain', 'slopes', 'and', 'marshes', '.'], ['citizens', 'must', 'never', 'again', 'be', 'deprived', 'of', 'their', 'legitimate', 'rights', 'by', 'anybody', ',', 'no', 'matter', 'his', 'position', 'in', 'the', 'society', '.'], ['the', 'mrna', 'can', 'differ', 'from', 'alternative', 'splicing', ',', 'and', 'contains', 'domains', 'for', 'the', 'extracellular', 'matrix', 'as', 'well', 'as', 'for', 'the', 'lrrs', '.'], ['after', 'w.', 't.', 'grant', 'filed', 'for', 'bankruptcy', 'in', '1', '9', '7', '5', ',', 'many', 'of', 'their', 'stores', 'were', 'sold', 'to', 'kmart', 'in', '1', '9', '7', '6', '.'], ['1', '9', '6', '8', ')', ',', 'is', 'a', 'tax', 'case', 'from', 'the', 'united', 'states', 'court', 'of', 'appeals', 'for', 'the', 'fifth', 'circuit', '.'], ['other', 'methods', 'of', 'crystallization', 'may', 'be', 'used', ',', 'depending', 'on', 'the', 'physical', 'properties', 'of', 'the', 'substance', ',', 'including', 'hydrothermal', 'synthesis', ',', 'sublimation', ',', 'or', 'simply', 'solvent-based', 'crystallization', '.'], ['it', 'lies', 'south-east', 'of', 'little', 'snoring', ',', 'around', 'north-east', 'of', 'the', 'town', 'fakenham', 'and', 'north-west', 'of', 'norwich', 'to', 'the', 'north', 'of', 'the', 'a', '1', '4', '8', 'road', '.'], ['edmund', 'lockyer', 'passed', 'through', 'the', 'area', 'in', '1', '8', '2', '5', ',', 'noting', 'the', 'junction', 'of', 'the', 'bremer', ',', 'referring', 'to', 'it', 'as', 'bremer', \"'s\", 'creek', 'but', 'he', 'did', 'not', 'explore', 'it', '.'], ['``', 'in', 'a', 'broadway', 'bag', '(', 'mame', ')', \"''\", 'was', 'reissued', 'on', 'cd', 'in', '2', '0', '0', '7', 'along', 'with', '``', 'bobby', 'darin', 'sings', 'the', 'shadow', 'of', 'your', 'smile', \"''\", '.'], ['the', 'campaneyan', 'kriso', 'rai', ',', 'also', 'known', 'as', 'the', 'catholic', 'belltower', ',', 'is', 'a', 'historic', 'church', 'tower', 'in', 'garapan', ',', 'the', 'largest', 'village', 'on', 'saipan', 'island', 'in', 'the', 'northern', 'mariana', 'islands', '.'], ['it', 'included', 'a', 'frame', 'made', 'from', 'items', \"'mudlarked\", \"'\", 'from', 'the', 'river', 'thames', '.'], ['his', 'creditors', 'forced', 'him', 'to', 'sell', '5', '0', '0', 'bars', 'of', 'silver', 'against', 'which', 'he', 'had', 'borrowed', 'money', '.'], ['ted', 'breitenstein', 'pitched', 'a', 'no-hitter', 'in', 'his', 'first', 'major', 'league', 'start', 'on', 'october', '4', ',', '1', '8', '9', '1', ',', 'however', ',', 'it', 'was', 'not', 'his', 'first', 'major', 'league', 'game', '.'], ['it', 'was', 'the', 'french', 'painter', 'and', 'sculptor', 'degas', 'who', 'said', 'that', 'an', 'artist', 'must', 'approach', 'his', 'work', 'in', 'the', 'spirit', 'of', 'the', 'criminal', 'about', 'to', 'commit', 'a', 'crime', '.', \"''\"], ['it', 'was', 'in', 'that', 'country', 'that', 'he', 'met', 'iko', 'uwais', ',', 'a', 'silat', 'practitioner', 'who', 'was', 'then', 'working', 'as', 'a', 'delivery', 'man', 'for', 'a', 'phone', 'company', 'based', 'in', 'jakarta', '.'], ['the', 'sixth', 'soundtrack', 'of', 'the', 'album', '``', 'onek', 'sadhonar', 'pore', \"''\", 'is', 'a', 'recreation', 'of', '1', '9', '9', '8', 'film', 'bhalobashi', 'tomake', 'track', 'with', 'the', 'same', 'title', '.'], ['a', 'spate', 'of', 'books', 'were', 'published', 'about', 'romney', ',', 'more', 'than', 'for', 'any', 'other', 'candidate', ',', 'and', 'included', 'a', 'friendly', 'campaign', 'biography', ',', 'an', 'attack', 'from', 'a', 'former', 'staffer', ',', 'and', 'a', 'collection', 'of', 'romney', \"'s\", 'speeches', '.'], ['according', 'to', '``', 'politico', \"''\", ',', '``', 'the', 'convention', 'of', 'states', \"'\", 'efforts', 'are', 'among', 'several', 'national', 'conservative', 'groups', ',', 'such', 'as', 'freedomworks', ',', 'that', 'have', 'helped', 'organize', 'anti-lockdown', 'protests', 'across', 'the', 'country', '.', \"''\"], ['the', 'garage', 'at', 'stony', 'stratford', 'operated', 'by', 'a', 'fellow', 'tillings', 'company', ',', 'eastern', 'national', 'was', 'transferred', 'to', 'united', 'counties', '.'], ['he', 'then', 'was', 'the', 'team', \"'s\", 'alternate', 'for', 'the', '2', '0', '0', '5', 'european', 'curling', 'championships', 'and', '2', '0', '0', '6', 'winter', 'olympics', 'before', 'becoming', 'lead', 'again', 'for', 'the', '2', '0', '0', '6', 'and', '2', '0', '0', '7', 'world', 'championships', '.'], ['waititi', 'instead', 'wore', 'a', 'hei', 'tiki', 'necktie', ',', 'which', 'he', 'described', 'as', 'māori', 'business', 'attire', '.'], ['this', 'is', 'the', 'foundation', 'for', 'law', 'and', 'order', 'in', 'the', 'society', '.'], ['in', 'his', 'first', 'appearance', 'in', '1', '9', '7', '7', ',', 'he', 'used', 'a', 'gibson', 'ripper', 'only', 'for', 'the', '``', 'let', 'there', 'be', 'rock', \"''\", 'music', 'video', '.'], ['it', 'was', 'the', 'first', 'time', 'elvis', 'had', 'played', 'that', 'many', 'consecutive', 'performances', 'in', 'a', 'venue', 'outside', 'of', 'las', 'vegas', 'or', 'stateline', ',', 'nevada', '.'], ['sales', 'of', 'domestically-produced', 'new', 'energy', 'passenger', 'vehicles', 'totaled', '5', '7', '9', ',', '0', '0', '0', 'units', ',', 'consisting', 'of', '4', '6', '8', ',', '0', '0', '0', 'all-electric', 'cars', 'and', '1', '1', '1', ',', '0', '0', '0', 'plug-in', 'hybrids', '.'], ['in', '1', '9', '6', '3', ',', 'he', 'graduated', 'at', 'cornell', 'university', 'with', 'a', 'masters', 'of', 'science', 'in', 'engineering', 'mechanics', '.'], ['it', 'was', 'described', 'by', 'kusnezov', 'in', '1', '9', '4', '1', ',', 'and', 'contains', 'the', 'species', 'g.', 'olgae', '.'], ['for', 'every', '1', '0', '0', 'females', ',', 'there', 'were', '8', '9', '.', '4', 'males', '.'], ['in', 'the', 'midst', 'of', 'the', 'fighting', ',', 'kpa', 'small', 'arms', 'fire', 'shot', 'down', 'an', 'f-', '5', '1', 'fighter', 'plane', '.'], ['2', '.', '9', '7', '%', 'of', 'the', 'population', 'were', 'hispanic', 'or', 'latino', 'of', 'any', 'race', '.'], ['the', 'theological', 'university', 'of', 'northern', 'italy', 'is', 'a', 'university', 'of', 'the', 'catholic', 'church', ',', 'and', 'has', 'its', 'main', 'campus', 'in', 'milan', '.'], ['alexis', 'georgian', '(', 'born', 'alexis', 'gogokhia', ')', 'worked', 'with', 'buffalo', 'bill', \"'s\", 'wild', 'west', 'show', 'for', 'only', 'a', 'few', 'years', 'before', 'beginning', 'his', 'own', 'group', ';', 'he', 'was', 'later', 'offered', 'but', 'refused', 'a', 'position', 'serving', 'as', 'ambassador', 'for', 'georgia', 'in', 'the', 'united', 'states', '.'], ['gug', \"'s\", 'successors', 'later', 'gained', 'some', 'other', 'estates', 'in', 'croatia', '(', 'zrin', ',', 'bukovica', ',', 'viljevo', 'and', 'jošava', ')', ',', 'as', 'well', 'as', 'in', 'hungary', '(', 'palota', 'and', 'galgóc', ')', '.'], ['lqg', 'is', 'an', 'attempt', 'to', 'merge', 'and', 'adapt', 'standard', 'quantum', 'mechanics', 'and', 'standard', 'general', 'relativity', '.'], ['after', 'the', 'normandy', 'invasion', 'the', 'squadron', 'ferried', 'supplies', 'in', 'the', 'united', 'kingdom', '.'], ['x-rays', 'of', 'gemina', \"'s\", 'neck', 'showed', 'that', 'her', 'vertebrae', 'had', 'fused', 'together', ',', 'but', 'scientists', ',', 'zoologists', 'and', 'veterinarians', 'could', 'find', 'no', 'explanation', 'for', 'the', 'deformity', '.'], ['in', 'far', 'eastern', 'oklahoma', 'city', ',', 'i-', '4', '0', 'meets', 'interstate', '2', '4', '0', 'in', 'a', 'partial', 'junction', '.'], ['the', 'following', 'year', ',', 'he', 'was', 'named', 'in', 'the', 'new', 'zealand', 'secondary', 'schools', 'team', 'for', 'a', 'three-match', 'international', 'series', 'in', 'australia', '.'], ['he', 'was', 'later', 'given', 'a', 'chance', 'to', 'resurrect', 'his', 'career', 'at', 'salford', '.'], ['there', 'was', 'also', 'a', 'classification', 'for', 'teams', ',', 'in', 'which', 'the', 'times', 'of', 'the', 'best', 'three', 'cyclists', 'per', 'team', 'on', 'each', 'stage', 'were', 'added', 'together', ';', 'the', 'leading', 'team', 'at', 'the', 'end', 'of', 'the', 'race', 'was', 'the', 'team', 'with', 'the', 'lowest', 'total', 'time', '.'], ['literary', 'scholar', 'milton', 'cohen', 'writes', 'about', 'how', '``', 'since', 'feeling', 'is', 'first', \"''\", 'compares', 'feeling', 'with', 'positive', 'natural', 'expressions', 'like', 'kisses', 'and', 'laughter', 'while', 'the', 'order', 'of', 'thought', 'is', 'compared', 'with', 'death', '.'], ['tirukozhambiam', 'kokileswarar', 'temple', '(', 'திருக்கோழம்பியம்', 'கோகிலேஸ்வரர்', 'கோயில்', ')', 'is', 'a', 'hindu', 'temple', 'located', 'at', 'thanjavur', 'district', 'of', 'tamil', 'nadu', ',', 'india', '.'], ['linepithema', 'leucomelas', 'is', 'a', 'species', 'of', 'ant', 'in', 'the', 'genus', '``', 'linepithema', \"''\", '.'], ['brown', 'entered', 'training', 'camp', 'slated', 'as', 'a', 'starting', 'inside', 'linebacker', '.'], ['ferouza', 'quraishi', ',', 'the', 'deputy', 'of', 'the', 'provincial', 'council', 'of', 'jowzjan', ',', 'has', 'accused', 'zare', 'of', 'wasting', 'foreign', 'aid', '.'], ['the', 'two', 'were', 'riding', 'in', 'the', 'back', 'seat', 'of', 'the', 'car', 'of', 'ruth', 'carter', \"'s\", 'boyfriend', 'when', 'jimmy', 'surprised', 'rosalynn', 'by', 'kissing', 'her', '.'], ['the', 'turmoil', 'of', 'the', 'civil', 'war', 'took', 'its', 'toll', 'on', 'the', 'capell', 'family', ',', 'and', 'arthur', ',', 'a', 'royalist', ',', 'was', 'executed', 'in', '1', '6', '4', '9', '.'], ['saint', 'francis', 'catholic', 'secondary', 'school', 'is', 'one', 'of', 'three', 'niagara', 'catholic', 'district', 'school', 'board', 'secondary', 'schools', 'located', 'in', 'st.', 'catharines', ',', 'ontario', '.'], ['the', 'ninety', 'eight', 'iridium', 'satellites', 'used', 'the', 'lm-', '7', '0', '0', 'a', 'configuration', ',', 'specialised', 'for', 'communications', '.'], ['in', '2', '0', '1', '3', ',', 'he', 'changed', 'the', 'name', 'of', 'his', 'band', 'to', 'his', 'own', 'name', ':', 'gabriel', 'diniz', '.'], [\"o'neil\", 'and', 'artist', 'neal', 'adams', 'revived', 'the', 'professor', 'x', 'character', 'in', '``', 'x-men', \"''\", '#', '6', '5', 'in', 'one', 'of', 'the', 'creative', 'team', \"'s\", 'earliest', 'collaborations', '.'], ['the', 'columbus', 'historical', 'society', '(', 'chs', ')', 'is', 'the', 'historical', 'society', 'for', 'columbus', ',', 'ohio', ',', 'chronicling', 'the', 'city', \"'s\", 'history', '.'], ['shakespeare', \"'s\", 'globe', 'is', 'a', 'reconstruction', 'of', 'the', 'globe', 'theatre', ',', 'an', 'elizabethan', 'playhouse', 'for', 'which', 'william', 'shakespeare', 'wrote', 'his', 'plays', ',', 'in', 'the', 'london', 'borough', 'of', 'southwark', ',', 'on', 'the', 'south', 'bank', 'of', 'the', 'river', 'thames', '.'], ['on', 'august', '1', '5', ',', '2', '0', '1', '2', ',', 'nine', 'passengers', 'were', 'injured', '(', 'two', 'seriously', ')', 'when', 'the', 'german-registered', 'coach', 'in', 'which', 'the', 'band', 'were', 'traveling', 'fell', 'from', 'a', 'viaduct', 'near', 'bath', ',', 'england', '.'], ['``', 'pitchfork', \"''\", 'included', '``', 'alien', 'lanes', \"''\", 'in', 'their', \"'top\", '1', '0', '0', 'albums', 'of', 'the', '1', '9', '9', '0', 's', \"'\", 'polls', ',', 'at', 'no', '.'], ['before', 'they', 'did', ',', 'he', 'would', 'stick', 'his', 'thumbs', 'up', 'to', 'the', 'camera', ',', 'and', 'then', 'he', 'would', 'run', 'off', '.'], ['during', 'the', 'second', 'world', 'war', ',', 'he', 'served', 'as', 'commander-in-chief', 'of', 'the', 'new', 'zealand', 'division', 'commanding', 'at', 'the', 'battle', 'of', 'the', 'river', 'plate', 'in', 'december', '1', '9', '3', '9', '.'], ['on', 'the', 'first', ',', 'alexander', 'kristoff', '(', ')', 'took', 'second', 'place', 'to', 'win', 'two', 'bonus', 'seconds', '.'], ['in', '1', '9', '8', '7', ',', 'li', 'shengsu', 'won', 'the', 'outstanding', 'performance', 'award', 'at', 'the', 'first', 'cctv', 'national', 'youth', 'beijing', 'competition', 'with', 'her', 'performance', 'of', '``', 'lian', 'jingfeng', \"''\", '(', '廉锦枫', ')', '.'], ['its', 'floor', 'plan', 'is', 'unusual', 'as', 'the', 'choir', 'is', 'situated', 'on', 'the', 'southeast', 'instead', 'of', 'the', 'usual', 'east', 'side', 'of', 'the', 'building', '.'], ['nevertheless', ',', 'the', 'dog', \"'s\", 'conscience', 'prevails', ',', 'and', 'elmer', 'swims', 'in', 'the', 'water', '.'], ['the', 'album', 'was', 'released', 'on', 'march', '2', '1', ',', '2', '0', '0', '6', 'via', 'roadrunner', 'records', '.'], ['during', 'the', 'street', '(', 'wran', ')', 'royal', 'commission', ',', 'freeman', 'admitted', 'he', 'travelled', 'to', 'the', 'usa', 'on', 'a', 'forged', 'passport', 'to', 'visit', 'known', 'chicago', 'mobster', ',', 'joseph', 'dan', 'testa', ',', 'who', 'was', 'also', 'associated', 'with', 'australian', 'gangster', ',', 'and', 'friend', 'of', 'freeman', \"'s\", ',', 'lennie', 'mcpherson', '.'], ['this', 'connection', 'lasted', 'to', 'when', 'he', 'started', 'work', 'as', 'an', 'artist', '.'], ['he', 'felt', 'that', 'the', '``', 'legend', 'is', 'lost', \"''\", 'in', 'the', 'production', ',', 'despised', 'the', 'show', \"'s\", 'musical', 'numbers', ',', 'and', 'felt', 'that', 'selena', 'and', 'broadway', 'do', \"n't\", 'mix', '.'], ['he', 'was', 'buried', 'at', 'st.', 'john', \"'s\", 'archcathedral', ',', 'warsaw', '.'], ['many', 'argue', 'that', 'the', 'origins', 'of', 'language', 'probably', 'relate', 'closely', 'to', 'the', 'origins', 'of', 'modern', 'human', 'behavior', ',', 'but', 'there', 'is', 'little', 'agreement', 'about', 'the', 'implications', 'and', 'directionality', 'of', 'this', 'connection', '.'], ['at', 'that', 'time', ',', 'the', 'western', 'federation', 'of', 'miners', 'was', 'still', 'an', 'affiliate', 'of', 'the', 'iww', '(', 'the', 'wfm', 'withdrew', 'from', 'the', 'iww', 'in', 'the', 'summer', 'of', '1', '9', '0', '7', ')', '.'], ['in', 'traditional', 'photochemical', 'restorations', ',', 'image', 'polarity', 'considerations', 'must', 'be', 'observed', 'when', 'recombining', 'surviving', 'materials', 'and', 'the', 'final', ',', 'lowest', 'generation', 'restoration', 'master', 'may', 'be', 'either', 'a', 'duplicate', 'negative', 'or', 'a', 'fine', 'grain', 'master', 'positive', '.'], ['in', 'the', 'paris', 'exposition', 'of', '1', '9', '0', '0', ',', 'tourists', 'are', 'guided', 'around', 'a', 'zoo', '(', 'a', 'rather', 'cruel', 'zoo', 'by', 'today', \"'s\", 'standards', ')', ',', 'but', 'are', 'panic-stricken', 'to', 'find', 'a', 'wildcat', 'has', 'escaped', '.'], ['``', 'a', 'country', 'practice', \"''\", 'follows', 'as', 'the', 'third', 'most', 'successful', 'program', ',', 'having', 'won', '2', '9', 'awards', 'throughout', 'its', 'twelve-year', 'run', '.'], ['apart', 'from', 'that', ',', 'though', ',', 'he', 'is', 'a', '``', 'primus', 'inter', 'pares', \"''\", ',', 'having', 'no', 'power', 'above', 'and', 'beyond', 'the', 'other', 'six', 'councillors', '.'], ['medline', 'is', 'also', 'known', 'as', 'the', 'former', 'president', 'and', 'chief', 'executive', 'officer', 'of', 'canadian', 'tire', 'corporation', '.'], ['he', 'is', 'a', 'visiting', 'artist', 'at', 'the', 'bergen', 'national', 'academy', 'of', 'art', 'in', 'norway', ',', 'and', 'the', 'thomas', 'danby', 'college', 'in', 'the', 'uk', '.'], ['searching', 'drawers', 'and', 'inside', 'of', 'jars', 'was', 'first', 'introduced', 'in', 'this', 'game', 'as', 'a', 'means', 'to', 'find', 'items', '.'], ['in', '1', '9', '9', '2', ',', '``', 'chronicle', \"''\", 'won', 'the', 'first', 'of', 'its', 'two', 'dupont-columbia', 'awards', '.'], ['this', 'plastered', 'the', 'season', '2', 'opening', 'on', 'the', 'season', '4', 'episodes', 'in', 'all', 'post-', '1', '9', '9', '0', 'airings', 'and', 'video', 'releases', '.'], ['the', 'maximal', 'number', 'of', 'constraints', 'of', 'a', 'node', 'is', 'the', 'same', 'for', 'all', 'hinge', 'decompositions', 'of', 'the', 'same', 'problem', '.'], ['the', 'poor', 'state', 'of', 'the', 'schmachter', 'see', 'was', 'improved', 'as', 'part', 'of', 'a', 'major', 'conservation', 'project', ',', 'the', 'east', 'rügen', 'bodden', 'country', '(', '``', 'ostrügensche', 'boddenlandschaft', \"''\", ')', ',', 'which', 'implemented', 're-naturalisation', 'measures', '.'], ['he', 'also', 'donated', 'life-size', 'portraits', 'of', 'george', 'washington', 'and', 'daniel', 'webster', ',', 'which', 'still', 'hang', 'on', 'the', 'walls', 'of', 'the', 'auditorium', ',', 'and', 'a', 'chickering', 'concert', 'grand', 'piano', '.'], ['this', 'was', 'part', 'of', 'a', 'synagogue', 'project', 'by', 'the', 'federation', 'of', 'synagogues', ',', 'which', 'oversaw', 'the', 'amalgamation', 'of', 'three', 'small', 'through', 'appeals', 'that', 'condemned', 'existing', 'premises', 'as', 'unsuitable', 'for', 'public', 'worship', '.'], ['crotty', 'believed', 'that', 'irish', 'agriculture', 'would', 'be', 'damaged', 'if', 'ireland', 'joined', 'the', 'european', 'economic', 'community', '(', 'eec', ')', 'as', ',', 'instead', 'of', 'becoming', 'more', 'efficient', ',', 'farmers', 'would', 'grow', 'to', 'depend', 'on', 'external', 'subsidies', 'under', 'the', 'common', 'agricultural', 'policy', '(', 'cap', ')', '.'], ['one', 'of', 'the', 'election', 'platforms', 'of', 'felipe', 'gonzález', \"'s\", 'spanish', 'socialist', 'workers', \"'\", 'party', '(', 'psoe', ')', 'was', 'to', 'close', 'the', 'base', 'to', 'the', 'american', 'fighter', 'wing', '.'], ['he', 'served', 'as', 'city', 'architect', 'in', 'merseburg', ',', 'and', 'developed', 'the', '``', 'zollinger', 'roof', \"''\", '(', 'a', 'timber', 'lamella', 'roofing', 'system', ')', ',', 'and', 'the', 'no-fines', 'concreting', 'process', '.'], ['the', 'township', 'today', 'consists', 'of', 'small', 'scattered', 'local', 'shops', 'and', 'businesses', 'along', 'the', 'pacific', 'highway', ',', 'as', 'well', 'as', 'the', 'central', 'coast', 'campus', 'of', 'the', 'university', 'of', 'newcastle', '.'], ['he', 'was', 'born', 'in', 'or', 'near', 'banbury', ',', 'oxfordshire', ',', 'a', 'younger', 'son', 'of', 'william', 'sprigg', ',', 'steward', 'of', 'new', 'college', ',', 'oxford', ',', 'and', 'brother', 'of', 'joshua', 'sprigg', '.'], ['it', 'has', 'preserved', 'its', 'sandstone', 'tower', ',', 'apse', 'and', 'central', 'nave', 'from', 'this', 'period', '.'], ['the', '2', '0', '1', '4', 'kazakhstan', 'premier', 'league', 'was', 'the', '2', '3', 'rd', 'season', 'of', 'the', 'kazakhstan', 'premier', 'league', ',', 'the', 'highest', 'football', 'league', 'competition', 'in', 'kazakhstan', '.'], ['hunter', \"'s\", 'health', 'and', 'career', 'deteriorated', 'as', 'he', 'partook', 'of', 'the', 'st.', 'louis', 'night', 'life', ',', 'and', 'it', 'was', \"n't\", 'until', 'late', 'in', '1', '9', '0', '5', 'that', 'he', 'published', 'his', 'final', 'rag', ',', '``', 'back', 'to', 'life', ',', \"''\", 'so', 'named', 'to', 'celebrate', 'his', 'return', 'to', 'health', '.'], ['she', 'finished', 'her', 'career', 'with', '3', '2', '5', 'saves', 'ranking', 'second', 'the', 'program', \"'s\", 'history', '.'], ['it', 'was', 'released', 'in', '1', '9', '8', '4', 'from', 'their', 'second', 'studio', 'album', '``', 'what', 'a', 'life', '!', \"''\"], ['it', 'is', 'later', 'discovered', 'that', 'mr.', 'x', 'orchestrated', 'the', 'general', \"'s\", 'disappearance', 'and', 'plans', 'to', 'use', 'raxine', 'to', 'start', 'a', 'global', 'war', '.'], ['for', 'this', 'work', 'he', 'was', 'appointed', 'a', 'commander', 'of', 'the', 'order', 'of', 'the', 'british', 'empire', 'in', '1', '9', '6', '9', '.'], ['unfortunately', 'for', 'orozco', ',', 'one', 'of', 'the', 'mines', 'detonated', 'prematurely', ',', 'damaging', 'only', 'a', 'railcar', 'with', 'coal', 'and', 'also', 'alerting', 'huerta', 'to', 'the', 'possible', 'danger', '.'], ['burnt', 'corn', 'was', 'a', 'regular', 'stopping', 'point', 'for', 'stage', 'coaches', 'traveling', 'between', 'the', 'east', 'and', 'the', 'port', 'cities', 'along', 'the', 'gulf', 'cost', '.'], ['sisters', 'is', 'a', '1', '9', '8', '1', 'novel', 'by', 'lynne', 'cheney', 'published', 'only', 'in', 'a', 'signet', 'canadian', 'paperback', 'edition', 'as', 'part', 'of', 'the', 'new', 'american', 'library', '(', ')', '.'], ['he', 'has', 'also', 'provided', 'voice', 'acting', 'work', 'for', 'the', 'radio', 'industry', '.'], ['its', 'water-cooled', '2', '-cylinder', 'engine', 'displaced', '2', '.', '8', 'liters', '.'], ['after', 'the', 'war', ',', 'the', 'train', 'continued', 'service', 'on', 'a', 'changed', ',', 'shorter', 'route', ',', 'going', 'in', 'the', 'early', '1', '9', '6', '0', 's', 'from', 'warsaw', 'to', 'gdynia', 'in', '4', 'hours', 'and', '1', '8', 'minutes', '.'], ['another', 'source', 'attributes', 'the', 'idea', 'to', 'major', 'donald', 'nichols', ',', 'commanding', 'officer', 'of', 'the', '6', '0', '0', '4', 'th', 'air', 'intelligence', 'service', 'squadron', '.'], ['the', 'national', 'treasury', 'supports', 'the', 'conservation', 'and', 'restoration', 'of', 'these', 'items', ',', 'and', 'the', 'commissioner', 'for', 'cultural', 'affairs', 'provides', 'technical', 'assistance', 'for', 'their', 'administration', ',', 'restoration', ',', 'public', 'display', 'and', 'other', 'activities', '.'], ['snow', 'patrol', \"'s\", 'official', 'website', 'members', 'were', 'given', 'a', 'pre-sale', 'opportunity', '.'], ['gorman', 'died', 'on', 'january', '7', ',', '1', '9', '6', '0', 'in', 'lansing', ',', 'michigan', '.'], ['rachael', 'english', 'was', 'born', 'in', 'lincolnshire', ',', 'where', 'her', 'mother', ',', 'ruth', ',', 'was', 'raised', '.'], ['the', 'main', 'issue', 'with', 'utilising', 'ultrasound', 'measurement', 'is', 'that', 'it', 'relies', 'largely', 'on', 'the', 'skills', 'of', 'an', 'ultrasound', 'technician', ',', 'and', 'consequently', 'is', 'not', 'widely', 'used', '.'], ['he', 'was', 'cremated', 'on', '1', '6', 'june', 'at', 'eastern', 'suburbs', 'crematorium', ',', 'sydney', ',', 'after', 'a', 'full', 'military', 'funeral', ',', 'and', 'his', 'ashes', 'were', 'interred', 'at', 'woronora', 'cemetery', ',', 'sydney', '.'], ['the', 'capital', 'district', 'is', 'also', 'home', 'to', 'the', 'roman', 'catholic', 'cathedral', 'and', 'mother', 'church', ',', 'the', 'cathedral', 'of', 'the', 'immaculate', 'conception', 'with', 'bishop', 'howard', 'j.', 'hubbard', 'as', 'head', 'of', 'the', 'roman', 'catholic', 'diocese', 'of', 'albany', '.'], ['the', '2', '0', '0', '6', 'european', 'marathon', 'cup', 'was', 'the', '8', 'th', 'edition', 'of', 'the', 'european', 'marathon', 'cup', 'of', 'athletics', 'and', 'were', 'held', 'in', 'gothenburg', ',', 'sweden', ',', 'inside', 'of', 'the', '2', '0', '0', '6', 'european', 'championships', '.'], ['willis', 'also', 'presented', '``', 'celebrity', 'big', 'brother', \"'s\", 'bit', 'on', 'the', 'side', \"''\", 'alongside', 'rylan', 'clark', 'and', 'aj', 'odudu', ',', 'who', 'replaced', 'alice', 'levine', 'and', 'jamie', 'east', 'from', 'the', 'fourteenth', 'regular', 'series', '.'], ['the', 'gingiva', 'often', 'possess', 'a', 'textured', 'surface', 'that', 'is', 'referred', 'to', 'as', 'being', 'stippled', '(', 'engraved', 'points', ')', '.'], ['as', 'one', 'of', 'its', 'first', 'students', ',', 'jühlke', 'complemented', 'his', 'course', 'work', 'with', 'his', 'own', 'extensive', 'programme', 'of', 'private', 'reading', 'and', 'self-study', '.'], ['has', 'photographed', 'over', '7', '0', '0', 'female', 'models', 'to', 'date', '.'], ['tarquini', 'was', 'the', 'fastest', 'of', 'the', 'train', ',', 'ahead', 'of', 'yvan', 'muller', 'and', 'rydell', '.'], ['on', '1', 'november', '1', '9', '1', '6', ',', 'it', 'was', 'one', 'of', 'the', 'units', 'gathered', 'into', '``', 'groupe', 'de', 'combat', '1', '2', '``', ',', 'along', 'with', '``', 'escadrille', 'n', '3', '``', ',', '``', 'escadrille', 'n', '2', '6', '``', ',', 'and', '``', 'escadrille', 'n', '1', '0', '3', '``', '.'], ['she', 'had', 'been', 'raped', 'and', 'strangled', ',', 'and', 'her', 'body', 'set', 'alight', '.'], ['suzanne', 'rivard-lemoyne', 'trained', 'at', 'the', 'école', 'des', 'beaux-arts', 'de', 'québec', ',', 'as', 'well', 'as', 'with', 'andré', 'lhote', 'in', 'paris', 'in', '1', '9', '5', '7', '.'], ['in', 'a', 'parody', 'of', '``', 'poltergeist', \"''\", 'and', '``', 'the', 'amityville', 'horror', \"''\", ',', 'the', 'simpsons', 'move', 'into', 'an', 'old', 'house', ',', 'wondering', 'about', 'its', 'low', 'cost', '.'], ['senior', 'was', 'named', 'as', 'a', 'member', 'of', 'the', 'royal', 'commission', 'on', 'local', 'government', 'in', 'england', 'in', 'may', '1', '9', '6', '6', '.'], ['wu', 'and', 'zheng', 'say', 'morrison', \"'s\", 'was', 'the', 'first', 'widely', 'used', 'chinese-english', 'dictionary', 'and', 'has', 'served', 'as', 'a', '``', 'milestone', 'in', 'the', 'early', 'promotion', 'of', 'communications', 'between', 'china', 'and', 'the', 'west', \"''\", '.'], ['early', 'experiences', 'with', 'the', 'cheetah', 'found', 'it', 'to', 'be', 'markedly', 'more', 'difficult', 'to', 'successfully', 'perform', 'in-flight', 'refuelling', 'than', 'the', 'mirage', 'f', '1', 'fleet', '.'], ['the', 'racing', 'miku', 'design', 'also', 'was', 'adapted', 'for', 'a', '``', 'sepang', \"''\", 'version', 'showing', 'bare', 'toned', 'skin', 'as', 'part', 'of', 'showing', 'good', 'health', 'and', 'promoting', 'the', 'design', 'as', '``', 'the', 'angel', 'of', 'summer', \"''\", '.'], ['these', 'were', 'auster', 'aop', '.', '6', ',', 't.', '7', 'and', 't.', '1', '0', 'aircraft', 'which', 'were', 'updated', 'and', 'modified', 'with', 'de', 'havilland', 'gipsy', 'major', '1', '0', '-', '1', '-', '1', 'engines', '.'], ['with', 'the', 'sale', 'of', 'both', 'lee', 'dixon', 'and', 'steve', 'bould', 'to', 'arsenal', 'manager', 'mick', 'mills', 'was', 'able', 'to', 'enter', 'the', 'transfer', 'market', 'where', 'he', 'bought', 'peter', 'beagrie', 'and', 'chris', 'kamara', '.'], ['the', 'interesting', 'but', 'unusual', 'loop', 'executed', 'by', 'manny', 'was', 'nearly', 'the', 'same', 'as', 'pamela', 'in', 'the', '1', '9', '8', '2', 'pacific', 'typhoon', 'season', '(', 'though', 'pamela', 'completed', 'the', 'circle', 'faster', 'than', 'manny', ')', '.'], ['cavallo', 'brought', 'a', 'number', 'of', 'independent', 'economists', 'to', 'the', 'cabinet', ',', 'and', 'menem', 'supported', 'him', 'by', 'replacing', 'peronist', 'politicians', '.'], ['in', 'order', 'to', 'be', 'eligible', 'for', 'the', 'competition', ',', 'a', 'film', 'must', 'have', 'a', 'director', 'of', 'african', 'or', 'middle', 'eastern', 'nationality', ',', 'and', 'have', 'been', 'produced', 'at', 'least', 'two', 'years', 'before', 'entry', '.'], ['the', 'number', 'of', 'employees', 'declined', 'from', '4', '5', '4', 'in', '1', '9', '8', '8', 'to', '7', '5', 'in', '2', '0', '0', '5', '.'], ['carolinian', 'is', 'a', 'threatened', 'language', 'according', 'to', 'the', 'catalogue', 'of', 'endangered', 'languages', '(', 'elcat', ')', ',', 'but', 'available', 'data', 'is', 'scarce', '.'], ['hilux', 'models', 'sold', 'in', 'asian', ',', 'european', ',', 'middle', 'eastern', 'and', 'oceanian', 'markets', 'were', 'initially', 'built', 'and', 'assembled', 'in', 'thailand', '.'], ['during', 'the', 'operation', ',', 'two', 'us', 'ships', 'struck', 'mines', 'and', 'sank', 'while', 'the', 'remaining', 'vessels', 'and', 'aircraft', 'silenced', 'the', 'enemy', 'guns', '.'], ['on', 'arrival', 'he', 'visits', 'his', 'parents', \"'\", 'house', ',', 'where', 'he', 'hears', 'from', 'his', 'mother', '(', 'willeke', 'van', 'ammelrooy', ')', 'that', 'his', 'father', '(', 'john', 'leddy', ')', 'has', 'just', 'died', '.'], ['originally', 'few', 'in', 'number', ',', 'they', 'have', 'multiplied', 'over', 'the', 'years', ',', 'from', '1', '8', 'in', 'the', 'early', '1', '9', '9', '0', 's', 'to', 'at', 'least', '5', '9', 'as', 'of', 'late', '2', '0', '1', '7', ';', 'in', 'total', 'they', 'stretch', 'over', ',', 'with', 'most', 'located', 'in', 'belfast', '.'], ['on', '8', 'february', '1', '7', '9', '2', ',', 'they', 'signed', 'the', '``', 'international', 'protocol', \"''\", '(', 'known', 'as', '``', '恰克圖市約', \"''\", 'in', 'chinese', ')', 'in', 'kyakhta', 'which', 'confirmed', 'the', 'validity', 'of', 'the', 'sino-russian', 'treaty', 'of', 'kyakhta', '.'], ['males', 'had', 'a', 'median', 'income', 'of', '$', '2', '6', ',', '4', '1', '1', 'versus', '$', '2', '3', ',', '0', '3', '6', 'for', 'females', '.'], ['it', 'was', 'further', 'expanded', 'with', '3', 'other', '``', 'communautés', 'de', 'communes', \"''\", 'in', 'january', '2', '0', '1', '7', '.'], ['the', 'communist', 'party', 'of', 'bolivia', '(', ')', 'is', 'a', 'communist', 'party', 'in', 'bolivia', '.'], ['the', 'track', 'was', 'written', 'and', 'composed', 'by', 'savvy', 'gupta', '.'], ['the', 'same', 'year', 'he', 'served', 'as', 'the', 'president', 'of', 'the', '6', '0', 'th', 'meeting', 'of', 'the', 'permanent', 'international', 'altaistic', 'conference', '.'], ['return', 'from', 'subroutine', ',', 'for', 'example', ',', 'is', 'implemented', 'as', 'mov', '@', 'sp+', ',', 'pc', '.'], ['no', 'other', 'catcher', 'in', 'the', 'past', '3', '5', 'years', 'has', 'been', 'as', 'successful', 'at', 'this', 'aspect', 'of', 'the', 'game', ',', 'with', 'rodríguez', 'throwing', 'out', '4', '8', '%', 'of', 'attempted', 'basestealers', 'through', 'may', '2', '0', '0', '6', '.'], ['he', 'arrives', 'at', 'the', 'house', 'from', 'episode', '1', ',', 'where', 'the', 'small', ',', 'yellow-skinned', 'humanlike', 'creature', 'with', 'big', 'eyes', 'lives', '.'], ['returning', 'each', 'time', 'to', 'her', 'home', 'port', 'at', 'long', 'beach', ',', 'california', ',', 'the', 'ship', 'conducted', 'local', 'operations', 'between', 'her', 'cruises', 'in', 'oriental', 'waters', '.'], ['waititi', 'was', 'supported', 'by', 'fellow', 'māori', 'party', 'mp', 'ngarewa-packer', ',', 'who', 'wore', 'a', 'tie', 'in', 'mockery', 'of', 'the', 'rules', '.'], ['a', '2', '×', 'latin', 'rectangle', 'corresponds', 'to', 'a', 'permutation', 'with', 'no', 'fixed', 'points', '.'], ['in', '1', '9', '6', '3', 'he', 'was', 'elected', 'to', 'the', 'new', 'jersey', 'general', 'assembly', 'from', 'union', 'county', 'for', 'the', 'first', 'time', '.'], ['it', 'then', 'entered', 'the', 'glideslope', 'at', '3', '6', '0', 'm', 'and', 'was', '5', '0', 'm', 'left', 'of', 'the', 'runway', 'centerline', '.'], ['the', 'defending', 'pan', 'american', 'games', 'champion', 'was', 'fran', 'crippen', 'of', 'the', 'united', 'states', '.'], ['this', 'was', 'owned', 'by', 'the', 'apfaltrer', 'family', 'and', 'then', 'inherited', 'by', 'the', 'luckmann', 'family', '.'], ['prior', 'to', 'the', 'victory', 'of', 'former', 'president', 'vieira', 'in', 'the', 'mid-', '2', '0', '0', '5', 'presidential', 'election', ',', 'gomes', 'said', 'that', 'he', 'would', 'resign', 'if', 'vieira', 'was', 'elected', ',', 'referring', 'to', 'the', 'latter', 'as', 'a', '``', 'bandit', 'and', 'mercenary', 'who', 'betrayed', 'his', 'own', 'people', \"''\", '.'], ['the', 'rukwa', 'is', 'sparsely', 'populated', ',', 'with', 'an', 'economy', 'revolving', 'around', 'agriculture', ',', 'cattle', 'keeping', 'and', 'fishing', '.'], ['a', 'number', 'of', 'singaporean', 'writers', 'such', 'as', 'tan', 'swie', 'hian', 'and', 'kuo', 'pao', 'kun', 'have', 'contributed', 'work', 'in', 'more', 'than', 'one', 'language', '.'], ['in', '1', '9', '9', '2', ',', 'philips', 'classics', 'records', 'issued', 'the', 'album', 'as', 'a', 'double', 'cd', '(', 'catalogue', 'number', '4', '3', '2', '4', '5', '6', '2', ')', ',', 'packaged', 'in', 'a', 'slipcase', 'with', 'a', '1', '7', '2', '-page', 'booklet', '.'], ['more', 'typically', ',', 'male', 'roosevelt', 'elk', 'weigh', 'around', ',', 'while', 'females', 'weigh', '.'], ['william', 'pitcher', '(', 'born', '5', 'february', '1', '9', '1', '0', 'in', 'coventry', ',', 'england', '-', 'died', '2', '4', 'october', '1', '9', '9', '5', ')', 'was', 'an', 'international', 'motorcycle', 'speedway', 'rider', 'who', 'rode', 'in', 'the', 'first', 'ever', 'world', 'championship', 'final', 'in', '1', '9', '3', '6', '.'], ['the', 'other', 'children', 'in', 'the', 'village', 'were', 'friendly', 'towards', 'alder', ',', 'and', 'worked', 'together', 'to', 'teach', 'him', 'their', 'language', ',', 'customs', ',', 'and', 'traditions', '.'], ['prinsen', 'became', 'well', 'known', 'in', 'the', 'netherlands', 'for', 'playing', 'a', 'character', 'called', 'erik', 'engerd', 'in', 'this', 'show', '.'], ['he', 'traveled', 'extensively', 'with', 'his', 'parents', 'visiting', 'many', 'european', 'countries', ',', 'including', 'spain', '.'], ['it', 'is', 'found', 'from', 'venezuela', 'to', 'guatemala', ',', 'where', 'it', 'is', 'found', 'at', 'altitudes', 'between', '6', '5', '0', 'and', '1', ',', '6', '2', '0', 'meters', '.'], ['the', 'rise', 'in', 'electronic', 'dealing', ',', 'non-stop', 'input', 'and', 'updated', 'data', 'on', 'orders', ',', 'transactions', 'and', 'indices', 'are', 'among', 'other', 'features', 'of', 'the', 'new', 'system', '.'], ['on', 'february', '8', ',', '2', '0', '0', '6', ',', 'the', 'galaxy', 'sent', 'king', 'to', 'the', 'colorado', 'rapids', 'in', 'exchange', 'for', 'a', 'first', 'round', 'pick', 'in', 'the', '2', '0', '0', '7', 'mls', 'supplemental', 'draft', '.'], ['he', 'defended', 'the', 'plain', 'of', 'göttingen', 'until', '1', '9', 'may', '1', '7', '6', '1', ',', 'when', 'the', 'king', 'rewarded', 'him', 'with', 'the', 'governorship', 'of', 'thionville', '.'], ['irvine', 'masson', 'was', 'born', 'in', 'toorak', ',', 'near', 'melbourne', ',', 'the', 'son', 'of', 'sir', 'david', 'orme', 'masson', 'a', 'professor', 'of', 'chemistry', 'at', 'melbourne', 'university', ',', 'and', 'his', 'wife', ',', 'mary', 'struthers', '.'], ['in', '1', '9', '8', '2', ',', 'bristle', \"'s\", 'clay', 'pipe', 'division', 'shut', 'down', '.'], ['the', 'editorial', 'team', 'consists', 'of', 'steve', 'eminton', ',', 'joshua', 'doherty', ',', 'james', 'langley', 'and', 'robyn', 'white', '.'], ['because', 'of', '``', 'economic', 'difficulties', \"''\", 'the', 'management', 'decided', ',', 'in', 'march', '2', '0', '1', '0', ',', 'to', 'reduce', 'the', 'number', 'of', 'employees', 'in', 'editorial', 'and', 'publishing', 'areas', 'considerably', '.'], ['lamakaan', 'started', 'hosting', 'events', 'in', 'march', '2', '0', '1', '0', '.'], ['for', 'many', 'years', ',', 'the', 'comanches', 'remained', 'at', 'peace', 'with', 'new', 'mexico', '.'], ['the', 'inside', 'of', 'the', 'building', 'has', 'undergone', 'many', 'renovations', ',', 'with', 'many', 'of', 'the', 'original', 'characteristic', 'features', 'being', 'changed', '.'], ['for', 'the', 'film', \"'s\", 'release', 'in', 'the', 'united', 'states', ',', 'aip', 're-edited', 'scenes', ',', 're-dubbed', 'the', 'soundtrack', ',', 'and', 'changed', 'several', 'of', 'the', 'characters', \"'\", 'names', '.'], ['home', 'is', 'the', 'only', 'son', 'of', 'sir', 'alec', 'douglas-home', ',', 'formerly', '1', '4', 'th', 'earl', 'of', 'home', 'and', 'british', 'prime', 'minister', 'and', 'later', 'lord', 'home', 'of', 'the', 'hirsel', ',', 'and', 'elizabeth', 'alington', ',', 'daughter', 'of', 'cyril', 'alington', '.'], ['a', 'unique', 'aspect', 'of', 'this', 'whistle', 'is', 'that', 'the', 'internal', 'flow', 'carries', 'both', 'the', 'unstable', 'vortex', 'downstream', 'and', 'the', 'returning', 'feedback', 'signal', 'upstream', '.'], ['on', '1', '1', 'july', '2', '0', '1', '5', ',', 'iwata', 'died', 'of', 'bile', 'duct', 'cancer', ',', 'and', 'after', 'a', 'couple', 'of', 'months', 'in', 'which', 'miyamoto', 'and', 'takeda', 'jointly', 'operated', 'the', 'company', ',', 'tatsumi', 'kimishima', 'was', 'named', 'as', 'iwata', \"'s\", 'successor', 'on', '1', '6', 'september', '2', '0', '1', '5', '.'], ['he', 'is', 'finishing', 'a', 'short', 'documentary', 'film', ',', '``', 'two', 'down', \"''\", 'that', 'centers', 'on', 'high', 'school', 'speech', 'and', 'debate', 'tournaments', ',', 'for', 'frontal', 'lobe', 'productions', '.'], ['many', 'rate', 'cards', 'and', 'specification', 'cards', 'refer', 'to', 'the', '``', 'broadsheet', 'size', \"''\", 'with', 'dimensions', 'representing', 'the', 'front', 'page', '``', 'half', 'of', 'a', 'broadsheet', \"''\", 'size', ',', 'rather', 'than', 'the', 'full', ',', 'unfolded', 'broadsheet', 'spread', '.'], ['the', 'explosion', 'on', '``', 'soesterberg', \"''\", 'blew', 'four', 'men', 'overboard', 'and', 'wrecked', 'her', 'starboard', 'lifeboat', '.'], ['hydriomena', 'furculoides', 'is', 'a', 'species', 'of', 'moth', 'in', 'the', 'family', 'geometridae', 'first', 'described', 'by', 'william', 'barnes', 'and', 'james', 'halliday', 'mcdunnough', 'in', '1', '9', '1', '7', '.'], ['in', 'the', 'final', 'four', 'years', 'of', 'his', 'life', ',', 'the', 'tsuklakhang', 'palace', 'where', 'he', 'resided', 'became', 'a', 'spiritual', 'center', '.'], ['huerta', \"'s\", 'troops', ',', 'which', 'were', 'running', 'low', 'on', 'supplies', 'were', 'unable', 'to', 'engage', 'in', 'immediate', 'pursuit', '.'], ['she', 'has', 'served', 'as', 'shadow', 'minister', 'for', 'mental', 'health', 'since', '2', '0', '2', '0', '.'], ['although', 'writing', 'for', 'the', 'opposition', 'to', 'walpole', ',', 'which', 'included', 'tories', 'as', 'well', 'as', 'whigs', ',', 'fielding', 'was', '``', 'unshakably', 'a', 'whig', \"''\", 'and', 'often', 'praised', 'whig', 'heroes', 'such', 'as', 'the', 'duke', 'of', 'marlborough', 'and', 'gilbert', 'burnet', '.'], ['the', 'secretary-general', 'kofi', 'annan', 'was', 'requested', 'to', 'report', 'by', 'the', 'end', 'of', '1', '8', '0', 'days', 'on', 'whether', 'the', 'iraqi', 'government', 'had', 'distributed', 'aid', 'equally', ',', 'and', 'an', 'assessment', 'of', 'the', 'implementation', 'of', 'the', 'goods', 'review', 'list', '.'], ['the', 'speech', 'had', 'the', 'effect', 'of', 'opening', 'up', 'a', 'public', 'war', 'between', 'clinton', 'and', 'jesse', 'jackson', '.'], ['he', 'was', 'appointed', 'in', '2', '0', '1', '7', 'and', 'resigned', 'in', 'october', '2', '0', '2', '0', 'claiming', 'that', 'the', 'company', 'was', 'returning', 'to', 'corrupted', 'practices', '.'], ['in', 'march', '2', '0', '2', '0', 'travel', 'in', 'madrid', 'was', 'severely', 'restricted', 'by', 'measures', 'to', 'prevent', 'the', 'spread', 'of', 'the', 'coronavirus', 'pandemic', 'in', 'spain', '.'], ['after', 'being', 'thrown', 'out', 'of', 'high', 'school', 'in', '1', '9', '6', '5', ',', 'holdt', 'attended', 'krogerup', 'folk', 'high', 'school', ',', 'north', 'of', 'copenhagen', '.'], ['events', 'are', 'given', 'a', 'code', ',', 'made', 'of', 'numbers', 'and', 'letters', ',', 'describing', 'the', 'type', 'of', 'event', 'and', 'classification', 'of', 'the', 'athletes', 'competing', '.'], ['those', 'born', 'after', '1', 'january', '1', '9', '5', '5', ',', 'but', 'before', '1', 'january', '1', '9', '6', '1', 'are', 'now', 'are', 'eligible', 'to', 'collect', 'their', 'state', 'pension', 'at', '6', '7', '.'], ['note', 'that', 'the', 'above', 'equation', 'has', 'three', 'solutions', ',', 'one', 'at', 'zero', 'and', 'two', 'more', 'with', 'the', 'opposite', 'sign', '.'], ['he', 'was', 'also', 'given', 'a', 'secret', 'service', 'pension', 'of', '£', '5', '0', '0', 'p.a', '.'], ['the', 'later', 'band', 'would', 'prove', 'of', 'increasing', 'importance', 'to', 'the', 'bingo', 'durango', 'discography', '.'], ['they', 'have', 'a', 'shoulder', 'height', 'of', 'with', 'a', 'nose-to-tail', 'length', 'of', '.'], ['the', 'defeat', 'had', 'serious', 'consequences', 'for', 'charles', ':', 'his', 'supporters', 'did', \"n't\", 'trusted', 'him', 'anymore', '.'], ['the', 'speculative', 'and', 'pragmatic', 'aspects', 'of', 'his', 'thought', 'come', 'together', 'around', 'the', 'notion', 'that', 'specific', 'practices', 'can', 'be', 'developed', 'to', 'further', 'this', 'creative', 'movement', '.'], ['there', 'kpa', 'high', 'velocity', 'gun', 'and', 'heavy', '1', '2', '0', '-mm', 'mortar', 'fire', 'struck', 'the', 'column', '.'], ['he', 'was', 'a', 'member', 'of', 'the', '1', '9', '9', '3', 'national', 'league', 'champion', 'phillies', '.'], ['the', 'two', 'scheduled', 'their', 'marriage', 'to', 'take', 'place', 'in', 'july', 'and', 'kept', 'the', 'arrangement', 'secret', '.'], ['pact', 'has', 'also', 'produced', 'a', 'number', 'of', 'reports', 'and', 'research', 'papers', 'dealing', 'with', 'abduction', 'and', 'child', 'protection', 'services', ':'], ['she', 'has', 'an', 'associate', 'degree', 'in', 'nursing', 'from', 'new', 'york', 'city', 'college', 'of', 'technology', 'and', 'a', 'bachelor', \"'s\", 'degree', 'from', 'the', 'metropolitan', 'university', 'of', 'puerto', 'rico', 'and', 'a', 'master', \"'s\", 'degree', 'in', 'business', 'administration', 'from', 'the', 'university', 'central', 'of', 'michigan', 'in', 'puerto', 'rico', '.'], ['of', 'the', '3', '0', '0', 'monasteries', 'and', 'monastic', 'communities', 'on', 'athos', ',', 'hilandar', 'was', 'among', 'only', '3', '5', 'that', 'survived', 'the', 'violence', 'of', 'the', 'first', 'decade', 'of', 'the', '1', '4', 'th', 'century', '.'], ['main', 'subclans', 'among', 'bada', 'rathod', 'are', 'khola', ',', 'ratla', ',', 'khatrot', ',', 'gedavat', ',', 'raslinya', ',', 'and', 'dedavat', '.'], ['like', 'contemporary', 'designs', 'such', 'as', 'the', 'lotus', '3', '3', 'and', 'cooper', 't', '8', '1', ',', 'the', 'p', '8', '3', 'chassis', 'was', 'a', 'riveted', 'monocoque', 'made', 'of', 'duralumin', 'with', 'integral', 'fuel', 'tanks', 'running', 'down', 'the', 'chassis', 'on', 'either', 'side', 'of', 'the', 'driver', '.'], ['the', 'show', 'takes', 'features', 'from', 'the', 'book', ',', 'such', 'as', 'the', 'constant', 'abuse', 'of', 'the', 'woolly', 'mammoth', ',', 'and', 'the', 'detailed', 'and', 'colourful', 'explanations', 'of', 'the', 'machines', '.'], ['wisely', ',', 'the', 'band', 'decided', 'to', 'try', 'something', 'completely', 'different', 'and', 'join', 'forces', 'with', 'rage', 'against', 'the', 'machine/melvins', 'producer', 'gggarth', 'richardson', '.'], ['by', 'the', 'early', '1', '9', '5', '0', 's', 'it', 'became', 'simply', 'the', 'college', 'of', 'great', 'falls', ',', 'and', 'in', '1', '9', '9', '5', 'was', 'renamed', 'the', 'university', 'of', 'great', 'falls', '.'], ['during', 'this', 'same', 'period', ',', 'he', 'was', 'a', 'member', 'of', 'the', 'george', 'washington', 'university', 'faculty', ',', 'where', 'he', 'taught', 'political', 'economics', 'in', 'the', 'school', 'of', 'management', 'sciences', '.'], ['a', 'decade', 'later', ',', 'bruce', 'returns', 'as', 'a', 'bat-dressed', 'vigilante', '.'], ['he', 'joined', 'the', 'moroccan', 'workers', \"'\", 'union', 'before', 'inside', 'dissent', 'grew', 'unbearable', 'and', 'he', 'helped', 'establish', 'the', 'general', 'union', 'of', 'moroccan', 'workers', '.'], ['he', 'changed', 'his', 'surname', 'from', 'brereton', 'to', 'salusbury', 'by', 'a', '1', '7', '4', '8', 'private', 'act', 'of', 'parliament', '.'], ['originally', 'corresponding', 'with', 'the', 'boundaries', 'of', 'dyfed', '(', 'demetia', ')', ',', 'st', 'davids', 'eventually', 'comprised', 'all', 'the', 'country', 'south', 'of', 'the', 'river', 'dyfi', 'and', 'west', 'of', 'the', 'english', 'border', ',', 'with', 'the', 'exception', 'of', 'the', 'greater', 'part', 'of', 'glamorganshire', ',', 'in', 'all', 'some', '.'], ['bosè', 'died', 'at', 'the', 'general', 'hospital', 'of', 'segovia', 'on', '2', '3', 'march', '2', '0', '2', '0', ',', 'at', 'the', 'age', 'of', '8', '9', ',', 'from', 'pneumonia', 'complicated', 'by', 'covid-', '1', '9', 'during', 'the', 'pandemic', 'in', 'spain', '.'], ['many', 'awards', 'and', 'more', 'realizations', '(', 'two', 'apartment', 'buildings', 'in', 'block', '2', '1', 'in', 'novi', 'beograd', ',', 'liman', 'i', 'and', 'ii', 'in', 'novi', 'sad', ',', 'etc', '.', ')'], ['they', 'said', ':', '``', 'continued', 'arrests', 'fly', 'in', 'the', 'face', 'of', 'the', 'promises', 'made', 'this', 'week', 'by', 'the', 'myanmar', 'authorities', 'to', 'cooperate', 'with', 'the', 'united', 'nations', '.', \"''\"], ['marv', 'also', 'mentioned', 'that', 'the', 'cardinal', \"'s\", 'influence', 'is', 'what', 'allowed', 'his', 'brother', 'to', 'become', 'a', 'senator', '.'], ['while', 'the', 'ypres', 'offensive', 'was', 'still', 'continuing', ',', 'the', 'german', 'and', 'austrian', 'victory', 'at', 'caporetto', 'on', 'the', 'italian', 'front', 'led', 'to', 'british', 'forces', 'being', 'rushed', 'from', 'flanders', 'to', 'shore', 'up', 'the', 'italian', 'army', '.'], ['the', 'fleet', 'consists', 'of', 'three', 'six-car', 'sets', ',', 'numbered', 'k', '0', '1', 'to', 'k', '0', '3', 'and', 'based', 'at', 'karatsu', 'depot', '.'], ['in', '1', '9', '8', '9', ',', 'chris', 'hughes', 'asked', 'greg', 'to', 'come', 'to', 'england', 'to', 'record', 'a', 'new', 'paul', 'mccartney', 'song', '.'], ['initially', ',', 'wis', '5', '8', 'ran', 'from', 'wis', '1', '1', '(', 'now', 'us', '1', '4', ')', 'in', 'sextonville', 'to', 'wis', '3', '3', 'in', 'la', 'valle', '.'], ['this', 'means', 'that', ',', 'if', 'the', 'presence', 'of', 'anti-tank', 'mines', 'is', 'suspected', ',', 'the', 'minefield', 'must', ',', 'paradoxically', ',', 'be', 'manually', 'checked', 'first', 'to', 'make', 'it', 'safe', 'for', 'the', 'mine', 'flail', '.'], ['his', 'picture', 'was', 'in', 'a', 'silhouette', 'on', 'the', 'band', \"'s\", 'official', 'facebook', 'the', 'day', 'before', 'the', 'band', 'announced', 'a', 'new', 'line-up', '.'], ['in', 'the', 'late', 'summer', 'of', '1', '9', '4', '4', ',', 'together', 'with', 'tito', ',', 'he', 'planned', 'and', 'implemented', 'operation', 'ratweek', '.'], ['tickets', 'for', 'the', 'tour', 'went', 'on', 'general', 'sale', 'on', '1', '7', 'and', '1', '8', 'november', '2', '0', '0', '6', '.'], ['superwaba', 'applications', 'can', 'be', 'developed', 'under', 'any', 'jdk', 'supporting', 'java', '1', '.', '2', 'or', 'greater', ',', 'and', 'the', 'libraries', 'and', 'tools', 'integrate', 'with', 'development', 'environments', 'such', 'as', 'eclipse', ',', 'jbuilder', ',', 'etc', '.'], ['cornes', 'received', 'high', 'praise', 'for', 'returning', 'to', 'his', 'acclaimed', 'tagging', 'football', 'with', 'top', 'performances', 'on', 'midfield', 'heavyweights', 'brent', 'harvey', '(', 'north', 'melbourne', ')', 'and', 'gary', 'ablett', '(', 'gold', 'coast', ')', '.'], ['the', 'choices', 'made', 'of', 'internal', 'linguistic', 'variant', 'forms', 'are', 'systematically', 'constrained', 'by', 'a', 'range', 'of', 'factors', 'at', 'both', 'the', 'linguistic', 'and', 'the', 'social', 'levels', '.'], ['the', 'alps', 'make', 'up', 'the', 'northern', 'section', 'of', 'lombardy', 'and', 'then', 'shrink', 'into', 'the', 'prealps', ',', 'which', 'themselves', 'ease', 'into', 'hills', 'and', 'the', 'valleys', 'of', 'the', 'po', 'valley', '.'], ['the', 'lands', 'of', 'tour', 'and', 'kirkland', '(', 'ns', '4', '1', '6', '4', '0', '6', ')', 'formed', 'a', 'small', 'estate', 'close', 'to', 'the', 'old', 'kirktoun', 'and', 'st', 'maurs-glencairn', 'collegiate', 'church', 'about', '1', 'km', 'south-east', 'of', 'kilmaurs', ',', 'east', 'ayrshire', ',', 'parish', 'of', 'kilmaurs', ',', 'scotland', '.'], ['according', 'to', 'weapon', 'brown', 'in', 'an', 'internal', 'monologue', ',', 'this', 'caused', 'them', 'to', 'shift', 'from', 'making', 'snack', 'cakes', 'to', 'making', 'chemical', 'weapons', '.'], ['they', 'have', 'a', 'silky', 'coat', 'which', 'forms', 'a', 'topknot', 'on', 'top', 'of', 'the', 'dog', \"'s\", 'head', '.'], ['``', 'black', 'church', 'studies', ':', 'an', 'introduction', \"''\", 'is', 'a', 'textbook', 'that', 'covers', 'a', 'range', 'of', 'disciplines', 'that', 'make', 'up', 'the', 'interdisciplinary', 'field', 'of', 'black', 'church', 'studies', '.'], ['a', 'balinese', 'named', 'raden', 'gagar', 'died', 'and', 'was', 'buried', 'in', 'belanting', 'and', 'was', 'believed', 'to', 'haunt', 'the', 'village', '.'], ['according', 'to', 'fey', ',', 'the', 'character', 'is', 'not', 'bulimic', ';', '``', 'she', 'just', 'likes', 'to', 'eat', \"''\", '.'], ['several', 'bay', 'beach', 'clubs', 'service', 'the', 'surrounding', 'neighborhoods', 'as', 'recreation', 'centers', '.'], ['his', 'only', 'friend', 'in', 'prison', 'is', 'a', 'good-hearted', 'german', 'named', 'johann', 'keltner', ',', 'whose', 'reason', 'for', 'being', 'interned', 'is', 'never', 'fully', 'revealed', 'but', 'is', 'implied', 'to', 'be', 'his', 'outspoken', 'opposition', 'to', 'the', 'nazis', '.'], ['the', '1', '9', '3', '4', 'appeal', 'was', 'influential', 'in', 'steering', 'the', 'june', '1', '9', '3', '4', 'detroit', 'convention', 'of', 'the', 'socialist', 'party', 'towards', 'a', 'radical', 'new', 'declaration', 'of', 'principles', ',', 'a', 'document', 'ultimately', 'written', 'by', 'norman', 'thomas', \"'\", 'associate', 'devere', 'allen', '.'], ['he', 'finished', 'his', 'secondary', 'education', 'in', 'narvik', 'in', '1', '9', '5', '6', ',', 'took', 'military', 'training', 'in', 'harstad', 'and', 'studied', 'at', 'the', 'university', 'of', 'oslo', '.'], ['1', '8', '.', '8', '%', 'of', 'all', 'households', 'were', 'made', 'up', 'of', 'individuals', ',', 'and', '7', '.', '9', '%', 'had', 'someone', 'living', 'alone', 'who', 'was', '6', '5', 'years', 'of', 'age', 'or', 'older', '.'], ['the', 'servants', ',', 'upon', 'hearing', 'the', 'shots', ',', 'called', 'the', 'police', '.'], ['the', 'structure', 'was', 'gutted', 'and', 'converted', 'to', 'a', '2', '4', '6', '-room', 'hotel', 'by', 'the', 'gaviota', 'group', ',', 'an', 'arm', 'of', 'the', 'cuban', 'military', '.'], ['about', '6', '0', ',', '0', '0', '0', 'people', 'came', 'to', 'the', 'gathering', 'to', 'participate', 'in', 'the', 'protest', '.'], ['he', 'also', 'collaborated', 'with', 'carl', 'wu', 'and', 'sarah', 'elgin', '(', 'then', 'at', 'harvard', ')', 'on', 'fundamental', 'properties', 'of', 'metazoan', 'chromatin', 'structure', '(', 'wu', ',', 'et', 'al.', ',', '1', '9', '7', '9', ')', '.'], ['it', 'was', 'the', 'largest', 'strike', 'in', 'history', '(', 'as', 'of', '2', '0', '0', '7', ')', 'against', 'deutsche', 'bahn', '.'], ['sergio', 'morra', 'is', 'a', 'young', 'businessman', 'from', 'taranto', 'who', 'manages', 'small-scale', 'trafficking', 'of', 'young', 'escorts', 'which', 'he', 'uses', 'to', 'bribe', 'local', 'politicians', 'and', 'obtain', 'licenses', 'outside', 'normal', 'procedures', '.'], ['rainn', 'wilson', 'was', 'cast', 'as', 'power-hungry', 'sycophant', 'dwight', 'schrute', ',', 'and', 'he', 'watched', 'every', 'episode', 'of', 'the', 'british', 'series', 'before', 'he', 'auditioned', '.'], ['in', 'reality', 'the', 'auxiliary', '``', 'ya', \"''\", 'is', 'a', 'reduced', 'form', 'of', 'the', 'imperfective', 'marker', '``', 'yak', \"''\", ',', 'though', 'variation', 'and', 'conditioning', 'vary', 'greatly', 'across', 'dialects', '.'], ['lü', 'is', 'also', 'one', 'of', 'the', 'most', 'prominent', 'cases', 'in', 'chinese', 'history', 'of', 'literary', 'inquisition', '.'], ['for', 'the', 'church', 'of', 'the', 'convent', 'of', 'atocha', 'at', 'madrid', 'he', 'painted', 'a', '``', 'marriage', \"''\", 'and', '``', 'death', 'of', 'st.', 'joseph', \"''\", 'and', 'in', 'the', 'church', 'of', 'san', 'gerónimo', 'el', 'real', ',', 'a', 'large', 'altar-piece', 'of', 'the', '``', 'annunciation', \"''\", '.'], ['2', '3', '.', '5', '%', 'of', 'all', 'households', 'were', 'made', 'up', 'of', 'individuals', ',', 'and', '5', '.', '1', '%', 'had', 'someone', 'living', 'alone', 'who', 'was', '6', '5', 'years', 'of', 'age', 'or', 'older', '.'], ['teams', 'which', 'participated', 'in', 'partial', 'season', 'or', 'on', 'a', 'race', 'by', 'race', 'basis', 'were', 'not', 'counted', 'as', 'part', 'of', 'the', 'championship', '.'], ['the', 'hull', 'had', 'an', 'all-welded', 'steel', 'construction', 'that', 'incorporates', 'a', 'high-strength', 'alloy', 'steel', 'and', 'was', 'manufactured', 'using', 'advanced', 'welding', 'techniques', ',', 'providing', 'adequate', 'protection', 'from', 'small', 'arms', 'and', 'cannon', 'fire', '.'], ['in', 'february', '2', '0', '0', '9', ',', 'with', 'the', 'help', 'from', 'the', 'norwegian', 'national', 'association', 'for', 'lesbian', 'and', 'gay', 'liberation', ',', 'bob', 'organised', 'the', 'first', 'lgbt-related', 'workshop', 'in', 'bangladesh', ',', 'titled', '``', 'workshop', 'on', 'sexual', 'diversity', ',', 'partnership', 'building', 'and', 'networking', \"''\", '.'], ['cristiani', \"'s\", 'work', 'on', 'bertolucci', \"'s\", 'next', 'film', ',', '``', 'the', 'sheltering', 'sky', \"''\", '(', '1', '9', '9', '0', ')', ',', 'is', 'noted', 'for', 'a', 'technical', 'innovation', ',', 'which', 'was', 'the', '``', 'nonlinear', \"''\", 'editing', 'of', 'the', 'film', 'using', 'digital', 'techniques', '.'], ['talagang', 'population', 'is', 'based', 'on', '9', '9', '%', 'muslims', '.'], ['by', 'the', 'omerê', 'river', ',', 'a', 'single', 'family', 'of', 'kanoê', 'can', 'be', 'found', ',', 'with', 'much', 'less', 'influence', 'from', 'the', 'brazilian', 'society', '.'], ['winter', 'and', 'his', 'consort', 'began', 'organizing', 'many', 'different', 'events', 'at', 'the', 'cathedral', ',', 'and', 'in', 'turn', ',', 'the', 'cathedral', 'allowed', 'the', 'use', 'of', 'its', 'very', 'reverberant', 'sanctuary', '(', 'with', 'a', 'measured', 'seven', 'seconds', 'of', 'reverberation', 'time', ')', 'and', 'its', 'organ', 'for', 'the', 'creation', 'of', 'new', 'albums', '.'], ['in', 'the', 'mid-', '1', '9', '4', '0', 's', ',', 'fasanella', 'began', 'to', 'suffer', 'from', 'intense', 'finger', 'pain', 'caused', 'by', 'arthritis', '.'], ['lake', 'barkley', ',', 'a', 'reservoir', 'in', 'livingston', 'county', ',', 'lyon', 'county', 'and', 'trigg', 'county', 'in', 'kentucky', 'and', 'extending', 'into', 'stewart', 'county', 'and', 'houston', 'county', 'in', 'tennessee', ',', 'was', 'impounded', 'by', 'the', 'u.s.', 'army', 'corps', 'of', 'engineers', 'in', '1', '9', '6', '6', 'upon', 'the', 'completion', 'of', 'barkley', 'dam', '.'], ['during', 'the', 'same', 'month', ',', 'the', 'kotipizza', 'chain', \"'s\", 'monthly', 'sales', 'exceeded', 'eur', '1', '0', 'million', 'for', 'the', 'first', 'time', '.'], ['it', 'aired', 'on', 'february', '1', '1', ',', '2', '0', '0', '7', '.'], ['joseph', 'morgenstern', 'of', '``', 'newsweek', \"''\", 'wrote', 'that', 'she', '``', 'looks', 'lovely', \"''\", 'and', '``', 'sings', 'beautifully', ',', 'with', 'an', 'occasional', 'startling', 'reference', 'to', 'the', 'phrasing', 'and', 'timbre', 'of', 'ella', 'logan', \"'s\", 'original', 'performance', '.', \"''\"], ['the', '``', 'tarzan', \"''\", 'song', 'score', 'by', 'pop', 'star', 'phil', 'collins', 'resulted', 'in', 'significant', 'record', 'sales', 'and', 'an', 'academy', 'award', 'for', 'best', 'song', '.'], ['it', 'was', 'promoted', 'by', 'the', 'section', 'of', 'culture', 'of', 'the', 'city', 'council', 'of', 'madrid', ',', 'which', 'wanted', 'to', 'represent', 'the', 'main', 'heraldic', 'symbols', 'of', 'the', 'city', 'in', 'a', 'monument', '.'], ['upon', 'graduation', ',', 'he', 'was', 'assigned', 'to', 'the', '2', '8', 'th', 'infantry', 'at', 'fort', 'niagara', ',', 'new', 'york', '.'], ['with', 'demonstrations', 'such', 'as', 'the', 'women', \"'s\", 'march', 'on', 'versailles', ',', 'and', 'the', 'demonstration', 'of', '2', '0', 'june', '1', '7', '9', '2', ',', 'women', 'displayed', 'their', 'commitment', 'to', 'the', 'revolution', '.'], ['he', 'rose', 'to', 'the', 'rank', 'of', 'colonel', 'and', 'afterwards', 'worked', 'at', 'wellington', 'hospital', '.'], ['he', 'photographed', 'the', 'new', 'york', 'philharmonic', 'concerts', 'at', 'lewisohn', 'stadium', '.'], ['with', 'little', 'money', 'left', ',', 'sharon', 'offered', 'to', 'pay', 'for', 'his', 'legal', 'fees', 'and', 'brought', 'in', 'vance', 'and', 'his', 'new', 'legal', 'partner', ',', 'leslie', 'michaelson', '.'], ['(', 'two', 'spells', ')', 'in', '1', '9', '8', '4', 'and', '1', '9', '8', '9', ',', 'wakefield', 'trinity', '(', 'heritage', 'no', '.'], ['they', 'conclude', 'that', 'countries', 'that', 'are', 'more', 'economically', 'sound', ',', 'and', 'have', 'more', 'individuals', 'with', 'the', 'ability', 'to', 'diversify', 'their', 'livelihoods', ',', 'will', 'show', 'higher', 'levels', 'of', 'resiliency', '.'], ['bloglines', 'offered', 'an', 'application', 'programming', 'interface', 'that', 'maintainers', 'of', 'web', 'sites', 'could', 'use', 'to', 'write', 'software', 'to', 'read', 'feeds', ',', 'search', 'its', 'database', 'of', 'feed', 'entries', ',', 'and', 'ping', 'the', 'service', 'when', 'a', 'website', 'was', 'updated', '.'], ['on', 'december', '1', '1', ',', '2', '0', '0', '3', 'doug', 'michels', 'was', 'replaced', 'as', 'ceo', 'by', 'frank', 'wilde', '.'], ['over', 'two', 'hundred', 'protestors', 'marched', 'through', 'the', 'city', 'and', 'held', 'a', 'peaceful', 'rally', 'on', 'june', '1', '1', ',', 'starting', 'at', 'the', 'franklin', 'library', '.'], ['many', 'of', 'mackenzie', \"'s\", 'biographers', 'agree', 'that', 'he', 'delayed', 'the', 'implementation', 'of', 'responsible', 'government', 'because', 'the', 'upper', 'canada', 'rebellion', 'caused', 'an', 'exodus', 'of', 'reform', 'politicians', 'from', 'the', 'colony', '.'], ['the', 'company', 'built', 'new', 'garages', 'in', 'several', 'towns', ',', 'a', 'new', 'headquarters', ',', 'with', 'major', 'engineering', 'workshops', ',', 'in', 'bedford', 'road', ',', 'northampton', ',', 'and', 'a', 'central', 'covered', 'bus', 'station', 'at', 'derngate', ',', 'northampton', ',', 'thus', 'putting', 'it', 'into', 'a', 'good', 'shape', 'to', 'withstand', 'the', 'rigours', 'of', 'wartime', 'operation', '.'], ['super', 'moderators', 'oversaw', 'subject-matter', 'specific', 'areas', 'of', 'the', 'forums', 'which', 'were', 'either', 'part', 'of', 'their', 'expertise', 'or', 'was', 'part', 'of', 'their', 'geographical', 'location', '.'], ['changes', 'were', 'also', 'made', 'to', 'azucena', \"'s\", '``', 'stride', 'la', 'vampa', \"''\", 'and', 'to', 'the', 'count', \"'s\", 'lines', '.'], ['the', 'ship', 'was', 'built', 'as', 'yard', 'number', '6', '1', '4', 'in', '1', '9', '3', '9', 'by', 'deutsche', 'schiff-', 'und', 'maschinenbau', 'ag', ',', 'bremen', ',', 'germany', 'as', '``', 'mars', \"''\", 'for', 'neptun', 'line', ',', 'bremen', '.'], ['1', '3', 'squadron', 'was', 'assigned', 'the', 'role', 'of', 'map', 'production', 'which', 'remains', 'its', 'core', 'duties', 'to', 'this', 'day', '.', '1', '4', 'field', 'survey', 'squadron', 'remained', 'in', 'germany', 'after', 'the', 'second', 'world', 'war', ',', 'and', 'provided', 'geographic', 'support', 'to', 'the', 'british', 'army', 'on', 'the', 'rhine', '.'], ['he', 'escapes', 'by', 'jumping', 'of', 'a', 'window', 'knocking', 'over', 'a', 'table', 'of', 'food', '.'], ['suppose', '``', 'm', \"''\", 'has', 'a', 'right', 'action', 'of', 'a', 'ring', '``', 's', \"''\", 'that', 'commutes', 'with', 'the', '``', 'r', \"''\", '-action', ';', 'i.e.', ',', '``', 'm', \"''\", 'is', 'an', '(', '``', 'r', \"''\", ',', '``', 's', \"''\", ')', '-module', '.'], ['he', 'is', 'also', 'referred', 'to', 'as', 'svayambhu', '(', ')', 'and', 'is', 'associated', 'with', 'creation', ',', 'knowledge', 'and', '``', 'vedas', \"''\", '.'], ['results', 'of', 'such', 'polls', 'are', 'displayed', 'in', 'this', 'article', '.'], ['in', '2', '0', '0', '6', ',', 'escapist', 'magazine', 'reported', 'that', 'a', 'hindu', 'first-person', 'shooter', 'entitled', '``', 'my', 'hindu', 'shooter', \"''\", 'was', 'in', 'the', 'works', '.'], ['he', 'said', ',', \"'that\", 'is', 'what', 'i', 'want', '.', \"'\"], ['construction', 'began', 'that', 'year', 'and', 'the', 'church', 'was', 'designed', 'by', 'joseph', 'kaye', 'of', 'huddersfield', '(', '1', '7', '8', '3', '-', '1', '8', '5', '8', ')', '.'], ['it', 'was', 'constructed', 'as', 'a', 'cathedral', 'in', 'the', '1', '9', '2', '0', 's', 'during', 'the', 'italian', 'libya', 'colonial', 'era', ',', 'and', 'converted', 'into', 'a', 'mosque', 'in', '1', '9', '7', '0', ',', 'with', 'the', 'st.', 'francis', 'pro-cathedral', 'now', 'serving', 'as', 'temporary', 'cathedral', 'for', 'the', 'apostolic', 'vicariate', 'of', 'tripoli', '.'], ['in', 'the', '2', '0', '0', '0', 's', 'priest', \"'s\", 'thought', 'turned', 'to', 'the', 'relationship', 'between', 'philosophy', 'and', 'theology', '.'], ['the', 'band', 'has', 'also', 'played', 'at', 'the', 'arvika', 'festival', '.'], ['the', 'naval', 'commando', 'operations', '(', 'x', ')', 'is', 'considered', 'to', 'be', 'among', 'the', 'best', 'planned', 'and', 'executed', 'military', 'operations', 'in', 'the', 'world', '.'], ['the', 'ala', 'made', 'the', 'decision', 'to', 'deliberate', 'the', 'fate', 'of', 'the', 'resolution', 'and', 'report', 'its', 'results', 'at', 'the', '1', '9', '7', '7', 'detroit', 'conference', '.'], ['in-situ', 'replacement', 'of', 'all', 'of', 'these', 'components', 'and', 'structures', 'is', 'problematic', '-', 'the', 'reactor', 'pressure', 'vessel', 'being', 'of', 'particular', 'significance', 'in', 'this', 'regard', '.'], ['thirty', 'years', 'later', 'the', 'institution', \"'s\", 'title', 'was', 'changed', 'to', 'the', '``', 'royal', 'national', 'lifeboat', 'institution', \"''\", 'and', 'the', 'first', 'of', 'the', 'new', 'lifeboats', 'to', 'be', 'built', 'was', 'stationed', 'at', 'douglas', 'in', 'recognition', 'of', 'hillary', \"'s\", 'work', '.'], ['if', 'the', 'discount', 'rate', 'for', 'stocks', '(', 'shares', ')', 'with', 'this', 'level', 'of', 'systematic', 'risk', 'is', '1', '2', '.', '5', '0', '%', ',', 'then', 'a', 'constant', 'perpetuity', 'of', 'dividend', 'income', 'per', 'dollar', 'is', 'eight', 'dollars', '.'], ['the', 'real', 'life', 'residence', 'of', 'gay', 'pop', 'artist', 'painters', 'costus', '(', 'juan', 'carrero', 'and', 'enrique', 'naya', ')', ',', 'who', 'also', 'appear', 'in', 'the', 'film', ',', 'served', 'as', 'the', 'place', 'where', 'luci', 'and', 'bom', 'set', 'up', 'their', 'home', '.'], ['no', 'bishop', 'of', 'oviedo', 'attended', 'the', 'council', 'which', 'suppressed', 'the', 'diocese', 'of', 'simancas', 'in', '9', '7', '4', ',', 'or', 'if', 'one', 'did', 'he', 'did', 'not', 'sign', 'the', 'acts', '.'], ['it', 'seems', 'at', 'the', 'end', ',', 'anthony', 'and', 'angela', 'may', 'come', 'to', 'terms', 'with', 'america', \"'s\", 'racist', 'past', 'and', 'their', 'own', 'brighter', 'future', '.'], ['leivonen', 'lost', 'his', 'second', 'straight', 'match', ',', 'completing', 'a', 'sudden', 'drop', 'from', 'one', 'of', 'two', 'undefeated', 'wrestlers', 'to', 'one', 'of', '3', '5', 'who', 'did', 'not', 'make', 'it', 'to', 'the', 'final', 'round', ',', 'with', 'gerstacker', 'advancing', 'on', 'the', 'strength', 'of', 'that', 'win', '.'], ['he', 'was', 'a', '``', 'chicago', 'tribune', \"''\", 'and', '``', 'chicago', 'sun-times', \"''\", 'all-state', 'honoree', 'as', 'a', 'senior', '.'], ['the', 'away', 'strip', '(', 'and', \"'seconds\", \"'\", 'strip', ')', 'is', 'the', 'same', 'as', 'the', 'home', 'but', 'with', 'red', 'bands', 'in', 'place', 'of', 'the', 'black', '.'], ['a', 'show', 'in', 'chicago', 'was', 'announced', 'later', ',', 'and', 'tickets', 'for', 'this', 'show', 'went', 'on', 'general', 'sale', 'on', '2', 'december', '1', '2', 'pm', '(', 'cst', ')', ',', 'and', 'could', 'be', 'obtained', 'through', 'ticketmaster', '.'], ['opie', 'rejected', 'reynolds', \"'s\", 'tradition', 'of', 'idealising', 'the', 'subjects', 'of', 'paintings', ',', 'observing', 'that', 'he', 'did', 'not', 'believe', '``', 'that', 'the', 'flesh', 'of', 'heroes', 'is', 'less', 'like', 'flesh', 'than', 'that', 'of', 'other', 'men', \"''\", '.'], ['in', 'early', '2', '0', '1', '7', ',', 'he', 'signed', 'with', 'creative', 'artists', 'agency', '(', 'caa', ')', ',', 'and', 'put', 'together', 'his', 'debut', 'tour', 'can', 'i', 'drop', 'out', 'yet', 'in', 'the', 'fall', 'of', '2', '0', '1', '7', '.'], ['some', 'of', 'the', 'music', 'was', 'co-released', 'with', 'troniks', ',', 'freak', 'animal', ',', 'ground', 'fault', 'recordings', ',', 'sss', ',', 'satutory', 'tape', ',', 'nurse', 'with', 'wound', \"'s\", 'label', '(', 'united', 'dairies', ')', ',', 'and', 'more', '.'], ['meiron', 'amir', 'cheruti', '(', ';', 'born', '1', '9', 'october', '1', '9', '9', '7', ')', 'is', 'an', 'israeli', 'swimmer', '.'], ['gygax', 'updated', 'the', 'scenario', 'to', '``', 'advanced', 'dungeons', '&', 'amp', ';', 'dragons', \"''\", '(', 'ad', '&', 'amp', ';', 'd', ')', 'rules', ',', 'hoping', 'it', 'could', 'serve', 'as', 'a', 'primer', 'on', 'how', 'to', 'integrate', 'science', 'into', 'one', \"'s\", 'fantasy', 'role', 'playing', 'game', '.'], ['blount', 'responded', 'by', 'publishing', '``', 'a', 'world', 'of', 'errors', 'discovered', 'in', 'the', 'interpreter', 'of', 'hard', 'words', ',', 'written', 'against', 'sir', 'edward', 'phillips', 'book', 'entitled', 'a', 'new', 'world', \"''\", 'in', '1', '6', '7', '3', '.'], ['she', 'officially', 'became', 'the', 'first', 'female', 'modern', 'orthodox', 'rabbi', 'in', 'the', 'united', 'states', 'of', 'america', 'when', 'the', 'modern', 'orthodox', 'mount', 'freedom', 'jewish', 'center', 'in', 'randolph', ',', 'new', 'jersey', 'hired', 'her', 'as', 'a', 'spiritual', 'leader', 'in', 'january', '2', '0', '1', '6', '.'], ['the', 'town', 'has', 'a', 'small', 'regional', 'medical', 'center', ',', 'a', 'mayor', \"'s\", 'office', ',', 'an', 'active', 'marketplace', ',', 'a', 'petrol', 'station', ',', 'a', 'high', 'school', ',', 'five', 'primary', 'schools', ',', 'a', 'catholic', 'church', ',', 'several', 'protestant', 'churches', ',', 'and', 'a', 'mosque', '.'], ['the', 'viewer', 'is', 'also', 'led', 'to', 'believe', 'that', 'the', 'future', 'russian', 'army', 'will', 'be', 'largely', 'composed', 'of', 'children', 'such', 'as', 'these', '.'], ['in', '5', '4', 'games', 'with', 'pawtucket', 'and', '1', '2', 'games', 'of', 'rehab', 'for', 'the', 'portland', 'sea', 'dogs', ',', 'he', 'hit', 'a', 'combined', '.', '2', '4', '2', 'with', '5', 'hr', 'and', '2', '4', 'rbi', '.'], ['his', 'mixes', 'have', 'featured', 'on', 'many', 'chart', 'releases', 'including', ',', 'but', 'not', 'limited', 'to', ':'], ['from', '1', '7', '3', '4', 'until', '1', '7', '3', '9', 'he', 'wrote', 'anonymously', 'for', 'the', 'leading', 'tory', 'periodical', ',', '``', 'the', 'craftsman', \"''\", ',', 'against', 'the', 'prime', 'minister', ',', 'sir', 'robert', 'walpole', '.'], ['its', 'studios', 'are', 'located', 'inside', 'the', 'sea', 'and', 'sky', 'college', 'campus', ',', 'macarthur', 'highway', ',', 'brgy', '.'], ['on', 'the', 'other', 'hand', ',', 'the', 'uniformization', 'theorem', ',', 'a', 'central', 'result', 'in', 'the', 'classification', 'of', 'riemann', 'surfaces', ',', 'states', 'that', 'every', 'simply-connected', 'riemann', 'surface', 'is', 'biholomorphic', 'to', 'the', 'complex', 'plane', ',', 'the', 'hyperbolic', 'plane', ',', 'or', 'the', 'riemann', 'sphere', '.'], ['in', '1', '9', '5', '3', 'the', 'play', 'was', 'adapted', 'into', 'a', 'film', 'directed', 'by', 'michael', 'anderson', '.'], ['in', '2', '0', '0', '8', ',', 'chettleburgh', 'stated', 'that', 'there', 'were', 'approximately', '1', '2', 'confirmed', 'npf', 'members', 'in', 'peel', '.'], ['in', 'june', ',', 'colombian', 'newspaper', '``', 'el', 'heraldo', \"''\", 'reported', 'that', 'shakira', 'had', 'been', 'filming', 'the', 'music', 'video', 'for', 'the', 'song', 'in', 'lisbon', ',', 'portugal', ',', 'and', 'speculated', 'that', 'it', 'would', 'be', 'in', 'late', '2', '0', '1', '2', '.'], ['this', 'flexibility', 'allows', 'the', 'work', 'content', 'to', 'be', 'adapted', 'as', 'demand', 'or', 'product', 'mix', 'changes', '.'], ['jin', 'participated', 'in', '``', 'idler', ':', 'sister', 'ma', \"''\", '(', '1', '9', '9', '9', ')', 'and', '``', 'chinese', 'communist', 'party', 'member', ':', 'sister', 'ma', \"''\", '(', '2', '0', '0', '2', ')', 'as', 'grandmother', 'liu', ',', 'sitcoms', 'directed', 'by', 'ying', 'da', ',', 'the', 'former', 'husband', 'of', 'song', 'dandan', '.'], ['early', 'in', '1', '9', '6', '8', ',', 'novotný', 'was', 'ousted', 'and', 'replaced', 'by', 'slovak', 'alexander', 'dubček', '.'], ['the', 'single', 'was', 'a', 'great', 'combination', 'of', 'the', 'best', '``', 'conscience', \"''\", 'subgenre', 'of', 'rap', 'artists', '.'], ['van', 'keuren', 'became', 'connecticut', 'adjutant', 'general', 'from', '1', '8', '9', '9', 'to', '1', '9', '0', '0', '.'], ['south', 'of', 'this', 'interchange', ',', 'the', 'i-', '2', '8', '0', 'freeway', 'transitions', 'to', 'state', 'route', '4', '2', '0', '(', 'sr', '4', '2', '0', ')', ',', 'a', 'divided', 'highway', 'without', 'access', 'control', ',', 'that', 'also', 'provides', 'access', 'to', 'a', 'truck', 'stop', 'and', 'other', 'businesses', '.'], ['old', 'san', 'juan', 'is', 'the', 'oldest', 'settlement', 'within', 'puerto', 'rico', 'and', 'the', 'historic', 'colonial', 'section', 'of', 'the', 'city', 'of', 'san', 'juan', '.'], ['the', 'hensoldt', 'fero', '4', '×', '2', '4', 'telescopic', 'sight', 'and', 'mount', 'assembly', 'were', 'developed', 'for', 'designated', 'marksman', 'use', '.'], ['the', 'first', 'case', 'was', 'identified', 'in', '1', '9', '8', '1', 'and', 'published', 'in', 'a', 'dutch', 'clinical', 'chemistry', 'journal', 'that', 'highlighted', 'a', 'number', 'of', 'neurological', 'conditions', 'such', 'as', 'delayed', 'intellectual', ',', 'motor', ',', 'speech', ',', 'and', 'language', 'as', 'the', 'most', 'common', 'manifestations', '.'], ['however', ',', 'following', 'the', 'decision', 'of', 'the', 'cumberland', 'sheriff', 'to', 'disallow', '4', '6', 'of', 'lawson', \"'s\", 'votes', ',', 'his', 'total', 'equalled', 'that', 'of', 'his', 'cousin', 'gilfrid', 'lawson', 'and', 'it', 'was', 'the', 'latter', 'who', 'was', 'returned', '.'], ['in', '1', '9', '3', '0', ',', 'the', 'club', 'had', '1', ',', '6', '0', '0', 'members', '.'], ['``', 'whitford', \"''\", 'has', 'been', 'characterized', 'as', 'an', 'uncommon', 'l-type', 'asteroid', 'by', 'pan-starrs', 'photometric', 'survey', '.'], ['literature', 'of', 'singapore', ',', 'or', '``', 'singlit', \"''\", ',', 'comprises', 'a', 'collection', 'of', 'literary', 'works', 'by', 'singaporeans', 'written', 'chiefly', 'in', 'the', 'country', \"'s\", 'four', 'official', 'languages', ':', 'english', ',', 'malay', ',', 'mandarin', ',', 'and', 'tamil', '.'], ['as', 'of', 'february', '2', '0', '1', '1', ',', 'these', 'codes', 'are', 'no', 'longer', 'in', 'use', '.'], ['in', 'the', 'churchyard', ',', 'don', 'juan', 'tells', 'catalinón', 'about', 'how', 'lovely', 'isabela', 'looks', 'and', 'how', 'they', 'are', 'to', 'be', 'married', 'in', 'a', 'few', 'hours', '.'], ['bury', 'tomorrow', 'toured', 'continuously', 'over', 'the', 'course', 'of', '2', '0', '1', '0', ',', 'touring', 'across', 'the', 'united', 'states', ',', 'europe', 'and', 'japan', '.'], ['murmur', 'was', 'a', 'record', 'label', 'that', 'started', 'as', 'an', 'imprint', 'of', 'sony', 'music', 'australia', 'in', 'mid-', '1', '9', '9', '4', '.'], ['by', 'the', '1', '9', '5', '0', 's', ',', 'the', 'greater', 'minneapolis-saint', 'paul', 'metropolitan', 'area', 'had', 'fully', 'absorbed', 'the', 'town', '.'], ['in', '1', '9', '9', '0', 'and', '1', '9', '9', '1', 'he', 'studied', 'as', 'an', 'intern', 'at', 'the', 'institut', 'des', 'arts', 'plastiques', '(', 'institute', 'of', 'plastic', 'arts', ')', 'in', 'paris', ',', 'france', '.'], ['it', 'has', 'been', 'suggested', 'that', 'they', 'could', 'be', 'reared', 'to', 'be', 'used', 'for', 'the', 'control', 'of', 'pathogenic', 'fungi', 'in', 'greenhouses', 'and', 'other', 'indoor', 'cultures', '.'], ['after', 'taking', '2', '0', 'th', 'place', ',', 'her', 'breakthrough', 'began', 'in', 'december', '2', '0', '1', '1', 'when', 'she', 'received', 'gold', 'in', 'the', 'women', \"'s\", 'parallel', 'giant', 'slalom', 'in', 'carezza', ',', 'italy', '.'], ['since', 'high', 'bids', 'came', 'in', 'to', 'operate', 'the', 'service', ',', 'the', 'city', \"'s\", 'mayor', 'appointed', 'a', 'committee', 'made', 'up', 'of', 'supporters', 'and', 'detractors', 'of', 'the', 'bus', 'service', '.'], ['it', 'was', 'described', 'by', 'arthur', 'gardiner', 'butler', 'in', '1', '8', '7', '6', '.'], ['he', 'was', 'invited', 'to', '``', 'sábado', 'gigante', \"''\", ',', 'and', '``', 'esta', 'noche', 'tu', 'night', \"''\", 'to', 'perform', 'the', 'hit', 'single', '``', 'feel', 'the', 'rhythm', \"''\", '.'], ['on', '``', 'cbs', 'this', 'morning', \"''\", '-', 'statue', 'depicts', 'black', 'man', 'on', 'horseback', '``', 'speaking', 'back', \"''\", 'to', 'people', 'looking', 'at', 'confederate', 'monuments'], ['the', 'treaty', 'guaranteed', 'the', 'yakama', 'rights', 'to', 'their', 'land', ';', 'however', ',', 'following', 'publicity', 'about', 'discovery', 'of', 'gold', 'in', 'the', 'area', ',', 'miners', 'soon', 'converged', 'on', 'the', 'yakama', 'reservation', '.'], ['his', 'education', 'was', 'supervised', 'by', 'general', 'alexander', 'daller', ',', 'a', 'retired', 'artillery', 'officer', '.'], ['brahma', '(', ')', 'is', 'one', 'of', 'the', 'principal', 'deities', 'of', 'hinduism', ',', 'though', 'his', 'importance', 'has', 'declined', 'in', 'recent', 'centuries', '.'], ['dard', '(', '``', 'pain', \"''\", ')', 'is', 'a', '1', '9', '8', '1', 'bollywood', 'crime', 'film', 'directed', 'by', 'ambrish', 'sangal', '.'], ['lower', 'alloways', 'creek', 'township', 'also', 'borders', 'the', 'delaware', 'bay', ',', 'cumberland', 'county', 'and', 'a', 'small', 'point', 'of', 'land', 'that', 'is', 'located', 'within', 'delaware', \"'s\", 'twelve-mile', 'circle', '.'], ['the', 'stories', 'of', 'ibis', 'begins', 'with', 'a', 'wandering', 'storyteller', 'who', 'encounters', 'ibis', '.'], ['2', '3', 'seed', 'jack', 'sock', 'and', 'unseeded', 'dan', 'evans', 'in', 'the', 'third', 'and', 'fourth', 'rounds', 'respectively', ',', 'both', 'in', 'four', 'sets', '.'], ['director', 'indra', 'kumar', 'has', 'decided', 'to', 'do', 'away', 'with', 'the', 'female', 'leads', 'and', 'bring', 'back', 'the', 'entire', 'cast', 'from', 'the', 'hit', 'film', 'dhamaal', 'with', 'one', 'change', '.'], ['srebrna', 'is', 'a', 'village', 'in', 'the', 'administrative', 'district', 'of', 'gmina', 'naruszewo', ',', 'within', 'płońsk', 'county', ',', 'masovian', 'voivodeship', ',', 'in', 'east-central', 'poland', '.'], ['cochrane', \"'s\", 'father', 'was', 'a', 'historian', 'at', 'the', 'university', 'of', 'chicago', '.'], ['one', 'year', 'later', ',', 'a', 'movie', 'theater', 'opened', 'behind', 'the', 'mall', '.'], ['euston', 'square', 'was', 'now', 'vulnerable', 'to', 'a', 'chancery', 'suit', ',', 'and', ',', 'in', 'the', 'spring', 'of', '1', '8', '5', '7', 'a', 'director', 'of', 'the', 'great', 'northern', 'railway', 'filed', 'a', 'petition', 'in', 'chancery', '.'], ['before', 'the', 'opening', 'of', 'br-', '1', '7', '4', ',', 'the', 'only', 'communication', 'link', 'between', 'the', 'capitals', 'of', 'roraima', 'and', 'amazonas', 'were', 'along', 'the', 'rio', 'branco', ',', 'which', 'is', 'only', 'navigable', 'three', 'to', 'four', 'months', 'of', 'the', 'year', '.'], ['adult', 'tunicates', 'have', 'a', 'hollow', 'cerebral', 'ganglion', ',', 'equivalent', 'to', 'a', 'brain', ',', 'and', 'a', 'hollow', 'structure', 'known', 'as', 'a', 'neural', 'gland', '.'], ['intrauterine', 'growth', 'restriction', 'is', 'associated', 'with', 'asd', ',', 'in', 'both', 'term', 'and', 'preterm', 'infants', '.'], ['ang', 'eng', 'died', 'in', '1', '7', '9', '6', 'when', 'ang', 'chan', 'ii', 'was', 'only', 'five', 'years', 'old', '.'], ['state', 'parties', 'are', 'obliged', 'to', 'issue', 'multilingual', 'extracts', 'on', 'request', 'and', 'accept', 'the', 'abstracts', 'of', 'other', 'countries', 'and', 'handle', 'them', 'not', 'differently', 'from', 'national', 'extracts', ':', '``', 'they', 'shall', 'be', 'handled', 'without', 'legislation', 'or', 'equivalent', 'formality', 'in', 'the', 'territory', 'of', 'each', 'state', \"''\", '.'], ['the', 'boundary', 'line', 'was', 'at', 'the', '3', '7', 'th', 'parallel', 'of', 'north', 'latitude', '.'], ['however', ',', 'his', 'term', 'was', 'marred', 'by', 'the', 'economic', 'downturn', 'of', 'the', 'great', 'depression', '.'], ['platensina', 'parvipuncta', 'is', 'a', 'species', 'of', 'tephritid', 'or', 'fruit', 'flies', 'in', 'the', 'genus', '``', 'platensina', \"''\", 'of', 'the', 'family', 'tephritidae', '.'], ['due', 'to', 'the', 'popularity', 'of', 'the', 'book', '``', 'the', 'way', 'things', 'work', \"''\", 'by', 'david', 'macaulay', ',', 'millimages', 'pitched', 'a', 'concept', 'for', 'an', 'educational', 'television', 'series', 'with', 'similar', 'features', 'to', 'schlessinger', 'media', ',', 'who', 'accepted', 'the', 'idea', 'and', 'agreed', 'to', 'distribute', 'the', 'programme', 'to', 'the', 'bbc', 'upon', 'completion', '.'], ['the', 'acm', 'filters', 'two', 'types', 'of', 'messages', ':', 'update', 'messages', 'and', 'interaction', 'messages', '.'], ['despite', 'the', 'vast', 'diversity', 'in', 'the', 'muscat', 'family', ',', 'one', 'common', 'trait', 'that', 'can', 'be', 'seen', 'in', 'most', 'all', 'muscat', 'members', 'is', 'the', 'characteristic', 'floral', ',', '``', 'grapey', \"''\", 'aroma', 'note', 'that', 'is', 'caused', 'by', 'the', 'high', 'concentration', 'of', 'monoterpenes', 'in', 'the', 'grapes', '.'], ['in', 'fiscal', 'year', '2', '0', '1', '7', ',', 'the', 'organization', 'earned', 'a', '9', '5', '.', '9', '3', '%', 'rating', 'by', 'charity', 'navigator', ',', 'an', 'organization', 'that', 'assesses', 'the', 'efficacy', 'of', 'nonprofits', '.'], ['ghiath', 'matar', 'was', 'a', 'syrian', 'activist', 'who', 'became', 'known', 'for', 'giving', 'flowers', 'and', 'roses', 'to', 'army', 'soldiers', 'in', 'his', 'home', 'town', 'of', 'daraya', '.'], ['after', 'a', 'nervous', 'wait', 'clement', 'and', 'greene', 'made', 'the', 'final', 'on', 'time', '.'], ['he', 'is', 'a', 'staff', 'writer', 'for', '``', 'the', 'new', 'yorker', \"''\", 'and', 'has', 'contributed', 'to', 'the', 'magazine', 'since', '2', '0', '1', '1', '.'], ['this', 'simple', 'biofeedback', 'device', 'can', 'quickly', 'teach', 'children', 'to', 'wake', 'up', 'when', 'their', 'bladders', 'are', 'full', 'and', 'to', 'contract', 'the', 'urinary', 'sphincter', 'and', 'relax', 'the', 'detrusor', 'muscle', ',', 'preventing', 'further', 'urine', 'release', '.'], ['american', 'biographer', 'william', 'manchester', 'argues', 'that', 'without', 'macarthur', \"'s\", 'leadership', ',', 'japan', 'would', 'not', 'have', 'been', 'able', 'to', 'make', 'the', 'move', 'from', 'an', 'imperial', ',', 'totalitarian', 'state', ',', 'to', 'a', 'democracy', '.'], ['by', 'march', ',', 'hundreds', 'of', 'men', 'had', 'frozen', 'to', 'death', 'or', 'succumbed', 'to', 'disease', '.'], ['the', 'president', 'met', 'with', 'two', 'world', 'leaders', 'on', 'the', 'sidelines', 'of', 'the', 'valdai', 'forum', 'in', 'the', 'russian', 'resort', 'city', 'of', 'sochi', '.'], ['on', '1', 'december', '2', '0', '1', '6', ',', 'hollande', 'declined', 'to', 'seek', 're-election', 'and', 'the', 'ps', 'subsequently', 'organized', 'a', 'presidential', 'primary', '.'], ['in', 'the', 'united', 'states', ',', 'the', 'film', 'grossed', '$', '4', '1', ',', '0', '0', '0', 'on', 'its', 'first', 'day', '.'], ['during', 'some', 'very', 'turbulent', 'times', ',', 'the', 'school', 'was', 'a', 'model', 'of', 'successful', 'community', 'integration', 'based', 'on', 'friendship', 'and', 'brotherhood', 'for', 'several', 'hundred', 'boys', 'of', 'all', 'backgrounds', 'each', 'year', 'during', 'the', 'late', '6', '0', 's', 'and', 'into', 'the', 'mid-', '7', '0', 's', '.'], ['then', 'against', 'olimpo', 'he', 'became', 'the', 'tie', '1', '-', '1', 'with', 'which', 'end', 'the', 'game', '.'], ['the', 'population', 'was', '3', ',', '2', '6', '8', 'as', 'of', '2', '0', '1', '0', '.'], ['peter', 'also', 'has', 'a', 'martial', 'industrial', 'side-project', 'called', 'sophia', 'and', 'has', 'also', 'recorded', 'one', 'collaborative', 'album', 'with', 'gustaf', 'hildebrand', '.'], ['the', 'bible', 'mentions', 'animals', 'from', 'varying', 'regions', 'of', 'the', 'middle', 'east', '.'], ['they', 'competed', 'in', 'this', 'event', 'at', 'the', '1', '9', '7', '6', 'summer', 'olympics', 'and', 'finished', 'in', 'tenth', 'place', '.'], ['the', 'story', 'revolves', 'around', 'two', 'characters', ':', 'magician', 'felix', 'harrowgate', 'and', 'thief', 'mildmay', 'the', 'fox', ',', 'who', 'live', 'in', 'vastly', 'different', 'parts', 'of', 'the', 'city', 'of', 'mélusine', '.'], ['the', 'majority', 'decided', 'instead', 'to', 'maintain', 'city', 'membership', 'on', 'a', 'similar', 'county', 'agency', '.'], ['the', 'slug', 'has', 'relatives', 'in', 'new', 'guinea', ',', 'new', 'caledonia', ',', 'new', 'zealand', ',', 'and', 'eastern', 'africa', '.'], ['in', '1', '9', '1', '8', 'whitlam', 'transferred', 'to', 'the', 'sydney', 'office', 'of', 'the', 'crown', 'solicitor', \"'s\", 'office', ',', 'and', 'in', '1', '9', '2', '0', 'he', 'was', 'admitted', 'as', 'a', 'barrister', 'and', 'solicitor', 'of', 'the', 'high', 'court', 'of', 'australia', '.'], ['the', 'distinctive', 'black-headed', 'rwenzori', 'hill', 'babbler', '(', '``', 'sylvia', 'atriceps', \"''\", ')', 'has', 'been', 'considered', 'as', 'a', 'subspecies', '.'], ['he', 'spoke', 'at', 'conventions', 'and', 'high', 'school', 'commencements', ',', 'and', 'he', 'met', 'with', 'educators', ',', 'agricultural', 'leaders', ',', 'leaders', 'of', 'industry', 'and', 'elected', 'officials', 'across', 'the', 'nation', 'and', 'in', 'the', 'white', 'house', '.'], ['i', 'gave', 'you', 'the', 'house', 'of', 'israel', 'and', 'judah', '.'], ['the', 'donkeys', 'that', 'are', 'fully', 'transformed', 'and', 'can', 'no', 'longer', 'vocalize', '(', 'as', 'in', 'lampwick', \"'s\", 'case', ')', 'are', 'stripped', 'bare', 'of', 'their', 'clothes', ',', 'hurled', 'into', 'wooden', 'crates', ',', 'and', 'then', 'sold', 'as', 'either', 'slaves', 'to', 'work', 'in', 'salt', 'mines', 'or', 'to', 'perform', 'in', 'circuses', '.'], ['he', 'served', 'as', 'chairman', 'of', 'the', 'rockefeller', 'brothers', 'fund', 'panel', 'on', 'education', ',', 'and', 'was', 'chief', 'draftsman', 'of', 'that', 'group', \"'s\", 'widely', 'circulated', 'report', ',', '``', 'the', 'pursuit', 'of', 'excellence', \"''\", '.'], ['it', 'occurs', 'to', 'me', 'that', 'these', 'initials', 'now', 'stand', 'for', 'presbyterian', 'ladies', 'ca', \"n't\", '.', \"''\"], ['in', 'an', 'interview', 'with', 'cbc', 'radio', 'broadcast', '2', 'july', '2', '0', '1', '5', ',', 'military', 'journalist', 'david', 'axe', 'claimed', 'to', 'have', 'read', 'the', 'leaked', 'report', 'and', 'stated', ':', '``', 'against', 'a', 'determined', 'foe', ',', 'the', 'f-', '3', '5', 'is', 'in', 'very', 'big', 'trouble', \"''\", '.'], ['as', 'a', 'supplemental', 'unit', 'of', 'apothecary', 'measure', ',', 'the', 'wineglass', '(', 'also', 'known', 'as', '``', 'wineglassful', \"''\", ',', 'pl', '.'], ['pashteen', 'proclaimed', 'in', 'his', 'speech', 'during', 'the', 'gathering', ':', '``', 'we', 'are', 'against', 'those', 'who', 'do', 'wrong', ',', 'whether', 'it', 'is', 'isi', '(', 'inter-services', 'intelligence', ')', ',', 'mi', '(', 'military', 'intelligence', ')', ',', 'good', 'taliban', ',', 'bad', 'taliban', ',', 'or', 'peace', 'committees', ',', 'we', 'are', 'against', 'them', '.', \"''\"], ['he', 'previously', 'served', 'as', 'the', 'president', 'of', 'the', 'federation', 'of', 'journalists', 'of', 'turkey', 'from', '2', '0', '0', '9', 'to', '2', '0', '1', '5', '.'], ['he', 'continued', 'to', 'say', 'that', 'he', 'was', 'particularly', 'concerned', 'about', 'airstrikes', 'on', 'saada', '``', 'where', 'scores', 'of', 'civilians', 'were', 'reportedly', 'killed', 'and', 'thousands', 'were', 'forced', 'to', 'flee', 'their', 'homes', 'after', 'the', 'coalition', 'declared', 'the', 'entire', 'governate', 'a', 'military', 'target', \"''\", '.'], ['saint', 'georgia', '(', 'died', 'c.', '5', '0', '0', ')', 'was', 'a', 'nun', 'and', 'hermit', 'near', 'clermont', ',', 'auvergne', '.'], ['turkish', 'historians', 'still', 'express', 'dissatisfaction', ':', '``', 'although', 'ottoman', 'empire', 'was', 'on', 'the', 'side', 'of', 'winners', ',', 'the', 'porte', 'also', 'lost', 'the', 'right', 'to', 'have', 'a', 'navy', 'in', 'the', 'black', 'sea', 'together', 'with', 'the', 'russia', '.'], ['in', '1', '9', '6', '8', ',', 'welch', 'was', 'assigned', 'to', 'the', 'office', 'of', 'the', 'secretary', 'of', 'defense', ',', 'where', 'he', 'handled', 'north', 'atlantic', 'treaty', 'organization', '(', 'nato', ')', 'affairs', '.'], ['on', 'the', 'question', 'of', 'notarization', 'of', 'electronic', 'signatures', 'and', 'the', 'honoring', 'of', 'notarized', 'signatures', 'across', 'state', 'lines', ',', 'the', 'us', 'house', 'of', 'representatives', 'had', 'passed', 'bills', 'to', 'legalize', 'these', 'steps', ',', 'and', 'in', '2', '0', '1', '0', 'the', 'us', 'senate', 'passed', 'the', 'legislation', 'without', 'debate', '.'], ['more', 'than', '1', '5', ',', '0', '0', '0', 'youngsters', 'passed', 'through', 'the', 'gates', 'of', 'the', 'school', 'from', '1', '8', '7', '1', 'to', 'its', 'closure', 'in', '1', '9', '6', '6', '.'], ['the', 'financial', 'aid', 'came', 'from', 'the', 'ministry', 'of', 'foreign', 'affairs', 'of', 'finland', 'and', 'the', 'purpose', 'of', 'the', 'project', 'was', 'to', 'better', 'the', 'living', 'conditions', 'of', 'the', 'santhiaba', 'neighbourhood', 'in', 'a', 'creative', 'way', '.'], ['within', 'the', 'latin', 'church', ',', 'the', 'present', 'official', 'form', 'of', 'the', 'entire', 'liturgy', 'of', 'the', 'hours', 'is', 'that', 'contained', 'in', 'the', 'four-volume', 'publication', '``', 'liturgia', 'horarum', \"''\", ',', 'the', 'first', 'edition', 'of', 'which', 'appeared', 'in', '1', '9', '7', '1', '.'], ['evans', 'then', 'nudged', 'his', 'wife', 'to', 'cast', 'uwais', 'for', '``', 'merantau', \"''\", ',', 'and', 'then', 'in', '``', 'the', 'raid', \"''\", '.'], ['due', 'to', 'its', 'signal', 'strength', ',', 'the', 'station', 'can', 'be', 'seen', 'over-the-air', 'in', 'large', 'portions', 'of', 'the', 'lafayette', '(', 'acadiana', 'region', ')', 'and', 'new', 'orleans', 'viewing', 'areas', '.'], ['on', 'august', '3', '1', ',', '1', '9', '9', '8', ',', 'bell', 'was', 'traded', 'to', 'the', 'seattle', 'mariners', 'for', 'joey', 'cora', '.'], ['it', 'was', 'closed', 'as', 'a', 'public', 'cemetery', 'in', '1', '9', '5', '9', ',', 'with', 'a', 'few', 'burials', 'being', 'held', 'there', 'until', '2', '0', '0', '0', 'and', 'ashes', 'placed', 'there', 'until', '2', '0', '0', '9', '.'], ['the', 'verneuil', 'method', ',', 'also', 'called', 'the', 'flame-fusion', 'method', ',', 'was', 'used', 'in', 'the', 'early', '1', '9', '0', '0', \"'s\", 'to', 'make', 'rubies', 'before', 'cz', '.'], ['they', 'form', 'a', 'deep', 'bond', 'after', 'finding', 'out', 'that', 'they', 'all', 'have', 'a', 'shoplifting', 'habit', '.'], ['general', 'carcana', 'received', 'her', 'direct', 'commission', 'as', 'second', 'lieutenant', 'in', '1', '9', '8', '6', '.'], ['jordan', 'transverse', 'mercator', '(', 'jtm', ')', '(', 'arabic', ':', 'نظام', 'تربيع', 'ميركاتور', 'الأردني', 'المستعرض', ')', 'is', 'a', 'grid', 'system', 'created', 'by', 'the', 'royal', 'jordan', 'geographic', 'center', '(', 'rjgc', ')', '.'], ['arthur', 'leclerc', '(', 'born', '1', '4', 'october', '2', '0', '0', '0', ')', 'is', 'a', 'monegasque', 'racing', 'driver', '.'], ['the', 'msl', 'is', 'dedicated', 'to', 'solving', 'challenging', 'problems', 'in', 'condensed', 'matter', 'and', 'materials', 'physics', 'using', 'computers', 'as', 'research', 'tools', '.'], ['she', 'remained', 'passionate', 'about', 'women', \"'s\", 'suffrage', 'and', 'was', 'elected', 'vice-president', 'of', 'the', 'league', 'of', 'women', 'voters', 'and', 'attended', 'the', '1', '0', 'th', 'world', 'convention', 'of', 'the', 'international', 'women', \"'s\", 'suffrage', 'alliance', 'at', 'geneva', 'in', '1', '9', '2', '0', '.'], ['the', 'road', 'continues', ',', 'now', 'called', 'reds', 'meadow', 'road', ',', 'until', 'its', 'dead', 'end', 'at', 'the', 'reds', 'meadow', 'pack', 'station', 'near', 'the', 'rainbow', 'falls', 'trailhead', '.'], ['in', '2', '0', '1', '3', ',', 'the', 'university', 'set', 'up', 'an', 'e-learning', 'platform', ',', 'called', '``', 'agor', '@', 'ssas', \"''\", '.'], ['eumelea', 'ludovicata', 'is', 'a', 'moth', 'of', 'the', 'family', 'geometridae', 'first', 'described', 'by', 'achille', 'guenée', 'in', '1', '8', '5', '8', '.'], ['after', 'completing', 'the', 'ground', 'mission', ',', 'the', 'player', 'must', 'return', 'to', 'the', 'helicopter', 'and', 'fly', 'back', 'to', 'home', 'base', '.'], ['in', '2', '0', '0', '7', ',', '8', 'th', 'and', '9', 'th', 'were', 'opened', ',', 'and', 'the', 'first', 'graduating', 'class', 'of', 'dcc', 'walked', 'across', 'the', 'stage', 'four', 'years', 'later', 'in', 'may', '2', '0', '1', '1', '.'], ['the', 'update', 'changed', 'the', 'look', 'of', 'the', 'site', 'and', 'included', 'both', 'an', 'online', 'project', 'editor', 'and', 'an', 'offline', 'editor', '.'], ['his', 'first', 'job', 'in', 'hollywood', 'was', 'painting', 'a', 'mural', ',', 'but', 'soon', 'he', 'was', 'working', 'as', 'a', 'storyboard', 'artist', 'and', 'production', 'illustrator', 'on', '2', '6', 'films', 'including', '``', 'predator', '2', '``', ',', '``', 'backdraft', \"''\", ',', '``', 'independence', 'day', \"''\", ',', '``', 'fight', 'club', \"''\", 'and', '``', 'a.i', '.'], ['the', 'organization', 'holds', 'a', 'philosophy', 'that', 'it', 'is', 'a', 'conference', ',', 'not', 'a', 'congress', ',', 'as', 'it', 'enacts', 'no', 'legislation', 'and', 'only', 'regulates', 'its', 'own', 'meetings', '.'], ['she', 'cost', '$', '7', '5', '0', ',', '0', '0', '0', 'to', 'build', '.'], ['he', 'died', 'on', 'february', '2', ',', '7', '4', '9', ',', 'at', 'the', 'age', 'of', '8', '0', ',', 'and', 'was', 'buried', 'at', 'chikurin-ji', ',', 'a', 'temple', 'now', 'in', 'ikoma', ',', 'nara', '.'], ['the', 'ship', 'had', 'originally', 'been', 'built', 'with', 'money', 'from', 'public', 'subscription', 'in', 'order', 'restore', 'portugal', \"'s\", 'honor', 'after', 'being', 'humiliated', 'by', 'great', 'britain', 'in', '1', '8', '9', '0', ',', 'being', 'prevented', 'from', 'making', 'a', 'land', 'route', 'from', 'its', 'two', 'colonies', 'of', 'angola', 'and', 'mozambique', '.'], ['in', 'the', 'aba', 'western', 'division', 'semifinals', ',', 'they', 'defeated', 'the', 'denver', 'rockets', 'in', 'seven', 'games', '.'], ['next', 'to', 'his', 'position', 'at', 'károli', 'gáspár', 'university', 'he', 'was', 'also', 'a', 'guest', 'lecturer', 'at', 'the', 'department', 'of', 'altaistics', 'at', 'the', 'university', 'of', 'szeged', 'from', '2', '0', '1', '7', 'to', '2', '0', '2', '0', '.'], ['it', 'is', 'part', 'of', 'the', 'niagara', 'catholic', 'district', 'school', 'board', '.'], ['the', 'british', 'and', 'irish', 'modern', 'music', '(', 'bimm', ')', 'institute', 'is', 'a', 'group', 'of', 'eight', 'independent', 'colleges', 'with', 'over', '7', ',', '0', '0', '0', 'students', 'that', 'specialise', 'in', 'the', 'provision', 'of', 'creative', 'education', 'in', 'brighton', ',', 'bristol', ',', 'dublin', ',', 'birmingham', ',', 'manchester', ',', 'berlin', ',', 'hamburg', 'and', 'london', '.'], ['one', 'of', 'his', 'most', 'popular', 'habits', 'is', 'recording', 'spoken-word', 'tapes', 'to', 'a', 'mysterious', 'woman', 'called', '``', 'diane', \"''\", 'into', 'his', 'microcassette', 'recorder', 'that', 'he', 'always', 'carries', 'with', 'him', ',', 'that', 'often', 'contain', 'everyday', 'observations', 'and', 'thoughts', 'on', 'his', 'current', 'case', '.'], ['carbon', 'found', 'in', '3', '.', '8', 'billion-year-old', 'rocks', '(', 'archean', 'eon', ')', 'from', 'islands', 'off', 'western', 'greenland', 'may', 'be', 'of', 'organic', 'origin', '.'], ['robinson', 'and', 'karp', 'also', 'hosted', '``', 'get', 'up', 'off', 'this', \"''\", ',', 'the', 'podcast', 'within', 'a', 'podcast', 'where', 'they', 'discuss', 'things', 'that', 'people', 'should', 'not', 'like', 'and', 'other', 'replacements', '.'], ['the', 'sugar', 'hill', 'gang', 'was', 'discovered', 'at', 'harlem', 'world', 'by', 'joe', 'and', 'sylvia', 'robinson', 'of', 'sugar', 'hill', 'records', '.'], ['he', 'then', 'moved', 'to', 'fellow', 'delta', 'ethniki', 'heraklion-based', 'club', 'atsalenios', ',', 'whom', 'he', 'also', 'managed', 'to', 'promote', 'to', 'the', 'gamma', 'ethniki', ',', 'this', 'time', 'as', 'champions', 'of', 'group', '1', '0', '.'], ['two', 'years', 'later', 'in', '1', '9', '3', '2', ',', 'coontz', 'would', 'represent', 'alaska', 'at', 'the', 'democratic', 'national', 'convention', '.'], ['a', 'special', 'train', 'with', 'frank', 'travelling', 'to', 'lviv', 'was', 'derailed', 'after', 'an', 'explosive', 'device', 'discharged', 'but', 'no', 'one', 'was', 'killed', '.'], ['the', 'large', 'and', 'highly', 'variable', 'energy', 'of', 'waves', 'gives', 'them', 'enormous', 'destructive', 'capability', ',', 'making', 'affordable', 'and', 'reliable', 'wave', 'machines', 'problematic', 'to', 'develop', '.'], ['he', 'finished', '6', 'th', 'in', 'a', 'thin', 'field', 'and', 'was', 'advised', 'to', 'retire', 'on', 'medical', 'grounds', 'after', 'a', 'heavy', 'crash', 'in', 'the', 'final', 'round', '.'], ['the', 'two', 'were', 'soon', 'embroiled', 'in', 'a', 'row', 'that', 'would', 'continue', 'until', 'romantsev', 'was', 'sacked', 'in', '2', '0', '0', '3', 'with', 'the', 'club', 'suffering', 'several', 'sub-par', 'seasons', 'until', 'chervichenko', 'finally', 'sold', 'his', 'stock', 'in', '2', '0', '0', '4', '.'], ['he', 'has', 'two', 'sons', 'named', 'connor', 'and', 'maxwell', 'tabarrok', '.'], ['w.', 'h.', 'sleeth', 'was', 'the', 'original', 'owner', 'of', 'the', 'town', 'site', '.'], ['by', 'the', '1', '9', '5', '0', 's', ',', 'marshall', 'was', 'selling', 'wholesale', 'products', 'out', 'of', 'his', 'supermarket', ',', 'including', 'sundries', ',', 'baby', 'supplies', ',', 'and', 'cosmetics', '.'], ['in', 'this', 'case', ',', 'we', 'can', 'not', 'measure', 'the', 'vertical', 'component', 'of', 'the', 'wavefront', 'propagation', '.'], ['it', \"'s\", 'important', 'to', 'note', 'that', 'the', 'amount', 'of', 'pain', 'a', 'person', 'experiences', 'does', 'not', 'correlate', 'well', 'with', 'the', 'amount', 'of', 'degeneration', 'that', 'has', 'occurred', 'within', 'the', 'joint', '.'], ['shortly', 'after', 'oxley', 'began', 'to', 'refer', 'to', 'the', 'tributary', 'as', 'the', 'bremer', 'river', 'but', 'did', \"n't\", 'specify', 'from', 'who', 'the', 'name', 'was', 'derived', 'from', '.'], ['croit', 'always', 'looked', 'down', 'on', 'daniels', \"'\", 'inferior', 'knowledge', ',', 'making', 'him', 'feel', 'useless', '.'], ['``', ',', 'in', 'which', 'he', 'vocalized', 'children', 'songs', ',', 'such', 'as', '``', 'it', \"'s\", 'not', 'fun', 'to', 'get', 'lost', \"''\", ',', '``', 'friends', \"''\", ',', 'and', '``', 'the', 'goodbye', 'song', \"''\", '.'], ['males', 'had', 'a', 'median', 'income', 'of', '$', '2', '9', ',', '0', '1', '0', 'versus', '$', '2', '0', ',', '6', '8', '6', 'for', 'females', '.'], ['this', 'feature', 'is', 'unlocked', 'after', 'completing', 'book', '1', 'in', 'the', 'adventure', 'mode', '.'], ['the', 'visitor', 'can', 'follow', 'the', 'whole', 'process', 'through', 'glass', 'windows', '.'], ['on', '3', '1', 'august', '2', '0', '1', '8', ',', 'the', 'last', 'day', 'of', 'the', '2', '0', '1', '8', 'summer', 'transfer', 'window', ',', 'he', 'agreed', 'the', 'termination', 'of', 'his', 'contract', 'with', 'eupen', '.'], ['the', 'region', 'covers', 'an', 'area', 'of', 'approximately', ',', 'or', '8', '.', '8', '%', 'of', 'earth', \"'s\", 'total', 'land', 'area', '.'], ['until', 'may', '2', '0', '0', '8', ',', 'raf', 'st', 'mawgan', 'was', 'primarily', 'used', 'as', 'a', 'search', 'and', 'rescue', 'training', 'camp', 'and', 'was', 'home', 'to', '2', '0', '3', '(', 'r', ')', 'squadron', ',', 'equipped', 'with', 'sea', 'king', 'helicopters', '.'], ['before', 'his', 'move', 'to', 'the', 'dallas', 'county', 'community', 'college', 'district', ',', 'dr.', 'may', 'served', 'as', 'system', 'president', 'for', 'the', 'louisiana', 'community', 'and', 'technical', 'college', 'system', '.'], ['the', 'first', '``', 'vh', '1', 'divas', \"''\", 'show', ',', 'at', 'new', 'york', \"'s\", 'beacon', 'theatre', ',', 'featured', 'music', 'stars', 'celine', 'dion', ',', 'gloria', 'estefan', ',', 'aretha', 'franklin', ',', 'shania', 'twain', 'and', 'mariah', 'carey', '.'], ['clash', 'believed', 'the', '``', 'tickle', 'me', 'elmo', \"''\", 'phenomenon', 'made', 'elmo', 'a', 'household', 'name', 'and', 'led', 'to', 'the', '``', 'elmo', \"'s\", 'world', \"''\", 'segment', '.'], ['most', 'recently', ',', 'ingram', 'has', 'also', 'alleged', 'that', 'sinn', 'féin', 'negotiator', ',', 'mp', ',', 'and', 'ex', 'adjutant', 'of', 'the', 'ira', 'brigade', 'in', 'derry', ',', 'the', 'late', 'martin', 'mcguinness', 'was', 'a', 'british', 'army', 'agent', '.'], ['gangadharan', 'led', 'an', 'agitation', 'to', 'viyyur', 'jail', ',', 'when', 'manjooran', 'was', 'held', '.'], ['the', 'long', 'street-facing', 'ground', 'floor', 'level', 'has', 'six', 'bays', 'of', 'grouped', 'casement', 'windows', ',', 'with', 'the', 'main', 'entrance', 'in', 'a', 'seventh', 'bay', 'at', 'the', 'left', 'end', '.'], ['the', 'first', 'keeper', ',', 'john', 'lory', ',', 'had', 'most', 'recently', 'been', 'keeper', 'at', 'the', 'now', 'deactivated', 'light', '.'], ['the', '1', '9', '1', '8', '-', '1', '9', 'teams', 'only', 'road', 'trip', 'outside', 'of', 'washington', 'was', 'to', 'annapolis', ',', 'maryland', ',', 'to', 'play', 'a', 'game', 'at', 'navy', '.'], ['according', 'to', 'a', 'report', 'by', 'the', 'pennsylvania', 'department', 'of', 'education', ',', '1', '0', '0', '%', 'of', 'its', 'teachers', 'were', 'rated', '``', 'highly', 'qualified', \"''\", 'under', 'no', 'child', 'left', 'behind', 'in', '2', '0', '1', '4', '.'], ['in', 'addition', 'to', 'the', 'ngai-kungo-i', 'being', 'encountered', 'and', 'identified', 'as', 'having', 'a', 'base', 'in', 'atherton', ',', 'roth', 'also', 'wrote', 'about', 'and', 'collected', 'samples', 'of', 'their', 'material', 'culture', ',', 'much', 'of', 'which', 'were', 'later', 'purchased', 'from', 'roth', 'by', 'the', 'australian', 'museum', '.'], ['carlin', 'tells', 'a', 'skeptical', 'spangler', 'that', 'an', 'image', 'of', 'the', 'grim', 'reaper', 'is', 'rumored', 'to', 'appear', 'in', 'the', 'mirror', ',', 'standing', 'close', 'to', 'the', 'viewer', '.'], ['on', 'april', '1', '3', ',', '2', '0', '1', '0', ',', 'he', 'announced', 'that', 'pre-production', 'was', 'set', 'to', 'begin', 'again', ',', 'pending', 'investors', '.'], ['in', 'october', '2', '0', '1', '8', ',', 'he', 'was', 'named', 'in', 'bangladesh', \"'s\", 'one', 'day', 'international', '(', 'odi', ')', 'for', 'their', 'series', 'against', 'zimbabwe', '.'], ['the', 'principal', 'countries', 'of', 'origin', 'for', 'international', 'students', 'during', 'this', 'period', 'were', 'india', ',', 'iran', ',', 'micronesia', ',', 'nigeria', ',', 'taiwan', ',', 'and', 'thailand', '.'], ['the', 'cup', 'winner', 'qualifies', 'for', 'the', '2', '0', '2', '1', 'afc', 'cup', '.'], ['in', 'july', '2', '0', '1', '6', 'there', 'were', 'reports', 'of', 'papers', 'being', 'removed', 'from', 'ssrn', 'without', 'notice', ';', 'revision', 'comments', 'from', 'ssrn', 'indicated', 'this', 'was', 'due', 'to', 'copyright', 'concerns', '.'], ['regimental', 'officer', 'grades', 'in', 'old-style', 'units', '(', '``', 'legiones', \"''\", ',', '``', 'alae', \"''\", 'and', '``', 'cohortes', \"''\", ')', 'remained', 'the', 'same', 'as', 'under', 'the', 'principate', 'up', 'to', 'and', 'including', 'centurion', 'and', 'decurion', '.'], ['this', 'work', 'was', 'commissioned', 'by', 'the', 'bolshoi', 'theatre', 'and', 'premiered', 'on', 'march', '2', '3', ',', '2', '0', '0', '5', '.'], ['in', 'august', '1', '9', '1', '5', ',', 'creelman', 'bought', 'an', 'apartment', 'from', 'malcom', 'e.', 'smith', '&', 'amp', ';', 'co', ',', 'moving', 'from', 'the', 'upper', 'west', 'side', 'apartment', 'she', 'had', 'shared', 'with', 'james', 'to', 'a', '``', 'large', ',', 'duplex', \"''\", 'apartment', 'at', '1', '3', '1', 'east', 'sixty-sixth', 'street', '.'], ['on', 'september', '1', '5', ',', '2', '0', '1', '4', ',', 'he', 'was', 'made', 'minister', 'of', 'health', 'by', 'premier', 'jim', 'prentice', ',', 'despite', 'not', 'holding', 'a', 'seat', 'in', 'the', 'legislative', 'assembly', 'of', 'alberta', '.'], ['bhagauli', 'tirth', 'is', 'the', 'third', 'largest', 'gram', 'panchayat', 'in', 'fatehpur', 'tehsil', '.'], ['five', 'other', 'members', 'of', 'his', 'family', 'became', 'members', 'of', 'parliament', 'during', 'the', '1', '9', 'th', ',', '2', '0', 'th', 'and', '2', '1', 'st', 'centuries', ':'], ['lasanen', 'defeated', 'öberg', 'to', 'join', 'gerstacker', 'and', 'koskelo', ',', 'who', 'had', 'a', 'bye', 'in', 'the', 'seventh', 'round', ',', 'in', 'the', 'finals', '.'], ['it', 'was', 'reported', 'that', 'mirotić', \"'\", 'contract', 'was', 'worth', '€', '2', '6', 'million', ',', 'making', 'him', 'the', 'highest-paid', 'basketball', 'player', 'in', 'europe', '.'], ['ian', 'harrison', '(', 'born', '3', 'january', '1', '9', '6', '9', ')', ',', 'better', 'known', 'by', 'his', 'ring', 'name', ',', '``', 'british', 'storm', \"''\", 'ian', 'harrison', ',', 'is', 'an', 'english', 'former', 'professional', 'wrestler', 'and', 'bodybuilder', '.'], ['however', ',', 'this', 'was', 'found', 'to', 'be', 'inefficient', 'in', 'practice', ',', 'and', 'a', 'light-weight', 'kernel', 'called', 'sunmos', 'was', 'developed', 'at', 'sandia', 'national', 'laboratories', 'to', 'replace', 'osf/', '1', 'ad', 'on', 'the', 'paragon', \"'s\", 'compute', 'processors', '.'], ['an', 'investigation', 'was', 'set', 'up', 'by', 'roskosmos', 'head', 'vladimir', 'popovkin', 'and', 'was', 'headed', 'by', 'o.p', '.'], ['a', 'creature', 'that', 'could', 'have', 'been', 'the', 'ancestor', 'of', 'the', 'fishes', ',', 'or', 'was', 'probably', 'closely', 'related', 'to', 'it', ',', 'was', '``', 'pikaia', \"''\", '.'], ['the', 'population', 'was', '3', '0', 'as', 'of', '2', '0', '1', '0', '.'], ['many', 'governments', 'are', 'currently', 'trying', 'to', 'encourage', 'shippers', 'to', 'use', 'trains', 'more', 'often', 'because', 'of', 'the', 'environmental', 'benefits', '.'], ['hanfmann', 'the', 'bikini', 'girls', 'made', 'the', 'learned', 'observers', 'realize', '``', 'how', 'modern', 'the', 'ancients', 'were', \"''\", '.'], ['the', 'broad', 'concept', 'of', 'the', 'book', 'covers', 'the', 'history', 'of', 'economics', 'through', 'the', 'millennia', ',', '``', 'from', 'the', 'epic', 'of', 'gilgamesh', 'and', 'the', 'old', 'testament', 'to', 'the', 'emergence', 'of', 'christianity', ',', 'from', 'descartes', 'and', 'adam', 'smith', 'to', 'fight', 'club', 'and', 'the', 'matrix', '.', \"''\"], ['in', 'his', 'early', 'career', 'clifford', 'played', 'a', 'wide', 'range', 'of', 'roles', 'in', 'operas', 'by', 'composers', 'from', 'handel', 'to', 'vaughan', 'williams', '.'], ['he', 'wrote', 'that', 'after', 'this', 'experience', 'he', 'and', 'patsey', 'were', 'severely', 'traumatized', 'and', 'that', 'he', 'had', 'never', 'forgotten', 'what', 'patsey', 'endured', 'during', 'the', 'time', 'he', 'knew', 'her', '.'], ['a', 'wallace', 'stegner', 'fellowship', 'to', 'stanford', 'university', 'in', '1', '9', '6', '6', '-', '6', '7', 'allowed', 'him', 'to', 'finish', 'his', 'first', 'published', 'novel', ',', '``', 'the', 'sporting', 'club', \"''\", ',', 'published', 'in', '1', '9', '6', '9', '.'], ['he', 'replied', 'simply', ',', '``', 'he', 'is', 'a', 'gentleman', '.', \"''\"], ['he', 'and', 'stuchka', 'started', 'a', 'section', 'on', 'the', 'general', 'theory', 'of', 'state', 'and', 'law', 'at', 'the', 'academy', '.'], ['the', 'battle', 'of', 'south', 'mills', 'was', 'the', 'only', 'battle', 'action', 'near', 'the', 'canal', '.'], ['happy', 'the', 'man', 'is', 'the', 'debut', 'album', 'by', 'the', 'american', 'progressive', 'rock', 'band', 'happy', 'the', 'man', ',', 'released', 'in', '1', '9', '7', '7', '.'], ['having', 'personally', 'experienced', 'the', 'pitiful', 'plight', 'of', 'the', 'tamils', 'in', 'sri', 'lanka', ',', 'she', 'goes', 'back', 'to', 'south', 'india', 'with', 'a', 'heavy', 'heart', '.'], ['she', 'was', 'killed', 'in', 'a', 'helicopter', 'crash', 'in', '1', '9', '8', '6', ',', 'while', 'giving', 'a', 'live', 'report', '.'], ['on', 'lap', '1', '9', ',', 'a', 'rain', 'storm', 'arrived', 'at', 'the', 'circuit', ',', 'forcing', 'the', 'drivers', 'on', 'intermediate', 'tyres', 'to', 'switch', 'back', 'to', 'full', 'wets', '.'], ['in', 'other', 'accounts', ',', 'the', 'thunder', 'god', 'is', 'described', 'as', 'driving', 'a', 'fiery', 'chariot', 'through', 'the', 'skies', 'with', 'swift', 'horses', ',', 'or', 'riding', 'a', 'fiery', 'horse', '.'], ['the', 'talking', 'donkeys', 'beg', 'for', 'mercy', 'but', 'receive', 'none', ',', 'as', 'the', 'coachman', 'will', 'silence', 'them', 'and', 'then', 'remarks', '``', 'you', 'boys', 'have', 'had', 'your', 'fun', '!'], ['williams', 'states', 'that', 'despite', 'trying', 'other', 'basses', 'over', 'the', 'years', ',', 'he', 'always', 'went', 'back', 'to', 'music', 'man', \"'s\", 'instruments', ',', 'which', 'he', 'described', 'as', '``', 'a', 'tremendous', 'work', 'horse', 'of', 'a', 'bass', \"''\", '.'], ['cochrane', 'is', 'married', 'to', 'elizabeth', 'fama', ',', 'a', 'children', \"'s\", 'book', 'author', 'and', 'the', 'daughter', 'of', 'noted', 'financial', 'economist', 'eugene', 'fama', '.'], ['the', 'beauties', 'of', 'south', 'sudan', 'winner', 'would', 'automatically', 'represent', 'south', 'sudan', 'at', 'the', 'miss', 'earth', 'pageant', '.'], ['this', 'reaction', 'allows', 'the', 'separation', 'of', 'tellurium', 'from', 'selenium', 'since', 'selenous', 'acid', 'remains', 'soluble', 'at', 'low', 'ph', '.'], ['st.', 'stephen', \"'s\", 'became', 'the', 'ninth', 'roman', 'catholic', 'parish', 'established', 'in', 'the', 'city', '.'], ['smith', 'signed', 'with', 'the', 'dodgers', 'in', '1', '9', '5', '5', 'and', 'rose', 'slowly', 'through', 'their', 'farm', 'system', 'until', '1', '9', '6', '1', ',', 'when', 'he', 'led', 'the', 'double-a', 'southern', 'association', 'in', 'earned', 'run', 'average', '(', '2', '.', '0', '9', ')', '.'], ['raghu', 'proposes', 'a', 'business', 'partnership', 'to', 'dr.', 'tribhuvan', 'vardhi', ',', 'a', 'sexologist', 'whose', 'book', 'have', 'impressed', 'raghu', ',', 'but', 'vardhi', 'initially', 'rejects', 'the', 'offer', '.'], ['trench', 'was', 'appointed', 'high', 'sheriff', 'of', 'county', 'galway', 'in', '1', '7', '0', '3', 'and', 'colonel', 'of', 'the', 'galway', 'militia', '.'], ['aravena', 'replied', ':', '``', 'one', 'was', 'old', ',', 'but', 'he', 'was', \"n't\", 'that', 'old', \"''\", '.'], ['keleti', 'emigrated', 'to', 'israel', 'in', '1', '9', '5', '7', ',', 'competing', 'in', 'the', '1', '9', '5', '7', 'maccabiah', 'games', ',', 'and', 'was', 'able', 'to', 'send', 'for', 'her', 'mother', 'and', 'sister', '.'], ['dymoke', \"'s\", 'novels', 'are', 'set', 'in', 'various', 'historical', 'periods', '.'], ['wrigley', 're-purchased', 'the', 'building', 'in', '1', '9', '2', '9', '.'], ['sources', 'close', 'to', 'the', 'investigation', 'described', '``', 'person', '#', '1', '``', 'as', 'moneyman', 'richard', 'w.', 'ireland', ',', 'of', 'chester', 'county', ',', 'one', 'of', 'hafer', \"'s\", 'biggest', 'campaign', 'contributors', '.'], ['verne', 'was', 'a', 'notable', 'rodeo', 'producer', 'and', 'stock', 'contractor', 'who', 'was', 'inducted', 'into', 'prorodeo', 'hall', 'of', 'fame', 'in', '1', '9', '9', '0', '.'], ['his', 'latest', 'projects', 'for', '6', 'ph', 'include', 'on', 'fox', ',', 'the', 'nickelodeon', 'short', ',', 'bear', 'wrestler', ',', 'and', 'directing', 'animation', 'on', 'a', 'series', 'of', '2', '-d', 'shorts', 'based', 'on', 'sony', 'pictures', \"'\", 'cloudy', 'with', 'a', 'chance', 'of', 'meatballs', '2', '.'], ['he', 'was', 'promoted', 'to', 'lieutenant', 'general', 'in', 'november', '1', '9', '0', '7', 'and', 'from', 'november', '1', '9', '1', '0', 'was', 'the', 'commander', 'of', 'the', 'ija', '1', '8', 'th', 'infantry', 'division', 'and', 'from', 'december', '1', '9', '1', '2', 'was', 'commander', 'of', 'the', 'ija', '4', 'th', 'infantry', 'division', '.'], ['retail', 'chains', 'began', 'entering', 'the', 'city', ',', 'a', 'movie', 'theatre', 'and', 'stadium', 'was', 'built', ',', 'the', 'town', 'square', 'was', 'redesigned', 'as', 'a', 'park', ',', 'and', 'cendrawasih', 'market', 'was', 'renovated', '.'], ['this', 'mask', 'perspective', 'is', 'likened', 'to', 'the', 'concept', 'of', \"'blended\", 'identity', \"'\", ',', 'whereby', 'the', 'offline-self', 'informs', 'the', 'creation', 'of', 'a', 'new', 'online-self', ',', 'which', 'in', 'turn', 'informs', 'the', 'offline-self', 'through', 'further', 'interaction', 'with', 'those', 'the', 'individual', 'first', 'met', 'online', '.'], ['michael', 'muthu', 'started', 'his', 'career', 'in', 'theatre', 'after', 'finishing', 'his', 'schooling', ',', 'and', 'was', 'a', 'member', 'of', 'the', 'loyola', 'theatre', 'society', 'during', 'his', 'first', 'two', 'years', 'of', 'college', '.'], ['paliwal', 'also', 'serves', 'as', 'a', 'member', 'of', 'the', 'boards', 'of', 'nestlé', ',', 'the', 'fortune', 'global', '1', '0', '0', 'food', 'and', 'beverage', 'company', ',', 'and', 'the', 'boards', 'of', 'bristol-myers', 'squibb', 'and', 'raytheon', 'company', ',', 'both', 'fortune', '2', '0', '0', 'organizations', '.'], ['where', 'formula_', '2', 'is', 'a', 'function', 'of', 'the', '(', 'discrete', ')', 'time', 'formula_', '3', '.'], ['the', 'current', 'building', 'of', 'östra', 'real', 'was', 'completed', 'in', '1', '9', '1', '0', ',', 'but', 'it', 'was', 'not', 'officially', 'inaugurated', 'until', 'january', '1', '9', '1', '1', 'by', 'king', 'gustav', 'v.', 'the', 'building', 'was', 'designed', 'by', 'ragnar', 'östberg', 'in', 'the', 'national', 'romantic', 'style', '.'], ['the', 'play', 'is', 'loosely', 'based', 'on', '``', 'the', 'bacchae', \"''\", 'by', 'euripides', '.'], ['however', ',', 'tokhareh', 'asks', 'firoud', 'not', 'to', 'be', 'angry', 'and', 'he', 'does', 'not', 'know', 'the', 'name', 'of', 'the', 'person', 'but', 'knows', 'his', 'father', 'gudarz', 'and', 'he', 'is', 'his', 'son', '.'], ['the', 'tall', 'jetnamsklumpen', 'is', 'the', 'tallest', 'mountain', 'in', 'trøndelag', ',', 'and', 'is', 'also', 'located', 'in', 'the', 'park', '.'], ['tisch', 'is', 'on', 'the', 'board', 'of', 'the', 'dalton', 'school', 'on', 'the', 'upper', 'east', 'side', 'and', 'barnard', 'college', '.'], ['at', 'the', '2', '0', '0', '6', 'world', 'short', 'course', 'championships', 'held', 'in', 'shanghai', ',', 'she', 'won', 'a', 'gold', 'medal', 'in', 'the', 'women', \"'s\", '4', '×', '2', '0', '0', '-metre', 'freestyle', 'relay', 'and', 'an', 'individual', 'silver', 'medal', 'in', 'the', '4', '0', '0', '-metre', 'freestyle', '.'], ['these', 'targets', 'were', 'reduced', 'in', '2', '0', '1', '5', 'in', 'light', 'of', 'certain', 'environmental', 'and', 'social', 'concerns', 'associated', 'with', 'biofuels', 'such', 'as', 'rising', 'food', 'prices', 'and', 'deforestation', '.'], ['the', 'hall', 'and', 'grounds', 'are', 'open', 'to', 'the', 'public', 'and', 'are', 'a', 'popular', 'tourist', 'attraction', ',', 'with', 'nearly', '2', '0', '0', ',', '0', '0', '0', 'visitors', 'in', '2', '0', '1', '0', '.'], ['the', 'prioress', 'stakes', 'is', 'an', 'american', 'grade', 'ii', 'thoroughbred', 'horse', 'race', 'held', 'annually', 'during', 'the', 'six-week', 'meet', 'at', 'saratoga', 'race', 'course', 'in', 'saratoga', 'springs', ',', 'new', 'york', '.'], ['woloch', 'has', 'a', 'ba', 'from', 'wellesley', 'college', ',', 'an', 'ma', 'from', 'columbia', 'university', 'and', 'a', 'phd', 'from', 'indiana', 'university', '.'], ['intake', 'valves', 'had', 'a', 'port', 'diameter', 'of', '1', '.', '9', '2', '``', ',', 'while', 'exhaust', 'valves', 'were', '1', '.', '6', '5', '``', '.'], ['the', 'newlywed', 'soldiers', 'could', 'spend', 'their', 'honeymoon', 'night', 'there', '.'], ['ilbenstadt', 'abbey', 'was', 'sold', 'by', 'the', 'house', 'of', 'leiningen-westerburg-altleiningen', 'in', '1', '9', '2', '1', ',', 'engelthal', 'abbey', 'by', 'the', 'heirs', 'of', 'the', 'house', 'of', 'leiningen-westerburg-neuleiningen', 'in', '1', '9', '5', '2', '.'], ['this', 'project', 'has', 'seen', 'the', 'number', 'of', 'plants', 'being', 'propagated', 'in', 'the', 'sissinghurst', 'nursery', 'rise', 'from', '4', '0', '0', 'to', 'over', '5', '3', '0', '.'], ['in', '2', '0', '0', '8', ',', 'the', 'group', 'released', 'their', 'self-titled', 'debut', 'album', ',', '``', 'point', 'blank', \"''\", '.'], ['twenty', 'tanks', 'of', 'c', 'company', ',', '7', '0', 'th', 'tank', 'battalion', 'supported', 'the', 'battalion', ',', 'but', 'they', 'had', 'to', 'contend', 'with', 'fire', 'from', 'three', 'or', 'four', 'dug-in', 'kpa', 'tanks', 'and', 'a', 'mined', 'roadway', '.'], ['in', '1', '9', '0', '6', 'shenk', 'was', 'appointed', 'a', 'deputy', 'city', 'attorney', 'in', 'los', 'angeles', ',', 'california', ',', 'and', 'in', '1', '9', '0', '9', 'he', 'became', 'city', 'attorney', 'when', 'leslie', 'r.', 'hewitt', 'resigned', 'from', 'that', 'position', '.'], ['the', 'route', 'from', 'tenderfoot', 'trailhead', 'or', 'tenderfoot', 'wagon', 'road', 'trail', 'passes', 'bonny', 'lakes', 'about', 'before', 'reaching', 'dollar', 'pass', ',', 'at', 'above', 'sea', 'level', '.'], ['amrany', \"'s\", 'long-standing', 'fascination', 'with', 'quantum', 'physics', 'and', 'fractal', 'math', 'has', 'also', 'impacted', 'his', 'art', 'in', 'a', 'variety', 'of', 'ways', ',', 'from', 'the', 'design', 'of', 'silk', 'wall', 'tapestries', 'to', 'the', 'fractal', 'ground', 'plan', 'of', 'the', '9', '-acre', 'veterans', 'memorial', 'park', 'in', 'munster', ',', 'indiana', '.'], ['he', 'can', 'play', 'around', 'a', 'bit', ',', 'but', 'when', 'someone', 'comes', 'to', 'him', ',', 'or', 'i', 'ask', 'him', 'to', 'go', ',', 'he', 'becomes', 'push-button', 'and', 'he', 'just', 'takes', 'off', '.', \"''\"], ['with', 'nearly', 'half', 'the', 'vote', 'counted', 'on', 'september', '7', ',', 'the', 'mpla', 'held', 'a', 'strong', 'lead', 'with', '8', '1', '.', '6', '5', '%', 'with', 'unita', 'at', '1', '0', '.', '5', '9', '%', '.'], ['an', 'article', 'in', 'the', 'american', 'journal', 'of', 'public', 'health', 'identified', 'the', 'effects', 'of', 'slavery', 'on', 'current', 'maternal', 'mortality', '.'], ['a', 'digital', 'controller', 'is', 'usually', 'cascaded', 'with', 'the', 'plant', 'in', 'a', 'feedback', 'system', '.'], ['he', 'was', 'elected', 'to', 'the', 'provincial', 'assembly', 'of', 'the', 'punjab', 'as', 'a', 'candidate', 'of', 'pakistan', 'muslim', 'league', '(', 'n', ')', '(', 'pml-n', ')', 'from', 'constituency', 'pp-', '6', '4', '(', 'faisalabad-xiv', ')', 'in', '2', '0', '0', '8', 'pakistani', 'general', 'election', '.'], ['for', 'great', 'britain', ',', 'taking', '5', '5', '°', 'as', 'a', 'median', 'latitude', ',', '``', 'hk', \"''\", '=', '3', '.', '0', '4', '.'], ['they', 'had', 'four', 'children', ':', 'tristram', ',', 'ben', ',', 'lucy', 'and', 'david', '.'], ['still', 'working', 'for', 'lifemark', ',', 'scrushy', 'devised', 'a', 'plan', 'for', 'an', 'outpatient', 'diagnostics', 'and', 'rehabilitative', 'health', 'clinic', 'chain', '.'], ['the', 'society', 'office', 'and', 'museum', 'building', 'is', 'located', 'in', 'the', 'franklinton', 'neighborhood', '.'], ['her', 'writings', 'include', '``', 'alternative', 'strategies', 'to', 'fight', 'against', 'poverty', 'in', 'congo', \"''\", '(', '``', 'strategies', 'alternatives', 'de', 'lutte', 'contre', 'la', 'pauvrete', 'au', 'congo', \"''\", ')', ',', 'published', 'in', '2', '0', '0', '0', '.'], ['chiang', 'mai', 'university', \"'s\", 'faculty', 'of', 'veterinary', 'medicine', 'is', 'associated', 'with', 'the', 'institute', '.'], ['it', 'completed', '1', '0', '0', 'days', 'theatrical', 'run', 'in', 'the', 'state', '.'], ['the', 'jury', '(', 'aka', 'the', 'council', 'of', 'liberec', 'district', 'national', 'committee', ')', 'on', 'its', 'april', '2', '2', ',', '1', '9', '6', '3', 'meeting', 'chose', 'hubáček', \"'s\", 'proposal', 'as', 'the', 'winner', '.'], ['mcphee', 'co-starred', 'in', 'director', 'david', 'ellis', \"'\", 'shark', 'thriller', 'indie', 'film', '``', 'shark', 'night', '3', 'd', \"''\", ',', 'which', 'was', 'released', 'september', '2', ',', '2', '0', '1', '1', '.'], ['the', 'degree', 'to', 'which', 'dark', 'avenger', 'exposes', 'himself', 'to', 'gordon', 'has', 'led', 'many', 'to', 'believe', 'that', 'he', 'held', 'a', 'deep', 'affection', 'for', 'her', '.'], ['the', 'population', 'density', 'was', '1', ',', '3', '0', '4', '.', '8', 'people', 'per', 'square', 'mile', '(', '5', '0', '2', '.', '9', '/km', ')', '.'], ['in', '1', '9', '8', '9', 'paquito', \"d'rivera\", 'composed', '``', 'new', 'york', 'suite', \"''\", 'for', 'the', 'danovich', 'saxophone', 'quartet', '.'], ['the', 'college', 'holds', 'a', 'debating', 'competition', 'every', 'year', 'on', 'its', 'foundation', 'day', ',', 'september', '7', 'th', 'in', 'memory', 'of', 'its', 'first', 'regular', 'principal', 'tanu', 'konwar', '.'], ['almost', 'all', 'of', 'these', 'women', 'had', 'college', 'and', 'graduate', 'degrees', ',', 'and', 'were', 'employed', 'either', 'in', 'schools', ',', 'where', 'men', 'were', 'not', 'permitted', 'to', 'teach', 'girls', ';', 'or', 'in', 'hospitals', ',', 'because', 'conservative', 'families', 'prefer', 'that', 'female', 'doctors', 'and', 'nurse', 'treat', 'their', 'wives', ',', 'sisters', ',', 'and', 'daughters', '.'], ['together', ',', 'they', 'defeated', 'huerta', 'in', '1', '9', '1', '4', '.'], ['thomas', 'edison', ',', 'who', 'had', 'previously', 'thought', 'of', 'charge', 'as', 'a', 'continuous', 'variable', ',', 'became', 'convinced', 'after', 'working', 'with', 'millikan', 'and', 'fletcher', \"'s\", 'apparatus', '.'], ['the', 'romanian', 'trademark', 'office', '(', 'tmo', ')', 'communicated', 'to', 'both', 'parties', 'in', 'march', 'of', '2', '0', '1', '6', 'that', 'there', 'was', 'no', 'likelihood', 'of', 'confusion', 'between', 'either', 'brands', ',', 'however', '.'], ['warden', 'peak', 'is', 'part', 'of', 'the', 'vancouver', 'island', 'ranges', 'which', 'in', 'turn', 'form', 'part', 'of', 'the', 'insular', 'mountains', '.'], ['it', 'was', 'constructed', 'during', 'the', 'early', '3', 'rd', 'century', '.'], ['without', 'the', 'exclusion', 'legislation', ',', 'harlan', 'stated', 'his', 'opinion', 'that', 'vast', 'numbers', 'of', 'chinese', '``', 'would', 'have', 'rooted', 'out', 'the', 'american', 'population', \"''\", 'in', 'the', 'western', 'united', 'states', '.'], ['the', 'infantry', 'division', 'then', 'turned', 'north-east', 'towards', 'tulkarm', 'and', 'the', 'eighth', 'army', 'headquarters', ',', 'with', 'the', '5', 'th', 'light', 'horse', 'brigade', 'covering', 'the', 'right', 'flank', '.'], ['forty-three', 'children', 'had', 'died', 'from', 'h', '1', 'n', '1', 'since', 'august', '3', '0', ',', 'which', 'is', 'approximately', 'the', 'number', 'that', 'usually', 'dies', 'in', 'an', 'entire', 'flu', 'season', '.'], ['the', 'battle', 'was', 'fierce', ',', 'but', 'rudolf', 'fell', 'early', 'with', '5', '0', '0', 'compatriots', '(', 'or', '8', '0', '0', ',', 'the', 'sources', 'disagree', 'on', 'this', ')', '.'], ['the', 'city', 'was', 'incorporated', 'in', '1', '9', '1', '1', ',', 'and', 'in', '1', '9', '1', '5', ',', 'was', 'designated', 'the', 'county', 'seat', 'of', 'newly', 'formed', 'broward', 'county', '.'], ['alphonse', 'mandonda', '(', 'born', '5', 'december', '1', '9', '5', '0', ')', 'is', 'a', 'congolese', 'middle-distance', 'runner', '.'], ['the', 'case', 'was', 'investigated', 'by', 'the', 'fbi', ',', 'irs', 'and', 'pennsylvania', 'state', 'police', '.'], ['during', 'his', 'tenure', 'as', 'caracas', \"'\", 'archbishop', ',', 'he', 'made', 'an', 'offer', 'of', 'mediation', 'to', 'venezuela', \"'s\", 'guerrillas', ',', 'served', 'as', 'president', 'of', 'the', 'venezuelan', 'episcopal', 'conference', ',', 'and', 'enforced', 'the', '``', 'dignity', 'and', 'obligation', 'of', 'fatherhood', \"''\", '.'], ['continued', 'threats', 'to', 'the', 'scottish', 'wildcat', 'population', 'include', 'habitat', 'loss', 'and', 'hunting', '.'], ['dance', 'magazine', \"'s\", 'reviewer', 'described', 'the', 'action', 'as', '``', 'the', 'elaboration', 'of', 'stiff-necked', 'recrimination', ',', 'cruelty', 'and', 'oppression', 'which', 'colored', 'the', 'composition', 'with', 'dread', 'and', 'despair', ',', \"''\", 'adding', 'that', 'the', 'dance', 'was', '``', 'dynamically', 'performed', '.', \"''\"], ['said', 'gygax', ',', '``', 'what', 'could', 'be', 'more', 'logical', 'than', 'to', 'make', 'available', 'a', 'scenario', 'which', 'blends', 'the', 'two', 'role', 'playing', 'approaches', 'into', 'a', 'single', 'form', '?', \"''\"], ['i', 'enjoy', 'many', 'shooter', 'games', ',', 'but', 'the', 'ability', 'to', 'change', 'characters', 'gives', 'this', 'one', 'a', 'real', 'personality', '.', \"''\"], ['during', 'this', 'task', ',', 'study', 'participants', 'heard', 'recorded', 'sentences', 'containing', 'lexical', 'or', 'syntactic', 'ambiguities', 'while', 'seated', 'in', 'front', 'of', 'a', 'computer', 'screen', '.'], ['however', ',', 'according', 'to', 'a', '1', '9', '9', '7', 'interview', 'with', 'fowler', ',', 'perkins', 'never', 'said', 'any', 'such', 'thing', ':', 'according', 'to', 'fowler', ',', '``', 'johnny', 'carson', 'started', 'the', 'jokes', 'about', 'me', 'and', 'marlin', 'in', 'his', 'monologues', \"''\", '.'], ['``', 'let', \"'s\", 'go', ',', 'let', \"'s\", 'go', ',', 'let', \"'s\", 'go', \"''\", 'is', 'also', 'ballard', '&', 'amp', ';', 'the', 'midnighters', \"'\", 'most', 'successful', 'pop', 'single', ',', 'peaking', 'at', 'number', 'six', '.'], ['travel', 'by', 'air', 'began', 'to', 'blossom', 'soon', 'after', 'the', 'war', 'was', 'over', ',', 'and', ',', 'in', '1', '9', '5', '0', ',', 'the', 'airport', 'received', 'its', 'first', 'commercial', 'flight', '.'], ['he', 'enjoyed', 'opera', ',', 'concerts', ',', 'art', ',', 'literature', ',', 'and', 'the', 'other', 'cultural', 'opportunities', 'richly', 'available', 'in', 'san', 'francisco', ',', 'where', 'he', 'settled', 'after', 'his', 'graduation', 'and', 'explored', 'buddhism', 'and', 'other', 'asian', 'philosophies', ',', 'as', 'well', 'as', 'the', 'city', \"'s\", 'lgbt', 'scene', '.'], ['javed', 'kureishi', '(', 'born', '2', '5', 'august', '1', '9', '6', '1', ')', 'is', 'a', 'former', 'pakistani', 'cricketer', 'and', 'the', 'first', 'captain', 'of', 'the', 'pakistan', 'u', '1', '9', 'cricket', 'team', '.'], ['on', 'the', 'great', 'south', 'bay', ',', 'passenger', 'ferries', 'take', 'vacationers', 'to', 'and', 'from', 'fire', 'island', '.'], ['the', 'storm', 'left', 'road', 'washouts', 'in', 'north', 'myrtle', 'beach', ',', 'and', 'worsened', 'a', 'long-term', 'erosion', 'problem', 'along', 'cherry', 'grove', 'beach', '.'], ['several', 'thousand', 'spectators', 'attended', 'that', 'day', ',', 'although', 'guests', 'from', 'cornwall', 'were', 'late', 'for', 'the', 'ceremony', 'as', 'their', 'train', 'broke', 'down', 'at', 'liskeard', '.'], ['franklin', 'bells', '(', 'also', 'known', 'as', 'gordon', \"'s\", 'bells', 'or', 'lightning', 'bells', ')', 'are', 'an', 'early', 'demonstration', 'of', 'electric', 'charge', 'designed', 'to', 'work', 'with', 'a', 'leyden', 'jar', '.'], ['this', 'has', 'increased', 'speculation', 'that', 'an', 'mlb', 'team', 'might', 'eventually', 'sign', 'him', '.'], ['cadoret', 'was', 'born', 'in', 'riec-sur-belon', 'on', '1', '3', 'february', '1', '8', '8', '7', '.'], ['the', 'location', 'of', 'ring', 'butt', 'welds', 'should', 'preferably', 'be', 'offset', '1', '5', 'degrees', '(', '+/-', ')', 'from', 'point', 'of', 'maximum', 'stress', 'to', 'minimize', 'the', 'effect', 'of', 'weld', 'porosity', 'on', 'weld', 'allowable', 'stress', '.'], ['for', 'a', 'brief', 'period', 'in', 'the', '1', '8', '5', '0', 's', ',', 'britain', 'declared', 'the', 'bay', 'islands', 'its', 'colony', '.'], ['a', 'meeting', 'was', 'held', 'in', 'witham', 'in', 'december', '1', '8', '0', '2', ',', 'to', 'consider', 'the', 'subject', ',', 'including', 'the', 'purchase', 'or', 'hire', 'of', 'a', 'building', 'for', 'public', 'worship', 'in', 'tollesbury', '.'], ['the', 'federation', 'organizes', 'all', 'three', 'divisions', 'of', 'women', \"'s\", 'football', 'in', 'france', 'and', 'oversee', 'the', 'challenge', 'de', 'france', ',', 'the', 'women', \"'s\", 'premier', 'cup', 'competition', '.'], ['that', 'she', 'wants', 'to', 'take', 'a', '``', 'break', \"''\", 'from', 'their', 'relationship', '.'], ['it', 'is', 'customary', 'to', 'write', 'f-numbers', 'preceded', 'by', ',', 'which', 'forms', 'a', 'mathematical', 'expression', 'of', 'the', 'entrance', 'pupil', 'diameter', 'in', 'terms', 'of', 'f', 'and', '.'], ['in', 'march', '1', '9', '3', '9', 'lithuania', 'acquiesced', 'to', 'nazi', 'demands', 'and', 'transferred', 'the', 'klaipėda', 'region', 'to', 'germany', '.'], ['a', 'cnn', 'money', 'article', 'characterizes', 'the', 'relationship', 'as', 'having', 'the', '``', 'immediate', 'intimacy', '[', 'of', 'marriage', ']', 'without', 'commitment', '.', \"''\"], ['pressure', 'lubrication', 'was', 'supplied', 'to', 'the', 'tappets', ',', 'coolant', 'temperature', 'was', 'controlled', 'by', 'thermostat', 'and', 'coil', 'ignition', 'was', 'provided', 'with', 'automatic', 'advance', '.'], ['during', 'the', 'same', 'year', ',', \"o'briant\", 'was', 'announced', 'as', 'lead', 'in', 'the', 'us', 'tour', 'of', 'the', 'musical', '``', 'matilda', \"''\", '.'], ['on', '2', '6', 'july', ',', 'he', 'was', 'promoted', 'to', 'temporary', 'lieutenant', 'colonel', 'and', 'assumed', 'command', 'of', 'the', 'battalion', '.'], ['confederate', 'soldiers', 'feasted', 'on', 'union', 'food', 'supplies', 'and', 'helped', 'themselves', 'to', 'fresh', 'blue', 'federal', 'uniforms', ',', 'which', 'would', 'cause', 'some', 'confusion', 'in', 'the', 'coming', 'days', '.'], ['at', 'the', 'time', 'united', 'were', '£', '4', 'million', 'in', 'debt', 'and', 'languishing', 'near', 'the', 'bottom', 'of', 'the', 'second', 'tier', 'of', 'english', 'football', '.'], ['the', 'elephant', 'has', 'been', 'a', 'contributor', 'to', 'thai', 'society', 'and', 'its', 'icon', 'for', 'many', 'centuries', '.'], ['there', 'are', 'no', 'sense', 'organs', 'but', 'there', 'are', 'sensory', 'cells', 'on', 'the', 'siphons', ',', 'the', 'buccal', 'tentacles', 'and', 'in', 'the', 'atrium', '.'], ['only', 'in', 'the', 'case', 'of', 'particularly', 'cruel', 'brutality', 'would', 'the', 'accused', 'be', 'rejected', 'for', 'amnesty', '.'], ['edapt', 'is', 'an', 'organisation', 'which', 'provides', 'school', 'teachers', 'and', 'staff', ',', 'in', 'england', 'and', 'wales', ',', 'with', 'advice', 'and', 'accompaniment', 'in', 'individual', 'employment', 'disputes', 'and', 'allegations', '.'], ['and', 'i', \"'m\", 'not', 'upset', 'if', 'they', 'recast', ',', 'i', 'totally', 'would', 'understand', '.', \"''\"], ['carlyon', 'bay', '(', ',', 'meaning', '``', 'forts', \"''\", ')', 'is', 'a', 'bay', 'and', 'a', 'set', 'of', 'three', 'beaches', '(', 'crinnis', ',', 'shorthorn', 'and', 'polgaver', ')', 'near', 'st', 'austell', 'on', 'the', 'south', 'coast', 'of', 'cornwall', ',', 'england', ',', 'united', 'kingdom', '.'], ['hornschuch', 'only', 'launched', 'the', 'course', ',', 'formally', ',', 'in', '1', '8', '3', '1', '.'], ['barnum', 'graduated', 'from', 'yale', 'college', 'in', '1', '8', '4', '1', '.'], ['borsato', 'has', 'been', 'an', 'ambassador', 'for', 'war', 'child', 'holland', 'for', 'almost', 'ten', 'years', 'and', 'child', 'soldiers', 'was', 'a', 'subject', 'he', 'was', 'often', 'confronted', 'with', 'and', 'something', 'that', 'he', 'connected', 'with', '.'], ['the', 'rat', 'bones', 'found', 'in', 'all', 'sites', 'are', 'fragmented', ',', 'burned', 'and', 'covered', 'in', 'carbonized', 'material', ',', 'indicating', 'the', 'rats', 'were', 'eaten', 'as', 'food', '.'], ['for', 'one', 'of', 'his', 'two', 'victims', ',', 'böhme', 'shot', 'down', 'another', 'ace', ',', 'william', 'curphey', ',', 'who', 'survived', 'a', 'head', 'wound', '.'], ['a', 'new', 'album', ',', '``', 'renaissance', 'in', 'extremis', \"''\", ',', 'was', 'released', 'on', '2', '5', 'august', '2', '0', '1', '7', ',', 'which', 'was', 'their', 'first', 'full-length', 'album', 'in', 'a', 'decade', 'since', '2', '0', '0', '7', \"'s\", '``', 'antichrist', \"''\", '.'], ['gemina', 'was', 'seen', 'tumbling', 'end', 'over', 'end', 'when', 'she', 'was', 'two', 'years', 'old', '.'], ['flowers', 'worn', 'by', 'men', 'are', 'generally', 'called', 'buttonholes', 'or', 'boutonnières', '.'], ['continuing', 'north', ',', 'i-', '2', '8', '0', 'runs', 'through', 'farm', 'land', 'and', 'through', 'an', 'interchange', 'with', 'bahnsen', 'road', ',', 'which', 'also', 'provides', 'access', 'to', 'other', 'motorist-', 'and', 'trucking-related', 'businesses', '.'], ['lymphoma', 'with', 'autoimmune', 'neutropenia', 'and', 'hepatic', 'sinusoidal', 'infiltration', ':', 'a', 'syndrome', '.'], ['during', 'breaks', 'from', 'his', 'daily', 'lessons', ',', 'he', 'trained', 'in', 'a', 'gym', 'with', 'his', 'brothers', 'at', 'the', 'vladimir', 'palace', '.'], ['the', 'chain', 'folded', 'in', '2', '0', '0', '3', 'because', 'too', 'inc.', 'felt', 'that', 'they', 'knew', 'and', 'understood', 'the', 'preteen', 'customer', 'better', '.'], ['within', 'days', ',', 'reports', 'of', 'smoke', 'and', 'haze', 'within', 'the', 'tunnel', 'prompted', 'wsdot', 'to', 'investigate', 'possible', 'faults', 'in', 'the', 'exhaust', 'ventilation', 'system', '.'], ['the', 'pickup', 'was', 'stopped', ',', 'and', 'the', 'three', 'off-duty', 'officers', 'were', 'identified', ',', 'questioned', ',', 'and', 'released', '.'], ['she', 'holds', 'a', 'doctorate', 'in', 'economics', 'from', 'the', 'national', 'autonomous', 'university', 'of', 'mexico', 'and', 'a', 'master', \"'s\", 'in', 'social', 'science', 'from', 'the', 'facultad', 'latinoamericana', 'de', 'ciencias', 'sociales', '(', 'latin', 'american', 'social', 'science', 'college', ')', '.'], ['his', 'installation', ',', 'film', ',', 'video', 'and', 'photographic', 'work', 'have', 'been', 'exhibited', 'widely', 'in', 'museums', 'and', 'galleries', ',', 'and', 'received', 'awards', 'including', 'the', 'klm', 'paul', 'huf', 'award', ',', 'w.', 'eugene', 'smith', 'grant', ',', 'oskar', 'barnack', 'award', 'and', 'the', 'discovery', 'award', 'at', 'rencontres', \"d'arles\", '.'], ['in', 'july', '2', '0', '0', '9', 'the', 'italian', 'parliament', 'passed', 'a', 'law', 'readdressing', 'enea', \"'s\", 'mission', 'statement', ',', 'including', 'to', 'back', 'atomic', 'energy', ',', 'and', 'contextually', 'changing', 'its', 'complete', 'name', 'to', 'the', 'current', 'one', '.'], [\"'s\", 'first', 'album', ',', 'murmur', 'signed', 'a', 'number', 'of', 'australia', \"'s\", 'most', 'successful', 'rock', 'bands', ',', 'including', 'silverchair', ',', 'ammonia', ',', 'something', 'for', 'kate', 'and', 'jebediah', '.'], ['new', 'brunswick', 'settlements', 'through', 'which', 'it', 'passes', 'include', ',', 'moving', 'downstream', ',', 'edmundston', ',', 'fredericton', ',', 'oromocto', ',', 'and', 'saint', 'john', '.'], ['in', 'the', 'late', '1', '9', '5', '0', 's', 'cardiff', 'began', 'to', 'direct', ',', 'with', 'two', 'modest', 'successes', 'in', '``', 'intent', 'to', 'kill', \"''\", '(', '1', '9', '5', '8', ')', 'and', '``', 'web', 'of', 'evidence', \"''\", '(', '1', '9', '5', '9', ')', '.'], ['he', 'just', 'said', ',', '``', 'tom', 'walley', 'would', 'be', 'proud', 'of', 'you', \"''\", '.'], ['in', 'late', '1', '9', '8', '0', ',', 'nilsen', 'removed', 'and', 'dissected', 'the', 'bodies', 'of', 'each', 'victim', 'killed', 'since', 'december', '1', '9', '7', '9', 'and', 'burned', 'them', 'upon', 'a', 'communal', 'bonfire', 'he', 'had', 'constructed', 'on', 'waste', 'ground', 'behind', 'his', 'flat', '.'], ['these', 'are', 'subdivided', 'also', 'into', 'the', '``', 'military', 'course', \"''\", '(', '1', 'st', 'class', ')', 'and', 'the', '``', 'general', 'course', \"''\", 'cadets', '(', '4', 'th', 'through', '2', 'nd', 'classes', ')', '.'], ['the', 'airline', 'was', 'established', 'on', 'as', 'a', 'wholly', 'owned', 'commercial', 'subsidiary', 'of', 'the', 'gromov', 'flight', 'research', 'institute', 'and', 'named', '``', 'gromov', 'air', \"''\", ',', 'which', 'was', 'registered', 'on', '1', '0', 'october', 'the', 'same', 'year', '.'], ['for', 'her', 'performance', 'in', '``', 'habeas', 'corpus', \"''\", ',', 'havoc', 'was', 'nominated', 'for', 'the', 'drama', 'desk', 'award', 'for', 'best', 'supporting', 'actress', 'in', 'a', 'play', 'for', 'the', '1', '9', '7', '5', '-', '7', '6', 'broadway', 'season', '.'], ['in', '1', '8', '6', '3', 'captain', 'john', 'clint', ',', 'a', 'liverpool', 'shipowner', ',', 'proposed', 'the', 'idea', 'that', 'a', 'sea', 'training', 'school', 'should', 'be', 'established', 'for', 'the', 'orphans', 'and', 'sons', 'of', 'liverpool', 'seamen', '.'], ['a', 'small', 'portion', 'of', 'tempe', '(', 'west', 'and', 'south', 'of', 'the', 'i-', '1', '0', 'broadway', 'curve', ')', 'also', 'remained', 'in', '6', '0', '2', ',', 'with', 'most', 'of', 'the', 'city', 'moving', 'to', '4', '8', '0', '.'], ['dmytryk', 'was', 'blacklisted', 'because', 'he', 'refused', 'to', 'respond', 'to', 'allegations', 'of', 'communism', '.'], ['the', '2', '0', '2', '0', 'pageant', 'was', 'slated', 'to', 'be', 'held', 'on', '2', '8', 'march', '2', '0', '2', '0', ',', 'but', 'postponed', 'in', 'september', 'due', 'to', 'the', 'covid-', '1', '9', 'pandemic', '.'], ['in', '1', '8', '5', '1', 'inside', 'its', 'standard', 'gauge', 'main', 'line', ',', 'the', 'upper', 'silesian', 'railway', 'company', 'started', 'to', 'build', 'a', 'narrow', 'gauge', 'network', ',', 'connecting', 'local', 'mining', 'trams', '.'], ['he', 'also', 'served', 'on', 'the', 'traverse', 'city', 'board', 'of', 'education', 'and', 'was', 'president', 'of', 'the', 'board', 'of', 'education', '.'], ['a', 'microsoft', 'store', 'also', 'opened', 'in', 'the', 'lord', '&', 'amp', ';', 'taylor', 'wing', 'that', 'same', 'year', '.'], ['shenk', 'was', 'in', 'charge', 'of', 'the', 'city', \"'s\", 'legal', 'office', 'when', 'los', 'angeles', 'annexed', 'the', 'san', 'fernando', 'valley', 'and', 'began', 'the', 'to', 'bring', 'water', 'to', 'the', 'city', 'through', 'the', 'los', 'angeles', 'aqueduct', '.'], ['marymount', 'california', 'university', 'teams', ',', 'nicknamed', 'the', 'mariners', ',', 'are', 'part', 'of', 'the', 'national', 'association', 'of', 'intercollegiate', 'athletics', '(', 'naia', ')', 'and', 'compete', 'in', 'the', 'california', 'pacific', 'conference', '(', 'calpac', ')', '.'], ['this', 'money', 'was', 'used', 'to', 'remodel', 'the', 'school', 'building', '.'], ['philip', 'morris', 'accused', 'gre', 'germany', 'that', 'their', 'mark', 'adams', 'brand', 'caused', 'confusion', 'with', 'their', 'own', 'mark', '1', '0', 'brand', '.'], ['living', 'in', 'a', 'large', 'house', 'he', 'kept', 'two', 'housekeepers', 'to', 'whom', 'he', 'bequeathed', 'a', 'home', 'on', 'the', 'estate', 'for', 'peppercorn', 'rent', 'upon', 'his', 'death', '.'], ['bloomfield', 'was', 'educated', 'at', 'harvard', 'university', ',', 'graduating', '``', 'cum', 'laude', \"''\", 'with', 'an', 'a.b', '.'], ['ōshima', 'was', 'born', 'of', 'samurai', 'status', 'in', 'morioka', 'city', ',', 'nanbu', 'domain', 'which', 'is', 'now', 'iwate', 'prefecture', 'in', '1', '8', '2', '6', '.'], ['she', 'was', 'awarded', 'at', 'the', 'nyts', 'conference', ',', '``', '1', '1', '1', 'years', 'of', 'walking', 'gender', 'justice', '.', \"''\"], ['in', '1', '9', '6', '9', ',', 'it', 'moved', 'to', 'birobidzhan', 'as', 'a', 'result', 'of', 'the', 'sino-soviet', 'border', 'conflict', '.'], ['at', 'this', 'time', 'honours', 'for', 'australians', 'were', 'awarded', 'both', 'in', 'the', 'united', 'kingdom', 'honours', ',', 'on', 'the', 'advice', 'of', 'the', 'premiers', 'of', 'australian', 'states', ',', 'and', 'also', 'in', 'a', 'separate', 'australia', 'honours', 'list', '.'], ['the', 'elephant', 'has', 'had', 'a', 'considerable', 'impact', 'on', 'thai', 'culture', '.'], ['on', 'the', 'following', 'day', ',', 'iran', 'sent', 'a', 'letter', 'of', 'protest', 'to', 'un', 'secretary', 'general', 'ban', 'ki-moon', 'for', 'criticizing', 'ahmadinejad', \"'s\", 'speech', ',', 'claiming', 'the', 'iranian', 'president', '``', 'was', 'subjected', 'to', 'unfair', 'and', 'unwarranted', 'harsh', 'criticism', '.', \"''\"], ['following', 'the', 'completion', 'of', 'his', 'legal', 'studies', ',', 'white', 'was', 'admitted', 'to', 'the', 'bar', 'on', 'march', '3', '0', ',', '1', '8', '5', '4', ',', 'and', 'immediately', 'began', 'practicing', 'law', 'in', 'romney', '.'], ['in', 'studies', 'of', 'the', 'effects', 'of', 'bt', 'on', 'humans', ',', 'most', 'subjects', 'were', 'unaffected', 'when', 'exposed', 'to', 'bt', '.'], ['he', 'was', 'featured', 'in', 'a', 'tv', 'commercial', 'for', 'gillette', '.'], ['henderson', 'graduated', 'from', 'the', 'university', 'of', 'arkansas', 'in', 'the', 'capital', 'city', 'of', 'little', 'rock', '.'], ['currently', ',', 'there', 'is', 'modlin', 'airport', 'in', 'a', 'part', 'of', 'the', 'fortress', '.'], ['following', 'the', 'death', 'of', 'his', 'father', ',', 'it', 'was', 'initially', 'thought', 'that', 'prince', 'jean', 'would', 'not', 'assume', 'the', 'title', 'of', 'count', 'of', 'paris', 'for', 'several', 'months', 'after', 'his', 'father', \"'s\", 'death', ',', 'and', 'possibly', 'not', 'for', 'as', 'much', 'as', 'one', 'year', '.'], ['dzul', '(', '1', '0', '1', '.', '7', 'fm', ')', ',', 'broadcasting', 'as', '1', '0', '4', '.', '3', 'my', 'fm', ',', 'is', 'a', 'radio', 'station', 'owned', 'and', 'operated', 'sea', 'and', 'sky', 'broadcasting', '.'], ['ois', 'is', 'present', 'on', 'the', 'telephoto', 'lens', 'for', 'both', ',', 'but', 'the', 'mate', '3', '0', 'pro', 'also', 'has', 'ois', 'on', 'its', 'main', 'lens', 'unlike', 'the', 'mate', '3', '0', '.'], ['it', 'is', 'published', 'biannually', 'on', 'behalf', 'of', 'the', 'association', 'for', 'the', 'study', 'of', 'ethnicity', 'and', 'nationalism', ',', 'by', 'wiley-blackwell', '.'], ['their', 'questions', 'are', 'answered', 'when', 'the', 'walls', 'begin', 'to', 'bleed', 'and', 'objects', 'begin', 'to', 'fly', 'through', 'the', 'air', ',', 'and', 'lisa', 'senses', 'an', 'evil', 'presence', 'in', 'the', 'house', '.'], ['in', 'other', 'cases', 'the', 'skull', 'is', 'put', 'in', 'sacred', 'place', '.'], ['it', 'was', 'praised', 'as', '``', 'thorough', 'and', 'masterly', 'in', 'treatment', \"''\", 'by', 'lucy', 'm.', 'brown', 'and', 'i.', 'r.', 'christie', '.'], ['eyster', 'assisted', 'in', 'the', 'purchase', 'of', 'mount', 'vernon', '(', 'george', 'washington', \"'s\", 'home', ')', 'for', 'the', 'u.s.', ';', 'and', 'served', 'as', 'an', 'officer', 'of', 'the', 'great', 'sanitary', 'commission', 'during', 'the', 'american', 'civil', 'war', '.'], ['he', 'received', 'a', 'scholarship', 'from', 'the', 'french', 'national', 'foundation', 'of', 'photography', 'and', 'studied', 'in', 'the', 'united', 'states', 'alongside', 'ansel', 'adams', 'and', 'jerry', 'uelsmann', 'at', 'the', 'university', 'of', 'arizona', '.'], ['in', '1', '9', '4', '4', ',', 'kahn', 'and', 'jacobs', 'rendered', 'a', 'prosaic', 'program', ',', 'the', 'municipal', 'asphalt', 'plant', ',', 'at', 'fdr', 'drive', 'between', '9', '0', 'th', 'and', '9', '1', 'st', 'street', ',', 'as', 'a', 'free-standing', 'concrete', 'structure', 'with', 'four', 'parabolic', 'steel', 'arches', '.'], ['bloglines', 'was', 'a', 'web-based', 'news', 'aggregator', 'for', 'reading', 'syndicated', 'feeds', 'using', 'the', 'rss', 'and', 'atom', 'formats', '.'], ['while', 'he', 'was', 'attorney-general', ',', 'cass', 'continued', 'to', 'practise', 'on', 'the', 'weekends', 'as', 'a', 'small-town', 'lawyer', 'in', 'his', 'hometown', 'of', 'chesterville', 'and', 'another', 'office', 'in', 'nearby', 'winchester', ',', 'where', 'his', 'mother', 'lived', '.'], ['trentiy', 'parafilo', 'was', 'born', 'on', '2', '8', 'october', '1', '9', '0', '1', 'in', 'brovarky', ',', 'in', 'the', 'kremenchugsky', 'uyezd', 'of', 'the', 'poltava', 'governorate', 'of', 'the', 'russian', 'empire', '(', 'present-day', 'ukraine', ')', '.'], ['many', 'glaswegians', 'traveled', 'by', 'tram', 'to', 'drumpellier', 'during', 'the', '1', '9', '2', '0', 's', 'and', '3', '0', 's', ',', 'to', 'spend', 'their', 'weekends', 'camping', 'in', 'the', 'park', '.'], ['he', 'was', 'later', 'given', 'a', 'ten-place', 'grid', 'penalty', 'for', 'an', 'engine', 'change', '.'], ['his', 'third', 'son', 'was', 'born', 'in', '1', '7', '6', '1', 'and', 'baptised', 'on', '1', '7', 'september', '1', '7', '6', '1', ':', 'he', 'was', 'oswald', 'leicester', 'jnr', '.'], ['they', 'released', 'three', 'albums', 'on', 'various', 'record', 'labels', 'before', 'going', 'on', 'indefinite', 'hiatus', 'in', '2', '0', '0', '5', '.'], ['given', 'a', 'discrete', 'set', 'of', 'probabilities', 'formula_', '1', 'with', 'the', 'condition', 'formula_', '2', ',', 'and', 'formula_', '3', 'any', 'real', 'number', ',', 'the', 'tsallis', 'entropy', 'is', 'defined', 'as'], ['sheva', 'alomar', \"'s\", 'character', 'was', 'designed', 'during', 'the', 'early', 'development', 'phase', 'of', '``', 'resident', 'evil', '5', '``', ',', 'with', 'her', 'designer', 'yosuke', 'yamagata', 'calling', 'her', 'a', '``', 'new', 'major', 'protagonist', \"''\", 'who', 'symbolizes', 'the', 'theme', 'of', '``', 'the', 'bonds', 'of', 'partnership', \"''\", '.'], ['further', ',', 'the', 'association', 'of', 'american', 'law', 'schools', 'has', 'also', 'voiced', 'criticisms', 'of', '``', 'u.s.', 'news', \"''\", \"'s\", 'ranking', 'system', '.'], ['this', 'would', 'allow', 'jackson', 'to', 'fight', 'and', 'hopefully', 'defeat', 'each', 'of', 'the', 'union', 'corps', 'separately', ',', 'as', 'he', 'had', 'done', 'during', 'the', 'valley', 'campaign', '.'], ['dubrovsky', 'district', '(', ')', 'is', 'an', 'administrative', 'and', 'municipal', 'district', '(', 'raion', ')', ',', 'one', 'of', 'the', 'twenty-seven', 'in', 'bryansk', 'oblast', ',', 'russia', '.'], ['the', 'title', 'of', 'the', 'book', 'was', 'inspired', 'by', 'robert', 'frost', \"'s\", '1', '9', '2', '2', 'poem', '``', 'stopping', 'by', 'woods', 'on', 'a', 'snowy', 'evening', '.', \"''\"], ['after', 'theresa', 'may', \"'s\", 'appointment', 'as', 'prime', 'minister', ',', 'he', 'was', 'appointed', 'as', 'a', 'minister', 'of', 'state', 'at', 'the', 'department', 'for', 'exiting', 'the', 'european', 'union', '.'], ['the', 'line', 'of', 'sight', 'distance', '``', 'd', \"''\", 'of', 'this', 'station', 'is', 'given', 'by', 'the', 'pythagorean', 'theorem', ';'], ['the', 'country', 'can', 'be', 'divided', 'into', 'three', 'landform', 'regions', ':', 'the', 'eastern', 'mountains', ',', 'the', 'central', 'valleys', 'and', 'plateaus', ',', 'and', 'the', 'coastal', 'plains', '.'], ['to', 'prevent', 'the', 'warring', 'states', 'from', 'regaining', 'their', 'power', ',', 'the', 'first', 'emperor', 'ordered', 'the', 'walls', 'of', 'the', 'old', 'capitals', 'be', 'destroyed', 'and', 'ji', \"'s\", 'walls', 'were', 'torn', 'down', 'in', '2', '1', '5', 'bc', 'but', 'later', 'rebuilt', '.'], ['in', 'canoes', ',', 'the', 'bark', 'that', 'touched', 'the', 'wood', 'was', 'the', 'side', 'that', 'touched', 'the', 'river', ',', 'and', 'the', 'resulting', 'canoe', 'could', 'be', 'very', 'strong', ',', 'useful', 'in', 'rapids', 'or', 'in', 'ocean', 'travel', '.'], ['the', 'alliance', 'was', 'formed', 'by', 'the', 'magyar', 'party', 'and', 'the', 'german', 'party', 'in', 'order', 'to', 'contest', 'the', '1', '9', '2', '7', 'general', 'elections', '.'], ['pete', 'and', 'sam', 'stated', 'the', 'following', 'on', 'the', 'band', \"'s\", 'official', 'website', ':', '``', 'after', 'three', 'years', 'of', 'non-stop', 'touring', 'and', 'recording', ',', 'joe', 'is', 'taking', 'a', 'break', 'to', 'be', 'home', 'with', 'family', '.'], ['it', 'was', 're-released', 'in', 'france', 'in', '2', '0', '0', '5', 'as', 'part', 'of', 'ze', 'records', \"'s\", 'reissue', 'of', 'lio', \"'s\", 'discography', '.'], ['through', 'his', 'son', 'james', ',', 'he', 'was', 'a', 'grandfather', 'of', 'mary', 'bellenden', ',', 'who', 'married', 'sir', 'richard', 'murray', ',', '6', 'th', 'baronet', '.'], ['he', 'began', 'his', 'medical', 'practice', 'and', 'served', 'as', 'a', 'consultant', 'pathologist', 'at', 'the', 'state', 'mental', 'hospital', 'in', 'norristown', ',', 'pennsylvania', '.'], ['tetanus', 'toxoid', ',', 'for', 'instance', ',', 'is', 'usually', 'adsorbed', 'onto', 'alum', '.'], ['there', 'are', 'several', '``', 'junior', 'golf', \"''\", 'programs', 'for', 'children', 'and', 'teens', ',', 'and', 'a', 'learning', 'center', 'aimed', 'at', 'low-income', 'children', '.'], ['reynolds', 'school', 'district', 'is', 'governed', 'by', '9', 'individually', 'elected', 'board', 'members', '(', 'serve', 'four-year', 'terms', ')', ',', 'the', 'pennsylvania', 'state', 'board', 'of', 'education', ',', 'the', 'pennsylvania', 'department', 'of', 'education', 'and', 'the', 'pennsylvania', 'general', 'assembly', '.'], ['the', 'spill', 'was', 'caused', 'by', 'rain', 'then', 'damaging', 'the', 'pipes', 'in', 'the', 'rainbow', 'pipeline', 'system', ',', 'owned', 'by', 'plains', 'midstream', 'canada', ',', 'a', 'unit', 'of', 'plains', 'all', 'american', 'pipeline', '.'], ['on', 'december', '1', '2', ',', '2', '0', '0', '5', ',', 'newmyer', 'died', 'at', 'the', 'age', 'of', '4', '9', 'in', 'toronto', ',', 'ontario', '.'], ['upon', 'his', 'arrival', 'he', 'declared', ',', '``', 'as', 'far', 'as', 'i', 'know', ',', 'there', 'is', 'no', 'anti-semitism', 'in', 'romania', 'that', 'deserves', 'any', 'special', 'discussion', 'or', 'notice', '.', \"''\"], ['in', '1', '9', '6', '7', 'a', 'car-assembly', 'factory', 'which', 'produced', 'bulgarrenault', 'under', 'the', 'license', 'of', 'the', 'french', 'automotive', 'manufacturer', 'renault', 'was', 'inaugurated', 'but', 'production', 'was', 'halted', 'in', 'early', '1', '9', '7', '0', '.'], ['manfred', 'mann', \"'s\", 'version', 'was', 'released', 'on', '1', '0', 'july', '1', '9', '6', '4', '.'], ['condé', 'abandoned', 'paris', 'on', 'october', '1', '4', 'and', 'took', 'refuge', 'in', 'the', 'spanish', 'netherlands', '.'], ['he', 'assumed', 'command', 'of', 'in', '1', '9', '4', '3', '.'], ['established', 'by', 'the', 'president', 'of', 'india', 'on', '2', '6', 'january', '1', '9', '5', '0', '(', 'with', 'effect', 'from', '1', '5', 'august', '1', '9', '4', '7', ')', '.'], ['in', 'general', ',', 'scfe', 'is', 'caused', 'by', 'increased', 'force', 'applied', 'across', 'the', 'epiphysis', ',', 'or', 'a', 'decrease', 'in', 'the', 'resistance', 'within', 'the', 'physis', 'to', 'shearing', '.'], ['he', 'was', 'apprehended', ',', 'and', 'brockmeyer', 'gave', 'him', 'the', 'choice', 'of', 'either', 'joining', 'the', 'clandestine', 'agency', 'known', 'as', 'international', 'operations', 'or', 'go', 'to', 'jail', '.'], ['alexander', 'leith', 'ross', 'wrote', 'to', 'morrison', 'that', 'his', 'dictionary', 'had', 'an', 'extensive', 'circulation', 'in', 'europe', ',', 'and', 'would', 'be', '``', 'an', 'invaluable', 'treasure', 'to', 'every', 'student', 'of', 'chinese', \"''\", '.'], ['after', 'six', 'laps', 'under', 'the', 'safety', 'car', ',', 'the', 'conditions', 'were', 'getting', 'worse', ',', 'and', 'the', 'race', 'was', 'suspended', '.'], ['fernandez', 'played', 'only', 'six', 'games', 'over', 'two', 'seasons', 'with', 'the', 'force', 'before', 'being', 'released', 'in', 'october', '1', '9', '8', '5', '.'], ['there', 'are', 'two', 'points', 'of', 'view', 'about', 'the', 'circumstances', ':', 'in', 'the', 'first', ',', 'bothwell', 'kidnapped', 'the', 'queen', ',', 'took', 'her', 'to', 'dunbar', 'castle', ',', 'and', 'raped', 'her', '.'], ['wilson', 'had', 'originally', 'auditioned', 'for', 'michael', ',', 'a', 'performance', 'that', 'he', 'described', 'as', 'a', '``', 'terrible', 'ricky', 'gervais', 'impersonation', \"''\", ';', 'however', ',', 'the', 'casting', 'directors', 'liked', 'his', 'audition', 'as', 'dwight', 'much', 'more', 'and', 'hired', 'him', '.'], ['directed', 'by', 'mike', 'christie', 'and', 'produced', 'by', 'carbon', 'media', ',', 'it', 'is', 'a', 'sequel', 'to', 'channel', '4', \"'s\", '``', 'jump', 'london', \"''\", '.'], ['an', 'estimated', '£', '2', 'million', 'worth', 'of', 'jewellery', 'was', 'stolen', '.'], ['the', 'acm', 'delivers', 'messages', 'to', 'its', 'simulation', 'that', 'are', 'of', 'interest', ',', 'and', 'pass', 'filtering', 'criteria', 'and', 'discards', 'those', 'that', 'are', 'not', 'of', 'interest', '.'], ['the', 'existence', 'of', 'mâcon', 'as', 'a', 'separate', 'diocese', 'ended', 'at', 'the', 'french', 'revolution', '.'], ['she', 'herself', 'is', 'a', 'former', 'drug', 'user', 'and', 'alcoholic', '(', 'who', 'often', 'was', 'promiscuous', 'with', 'other', 'men', ',', 'a', 'habit', 'that', 'resulted', 'tragically', 'in', 'her', 'sister', \"'s\", 'death', ')', '.'], ['several', 'boutiques', 'and', 'spin-offs', 'originated', 'from', 'or', 'arose', 'out', 'of', 'the', 'ashes', 'of', 'hambros', 'banking', 'group', 'in', 'the', 'late', '1', '9', '9', '0', 's', '.'], ['they', 'could', 'travel', 'faster', 'and', 'further', 'and', 'with', 'greater', 'freedom', 'from', 'weather', ',', 'wind', 'and', 'tide', '.'], ['first', 'u.s.', 'commercial', 'vinyon', 'fiber', 'production', ':', '1', '9', '3', '9', ',', 'fmc', 'corporation', ',', 'fiber', 'division', '(', 'formerly', 'american', 'viscose', 'corporation', ')', '.'], ['the', 'project', 'involves', 'the', 'construction', 'of', 'pumping', 'station', 'and', 'reservoirs', 'and', 'the', 'laying', 'of', '2', '5', 'kilometers', 'of', 'water', 'lines', 'including', 'mainlines', 'and', 'will', 'benefit', 'twelve', 'existing', 'subdivisions', 'occupying', 'a', 'total', 'land', 'area', 'of', '2', '7', 'hectares', '.'], ['his', 'first', 'appearance', 'was', 'as', 'paul', 'methorn', ',', 'an', 'mp', 'and', 'peace', 'activist', ',', 'in', 'episode', '7', 'of', 'the', 'first', 'series', ':', '``', 'face', 'value', \"''\", '.'], ['noura', \"'s\", 'family', 'lived', 'in', 'sharia', 'palace', 'in', 'alkharag', 'city', '.'], ['``', 'selena', 'forever', \"''\", 'was', 'received', 'positively', 'by', 'some', 'critics', '.'], ['the', 'ship', 'continued', 'her', 'operations', 'in', 'the', 'caribbean', ',', 'basing', 'out', 'of', 'new', 'orleans', 'and', 'patrolling', 'off', 'cuba', ',', 'the', 'dominican', 'republic', ',', 'and', 'the', 'danish', 'west', 'indies', '.'], ['in', 'the', 'end', ',', 'the', 'city', 'decided', 'the', 'best', 'option', 'was', 'a', 'rebuilt', 'roadway', 'that', 'extended', 'north', 'along', 'the', 'railroad', 'to', 'st.', 'anthony', 'avenue', ',', 'where', 'a', 'connection', 'to', 'i-', '9', '4', 'was', 'possible', '.'], ['helicarion', 'is', 'a', 'genus', 'of', 'air-breathing', 'land', 'snails', 'or', 'semislugs', ',', 'terrestrial', 'pulmonate', 'gastropod', 'mollusks', 'in', 'the', 'family', 'helicarionidae', '.'], ['this', 'literary', 'magazine', 'is', 'published', 'twice', 'a', 'year', ',', 'with', 'the', 'first', 'issue', 'scheduled', 'to', 'be', 'released', 'in', 'march', ',', '2', '0', '1', '4', '.'], ['in', '1', '9', '9', '7', 'he', 'was', 'invited', 'by', 'paolo', 'limiti', 'in', 'the', 'show', '``', 'ci', 'vediamo', 'in', 'tv', \"''\", 'and', 'in', '2', '0', '0', '1', ',', 'piero', 'chiambretti', 'and', 'fabio', 'fazio', 'invited', 'him', 'to', 'the', 'festival', 'della', 'canzone', 'italiana', 'to', 'represent', 'the', 'neapolitan', 'song', 'genre', '.'], ['this', 'is', 'staten', 'island', \"'s\", 'first', 'k', 'to', '8', 'school', '.'], ['hubáček', \"'s\", 'design', 'was', 'the', 'only', 'one', 'complying', 'with', 'both', 'the', 'requirements', '.'], ['in', 'order', 'to', 'stand', 'for', 'election', ',', 'the', 'candidate', 'must', 'be', 'validated', 'by', 'the', 'presidium', 'of', 'the', 'electoral', 'college', 'and', 'must', 'agree', 'to', 'uphold', 'the', 'constitution', 'of', 'the', 'prc', 'and', 'the', 'basic', 'law', '.'], ['the', 'latter', 'rain', 'movement', 'began', 'in', 'western', 'north', 'carolina', 'and', 'eastern', 'tennessee', 'among', 'groups', 'of', 'disaffected', 'baptists', 'and', 'methodists', '.'], ['traffic', 'continues', 'over', 'the', 'bundesstraße', '6', '1', 'through', 'the', 'health', 'resort', 'bad', 'oeynhausen', '.'], ['this', 'technique', 'does', 'not', 'function', 'in', 'air', 'so', 'animals', 'use', 'methods', 'of', 'overtaking', 'prey', 'with', 'jaws', 'followed', 'by', 'biting', 'down', '.'], ['qudos', 'bank', 'arena', 'is', 'first-rate', 'facility', 'is', 'situated', 'in', 'sydney', 'olympic', 'park', ',', 'and', 'is', 'formerly', 'known', 'as', 'the', 'sydney', 'super', 'dome', ',', 'which', 'completed', 'construction', 'in', '1', '9', '9', '9', '.'], ['an', 'irish', 'soldier', 'who', 'joined', 'the', 'movement', 'reported', 'that', 'the', 'dublin', 'branch', 'consisted', 'entirely', 'of', '``', 'nazis', 'and', 'people', 'who', 'were', 'in', 'the', 'ira', \"''\", '.'], ['allmusic', \"'s\", 'john', 'franck', 'awards', 'the', 'album', 'four', 'stars', 'out', 'of', 'five', ',', 'and', 'states', ',', '``', 'testament', \"'s\", 'sixth', 'studio', 'album', 'literally', 'saw', 'the', 'boys', 'from', 'the', 'bay', 'area', 'fighting', 'for', 'their', 'lives', 'in', 'the', 'unfriendly', 'surroundings', 'of', 'the', 'alternative', 'nation', '.'], ['on', '2', '7', 'february', '2', '0', '1', '3', ',', 'the', 'european', 'commission', 'blocked', 'the', 'third', 'attempt', 'by', 'ryanair', 'to', 'take', 'over', 'aer', 'lingus', ',', 'stating', 'that', 'the', 'merger', 'would', 'have', 'damaged', 'consumers', \"'\", 'choice', 'and', 'resulted', 'in', 'increased', 'fares', '.'], ['edward', 'carrington', 'thayer', ',', 'a', 'local', 'business', 'man', 'and', 'banker', ',', 'had', 'built', 'it', 'and', 'donated', 'it', 'to', 'the', 'town', 'in', 'memory', 'of', 'his', 'parents', ',', 'joseph', 'and', 'chloe', 'taft', 'thayer'], ['in', '2', '0', '1', '6', 'he', 'served', 'two', 'terms', 'as', 'northeast', 'regional', 'vice', 'chairman', 'of', 'the', 'college', 'republicans', '.'], ['one', 'study', 'found', 'that', 'being', 'awake', 'for', 'over', '2', '4', 'hours', 'caused', 'medical', 'interns', 'to', 'double', 'or', 'triple', 'the', 'number', 'of', 'preventable', 'medical', 'errors', ',', 'including', 'those', 'that', 'resulted', 'in', 'injury', 'or', 'death', '.'], ['keen', 'to', 'master', 'the', 'intellectual', 'context', 'of', 'his', 'chosen', 'speciality', ',', 'his', 'self-structured', 'programme', 'of', 'complementary', 'education', 'included', 'private', 'tutoring', 'in', 'botanic', 'sciences', ',', 'physics', ',', 'maths', 'and', 'quantitative', 'measurement', '.'], ['he', 'received', 'his', 'elementary', 'and', 'secondary', 'education', 'in', 'catholic', 'schools', 'in', 'pittston', ',', 'pennsylvania', '.'], ['there', 'are', 'approximately', '3', ',', '1', '0', '0', 'native', 'speakers', 'in', 'the', 'world', '.'], ['the', 'former', 'm.', 'armstrong', 'and', 'company', 'carriage', 'factory', 'is', 'located', 'in', 'new', 'haven', \"'s\", 'industrial', 'mill', 'river', ',', 'on', 'the', 'north', 'side', 'of', 'church', 'street', 'between', 'hamilton', 'and', 'south', 'wallace', 'streets', '.'], ['beit', 'sahour', 'is', 'a', 'center', 'of', 'palestinian', 'political', 'activism', '.'], ['after', 'hearing', 'the', 'commotion', ',', 'leafie', 'enters', 'the', 'nest', 'and', 'finds', 'a', 'single', 'egg', '.'], ['already', 'on', 'probation', 'for', 'a', 'dui', 'offense', ',', 'for', 'which', 'he', 'served', 'two', 'days', 'in', 'october', '2', '0', '0', '5', ',', 'he', 'was', 'sentenced', 'by', 'district', 'court', 'judge', 'brian', 'mackenzie', 'to', '9', '3', 'days', 'in', 'jail', 'for', 'violating', 'the', 'terms', 'of', 'the', 'probation', '.'], ['ingersoll', \"'s\", 'back', 'up', 'goalie', 'played', 'the', 'remainder', 'for', 'the', 'blades', '.'], ['``', 'culture', ',', 'art', ',', 'and', 'academia', 'converge', 'and', 'present', 'the', 'discovery', 'district', '.', \"''\"], ['the', 'series', 'was', 'the', 'network', \"'s\", 'second', 'longest-running', 'afternoon', 'drama', 'series', 'of', 'the', '2', '0', '1', '0', 's', 'with', 'a', 'total', 'of', '3', '4', '8', 'episodes', '.'], ['the', 'cathedrals', 'of', 'worms', 'and', 'mainz', 'are', 'other', 'important', 'examples', 'of', 'romanesque', 'style', '.'], ['imitation', 'often', 'involves', 'the', 'copying', 'of', 'an', 'observed', 'behavior', 'of', 'another', 'individual', '.'], ['strickland', 'has', 'spoken', 'against', 'the', 'emphasis', 'placed', 'on', 'beauty', 'in', 'the', 'los', 'angeles', 'acting', 'community', ',', 'in', 'which', 'she', 'says', 'her', 'southern', 'u.s.', 'background', 'has', 'helped', 'to', 'distinguish', 'herself', 'from', 'other', 'blonde', 'actresses', '.'], ['on', 'the', 'next', 'play', ',', 'bollinger', 'was', 'hit', 'just', 'before', 'the', 'throw', 'by', 'adrian', 'awasom', 'and', 'fumbled', 'the', 'ball', ',', 'which', 'was', 'recovered', 'and', 'returned', 'by', 'locos', 'lineman', 'ross', 'kolodziej', '.'], ['while', 'living', 'in', 'd.c.', ',', 'marshall', 'r.', 'diggs', 'sr.', 'got', 'involved', 'in', 'local', 'extra-curricular', 'activities', '.'], ['they', 'found', 'a', 'cell', 'phone', 'at', 'eduardo', 'cunha', \"'s\", 'home', 'that', 'contained', ',', 'among', 'other', 'things', ',', 'messages', 'exchanged', 'between', 'the', 'former', 'deputy', 'and', 'geddel', 'vieira', 'lima', '.'], ['they', 'also', 'contribute', 'to', 'controlling', 'plant', 'fungal', 'diseases', 'through', 'their', 'active', 'consumption', 'of', 'mycelia', 'and', 'spores', 'of', 'damping-off', 'and', 'pathogenic', 'fungi', '.'], ['the', 'fifth', 'is', 'straight', 'and', 'interrupted', 'above', 'the', 'middle', '.'], ['acknowledging', 'the', 'opposing', 'view', 'supporting', 'citizenship', 'for', 'american-born', 'chinese', ',', 'he', 'said', 'that', '``', 'of', 'course', ',', 'the', 'argument', 'on', 'the', 'other', 'side', 'is', 'that', 'the', 'very', 'words', 'of', 'the', 'constitution', 'embrace', 'such', 'a', 'case', '.', \"''\"], ['he', 'completed', 'his', 'undergraduate', 'in', 'cotton', 'college', ',', 'guwahati', ',', 'assam', '.'], ['while', 'at', 'university', 'punt', 'began', 'writing', 'for', 'the', 'bbc', 'radio', '4', 'series', '``', 'week', 'ending', \"''\", '.'], ['while', 'four', 'of', 'the', 'ships', 'were', 'eventually', 'cancelled', 'and', 'scrapped', 'on', 'their', 'slipways', 'to', 'comply', 'with', 'the', 'terms', 'of', 'the', 'washington', 'naval', 'treaty', ',', 'and', ',', 'the', 'two', 'most', 'advanced', 'ships', ',', 'were', 'converted', 'into', 'the', 'united', 'states', \"'\", 'first', 'fleet', 'carriers', '.'], ['przybyłek', 'learned', 'painting', 'under', 'the', 'supervision', 'of', 'his', 'father', ',', 'a', 'painter', '.'], ['when', 'sheridan', 'discovered', 'the', 'confederates', 'were', 'pulling', 'back', ',', 'he', 'sent', 'custer', \"'s\", 'division', ',', 'mostly', 'dismounted', ',', 'in', 'pursuit', 'on', 'the', 'left', 'and', 'devin', \"'s\", 'mounted', 'division', 'in', 'pursuit', 'on', 'the', 'right', '.'], ['the', '3', '2', '-page', 'adventure', 'bears', 'the', 'code', '``', 's', '3', '``', '(', '``', 's', \"''\", 'for', '``', 'special', \"''\", ')', '.'], ['during', 'trials', 'the', 'ship', 'was', 'repeatedly', 'hit', 'by', 'tomahawk', 'missiles', '.'], ['jamaica', 'and', 'the', 'other', 'islands', 'of', 'the', 'antilles', 'evolved', 'from', 'an', 'arc', 'of', 'ancient', 'volcanoes', 'that', 'rose', 'from', 'the', 'sea', 'millions', 'of', 'years', 'ago', '.'], ['the', 'genus', 'name', 'is', 'a', 'contracted', 'form', 'of', '``', 'manucodiata', \"''\", 'that', 'had', 'been', 'used', 'in', '1', '7', '6', '0', 'by', 'the', 'french', 'zoologist', 'mathurin', 'jacques', 'brisson', 'for', 'a', 'group', 'of', 'birds-of-paradise', '.'], ['here', ',', 'the', 'idea', 'is', 'that', 'multiple', 'meanings', 'are', 'activated', 'at', 'the', 'moment', 'an', 'ambiguity', 'is', 'encountered', 'in', 'a', 'sentence', ',', 'which', 'primes', 'related', 'concepts', '.'], ['it', 'also', 'provides', 'a', 'framework', 'for', 'dealing', 'with', 'systemic', 'risk', ',', 'pension', 'risk', ',', 'concentration', 'risk', ',', 'strategic', 'risk', ',', 'reputational', 'risk', ',', 'liquidity', 'risk', 'and', 'legal', 'risk', ',', 'which', 'the', 'accord', 'combines', 'under', 'the', 'title', 'of', 'residual', 'risk', '.'], ['the', 'kanile', \"'\", 'a', 'collection', 'traveled', 'throughout', 'hawai', \"'\", 'i', 'and', 'japan', ',', 'playing', 'for', 'hula', 'hālau', '(', 'schools', ')', 'at', 'various', 'hula', 'competitions', 'including', 'the', 'merrie', 'monarch', 'hula', 'festival', ',', 'and', 'opening', 'concerts', 'for', 'robi', 'kahakalau', 'and', 'hapa', '.'], ['the', 'pentagon', \"'s\", 'represent', 'the', 'fifth', 'triad', 'which', 'is', 'three', 'note', 'chords', 'that', 'play', 'simultaneously', '.'], ['these', 'genes', 'include', 'mhc', 'class', 'i', 'and', 'class', 'ii', 'cell-surface', 'proteins', '.'], ['rae', \"'s\", 'work', 'is', 'held', 'by', 'institutions', 'including', 'the', 'university', 'of', 'edinburgh', ',', 'university', 'of', 'glasgow', ',', 'british', 'museum', ',', 'national', 'museum', 'of', 'women', 'in', 'the', 'arts', ',', 'and', 'whitworth', 'art', 'gallery', '.'], ['she', 'was', 'launched', 'at', 'john', 'crown', '&', 'amp', ';', 'sons', 'ltd', 'in', 'sunderland', 'on', '3', '0', 'october', '1', '9', '4', '4', '.'], ['that', 'day', ',', 'the', '6', 'th', 'infantry', ',', '2', 'nd', 'division', ',', 'began', 'relieving', 'the', 'other', 'two', 'battalions', 'of', 'the', '1', '2', 'th', 'ranger', 'group', 'in', 'đức', 'phổ', 'and', 'mộ', 'đức', 'districts', 'in', 'quảng', 'ngãi', 'province', ',', 'and', 'the', '1', '2', 'th', 'began', 'to', 'move', 'north', '.'], ['the', 'appeal', 'against', 'conviction', 'was', 'dismissed', ',', 'although', 'there', 'was', 'an', 'appeal', 'against', 'sentence', 'which', 'was', 'upheld', ':', 'the', 'sentence', 'of', 'life', 'imprisonment', 'was', 'set', 'aside', 'and', 'a', 'sentence', 'of', 'twenty', 'years', \"'\", 'imprisonment', 'imposed', 'instead', '.'], ['it', 'was', 'added', 'to', 'the', 'national', 'register', 'of', 'historic', 'places', 'on', 'september', '1', '2', ',', '1', '9', '8', '5', '.'], ['it', 'was', 'described', 'by', 'edward', 'meyrick', 'in', '1', '9', '2', '4', '.'], ['however', ',', 'gun', 'control', 'supporters', 'argue', 'that', 'an', 'armed', 'deputy', 'sheriff', 'arrived', 'just', 'five', 'minutes', 'after', 'the', 'columbine', 'shooting', 'began', 'and', 'was', 'still', 'unable', 'to', 'stop', 'subsequent', 'shootings', '.'], ['before', 'that', ',', 'from', '1', '9', '2', '5', 'to', '1', '9', '3', '3', ',', 'it', 'was', 'the', 'regional', 'subdivision', 'of', 'the', 'nazi', 'party', 'in', 'that', 'area', '.'], ['it', 'is', 'closely', 'related', 'to', '``', 'aloe', 'microstigma', \"''\", 'which', 'occurs', 'in', 'and', 'around', 'the', 'little', 'karoo', 'to', 'the', 'south', ',', 'and', 'to', '``', 'aloe', 'microstigma', \"''\", 'subsp', '.'], ['sanada', 'hit', 'a', 'bridging', 'tiger', 'suplex', 'to', 'steve', 'for', 'the', 'win', '.'], ['based', 'on', 'another', 'invention', 'by', 'jack', 'hawley', ',', 'proprietor', 'of', 'the', 'mouse', 'house', ',', 'honeywell', 'produced', 'another', 'type', 'of', 'mechanical', 'mouse', '.'], ['he', 'had', 'been', 'a', 'member', 'of', 'the', 'independent', 'order', 'of', 'foresters', ',', 'the', 'ymca', ',', 'the', 'edmonton', 'club', ',', 'and', 'the', 'masonic', 'order', '.'], ['duplessis', 'and', 'the', 'un', 'won', 'the', 'august', '1', '9', '3', '6', 'election', 'in', 'a', 'landslide', ',', 'putting', 'an', 'end', 'to', 'thirty-nine', 'consecutive', 'years', 'of', 'liberal', 'rule', '.'], ['he', 'is', 'a', 'recurring', 'character', 'in', 'the', 'poldark', 'novels', 'by', 'winston', 'graham', ',', 'where', 'he', 'is', 'depicted', 'as', 'a', 'corrupt', 'and', 'cynical', 'boroughmonger', ',', 'but', 'generous', 'to', 'his', 'friends', '.'], ['in', 'the', 'face', 'of', 'his', 'daughter', \"'s\", 'arrest', 'and', 'the', 'ensuing', 'scandal', ',', 'hulme', 'requested', 'and', 'was', 'granted', 'an', 'early', 'leave', 'from', 'the', 'college', ',', 'after', 'which', 'he', 'returned', 'to', 'england', '.'], ['so', 'jaipal', 'reddy', 'known', 'for', 'his', 'honesty', 'was', 'shifted', 'from', 'oil', 'ministry', 'to', 'the', 'science', 'and', 'technology', 'ministry', 'owing', 'to', 'pressure', 'from', 'reliance', 'group', 'of', 'industries', '.'], ['lecomte', 'typically', 'spent', 'eight', 'hours', 'swimming', 'each', 'day', 'in', 'sessions', 'of', 'two', 'to', 'four', 'hours', '.'], ['a', 'staunch', 'gandhian', ',', 'satyagrahi', 'and', 'freedom', 'fighter', 'he', 'courted', 'arrest', 'during', 'the', 'freedom', 'struggle', '.'], ['``', 'abdül', 'hamid', \"''\", 'was', 'powered', 'by', 'a', 'coal-fired', '2', '5', '0', 'hp', 'lamm', 'steam', 'engine', 'turning', 'a', 'single', 'screw', '.'], ['the', 'variations', 'of', 'cliff', 'erosions', 'on', 'dongyin', 'range', 'from', 'natural', 'arches', ',', 'sea', 'gulfs', ',', 'sea', 'caves', ',', 'sea', 'stacks', '.'], ['these', 'terms', 'also', 'have', 'different', 'shades', 'of', 'meaning', 'depending', 'upon', 'the', 'meeting', \"'s\", 'background', '.'], ['there', 'are', 'only', 'two', 'main', 'thoroughfares', 'crossing', 'the', 'mersey', 'in', 'warrington', ':', 'at', 'warrington', 'bridge', 'at', 'bridge', 'foot', 'and', 'at', 'the', 'kingsway', 'bridge', '.'], ['it', 'took', 'place', 'on', 'july', '9', ',', '2', '0', '1', '7', 'at', 'the', 'american', 'airlines', 'center', 'in', 'dallas', ',', 'texas', '.'], ['il-', '1', '3', 'specifically', 'induces', 'physiological', 'changes', 'in', 'parasitized', 'organs', 'that', 'are', 'required', 'to', 'expel', 'the', 'offending', 'organisms', 'or', 'their', 'products', '.'], ['there', 'were', '1', '6', '3', 'housing', 'units', 'at', 'an', 'average', 'density', 'of', '.'], ['gustin', ',', 'patton', ',', 'panabaker', ',', 'valdes', 'and', 'martin', 'also', 'portray', 'the', 'earth-', '2', 'versions', 'of', 'their', 'characters', '.'], ['in', '1', '9', '3', '8', ',', 'he', 'tied', 'for', '8', '-', '9', 'th', 'in', 'łódź', 'where', 'pirc', 'won', '.'], ['his', 'teammate', 'mark', 'martin', 'finished', 'second', 'and', 'matt', 'kenseth', 'came', 'in', 'third', '.'], ['the', 'first', 'storyline', '``', 'new', 'beginnings', \"''\", 'deals', 'with', 'captain', 'mercer', 'and', 'lieutenant', 'gordon', 'responding', 'to', 'a', 'distress', 'call', 'from', 'a', 'lost', 'union', 'ship', 'while', 'commander', 'grayson', 'has', 'to', 'contend', 'with', 'a', 'domestic', 'dispute', 'between', 'bortus', 'and', 'his', 'spouse', 'over', 'their', 'son', \"'s\", 'education', '.'], ['following', 'the', 'formation', 'in', '1', '9', '7', '7', 'of', 'the', 'uniting', 'church', 'in', 'australia', ',', 'from', 'the', 'presbyterian', ',', 'methodist', 'and', 'congregational', 'religions', ',', 'st', 'andrew', \"'s\", 'church', 'is', 'now', 'a', 'uniting', 'church', '.'], ['it', 'often', 'involved', 'playing', 'with', 'language', ',', 'including', 'humour', 'involving', 'such', 'linguistic', 'items', 'as', 'spoonerisms', 'and', 'double', 'entendres', '.'], ['the', 'gunstock', 'river', 'is', 'a', 'river', 'in', 'the', 'lakes', 'region', 'of', 'central', 'new', 'hampshire', 'in', 'the', 'united', 'states', '.'], ['in', '2', '0', '0', '9', 'singh', 'suffered', 'a', 'major', 'knee', 'injury', 'and', 'had', 'to', 'undergo', 'a', 'surgery', '.'], ['their', 'relationship', ',', 'however', ',', 'is', 'based', 'in', 'several', 'deceptions', '.'], ['the', 'south', 'australian', 'amateur', 'football', 'league', '(', 'saafl', ')', 'also', 'regularly', 'used', 'thebarton', 'oval', '.'], ['subsequently', ',', '``', 'hurts', '2', 'b', 'human', \"''\", 'spent', 'a', 'total', 'of', 'three', 'weeks', 'at', 'number', 'one', 'on', 'the', 'chart', ',', 'and', 'was', 'certified', 'platinum', 'by', 'the', 'australian', 'recording', 'industry', 'association', '(', 'aria', ')', 'for', 'shipments', 'of', '7', '0', ',', '0', '0', '0', 'copies', '.'], ['in', 'addition', ',', 'veronica', 'attends', 'a', 'birthday', 'party', 'run', 'by', 'logan', '(', 'jason', 'dohring', ')', 'for', 'his', 'new', 'girlfriend', 'parker', '(', 'julie', 'gonzalo', ')', '.'], ['the', 'bacon', 'county', 'courthouse', 'is', 'a', 'historic', 'county', 'courthouse', 'on', 'main', 'street', 'in', 'alma', ',', 'bacon', 'county', ',', 'georgia', '.'], ['they', 'are', 'described', 'as', 'athletic', 'and', '``', 'hard', 'bodied', \"''\", 'with', 'a', '``', 'tireless', 'gait', \"''\", '.'], ['there', 'are', 'numerous', 'classrooms', ',', 'a', 'health', 'and', 'fitness', 'center', ',', 'student', 'lounge', ',', 'and', 'a', 'computer', 'lab', ',', 'as', 'well', 'as', 'the', 'maxine', 'and', 'jesse', 'whitney', 'museum', ',', 'a', 'collection', 'of', 'native', 'alaskan', 'artifacts', '.'], ['in', '2', '0', '0', '1', ',', 'they', 'entered', 'into', 'indefinite', 'hiatus', 'without', 'no', 'announcement', '.'], ['this', 'included', 'a', 'bug', 'which', 'prevented', '2', 'of', 'the', 'game', \"'s\", '1', '2', 'achievements', 'from', 'being', 'successfully', 'completed', ',', 'the', 'gold', 'medals', 'in', 'the', 'later', 'half', 'of', 'the', 'adventure', 'story', ',', 'and', 'the', '8', '-port', 'master', 'achievement', '.'], ['the', 'need', 'for', 'transformation', 'produced', 'radio', 'lagos', '1', '0', '7', '.', '5', 'fm', '(', 'tiwa', \"n'tiwa\", ')', 'under', 'the', 'control', 'of', 'the', 'lagos', 'state', 'radio', 'service', 'in', '2', '0', '0', '1', '.'], ['to', 'prevent', 'the', 'extinction', 'of', 'the', 'illidge', \"'s\", 'ant-blue', 'butterfly', 'the', 'state', 'government', 'of', 'queensland', 'granted', 'the', 'species', 'permanently', 'protected', 'status', 'in', '1', '9', '9', '0', '.'], ['many', 'thompson', 'island', 'graduates', 'went', 'on', 'to', 'study', 'at', 'prestigious', 'colleges', 'and', 'universities', 'in', 'the', 'usa', 'and', 'elsewhere', '.'], ['under', 'his', 'chairmanship', 'the', 'club', 'enjoyed', 'a', 'resurgence', 'that', 'saw', 'them', 'return', 'to', 'the', 'premiership', 'after', 'an', 'absence', 'of', '1', '2', 'years', '.'], ['huerta', 'had', 'overthrown', 'president', 'francisco', 'madero', 'and', 'taken', 'over', 'the', 'government', 'in', '1', '9', '1', '3', '.'], ['it', 'sold', 'over', 'one', 'million', 'copies', ',', 'and', 'was', 'awarded', 'a', 'gold', 'disc', 'by', 'the', 'riaa', '.'], ['he', 'was', 'the', 'eldest', 'son', 'of', 'frederick', 'trench', 'and', 'his', 'wife', 'elizabeth', 'warburton', ',', 'daughter', 'of', 'richard', 'warburton', ',', 'a', 'member', 'of', 'parliament', 'for', 'ballyshannon', '.'], ['in', '2', '0', '0', '7', 'the', 'transmission', 'system', 'operator', 'division', '(', 'pse-operator', ')', 'was', 'separated', 'from', 'the', 'pse', 's.a.', 'group', '.'], ['the', 'federal', 'government', 'controls', 'programs', 'it', 'funds', 'like', 'title', 'i', 'funding', 'for', 'low-income', 'children', 'in', 'the', 'elementary', 'and', 'secondary', 'education', 'act', 'and', 'the', 'no', 'child', 'left', 'behind', 'act', ',', 'which', 'mandates', 'the', 'district', 'focus', 'resources', 'on', 'student', 'success', 'in', 'acquiring', 'reading', 'and', 'math', 'skills', '.'], ['wyłudy', 'is', 'a', 'village', 'in', 'the', 'administrative', 'district', 'of', 'gmina', 'korycin', ',', 'within', 'sokółka', 'county', ',', 'podlaskie', 'voivodeship', ',', 'in', 'north-eastern', 'poland', '.'], ['the', 'municipality', 'of', 'aguilar', 'had', 'its', 'early', 'beginnings', 'as', 'cattle', 'ranch', 'founded', 'by', 'the', 'spaniards', '.'], ['sana', 'said', '5', '1', 'soldiers', 'were', 'killed', 'in', 'recent', 'days', 'of', 'fighting', '.'], ['beginning', 'in', '1', '9', '8', '5', ',', 'the', 'local', 'government', 'began', 'working', 'to', 'stimulate', 'the', 'economy', '.'], ['the', 'rebuilt', 'units', 'kept', 'their', 'rolling', 'stock', 'number', '(', 'e.g', '.'], ['the', 'site', 'has', 'an', 'area', 'of', 'about', ',', 'on', 'which', 'there', 'are', 'approximately', '6', '0', ',', '0', '0', '0', 'burial', 'and', 'urn', 'sites', '.'], ['marantz', 'was', 'an', 'undergraduate', 'at', 'brown', 'university', 'from', '2', '0', '0', '2', 'to', '2', '0', '0', '6', 'with', 'a', 'bachelor', \"'s\", 'degree', 'in', 'religion', 'and', 'religious', 'studies', '.'], ['it', 'was', 'released', 'on', 'february', '2', '3', ',', '2', '0', '1', '0', 'by', 'suicide', 'squeeze', '.'], ['cnn/sports', 'illustrated', '(', 'cnn/si', ')', 'was', 'a', '2', '4', '-hour', 'sports', 'news', 'network', '.'], ['``', '&', 'lt', ';', 'br', '&', 'gt', ';', '&', 'lt', ';', 'br', '&', 'gt', ';'], ['triarius', 'trivittatus', 'is', 'a', 'species', 'of', 'skeletonizing', 'leaf', 'beetle', 'in', 'the', 'family', 'chrysomelidae', '.'], ['in', '2', '0', '0', '8', ',', 'a', '2', '1', '-year-old', 'drunk', 'man', 'was', 'found', 'crawling', 'around', 'on', 'the', 'tracks', 'between', 'the', 'platforms', '.'], ['like', 'other', 'members', 'of', 'the', 'genus', ',', 'the', 'prostomium', 'bears', 'two', 'pairs', 'of', 'antennae', ',', 'a', 'pair', 'of', 'eyes', 'and', 'a', 'pair', 'of', 'large', ',', 'retractile', ',', 'nuchal', 'organs', '.'], ['laredo', 'asked', 'that', 'the', 'governor', 'appoint', 'an', 'honest', 'district', 'attorney', 'who', 'would', 'crack', 'down', 'on', 'prostitution', '.'], ['the', 'islamic', 'historian', 'al-nuwayri', 'records', 'that', 'al-adil', 'kitbugha', 'built', 'the', 'mausoleum', 'along', 'with', 'the', 'prayer', 'iwan', ',', 'and', 'al-nasir', 'muhammad', 'completed', 'the', 'construction', 'of', 'the', 'building', 'and', 'added', 'the', 'minaret', '.'], ['the', 'dvd', 'included', 'pre-wrestlemania', 'interviews', 'and', 'matches', ',', 'including', 'the', 'battle', 'royal', 'from', '``', 'saturday', 'night', \"'s\", 'main', 'event', 'x', \"''\", 'that', 'hercules', 'won', ',', 'and', 'optional', 'pop-up', 'trivia', 'facts', 'about', 'the', 'event', '.'], ['in', 'the', 'same', 'year', ',', 'former', 'president', 'of', 'germany', ',', 'horst', 'köhler', 'led', 'a', 'trade', 'delegation', 'to', 'nairobi', '.'], ['juraj', 'štefanka', '(', 'born', '2', '8', 'january', '1', '9', '7', '6', 'in', 'nitra', ')', 'is', 'a', 'slovak', 'professional', 'ice', 'hockey', 'forward', 'who', 'currently', 'plays', 'in', 'the', 'czech', 'extraliga', '.'], ['on', 'july', '1', '4', ',', '2', '0', '2', '0', ',', 'flynn', 'elected', 'free', 'agency', 'after', 'difficulties', 'finding', 'a', 'sponsoring', 'team', '..'], ['there', 'are', 'over', 'forty', 'organizations', 'on', 'campus', ',', 'and', 'more', 'than', 'eighteen', 'different', 'sports', 'are', 'offered', '.'], ['this', 'theory-only', 'approach', 'is', 'widely', 'unpopular', 'among', 'the', 'students', ',', 'especially', 'those', 'characters', 'like', 'harry', ',', 'who', 'are', 'in', 'their', 'fifth', 'year', 'and', 'have', 'to', 'take', 'their', 'o.w.l', '.'], ['the', 'work', 'of', '``', 'the', 'essence', \"''\", 'is', 'manifested', 'through', 'travels', ',', 'exhibitions', 'and', 'selected', 'offered', 'items', 'in', 'a', 'context', 'between', 'art', 'and', 'fashion', '.'], ['professor', 'damodaran', 'm', 'vasudevan', 'was', 'the', 'dean', 'of', 'the', 'college', 'of', 'medicine', 'at', 'amrita', 'vishwa', 'vidyapeetham', 'and', 'the', 'principal', 'of', 'the', 'amrita', 'institute', 'of', 'medical', 'sciences', 'and', 'research', ',', 'kochi', ',', 'india', '.'], ['owaisi', 'dismisses', 'the', 'comparison', 'with', 'jinnah', 'citing', 'the', 'fact', 'that', 'his', 'fight', 'is', 'within', 'the', 'framework', 'of', 'the', 'indian', 'constitution', '.'], ['it', 'was', 'entered', 'into', 'the', '4', '8', 'th', 'berlin', 'international', 'film', 'festival', '.'], ['vatica', 'latiffii', 'is', 'a', 'species', 'of', 'tree', 'in', 'the', 'family', 'dipterocarpaceae', '.'], ['``', 'billboard', \"''\", 'said', 'it', '``', 'features', 'powerful', 'beat', 'with', 'mann', \"'s\", 'solo', 'echoed', 'by', 'male', 'chorus', '.', \"''\"], ['more', 'common', 'terms', 'today', 'include', 'interdictor', 'and', 'strike', 'fighter', ',', 'and', 'such', 'aircraft', 'tend', 'to', 'have', 'all-weather', ',', 'day-or-night', 'capabilities', '.'], ['members', 'of', 'the', 'commune', 'live', 'in', 'eleven', 'living', 'groups', 'of', 'between', 'four', 'and', 'ten', 'people', '.'], ['in', 'one', 'study', ',', 'a', 'short', 'amphipathic', 'peptide', 'carrier', ',', 'pep-', '1', ',', 'and', 'protein', 'complexes', 'have', 'proven', 'effective', 'for', 'delivery', '.'], ['young', 'elizabeth', 'blair', '(', 'shirley', 'temple', ')', 'lives', 'at', 'the', 'lakeside', 'orphanage', ',', 'a', 'dreary', ',', 'regimented', 'place', 'supervised', 'by', 'two', 'decent', 'but', 'dour', 'women', '.'], ['sometimes', 'it', 'used', 'to', 'refer', 'to', 'the', 'belief', 'that', 'women', 'marry', 'beta', 'males', 'to', 'exploit', 'them', 'financially', ',', 'while', 'continuing', 'to', 'have', 'sex', 'with', 'alpha', 'men', '.'], ['it', 'was', 'founded', 'in', '1', '9', '9', '0', 'by', 'charles', 'newman', 'and', 'paul', 'casanova', 'as', 'a', 'vehicle', 'to', 'release', 'the', 'first', 'record', ',', '``', 'noreally', 'thanks', \"''\", ',', 'for', 'their', 'band', 'please', '.'], ['but', 'when', 'he', 'meets', 'again', 'with', 'his', 'former', 'lover', ',', 'he', 'triggers', 'a', 'disaster', 'the', 'colombani', 'and', 'eventually', 'fall', 'victim', 'to', 'hanna', '.'], ['yahya', 'a.', 'muhaimin', 'or', 'jahja', 'muhaimin', '(', 'born', '1', '7', 'may', '1', '9', '4', '3', ')', 'is', 'a', 'former', 'education', 'minister', 'of', 'indonesia', 'in', 'the', 'gotong', 'royong', 'cabinet', ',', 'established', 'during', 'megawati', 'soekarnoputri', \"'s\", 'presidency', '.'], ['the', 'plan', 'was', 'to', 'open', 'the', 'first', 'restaurant', 'of', 'the', 'concept', 'in', 'the', 'nordic', 'countries', 'in', '2', '0', '1', '8', '.'], ['connolly', 'climbs', 'to', 'the', 'top', 'of', 'the', 'big', 'ben', 'clock', 'tower', ',', 'rides', 'down', 'the', 'river', 'thames', ',', 'and', 'performs', 'at', 'shakespeare', \"'s\", 'globe', '.'], ['dean', 'pritchard', ',', 'better', 'known', 'by', 'his', 'stage', 'name', 'dean', 'ray', ',', 'is', 'an', 'australian', 'singer', 'and', 'songwriter', '.'], ['afterwards', ',', 'he', 'walked', 'back', 'to', 'the', 'party', 'as', 'though', 'nothing', 'had', 'happened', '.'], ['logic', 'analyzers', 'and', 'bus', 'analyzers', 'are', 'tools', 'which', 'collect', ',', 'analyze', ',', 'and', 'decode', 'signals', 'for', 'users', 'to', 'view', 'in', 'useful', 'ways', '.'], ['us', '$', '4', 'million', 'in', '2', '0', '0', '7', 'money', ')', '.'], ['the', 'union', 'of', 'the', 'two', 'schools', 'was', 'one', 'of', 'convenience', 'and', 'legality', '.'], ['the', 'couple', 'had', 'several', 'children', ',', 'three', 'of', 'whom', 'were', 'biological', ',', 'while', 'the', 'others', 'were', 'adopted', '.'], ['on', '3', '0', 'april', '1', '6', '0', '1', 'he', 'was', 'also', 'appointed', 'archbishop', 'of', 'seville', '.'], ['given', 'the', 'dramatic', 'take-up', 'in', 'the', 'caia', 'tool', 'in', '2', '0', '1', '5', ',', 'when', 'the', 'cap', 'lifted', '(', 'e.g', '.'], ['in', 'response', ',', 'historians', 'published', 'in', 'the', '``', 'journal', 'of', 'negro', 'history', \"''\", 'stressed', 'the', 'cross-fertilization', 'of', 'cultures', 'between', 'africa', 'and', 'europe', ':', 'for', 'instance', ',', 'george', 'wells', 'parker', 'adopted', 'sergi', \"'s\", 'view', 'that', 'the', '``', 'civilizing', \"''\", 'race', 'had', 'originated', 'in', 'africa', 'itself', '.'], ['italian', 'nationalism', 'exploded', 'in', 'the', 'post-napoleonic', 'years', ',', 'leading', 'to', 'the', 'establishment', 'of', 'secret', 'societies', 'bent', 'on', 'a', 'unified', 'italy', '.'], ['painting', 'allows', 'him', 'to', 'do', 'so', ':', 'creating', 'a', 'free', 'composition', 'of', 'a', 'picture', '.'], ['in', 'the', '2', '0', 'years', 'that', 'follow', ',', 'joel', 'did', 'whatever', 'he', 'had', 'to', 'do', 'to', 'survive', '.'], ['he', 'has', 'stated', 'on', 'numerous', 'occasions', 'that', 'the', 'greatest', 'film', 'of', 'all', 'time', ',', 'as', 'well', 'as', 'his', 'favorite', ',', 'is', 'the', 'godfather', 'part', 'ii', '.'], ['during', 'an', 'interview', 'with', '``', 'playboy', \"''\", 'in', '1', '9', '7', '1', ',', 'and', 'again', 'during', 'an', 'interview', 'with', 'clyde', 'packer', 'in', 'the', '1', '9', '8', '0', 's', ',', 'greer', 'discussed', 'how', 'she', 'had', 'been', 'raped', 'as', 'an', 'undergraduate', 'at', 'the', 'university', 'of', 'melbourne', '.'], ['during', 'the', 'cover', \"'s\", 'designing', 'stage', ',', 'rihanna', 'met', 'with', 'mitchell', ',', 'in', 'which', 'they', '``', 'drank', \"''\", 'and', 'came', 'up', 'with', 'a', 'poem', 'that', 'would', 'be', 'used', 'for', 'the', 'artwork', 'and', 'liner', 'notes', 'entitled', '``', 'if', 'they', 'let', 'us', \"''\", '.'], ['adedoyin', 'grew', 'up', 'with', 'his', 'mother', 'in', 'a', 'village', 'south', 'of', 'sagamu', 'helping', 'her', 'with', 'her', 'trade', ',', 'selling', 'foodstuff', 'in', 'lagos', '.'], ['he', 'went', 'on', 'to', 'win', 'another', 'term', 'in', '1', '9', '8', '6', '.'], ['they', 'worked', 'along', 'with', 'professional', 'actors', 'to', 'form', 'fidalgo', \"'s\", 'company', '.'], ['in', 'most', 'of', 'west', 'virginia', 'however', 'pierpont', \"'s\", 'government', 'was', 'weak', '.'], ['the', 'economic', 'policies', 'of', \"ne'eman\", 'hurt', 'likud', \"'s\", 'image', 'with', 'the', 'working', 'class', ',', 'because', 'unemployment', 'increased', 'while', 'economic', 'growth', 'shrank', ',', 'despite', 'a', 'fall', 'in', 'terror', 'attacks', 'and', 'the', 'adoption', 'of', 'a', 'deregulation', 'agenda', '.'], ['degree', 'from', 'duke', 'university', 'school', 'of', 'law', 'in', '1', '9', '6', '9', '.'], ['because', 'the', 'rio', 'grande', 'serves', 'as', 'an', 'international', 'boundary', ',', 'the', 'park', 'faces', 'unusual', 'constraints', 'while', 'administering', 'and', 'enforcing', 'park', 'rules', ',', 'regulations', ',', 'and', 'policies', '.'], ['commercially', ',', 'malasaña', 'has', 'many', 'fashion', 'boutiques', 'as', 'well', 'as', 'shops', 'for', 'design', 'and', 'niche', 'market', 'products', '.'], ['louis', 'moréri', 'studied', 'humanities', 'in', 'draguignan', 'and', 'later', 'rhetoric', 'and', 'philosophy', 'at', 'the', 'jesuit', 'college', 'of', 'aix-en-provence', '.'], ['marcos', 'gullón', 'ferrera', '(', 'born', '2', '0', 'february', '1', '9', '8', '9', ')', 'is', 'a', 'spanish', 'professional', 'footballer', 'who', 'plays', 'as', 'a', 'midfielder', 'for', 'las', 'rozas', 'cf', '.'], ['it', 'is', 'meant', 'to', 'be', 'controlled', 'by', 'the', 'zone', 'controller', 'and', 'to', 'be', 'commanded', 'as', 'to', 'who', 'has', 'permission', 'and', 'who', 'does', 'not', '.'], ['though', 'now', 'the', 'town', 'is', 'overshadowed', 'by', 'the', 'larger', 'nearby', 'town', 'of', 'falmouth', ',', 'penryn', 'was', 'once', 'an', 'important', 'harbour', 'in', 'its', 'own', 'right', ',', 'lading', 'granite', 'and', 'tin', 'to', 'be', 'shipped', 'to', 'other', 'parts', 'of', 'the', 'country', 'and', 'world', 'during', 'the', 'medieval', 'period', '.'], ['the', 'spawning', 'migration', 'starts', 'north', 'of', 'iceland', 'in', 'december', 'or', 'january', '.'], ['according', 'to', 'reporting', 'in', '``', 'helsingin', 'sanomat', \"''\", ',', 'since', 'the', '1', '9', '9', '0', 's', 'jyväskylä', 'has', 'served', 'as', 'a', 'signals', 'intelligence', 'collection', 'site', ',', 'primarily', 'targeting', 'military', 'maneuvers', 'around', 'st.', 'petersburg', '.'], ['frederick', 'selected', 'a', 'natural', 'prominence', 'at', 'an', 'important', 'intersection', 'of', 'roads', 'which', 'had', 'probably', 'been', 'called', '``', 'heimersberch', \"''\", 'or', 'hèvremont', ',', 'and', 'built', 'his', 'new', 'comital', '``', 'caput', \"''\", 'there', 'in', 'about', '1', '0', '3', '0', '.'], ['there', 'he', 'met', 'henrietta', 'moraes', ',', 'who', 'divorced', 'her', 'first', 'husband', ',', 'michael', 'law', ',', 'and', 'married', 'bowler', '.'], ['above', 'ground', 'shelters', 'are', 'used', 'in', 'many', 'areas', 'of', 'the', 'country', 'and', 'by', 'a', 'wide', 'variety', 'of', 'homeowners', 'and', 'businesses', '.'], ['pelicula', 'was', 'founded', 'in', '2', '0', '1', '0', 'by', 'oz', 'yilmaz', '(', 'filmmaker', ')', 'and', 'is', 'known', 'for', 'its', 'documentaries', 'focusing', 'on', 'local', 'artists', 'and', 'cultural', 'events'], ['steel-cased', 'ammunition', 'had', 'a', 'combined', 'code', 'at', 'the', '3', \"o'clock\", 'position', 'that', 'was', 'composed', 'of', 'the', 'roman', 'numeral', 'code', 'for', 'the', 'steel', 'mill', '(', 'i', 'through', 'xxiii', ')', ',', 'the', 'lower-case', 'letter', 'code', 'for', 'the', 'firm', 'that', 'plated', 'the', 'cases', '(', 'a', 'through', 'z', '?'], ['he', 'is', 'also', 'research', 'professor', 'at', 'the', 'university', 'of', 'california', ',', 'san', 'diego', '.'], ['the', 'tupolev', 'eventually', 'took', 'off', 'at', '1', '9', ':', '3', '2', 'local', 'time', '.'], ['the', 'school', 'for', 'children', 'with', 'learning', 'difficulties', 'that', 'was', 'attached', 'to', 'the', 'home', 'remained', 'until', '2', '0', '0', '1', ',', 'when', 'it', 'was', 'moved', 'to', 'frankfurt-höchst', '.'], ['kanu', 'malla', 'defeated', 'the', 'kakatiya', 'king', 'of', 'the', 'kakatiya', 'state', '(', 'presently', 'patrasayar', ')', 'and', 'extended', 'the', 'boundary', 'of', 'mallabhum', '.'], ['the', 'singer-songwriter', 'duo', 'also', 'play', 'acoustic', 'guitar', ',', 'percussion', ',', 'piano/keys/midi', ',', 'trumpet', ',', 'and', 'ukulele', 'in', 'their', 'songs', '.'], ['at', 'the', 'hospital', ',', 'val', 'and', 'bles', 'apologize', 'to', 'a', 'confined', 'seth', '.'], ['asota', 'carsina', 'is', 'a', 'moth', 'of', 'the', 'family', 'erebidae', 'first', 'described', 'by', 'swinhoe', 'in', '1', '9', '0', '6', '.'], ['the', 'formal', 'rules', 'as', 'taught', 'by', 'brener', 'were', 'a', 'kind', 'of', 'nourishment', 'for', 'me', '.'], ['captain', 'webel', 'protested', 'to', 'general', 'gay', 'that', 'the', 'pva', 'position', 'was', 'all', 'but', 'taken', 'and', 'that', 'commitment', 'of', 'the', 'other', 'two', 'battalions', 'was', 'unnecessary', '.'], ['at', 'the', 'same', 'time', 'she', 'obtained', 'a', 'diploma', 'in', 'architecture', 'from', 'the', 'accademia', 'di', 'belle', 'arti', 'di', 'bari', '.'], ['energy', '4', 'me', 'conducts', 'workshops', 'for', 'both', 'teachers', 'and', 'students', 'at', 'many', 'spe', 'conferences', 'around', 'the', 'globe', ',', 'and', 'spe', 'members', 'are', 'encouraged', 'to', 'visit', 'science', 'classrooms', 'at', 'their', 'local', 'schools', 'to', 'conduct', 'brief', 'presentations', '.'], ['a', 'methodical', 'summary', \"''\", ',', 'sir', 'matthew', 'hale', 'classifies', '``', 'burglary', \"''\", 'and', 'arson', 'as', 'offences', '``', 'against', 'the', 'dwelling', 'or', 'habitation', \"''\", '.'], ['her', 'father', 'later', 'complained', 'to', 'the', 'families', 'of', 'the', 'three', 'men', '.'], ['he', 'was', 'the', 'last', 'owner', 'of', 'the', 'two', 'horses', '.'], ['their', 'annual', 'fundraiser', 'is', 'called', 'the', 'free', 'speech', 'defender', 'awards', '.'], ['he', 'published', 'graphics', 'in', 'the', 'quarterly', 'magazine', '``', 'albo', '-', 'albo', '.'], ['denailing', 'was', 'generally', 'considered', 'to', 'fall', 'under', 'the', 'first', 'two', 'categories', ',', 'as', 'for', 'a', 'brutality', 'to', 'be', 'considered', '``', 'particularly', 'cruel', \"''\", ',', 'it', 'had', 'to', '``', 'horrify', 'even', 'those', 'who', 'are', 'familiar', 'with', 'torture', '.', \"''\"], ['they', 'counted', '1', '9', '5', 'men', 'with', 'light', 'armored', 'vehicles', 'amm', '8', 'types', ',', '4', 'x', '4', 'types', 'and', '6', 'x', '6', 'type', 'wheels', 'amongst', 'other', 'means', 'of', 'displacements', '.'], ['the', 'commercial', 'played', 'mostly', 'in', 'europe', 'and', 'medley', 'became', 'a', 'sag', 'actress', 'as', 'a', 'result', '.'], ['a', 'third', 'series', 'was', 'commissioned', 'in', 'october', '2', '0', '1', '7', ',', 'with', 'the', 'first', 'episode', 'due', 'to', 'be', 'broadcast', 'in', 'autumn', '2', '0', '1', '8', ',', 'but', 'was', 'pushed', 'back', 'to', '4', 'march', '2', '0', '1', '9', '.'], ['it', 'promotes', '``', 'the', 'study', 'and', 'documentation', 'of', 'christian', 'history', ',', 'thought', 'and', 'life', 'in', 'ghana', 'and', 'in', 'africa', 'as', 'a', 'whole', ',', 'in', 'relation', 'to', 'their', 'african', 'setting', 'and', 'to', 'world', 'christianity', \"''\", '.'], ['judge', 'rosales', 'would', 'later', 'convict', 'a', 'vindictive', 'drug', 'addict', 'and', 'criminal', 'named', 'german', 'agojo', '.'], ['that', 'the', 'player', 'can', 'pick', 'up', 'simply', 'by', 'walking', 'over', 'the', 'object', '.'], ['an', 'illegal', 'clue', '(', 'saying', 'the', 'name', 'or', 'part', 'of', 'the', 'name', ',', 'spelling', 'the', 'name', ',', 'or', 'rhyming', 'the', 'name', ')', 'voids', 'that', 'name', '.'], ['he', 'is', 'a', 'baptist', 'and', 'a', 'member', 'of', 'ducks', 'unlimited', ',', 'the', 'chamber', 'of', 'commerce', ',', 'and', 'rotary', 'international', '.'], ['he', 'was', 'the', 'chief', 'advisor', 'to', 'the', 'royal', 'new', 'zealand', 'society', 'for', 'the', 'health', 'of', 'women', 'and', 'children', '.'], ['when', 'holland', 'became', 'ill', ',', 'marshall', 'was', 'part', 'of', 'the', 'group', 'that', 'persuaded', 'him', 'to', 'step', 'down', '.'], ['antónio', 'fernando', 'barbosa', 'da', 'silva', '(', 'born', '3', 'november', '1', '9', '3', '1', ')', ',', 'known', 'simply', 'as', 'barbosa', ',', 'is', 'a', 'portuguese', 'former', 'footballer', 'who', 'played', 'as', 'a', 'defender', 'and', 'made', 'two', 'appearances', 'for', 'the', 'portugal', 'national', 'team', '.'], ['caterpillars', 'are', 'green', ',', 'with', 'yellowish', 'incisions', 'between', 'their', 'rings', ';', 'each', 'with', 'a', 'dorsal', ',', 'darker', 'green', 'stripe', 'and', 'yellow', 'lateral', 'lines', '.'], ['clarke', 'represented', 'jamaica', 'at', 'the', '2', '0', '1', '4', 'concacaf', 'girls', \"'\", 'u-', '1', '5', 'championship', ',', 'the', '2', '0', '1', '6', 'concacaf', 'women', \"'s\", 'u-', '1', '7', 'championship', 'qualification', 'and', 'the', '2', '0', '1', '6', 'concacaf', 'women', \"'s\", 'u-', '1', '7', 'championship', '.'], ['the', 'group', 'became', 'known', 'as', 'the', '``', '1', '1', '6', 'th', 'street', 'mob', \"''\", '(', 'or', '``', 'morello', 'gang', \"''\", ')', '.'], ['since', 'the', 'late', '2', '0', 'th', 'century', ',', 'the', 'town', 'has', 'often', 'approved', 'progressive', 'social', 'initiatives', ',', 'including', 'domestic', 'partnership', 'registration', '.'], ['despite', 'its', 'name', 'it', 'is', 'not', 'located', 'in', 'sukhumi', 'in', 'the', 'republic', 'of', 'abkhazia', '.'], ['she', 'has', 'also', 'worked', 'closely', 'with', 'rainn', 'after', 'participating', 'in', 'a', 'storyline', 'in', 'which', 'her', '``', 'private', 'practice', \"''\", 'character', 'was', 'raped', '.'], ['a', 'high', 'soil', 'moisture', 'deficit', 'means', 'there', 'is', 'little', 'water', 'available', 'for', 'evaporation', 'or', 'plant', 'transpiration', '.'], ['its', 'third', 'season', ',', 'or', '``', 'book', '3', '``', ',', 'was', 'released', 'on', 'october', '1', '6', ',', '2', '0', '2', '0', '.'], ['after', 'some', 'detective', 'work', 'by', 'sharon', ',', 'adam', \"'s\", 'charges', 'were', 'dropped', ',', 'but', 'as', 'a', 'result', 'of', 'her', 'work', ',', 'she', 'was', 'now', 'accused', 'of', 'murder', '.'], ['``', 'starman', 'annual', \"''\", '#', '1', 'indicates', 'the', \"o'dare\", 'family', 'survives', 'into', 'the', 'far', 'future', 'as', 'the', '``', 'dares', \"''\", ';', 'noted', 'for', 'law', 'enforcement', 'on', 'a', 'far-off', 'planet', 'ruled', 'by', 'the', 'beloved', 'shade', '.'], ['according', 'to', 'the', '2', '0', '1', '1', 'census', ',', 'kadaiyanallur', 'municipality', 'had', 'a', 'population', 'of', '9', '0', ',', '3', '6', '4', 'with', 'a', 'sex-ratio', 'of', '9', '8', '8', 'females', 'for', 'every', '1', ',', '0', '0', '0', 'males', ',', 'much', 'above', 'the', 'national', 'average', 'of', '9', '2', '9', '.'], ['he', 'became', 'a', 'founding', 'member', 'of', 'the', 'democratic', 'alliance', 'for', 'the', 'betterment', 'of', 'hong', 'kong', '(', 'dab', ')', ',', 'a', 'flagship', 'pro-beijing', 'party', 'set', 'up', 'by', 'a', 'group', 'of', 'traditional', 'leftists', 'in', '1', '9', '9', '2', '.'], ['everybody', \"'s\", 'welcome', 'is', 'a', 'musical', 'comedy', 'with', 'a', 'book', 'by', 'lambert', 'carroll', ',', 'lyrics', 'by', 'irving', 'kahal', ',', 'and', 'music', 'by', 'sammy', 'fain', '.'], ['soley', 'also', 'accused', 'rebekah', 'wade', '(', 'now', 'brooks', ')', ',', 'then', 'the', 'newspaper', \"'s\", 'editor', ',', 'of', 'writing', 'a', 'threatening', 'letter', 'to', 'the', 'mp', 'in', 'order', 'to', 'discourage', 'him', 'from', 'researching', 'the', 'issue', '.'], ['the', 'company', 'now', 'works', 'with', 'artists', 'including', 'the', 'magnetic', 'fields', ',', 'flare', ',', 'am', ',', 'gospel', 'music', ',', 'kris', 'gruen', ',', 'the', 'davenports', ',', 'and', 'dylan', 'trees', '.'], ['the', 'major', 'problem', 'in', 'zoology', 'for', 'consistent', 'spellings', 'of', 'names', 'is', 'the', 'author', '.'], ['he', 'did', 'so', 'by', 'orchestrating', 'clinton', \"'s\", 'splashy', 'criticism', 'of', 'hip', 'hop', 'artist', 'sister', 'souljah', 'in', 'a', 'prepared', 'speech', 'clinton', 'delivered', 'at', 'the', 'rainbow', 'coalition', \"'s\", 'june', '1', '9', '9', '2', '``', 'rebuild', 'america', \"''\", 'conference', 'in', 'washington', ',', 'dc', '.'], ['through', 'minimalism', ',', 'changing', 'should', 'be', 'easier', 'to', 'access', 'and', 'also', 'enhance', 'individuality', '.'], ['according', 'to', 'this', 'historical', 'dictionary', 'of', 'chinese', 'characters', ',', 'the', 'first', 'occurrences', 'of', '``', 'zhen', \"''\", 'are', 'in', 'daoist', 'classics', '.'], ['william', 'fox', 'then', 'formed', 'the', 'second', 'fox', 'ministry', ',', 'which', 'was', 'in', 'place', 'from', '1', '2', 'july', '1', '8', '6', '1', 'to', '6', 'august', '1', '8', '6', '2', '.'], ['in', 'his', 'first', 'match', 'for', 'his', 'new', 'team', ',', 'he', 'scored', '3', '9', 'runs', 'off', '3', '2', 'balls', 'to', 'lead', 'his', 'team', 'to', 'victory', 'against', 'the', 'mumbai', 'indians', '.'], ['before', 'being', 'executed', 'for', 'murder', ',', 'serial', 'killer', 'carl', 'panzram', 'claimed', 'in', 'a', 'posthumous', 'autobiography', 'that', 'in', 'the', 'summer', 'of', '1', '9', '2', '0', 'that', 'he', 'raped', 'and', 'killed', 'a', 'total', 'of', 'ten', 'sailors', 'and', 'dumped', 'their', 'bodies', 'at', 'sea', 'near', 'execution', 'rocks', 'light', '.'], ['the', 'trailer', 'brake', 'consists', 'of', 'a', 'direct', 'two', 'line', 'system', ':', 'the', 'supply', 'line', '(', 'marked', 'red', ')', 'and', 'the', 'separate', 'control', 'or', 'service', 'line', '(', 'marked', 'blue', ')', '.'], ['the', 'second', 'group', 'of', 'inhabitants', 'to', 'malta', 'in', '3', ',', '8', '5', '0', '-', '2', ',', '3', '5', '0', 'bc', 'managed', 'their', 'resources', 'adequately', 'and', 'harnessed', 'soil', 'and', 'food', 'for', 'over', '1', ',', '5', '0', '0', 'years', '.'], ['``', 'we', 'wrote', 'to', 'the', 'senators', 'and', 'congressmen', 'representing', 'the', 'sections', 'of', 'the', 'country', 'we', 'came', 'from', '.'], ['during', '1', '9', '8', '7', ',', 'the', 'cheetah', 'd', 'was', 'declared', 'to', 'be', 'operational', 'with', 'the', 'saaf', '.'], ['all', 'the', 'designs', 'were', 'put', 'on', 'public', 'display', 'in', 'the', 'liberec', 'branch', 'of', 'československá', 'spořitelna', '.'], ['in', 'some', 'cases', ',', 'stance', 'is', 'only', 'implied', 'through', 'context', ',', 'and', 'may', 'not', 'even', 'require', 'multiple', 'words', '.'], ['some', 'of', 'the', 'children', 'and', 'their', 'backgrounds', 'are', 'presented', 'in-depth', 'and', 'a', 'bleak', 'picture', 'emerges', 'about', 'their', 'past', 'and', 'their', 'possible', 'future', 'lives', '.'], ['the', 'konstantin', 'e.', 'tsiolkovsky', 'state', 'museum', 'of', 'the', 'history', 'of', 'cosmonautics', '(', ')', 'is', 'the', 'first', 'museum', 'in', 'the', 'world', 'dedicated', 'to', 'the', 'history', 'of', 'space', 'exploration', '.'], ['combustion', 'chamber', 'design', 'was', 'most', 'important', 'in', 'these', 'new', 'heads', ':', 'la', 'engine', 'cylinder', 'heads', 'were', 'given', 'a', 'full-relief', 'open-chamber', 'design', ',', 'but', 'the', 'magnum', 'was', 'engineered', 'with', 'a', 'double-quench', 'closed-chamber', 'type', '.'], ['stuart', 'was', 'an', 'unsuccessful', 'liberal', 'candidate', 'for', 'the', 'cambridge', 'university', 'parliamentary', 'seat', 'in', 'an', '1', '8', '8', '2', 'by-election', ';', 'in', '1', '8', '8', '4', 'he', 'was', 'elected', 'for', 'hackney', '.'], ['the', 'most', 'thorough', 'renovation', 'was', 'started', 'in', '1', '9', '7', '6', '.'], ['he', 'received', 'his', 'medical', 'degree', 'in', '1', '8', '7', '7', '.'], ['the', 'episcopal', 'seat', 'is', 'now', 'located', 'in', 'cardiff', ',', 'at', 'st', 'david', \"'s\", 'cathedral', '.'], ['genetically', ',', 'europe', 'is', 'relatively', 'homogeneous', ',', 'but', 'distinct', 'sub-population', 'patterns', 'of', 'various', 'types', 'of', 'genetic', 'markers', 'have', 'been', 'found', ',', 'particularly', 'along', 'a', 'southeast-northwest', 'cline', '.'], ['among', 'his', 'works', 'the', 'following', 'may', 'be', 'mentioned', ':', '``', 'opera', 'di', 'tommaso', 'campanella', \"''\", ',', '2', 'vols', '.'], ['there', 'are', 'two', 'possible', 'landing', 'places', 'for', 'yachts', 'visiting', 'to', 'the', 'east', 'and', 'west', ',', 'although', 'this', 'may', 'be', 'hazardous', 'given', 'the', 'regular', 'heavy', 'swells', '.'], ['he', 'immigrated', 'to', 'the', 'united', 'states', 'in', '1', '9', '4', '9', '.'], ['navy', 'commander', 'buddy', 'harris', ',', 'who', 'was', 'a', 'friend', 'and', 'fellow', 'naval', 'aviator', 'of', 'speicher', \"'s\", ',', 'became', 'a', 'strong', 'advocate', 'for', 'searching', 'for', 'speicher', ',', 'often', 'meeting', 'with', 'u.s.', 'officials', '.'], ['twenty', 'three', 'tests', 'were', 'carried', 'out', 'on', 'homozygous', 'mutant', 'adult', 'mice', ',', 'however', 'no', 'significant', 'abnormalities', 'were', 'observed', '.'], ['he', 'also', 'wrote', 'the', 'children', \"'s\", 'comedy', '``', 'pers', 'fødselsdag', \"''\", 'from', '1', '9', '4', '6', '.'], ['however', ',', 'prior', 'ultimately', 'decided', 'to', 'accept', 'being', 'moved', 'to', 'the', 'northern', 'ireland', 'office', 'after', 'consulting', 'cabinet', 'colleagues', 'william', 'whitelaw', ',', 'then', 'deputy', 'leader', 'of', 'the', 'conservative', 'party', ',', 'and', 'francis', 'pym', '.'], ['while', 'hubei', 'was', 'geographically', 'removed', 'from', 'the', 'centers', 'of', 'the', 'ming', 'power', '.'], ['the', 'importance', 'of', 'free', 'passage', 'through', 'portages', 'found', 'them', 'included', 'in', 'laws', 'and', 'treaties', '.'], ['thachil', 'illam', 'was', 'one', 'of', 'the', 'famous', 'brahmin', 'tharavad', 'in', 'kerala', '.'], ['the', 'wartime', 'coalition', 'government', 'between', 'the', 'reform', 'party', 'and', 'liberal', 'party', 'sought', 'to', 'retain', 'the', 'seat', ',', 'though', 'were', 'anxious', 'of', 'their', 'chances', 'of', 'retaining', 'an', 'urban', 'electorate', 'following', 'their', 'narrow', 'win', 'in', 'the', 'wellington', 'north', 'by-election', 'several', 'months', 'earlier', '.'], ['this', 'was', 'john', 'belushi', \"'s\", 'second', 'film', 'after', 'having', 'been', 'a', '``', 'saturday', 'night', 'live', \"''\", 'cast', 'member', 'for', 'several', 'years', '.'], ['in', '5', '9', 'games', 'with', 'the', 'pawsox', 'that', 'year', ',', 'he', 'hit', '.', '2', '3', '2', 'with', '8', 'hr', 'and', '2', '6', 'rbi', '.'], ['screenshots', 'have', 'been', 'a', 'part', 'of', 'the', 'ng-gamer', 'database', 'ever', 'since', 'the', 'beginning', '.'], ['it', 'lies', 'on', 'the', 'a', '6', '1', 'road', ',', 'about', '4', 'miles', 'west', 'of', 'thirsk', 'on', 'the', 'east', 'bank', 'of', 'the', 'river', 'swale', '.'], ['he', 'aided', 'the', 'settlement', 'of', 'young', 'ministers', ',', 'as', 'the', 'ejected', 'died', 'out', '.'], ['mother', \"'s\", 'daughter', 'is', 'a', '1', '0', '0', '%', 'collaborative', 'project', 'by', 'jessie', 'standafer', '&', 'amp', ';', 'alexa', 'wilkinson', '.'], ['reviews', 'for', '``', 'low', \"''\", 'have', 'generally', 'been', 'mixed', '.'], ['it', 'took', 'place', 'in', 'february', '1', '9', '6', '3', 'on', 'the', 'liberec', 'stavoprojekt', 'premises', '.'], ['the', 'chateaugay', 'border', 'inspection', 'station', 'is', 'a', 'well-preserved', 'example', 'of', 'the', 'more', 'modest', ',', 'rural', 'version', 'of', 'the', 'border', 'stations', '.'], ['in', 'probability', 'theory', ',', 'an', 'elementary', 'event', '(', 'also', 'called', 'an', 'atomic', 'event', 'or', 'sample', 'point', ')', 'is', 'an', 'event', 'which', 'contains', 'only', 'a', 'single', 'outcome', 'in', 'the', 'sample', 'space', '.'], ['she', 'is', 'a', 'regular', 'performer', 'at', '``', 'cast', 'party', \"''\", 'at', 'birdland', 'in', 'new', 'york', 'and', 'the', 'upright', 'cabaret', 'in', 'west', 'hollywood', '.'], ['cumulative', 'sales', 'of', 'domestically', 'built', 'new', 'energy', 'passenger', 'cars', 'totaled', 'over', '1', '.', '2', 'million', 'units', 'between', '2', '0', '1', '1', 'and', '2', '0', '1', '7', '.'], ['wickrematunge', 'was', 'detained', 'briefly', 'at', 'bandaranaike', 'international', 'airport', 'on', '2', '1', 'february', '2', '0', '0', '6', 'as', 'he', 'arrived', 'for', 'a', 'flight', 'to', 'geneva', '.'], ['the', 'first', 'permanent', 'white', 'settler', 'in', 'the', 'area', 'was', 'moses', 'byxbe', '.'], ['the', 'hemp', 'party', '(', 'help', 'end', 'marijuana', 'prohibition', ')', 'was', 'first', 'registered', 'in', '2', '0', '0', '0', ',', 'and', 'then', 'de-registered', 'in', '2', '0', '0', '6', 'under', 'schedule', '3', 'of', 'the', 'electoral', 'and', 'referendum', 'amendment', '(', 'electoral', 'integrity', 'and', 'other', 'measures', ')', 'act', '2', '0', '0', '6', '.'], ['the', 'landscape', 'is', 'made', 'up', 'of', 'moorland', ',', 'valleys', ',', 'peaks', 'and', 'crags', 'and', 'has', 'long', 'been', 'modified', 'by', 'man', '.'], ['few', 'have', 'done', 'more', 'over', 'the', 'last', 'thirty', 'years', 'to', 'expand', 'the', 'sensory', 'and', 'temporal', 'boundaries', 'of', 'moving', 'pictures', '.'], ['bromide', 'also', 'suffered', 'from', 'the', 'way', 'it', 'affected', 'behaviour', ',', 'introducing', 'the', 'idea', 'of', 'the', \"'epileptic\", 'personality', \"'\", 'which', 'was', 'actually', 'a', 'result', 'of', 'medication', '.'], ['the', 'vhf', 'analogue', 'service', 'closed', 'down', ',', 'along', 'with', 'the', 'rest', 'of', 'the', 'uk', ',', 'on', '3', 'january', '1', '9', '8', '5', '.'], ['with', 'the', 't', '&', 'amp', ';', 'n', 'stalled', ',', 'in', '1', '8', '7', '4', ',', 'george', 'laidlaw', ',', 'who', 'had', 'been', 'instrumental', 'in', 'setting', 'up', 'the', 't', '&', 'amp', ';', 'n', ',', 'chartered', 'the', 'competing', 'victoria', 'railway', 'with', 'roughly', 'the', 'same', 'goals', '.'], ['the', 'stigma', 'of', 'being', 'gay', 'or', 'labeled', 'as', 'such', 'has', 'steadily', 'eroded', 'since', 'the', 'stonewall', 'riots', 'began', 'the', 'modern', 'american', 'gay', 'rights', 'movement', 'in', '1', '9', '6', '9', '.'], ['the', 'first', 'prime-time', 'series', 'broadcast', 'during', 'the', 'summer', 'of', '2', '0', '1', '3', '.'], ['the', 'royal', 'automobile', 'club', '(', ',', 'abbreviated', 'kak', ')', ',', 'established', 'in', '1', '9', '0', '3', ',', 'is', 'an', 'association', 'for', 'swedish', 'car', 'owners', 'which', 'is', 'aimed', 'at', 'safeguarding', 'their', 'interests', 'e.g', '.'], ['he', 'served', 'the', 'party', 'as', 'district', 'secretary', 'during', '1', '9', '8', '9', '-', '9', '3', 'at', 'arghakhanchi', 'district', 'before', 'assuming', 'the', 'responsibility', 'of', 'the', 'zonal', 'secretary', 'from', '1', '9', '9', '4', 'to', '1', '9', '9', '5', '.'], ['cosmosoma', 'stibosticta', 'is', 'a', 'moth', 'of', 'the', 'subfamily', 'arctiinae', '.'], ['all', 'the', 'fixed', 'guns', 'were', 'dismantled', 'and', 'sold', 'for', 'scrap', 'by', 'the', 'early', '1', '9', '6', '0', 's', '.'], ['wing', 'commander', 'hugo', 'beall', 'dso', ',', 'a', 'canadian', 'serving', 'in', 'the', 'raf', ',', 'was', 'the', 'first', 'co', 'of', '3', '5', '6', 'squadron', ',', 'when', 'it', 'started', 'operations', 'in', '1', '9', '4', '3', '.'], ['she', 'then', 'continued', 'to', 'have', 'leading', 'roles', 'in', 'dramas', '``', 'five', 'missions', \"''\", ',', '``', 'code', '2', '``', 'and', '``', 'the', 'wonder', 'woman', \"''\", '.'], ['the', 'ep', 'marks', 'the', 'first', 'time', 'that', 'chungha', 'released', 'a', 'song', 'with', 'hip', 'hop', 'elements', ',', 'as', 'she', 'rapped', 'for', 'the', 'first', 'time', 'on', '``', 'flourishing', \"''\", '.'], ['for', 'example', ',', 'a', 'modified', 'kyropoulos', 'method', 'can', 'be', 'used', 'to', 'grow', 'high', 'quality', '3', '0', '0', 'kg', 'sapphire', 'single', 'crystals', '.'], ['it', 'is', 'not', 'as', 'overtly', 'sectarian', 'as', 'either', 'vashnavism', 'or', 'shaivism', 'and', 'is', 'based', 'on', 'the', 'recognition', 'that', 'brahman', '(', 'god', ')', 'is', 'the', 'highest', 'principle', 'in', 'the', 'universe', 'and', 'pervades', 'all', 'of', 'existence', '.'], ['mannamead', 'returned', 'as', 'a', 'four-year-old', 'and', 'won', 'all', 'three', 'of', 'his', 'races', '.'], ['in', '``', 'eusthenopetron', \"''\", 'and', '``', 'panderichthys', \"''\", ',', 'an', 'ossified', 'operculum', 'is', 'exhibited', 'unlike', 'in', 'the', '``', 'tiktaalik', \"''\", ',', '``', 'ventastega', \"''\", ',', 'and', '``', 'acanthostega', \"''\", '.'], ['the', 'new', 'system', 'has', 'made', 'it', 'possible', 'to', 'link', 'the', 'stock', 'market', 'to', 'the', 'international', 'bourses', '.'], ['although', 'a', 'royal', 'visit', 'was', 'not', 'forthcoming', ',', 'the', '1', 'st', 'earl', \"'s\", 'favour', 'for', 'cassiobury', 'completed', 'the', 'family', \"'s\", 'move', 'to', 'watford', ',', 'and', 'hadham', 'hall', 'fell', 'into', 'disuse', '.'], ['he', 'was', 'a', 'descendant', 'of', 'akarigbo', 'igimisoje', ',', 'a', 'key', 'founder', 'of', 'sagamu', '.'], ['this', 'event', 'has', 'historically', 'disqualified', 'the', 'top', 'teams', 'in', 'the', 'province', '.'], ['the', 'cost', 'of', 'the', 'three', 'locomotives', 'was', '1', ',', '2', '9', '7', ',', '9', '0', '5', 'million', 'norwegian', 'krone', '.'], ['piermont', 'is', 'bordered', 'by', 'the', 'towns', 'of', 'haverhill', 'to', 'the', 'north', ',', 'warren', 'to', 'the', 'east', ',', 'wentworth', 'to', 'the', 'southeast', ',', 'orford', 'to', 'the', 'south', ',', 'and', 'bradford', ',', 'vermont', ',', 'across', 'the', 'connecticut', 'river', 'to', 'the', 'west', '.'], ['the', 'membership', 'was', 'mostly', ',', 'but', 'not', 'entirely', ',', 'identical', 'to', 'that', 'of', 'the', 'united', 'states', 'national', 'security', 'council', '.'], ['she', 'is', 'a', 'member', 'of', 'the', 'new', 'patriotic', 'party', '.'], ['an', 'initial', 'parcel', 'of', 'land', 'fronting', 'nerang', 'and', 'queens', 'streets', 'was', 'offered', 'by', 'the', 'owner', 'mr.', 'w.', 'r.', 'black', 'who', 'had', 'purchased', 'the', 'property', 'specifically', 'for', 'use', 'as', 'a', 'public', 'hospital', '.'], ['it', 'includes', 'the', 'hit', 'single', '``', 'lonely', 'boy', \"''\", 'which', 'peaked', 'at', 'no', '.'], ['jhook', 'is', 'a', 'village', 'in', 'mahendragarh', 'tehsil', 'in', 'mahendragarh', 'district', 'of', 'haryana', 'state', ',', 'india', '.'], ['according', 'to', 'israel', 'central', 'bureau', 'of', 'statistics', '(', 'cbs', ')', ',', 'in', '2', '0', '0', '1', 'the', 'ethnic', 'makeup', 'of', 'the', 'city', 'was', '9', '7', '.', '3', '%', 'jewish', 'and', 'other', 'non-arabs', ',', 'without', 'significant', 'arab', 'population', '.'], ['il-', '1', '3', 'induces', 'several', 'changes', 'in', 'the', 'gut', 'that', 'create', 'an', 'environment', 'hostile', 'to', 'the', 'parasite', ',', 'including', 'enhanced', 'contractions', 'and', 'glycoprotein', 'hyper-secretion', 'from', 'gut', 'epithelial', 'cells', ',', 'that', 'ultimately', 'lead', 'to', 'detachment', 'of', 'the', 'organism', 'from', 'the', 'gut', 'wall', 'and', 'their', 'removal', '.'], ['singalangia', 'is', 'a', 'monotypic', 'genus', 'of', 'sumatran', 'araneomorph', 'spiders', 'in', 'the', 'family', 'tetrablemmidae', 'containing', 'the', 'single', 'species', ',', 'singalangia', 'sternalis', '.'], ['although', 'the', 'evidence', 'was', 'considered', 'circumstantial', ',', 'since', 'prades', 'confessed', 'after', '3', '6', 'hours', 'without', 'eating', 'or', 'sleeping', ',', 'a', 'flask', 'of', 'an', 'arsenic-based', 'antkiller', ',', 'thought', 'to', 'be', 'the', 'poison', 'used', ',', 'was', 'found', 'among', 'her', 'belongings', '.'], ['fvg', 'believed', 'that', 'this', 'was', 'a', 'response', 'to', 'its', 'earlier', 'request', 'for', 'arbitration', 'regarding', 'the', 'usage', 'of', '2', 'million', 'usd', 'from', 'national', 'railroad', 'trust', ',', 'designated', 'for', 'the', 'development', 'of', 'railroads', 'in', 'guatemala', 'but', 'used', 'to', 'support', 'an', 'overstaffed', 'governmental', 'oversight', 'agency', '.'], ['among', 'the', 'newly', 'added', 'cured', 'cases', ',', '2', 'were', 'from', 'chengdu', 'and', '2', 'were', 'from', 'nanchong', '.'], ['born', 'in', 'achham', ',', 'khanal', 'completed', 'his', 'primary', 'education', 'in', 'achham', 'district', '.'], ['in', 'july', 'of', 'that', 'year', ',', 'it', 'was', 'confirmed', 'that', 'he', 'was', 'alive', '.'], ['the', 'camera', 'can', 'also', 'shoot', 'in', '7', '2', '0', 'p', 'hd', 'at', '2', '4', 'frames', 'per', 'second', '.'], ['coughing', ',', 'which', 'can', 'similarly', 'increase', 'cranial', 'blood', 'flow', ',', 'can', 'also', 'be', 'useful', 'as', 'a', 'coping', 'mechanism', 'to', 'avoid', 'pre-syncope', 'and', 'syncope', '.'], ['thus', 'while', 'nalik', 'baháʼís', 'are', 'regarded', 'by', 'other', 'naliks', 'as', 'arbiters', 'of', 'traditional', 'knowledge', 'and', 'practices', ',', 'the', 'christian', 'missions', 'and', 'their', 'followers', 'are', 'seen', 'as', 'antagonistic', 'to', 'kastom', '.'], ['a', 'sumoplot', 'analysis', 'conducted', 'of', 'homo', 'sapiens', 'cxorf', '6', '6', 'protein', ',', 'discovered', 'a', 'high', 'probability', 'of', 'a', 'sumolyation', 'motif', 'at', 'position', 'k', '2', '4', '1', ',', 'alongside', 'low', 'probability', 'motifs', 'at', 'k', '3', '1', '6', 'and', 'k', '1', '8', '6', '.'], ['after', 'suffering', 'a', 'series', 'of', 'heart', 'attacks', 'beginning', 'in', '1', '9', '3', '4', ',', 'admiral', 'robert', 'e.', 'coontz', 'died', 'on', '2', '6', 'january', '1', '9', '3', '5', ',', 'at', 'the', 'puget', 'sound', 'naval', 'hospital', 'in', 'bremerton', ',', 'washington', '.'], ['in', '1', '9', '9', '9', 'leeb', 'published', 'his', 'third', 'cd', ',', '``', 'riddle', \"''\", ',', 'on', 'the', 'web', 'portal', 'mp', '3', '.com', 'and', 'studied', 'at', 'the', 'california', 'institute', 'of', 'the', 'arts', ',', 'focusing', 'on', 'world', 'music', 'and', 'traditional', 'music', 'from', 'ghana', '.'], ['sr', '1', '1', '7', 'then', 'enters', 'adamsville', 'and', 'has', 'an', 'intersection', 'with', 'old', 'shiloh', 'road', 'before', 'entering', 'downtown', ',', 'where', 'it', 'comes', 'to', 'an', 'end', 'at', 'an', 'intersection', 'with', 'us', '6', '4', '/sr', '1', '5', '/sr', '2', '2', '.'], ['its', 'entire', 'program', 'is', 'located', 'in', 'the', 'dona', 'cecilia', 'building', 'and', 'the', 'savio', 'quadrangle', 'beside', 'the', 'high', 'school', 'building', '.'], ['patrick', 'henry', 'roark', ',', 'otherwise', 'known', 'as', 'cardinal', 'roark', ',', 'appears', 'in', '``', 'the', 'hard', 'goodbye', \"''\", 'as', 'the', 'brother', 'of', 'senator', 'roark', 'and', 'attorney', 'general', 'roark', 'and', 'the', 'uncle', 'of', 'roark', 'junior', '.'], ['the', 'library', 'is', 'in', 'chicago', \"'s\", 'washington', 'heights', 'neighborhood', 'at', '9', '5', '2', '5', 's.', 'halsted', 'st', '.'], ['the', 'race', 'was', 'resumed', 'on', 'lap', '1', '3', 'and', 'button', ',', 'who', 'had', 'changed', 'to', 'intermediate', 'tyres', 'before', 'the', 'safety', 'car', 'period', ',', 'was', 'given', 'a', 'drive-through', 'penalty', 'for', 'speeding', 'behind', 'the', 'safety', 'car', ',', 'emerging', 'in', '1', '5', 'th', 'place', '.'], ['during', 'the', 'outward', 'journey', 'towards', 'the', 'termites', ',', 'all', 'ants', 'are', 'laying', 'a', 'pheromone', 'trail', ',', 'making', 'it', 'much', 'easier', 'for', 'them', 'to', 'find', 'their', 'way', 'back', 'to', 'the', 'nest', 'later', 'without', 'having', 'to', 'rely', 'on', 'the', 'scout', 'ant', '.'], ['she', 'created', 'the', 'role', 'of', 'madame', 'flora', 'in', 'gian', 'carlo', 'menotti', \"'s\", '``', 'the', 'medium', \"''\", ',', 'in', '1', '9', '4', '6', 'at', 'its', 'first', 'performances', 'at', 'columbia', 'university', '.'], ['he', 'died', 'on', 'january', '2', '3', ',', '1', '9', '0', '6', 'just', 'six', 'weeks', 'after', 'his', 'marriage', '.'], ['in', 'some', 'regions', ',', '+', 'and', '−', 'are', 'used', 'to', 'indicate', 'marks', 'below', 'or', 'above', 'an', 'integer', '.'], ['born', 'in', '1', '7', '7', '0', ',', 'his', 'exact', 'birthplace', 'is', 'unknown', ',', 'although', 'it', 'is', 'known', 'that', 'he', 'was', 'born', 'somewhere', 'in', 'present-day', 'mexico', '.'], ['initially', 'in', '2', '0', '1', '2', ',', 'it', 'was', 'expected', 'that', 'the', 'first', 'single', 'from', 'the', 'singer', \"'s\", 'album', 'would', 'be', 'a', 'song', 'titled', '``', 'truth', 'or', 'dare', \"''\", '.'], ['launched', 'in', 'january', '2', '0', '1', '4', ',', 'the', 'ifpi', 'global', 'artist', 'chart', 'was', 'the', 'first', 'global', 'chart', 'to', 'accurately', 'capture', 'the', 'popularity', 'of', 'artists', 'across', 'streaming', 'channels', ',', 'alongside', 'digital', 'and', 'physical', 'album', 'and', 'singles', 'sales', '.'], ['in', 'its', 'later', 'years', 'so', 'much', 'propping', 'was', 'needed', 'and', 'so', 'much', 'distortion', 'of', 'parts', 'of', 'the', 'walls', 'occurred', 'that', 'the', 'line', 'was', 'singled', 'from', 'scarcliffe', 'to', 'bolsover', 'south', '.'], ['he', 'also', 'did', 'much', 'work', 'on', 'german', 'commercials', ',', 'most', 'notably', 'one', 'referred', 'to', 'as', '``', 'hb', \"'s\", 'little', 'man', \"''\", '.'], ['other', 'historic', 'sites', 'open', 'for', 'tour', 'include', 'the', 'james', 'iredell', 'house', ',', 'roanoke', 'river', 'light', ',', 'barker', 'house', ',', 'chowan', 'county', 'courthouse', 'and', 'st.', 'paul', \"'s\", 'episcopal', 'church', '.'], ['it', 'was', 'described', 'by', 'edward', 'meyrick', 'in', '1', '9', '1', '8', '.'], ['sir', 'richard', 'taylor', 'of', 'weta', 'workshop', 'said', '``', 'savage', 'islands', \"''\", 'kick-started', 'the', 'new', 'zealand', 'filmmaking', 'boom', 'of', 'the', '1', '9', '8', '0', 's', '.'], ['spain', 'sold', 'the', 'florida', 'territory', 'to', 'the', 'united', 'states', 'in', '1', '8', '2', '1', 'and', ',', 'by', '1', '8', '2', '2', ',', 'jacksonville', \"'s\", 'current', 'name', 'had', 'come', 'into', 'use', ',', 'to', 'honor', 'general', 'andrew', 'jackson', '.'], ['the', 'released', 'lysine', 'can', 'now', 'abstract', 'the', 'proton', 'from', 'the', 'cα', 'and', 'form', 'a', 'quinoid', 'intermediate', ',', 'which', 'is', 'facilitated', 'by', 'the', 'delocalization', 'of', 'the', 'negative', 'charge', 'over', 'plp', \"'s\", 'conjugated', 'p-system', '.'], ['keiko', 'eventually', 'died', 'of', 'pneumonia', 'in', 'a', 'norwegian', 'bay', 'on', 'december', '1', '2', ',', '2', '0', '0', '3', '.'], ['it', 'was', 'created', 'in', '1', '9', '5', '7', 'with', 'the', 'construction', 'of', 'the', 'dalles', 'dam', 'near', 'the', 'dalles', ',', 'oregon', ',', 'and', 'stretches', 'upstream', 'to', 'the', 'john', 'day', 'dam', '.'], ['the', 'ship', 'was', 'scrapped', 'on', 'site', ',', 'with', 'the', 'process', 'taking', 'over', 'eight', 'months', 'to', 'complete', '.'], ['both', 'the', 'lake', 'and', 'the', 'dam', 'are', 'named', 'for', 'vice', 'president', 'alben', 'barkley', ',', 'a', 'kentucky', 'native', '.'], ['the', 'rating', 'was', 'reduced', 'to', 'two', 'stars', 'in', '1', '9', '9', '6', ',', 'and', 'to', 'one', 'star', 'in', '2', '0', '0', '6', '.'], ['staley', 'attended', 'airport', 'high', 'school', 'in', 'west', 'columbia', ',', 'south', 'carolina', 'and', 'was', 'an', 'all-state', 'wide', 'receiver', ',', 'and', 'played', 'running', 'back', 'sparingly', '.'], ['the', 'formula', 'is', 'an', 'identity', 'because', 'the', 'velocity', 'of', 'money', '(', '``', 'v', \"''\", ')', 'is', 'defined', 'to', 'be', 'the', 'ratio', 'of', 'final', 'nominal', 'expenditure', '(', 'formula_', '8', ')', 'to', 'the', 'quantity', 'of', 'money', '(', '``', 'm', \"''\", ')', '.'], ['turtle', 'bases', 'are', 'great', 'for', 'setting', 'up', 'a', 'light', 'very', 'low', 'to', 'the', 'ground', '.'], ['spe', \"'s\", 'energy', '4', 'me', 'program', 'educates', 'students', 'aged', '1', '0', 'to', '1', '7', 'about', 'the', 'energy', 'industry', '.'], ['from', '1', '9', '3', '8', 'through', '1', '9', '4', '1', ',', 'more', 'than', '$', '2', '2', ',', '0', '0', '0', 'was', 'spent', 'on', 'additional', 'details', 'and', 'for', 'changes', 'in', 'the', 'hardware', 'and', 'lighting', '.'], ['each', 'player', 'agrees', 'and', 'will', 'contract', 'to', 'participate', 'in', 'four', 'of', 'these', 'tournaments', '.'], ['these', 'polls', 'only', 'include', 'turkish', 'voters', 'nationwide', 'and', 'do', 'not', 'take', 'into', 'account', 'turkish', 'expatriates', 'voting', 'abroad', '.'], ['the', 'municipality', \"'s\", 'population', 'density', 'is', 'and', 'its', 'population', 'has', 'increased', 'by', '1', '2', '.', '2', '%', 'over', 'the', 'previous', '1', '0', '-year', 'period', '.'], ['``', 'but', 'he', 'winds', 'up', 'in', 'sangala', ',', 'an', 'imaginary', 'country', 'in', 'africa', 'in', 'the', 'middle', 'of', 'a', 'military', 'coup', '.', \"''\"], ['it', 'emphasizes', 'local', 'management', 'and', 'formed', 'groundwater', 'sustainability', 'agencies', '(', 'gsas', ')', 'from', 'local', 'and', 'regional', 'authorities', '.'], ['in', '1', '9', '6', '6', ',', 'on', 'leaving', 'middle', 'school', ',', 'he', 'joined', 'the', 'army', 'in', 'xunke', 'county', ',', 'heilongjiang', 'province', '.'], ['``', 'sports', 'illustrated', \"''\", 'rated', 'it', '``', 'the', 'game', 'of', 'the', 'decade', \"''\", 'for', 'college', 'football', '.'], ['the', 'hay', 'extension', 'line', 'opened', 'for', 'passenger', 'business', 'on', '2', '7', 'may', '1', '8', '8', '9', '.'], ['a', 'statement', ',', 'released', 'by', 'rivera', \"'s\", 'representatives', ',', 'stated', 'that', 'the', 'divorce', 'was', 'due', 'to', '``', 'irreconcilable', 'differences', 'on', 'behalf', 'of', 'both', 'parties', 'derived', 'from', 'private', 'circumstances', 'that', 'occurred', 'during', 'the', 'lapse', 'of', 'their', 'two-year', 'marriage', '.', \"''\"], ['blanchett', 'received', '``', 'premiere', \"''\", 'magazine', \"'s\", 'icon', 'award', 'in', '2', '0', '0', '6', '.'], ['mackenzie', 'struggled', 'to', 'influence', 'legislation', 'and', 'his', 'amendments', 'to', 'government', 'bills', 'were', 'often', 'rejected', 'by', 'the', 'assembly', '.'], ['kelso', 'was', 'co-owner', 'of', 'a', 'denver', 'debt', 'recovery', 'business', 'called', 'professional', 'recovery', 'systems', ';', 'he', 'was', 'a', 'philanthropist', '``', '...', 'giving', 'away', 'hundreds', 'of', 'thousands', 'of', 'dollars', 'to', 'charities', 'around', 'the', 'world', '...', \"''\", 'and', 'was', 'openly', 'gay', '.'], ['on', '1', '0', 'march', '2', '0', '1', '7', 'government', 'of', 'nepal', 'restricted', 'old', 'administrative', 'structures', 'and', 'announced', '7', '4', '4', 'new', 'local', 'level', 'units', '(', '9', 'added', 'later', ')', 'as', 'per', 'the', 'new', 'constitution', 'of', 'nepal', '2', '0', '1', '5', ','], ['it', 'was', 'the', 'first', 'crossing', 'of', 'the', 'atlantic', 'powered', 'only', 'by', 'solar', '.'], ['siggins', 'eventually', 'returned', 'to', 'australia', ',', 'living', 'in', 'adelaide', 'for', 'several', 'years', 'before', 'settling', 'in', 'wellington', ',', 'new', 'south', 'wales', '.'], ['the', 'album', \"'s\", 'artwork', 'reflects', 'its', 'title', ',', 'mimicking', 'a', 'style', 'of', 'visual', 'puzzle', 'that', 'consists', 'of', 'various', 'logical', 'inconsistencies', 'or', 'paradoxes', 'for', 'the', 'viewer', 'to', 'try', 'to', 'identify', '.'], ['it', 'was', '3', '0', '.', '5', 'm', 'long', 'and', '6', 'm', 'wide', ',', 'and', 'weighed', '1', '0', '0', 'tons', '.'], ['although', 'born', 'in', 'inverness', ',', 'to', 'a', 'scottish', 'mother', ',', 'crabb', \"'s\", 'upbringing', 'was', 'mostly', 'in', 'haverfordwest', ',', 'the', 'county', 'town', 'of', 'pembrokeshire', 'in', 'wales', '.'], ['paquin', 'recruited', 'a', 'set', 'of', 'software', 'engineers', 'experienced', 'in', 'x', 'server', 'implementation', ':', 'jeff', 'weinstein', ',', 'erik', 'fortune', ',', 'paul', 'shupak', ',', 'john', 'giannandrea', ',', 'peter', 'daifuku', ',', 'michael', 'toy', ',', 'todd', 'newman', ',', 'spence', 'murray', ',', 'and', 'dave', 'spalding', '.'], ['the', 'levels', 'that', 'can', 'be', 'implemented', 'depend', 'on', 'the', 'hardware', 'capability', '.'], ['the', 'film', 'was', 'named', 'to', 'the', 'toronto', 'international', 'film', 'festival', \"'s\", 'annual', 'canada', \"'s\", 'top', 'ten', 'list', 'for', '2', '0', '0', '1', ',', 'and', 'martin', 'received', 'a', 'genie', 'award', 'nomination', 'for', 'best', 'screenplay', 'at', 'the', '2', '2', 'nd', 'genie', 'awards', '.'], ['he', 'wrote', 'columns', 'for', 'many', 'newspapers', 'and', 'journals', 'including', 'politika', 'and', 'nin', '.'], [\"t'ai\", 'chi', 'chih', 'has', 'visual', 'similarities', 'to', \"t'ai\", 'chi', \"ch'uan\", ',', 'but', 'no', 'martial', 'arts', 'aspect', '.'], ['lisberg', 'managed', 'wayne', 'fontana', 'after', 'he', 'left', 'the', 'mindbenders', ',', 'allowing', 'guitarist', 'eric', 'stewart', 'to', 'step-up', 'to', 'lead', 'vocals', 'on', '``', 'a', 'groovy', 'kind', 'of', 'love', \"''\", ',', 'which', 'reached', 'no', '.'], ['the', 'climate', 'is', 'high', 'altitude', 'tropical', ',', 'with', 'average', 'annual', 'temperatures', 'of', 'falling', 'to', 'as', 'low', 'as', 'in', 'winter', '.'], ['the', 'highest', 'frequency', '(', '7', '5', '5', '4', 'hz', ')', 'was', 'found', 'in', 'the', '``', 'overblown', \"''\", 'condition', ',', 'and', '``', 'n', \"''\", 'was', 'presumed', 'as', 'one', 'corrugation', '.'], ['their', 'balloon', ',', 'built', 'in', 'moscow', 'by', 'professional', 'aircraft', 'technicians', ',', 'proved', 'to', 'be', 'far', 'safer', 'than', 'vasenko', \"'s\", '.'], ['he', 'provided', 'the', 'voice', 'of', 'the', 'main', 'character', ',', 'roadie', 'eddie', 'riggs', ',', 'in', 'the', 'heavy', 'metal-themed', 'action-adventure', 'video', 'game', '``', 'brütal', 'legend', \"''\", '.'], ['terrace', 'court', 'is', 'a', 'historic', 'apartment', 'complex', 'of', 'three', 'three-story', 'buildings', 'in', 'omaha', ',', 'nebraska', '.'], ['he', 'was', 'advanced', 'to', 'knight', 'commander', 'of', 'the', 'order', 'of', 'the', 'bath', 'in', 'the', '1', '9', '5', '0', 'new', 'year', 'honours', 'before', 'retiring', 'in', '1', '9', '5', '1', '.'], ['will', ',', 'blaming', 'himself', 'for', 'his', 'wife', \"'s\", 'death', ',', 'shoots', 'himself', 'in', 'front', 'of', 'cait', '.'], ['yakovlev', 'characterised', 'these', 'ideas', 'as', 'menshevik', ',', 'pointing', 'to', 'the', 'refusal', 'of', '``', 'vpered', \"''\", 'to', 'acknowledge', 'the', 'authority', 'of', 'the', '1', '9', '1', '2', 'prague', 'conference', '.'], ['of', 'the', '2', '4', 'who', 'completed', 'tertiary', 'schooling', ',', '5', '0', '.', '0', '%', 'were', 'swiss', 'men', ',', '4', '1', '.', '7', '%', 'were', 'swiss', 'women', '.'], ['he', 'was', 'to', 'receive', 'fifty', 'thousand', 'reichsthalers', '(', 'about', '1', '5', ',', '0', '0', '0', 'l', '.'], ['it', 'also', 'gave', 'her', 'the', 'distinction', 'of', 'being', 'the', 'female', 'artist', 'with', 'the', 'most', 'cumulative', 'weeks', 'at', 'number', 'one', ',', 'as', 'well', 'as', 'placing', 'her', 'second', 'on', 'the', 'list', 'of', 'female', 'artists', 'with', 'the', 'most', 'chart-topping', 'albums', ',', 'behind', 'only', 'madonna', '.'], ['in', '1', '9', '3', '7', ',', 'he', 'took', '2', 'nd', 'in', 'brno', '(', 'brunn', ')', ',', 'and', 'took', '3', 'rd', 'in', 'zoppot', '(', 'sopot', ')', '.'], ['once', 'again', ',', 'each', 'episode', 'would', 'be', 'repeated', 'the', 'following', 'morning', 'at', '7', ':', '0', '0', 'am', 'on', 'bbc', 'two', '.'], ['the', 'juxta', 'is', 'typically', 'well-developed', ',', 'large', 'and', 'extended', '.'], ['in', '1', '9', '8', '2', ',', 'a', 'group', 'of', '``', 'pig', 'cookers', \"''\", 'in', 'vienna', ',', 'georgia', ',', 'created', 'the', 'big', 'pig', 'jig', 'by', 'combining', 'a', 'barbecue', 'competition', 'with', 'an', 'arts', 'and', 'crafts', 'fair', '.'], ['after', 'the', 'sale', 'of', 'visiontv', ',', 's-vox', \"'s\", 'board', 'of', 'directors', 'undertook', 'to', 'use', 'the', 'funds', 'to', 'found', 'the', 'inspirit', 'foundation', '.'], ['in', 'february', '1', '8', '7', '4', ',', 'at', 'the', 'age', 'of', '1', '4', ',', 'pomeroy', 'was', 'paroled', 'back', 'to', 'his', 'mother', 'and', 'brother', 'in', 'south', 'boston', '.'], ['the', 'constitution', 'of', 'mexico', 'requires', 'the', '``', 'candidate', 'to', 'be', 'natural-born', 'citizen', \"''\", 'of', 'mexico', 'with', 'at', 'least', 'one', 'parent', 'who', 'is', 'a', 'natural-born', 'citizen', 'of', 'mexico', '.'], ['allmusic', 'rated', 'the', 'soundtrack', 'three', 'out', 'of', 'five', 'stars', '.'], ['on', '2', '2', 'april', ',', 'when', 'she', 'was', 'asleep', 'on', 'the', 'roof', 'of', 'her', 'house', ',', 'she', 'was', 'attacked', 'with', 'acid', 'and', 'left', 'with', 'a', 'burnt', 'face', 'and', 'other', 'severe', 'injuries', '.'], ['ski', 'chantecler', 'is', 'a', 'ski', 'resort', 'in', 'the', 'laurentides', 'region', 'of', 'the', 'canadian', 'province', 'of', 'quebec', ',', 'canada', '.'], ['usrc', '``', 'surveyor', \"''\", 'was', 'laid', 'down', 'in', '1', '8', '0', '7', 'and', 'commissioned', 'the', 'same', 'year', '.'], ['these', 'cords', 'develop', 'into', 'a', 'pervasive', 'network', 'of', 'plexuses', 'in', 'the', 'formation', 'of', 'the', 'vascular', 'network', '.'], ['he', 'was', 'a', 'trustee', 'of', 'the', 'metropolitan', 'museum', 'of', 'art', 'and', 'of', 'the', 'educational', 'testing', 'service', 'and', 'a', 'director', 'of', 'the', 'woodrow', 'wilson', 'foundation', '.'], ['it', 'ended', 'in', '1', '8', '5', '8', 'with', 'the', 'defeat', 'of', 'the', 'yakama', 'by', 'united', 'states', 'forces', '.'], ['in', '2', '0', '1', '1', ',', '9', '4', 'percent', 'of', 'the', '5', '0', '0', 'pennsylvania', 'public', 'school', 'districts', 'achieved', 'the', 'no', 'child', 'left', 'behind', 'act', 'progress', 'level', 'of', '7', '2', '%', 'of', 'students', 'reading', 'on', 'grade', 'level', 'and', '6', '7', '%', 'of', 'students', 'demonstrating', 'on', 'grade', 'level', 'math', '.'], ['fox', 'had', 'previously', 'been', 'the', 'premier', 'under', 'the', 'second', 'administration', '.'], ['after', 'world', 'war', 'i', ',', 'alsace', 'became', 'a', 'part', 'of', 'france', 'again', ',', 'and', 'with', 'it', 'bugatti', '.'], ['after', 'they', 'released', '``', 'seven', \"''\", '(', '1', '9', '7', '3', ')', 'without', 'additional', 'musicians', ',', 'the', 'band', 'switched', 'record', 'labels', 'from', 'columbia', 'to', 'harvest', '.'], ['some', 'donkeys', 'are', 'not', 'sold', ',', 'instead', 'they', 'are', 'used', 'to', 'pull', 'the', 'coachman', \"'s\", 'carriage', '.'], ['in', '1', '9', '9', '0', 'the', 'team', 'competed', 'in', 'the', 'senior', 'ranks', ',', 'losing', 'to', 'carrigdhoun', '.'], ['the', 'elongated', 'c', '1', '-n', '1', ',', 'and', 'shortened', 'c', '1', '-o', '1', 'bonds', 'are', 'explained', 'with', 'an', 'anomeric', 'effect', 'resulting', 'from', 'the', 'interaction', 'of', 'the', 'oxygen', 'lone', 'pairs', 'with', 'the', 'σ', '*', 'c-n', 'orbital', '.'], ['in', 'many', 'cases', ',', 'intelligent', 'programme', 'and', 'clinical', 'trial', 'design', 'can', 'prevent', 'false', 'negative', 'results', '.'], ['in', 'certain', 'countries', 'of', 'africa', ',', 'various', 'species', 'of', 'nutritious', 'amaranth', 'are', 'very', 'widely', 'eaten', 'boiled', '.'], ['debts', 'never', 'distressed', 'them', ',', 'but', 'rather', 'their', 'inability', 'to', 'borrow', 'more', '.'], ['its', 'construction', 'is', 'typical', 'of', 'late', '1', '9', 'th-century', 'factories', ',', 'with', 'rows', 'of', 'sash', 'windows', '(', 'many', 'now', 'boarded', 'over', ')', 'set', 'in', 'segmented-arch', 'openings', '.'], ['visual', 'flight', 'or', '``', 'visual', 'attitude', 'flying', \"''\", 'is', 'a', 'method', 'of', 'controlling', 'an', 'aircraft', 'where', 'the', 'aircraft', 'attitude', 'is', 'determined', 'by', 'observing', 'outside', 'visual', 'references', '.'], ['in', '1', '9', '6', '5', ',', 'willow', 'run', ',', 'michigan', 'served', 'as', 'the', 'maintenance', 'base', 'for', 'gmats', ',', 'with', 'the', 'main', 'passenger', 'facility', 'at', 'detroit', 'city', 'airport', '.'], ['the', 'team', 'was', 'led', 'by', 'chuck', 'taylor', 'in', 'his', 'sixth', 'year', '.'], ['recently', ',', 'the', 'company', 'established', 'a', 'first', 'look', 'deal', 'with', 'warner', 'horizon', '.'], ['the', 'river', 'benaize', 'forms', 'most', 'of', 'the', 'commune', \"'s\", 'southeastern', 'border', ',', 'flows', 'through', 'the', 'commune', ',', 'then', 'forms', 'part', 'of', 'the', 'commune', \"'s\", 'western', 'border', '.'], ['a', 'study', 'conducted', 'by', 'the', 'tufts', 'center', 'for', 'the', 'study', 'of', 'drug', 'development', 'covering', 'the', '1', '9', '8', '0', 's', 'and', '1', '9', '9', '0', 's', 'found', 'that', 'only', '2', '1', '.', '5', 'percent', 'of', 'drugs', 'that', 'started', 'phase', 'i', 'trials', 'were', 'eventually', 'approved', 'for', 'marketing', '.'], ['the', 'islamist', 'group', 'lashkar-e-taiba', 'has', 'framed', 'the', 'prophecy', 'of', 'ghazwa-e-hind', ',', 'as', 'one', 'in', 'which', 'india', 'is', 'defeated', 'and', 'united', 'with', 'pakistan', ',', 'unifying', 'the', 'indian', 'subcontinent', 'under', 'muslim', 'rule', '.'], ['both', 'are', 'circulation', 'leaders', ',', 'respectively', ',', 'in', 'popular', 'journalism', 'and', 'business', 'journalism', 'markets', '.'], ['never', 'once', 'did', 'we', 'receive', 'an', 'answer', 'from', 'a', 'congressman', '.'], ['two', 'police', 'officers', 'drove', 'up', 'and', 'down', 'the', 'low', 'riding', 'streets', 'with', 'their', 'sirens', 'blaring', 'shouting', 'to', 'evacuate', '.'], ['his', 'father', 'died', 'when', 'carruthers', 'was', '1', '2', ',', 'and', 'at', 'that', 'time', 'his', 'family', 'moved', 'to', 'the', 'south', 'side', 'of', 'chicago', 'where', 'they', 'stayed', 'with', 'relatives', 'until', 'george', 'went', 'to', 'college', '.'], ['on', 'the', 'july', '2', '2', 'episode', 'of', '``', 'impact', '!'], ['there', 'is', 'a', 'detailed', '1', '/', '1', '0', '0', 'th', 'scale', 'model', 'of', '``', 'argonaut', \"''\", 'in', 'the', 'submarine', 'force', 'museum', 'in', 'groton', ',', 'connecticut', '.'], ['the', 'yakama', 'war', 'ensued', ',', 'from', '1', '8', '5', '5', 'to', '1', '8', '5', '8', '.'], ['next', ',', 'the', 'second', 'three-way', 'x', 'division', 'championship', 'qualifier', 'took', 'place', 'between', 'sanada', ',', 'crazzy', 'steve', 'and', 'brian', 'cage', '.'], ['on', '3', 'february', '2', '0', '1', '5', ',', 'tuala', 'signed', 'for', 'english', 'club', 'northampton', 'saints', 'in', 'the', 'aviva', 'premiership', 'until', 'the', 'end', 'of', 'the', '2', '0', '1', '4', '-', '1', '5', 'season', '.'], ['the', 'proboscis', 'is', 'eversible', 'and', 'is', 'divided', 'into', 'two', 'distinct', 'parts', '.'], ['the', 'village', 'was', 'raised', 'to', 'parish', 'in', 'the', 'early', '1', '9', 'th', 'century', '.'], ['kelly', 'noted', 'that', 'aravena', ',', 'who', 'stood', '6', \"'\", '2', ',', 'weighed', '2', '8', '0', 'pounds', 'and', 'was', 'very', 'muscular', ',', 'did', 'not', 'try', 'to', 'help', 'flanz', 'despite', 'the', 'way', 'that', 'kellestine', 'kept', 'pistol-whipping', 'and', 'insulting', 'him', 'for', 'being', 'jewish', '.'], ['a', 'forerunner', 'of', 'these', 'stories', 'is', 'kipling', \"'s\", '``', 'how', 'fear', 'came', \"''\", ',', 'in', '``', 'the', 'second', 'jungle', 'book', \"''\", '(', '1', '8', '9', '5', ')', '.'], ['xiang', 'yu', 'then', 'divided', 'the', 'country', 'into', 'eighteen', 'principalities', ',', 'appointing', 'zang', 'tu', 'as', 'the', 'lord', 'of', 'ji', 'and', 'han', 'guang', 'as', 'the', 'lord', 'of', 'nearby', 'liaodong', '.'], ['among', 'the', 'adopted', 'children', 'was', 'a', 'former', 'prisoner', 'of', 'the', 'comanches', ',', 'who', 'was', 'adopted', 'by', 'pérez', 'when', 'he', 'fought', 'against', 'that', 'people', '.'], ['these', 'join', 'to', 'form', 'small', 'vesicles', 'called', 'angiocysts', 'which', 'join', 'up', 'to', 'form', 'long', 'vessels', 'called', 'angioblastic', 'cords', '.'], ['this', 'is', 'possible', 'because', ',', 'while', 'the', 'mobile', 'phone', 'has', 'to', 'authenticate', 'itself', 'to', 'the', 'mobile', 'telephone', 'network', ',', 'the', 'network', 'does', 'not', 'authenticate', 'itself', 'to', 'the', 'phone', '.'], ['according', 'to', 'a', 'poll', 'by', 'vtsiom', 'only', '8', '%', 'of', 'the', 'russian', 'electorate', 'was', 'familiar', 'with', 'his', 'candidacy', '.'], ['the', 'all-cast', 'turret', 'housed', 'three', 'crew', 'and', 'has', 'the', 'same', 'layout', 'as', 'an', 'm', '4', '1', ',', 'with', 'modifications', 'to', 'suit', 'the', 'shorter', 'stature', 'of', 'local', 'tank', 'crews', '.'], ['the', 'studio', 'produced', '``', 'genshiken', \"''\", 'spin-off', 'ova', 'series', '``', 'kujibiki', 'unbalance', \"''\", '.'], ['peter', 'shawn', 'bearman', '(', 'born', '1', '9', '5', '6', ')', 'is', 'an', 'american', 'sociologist', ',', 'notable', 'for', 'his', 'contributions', 'to', 'the', 'fields', 'of', 'adolescent', 'health', ',', 'research', 'design', ',', 'structural', 'analysis', ',', 'textual', 'analysis', ',', 'oral', 'history', 'and', 'social', 'networks', '.'], ['in', 'addition', 'to', 'a', 'gift', 'for', 'languages', ',', 'rose', 'was', 'known', 'for', 'possessing', 'an', 'acute', 'sense', 'of', 'humor', 'and', 'wit', '.'], ['this', 'lichen', 'is', 'fruticose', ',', 'with', 'very', 'long', 'stems', 'and', 'short', ',', 'even', 'side', 'branches', '.'], ['a', '5', '2', '-episode', 'anime', 'series', 'was', 'produced', 'by', 'nihon', 'ad', 'systems', '(', 'nas', ')', 'and', 'tv', 'tokyo', ',', 'animated', 'by', 'studio', 'deen', ',', 'and', 'broadcast', 'on', 'tv', 'tokyo', 'from', 'october', '2', ',', '2', '0', '0', '2', 'to', 'september', '2', '4', ',', '2', '0', '0', '3', '.'], ['it', 'is', 'the', 'largest', 'subregion', 'of', 'asia', 'by', 'area', ',', 'but', 'is', 'also', 'the', 'least', 'populated', ',', 'with', 'an', 'approximate', 'population', 'of', 'only', '3', '3', 'million', 'people', 'or', 'only', '0', '.', '7', '4', '%', 'of', 'asia', \"'s\", 'population', '.'], ['hatton', 'stopped', 'him', 'in', 'the', 'fourth', 'round', 'and', 'winters', 'announced', 'his', 'retirement', 'from', 'boxing', '.'], ['as', 'of', 'the', 'census', 'of', '2', '0', '1', '0', ',', 'there', 'were', '1', '8', '2', 'people', ',', '9', '4', 'households', ',', 'and', '5', '8', 'families', 'residing', 'in', 'the', 'town', '.'], ['within', 'this', 'area', 'was', 'the', 'court', 'of', 'the', 'women', ',', 'open', 'to', 'all', 'jews', ',', 'male', 'and', 'female', '.'], ['rendika', 'judged', 'to', 'meet', 'the', 'criteria', 'as', 'a', 'modern', 'young', 'defender', '.'], ['porter', 'served', 'as', 'florida', 'marlins', \"'\", 'third', 'base', 'coach', 'and', 'outfield', 'and', 'baserunning', 'instructor', 'from', '2', '0', '0', '7', 'to', '2', '0', '0', '9', '.'], ['``', 'rebels', \"''\", 'falls', 'into', 'the', 'genres', 'of', 'latin', 'pop', 'and', 'pop', 'rock', ',', 'with', 'dance-pop', 'and', 'r', '&', 'amp', ';', 'b', 'stylings', ',', 'which', 'were', 'new', 'music', 'styles', 'for', 'the', 'group', '.'], ['prior', 'to', 'the', 'halmidi', 'inscription', ',', 'there', 'is', 'an', 'abundance', 'of', 'inscriptions', 'containing', 'kannada', 'words', ',', 'phrases', 'and', 'sentences', ',', 'proving', 'its', 'antiquity', '.'], ['``', 'valkyria', 'chronicles', \"''\", 'was', 're-released', 'in', 'japanese', 'retails', 'stores', 'under', 'its', '``', 'the', 'best', \"''\", 'label', 'on', 'march', '5', ',', '2', '0', '0', '9', 'with', 'a', 'retail', 'price', 'of', '¥', '3', ',', '9', '0', '0', '.'], ['for', 'outstanding', 'contribution', 'to', 'wildlife', 'research', 'and', 'conservation', 'through', 'the', 'setting', 'up', 'of', 'captive', 'breeding', 'centres', ',', 'as', 'well', 'as', 'for', 'pioneering', 'and', 'successfully', 'managing', 'human-wildlife', 'conflict', 'in', 'affected', 'areas'], ['as', 'with', 'the', 'first', 'generation', ',', 'the', 'cars', 'are', 'almost', 'identical', 'in', 'outside', 'appearance', ',', 'but', 'have', 'different', 'front', 'end', 'designs', '.'], ['some', 'of', 'the', 'road', 'system', 'is', 'barely', 'usable', ',', 'especially', 'in', 'high', 'rainfall', 'areas', 'of', 'the', 'south', '.'], ['at', 'dawn', 'on', '7', 'march', ',', 'tenggarong', 'came', 'under', 'a', 'fierce', 'attack', '.'], ['in', 'this', ',', 'the', 'largest', 'of', 'the', 'temple', 'courts', ',', 'one', 'could', 'see', 'constant', 'dancing', ',', 'singing', 'and', 'music', '.'], ['under', 'the', 'terms', 'of', 'the', 'coalition', 'agreement', 'between', 'reform', 'and', 'the', 'liberal', \"'s\", 'a', 'condition', 'was', 'made', 'not', 'to', 'oppose', 'each', 'other', 'in', 'by-elections', 'for', 'deceased', 'or', 'retiring', 'mp', \"'s\", 'from', 'their', 'own', 'parties', '.'], ['a', 'book', 'of', 'the', 'paintings', ',', '``', 'nelson', \"'s\", 'ships', ':', 'a', 'trafalgar', 'tribute', \"''\", '.'], ['it', 'heard', 'reports', 'of', 'abuses', 'of', 'the', 'new', 'system', '.'], ['during', 'the', 'yalta', 'conference', 'it', 'was', 'suggested', 'as', 'part', 'of', 'the', 'roosevelt', 'plan', 'to', 'create', 'a', 'central', 'german', 'state', 'which', 'would', 'have', 'combined', 'roughly', 'the', 'areas', 'formerly', 'covered', 'by', 'the', 'saxon', 'states', 'of', 'central', 'germany', '.'], ['when', 'spangler', 'runs', 'his', 'hand', 'over', 'the', '``', 'duct', 'tape', \"''\", ',', 'he', 'feels', 'a', 'smooth', 'surface', 'rather', 'than', 'the', 'rough', 'outside', 'of', 'the', 'tape', '.'], ['the', 'main', 'disadvantage', 'of', 'the', 'steam', 'boats', ',', 'though', ',', 'was', 'their', 'high', 'operating', 'costs', '.'], ['he', 'has', 'since', 'worked', 'on', 'productions', 'including', 'god', ',', 'biloxi', 'blues', ',', 'the', 'hairy', 'ape', ',', 'sleuth', ',', 'the', 'pied', 'piper', 'of', 'hamlin', ',', 'and', 'jesus', 'christ', 'superstar', '.'], ['this', 'fountain', 'is', 'regularly', 'frequented', 'by', 'the', 'local', 'community', 'and', 'is', 'considered', 'a', 'historical', 'landmark', 'in', 'an', 'area', 'that', 'finds', 'itself', 'becoming', 'more', 'and', 'more', 'detached', 'from', 'its', 'history', '.'], ['he', 'was', 'instrumental', 'in', 'the', 'disarming', 'of', 'cash', 'in', 'transit', 'security', 'guards', 'in', '1', '9', '6', '4', ',', 'having', 'always', 'disliked', 'the', 'idea', 'of', 'private', 'guards', 'carrying', 'firearms', '.'], ['at', 'the', '2', '0', '0', '6', 'census', ',', 'its', 'population', 'was', '3', '6', '3', ',', 'in', '6', '4', 'families', '.'], ['in', 'december', '2', '0', '1', '7', ',', 'the', 'group', 'announced', 'its', 'plans', 'to', 'launch', 'a', 'new', 'restaurant', 'concept', ',', 'no', 'pizza', ',', 'aimed', 'at', 'international', 'markets', '.'], ['valid', 'enrichment', 'programs', 'help', 'the', 'scholar', 'grow', 'intellectually', 'and', 'help', 'the', 'scholar', 'prepare', 'for', 'a', 'career', ',', 'graduate', 'school', ',', 'or', 'a', 'senior', 'thesis', '.'], ['jamy', 'amarilis', 'franco', 'núñez', '(', 'born', '1', 'july', '1', '9', '9', '1', ')', 'is', 'a', 'guatemalan', 'race', 'walker', '.'], ['ms', '``', 'rotterdam', \"''\", 'shares', 'her', 'name', 'with', 'six', 'previous', 'holland', 'america', 'ships', 'and', 'will', 'become', 'the', 'company', \"'s\", 'new', 'flagship', 'upon', 'her', 'debut', '.'], ['written', 'by', 'jerome', 'bixby', 'and', 'directed', 'by', 'marvin', 'chomsky', ',', 'it', 'was', 'first', 'broadcast', 'november', '1', ',', '1', '9', '6', '8', '.'], ['the', 'protozoal', 'parasite', '``', 'trichomonas', 'gallinae', \"''\", 'was', 'known', 'to', 'infect', 'pigeons', 'and', 'raptors', ',', 'but', 'beginning', 'in', 'great', 'britain', 'in', '2', '0', '0', '5', ',', 'carcasses', 'of', 'dead', 'european', 'greenfinches', 'and', 'common', 'chaffinches', 'were', 'found', 'to', 'be', 'infected', 'with', 'the', 'parasite', '.'], ['silver', 'bay', 'elementary', 'school', ',', 'part', 'of', 'the', 'toms', 'river', 'regional', 'schools', ',', 'is', 'located', 'on', 'silver', 'bay', 'road', '.'], ['according', 'to', 'the', 'historian', 'juega', 'puig', ',', 'the', 'walls', 'of', 'pontevedra', 'were', 'extended', 'three', 'times', ',', 'the', 'first', 'between', '1', '3', '0', '0', 'and', '1', '3', '2', '5', 'and', 'the', 'last', 'between', '1', '4', '5', '0', 'and', '1', '4', '8', '0', '.'], ['the', 'man-made', 'factors', 'included', 'political', 'rivalries', 'between', 'members', 'of', 'the', 'german', 'confederation', ',', 'particularly', 'between', 'the', 'austrians', 'and', 'the', 'prussians', ',', 'and', 'socio-economic', 'competition', 'among', 'the', 'commercial', 'and', 'merchant', 'interests', 'and', 'the', 'old', 'land-owning', 'and', 'aristocratic', 'interests', '.'], ['its', 'location', 'allows', 'the', 'upper', 'fort', 'to', 'control', 'the', 'valley', ',', 'including', 'the', 'railroad', 'viaduct', ',', 'and', 'to', 'protect', 'the', 'lower', 'fort', '.'], ['tasman', 'called', 'it', '``', 'rotterdam', \"''\", 'island', ',', 'after', 'the', 'city', 'of', 'rotterdam', ',', 'a', 'major', 'port', 'in', 'the', 'netherlands', ',', 'and', 'noted', 'in', 'his', 'maps', 'the', 'indigenous', 'name', 'of', '``', 'amamocka', \"''\", ',', 'a', 'misspelling', 'of', '``', 'a', 'nomuka', \"''\", ',', '``', 'a', \"''\", 'being', 'a', 'subject-indicating', 'article', '.'], ['one', 'theory', 'suggests', 'that', 'because', 'of', 'this', ',', 'boys', 'have', 'more', 'opportunities', 'to', 'exhibit', 'their', 'strength', 'and', 'skill', 'and', 'compare', 'theirs', 'to', 'that', 'of', 'their', 'peers', 'during', 'these', 'competitive', 'activities', '.'], ['his', 'business', 'was', 'largely', 'of', 'an', 'investment', 'class', ',', 'and', 'he', 'discouraged', 'speculative', 'ventures', 'on', 'the', 'part', 'of', 'his', 'clients', ',', 'grounding', 'his', 'reputation', 'in', 'financial', 'circles', 'as', 'one', 'of', 'the', 'highest', 'integrity', '.'], ['it', 'is', 'possible', 'that', 'the', 'document', 'may', 'be', 'changed', 'from', 'time', 'to', 'time', 'like', 'when', 'other', 'teams', 'introduce', 'new', 'components', 'or', 'remove', 'them', '.'], ['the', 'land', 'surrounding', 'dellville', 'is', 'primarily', 'agricultural', 'as', 'is', 'evident', 'by', 'satellite', 'imagery', ',', 'as', 'well', 'as', 'historical', 'documents', 'pertaining', 'to', 'the', 'founding', 'of', 'the', 'village', '.'], ['caps', ',', 'usually', 'liquid-', 'or', 'gas-tight', ',', 'cover', 'the', 'otherwise', 'open', 'end', 'of', 'a', 'pipe', '.'], ['the', 'other', 'prisoners', 'goad', 'doork', 'into', 'performing', 'for', 'them', ',', 'but', 'he', 'does', 'not', 'realize', 'he', 'actually', 'is', 'not', 'very', 'good', '.'], ['the', 'song', 'was', 'written', 'by', 'eve', 'lawson', ',', 'the', 'wife', 'of', 'technical', 'sergeant', 'lawrence', 'e.', 'lawson', ',', 'while', 'they', 'were', 'stationed', 'at', 'niagara', 'falls', '.'], ['mas', 'became', 'the', 'first', 'airline', 'in', 'southeast', 'asia', 'to', 'serve', 'south', 'america', 'via', 'its', 'flights', 'to', 'buenos', 'aires', ',', 'argentina', '.'], ['elsewhere', ',', 'the', 'escaped', 'wildcat', 'stalks', 'around', 'the', 'park', '.'], ['hanging', 'by', 'his', 'throat', 'and', 'lacking', 'an', 'adamantium', 'windpipe', ',', 'he', 'releases', 'the', 'chain', 'and', 'disappears', 'as', 'he', 'falls', 'into', 'the', 'dark', 'jungle', '.'], ['it', 'returned', 'one', 'member', 'of', 'parliament', '(', 'mp', ')', 'to', 'the', 'house', 'of', 'commons', 'of', 'the', 'parliament', 'of', 'the', 'united', 'kingdom', 'from', '1', '8', '8', '5', 'to', '1', '9', '2', '2', '.'], ['it', 'is', 'the', 'seat', 'of', 'the', 'gmina', '(', 'administrative', 'district', ')', 'called', 'gmina', 'babiak', '.'], ['the', 'hermitage', 'chapel', ',', 'helzer', 'klaus', ',', 'revered', 'as', 'a', 'pilgrimage', 'site', 'in', 'its', 'own', 'right', ',', 'now', 'contains', 'a', 'plaster', 'copy', 'of', 'this', 'original', 'altarpiece', '.'], ['the', 'largest', 'cities', 'in', 'the', 'east', 'franconian', 'area', 'are', 'nuremberg', 'and', 'würzburg', '.'], ['after', 'juan', 'rodríguez', 'de', 'villafuerte', 'was', 'defeated', 'by', 'the', 'indigenous', 'in', 'the', 'valley', 'of', 'tecomán', '(', 'in', 'the', 'present-day', 'state', 'of', 'colima', ')', 'in', '1', '5', '2', '2', ',', 'cortés', 'sent', 'gonzalo', 'de', 'sandoval', 'there', 'with', 'instructions', 'to', 'conquer', 'the', 'territory', 'and', 'found', 'a', 'town', '.'], ['on', 'december', '7', ',', '2', '0', '1', '6', ',', 'president-elect', 'donald', 'trump', 'announced', 'that', 'he', 'would', 'nominate', 'mcmahon', 'to', 'be', 'the', 'administrator', 'of', 'the', 'small', 'business', 'administration', '.'], ['``', 'epiperipatus', 'nicaraguensis', \"''\", 'and', '``', 'epiperipatus', 'tucupi', \"''\", 'are', 'considered', '``', 'nomina', 'dubia', \"''\", 'by', 'oliveira', 'et', 'al', '.'], ['the', 'airfield', 'hosts', 'an', 'annual', 'concert', 'called', '``', 'music', 'in', 'the', 'air', \"''\", '.'], ['2', 'july', '1', '9', '2', '3', '-', '2', '0', 'february', '2', '0', '2', '0', ')', ',', 'elder', 'daughter', 'of', 'curt', 'david', 'von', 'arnim', ',', 'and', 'his', 'wife', ',', 'stephanie', 'von', '.'], ['all', 'of', 'the', 'functionalities', 'of', 'these', 'early', 'version', 'features', 'are', 'performed', 'by', 'new', 'fortran', '9', '5', 'features', '.'], ['from', '1', '9', '9', '3', 'to', '2', '0', '0', '2', ',', 'de', 'la', 'renta', 'designed', 'the', 'haute', 'couture', 'collection', 'for', 'the', 'house', 'of', 'balmain', ',', 'becoming', 'the', 'first', 'dominican', 'to', 'design', 'for', 'a', 'french', 'couture', 'house', '.'], ['breeding', 'takes', 'place', 'in', 'late', 'spring', 'and', 'early', 'summer', 'in', 'explosive', 'breeding', 'events', '.'], ['he', 'later', 'returned', 'to', 'naples', 'and', 'was', 'educated', 'at', 'the', 'city', \"'s\", 'san', 'pietro', 'a', 'majella', 'conservatory', 'and', 'later', 'the', 'university', 'of', 'bologna', 'studying', 'literature', 'under', 'famed', 'italian', 'poet', 'giosuè', 'carducci', '.'], ['plumage', 'coloration', 'is', 'varied', 'with', 'the', 'majority', 'having', 'mainly', 'dark', 'plumage', ',', 'some', 'species', 'being', 'black-and-white', ',', 'and', 'a', 'few', 'being', 'quite', 'colorful', '.'], ['however', 'the', 'new', 'navigation', 'soon', 'faced', 'competition', 'from', 'better', 'roads', 'and', 'the', 'railway', ',', 'which', 'appeared', 'in', 'the', 'region', 'in', '1', '8', '7', '4', '.'], ['mcmullan', 'praised', 'mcgregor', \"'s\", 'acting', 'performances', 'during', 'the', 'darker', 'stories', 'and', 'hoped', 'the', 'writers', 'would', 'let', 'mark', 'be', 'happy', 'in', 'the', 'future', 'by', 'giving', 'him', 'a', 'child', '.'], ['they', 'have', 'three', 'sons', 'named', 'jesse', '(', 'born', '2', '0', '0', '3', ')', ',', 'marmaduke', '(', 'born', '2', '0', '0', '6', ')', 'and', 'huckleberry', '(', 'born', '2', '0', '0', '9', ')', '.'], ['a', 'plaster', 'cast', 'model', 'of', 'the', 'local', 'nurse', ',', 'sister', 'dora', ',', 'which', 'had', 'been', 'located', 'in', 'the', 'foyer', 'of', 'the', 'council', 'house', 'for', 'many', 'years', ',', 'was', 'moved', 'to', 'walsall', 'manor', 'hospital', 'in', 'september', '2', '0', '1', '0', '.'], ['thunder', 'mask', '(', 'サンダーマスク', '``', 'sandā', 'masuku', \"''\", ')', 'is', 'a', '1', '9', '7', '2', 'tokusatsu', 'series', 'produced', 'by', 'nippon', 'television', '.'], ['ky', '3', '6', '3', '0', 'intersects', 'the', 'southern', 'terminus', 'of', 'ky', '2', '9', '0', 'and', 'heads', 'into', 'annville', ',', 'where', 'it', 'passes', 'through', 'residential', 'areas', '.'], ['rahilly', 'played', 'his', 'early', 'football', 'at', 'south', 'warrnambool', 'but', 'was', 'recruited', 'from', 'the', 'geelong', 'falcons', 'in', 'the', 'tac', 'cup', '.'], ['the', 'track', 'was', 'released', 'on', '1', '3', 'june', '2', '0', '0', '8', 'as', 'the', 'album', \"'s\", 'second', 'single', ',', 'debuting', 'to', 'critical', 'acclaim', 'and', 'commercial', 'success', '.'], ['this', 'will', 'be', 'made', 'possible', 'by', 'extending', 'the', 'existing', 'platform', '5', 'to', '4', '0', '0', 'metres', ',', 'allowing', 'services', 'to', 'split', 'and', 'serve', 'these', 'additional', 'destinations', '.'], ['``', 'mary', 'ann', \"''\", ',', 'bexfield', ',', 'master', ',', 'came', 'into', 'dover', '.'], ['the', 'grade', 'school', 'program', 'advocates', 'information', 'literacy', 'as', 'its', 'approach', 'to', 'the', 'basic', 'curriculum', 'required', 'by', 'the', 'department', 'of', 'education', '.'], ['in', 'june', '2', '0', '1', '7', ',', 'the', 'company', 'reiterated', 'its', 'support', 'for', 'the', 'paris', 'agreement', '.'], ['confronting', 'defendants', ',', 'politicians', ',', 'and', 'police', ',', 'verón', \"'s\", 'mother', 'related', 'how', 'she', 'discovered', 'the', 'business', 'of', 'human', 'trafficking', ',', 'and', 'declared', 'that', 'the', 'only', 'thing', 'she', 'looks', 'for', 'is', 'the', 'return', 'of', 'her', 'daughter', '.'], ['only', 'twice', 'during', 'this', 'extended', 'period', 'was', '``', 'china', 'cat', 'sunflower', \"''\", 'played', 'without', 'this', 'pairing', '.'], ['the', 'thames', 'valley', 'is', 'a', 'technology', 'hub', 'centred', 'around', 'reading', ',', 'considered', 'to', 'stretch', 'as', 'far', 'out', 'as', 'swindon', ',', 'oxford', 'and', 'slough', '.'], ['harry', 'smith', 'was', 'acquitted', 'while', 'spittal', 'and', 'alf', 'smith', 'were', 'each', 'fined', '$', '2', '0', '.'], ['the', 'site', 'was', 'named', '``', 'firs', 'park', \"''\", 'after', 'the', 'street', 'in', 'which', 'it', 'was', 'located', 'and', 'was', 'officially', 'opened', 'in', '1', '9', '2', '1', 'and', 'would', 'be', 'the', 'club', \"'s\", 'home', 'for', 'the', 'next', '8', '7', 'years', '.'], ['3', '0', 'may', '1', '9', '8', '7', ':', 'hemma', 'greedharry', '(', '1', '0', ')', '.'], ['on', '2', '1', 'march', '1', '6', '1', '7', 'he', 'was', 'appointed', 'guardian', 'of', 'thomas', 'rolfe', ',', 'the', 'two-year-old', 'son', 'of', 'john', 'rolfe', 'and', 'rebecca', '(', 'pocahontas', ')', '.'], ['she', 'remembers', 'that', 'he', 'was', 'trying', 'to', 'find', 'out', 'more', 'about', 'the', 'colony', \"'s\", 'past', 'and', 'asks', 'her', 'friend', 'nicolai', 'lorgen', ',', 'a', 'chosen', ',', 'to', 'retrieve', 'the', 'information', 'from', 'his', 'satt', \"'s\", 'archives', '.'], ['aunt', 'jemima', 'is', 'joined', 'by', 'her', 'husband', ',', 'uncle', 'rastus', '(', 'later', 'renamed', 'uncle', 'mose', 'to', 'avoid', 'confusion', 'with', 'the', 'cream', 'of', 'wheat', 'character', ',', 'while', 'uncle', 'mose', 'was', 'first', 'introduced', 'as', 'the', 'plantation', 'butler', ')', '.'], ['he', 'was', 'accompanied', 'by', 'a', 'crew', 'of', 'three', 'aboard', 'the', 'sailboat', ',', 'where', 'he', 'could', 'rest', 'and', 'eat', 'between', 'each', 'swimming', 'period', '.'], ['the', 'four', 'surviving', 'children', 'were', 'close', 'to', 'each', 'other', 'and', 'to', 'their', 'parents', ',', 'who', 'were', 'devoted', 'to', 'them', '.'], ['one', 'officer', 'and', 'twenty-seven', 'other', 'ranks', 'answered', 'roll', 'call', 'the', 'next', 'day', '.'], ['sophie', 'dymond', ',', 'a', 'magazine', 'editor', 'in', 'new', 'york', 'city', ',', 'comes', 'home', 'to', 'cheyenne', 'after', 'the', 'death', 'of', 'her', 'sister', ',', 'helen', '.'], ['kentucky', 'route', '6', '1', '6', '0', '(', 'ky', '6', '1', '6', '0', ')', 'is', 'a', 'supplemental', 'road', 'in', 'the', 'city', 'of', 'louisville', 'in', 'jefferson', 'county', '.'], ['that', 'night', 'one-eye', 'returns', ',', 'and', 'wanderer', 'engages', 'her', 'in', 'a', 'fight', 'to', 'the', 'death', '.'], ['the', 'second', 'chapter', 'is', 'the', 'bill', 'of', 'rights', 'and', 'it', 'describes', 'the', 'democratic', 'freedoms', 'that', 'the', 'state', 'must', 'uphold', '.'], ['after', 'peter', \"'s\", 'son', 'simon', 'barlow', '(', 'alex', 'bain', ')', 'finds', 'a', 'voice', 'message', 'on', 'his', 'phone', 'of', 'peter', 'apologising', 'and', 'sounding', 'frantic', 'on', 'the', 'night', 'that', 'ken', 'was', 'pushed', 'down', 'the', 'stairs', ',', 'everybody', 'automatically', 'assumes', 'that', 'he', 'is', 'behind', 'ken', \"'s\", 'attack', '.'], ['khoza', 'denied', 'this', ',', 'ferguson', 'produced', 'documents', 'to', 'the', 'contrary', ',', 'and', 'leaked', 'evidence', 'of', 'khoza', \"'s\", 'purported', 'involvement', 'was', 'reported', 'to', 'have', 'had', '``', 'worrying', 'discrepancies', \"''\", '.'], ['his', 'early', 'work', 'was', 'on', 'the', 'automatic', 'computing', 'engine', 'and', 'english', 'electric', 'deuce', 'computers', '.'], ['as', 'an', 'author/journalist', ',', 'abanes', 'specializes', 'in', 'the', 'area', 'of', 'socio-religious', 'issues', ',', 'cults', ',', 'the', 'occult', ',', 'world', 'religions', ',', 'the', 'entertainment', 'industry', ',', 'and', 'pop', 'culture', '.'], ['in', 'his', 'thesis', ',', '``', 'the', 'equivalent', 'source', 'method', 'for', 'electromagnetic', 'scattering', 'analysis', 'and', 'its', 'geophysical', 'application', \"''\", ',', 'annan', 'developed', 'the', 'plate', 'program', 'used', 'in', 'transient', 'electromagnetics', 'to', 'mathematically', 'model', 'the', 'electromagnetic', 'response', 'of', 'finite', 'thin', 'conducting', 'plates', '.'], ['during', 'the', 'bridge', 'and', 'final', 'chorus', 'of', 'the', 'song', ',', 'scenes', 'of', 'rihanna', 'from', 'throughout', 'the', 'video', 'are', 'intercut', 'with', 'each', 'other', '.'], ['the', 'new', 'envoy', 'arrived', 'in', 'the', 'united', 'states', 'with', 'his', 'wife', 'on', 'april', '7', ',', '1', '9', '3', '8', ',', 'being', 'greeted', 'by', 'a', 'number', 'of', 'romanians', ',', 'including', 'his', 'brother', 'ştefan', '(', '1', '8', '9', '4', '-', '1', '9', '6', '7', ')', ',', 'active', 'in', 'the', 'community', '.'], ['there', 'is', 'also', 'a', 'wide', 'variation', 'in', 'the', 'shape', 'of', 'the', 'shell', '.'], ['the', 'most', 'common', 'situation', 'in', 'which', 'a', 'mix-minus', 'is', 'used', 'is', 'when', 'a', 'telephone', 'hybrid', 'is', 'connected', 'to', 'a', 'console', ',', 'usually', 'at', 'a', 'radio', 'station', '.'], ['the', 'discount', 'window', 'is', 'available', 'to', 'meet', 'liquidity', 'needs', '.', \"''\"], ['old', 'san', 'juan', '(', ')', 'is', 'a', 'historic', 'district', 'located', 'at', 'the', '``', 'northwest', 'triangle', \"''\", 'of', 'the', 'islet', 'of', 'san', 'juan', '.'], ['he', 'appeared', 'in', 'over', '1', '0', '0', 'films', ',', 'including', 'over', '8', '0', 'feature', 'films', '.'], ['whilst', 'at', 'warrington', 'he', 'was', 'given', 'a', '1', '0', 'month', 'ban', 'for', 'steroid', 'use', 'for', 'which', 'he', 'was', 'sacked', 'by', 'the', 'wolves', '.'], ['an', 'equivalent', 'position', 'existed', 'in', 'ireland', 'between', '1', '8', '6', '7', 'and', '1', '9', '0', '4', '(', 'vice-chancellor', 'of', 'ireland', ')', 'when', 'the', 'office', 'was', 'abolished', '.'], ['these', 'statements', 'have', 'not', 'been', 'evaluated', 'by', 'the', 'food', 'and', 'drug', 'administration', '.'], ['mikhalkov', 'wrote', 'new', 'lyrics', 'in', '1', '9', '7', '0', ',', 'but', 'they', 'were', 'not', 'submitted', 'to', 'the', 'presidium', 'of', 'the', 'supreme', 'soviet', 'until', 'may', '2', '7', ',', '1', '9', '7', '7', '.'], ['on', 'the', '2', '5', 'th', 'of', 'august', '``', 'sexy', ',', 'sexy', ',', 'sexy', \"''\", 'reached', 'number', 'six', 'on', 'the', 'chart', '.'], ['the', 'crater', 'is', 'named', 'after', 'the', '1', '9', 'th-century', 'german', 'astronomer', 'friedrich', 'bernhard', 'gottfried', 'nicolai', '.'], ['the', 'shareholders', 'of', 'the', 'company', ',', 'which', 'was', 'renamed', 'willowvale', 'mazda', 'motor', 'industries', ',', 'are', 'the', 'state-owned', 'motec', 'holdings', '(', '5', '8', '%', ')', ',', 'mazda', 'motor', '(', '2', '5', '%', ')', ',', 'itochu', '(', '8', '%', ')', 'and', 'an', 'employee', 'benefit', 'fund', '(', '9', '%', ')', '.'], ['in', 'connection', 'with', 'the', 'raid', 'russian', 'politician', 'vladislav', 'reznik', 'was', 'investigated', 'a', 'money', 'laundering', 'scheme', 'involved', 'vera', 'metallurgica', ',', 'a', 'subsidiary', 'of', 'ural', 'mining', 'and', 'metallurgical', 'company', '(', 'ummc', ')', 'which', 'oleg', 'deripaska', 'and', 'iskander', 'makhmudov', 'were', 'the', 'main', 'owners', 'in', 'the', 'early', '2', '0', '0', '0', 's', '.'], ['balasaraswathi', 'was', 'born', 'in', 'venkatagiri', 'in', '1', '9', '2', '8', '.'], ['the', 'congressman', 'shared', 'his', 'mount', 'pleasant', ',', 'washington', ',', 'd.c.', 'house', 'with', 'his', 'cousin', ',', 'robert', 'm.', 'la', 'follette', 'and', 'his', 'family', '.'], ['an', 'example', 'to', 'further', 'explain', 'timeliness', 'is', 'as', 'follows', ':'], ['in', 'wiggiswil', 'about', '4', '4', 'or', '(', '4', '5', '.', '4', '%', ')', 'of', 'the', 'population', 'have', 'completed', 'non-mandatory', 'upper', 'secondary', 'education', ',', 'and', '2', '4', 'or', '(', '2', '4', '.', '7', '%', ')', 'have', 'completed', 'additional', 'higher', 'education', '(', 'either', 'university', 'or', 'a', '``', 'fachhochschule', \"''\", ')', '.'], ['robert-houdin', 'explained', 'a', 'mechanism', 'by', 'which', 'a', 'card', 'sharp', 'could', 'cheat', 'at', 'lansquenet', ',', 'by', 'palming', 'and', 'then', 'placing', 'atop', 'the', 'deck', 'a', 'packet', 'of', 'cards', 'in', 'prepared', 'order', '.'], ['it', 'allowed', 'its', 'western', 'claims', 'to', 'become', 'the', 'state', 'of', 'kentucky', 'in', '1', '7', '9', '0', '.'], ['as', 'the', 'building', 'operations', 'were', 'progressing', ',', 'the', 'persian', 'army', 'rose', 'up', '.'], ['she', 'campaigned', 'for', 'paddy', 'webb', ',', 'the', 'socialist', 'candidate', 'in', 'grey', ',', 'at', 'the', '1', '9', '1', '1', 'general', 'election', '.'], ['this', 'was', 'in', 'place', 'from', '6', 'august', '1', '8', '6', '2', 'until', '3', '0', 'october', '1', '8', '6', '3', '.'], ['disney', 'had', 'already', 'begun', 'working', 'out', 'the', 'details', 'for', 'the', 'segments', ',', 'and', 'showed', 'greater', 'enthusiasm', 'and', 'eagerness', 'as', 'opposed', 'to', 'his', 'anxiety', 'while', 'starting', 'on', '``', 'pinocchio', \"''\", '.'], ['undergraduate', 'scholars', 'are', 'also', 'given', 'the', 'opportunity', 'to', 'use', 'up', 'to', '7', '0', '0', '0', 'dollars', 'for', 'a', 'summer', 'enrichment', 'program', '.'], ['webb', 'came', 'out', 'in', 'full', 'support', 'of', 'hillary', 'clinton', 'in', 'the', '2', '0', '1', '6', 'democratic', 'primary', 'and', 'condemned', 'bernie', 'sanders', 'and', 'his', 'supporters', 'for', 'breaking', 'the', 'unity', 'of', 'the', 'democratic', 'party', '.'], ['supposedly', ',', 'rita', 'was', 'such', 'a', 'fashion', 'plate', 'that', 'when', 'she', 'learned', 'her', 'husband', 'was', 'having', 'an', 'affair', 'with', 'a', 'poorly', 'dressed', 'woman', ',', 'she', 'sent', 'the', 'mistress', 'to', 'callot', 'soeurs', 'for', 'new', 'clothing', '.'], ['head', 'coach', 'jay', 'gruden', 'named', 'brown', 'and', 'mason', 'foster', 'the', 'starting', 'inside', 'linebackers', 'to', 'begin', 'the', 'regular', 'season', '.'], ['george', 'beahm', 'called', 'it', '``', 'quintessential', 'king', \"''\", 'and', '``', 'a', 'horrific', 'little', 'gem', 'of', 'a', 'story', \"''\", '.'], ['the', 'largest', 'amount', 'of', 'opposition', 'and', 'resentment', 'towards', 'native', 'americans', \"'\", 'fishing', 'and', 'hunting', 'rights', 'stems', 'from', 'the', 'pacific', 'northwest', '.'], ['it', 'was', 'released', 'with', 'little', 'advanced', 'notice', 'in', 'early', 'november', '2', '0', '1', '2', '.'], ['afterwards', ',', 'film', 'offers', 'were', 'in', 'short', 'supply', 'for', 'glendenning', '.'], ['he', 'moved', 'to', 'chicago', 'to', 'start', 'working', 'as', 'an', 'associate', 'professor', 'at', 'the', 'department', 'of', 'sociology', '.'], ['the', 'album', 'contains', 'songs', 'from', 'the', 'group', \"'s\", 'previous', 'studio', 'albums', 'that', 'were', 'translated', 'into', 'english', 'for', 'the', 'release', ',', 'as', 'well', 'as', 'new', 'songs', 'that', 'were', 'recorded', 'exclusively', 'for', 'the', 'album', '.'], ['in', 'the', 'pilot', 'episode', 'of', '``', 'destined', 'to', 'be', 'yours', \"''\", 'in', 'february', '2', '0', '1', '7', ',', '``', 'aking', 'tadhana', \"''\", 'topped', 'the', 'itunes', 'ph', 'list', 'of', 'songs', '.'], ['hill', 'continued', 'to', 'race', 'motorcycles', 'and', 'in', '1', '9', '7', '2', 'and', 'won', 'the', 'texas', 'state', 'road', 'racing', 'championship', '.'], ['its', 'design', 'incorporates', 'sustainable', 'technologies', 'including', 'solar', 'panels', ',', 'a', 'bio-diverse', 'green', 'roof', ',', 'and', 'living', 'walls', 'irrigated', 'by', 'rainwater', 'harvesting', '.'], ['thompson', 'was', 'confirmed', 'by', 'the', 'united', 'states', 'senate', 'on', 'september', '2', '6', ',', '1', '9', '8', '0', ',', 'and', 'received', 'his', 'commission', 'on', 'september', '2', '9', ',', '1', '9', '8', '0', '.'], ['aircel', 'offered', 'poor', 'network', 'coverage', 'in', 'delhi', '&', 'amp', ';', 'ncr', 'circle', '.'], ['experience', 'in', 'the', 'united', 'states', 'suggests', 'that', 'these', 'strains', 'are', 'transmissible', 'within', 'families', 'and', 'in', 'community', 'settings', 'such', 'as', 'prisons', ',', 'schools', 'and', 'sport', 'teams', '.'], ['she', 'ran', 'aground', 'on', 'the', 'goodwin', 'sands', 'in', 'november', '1', '9', '9', '1', ',', 'bringing', 'the', 'era', 'of', 'offshore', 'pirate', 'radio', 'in', 'europe', 'to', 'an', 'end', '.'], ['``', 'de', 'stratemakeropzeeshow', \"''\", 'was', 'followed', 'in', '1', '9', '7', '9', 'by', '``', 'j.j.', 'de', 'bom', 'voorheen', 'de', 'kindervriend', \"''\", ',', 'in', 'which', 'van', 'dort', ',', 'staartjes', 'and', 'prinsen', 'also', 'played', 'the', 'lead', 'roles', '.'], ['ramstein', 'air', 'base', 'also', 'served', 'as', 'temporary', 'housing', 'for', 'the', 'united', 'states', 'men', \"'s\", 'national', 'soccer', 'team', 'during', 'the', '2', '0', '0', '6', 'world', 'cup', '.'], ['at', 'the', '2', '0', '1', '6', 'census', ',', 'there', 'were', '1', '1', ',', '2', '2', '2', 'residents', 'in', 'hinchinbrook', '.'], ['the', 'reason', 'for', 'the', 'orange', 'lantern', 'avatars', 'disappearing', 'is', 'revealed', 'to', 'be', 'the', 'black', 'lantern', 'rings', 'reviving', 'larfleeze', \"'s\", 'many', 'victims', 'on', 'his', 'world', 'of', 'okaara', ',', 'forcing', 'him', 'to', 'use', 'his', 'orange', 'constructs', 'to', 'defend', 'himself', '.'], ['a', 'spokesman', 'for', 'e.on', ',', 'which', 'was', 'granted', 'a', 'high', 'court', 'injunction', 'giving', 'police', 'the', 'power', 'to', 'arrest', 'anyone', 'who', 'tried', 'to', 'enter', 'the', 'site', ',', 'said', ':', '``', 'there', 'are', \"n't\", 'any', 'winners', 'or', 'losers', 'here', '.'], ['distracted', ',', 'abby', 'is', 'struck', 'by', 'a', 'bus', ',', 'while', 'a', 'little', 'boy', 'watches', 'from', 'inside', '.'], ['named', 'after', 'a', 'superficial', 'resemblance', 'to', 'the', 'european', 'robin', ',', 'the', 'males', 'of', 'many', 'species', 'sport', 'bright', 'red', 'or', 'pink', 'on', 'their', 'plumage', '.'], ['nail', 'deformities', 'may', 'also', 'be', 'present', 'as', 'well', 'as', 'hair', 'follicle', 'keratosis', 'and', 'follicular', 'hyperkeratosis', '.'], ['on', 'january', '2', '3', ',', '2', '0', '1', '9', ',', 'matthews', 'was', 'named', 'to', 'his', 'first', 'pro', 'bowl', 'as', 'a', 'replacement', 'for', 'redskins', 'offensive', 'tackle', 'trent', 'williams', '.'], ['this', 'cpu', 'design', 'technique', 'is', 'also', 'known', 'as', '``', 'interleaved', \"''\", 'or', '``', 'fine-grained', \"''\", 'temporal', 'multithreading', '.'], ['he', 'and', 'his', 'wife', 'attended', 'the', 'concerts', 'which', 'included', 'his', 'russian', 'liturgy', '``', 'the', 'sealed', 'angel', \"''\", 'for', 'choir', 'and', 'flute', ',', 'performed', 'in', 'eberbach', 'abbey', '.'], ['special', 'relativity', 'is', 'restricted', 'to', 'the', 'flat', 'spacetime', 'known', 'as', 'minkowski', 'space', '.'], ['while', 'the', 'stations', 'have', 'all', 'sustained', 'systematic', 'alterations', ',', 'they', 'have', 'retained', ',', 'in', 'varying', 'degrees', ',', 'most', 'of', 'their', 'original', 'fabric', '.'], ['stump', 'have', 'been', 'referred', 'to', 'as', '``', 'a', 'significant', 'precursor', 'to', 'post-rock', \"''\", 'due', 'to', 'the', '``', 'strictness', \"''\", 'of', 'the', 'band', \"'s\", 'avant-garde', 'approach', '.'], ['in', '1', '4', '3', '2', ',', 'the', 'university', ',', 'pursuant', 'to', 'papal', 'and', 'imperial', 'requests', ',', 'sent', 'two', 'delegates', 'to', 'the', 'council', 'of', 'basle', 'who', 'faithfully', 'supported', 'the', 'legitimate', 'pope', '.'], ['edema', 'of', 'the', 'airway', 'can', 'make', 'laryngoscopy', 'difficult', ',', 'and', 'therefore', 'in', 'those', 'with', 'suspected', 'thermal', 'burns', ',', 'intubation', 'is', 'recommended', 'in', 'attempts', 'to', 'quickly', 'secure', 'an', 'airway', 'prior', 'to', 'progression', 'of', 'the', 'swelling', '.'], ['after', 'the', 'departure', 'of', 'house', ',', 'alvie', 'decides', 'he', 'wants', 'to', 'get', 'better', 'and', 'goes', 'back', 'on', 'his', 'medication', '.'], ['large', 'areas', 'also', 'became', 'an', 'industrial', 'landscape', 'as', 'a', 'result', 'of', 'open-cast', ',', 'lignite', 'mining', '.'], ['the', 'expected', 'lack', 'of', 'volume', 'combined', 'with', 'extensive', 'construction', 'cost', 'overruns', 'has', 'prompted', 'several', 'petroleum', 'refining', 'companies', 'to', 'sue', 'transcanada', '.'], ['rebecca', 'and', 'johnny', 'keep', 'using', 'others', 'to', 'get', 'a', 'reaction', 'out', 'of', 'each', 'other', 'including', 'sam', 'and', 'bobby', '.'], ['after', 'vice', 'president', 'félix', 'paiva', \"'s\", 'refusal', 'to', 'assume', 'office', ',', 'the', 'congress', 'placed', 'senator', 'eusebio', 'ayala', ',', 'a', 'moderate', 'gondra', 'supporter', 'into', 'interim', 'presidency', '.'], ['the', 'film', 'was', 'released', 'in', '4', '7', 'theatres', 'in', 'north', 'america', '.'], ['as', 'of', 'january', '2', '0', '2', '0', \"'philosophical\", 'questions', ':', 'theological', 'answers', \"'\", 'has', 'not', 'been', 'published', '.'], ['back', 'in', 'new', 'york', ',', 'blair', 'learns', 'that', 'planning', 'a', 'royal', 'wedding', 'can', 'be', 'stressful', ',', 'especially', 'with', 'a', 'baby', 'on', 'the', 'way', ',', 'and', 'dan', 'discovers', 'the', 'consequences', 'of', 'writing', 'candidly', 'about', 'his', 'closest', 'friends', '.'], ['``', 'medora', \"''\", 'was', 'installed', 'in', 'the', 'forward', 'hold', 'to', 'create', 'a', 'crew', 'sleeping', 'area', '.'], ['the', 'lower', 'floor', 'was', 'designed', 'as', 'the', 'inbound', 'freight', 'house', 'with', 'the', 'upper', 'four', 'floors', 'for', 'storage', '.'], ['the', 'approximate', 'lines', 'of', 'the', 'north', 'wall', 'and', 'east', 'end', 'are', 'followed', 'by', 'the', 'churchyard', 'wall', 'of', 'flint', 'and', 'reused', 'masonry', ',', 'constructed', 'in', 'the', 'late', '1', '8', 'th', 'or', '1', '9', 'th', 'century', 'and', 'excluded', 'from', 'the', 'scheduling', ',', 'although', 'the', 'ground', 'beneath', 'it', 'is', 'included', '.'], ['this', 'was', 'the', 'first', 'device', 'that', 'converted', 'electrical', 'energy', 'into', 'mechanical', 'energy', 'in', 'the', 'form', 'of', 'continuous', 'mechanical', 'motion', ',', 'in', 'this', 'case', ',', 'the', 'moving', 'of', 'a', 'bell', 'clapper', 'back', 'and', 'forth', 'between', 'two', 'oppositely', 'charged', 'bells', '.'], ['in', 'some', 'cuts', ',', 'the', 'film', 'ends', 'with', 'a', 'freeze-frame', 'on', 'steve', 'mcqueen', \"'s\", 'face', 'following', 'his', 'penny-pitching', 'loss', '.'], ['jokowi', 'commented', 'in', '2', '0', '1', '7', 'that', 'though', 'he', 'did', 'not', 'initially', 'approve', 'of', 'gibran', \"'s\", 'business', ',', 'gibran', \"'s\", 'company', 'ended', 'up', 'being', 'valued', 'higher', 'than', 'his', 'furniture', 'company', '.'], ['vollore-ville', '(', 'auvergnat', ':', '``', 'volort', 'vila', \"''\", ')', 'is', 'a', 'commune', 'in', 'the', 'puy-de-dôme', 'department', 'in', 'auvergne', 'in', 'central', 'france', '.'], ['the', 'fff', 'also', 'oversee', 'the', 'organization', 'of', 'the', 'coupe', 'gambardella', 'and', 'the', 'coupe', 'nationale', 'for', 'the', 'under-', '1', '5', 'and', 'under-', '1', '3', 'club', 'teams', '.'], ['he', 'is', 'beet', \"'s\", 'elder', 'brother', 'and', 'is', 'considered', 'to', 'be', 'one', 'of', 'the', 'strongest', 'busters', 'of', 'all', 'time', '.'], ['the', 'qing', 'was', 'aware', 'of', 'this', 'and', 'occasionally', 'used', 'to', 'suspend', 'the', 'trade', 'to', 'exert', 'pressure', 'on', 'the', 'russian', 'rulers', '.'], ['the', 'initial', 'order', 'was', 'for', '1', '0', '0', 'as', '.', '1', 'aircraft', '.'], ['each', 'episode', 'followed', 'josh', 'and', 'chuck', 'inside', 'and', 'outside', 'the', 'recording', 'booth', ',', 'combining', 'the', 'factual', 'information', 'of', 'their', 'podcast', 'with', 'humorous', ',', 'fictional', 'story', 'lines', 'that', 'align', 'with', 'each', 'podcast', 'topic', '.'], ['interim', 'period', ':', 'during', 'his', 'sophomore', 'year', 'at', 'purdue', 'ackerson', 'was', 'elected', 'national', 'ffa', 'president', ',', 'a', 'full-time', 'position', 'that', 'required', 'him', 'to', 'take', 'a', 'one-year', 'leave', 'from', 'his', 'formal', 'education', '.'], ['he', 'retired', 'as', 'a', 'blades', 'chief', 'executive', 'in', '1', '9', '9', '6', 'but', '3', 'years', 'later', 'he', 'returned', 'to', 'the', 'fold', 'as', 'chairman', 'of', 'the', 'club', '.'], ['the', 'blood', 'donation', 'took', 'place', 'in', 'azerbaijani', 'regions', 'at', 'initiative', 'of', 'the', 'health', 'ministry', '.'], ['this', 'was', 'the', 'philippines', \"'\", 'fourth', 'time', 'to', 'host', 'the', 'games', ',', 'and', 'its', 'first', 'since', '2', '0', '0', '5', '.'], ['he', 'was', 'godfather', 'to', 'one', 'of', 'the', 'sons', 'of', 'his', '``', 'dad', \"'s\", 'army', \"''\", 'co-star', 'ian', 'lavender', '.'], ['boys', \"'\", 'shortboard', 'finished', 'with', 'second', 'place', ',', 'bodyboard', 'placed', 'third', 'and', 'girls', \"'\", 'longboard', 'finished', 'as', 'state', 'champions', '.'], ['there', 'were', '5', ',', '1', '6', '6', 'housing', 'units', 'at', 'an', 'average', 'density', 'of', '4', '1', '0', '.', '4', 'per', 'square', 'mile', '(', '1', '5', '8', '.', '4', '/km', ')', '.'], ['whilst', 'at', 'albany', 'prison', ',', 'gaughan', 'requested', 'political', 'status', ';', 'this', 'was', 'refused', ',', 'and', 'he', 'was', 'then', 'put', 'in', 'solitary', 'confinement', '.'], ['mann', 'held', 'that', 'disease', 'is', 'not', 'to', 'be', 'regarded', 'as', 'wholly', 'negative', '.'], ['it', 'contains', 'orange', ',', 'olive', ',', 'lemon', ',', 'pear', ',', 'pomegranate', ',', 'fig', ',', 'medlar', 'and', 'plum', 'trees', ',', 'along', 'with', 'prickly', 'pears', '.'], ['also', 'recognized', 'noun', 'derivatives', 'are', 'flash', 'mobber', 'and', 'flash', 'mobbing', '.'], ['at', 'the', 'convention', 'of', 'aguascalientes', 'in', 'the', 'fall', 'of', '1', '9', '1', '4', ',', 'the', 'winning', 'revolutionary', 'factions', 'were', 'unable', 'to', 'agree', ',', 'and', 'a', 'civil', 'war', 'ensued', 'between', 'the', 'constitutionalists', 'and', 'conventionists', '.'], ['therefore', ',', 'on', 'february', '1', '0', ',', 'she', 'launched', 'an', 'online', 'campaign', 'named', '``', 'reassurance', 'for', 'sisters', 'fighting', 'the', 'virus', ',', \"''\", 'which', 'called', 'attention', 'from', 'the', 'public', 'for', 'the', 'need', 'for', 'sanitary', 'pads', 'in', 'hubei', '.'], ['``', 'foot', 'of', 'the', 'mountain', \"''\", ',', 'was', 'released', 'exclusively', 'as', 'a', 'download', 'single', 'in', 'selected', 'territories', 'of', 'mainland', 'europe', '.'], ['in', '1', '9', '2', '3', ',', 'fearing', 'that', 'the', 'western', 'powers', 'would', 'create', 'a', 'free', 'state', ',', 'lithuanians', 'took', 'control', 'of', 'the', 'region', 'and', ',', 'as', 'part', 'of', 'larger', 'regional', 'negotiations', ',', 'incorporated', 'the', 'region', 'into', 'the', 'state', 'of', 'lithuania', '.'], ['when', 'asked', 'if', 'he', 'thought', 'shepherd', 'was', 'an', 'honest', 'man', '?'], ['when', 'as', 'is', 'found', 'in', 'patients', 'less', 'than', '5', '0', 'years', 'old', 'it', 'is', 'termed', 'arcus', 'juvenilis', '.'], ['the', 'game', 'differs', 'from', 'most', 'wargames', 'of', 'the', 'time', 'in', 'its', 'distribution', 'of', 'units', '.'], ['this', 'arrangement', 'is', 'only', 'used', 'on', 'very', 'small', 'locomotives', '(', 'e.g', '.'], ['the', 'finding', 'of', 'arcus', 'juvenilis', 'in', 'combination', 'with', 'hyperlipidemia', 'in', 'younger', 'men', 'represents', 'an', 'increased', 'risk', 'for', 'cardiovascular', 'disease', '.'], ['when', 'latif', 'moved', 'from', 'ed', 'dueim', 'to', 'khartoum', 'c.', '1', '9', '0', '0', ',', 'he', 'was', 'able', 'to', 'find', 'support', 'from', 'his', 'maternal', 'uncle', ',', 'rihan', 'abd', 'allah', ',', 'who', 'his', 'mother', 'had', 'connected', 'him', 'with', '.'], ['the', 'lavochkin', 'la-', '1', '6', '0', ',', 'known', 'as', 'strelka', '(', 'arrow', ')', ',', 'was', 'the', 'first', 'soviet', 'swept-winged', 'jet', 'fighter', 'research', 'prototype', '.'], ['breeding', 'takes', 'place', 'in', 'permanent', 'pools', 'and', 'small', 'streams', ';', 'the', 'egg', 'clutches', 'are', 'attached', 'to', 'vegetation', 'in', 'the', 'water', '.'], ['maragüez', 'is', 'a', 'rural', 'barrio', 'located', 'in', 'the', 'northeastern', 'section', 'of', 'the', 'municipality', ',', 'northeast', 'of', 'the', 'city', 'of', 'ponce', 'at', 'latitude', '1', '8', '.', '1', '0', '6', '1', '7', '8', 'n', ',', 'and', 'longitude', '-', '6', '6', '.', '5', '9', '5', '9', '8', '6', 'w', '.'], ['in', '2', '0', '1', '0', ',', 'prp', 'constable', 'mike', 'viozzi', 'claimed', 'that', 'npf', 'had', 'an', 'even', 'stronger', 'presence', 'in', 'montreal', 'than', 'in', 'ontario', '.'], ['they', 'play', 'in', 'the', 'guinée', 'championnat', 'national', ',', 'which', 'is', 'the', 'highest', 'league', 'in', 'guinean', 'football', '.'], ['the', 'person', 'should', 'not', 'be', 'a', 'secretary', 'or', 'under-secretary', 'of', 'state', ',', 'attorney', 'general', ',', 'or', 'governor', 'of', 'a', 'state', 'at', 'least', '6', 'months', 'prior', 'to', 'the', 'election', '.'], ['it', 'was', 'named', 'one', 'of', 'the', 'seven', 'wonders', 'of', 'ukraine', 'on', '2', '1', 'august', '2', '0', '0', '7', ',', 'based', 'on', 'voting', 'by', 'experts', 'and', 'the', 'internet', 'community', '.'], ['after', 'his', 'death', ',', 'he', 'was', 'brought', 'to', 'bukhara', 'and', 'buried', 'in', 'naukanda', '.'], ['a', 'junior', 'technical', 'high', 'school', 'was', 'added', 'in', 'the', '1', '9', '5', '0', 's', ',', 'with', 'the', 'technical', 'school', 'becoming', 'a', 'senior', 'technical', 'high', 'school', '.'], ['johnson', 'struggled', 'to', 'score', ',', 'while', 'tallon', 'did', 'so', 'freely', 'in', 'the', 'last', 'hour', '.'], ['nintendo', 'life', 'awarded', '``', 'super', 'blood', 'hockey', \"''\", 'a', 'score', 'of', '6', 'out', 'of', 'ten', ',', 'saying', '``', \"'super\", 'blood', 'hockey', \"''\", 'is', 'an', 'entertaining', 'sports', 'game', ',', 'but', 'not', 'necessarily', 'one', 'that', 'will', 'hold', 'your', 'attention', 'for', 'very', 'long', '.', \"'\"], ['aides', 'later', 'said', 'that', 'mondale', 'was', 'determined', 'to', 'establish', 'a', 'precedent', 'with', 'his', 'vice', 'presidential', 'candidate', ',', 'considering', 'san', 'francisco', 'mayor', '(', 'later', 'u.s', '.'], ['she', 'immediately', 'faced', 'the', 'problems', 'brought', 'on', 'by', 'an', 'economic', 'embargo', 'set', 'in', 'place', 'by', 'mikhail', 'gorbachev', 'in', 'an', 'attempt', 'to', 'force', 'lithuania', 'back', 'under', 'control', 'of', 'the', 'crumbling', 'ussr', '.'], ['then', 'it', 'cuts', 'to', 'cartoonish', 'scenes', 'depicting', 'the', 'prophet', 'muhammad', 'as', 'a', 'child', 'of', 'uncertain', 'parentage', ',', 'a', 'buffoon', ',', 'a', 'womanizer', ',', 'a', 'homosexual', ',', 'a', 'child', 'molester', ',', 'and', 'a', 'greedy', ',', 'bloodthirsty', 'thug', '.', \"''\"], ['clayton', 'decided', 'to', 'return', 'to', 'japan', 'after', 'discussions', 'with', 'his', 'family', '.'], ['there', 'are', 'many', 'secondhand', 'vintage', 'shops', ',', 'used', 'book', 'stores', 'and', 'unique', 'gift', 'shops', '.'], ['although', 'the', 'four', 'kingdoms', 'subsequently', 'expanded', 'and', 'covered', 'the', 'entire', 'north', 'maluku', 'region', '(', 'as', 'now', 'defined', ')', 'and', 'parts', 'of', 'sulawesi', 'and', 'new', 'guinea', ',', 'the', 'area', 'of', 'expansion', 'was', 'originally', 'not', 'included', 'in', 'the', 'term', 'maluku', '.'], ['each', 'episode', 'featured', 'celebrity', 'guests', '(', 'often', 'encountering', 'other', 'wwor', 'personalities', ')', ',', 'recurring', 'segments', ',', 'comedy', 'sketches', 'and', 'games', 'for', 'its', 'young', 'audience', 'members', ',', 'with', 'old', 'looney', 'tunes', 'and', 'max', 'fleischer', 'cartoons', 'rounding', 'out', 'the', 'program', '.'], ['a', 'number', 'of', 'modern', 'aircraft', 'types', 'are', 'designed', 'primarily', 'for', 'nighttime', 'bombing', ',', 'but', 'air', 'forces', 'no', 'longer', 'refer', 'to', 'them', 'as', 'night', 'bombers', '.'], ['in', 'the', 'court', 'of', 'appeal', 'considered', '``', 'williams', 'v', 'roffey', 'bros', \"''\", 'and', 'decided', 'that', 'the', 'principle', 'should', 'not', 'be', 'extended', 'to', 'part', 'payment', 'of', 'debts', '.'], ['on', 'september', '2', '8', ',', 'the', 'leaders', 'of', 'paris', 'sent', 'a', 'delegation', 'to', 'the', 'king', 'asking', 'him', 'to', 'return', 'to', 'the', 'city', ',', 'and', 'refused', 'to', 'pay', 'or', 'feed', 'the', 'soldiers', 'of', 'condé', 'camped', 'in', 'the', 'city', '.'], ['amtrak', 'train', 'service', 'is', 'also', 'available', 'from', 'renssalaer', ',', 'new', 'york', '.'], ['this', 'is', 'also', 'a', 'first', 'phase', 'in', 'the', 'designing', 'work', 'of', 'michael', 'čanak', ',', 'during', 'which', 'he', 'will', 'prove', 'a', 'vigorous', 'supporter', 'of', 'functional', 'minimalism', ',', 'characteristic', 'for', 'the', 'so-called', ',', 'industrial', 'modernism', '.'], ['this', 'product', 'is', 'not', 'intended', 'to', 'diagnose', ',', 'treat', ',', 'cure', 'or', 'prevent', 'any', 'disease', '.'], ['her', 'body', 'was', 'discovered', 'in', 'a', 'parking', 'lot', 'in', 'châtillon', 'two', 'hours', 'after', 'she', 'disappeared', 'on', 'the', 'way', 'home', 'from', 'a', 'downtown', 'bookstore', '.'], ['the', 'following', 'table', 'lists', 'nodes', 'of', 'the', 'traditional', 'family', 'tree', 'that', 'are', 'recognized', 'in', 'some', 'overview', 'sources', '.'], ['there', 'have', 'been', 'over', '5', '0', 'concerts', 'to', 'date', '.'], ['though', 'james', 'left', 'his', 'whole', 'estate', 'to', 'his', 'wife', ',', 'and', 'named', 'her', 'as', '``', 'the', 'sole', 'executrix', \"''\", 'of', 'his', 'will', ',', 'the', 'new', 'york', 'times', 'from', '1', '3', ',', 'march', '1', '9', '1', '5', 'also', 'states', 'that', '``', 'mr.', 'creelman', 'left', 'no', 'real', 'estate', \"''\", '.'], ['this', 'has', 'not', 'been', 'studied', 'in', 'depth', 'yet', ',', 'but', 'the', 'ideas', 'brought', 'about', 'through', 'this', 'forum', 'appear', 'to', 'be', 'fairly', 'consistent', 'with', 'already', 'existing', 'research', '.'], ['anyway', ',', 'dennis', 'is', 'disappointed', ',', 'and', 'returns', 'to', 'the', 'netherlands', '.'], [\"o'shea\", 'joined', 'the', 'kerry', 'minor', 'team', 'in', '1', '9', '9', '4', '.'], ['around', '1', '5', '0', '0', ',', 'jews', 'found', 'relative', 'security', 'and', 'a', 'renewal', 'of', 'prosperity', 'in', 'present-day', 'poland', '.'], ['both', 'characters', 'are', 'resistant', 'in', 'joining', 'the', 'uncomfortable', 'allegiance', '.'], ['``', 'sharpe', \"'s\", 'ransom', \"''\", ',', 'which', 'takes', 'place', 'after', '``', 'sharpe', \"'s\", 'waterloo', \"''\", ',', 'is', 'set', 'in', 'peacetime', 'providing', 'a', 'glimpse', 'of', 'sharpe', \"'s\", 'life', 'in', 'normandy', 'with', 'lucille', '.'], ['ulvaeus', 'wrote', 'the', 'lyrics', ',', 'which', 'to', 'some', 'degree', 'are', 'influenced', 'by', 'his', 'divorce', 'from', 'fältskog', '.'], ['the', 'qatari', 'went', 'on', 'to', 'win', 'the', 'second', 'stage', ',', 'but', 'lost', 'over', 'half', 'an', 'hour', 'to', 'peterhansel', 'in', 'the', 'fourth', 'stage', ';', 'winning', 'the', 'seventh', 'stage', 'had', 'seen', 'al-attiyah', 'recover', 'to', 'sixth', 'place', 'before', 'engine', 'and', 'alternator', 'problems', 'during', 'the', 'ninth', 'stage', 'warranted', 'his', 'retirement', '.'], ['a', 'norepinephrine', 'releasing', 'agent', '(', 'nra', ')', ',', 'also', 'known', 'as', 'an', 'adrenergic', 'releasing', 'agent', ',', 'is', 'a', 'catecholaminergic', 'type', 'of', 'drug', 'which', 'induces', 'the', 'release', 'of', 'norepinephrine', '(', 'noradrenaline', ')', 'and', 'epinephrine', '(', 'adrenaline', ')', 'from', 'the', 'pre-synaptic', 'neuron', 'into', 'the', 'synapse', '.'], ['as', 'part', 'of', 'an', 'inquiry', 'before', 'the', 'house', 'of', 'representatives', ',', 'michael', 'shiner', 'was', 'summoned', 'to', 'give', 'testimony', 'regarding', 'a', 'road', 'contract', 'that', 'he', 'had', 'won', '.'], ['dinosaur', 'remains', 'are', 'among', 'the', 'fossils', 'that', 'have', 'been', 'recovered', 'from', 'the', 'late', 'cretaceous', 'portion', '.'], ['at', 'the', 'time', 'of', 'the', '2', '0', '1', '1', 'census', 'there', 'were', '2', '5', '2', 'people', 'usually', 'resident', 'on', 'the', 'island', ',', 'an', 'increase', 'of', '8', '%', 'on', 'the', 'figure', 'of', '2', '3', '3', 'for', '2', '0', '0', '1', '.'], ['a', 'distinct', 'feature', 'of', 'the', 'pm', '-atpase', 'not', 'observed', 'in', 'other', 'p-type', 'atpases', 'is', 'the', 'presence', 'of', 'a', 'large', 'cavity', 'in', 'the', 'transmembrane', 'domain', 'formed', 'by', 'm', '4', ',', 'm', '5', 'and', 'm', '6', '.'], ['in', '2', '0', '1', '2', ',', 'thomas', 'created', 'one', 'of', 'the', 'winning', 'entries', '-', 'a', 'salad', 'of', 'quinoa', ',', 'black', 'beans', ',', 'and', 'corn', '-', 'in', 'the', 'first', 'white', 'house', 'kids', \"'\", 'state', 'dinner', ',', 'hosted', 'by', 'michelle', 'obama', 'as', 'part', 'of', 'her', '``', 'let', \"'s\", 'move', '!', \"''\"], ['dartmouth', 'college', 'students', 'gave', 'a', 'bemused', 'reaction', 'to', 'his', 'morals', 'message', ',', 'displaying', 'signs', 'such', 'as', '``', 'god', 'is', 'alive', 'and', 'thinks', 'he', \"'s\", 'george', 'romney', \"''\", 'and', '``', 'up', 'with', 'dirty', 'minds', ',', 'down', 'with', 'romney', \"''\", '.'], ['it', 'later', 'was', 'renamed', 'as', '4', '2', 'survey', 'engineer', 'regiment', 'on', '3', '1', 'august', '1', '9', '4', '8', 'and', 'was', 'based', 'near', 'raf', 'fayid', '.'], ['during', 'the', '2', '0', '0', '9', 'nfl', 'season', ',', 'crabtree', 'was', 'signed', 'to', 'the', 'green', 'bay', 'packers', 'practice', 'squad', 'for', 'the', 'final', 'five', 'weeks', 'of', 'the', '2', '0', '0', '9', 'nfl', 'season', 'and', 'then', 'to', 'a', 'reserve/futures', 'contract', 'after', 'the', 'season', 'ended', '.'], ['this', 'time', ',', 'it', 'was', 'extended', 'northward', 'to', 'wis', '8', '0', 'south', 'of', 'necedah', ',', 'superseding', 'county', 'trunk', 'highway', 'q', '(', 'cth-q', ')', '.'], ['shortly', 'before', 'the', 'release', 'of', 'mac', 'os', 'x', 'tiger', ',', 'the', 'computer', 'retailer', 'tigerdirect.com', ',', 'inc.', 'filed', 'a', 'lawsuit', 'against', 'apple', ',', 'alleging', 'that', 'apple', 'infringed', 'tigerdirect.com', \"'s\", 'trademark', 'with', 'the', 'mac', 'os', 'x', 'tiger', 'operating', 'system', '.'], ['the', 'park', 'comprises', 'and', 'is', 'situated', 'on', 'the', 'left', 'bank', 'of', 'tawalamham', 'hammillewa', 'and', 'south', 'of', 'kapugollewa', 'ihala', 'divul', 'wewa', '.'], ['although', 'the', 'number', 'of', 'fair', 'trade', 'towns', 'is', 'increasing', ',', 'the', 'task', 'of', 'becoming', 'one', 'is', 'not', 'without', 'its', 'challenges', '.'], ['points', 'for', 'flower', 'tiles', '(', 'each', 'flower', 'is', 'worth', 'one', 'point', ')', 'may', 'not', 'be', 'added', 'until', 'the', 'player', 'has', 'scored', 'eight', 'points', '.'], ['production', 'deviance', 'is', 'ineffective', 'job', 'performance', 'that', 'is', 'done', 'on', 'purpose', ',', 'such', 'as', 'doing', 'tasks', 'incorrectly', 'or', 'withholding', 'of', 'effort', '.'], ['tickets', 'for', 'these', 'shows', 'initially', 'went', 'on', 'pre-sale', 'for', 'the', 'official', 'website', 'members', '.'], ['julia', 'parker', '(', 'née', 'lethbridge', ';', 'born', '1', '9', '3', '2', ',', 'plymouth', ',', 'devon', ')', 'is', 'an', 'astrologer', 'and', 'author', 'who', ',', 'often', 'in', 'partnership', 'with', 'her', 'husband', 'derek', 'parker', ',', 'has', 'written', 'many', 'popular', 'and', 'introductory', 'books', 'on', 'astrology', '.'], ['he', 'presented', 'the', 'plan', 'to', 'lifemark', ',', 'but', 'the', 'company', 'was', 'unable', 'to', 'act', 'on', 'it', 'due', 'to', 'a', 'company', 'merger', 'that', 'was', 'already', 'underway', 'with', 'american', 'medical', 'international', '.'], ['he', 'said', 'he', 'envisaged', 'such', 'an', 'international', 'as', 'merging', 'political', ',', 'trade', 'union', ',', 'and', 'cultural', 'activities', 'into', 'a', 'single', 'organisation', '.'], ['rhodesia', 'introduced', 'the', 'brown', 'beret', 'as', 'a', 'new', 'colour', 'for', 'specialist', 'berets', ',', 'for', 'use', 'of', 'the', 'selous', 'scouts', ',', 'which', 'has', 'since', 'been', 'used', 'for', 'specialist', 'units', 'in', 'the', 'finnish', 'and', 'brazilian', 'forces', ',', 'and', 'with', 'the', 'new', 'zealand', 'sas'], ['the', 'cluster', 'can', 'be', 'spotted', 'with', '7', 'x', '5', '0', 'binoculars', 'and', 'with', 'a', '4', 'inches', 'telescope', 'the', 'cluster', 'can', 'be', 'resolved', 'in', '3', '0', 'stars', 'in', 'a', 'northwest-southeast', 'direction', '.'], ['it', 'is', 'occasionally', 'referred', 'to', 'as', 'althorp', 'in', 'historical', 'literature', '.'], ['ultrasounds', 'can', 'also', 'be', 'used', 'to', 'measure', 'bone', 'malrotation', ',', 'and', 'are', 'considered', 'highly', 'reliable', '.'], ['massmutual', \"'s\", 'profit', 'in', '2', '0', '0', '5', 'rose', 'from', '$', '7', '5', '3', 'million', 'to', '$', '8', '1', '0', 'million', '.'], ['observed', 'a', 'very', 'stable', 'neutral', 'tetrahedral', 'intermediate', 'in', 'the', 'reaction', 'of', '``', 'n', \"''\", '-acylpyrroles', 'with', 'organometallic', 'compounds', ',', 'followed', 'by', 'protonation', 'with', 'ammounium', 'chloride', 'producing', 'a', 'carbinol', '.'], ['richard', 'abanes', '(', ')', '(', 'born', 'october', '1', '3', ',', '1', '9', '6', '1', ')', 'is', 'an', 'american', 'writer', 'and', 'actor', '.'], ['soon', ',', 'judge', 'voltaire', 'y.', 'rosales', 'started', 'receiving', 'offers', 'of', 'money', 'and', 'threats', 'to', 'his', 'life', '.'], ['the', 'day', 'after', 'the', 'shoot-down', ',', 'speicher', 'was', 'placed', 'on', 'mia', 'status', '.'], ['he', 'was', 'knighted', 'in', 'the', '1', '9', '0', '2', 'coronation', 'honours', ',', 'receiving', 'the', 'accolade', 'from', 'king', 'edward', 'vii', 'at', 'buckingham', 'palace', 'on', '2', '4', 'october', 'that', 'year', '.'], ['the', 'wwec', '2', '0', '1', '1', 'was', 'held', 'in', 'cairo/egypt', 'from', '3', '1', 'october', 'to', '2', 'november', '2', '0', '1', '1', 'under', 'the', 'theme', '``', 'greening', 'energy', ':', 'converting', 'deserts', 'into', 'power', 'houses', \"''\", '.'], ['``', 'that', \"'s\", 'just', 'what', 'you', 'are', \"''\", 'was', 'originally', 'intended', 'to', 'have', 'been', 'released', 'as', 'a', 'uk-only', 'single', ',', 'but', 'this', 'did', 'not', 'come', 'to', 'fruition', '.'], ['albaretto', 'della', 'torre', 'borders', 'the', 'following', 'municipalities', ':', 'arguello', ',', 'cerreto', 'langhe', ',', 'lequio', 'berria', ',', 'rodello', ',', 'and', 'sinio', '.'], ['peab', 'is', 'organized', 'into', 'four', 'business', 'areas', ',', 'serving', 'both', 'external', 'customers', 'and', 'internally', ',', 'to', 'other', 'units', 'in', 'the', 'company', ':'], ['huachuan', '(', '桦川', ')', 'and', 'fujin', '(', '富锦', ')', 'regions', 'were', 'cleared', 'and', 'by', 'the', 'end', 'of', 'august', '1', '9', '4', '6', ',', 'near', 'ten', 'thousand', 'bandits', 'were', 'killed', '.'], ['ionotropic', 'glutamate', 'receptors', 'can', 'include', 'nmda', ',', 'ampa', ',', 'and', 'kainate', 'receptors', '.'], ['thomas', 'is', 'dropped', 'in', 'the', 'wake', 'of', 'the', 'colombani', 'and', 'returns', 'repentant', 'return', 'to', 'the', 'home', 'farm', '.'], ['cj', 'enm', 'was', 'established', 'as', 'a', 'result', 'of', 'the', 'merger', 'of', 'two', 'cj', 'group', 'subsidiaries', ',', 'cj', 'e', '&', 'amp', ';', 'm', 'and', 'cj', 'o', 'shopping', 'respectively', ',', 'in', 'july', '2', '0', '1', '8', '.'], ['he', 'was', 'taken', 'prisoner', 'near', 'the', 'end', 'of', '1', '8', '1', '3', 'and', 'later', 'released', '.'], ['economically', ',', 'the', 'network', 'then', 'went', 'constantly', 'downhill', ',', 'due', 'to', 'increasing', 'road', 'traffic', ',', 'corruption', 'and', 'political', 'neglect', '.'], ['the', 'council', 'is', 'divided', 'up', 'into', '2', '5', 'wards', ',', 'electing', '3', '7', 'councillors', ',', 'since', 'the', 'last', 'boundary', 'changes', 'in', '1', '9', '9', '9', '.'], ['a', 'demonstrative', 'example', 'is', 'the', 'catalysis', 'of', 'claisen', 'rearrangements', 'of', 'ester-substituted', 'allyl', 'vinyl', 'ethers', 'reported', 'by', 'the', 'jacobsen', 'research', 'group', '.'], ['jordaan', 'claimed', 'that', 'the', 'criminal', 'charges', 'had', 'been', 'catalysed', 'by', 'his', 'professional', 'rival', 'irvin', 'khoza', ',', 'and', 'said', 'khoza', 'had', 'paid', 'for', 'ferguson', \"'s\", 'flight', 'to', 'south', 'africa', 'to', 'lay', 'the', 'complaint', '.'], ['in', 'a', 'strict', 'application', 'of', 'the', 'code', 'the', 'taxon', 'name', 'author', 'string', 'components', '``', 'genus', \"''\", ',', '``', 'species', \"''\", 'and', '``', 'year', \"''\", 'can', 'only', 'have', 'one', 'combination', 'of', 'characters', '.'], ['the', 'pennine', 'way', 'and', 'the', 'peak', 'district', 'boundary', 'walk', 'run', 'across', 'the', 'moors', '(', 'following', 'the', 'same', 'route', 'between', 'wessenden', 'and', 'redbrook', 'reservoirs', '.'], ['when', 'introduced', ',', 'the', 'sr', '2', 'was', 'the', 'fastest', 'and', 'most', 'powerful', 'locomotive', 'of', 'the', 'vr', '.'], ['nevertheless', 'the', 'action', 'remains', 'a', 'brilliant', 'feat', 'of', 'arms', 'for', 'the', 'french', '.'], ['other', 'definitions', 'may', 'include', 'indonesia', ',', 'new', 'guinea', 'and', 'many', 'pacific', 'islands', ',', 'which', 'the', 'wgsrpd', 'divides', 'between', '4', 'asia-tropical', 'and', '6', 'pacific', '.'], ['however', ',', 'he', 'won', 'three', 'separate', 'science', 'fair', 'awards', 'during', 'this', 'time', '.'], ['the', 'new', 'regulation', 'allowed', 'the', 'emergence', 'of', 'dark', 'pools', 'through', 'the', '1', '9', '8', '0', 's', 'that', 'allowed', 'investors', 'to', 'trade', 'large', 'block', 'orders', 'while', 'avoiding', 'market', 'impact', 'and', 'giving', 'up', 'privacy', '.'], ['five', 'of', 'them', 'are', 'vulnerable', ',', 'seven', 'are', 'near', 'threatened', ',', 'one', 'is', 'reintroduced', ',', 'and', 'one', 'is', 'introduced', '.'], ['gong', 'later', 'won', 'best', 'actress', 'for', 'tv', 'at', 'the', 'baeksang', 'arts', 'awards', '.'], ['as', 'blenheim', 'production', 'took', 'priority', 'and', 'engine', 'overheating', 'problems', 'continued', ',', 'production', 'was', 'delayed', ';', 'the', 'bomber', 'was', 'first', 'flown', 'in', 'october', '1', '9', '3', '8', 'and', 'should', 'have', 'been', 'available', 'almost', 'immediately', ',', 'it', 'was', 'not', 'until', 'november', '1', '9', '3', '9', 'that', 'production', 'started', 'in', 'earnest', '.'], ['already', 'from', 'the', '8', 'th', 'century', ',', 'it', 'was', 'the', 'centre', 'of', 'the', 'namesake', 'theme', 'of', 'cephallenia', '.'], ['the', 'term', 'is', 'most', 'often', 'used', 'in', 'a', 'liturgical', 'context', '.'], ['showrunner', 'al', 'jean', 'remarked', ':', '``', 'that', 'was', 'specifically', 'done', 'to', 'make', 'people', 'really', 'mad', '.'], ['schmidt', 'argued', 'that', 'teachers', 'of', 'judeo-christian', 'tradition', 'who', 'teach', 'on', 'this', 'commandment', '``', 'without', 'drawing', 'attention', 'to', 'the', 'property', 'concept', 'of', 'woman', \"''\", '``', 'might', '[', 'be', ']', '...', 'unknowingly', 'contributing', 'to', 'sexual', 'inequality', \"''\", '.'], ['a', 'wave', 'amplitude', 'of', 'at', 'least', 'is', 'needed', 'to', 'induce', 'eruptions', ',', 'so', 'ice', 'volcanoes', 'are', 'rarely', 'active', 'without', 'storm-force', 'winds', '.'], ['singapore', \"'s\", 'founding', 'father', 'lee', 'kuan', 'yew', 'and', 'his', 'son', ',', 'current', 'prime', 'minister', 'lee', 'hsien', 'loong', ',', 'were', 'fourth-', 'and', 'fifth-generation', 'chinese', 'singaporeans', 'of', 'hakka', 'descent', ',', 'respectively', '.'], ['daley', 'was', 'admitted', 'to', 'the', 'bar', 'in', '1', '9', '4', '6', ',', 'and', 'practiced', 'in', 'newport', '.'], ['in', '2', '0', '1', '3', ',', 'jahangir', 'directed', 'his', 'first', 'film', ',', 'teens', '(', 'based', 'on', 'an', 'engineering', 'college/', 'campus', 'subject', ')', 'mostly', 'with', 'new', 'actors', '.'], ['in', 'september', '2', '0', '1', '3', ',', 'the', 'project', 'was', 'handed', 'over', 'to', 'a', 'community', 'interest', 'company', 'called', '``', 'bywyd', 'gwyllt', 'glaslyn', 'wildlife', \"''\", '.'], ['among', 'others', 'he', 'coached', 'annie', 'borckink', 'winning', 'the', 'olympic', 'gold', 'medal', 'and', 'ria', 'visser', 'the', 'silver', 'medal', 'at', 'the', '1', '9', '8', '0', 'winter', 'olympics', '.'], ['as', 'justiciar', 'he', 'was', 'assisted', 'by', 'a', 'military', 'council', ',', 'made', 'up', 'of', 'such', 'noted', 'soldiers', 'as', 'the', 'gascony-born', 'knight', 'sir', 'jenico', \"d'artois\", '.'], ['in', '1', '9', '6', '9', ',', 'the', 'blades', 'folded', 'less', 'than', '2', '0', 'games', 'into', 'the', '1', '9', '6', '8', '-', '6', '9', 'inter-county', 'junior', 'c', 'season', '.'], ['in', '1', '8', '5', '5', 'various', 'native', 'american', 'leaders', 'in', 'washington', 'state', 'had', 'signed', 'treaties', 'with', 'territorial', 'governor', 'isaac', 'stevens', ',', 'ceding', 'their', 'lands', 'to', 'the', 'federal', 'government', 'and', 'agreeing', 'to', 'move', 'into', 'reservations', '.'], ['and', 'then', 'divisions', '(', 'military', ',', 'civil', ',', '``', 'etc', '.', \"''\", ')'], ['nithyasree', 'mahadevan', 'has', 'composed', 'music', 'for', 'songs', ',', 'and', 'has', 'composed', 'background', 'scores', 'for', 'studio', 'album', 'recordings', '.'], ['his', 'second', 'volume', 'of', 'short', 'stories', ',', '``', 'on', 'the', 'hill', 'of', 'roses', \"''\", '(', 'na', 'wzgórzu', 'róż', ')', ',', 'was', 'published', '9', 'years', 'later', ',', 'and', 'received', 'modest', 'critical', 'approval', '.'], ['for', 'a', 'brief', 'period', 'after', 'the', 'institution', 'was', 'shut', 'down', ',', 'a', 'few', 'buildings', 'were', 'used', 'by', 'northville', 'township', 'for', 'offices', 'as', 'well', 'as', 'a', 'police', 'station', '.'], ['at', 'a', 'holiness', 'revival', 'meeting', 'in', 'monroe', 'county', ',', 'tennessee', 'during', '1', '8', '8', '6', 'the', 'movement', 'coalesced', 'with', 'the', 'formation', 'of', 'the', 'christian', 'union', '.'], ['north', 'of', 'this', 'crossing', ',', 'the', 'freeway', 'passes', 'into', 'lucas', 'county', '.'], ['filming', 'started', 'in', 'march', '2', '0', '1', '2', 'and', 'is', 'set', 'to', 'release', 'on', '2', '2', 'february', '2', '0', '1', '9', 'under', 'the', 'title', 'of', '``', 'total', 'dhamaal', \"''\", '.'], ['elysius', 'is', 'a', 'genus', 'of', 'moths', 'in', 'the', 'family', 'erebidae', '.'], ['it', 'is', \"n't\", 'until', '6', '0', '0', '-', '4', '0', '0', 'bc', ',', 'after', 'the', 'decline', 'of', 'the', 'minoan', 'civilization', ',', 'where', 'greek', 'representation', 'begins', 'of', 'bearded', 'male', 'gods', 'claiming', 'the', 'labyris', 'and', 'trident', 'for', 'their', 'own', '.'], ['to', 'secure', 'a', 'route', 'to', 'gujarat', \"'s\", 'trading', 'ports', ',', 'ayn', 'al-mulk', 'multani', 'was', 'sent', 'to', 'conquer', 'the', 'paramara', 'kingdom', 'of', 'malwa', '.'], ['zimbabwe', 'refused', 'to', 'respond', 'to', 'ethiopia', \"'s\", 'extradition', 'request', 'for', 'mengistu', ',', 'which', 'permitted', 'him', 'to', 'avoid', 'a', 'life', 'sentence', '.'], ['allan', 'aynesworth', ',', 'who', 'played', 'algernon', 'moncrieff', ',', 'recalled', 'to', 'hesketh', 'pearson', 'that', '``', 'in', 'my', 'fifty-three', 'years', 'of', 'acting', ',', 'i', 'never', 'remember', 'a', 'greater', 'triumph', 'than', '[', 'that', ']', 'first', 'night', \"''\", '.'], ['margaret', 'beaufort', ',', 'was', 'the', 'daughter', 'and', 'only', 'child', 'of', 'john', 'beaufort', ',', '1', 'st', 'duke', 'of', 'somerset', '.'], ['food', 'processing', ',', 'tobacco', ',', 'brewing', 'and', 'textiles', 'were', 'the', 'main', 'pillars', 'of', 'the', 'industry', '.'], ['other', 'cd', \"'s\", 'with', 'music', 'of', 'isidora', 'žebeljan', 'were', 'released', 'by', 'the', 'cd', 'labels', 'deutsche', 'grammophon', '(', '``', 'the', 'horses', 'of', 'saint', 'mark', \"''\", 'by', 'no', 'borders', 'orchestra', ')', ',', 'chandos', 'records', '(', 'uk', ')', ',', 'mascom', 'records', '(', 'serbia', ')', ',', 'acousense', '(', 'germany', ')', ',', 'etc', '.'], ['she', 'sees', 'annie', 'transform', 'from', 'a', 'cougar', 'into', 'herself', '.'], ['when', 'a', 'unit', \"'s\", 'morale', 'is', 'said', 'to', 'be', '``', 'depleted', \"''\", ',', 'it', 'means', 'it', 'is', 'close', 'to', '``', 'crack', 'and', 'surrender', \"''\", '.'], ['they', 'allow', 'precise', 'control', 'of', 'both', 'magnitude', 'and', 'profile', 'of', 'the', 'shock', 'wave', 'through', 'adjustments', 'to', 'the', 'projectile', \"'s\", 'muzzle', 'velocity', 'and', 'density', 'profile', ',', 'respectively', '.'], ['button', 'and', 'alonso', 'were', 'classified', 'in', 'sixteenth', 'and', 'seventeenth', 'positions', 'respectively', ',', 'in', 'the', 'world', 'drivers', \"'\", 'championship', ',', 'while', 'magnussen', 'was', 'not', 'formally', 'classified', ',', 'as', 'he', 'did', 'not', 'start', 'the', 'one', 'race', 'that', 'he', 'entered', '.'], ['on', 'september', '1', '7', ',', '1', '8', '5', '9', ',', 'abraham', 'lincoln', 'delivered', 'an', 'address', 'on', 'its', 'steps', '.'], ['it', 'has', 'been', 'found', 'more', 'effective', 'than', 'placebo', 'in', 'the', 'treatment', 'of', 'generalized', 'anxiety', 'disorder', '.'], ['this', 'event', 'was', 'also', 'attended', 'by', 'the', 'then', 'minister', 'for', 'justice', 'simon', 'hughes', 'mp', '.'], ['research', 'conducted', 'by', 'ariana', 'f.', 'young', ',', 'shira', 'gabriel', ',', 'and', 'jordan', 'l.', 'hollar', 'in', '2', '0', '1', '3', 'showed', 'that', 'men', 'who', 'did', 'not', 'form', 'a', 'parasocial', 'relationship', 'with', 'a', 'muscular', 'superhero', 'had', 'poor', 'self-perception', 'and', 'felt', 'negative', 'about', 'their', 'bodies', 'after', 'exposure', 'to', 'the', 'muscular', 'character', '.'], ['harvie', 'grew', 'up', 'in', 'the', 'borders', 'village', 'of', 'st', 'boswells', 'and', 'was', 'educated', 'in', 'kelso', 'at', 'kelso', 'high', 'school', 'and', 'in', 'edinburgh', 'at', 'royal', 'high', 'school', '.'], ['a', 'specific', 'date', 'for', 'the', 'origin', 'of', 'life', 'has', 'not', 'been', 'determined', '.'], ['in', 'the', 'aftermath', 'of', 'the', 'fourth', 'crusade', ',', 'the', 'town', 'came', 'under', 'frankish', 'rule', ',', 'and', 'was', 'known', 'as', '``', 'gardichy', \"''\", ',', '``', 'cardiche', \"''\", ',', '``', 'lacardica', \"''\", ',', 'and', '``', 'gaudica', \"''\", '.'], ['jpeg', '2', '0', '0', '0', 'is', 'much', 'more', 'complicated', 'in', 'terms', 'of', 'computational', 'complexity', 'in', 'comparison', 'with', 'jpeg', 'standard', '.'], ['the', 'cabinet', 'of', 'katrín', 'jakobsdóttir', 'was', 'formed', 'on', '3', '0', 'november', '2', '0', '1', '7', ',', 'following', 'the', '2', '0', '1', '7', 'parliamentary', 'election', '.'], ['the', 'corps', 'was', 'renamed', 'shanghai', 'luwan', 'district', 'spring', 'thunder', 'telecommunication', 'factory', '.'], ['in', 'may', '2', '0', '1', '8', ',', 'hayden', 'was', 'preselected', 'as', 'the', 'liberal', 'candidate', 'in', 'the', 'darling', 'range', 'by-election', 'on', '2', '3', 'june', '.'], ['``', 'corde', 'natus', 'ex', 'parentis', \"''\", '(', '``', 'of', 'the', 'father', \"'s\", 'heart', 'begotten', \"''\", ')', 'by', 'the', 'spanish', 'poet', 'prudentius', '(', 'd.', '4', '1', '3', ')', 'is', 'still', 'sung', 'in', 'some', 'churches', 'today', '.'], ['acumatica', \"'s\", 'web-based', 'erp', 'applications', 'are', 'built', 'on', 'top', 'of', 'its', 'internally', 'developed', 'platform', 'xrp', '.'], ['guesting', 'in', 'this', 'episode', 'are', 'show', 'creator/producer', 'vince', 'gilligan', 'and', 'co-starring', 'actor', 'aaron', 'paul', '(', 'jesse', 'pinkman', ')', '.'], ['passenger', 'numbers', 'increased', 'to', '1', '2', '.', '9', 'million', 'in', '2', '0', '1', '3', '.'], ['on', '3', '0', 'august', '1', '9', '7', '0', ',', 'he', 'stormed', 'in', 'a', '``', 'distraught', \"''\", 'condition', 'their', 'home', 'on', 'via', 'puccini', 'and', 'asked', 'the', 'servants', 'not', 'to', 'disturb', 'him', '.'], ['it', 'is', 'square-shaped', 'with', 'a', 'rear', 'wing', 'and', 'flat', 'roof', '.'], ['brentz', 'hit', 'his', 'first', 'mlb', 'home', 'run', 'on', 'june', '2', '6', ',', '2', '0', '1', '6', ',', 'off', 'rangers', 'pitcher', 'martin', 'pérez', '.'], ['we', \"'ll\", 'miss', 'having', 'him', 'on', 'the', 'road', 'with', 'us', ',', 'but', 'as', 'his', 'brothers', 'and', 'bandmates', 'we', 'respect', 'his', 'decision', 'and', 'are', 'looking', 'forward', 'to', 'getting', 'out', 'there', 'and', 'playing', 'for', 'the', 'fans', '.'], ['the', 'album', 'received', 'high', 'ratings', ',', 'and', 'it', 'was', 'a', 'fan', 'favorite', 'album', '.'], ['the', 'production', 'started', 'with', 'the', 'assembly', 'of', 'the', 's-series', 'model', 'trucks', ',', 'imported', 'from', 'its', 'mexican', 'headquarters', '.'], ['california', 'was', 'admitted', 'as', 'a', 'state', 'on', 'september', '9', ',', '1', '8', '5', '0', ',', 'and', 'was', 'initially', 'divided', 'into', 'two', 'districts', ',', 'the', 'northern', 'and', 'the', 'southern', ',', 'by', 'act', 'of', 'congress', 'approved', 'september', '2', '8', ',', '1', '8', '5', '0', ',', '9', 'stat', '.'], ['in', 'popular', 'culture', ',', 'the', 'children', \"'s\", 'movie', '``', 'the', 'little', 'rascals', \"''\", 'depicted', 'one', 'of', 'the', 'bullies', ',', 'butch', ',', 'wearing', 'a', 'pair', 'of', 'these', 'shoes', '.'], ['in', 'many', 'species', 'it', 'is', 'initiated', 'by', 'an', 'increase', 'in', 'the', 'hormone', 'ecdysone', '.'], ['wu', 'junsheng', 'was', 'born', 'to', 'a', 'peasant', 'family', 'in', 'changtu', ',', 'fengtien', 'province', '(', 'today', 'liaoning', ')', ',', 'on', 'november', '2', '3', ',', '1', '8', '6', '3', '.'], ['the', 'obverse', 'showed', 'britannia', 'facing', 'right', ',', 'her', 'left', 'and', 'resting', 'on', 'a', 'shield', 'and', 'right', 'hand', 'holding', 'a', 'trident', ',', 'with', 'a', 'sun', 'in', 'the', 'upper', 'right', 'corner', '.'], ['this', 'transfer', 'was', 'widely', 'seen', 'as', 'a', 'move', 'by', 'thatcher', 'to', 'isolate', 'prior', ',', 'who', 'disagreed', 'with', 'her', 'on', 'a', 'number', 'of', 'economic', 'issues', '.'], ['nancy', 'rubin', \"'s\", 'canoe', 'sculpture', '``', 'big', 'edge', \"''\", 'is', 'displayed', 'at', 'the', 'entrance', 'of', 'the', 'hotel', 'and', 'an', 'painting', 'by', 'frank', 'stella', 'hangs', 'above', 'the', 'registration', 'desk', 'in', 'the', 'lobby', '.'], ['after', 'falling', 'for', 'about', '4', '0', 'm', ',', 'she', 'landed', 'on', 'an', 'awning', 'of', 'a', 'cafe', ',', 'the', 'awning', 'then', 'broke', ',', 'and', 'she', 'fell', 'onto', 'a', 'chair', '.'], ['this', 'metabolism', 'has', 'phototrophic', 'aspects', ',', 'since', 'the', 'gene', 'and', 'the', 'ability', 'to', 'uptake', 'electrons', 'are', 'stimulated', 'by', 'sunlight', '.'], ['of', 'his', 'works', ',', 'only', 'liu', 'shan', \"'s\", 'surrender', 'document', 'to', 'deng', 'ai', 'and', 'one', 'other', 'essay', 'survive', ',', 'both', 'carried', 'in', 'the', 'base', 'text', 'of', 'the', '``', 'sanguozhi', \"''\", '.'], ['the', 'ming', 'dynasty', 'drove', 'out', 'the', 'mongols', 'in', '1', '3', '6', '8', '.'], ['bertolt', 'brecht', 'discusses', 'the', 'film', 'in', 'his', 'short', 'essay', '``', 'is', 'it', 'worth', 'speaking', 'about', 'the', 'amateur', 'theater', '?', \"''\"], ['after', 'gondra', \"'s\", 'refusal', 'to', 'dismiss', 'guggiari', ',', 'gondra', 'himself', 'resigned', ',', 'due', 'to', 'the', 'emergence', 'of', 'a', 'split', 'in', 'paraguay', \"'s\", 'armed', 'forces', '.'], ['legia', 'warsaw', 'ii', ',', 'in', 'poland', 'known', 'as', 'legia', 'ii', 'warszawa', ',', 'is', 'a', 'polish', 'football', 'team', ',', 'which', 'serves', 'as', 'the', 'reserve', 'side', 'of', 'legia', 'warsaw', '.'], ['army', 'corps', 'from', '1', '1', 'august', '1', '9', '4', '2', 'exist', 'nine', 'chetnik', 'detachments', 'with', 'total', 'of', '1', '2', ',', '4', '4', '0', 'persons', 'under', 'command', 'of', 'momčilo', 'đujić', ',', 'however', 'according', 'to', 'same', 'record', 'only', 'about', '2', '6', '0', '0', 'persons', 'were', 'armed', '.'], ['in', 'the', 'third', 'semi', ',', 'american', 'trials', 'champion', 'michael', 'tinsley', 'and', 'leford', 'green', 'separated', 'from', 'the', 'rest', 'of', 'the', 'field', '.'], ['although', 'four', '8', '0', 'east', 'began', 'as', 'a', 'studio', 'concept', ',', 'they', 'have', 'evolved', 'into', 'a', 'live', 'act', '.'], ['(', '2', '0', '1', '0', ')', 'investigated', 'the', 'role', 'of', 'ctn', 'on', 'nitric', 'oxide', '(', 'no', ')', 'production', ',', 'a', 'proinflamatory', 'mediator', ',', 'in', 'mes-', '1', '3', '(', 'glomerular', 'mesangial', 'cells', 'from', 'an', 'sv', '4', '0', 'transgenic', 'mouse', ')', 'cells', '.'], ['when', 'bates', 'returned', 'to', 'the', 'united', 'states', 'in', '1', '9', '0', '1', 'to', 'take', 'command', 'of', 'the', 'northern', 'division', 'of', 'department', 'of', 'the', 'missouri', ',', 'and', 'later', 'the', 'department', 'of', 'the', 'lakes', ',', 'wright', 'continued', 'to', 'serve', 'as', 'his', 'aide', '.'], ['woodstock', 'dam', 'is', 'located', 'on', 'the', 'upper', 'reaches', 'of', 'the', 'tugela', ',', 'kwazulu-natal', 'province', 'of', 'south', 'africa', 'and', 'is', 'the', 'main', 'source', 'of', 'water', 'for', 'the', 'thukela-vaal', 'transfer', 'scheme', '.'], ['its', 'administrative', 'center', 'is', 'the', 'urban', 'locality', '(', 'a', 'work', 'settlement', ')', 'of', 'dubrovka', '.'], ['the', 'repairs', 'and', 'maintenance', 'needed', 'by', 'the', 'canal', 'made', 'travel', 'difficult', '.'], ['the', 'locomotives', 'received', 'transformers', 'in', '1', '9', '4', '7', ',', 'which', 'were', 'installed', 'in', 'oslo', ',', 'and', '2', '0', '6', '4', 'was', 'delivered', 'on', '2', '4', 'may', '.'], ['geoffrey', 'de', 'langley', 'was', 'also', 'sent', 'to', 'the', 'mongol', 'il-khanate', 'court', 'of', 'ghazan', 'in', '1', '2', '9', '1', '.'], ['the', 'floors', 'are', 'connected', 'by', 'a', 'well-conserved', 'narrow', 'spiral', 'staircase', 'only', 'in', 'width', 'located', 'in', 'the', 'northwest', 'corner', 'of', 'the', 'building', '.'], ['he', 'grew', 'to', 'believe', 'that', 'agricultural', 'efficiency', 'could', 'best', 'be', 'achieved', 'by', 'the', 'imposition', 'of', 'an', 'annual', 'land', 'tax', '.'], ['as', 'a', 'prize', ',', 'she', 'appeared', 'at', 'a', 'charity', 'concert', 'in', 'london', ',', 'where', 'her', 'potential', 'was', 'spotted', 'by', 'singer', 'adam', 'faith', '.'], ['male', 'and', 'female', 'animals', 'underwent', 'a', 'standardized', 'phenotypic', 'screen', 'to', 'determine', 'the', 'effects', 'of', 'deletion', '.'], ['he', 'was', 'to', 'be', 'player-manager', 'in', 'their', 'inaugural', '1', '9', '6', '8', 'season', 'in', 'the', 'north', 'american', 'soccer', 'league', '(', 'nasl', ')', 'and', 'believed', 'it', '``', 'was', 'a', 'chance', 'too', 'good', 'to', 'miss', \"''\", '.'], ['lee', 'released', 'a', '1', '4', '-track', 'album', 'titled', '``', 'my', 'biography', \"''\", 'in', '2', '0', '0', '8', ',', 'his', 'first', 'full-length', 'album', 'in', 'a', 'decade', '.'], ['the', 'famous', 'affair', 'of', 'the', 'diamond', 'necklace', 'made', 'history', 'in', 'france', '.'], ['in', '2', '0', '1', '9', ',', 'digital', 'spy', \"'s\", 'conor', 'mcmullan', 'included', 'mark', \"'s\", 'misery', 'in', 'a', 'feature', 'about', 'the', 'storylines', '``', 'neighbours', \"''\", 'keep', 'repeating', '.'], ['(', '2', '0', '0', '0', ')', 'state', 'it', 'has', 'the', 'same', 'vocalizations', 'and', 'behaviour', 'as', 'other', 'races', ',', 'and', 'do', 'not', 'give', 'it', 'the', 'status', 'of', 'a', 'separate', 'species.', ',', 'however', ',', 'collar', '&', 'amp', ';', 'robson', '(', '2', '0', '0', '7', ')', 'split', 'them', '.'], ['his', 'popular', 'movies', 'are', 'sallapam', ',', 'kuberan', 'and', 'sammanam', '.'], ['in', '1', '9', '7', '3', ',', 'luxembourg', 'issued', 'a', 'set', 'of', 'stamps', 'depicting', 'images', 'of', 'religious', 'statues', 'based', 'on', 'this', 'altarpiece', '.'], ['commissioner', 'boniface', 'was', 'invested', 'into', 'the', 'order', 'of', 'ontario', 'in', '2', '0', '0', '1', 'for', 'her', 'work', 'with', 'the', 'first', 'nations', 'communities', '.'], ['marie', ')', 'they', 'begin', 'to', 'associate', 'the', 'work', 'with', 'the', 'exact', 'part', 'of', 'a', 'woman', \"'s\", 'body', 'are', 'some', 'of', 'the', 'funniest', 'moments', 'in', 'any', 'television', 'sitcom', 'in', 'history', '.', \"''\"], ['different', 'forms', 'of', 'cores', 'and', 'core', 'preforms', ',', 'core-like', 'pieces', ',', 'blade', 'spalls', ',', 'flakes', 'and', 'chips', ',', 'only', 'a', 'few', 'retouched', 'platforms', ',', 'just', 'one', 'faceted', 'platform', 'were', 'revealed', 'from', 'the', 'second', 'part', 'of', 'sedimentation', '.'], ['the', 'secretary', 'is', 'appointed', 'on', 'the', 'recommendation', 'of', 'the', 'prime', 'minister', ',', 'with', 'the', 'current', 'secretary', 'being', 'yitzhak', '(', 'tzahi', ')', 'braverman', '.'], ['a', '2', '0', '1', '9', 'review', 'suggested', 'no', 'recommendations', 'of', 'agomelatine', 'in', 'support', 'of', ',', 'or', 'against', ',', 'its', 'use', 'to', 'treat', 'individuals', 'with', 'seasonal', 'affective', 'disorder', '.'], ['he', 'angrily', 'confronts', 'carlin', ',', 'who', 'claimed', 'the', 'mirror', 'was', 'undamaged', '.'], ['over', '1', '0', '0', 'people', 'protested', 'outside', 'parliament', 'on', '2', '4', 'march', '2', '0', '1', '0', ',', 'including', 'labour', 'mps', 'tom', 'watson', 'and', 'john', 'grogan', ',', 'liberal', 'democrat', 'prospective', 'parliamentary', 'candidate', 'bridget', 'fox', ',', 'and', 'writer', 'and', 'activist', 'cory', 'doctorow', '.'], ['the', 'line', 'which', 'inspired', 'the', 'title', 'reads', ':', '``', 'i', 'should', 'have', 'been', 'more', 'kind', '.'], ['shanmuga', 'pandian', '(', 'born', '6', 'april', '1', '9', '9', '2', ')', 'is', 'an', 'indian', 'actor', 'who', 'has', 'worked', 'in', 'tamil', 'language', 'films', '.'], ['it', 'has', 'also', 'been', 'rated', 'by', 'the', 'national', 'geographic', 'society', 'as', 'the', 'world', \"'s\", 'number', 'one', 'natural', 'heritage', 'site', 'along', 'with', 'the', 'geirangerfjord', '.'], ['non-meiotic', ')', 'chromosome', 'pairing', 'was', 'discovered', 'via', 'microscopy', 'in', '1', '9', '0', '8', 'by', 'nettie', 'stevens', '.'], ['in', '1', '8', '0', '7', ',', 'the', 'spanish', 'government', ',', 'at', 'that', 'time', 'allied', 'with', 'france', ',', 'had', 'sent', '1', '5', ',', '0', '0', '0', 'troops', 'to', 'denmark', 'to', 'act', 'as', 'a', 'garrison', 'against', 'a', 'possible', 'british', 'landing', 'there', '.'], ['he', 'was', 'full', 'back', 'on', 'the', 'team', 'that', 'beat', 'clare', 'to', 'win', 'the', 'munster', 'championship', 'for', 'the', 'first', 'time', 'since', '1', '9', '9', '0', '.he', 'was', 'again', 'full', 'back', 'as', 'kerry', 'faced', 'galway', 'in', 'the', 'all-ireland', 'final', '.'], ['many', 'of', 'the', 'ships', 'were', 'newly', 'built', ',', 'probably', 'in', 'singapore', ',', 'a', 'city', 'mads', 'often', 'visited', '.'], ['bromides', 'are', 'effective', 'against', 'epilepsy', ',', 'and', 'also', 'cause', 'impotence', ',', 'which', 'is', 'not', 'related', 'to', 'its', 'anti-epileptic', 'effects', '.'], ['tranylcypromine', '(', 'sold', 'under', 'the', 'trade', 'name', 'parnate', 'among', 'others', ')', 'is', 'a', 'monoamine', 'oxidase', 'inhibitor', '(', 'maoi', ')', ';', 'more', 'specifically', ',', 'tranylcypromine', 'acts', 'as', 'nonselective', 'and', 'irreversible', 'inhibitor', 'of', 'the', 'enzyme', 'monoamine', 'oxidase', '(', 'mao', ')', '.'], ['in', 'the', 'early', 'autumn', 'of', '1', '9', '4', '4', ',', 'tigerstedt', ',', 'who', 'risked', 'being', 'prosecuted', 'for', 'his', 'nazi', 'activities', ',', 'was', 'forced', 'to', 'emigrate', 'to', 'sweden', '.'], ['in', '1', '9', '7', '4', ',', 'he', 'earned', 'his', 'phd', 'in', 'engineering', 'science', 'from', 'memorial', 'university', 'of', 'newfoundland', '.'], ['when', 'epps', 'found', 'out', 'she', 'had', 'left', 'his', 'plantation', ',', 'he', 'had', 'four', 'stakes', 'hammered', 'into', 'the', 'ground', 'and', 'ordered', 'her', 'hands', 'and', 'feet', 'to', 'be', 'tied', 'to', 'them', ',', 'she', 'was', 'stripped', 'naked', 'and', 'solomon', 'was', 'then', 'ordered', 'to', 'whip', 'her', '.'], ['the', 'capelin', 'move', 'inshore', 'in', 'large', 'schools', 'to', 'spawn', 'and', 'migrate', 'in', 'spring', 'and', 'summer', 'to', 'feed', 'in', 'plankton', 'rich', 'areas', 'between', 'iceland', ',', 'greenland', ',', 'and', 'jan', 'mayen', '.'], ['center', 'township', 'is', 'one', 'of', 'seventeen', 'townships', 'in', 'butler', 'county', ',', 'nebraska', ',', 'united', 'states', '.'], ['the', 'sebitti', 'are', 'a', 'group', 'of', 'seven', 'minor', 'war', 'gods', 'in', 'babylonian', 'and', 'akkadian', 'tradition', '.'], ['the', 'population', 'density', 'was', '9', '.', '7', 'people', 'per', 'square', 'mile', '(', '3', '.', '7', '/km', '2', ')', '.'], ['ray', 'subsequently', 'received', 'a', 'recording', 'contract', 'with', 'sony', 'music', 'australia', 'and', 'released', 'his', 'debut', 'single', '``', 'coming', 'back', \"''\", ',', 'which', 'debuted', 'at', 'number', 'one', 'on', 'the', 'itunes', 'singles', 'chart', '(', 'with', 'platinum', 'status', ')', 'and', 'number', 'five', 'on', 'the', 'aria', 'singles', 'chart', '.'], ['kovarce', '(', 'hungarian', ':', '``', 'kovarc', \"''\", ';', 'german', ':', '``', 'kowarz', \"''\", 'or', '``', 'kowaritz', \"''\", ')', 'is', 'a', 'municipality', 'in', 'the', 'topoľčany', 'district', 'of', 'the', 'nitra', 'region', ',', 'slovakia', '.'], ['one', 'mr.', 'rushing', ',', 'an', 'early', 'postmaster', ',', 'gave', 'the', 'community', 'his', 'last', 'name', '.'], ['an', 'exhibition', 'of', 'his', 'work', 'at', 'messum', \"'s\", 'gallery', 'in', 'mayfair', 'in', 'october', '2', '0', '0', '5', ',', 'the', 'bicentenary', 'of', 'the', 'battle', 'of', 'trafalgar', ',', 'included', 'paintings', 'of', 'every', 'ship', 'in', 'which', 'nelson', 'had', 'served', '.'], ['after', 'initially', 'promising', 'a', 'court', 'fight', ',', 'goldman', 'decided', 'not', 'to', 'appeal', 'his', 'ruling', '.'], ['his', 'methods', 'for', 'prevention', 'and', 'management', 'of', 'plantar', 'ulcers', 'are', 'now', 'extensively', 'used', 'for', 'treatment', 'of', 'patients', 'with', 'diabetes', 'mellitus', 'who', 'have', 'similar', 'problems', '.'], ['using', 'these', 'above', 'equations', ',', 'the', 'energy-momentum', 'relation', 'should', 'be'], ['the', 'program', 'has', 'been', 'described', 'both', 'by', 'herself', 'and', 'by', 'others', 'as', 'being', 'a', 'centerpiece', 'of', 'a', '``', 'greek', 'new', 'deal', \"''\", 'as', 'proposed', 'by', 'the', 'syriza', 'government', '.'], ['current', 'rules', 'stipulate', 'that', 'members', 'of', 'the', 'team', 'can', 'not', 'have', 'been', 'to', 'a', 'provincial', 'championship', 'the', 'previous', 'season', ',', 'or', 'have', 'had', 'a', 'top', '2', '5', 'ctrs', 'team', 'the', 'previous', 'season', '.'], ['the', 'space', 'after', 'each', 'story', 'is', 'referred', 'to', 'as', 'intermission', 'and', 'is', 'a', 'time', 'for', 'ibis', 'to', 'comment', 'on', 'the', 'story', 'she', 'just', 'told', '.'], ['immediately', 'after', 'she', 'won', ',', 'ida', 'released', 'her', 'winning', 'song', 'as', 'her', 'debut', 'single', '``', 'i', 'can', 'be', \"''\", ',', 'which', 'went', 'straight', 'to', 'number', '1', 'on', 'the', 'danish', 'singles', 'chart', 'in', 'its', 'first', 'week', 'of', 'release', 'and', 'was', 'certified', 'gold', '.'], ['he', 'designed', 'shoes', 'for', 'the', 'petersen', 'automotive', 'museum', 'in', '2', '0', '0', '2', '.'], ['in', 'december', '2', '0', '0', '9', ',', 'crittenton', 'and', 'teammate', 'gilbert', 'arenas', 'were', 'involved', 'in', 'a', 'locker', 'room', 'confrontation', 'involving', 'guns', '.'], ['on', 'august', '3', '1', ',', '2', '0', '0', '9', ',', 'jung', 'was', 'involved', 'in', 'an', 'altercation', 'at', 'a', 'karaoke', 'club', 'in', 'busan', '.'], ['this', 'starts', 'on', 'day', '1', '8', 'with', 'cells', 'in', 'the', 'splanchnopleuric', 'mesoderm', 'differentiating', 'into', 'angioblasts', 'that', 'develop', 'into', 'flattened', 'endothelial', 'cells', '.'], ['the', 'extensive', 'sketches', 'show', 'that', 'the', 'master', 'also', 'wanted', 'to', 'conclude', 'this', 'work', ',', 'like', 'the', 'fifth', 'symphony', ',', 'with', 'a', 'purely', 'instrumental', 'finale', 'and', 'a', 'powerful', 'fugue', '.'], ['the', 'mdc', 'accused', 'zanu-pf', 'of', 'being', 'behind', 'the', 'attack', '.'], ['the', 'crew', 'numbered', 'about', '8', '3', '0', 'officers', 'and', 'enlisted', 'men', '.'], ['for', 'example', ',', 'expulsion', 'from', 'the', 'gut', 'of', 'a', 'variety', 'of', 'mouse', 'helminths', 'requires', 'il-', '1', '3', 'secreted', 'by', 'th', '2', 'cells', '.'], ['he', 'believes', 'that', 'the', 'dominion', 'war', 'and', 'destruction', 'of', 'cardassia', 'were', 'partially', 'caused', 'by', 'cardassia', \"'s\", 'military-led', 'government', '.'], ['hiluxes', 'sold', 'in', 'argentina', 'and', 'brazil', 'were', 'built', 'in', 'argentina', ',', 'as', 'with', 'the', 'previous', 'generation', 'hilux', '.'], ['he', 'grew', 'up', 'in', 'roseville', ',', 'california', 'and', 'graduated', 'from', 'oakmont', 'high', 'school', '.'], ['in', '1', '9', '8', '8', ',', 'gretzky', 'was', 'traded', 'to', 'the', 'los', 'angeles', 'kings', '.'], ['they', 'become', 'friends', 'and', 'his', 'creativeness', 'was', 'combined', 'with', 'a.', 'r.', 'rahman', \"'s\", 'musical', 'jingles', '.'], ['j.', 'k.', 'rowling', 'and', 'richard', 'branson', 'made', 'large', 'donations', ';', 'branson', 'donated', '£', '1', '0', '0', ',', '0', '0', '0', 'to', 'the', 'mccanns', \"'\", 'legal', 'fund', '.'], ['the', 'greater', 'farms', 'in', 'scandinavia', 'usually', 'had', 'a', 'small', 'bell-tower', 'resting', 'on', 'the', 'top', 'of', 'the', 'barn', '.'], ['thus', 'outfitted', ',', 'she', 'served', 'once', 'again', 'as', 'a', 'convoy', 'escort', ',', 'occasionally', 'towing', 'targets', 'as', 'well', '.'], ['a', 'specification', 'of', 'the', 'organ', 'can', 'be', 'found', 'on', 'the', 'national', 'pipe', 'organ', 'register', '.'], ['edrich', 'had', 'johnson', 'caught', 'behind', 'for', 'four', 'to', 'leave', 'australia', 'at', '2', '4', '6', '/', '7', '.'], ['twice-named', 'in', 'newsweek', 'magazine', \"'s\", 'list', 'of', 'the', 'ten', 'most', 'influential', 'rabbis', 'in', 'america', ',', 'steve', 'leder', 'is', 'the', 'senior', 'rabbi', 'of', 'wilshire', 'boulevard', 'temple', 'in', 'los', 'angeles', ',', 'which', 'serves', 'approximately', '2', ',', '4', '0', '0', 'families', 'at', 'three', 'campuses', '.'], ['boissarie', 'wrote', 'a', 'celebrated', 'book', ',', '``', \"l'histoire\", 'médicale', 'de', 'lourdes', \"''\", 'in', '1', '8', '9', '1', ',', 'which', 'was', 'praised', 'by', 'pope', 'leo', 'xiii', '.'], ['on', '2', '9', 'august', 'de', 'neufville', \"'s\", 'request', 'for', 'suspension', 'of', 'payment', 'was', 'rejected', '.'], ['in', '1', '8', '4', '4', ',', 'lowe', 'was', 'chosen', 'a', 'member', 'of', 'the', 'first', 'constitutional', 'convention', 'of', 'iowa', '.'], ['but', 'after', 'the', 'long', 'layoff', ',', 'koufax', 'was', 'ineffective', 'in', 'three', 'appearances', 'as', 'the', 'giants', 'caught', 'the', 'dodgers', 'at', 'the', 'end', 'of', 'the', 'regular', 'season', ',', 'forcing', 'a', 'three-game', 'playoff', '.'], ['the', 'rate', 'increase', 'was', 'a', 'setback', 'for', 'ahmadinejad', ',', 'who', 'had', 'been', 'using', 'below-inflation', 'rates', 'to', 'provide', 'cheap', 'loans', 'to', 'the', 'poor', ',', 'though', 'naturally', 'iranian', 'bankers', 'were', 'delighted', 'by', 'the', 'increase', '.'], ['this', 'list', 'shows', 'the', 'iucn', 'red', 'list', 'status', 'of', 'the', '9', '0', 'mammal', 'species', 'occurring', 'in', 'serbia', '.'], ['on', 'june', '1', '4', ',', '2', '0', '1', '0', ',', 'the', 'u.s.', 'government', 'accountability', 'office', '(', 'gao', ')', 'released', 'its', 'findings', 'on', 'acorn', ',', 'by', 'then', 'disbanded', '.'], ['in', 'addition', 'to', 'her', 'size', ',', 'she', 'is', 'amazingly', 'strong', 'and', 'has', 'a', 'resistance', 'to', 'energy', 'attacks', '.'], ['the', 'local', 'church', 'is', 'built', 'on', 'a', 'hill', 'west', 'of', 'the', 'village', 'next', 'to', 'the', 'cemetery', '.'], ['alfred', 'domett', ',', 'the', 'fourth', 'premier', ',', 'led', 'the', 'fifth', 'administration', ',', 'the', 'domett', 'ministry', '.'], ['a', 'high', 'school', 'dropout', 'due', 'to', 'financial', 'constraints', ',', 'he', 'started', 'working', 'as', 'a', 'salesman', 'at', '1', '7', 'and', 'took', 'up', 'theater', 'as', 'a', 'past', 'time', '.'], ['reece', 'stepped', 'down', 'as', 'director', 'of', 'imag', 'in', '2', '0', '0', '5', ',', 'and', 'imag', 'closed', 'in', '2', '0', '0', '7', '.'], ['the', 'goal', 'of', 'the', 'hashtag', 'was', 'to', 'bring', 'awareness', 'to', 'consumers', 'about', 'the', 'brands', 'that', 'they', 'purchase', 'from', 'and', 'raise', 'awareness', 'for', 'the', 'humanitarian', 'and', 'ethical', 'issues', 'in', 'fast', 'fashion', '.'], ['raghu', 'proceeds', 'to', 'recruit', 'vardhi', 'with', 'the', 'promise', 'of', 'spreading', 'sex', 'awareness', 'to', 'the', 'public', 'and', 'eventually', 'vardhi', 'agrees', '.'], ['she', 'also', 'argues', 'that', 'christ', 'did', 'not', 'come', 'to', 'us', 'as', 'a', 'sacrifice', 'because', 'god', 'is', 'a', 'creator', 'of', 'love', 'and', 'beauty', 'and', 'could', 'not', 'desire', '``', 'a', 'bleeding', 'victim', 'as', 'sacrifice', 'to', 'appease', 'his', 'anger', '[', '...', ']', '.', \"''\"], ['elimbah', 'is', 'serviced', 'by', 'city', 'network', 'services', 'to', 'brisbane', ',', 'nambour', 'and', 'gympie', 'north', '.'], ['bhoja', 'also', 'planned', 'on', 'launching', 'another', 'domestic', 'station', 'in', 'sukkur', ';', 'however', 'that', 'did', 'not', 'materialise', ',', 'despite', 'being', 'listed', 'in', 'the', 'airline', \"'s\", 'website', 'booking', 'menu', '.'], ['``', 'the', 'independent', \"''\", 's', 'daniel', 'wright', 'gave', 'the', 'london', 'show', 'a', 'four', 'out', 'of', 'five', 'star', 'rating', ',', 'complimenting', 'her', 'self-aware', 'attitude', 'but', 'felt', 'her', 'cover', 'of', 'phil', 'collins', \"'\", '1', '9', '8', '1', 'song', '``', 'in', 'the', 'air', 'tonight', \"''\", 'was', '``', 'out', 'of', 'place', \"''\", '.'], ['more', 'recent', 'changes', 'to', 'the', 'building', 'include', 'the', 'conversion', 'of', 'the', 'session', 'house', 'and', 'ladies', \"'\", 'parlour', 'into', 'contemporary', 'office', 'space', '.'], ['the', 'years', 'from', '1', '7', '6', '2', 'to', '1', '7', '7', '0', 'were', 'extraordinarily', 'successful', ':', 'the', 'products', 'achieved', 'high', 'quality', 'and', 'established', 'the', 'factory', \"'s\", 'reputation', '.'], ['in', '1', '7', '7', '5', ',', 'on', 'the', 'summons', 'of', 'patrick', 'henry', ',', 'he', 'recruited', 'a', 'battalion', 'and', 'became', 'major', 'of', 'a', 'regiment', 'known', 'as', 'the', '``', 'culpeper', 'minutemen', '.', \"''\"], ['during', 'periods', 'of', 'submersion', ',', 'thick', 'layers', 'of', 'limestone', 'were', 'laid', 'down', 'over', 'the', 'old', 'igneous', 'and', 'metamorphic', 'rock', '.'], ['bratton', 'attracted', 'plenty', 'of', 'other', 'people', 'eager', 'to', 'relieve', 'this', 'arkansas', 'country', 'boy', 'of', 'his', 'new-found', 'wealth', ',', 'which', '-', 'combined', 'with', 'poor', 'financial', 'management', ',', 'by', 'his', 'father', 'and', 'others', '-', 'meant', 'that', 'he', 'ended', 'up', 'losing', 'it', 'all', '.'], ['a', 'new', 'production', 'line', 'abc', '(', '``', 'a.', 'brunschweiler', '&', 'amp', ';', 'company', ')', \"''\", 'wax', 'opened', 'a', 'new', 'facility', 'at', 'atl', 'to', 'produce', 'standard', 'wax', 'range', 'for', 'the', 'ghanaian', 'local', 'market', '.'], ['the', 'act', 'also', 'established', 'a', 'unified', 'court', 'service', ',', 'under', 'the', 'responsibility', 'of', 'the', 'lord', 'chancellor', \"'s\", 'department', ',', 'which', 'as', 'a', 'result', 'expanded', 'substantially', '.'], ['they', 'began', 'with', 'invasions', 'of', 'fernandina', 'and', 'amelia', 'island', '.'], ['the', 'general', 'manager', 'of', 'pbr', 'australia', 'said', 'that', 'this', 'venue', 'has', 'also', 'hosted', 'the', 'olympic', 'games', ',', 'and', 'that', 'it', 'is', 'very', 'fitting', 'to', 'host', 'this', 'event', 'in', 'the', 'largest', 'city', 'in', 'the', 'australia', '.'], ['as', 'originally', 'delivered', ',', 'the', 'class', '3', '7', '3', 'units', 'were', 'additionally', 'fitted', 'with', '7', '5', '0', 'v', 'dc', 'collection', 'shoes', ',', 'designed', 'for', 'the', 'journey', 'in', 'london', 'via', 'the', 'suburban', 'commuter', 'lines', 'to', 'waterloo', '.'], ['on', '8', 'december', '2', '0', '1', '5', 'kasprzyk', 'was', 'appointed', 'by', 'the', 'minister', 'of', 'family', ',', 'labour', 'and', 'social', 'policy', ',', 'elżbieta', 'rafalska', ',', 'as', 'the', 'deputy', 'head', 'of', 'the', 'office', 'for', 'war', 'veterans', 'and', 'victims', 'of', 'oppression', '.'], ['it', 'briefly', 'runs', 'north', 'into', 'searcy', 'county', ',', 'exiting', 'the', 'ozark', 'national', 'forest', 'and', 'serving', 'as', 'the', 'southern', 'terminus', 'of', 'highway', '3', '7', '7', '.'], ['the', 'festival', \"'s\", 'founding', 'and', 'current', 'artistic', 'director', 'is', 'francis', 'coady', '.'], ['medical', 'foundations', 'are', 'independent', 'organizations', 'of', 'scientists', ',', 'physicians', 'and', 'support', 'personnel', 'to', 'investigate', 'key', 'medical', 'challenges', 'and', 'emerging', 'health', 'needs', '.'], ['in', 'february', '1', '9', '4', '7', 'a', 'cadre', 'of', '1', '9', 'topographic', 'squadron', 're', 'moved', 'to', 'egypt', ',', 'and', 'was', 'initially', 'titled', 'as', '1', '9', 'field', 'survey', 'regiment', '.'], ['fran', 'makes', 'a', 'complaint', 'that', 'a', 'patient', 'died', 'after', 'jasmine', 'made', 'a', 'mistake', ',', 'before', 'trying', 'to', 'create', 'a', 'rift', 'between', 'the', 'sisters', '.'], ['iajuddin', 'ahmed', 'formed', 'a', 'government', ',', 'appointing', 'ten', 'advisors', 'to', 'a', 'council', 'to', 'act', 'as', 'ministers', '.'], ['it', 'was', 'played', 'at', 'texarkana', 'country', 'club', 'in', 'texarkana', ',', 'arkansas', '.'], ['on', 'november', '9', ',', '2', '0', '1', '0', ',', 'mason', 'performed', 'a', 'contemporary-ballroom', 'dance', 'with', 'mark', 'ballas', 'to', 'john', 'legend', \"'s\", '``', 'ordinary', 'people', \"''\", 'on', 'the', 'television', 'show', ',', '``', 'dancing', 'with', 'the', 'stars', \"''\", '.'], ['akosombo', 'textiles', 'limited', 'now', 'akosombo', 'industrial', 'company', 'limited', 'was', 'established', 'in', '1', '9', '6', '7', '.'], ['he', 'felt', 'that', 'the', 'principle', 'of', 'tying', 'allowed', 'numbers', 'of', 'immigrants', 'from', 'a', 'given', 'country', 'to', 'the', 'number', 'of', 'people', 'who', 'had', 'ancestral', 'origins', 'in', 'that', 'country', 'and', 'lived', 'in', 'the', 'united', 'states', 'should', 'be', 'retained', '.'], ['in', 'the', 'same', 'year', 'the', 'tibetan', 'empire', 'ceased', 'to', 'make', 'war', 'on', 'the', 'uyghurs', '.'], ['also', 'in', '1', '9', '5', '6', ',', 'obregón', \"'s\", '``', 'cattle', 'drowning', 'in', 'the', 'magdalena', 'river', \"''\", 'was', 'awarded', 'first', 'prize', 'at', 'the', 'gulf', 'caribbean', 'competition', 'in', 'houston', ',', 'texas', ',', 'an', 'exhibition', 'that', 'also', 'included', 'works', 'by', 'others', 'from', 'the', '``', 'big', 'five', \"''\", '.'], ['a', 'bbc', 'caribbean', 'correspondent', 'shared', 'a', 'photo', 'of', 'the', 'tower', 'of', 'david', 'on', 'twitter', ',', 'commenting', 'that', 'the', 'abandoned', 'bank', 'building', 'was', '``', 'verging', 'on', 'collapse', \"''\", ',', 'describing', 'it', 'as', 'an', 'apt', '``', 'economic', 'metaphor', \"''\", 'for', 'venezuela', '.'], ['it', 'was', 'in', 'the', 'late', '1', '9', '2', '0', 's', 'that', 'mcnab', 'sold', 'midnight', 'to', 'stock', 'contractors', 'peter', 'welch', 'and', 'strawberry', 'red', 'wall', '.'], ['the', 'dreaming', 'is', 'the', 'world', 'where', 'people', 'go', 'to', 'dream', ',', 'and', 'is', 'a', 'vague', ',', 'shifting', 'realm', 'of', 'symbol', ',', 'belief', ',', 'and', 'imagination', '.'], ['tradition', 'accords', 'the', 'foundation', 'of', 'tollesbury', 'congregational', 'church', 'to', '1', '8', '0', '3', '.'], ['salta', '(', ')', 'is', 'the', 'capital', 'and', 'most', 'populous', 'city', 'in', 'the', 'argentine', 'province', 'of', 'the', 'same', 'name', '.'], ['this', 'image', 'was', 'named', 'world', 'press', 'photo', 'of', 'the', 'year', '2', '0', '0', '6', '.'], ['this', 'provides', 'some', 'evidence', 'for', 'the', 'past', 'presence', 'of', 'liquid', 'water', '.'], ['bruynseels', 'is', 'a', 'centrist', 'politician', 'and', 'the', 'candidate', 'of', 'the', 'humanist', 'power', 'party', '.'], ['there', 'are', 'many', 'rare', 'species', 'with', 'limited', 'ranges', 'such', 'as', 'this', '.'], ['during', 'the', 'late', '1', '9', 'th', 'century', ',', 'the', 'islanders', 'would', 'often', 'communicate', 'with', 'the', 'outside', 'by', 'lighting', 'a', 'bonfire', 'on', 'the', 'summit', 'of', 'conachair', 'which', 'would', ',', 'weather', 'permitting', ',', 'be', 'visible', 'to', 'those', 'on', 'the', 'isles', 'of', 'harris', 'and', 'the', 'uists', '.'], ['others', 'killed', 'included', 'first', 'vice', 'president', 'zubair', 'mohamed', 'salih', ',', 'governor', 'tongyiik', 'tut', 'colonel', 'elijah', 'manyok', 'lual', ',', 'mr', '.'], ['in', 'the', '``', 'honswi-gut', \"''\", ',', 'which', 'is', 'the', 'least', 'studied', ',', 'the', 'human', 'figures', 'are', 'three', 'brothers', 'who', 'are', 'also', 'warned', 'by', 'a', 'skull', '.'], ['barracks', 'was', 'used', 'by', 'the', 'yugoslav', 'people', \"'s\", 'army', '(', 'ypa', ')', 'until', 'early', '1', '9', '9', '1', 'when', 'its', 'soldiers', 'withdrew', 'from', 'the', 'site', 'following', 'breakup', 'of', 'yugoslavia', '.'], ['whiting', 'township', 'is', 'a', 'township', 'in', 'jackson', 'county', ',', 'kansas', ',', 'usa', '.'], ['in', '1', '9', '9', '1', ',', 'the', 'song', 'was', 'released', 'as', 'a', 'single', 'by', 'jason', 'donovan', ',', 'who', 'was', 'then', 'playing', 'joseph', 'in', 'the', 'west', 'end', 'production', 'of', 'the', 'musical', 'at', 'the', 'london', 'palladium', '.'], ['several', 'major', 'earthquakes', 'have', 'occurred', 'along', 'the', 'sagaing', 'fault', 'close', 'to', 'the', 'epicenter', 'of', 'the', '1', '9', '4', '6', 'earthquakes', ':'], ['the', 'gmr', 'group', 'on', '1', '6', 'th', 'april', '2', '0', '2', '1', 'announced', 'the', 'launch', 'of', 'gmr', 'aerocity', 'in', 'hyderabad', ',', 'spread', 'over', '1', ',', '5', '0', '0', 'acres', 'in', 'the', 'city', \"'s\", 'suburbs', 'in', 'shamshabad', '.'], ['it', 'was', 'first', 'released', 'in', 'japan', 'before', 'becoming', 'available', 'in', 'korea', '.'], ['they', 'married', 'in', 'st', 'paul', \"'s\", 'anglican', 'cathedral', ',', 'melbourne', ',', 'on', '1', '9', 'april', '1', '9', '1', '1', '.'], ['seth', 'then', 'watches', 'a', 'news', 'report', 'about', 'a', 'suicide', 'bomber', 'that', 'implanted', 'a', 'bomb', 'on', 'a', 'bus', ',', 'killing', 'him', 'and', 'some', 'other', 'passenger', '.'], ['and', 'a', 'major', 'february', 'storm', 'dumped', 'over', 'two', 'feet', 'of', 'snow', '.'], ['target', 'malaria', ',', 'a', 'project', 'funded', 'by', 'the', 'bill', 'and', 'melinda', 'gates', 'foundation', ',', 'invested', '$', '7', '5', 'million', 'in', 'gene', 'drive', 'technology', '.'], ['there', 'is', 'an', 'emphasis', 'on', 'art', ',', 'psychology', ',', 'and', 'critical', 'thinking', '.'], ['the', 'canadian', 'social', 'credit', 'movement', 'was', 'largely', 'an', 'out-growth', 'of', 'the', 'alberta', 'social', 'credit', 'party', ',', 'and', 'the', 'social', 'credit', 'party', 'of', 'canada', 'was', 'strongest', 'in', 'alberta', 'during', 'this', 'period', '.'], ['both', 'originate', 'from', 'the', 'embryonic', 'neural', 'tube', 'and', 'are', 'located', 'between', 'the', 'two', 'siphons', '.'], ['had', 'london', 'received', 'more', 'votes', ',', 'the', 'conservative', 'party', 'would', 'have', 'secured', 'line', 'b', 'on', 'all', 'ballots', 'in', 'new', 'york', 'through', 'the', '1', '9', '9', '4', 'new', 'york', 'gubernatorial', 'election', '.'], ['this', 'is', 'the', 'native', 'story', 'of', 'the', 'conquest', 'of', 'guatemala', 'from', 'the', 'point', 'of', 'view', 'of', 'the', 'vanquished', '.'], ['on', 'february', '2', '8', ',', 'plepler', 'resigned', 'from', 'hbo', '.'], ['there', 'were', 'windows', 'on', 'all', 'four', 'sides', ',', 'giving', 'wonderful', 'views', 'of', 'the', 'entire', 'area', ',', 'and', 'a', 'little', 'porch', 'along', 'the', 'front', '.'], ['he', 'ensures', 'that', 'white', 'house', 'requirements', 'are', 'clearly', 'communicated', 'to', 'the', 'whmo', 'directorates', 'and', 'meet', 'the', 'highest', 'standards', 'of', 'presidential', 'quality', '.'], ['thompson', 'was', 'critical', 'of', 'the', 'judge', \"'s\", 'decision', ',', 'telling', 'the', 'judge', '``', 'you', 'did', 'not', 'see', 'the', 'game', '...', 'you', 'do', \"n't\", 'even', 'know', 'what', 'it', 'was', 'you', 'saw', ',', \"''\", 'as', 'well', 'as', 'accusing', 'the', 'take-two', 'employee', 'who', 'demonstrated', 'the', 'game', 'of', 'avoiding', 'the', 'most', 'violent', 'parts', '.'], ['in', '2', '0', '1', '0', ',', 'the', 'cw', 'moved', 'to', 'kecy', \"'s\", 'third', 'digital', 'subchannel', ',', 'which', 'inherited', 'kswt-dt', '2', \"'s\", 'cable', 'carriage', ';', 'kswt', 'replaced', 'cw', 'programming', 'with', 'a', 'standard', 'definition', 'simulcast', 'of', 'its', 'main', 'programming', ';', 'and', '1', '3', '.', '2', 'went', 'dark', '.'], ['of', 'these', ',', 'the', 'riemann', 'sphere', 'is', 'the', 'only', 'one', 'that', 'is', 'a', 'closed', 'surface', '(', 'a', 'compact', 'surface', 'without', 'boundary', ')', '.'], ['rosalynn', 'resented', 'telling', 'her', 'mother', 'she', 'had', 'chosen', 'to', 'marry', 'instead', 'of', 'continuing', 'her', 'education', '.'], ['her', 'crew', 'will', 'be', 'trained', 'to', 'use', 'her', 'guardian-class', 'replacement', ',', '``', 'nafanua', 'ii', \"''\", '.'], ['goździk', 'started', 'his', 'playing', 'career', 'with', 'okęcie', 'warszawa', ',', 'playing', 'with', 'the', 'team', 'until', '1', '9', '4', '7', '.'], ['they', 'live', 'in', 'the', 'suburbs', 'of', 'pittsburgh', 'with', 'their', 'children', ',', 'who', 'are', 'the', 'subject', 'of', 'his', 'book', '``', 'love', 'in', 'the', 'little', 'things', \"''\", '(', '2', '0', '0', '7', ')', '.'], ['an', 'important', 'problem', 'which', 'touches', 'both', 'philosophy', 'of', 'language', 'and', 'philosophy', 'of', 'mind', 'is', 'to', 'what', 'extent', 'language', 'influences', 'thought', 'and', 'vice', 'versa', '.'], ['unfortunately', ',', 'he', 'found', 'none', 'of', 'the', 'scripts', 'he', 'was', 'sent', 'suitable', 'because', 'he', 'could', \"n't\", 'connect', 'to', 'them', '.'], ['nour', 'hage', 'is', 'a', 'lebanese', 'fashion', 'designer', 'and', 'textile', 'artist', ',', 'known', 'for', 'her', 'eponymous', 'brand', '``', 'redefining', 'arab', 'menswear', \"''\", 'and', 'her', 'frequent', 'collaborations', 'with', 'other', 'arab', 'and', 'south', 'asian', 'artists', 'and', 'designers', ',', 'including', 'riz', 'ahmed', ',', 'mashrou', \"'\", 'leila', 'and', 'many', 'others', '.'], ['in', '1', '9', '9', '8', ',', 'the', 'east', 'course', 'was', 'host', 'to', 'the', 'irish', 'pga', 'championship', '.'], ['in', '1', '9', '9', '9', ',', 'his', 'nomination', 'for', 'best', 'new', 'artist', 'at', 'the', 'grammy', 'awards', 'marked', 'the', 'first', 'time', 'a', 'classical', 'artist', 'had', 'been', 'nominated', 'in', 'the', 'category', ',', 'since', 'leontyne', 'price', ',', 'in', '1', '9', '6', '1', '.'], ['hispanic', 'or', 'latino', 'people', 'of', 'any', 'race', 'were', '2', '6', '.', '0', '%', 'of', 'the', 'population', '.'], ['in', 'february', '2', '0', '1', '3', ',', 'perfect', 'world', 'then', 'increased', 'their', 'equity', 'interest', 'to', 'a', 'majority', 'stake', ',', 'meaning', 'that', 'perfect', 'world', 'now', 'owns', 'unknown', 'worlds', '.'], ['in', 'the', 'final', 'farloe', 'melody', 'drew', 'his', 'favoured', 'trap', 'six', 'box', 'for', 'the', 'first', 'time', 'and', 'it', 'resulted', 'in', 'an', 'easy', 'four', 'length', 'victory', 'from', 'winsor', 'abbey', 'who', 'after', 'a', 'poor', 'start', 'ran', 'on', 'very', 'strongly', '.'], ['this', 'contract', 'were', 'let', 'during', 'the', 'administration', 'of', 'alexander', 'robey', 'shepherd', ',', 'governor', 'of', 'the', 'district', 'of', 'columbia', '.'], ['the', 'palace', 'was', 'built', 'in', 'the', 'baroque', 'style', 'around', '1', '7', '3', '0', ',', 'on', 'the', 'ruins', 'of', 'an', 'earlier', 'building', 'for', 'the', 'crown', 'treasurer', ',', 'jan', 'jerzy', 'przebendowski', '.'], ['the', 'reported', 'cause', 'of', 'the', 'accident', 'was', 'iizuka', 'stepping', 'on', 'the', 'accelerator', 'when', 'he', 'meant', 'to', 'apply', 'the', 'brake', '.'], ['henry', 'died', 'on', '1', '5', 'september', '1', '2', '7', '3', '.'], ['lyttelton', 'followed', 'his', 'leader', 'lord', 'cobham', 'in', 'forming', 'a', 'whig', 'opposition', 'to', 'walpole', \"'s\", 'government', 'called', 'the', 'cobhamites', '(', 'which', 'included', 'another', 'of', 'fielding', \"'s\", 'eton', 'friends', ',', 'william', 'pitt', ')', '.'], ['about', 'the', 'only', 'unhappy', 'men', 'in', 'jackson', \"'s\", 'force', 'were', 'the', 'cavalrymen', ',', 'who', 'had', 'hoped', 'to', 'replenish', 'their', 'exhausted', 'mounts', '.'], ['the', 'thin', ',', 'semitranslucent', ',', 'bluish', 'white', 'shell', 'has', 'an', 'elongate-conic', 'shape', '.'], ['though', 'this', 'window', 'has', 'some', 'characteristics', 'of', 'the', 'tiffany', 'style', ',', 'the', 'faries', 'window', 'more', 'closely', 'resembles', 'known', 'examples', 'of', 'sweeney', \"'s\", 'work', ',', 'such', 'as', 'the', 'angel', 'figure', 'in', 'the', 'first', 'unitarian', 'church', 'of', 'wilmington', ',', 'delaware', '.'], ['unlike', 'the', 'locals', ',', 'tamantsev', 'trusts', 'technology', 'more', 'than', 'his', 'senses', ',', 'and', 'that', 'is', 'what', 'saves', 'him', '.'], ['however', ',', 'a', 'canadian-based', 'franchise', 'posed', 'difficulties', 'due', 'to', 'tax', 'and', 'visa', 'issues', ',', 'and', 'rochester', ',', 'new', 'york', ',', 'which', 'is', 'just', 'across', 'the', 'united', 'states', 'border', ',', 'was', 'considered', 'as', 'an', 'alternative', '.'], ['there', 'he', 'distinguished', 'himself', 'by', 'his', 'portrait', 'miniatures', ',', 'although', 'he', 'also', 'painted', 'several', 'pictures', 'for', 'the', 'churches', '.'], ['its', 'underlying', 'principle', 'is', 'that', 'people', ',', 'including', 'those', 'who', 'are', 'aged', 'or', 'impaired', ',', 'have', 'an', 'equal', 'right', 'to', 'live', 'in', 'a', 'unified', 'society', '.'], ['agricultural', 'crop', 'damage', 'by', 'the', 'same', 'species', 'totals', 'approximately', '$', '1', '0', '0', 'million', 'every', 'year', '.'], ['the', 'letter', 'k', 'usually', 'represents', 'the', 'voiceless', 'velar', 'plosive', '.'], ['this', 'performance', 'was', 'one', 'of', 'the', 'first', 'metropolitan', 'opera', 'record', 'albums', 'of', 'a', 'complete', 'opera', 'ever', 'released', '(', 'by', 'columbia', 'masterworks', 'records', ')', '.'], ['easy', 'street', 'toured', 'in', 'europe', 'and', 'the', 'us', 'and', 'were', 'the', '1', '9', '7', '6', 'runners-up', 'of', 'the', 'uk', 'tv', 'show', '``', 'new', 'faces', \"''\", '.'], [')', ',', 'and', 'the', 'composition', 'of', 'the', 'steel', 'alloy', 'used', '(', '1', 'through', '1', '7', ')', '.'], ['lower', 'peak', '8', 'consists', 'of', 'beginner', 'trails', ',', 'as', 'well', 'as', 'many', 'intermediate', 'trails', 'mixed', 'with', 'some', 'advanced', 'runs', '.'], ['the', 'speech', 'was', 'also', 'supported', 'by', 'lebanese', 'militant', 'group', 'and', 'government', 'participant', 'hezbollah', 'and', 'by', 'gazan', 'ruling', 'group', 'hamas', '.'], ['the', 'team', 'ended', 'on', 'the', 'third', 'place', 'in', 'season', '2', '0', '1', '8', '-', '1', '9', ',', 'the', 'seventh', 'women', 'czech', 'team', 'to', 'achieve', 'that', '.'], ['in', '2', '0', '0', '6', ',', 'the', 'town', 'adopted', 'a', 'dark', 'skies', 'ordinance', ',', 'which', 'is', 'now', 'being', 'considered', 'as', 'a', 'model', 'for', 'wider', 'use', 'in', 'new', 'york', 'state', 'to', 'cut', 'down', 'on', 'light', 'pollution', 'at', 'night', '.'], ['in', '1', '9', '8', '8', 'mary', 'v.', 'orna', 'found', 'that', 'one', 'of', 'the', 'illustrations', 'contained', 'prussian', 'blue', '(', 'kfe', '[', 'fe', '(', 'cn', ')', '6', ']', ')', ',', 'produced', 'since', '1', '7', '0', '4', 'only', '.'], ['his', 'last', 'stage', 'appearance', 'was', 'in', 'the', 'title', 'role', 'of', 'sophocles', \"'\", '``', 'philoktitis', \"''\", '(', '1', '9', '9', '1', ')', 'at', 'the', 'restored', 'ancient', 'theater', 'of', 'epidaurus', 'in', 'southern', 'greece', '.'], ['the', 'northern', 'portion', 'of', 'the', 'tehsil', 'is', 'part', 'of', 'the', 'nali', 'region', ',', 'a', 'central', 'area', 'of', 'the', 'sri', 'ganganagar', 'district', 'characterized', 'by', 'the', 'flow', 'of', 'the', 'ghaggar', 'river', '.'], ['after', 'the', 'war', ',', 'while', 'possessing', 'false', 'identification', 'papers', 'and', 'introducing', 'himself', 'as', '``', 'josef', 'huber', \"''\", ',', 'schaub', 'was', 'arrested', 'by', 'american', 'troops', 'on', '8', 'may', '1', '9', '4', '5', 'in', 'kitzbühel', ',', 'and', 'remained', 'in', 'custody', 'until', '1', '7', 'february', '1', '9', '4', '9', '.'], ['nielson', \"'s\", 'global', 'breakthrough', 'album', 'is', 'considered', 'to', 'be', 'the', 'multi-award', 'winning', 'third', 'effort', '``', 'multi-love', \"''\", ',', 'which', 'made', 'it', 'high', 'onto', 'lists', 'by', 'the', 'guardian', ',', 'nme', 'and', 'consequence', 'of', 'sound', 'for', 'the', 'best', 'albums', 'of', '2', '0', '1', '5', '.'], ['he', 'was', 'named', 'in', 'two', 'further', 'royal', 'commissions', 'during', 'the', '1', '9', '8', '0', 's', ',', 'the', 'stewart', 'royal', 'commission', 'and', 'street', 'royal', 'commission', '(', 'also', 'known', 'as', 'the', 'wran', 'royal', 'commission', ')', 'into', 'corruption', 'within', 'the', 'new', 'south', 'wales', 'rugby', 'league', '.'], ['in', '2', '0', '0', '1', ',', 'massmutual', 'financial', 'group', \"'s\", 'assets', 'under', 'management', 'reached', '$', '2', '3', '4', 'billion', '.'], ['schartle', 'joined', 'the', 'appleton-century', 'company', 'in', '1', '9', '4', '7', 'where', 'she', 'eventually', 'held', 'every', 'position', 'in', 'the', 'company', ',', 'including', 'advertising', 'director', '.'], ['the', 'sitcom', ',', 'starring', 'tony', 'danza', ',', 'judith', 'light', ',', 'alyssa', 'milano', ',', 'danny', 'pintauro', 'and', 'katherine', 'helmond', ',', 'ran', 'from', '1', '9', '8', '4', 'to', '1', '9', '9', '2', '.'], ['about', '1', '2', '0', 'lay', 'people', 'known', 'as', 'oblates', '(', 'the', 'benedictine', 'term', 'for', 'tertiaries', ')', 'were', 'affiliated', 'with', 'the', 'monastery', '.'], ['however', ',', 'as', 'of', '2', '0', '1', '4', ',', 'while', 'the', 'system', 'was', 'completed', 'from', 'technical', 'point', 'of', 'view', ',', 'the', 'operational', 'side', 'was', 'still', 'not', 'closed', 'by', 'the', 'ministry', 'of', 'defense', 'and', 'its', 'formal', 'status', 'was', 'still', '``', 'in', 'development', \"''\", '.'], ['the', 'founding', 'officers', 'were', 'ormond', 'e.', 'loomis', ',', 'president', ',', 'clayton', 'h.', 'ernst', ',', 'vice-president', ',', 'and', 'wm', '.'], ['this', 'genus', 'is', 'exclusively', 'associated', 'with', '``', 'tetrapedia', \"''\", '(', 'apidae', ':', 'tetrapediini', ')', '.'], ['notable', 'historic', 'visitors', 'include', 'abel', 'tasman', ',', 'captain', 'cook', ',', 'captain', 'bligh', ',', 'and', 'william', 'mariner', '.'], ['pitjantjatjara', '(', ';', 'or', ')', 'is', 'a', 'dialect', 'of', 'the', 'western', 'desert', 'language', 'traditionally', 'spoken', 'by', 'the', 'pitjantjatjara', 'people', 'of', 'central', 'australia', '.'], ['if', 'the', 'answer', 'is', '``', 'no', \"''\", ',', 'the', 'formula', 'is', 'unsatisfiable', '.'], ['it', 'is', 'named', 'for', 'carter', 'woodson', ',', 'founder', 'of', 'the', 'association', 'for', 'the', 'study', 'of', 'african', 'american', 'life', 'and', 'history', '.'], ['in', '1', '6', '3', '4', 'sir', 'george', 'douglas', ',', 'ambassador', 'from', 'charles', 'i', 'to', 'poland', ',', 'visited', 'ramsay', 'at', 'hanau', '.'], ['he', 'introduced', 'her', 'to', 'his', 'manager', ',', 'eve', 'taylor', ',', 'who', 'won', 'her', 'a', 'contract', 'with', 'pye', 'records', 'in', '1', '9', '6', '4', 'and', 'gave', 'her', 'the', 'stage', 'name', 'of', '``', 'sandie', 'shaw', \"''\", '.'], ['her', 'greatest', 'success', 'came', 'in', 'doubles', 'competitions', ',', 'especially', 'with', 'septi', 'mende', 'as', 'partner', '.'], ['sun', 'parakeets', 'are', 'now', 'listed', 'as', 'endangered', 'by', 'the', 'iucn', '(', 'international', 'union', 'for', 'conservation', 'of', 'nature', ')', '.'], ['with', 'the', 'growing', 'threat', 'of', 'terrorism', 'since', 'the', '9', '/', '1', '1', 'attacks', ',', 'this', 'unit', 'has', 'increasingly', 'adapted', 'itself', 'to', 'conduct', 'counter-terrorism', 'duties', '.'], ['one', 'more', 'important', 'point', 'to', 'add', 'here', 'it', 'is', 'that', 'around', '3', '0', '%', 'of', 'family', 'has', 'at', 'least', 'one', 'member', 'of', 'family', 'is', 'serving', 'in', 'army', '.'], ['the', 'protein', 'reduces', 'activity', 'in', 'an', 'ion', 'pump', 'associated', 'with', 'inflammation', 'and', 'neuropathic', 'pain', ',', 'making', 'it', 'potentially', 'suitable', 'as', 'a', 'treatment', 'for', 'both', 'normal', 'pain', 'and', 'pathological', 'pain', 'syndromes', '.'], ['in', '1', '9', '1', '4', ',', 'with', 'a', 'baby', 'daughter', ',', 'she', 'accompanied', 'brookes', 'on', 'his', 'tennis', 'trips', 'to', 'europe', 'and', 'the', 'usa', '.'], ['the', 'term', '``', 'last', 'supper', \"''\", 'does', 'not', 'appear', 'in', 'the', 'new', 'testament', ',', 'but', 'traditionally', 'many', 'christians', 'refer', 'to', 'such', 'an', 'event', '.'], ['a', 'trainer', 'variant', '(', 't.', '2', ')', 'wn', '3', '6', '5', 'first', 'flew', 'in', 'august', '1', '9', '5', '4', '.'], ['a', 'wide', 'range', 'of', 'applications', 'are', 'based', 'upon', 'this', 'base', 'support', 'for', 'the', 'technology', 'in', 'windows', '.'], ['the', 'danes', 'promised', 'to', 'return', 'their', 'plunder', 'and', 'never', 'to', 'return', 'to', 'the', 'territory', 'of', 'king', 'louis', '.'], ['tuberculosis', 'and', 'venereal', 'diseases', 'originally', 'had', 'their', 'own', 'divisions', ',', 'but', 'they', 'came', 'to', 'be', 'grouped', 'with', 'the', 'division', 'of', 'chronic', 'diseases', 'in', 'the', '1', '9', '5', '0', 's', ',', 'and', 'after', '1', '9', '6', '0', 'were', 'transferred', 'to', 'the', 'communicable', 'disease', 'center', '.'], ['avid', 'fanatics', 'of', 'the', 'franchise', 'however', 'explained', 'that', 'certain', 'aspects', 'of', 'the', 'said', 'coaches', 'can', 'also', 'be', 'seen', 'across', 'franchises', '.'], ['an', 'art', 'deco', 'relief', ',', 'bud-like', 'finials', ',', 'and', 'a', 'tableau', 'embellished', 'the', 'stepped', 'pylon', 'at', 'the', 'entrance', '.'], ['the', 'episode', 'also', 'features', 'a', 'character', 'named', 'ronald', 'd.', 'moore', 'who', 'is', 'mistaken', 'for', 'the', 'tv', 'producer', '.'], ['as', 'an', 'independent', 'city', 'since', '1', '9', '2', '8', ',', 'martinsville', 'is', 'not', 'part', 'of', 'henry', 'county', ',', 'but', 'exists', 'as', 'an', 'enclave', ',', 'surrounded', 'by', 'the', 'county', '.'], ['these', 'two', 'types', 'of', 'shrubs', 'predominate', 'only', 'in', 'these', 'places', '.'], ['av', '1', 'defines', 'levels', 'for', 'decoders', 'with', 'maximum', 'variables', 'for', 'levels', 'ranging', 'from', '2', '.', '0', 'to', '6', '.', '3', '.'], ['speaking', 'on', 'her', 'choice', 'to', 'use', 'the', 'language', ',', 'rihanna', 'commented', ',', '``', 'sometimes', 'the', 'ones', 'who', 'have', 'sight', 'are', 'the', 'blindest', '.', \"''\"], ['vaw-', '7', '8', 'was', 'set', 'to', 'be', 'deactivated', 'march', '3', '1', ',', '2', '0', '0', '5', '.'], ['several', 'people', 'looked', 'deeper', 'into', 'the', 'occurrence', 'of', 'the', 'earthquakes', ',', 'which', 'was', '``', 'interpreted', 'as', 'a', 'political', 'metaphor', 'for', '[', 'venezuela', \"'s\", ']', 'teetering', 'regime', \"''\", '.'], ['giving', 'it', '4', 'out', 'of', '5', 'stars', ',', 'bobby', 'peacock', 'of', '``', 'roughstock', \"''\", 'described', 'the', 'song', \"'s\", 'premise', 'as', '``', 'interesting', \"''\", 'and', 'said', 'that', '``', 'rhett', \"'s\", 'lightly', 'grained', ',', 'casual', ',', 'friendly', 'delivery', 'brings', 'to', 'mind', 'the', 'rough-edged', 'charm', 'of', 'kip', 'moore', '.', \"''\"], ['here', ',', 'latitudes', 'are', 'denoted', 'by', 'formula_', '3', '8', 'and', 'longitudes', 'are', 'denoted', 'by', 'formula_', '3', '9', '.'], ['while', 'the', 'type', 'had', 'been', 'developed', 'in', 'response', 'to', 'the', 'increasing', 'pressure', 'of', 'the', 'border', 'war', ',', 'there', 'is', 'no', 'evidence', 'that', 'any', 'cheetahs', 'of', 'any', 'variant', 'actually', 'conducted', 'offensive', 'operations', 'in', 'the', 'final', 'years', 'of', 'the', 'conflict', '.'], ['in', '2', '0', '0', '7', ',', 'the', 'eagles', 'reached', 'the', '#', '2', 'rank', 'in', 'both', 'the', 'ap', 'and', 'coaches', \"'\", 'poll', 'as', 'well', 'as', 'the', 'bcs', 'rankings', ',', 'led', 'by', 'matt', 'ryan', '.'], ['by', '2', '0', '1', '7', 'the', 'port', 'had', '8', '9', 'berths', 'with', 'a', 'total', 'length', 'of', '1', '5', ',', '6', '2', '7', 'm', ',', 'its', 'annual', 'capacity', 'for', 'the', 'same', 'year', 'was', 'estimated', 'at', '2', '0', '8', ',', '7', '9', '3', 'thousand', 'tons', '.'], ['his', 'father', ',', 'jackson', 'robert', '(', 'jr', ')', 'cartwright', ',', 'was', 'a', 'baptist', 'preacher', 'and', 'served', 'in', 'the', 'oklahoma', 'house', 'of', 'representatives', 'in', '1', '9', '2', '9', 'and', '1', '9', '3', '1', '.'], ['in', '1', '9', '5', '1', ',', 'the', 'first', 'decorative', 'band-aids', 'were', 'introduced', '.'], ['in', 'order', 'to', 'bring', 'comedy', 'to', 'the', 'topics', 'of', 'climate', 'and', 'climate', 'change', ',', 'willis', 'created', 'the', 'character', '``', 'climate', 'elvis', \"''\", ',', 'and', 'performed', 'a', 'song', 'called', '``', 'the', 'climate', 'rock', \"''\", '.'], ['to', 'the', 'north', 'it', 'is', 'adjoined', 'by', 'the', 'german', 'states', 'of', 'rhineland-palatinate', 'and', 'the', 'saarland', ',', 'whilst', 'to', 'the', 'west', 'it', 'is', 'bounded', 'by', 'the', 'cantons', 'of', 'sarralbe', 'and', 'sarreguemines', ',', 'both', 'of', 'the', 'arrondissement', 'of', 'sarreguemines', ',', 'to', 'which', 'the', 'pays', 'de', 'bitche', 'also', 'belongs', '.'], ['the', 'coalition', 'works', 'to', 'defend', 'freedom', 'of', 'thought', ',', 'inquiry', ',', 'and', 'expression', 'from', 'censorship', 'and', 'threats', 'of', 'censorship', 'through', 'education', 'and', 'outreach', ',', 'and', 'direct', 'advocacy', '.'], ['establishment', 'of', 'a', 'surgical', 'airway', 'is', 'challenging', 'in', 'the', 'setting', 'of', 'restricted', 'neck', 'extension', '(', 'such', 'as', 'in', 'a', 'c-collar', ')', ',', 'laryngotracheal', 'disruption', ',', 'or', 'distortion', 'of', 'the', 'anatomy', 'by', 'a', 'penetrating', 'force', 'or', 'hematoma', '.'], ['a', 'disappointing', ',', 'lengthy', 'and', 'gabby', 'third-act', 'makes', '``', 'tanu', 'weds', 'manu', \"''\", \"'s\", 'running', 'time', 'of', '2', 'hours', 'and', '1', '5', 'minutes', 'longer', 'than', 'it', 'is', '.'], ['during', 'world', 'war', 'ii', ',', 'the', 'japanese', 'invaded', 'malaya', 'and', 'either', 'took', 'over', 'or', 'closed', 'down', 'many', 'such', 'mission', 'schools', ',', 'notably', 'the', 'iconic', 'convent', 'primary', 'school', 'in', 'the', 'hills', 'of', 'tanah', 'rata', '.'], ['speaking', 'to', '``', 'inside', 'soap', \"''\", ',', 'laidlaw', 'said', ':', '``', 'i', \"'m\", 'so', 'excited', 'someone', 'has', 'the', 'hots', 'for', 'mrs', 'tembe', ',', 'i', 'told', 'the', 'producers', 'i', 'wanted', 'her', 'to', 'fall', 'in', 'love', 'with', 'someone', ',', 'and', 'now', 'its', 'happening', '.'], ['passenger', 'numbers', 'at', 'málaga', 'increased', 'from', '6', 'million', 'in', '1', '9', '9', '5', 'to', '1', '3', '.', '6', 'million', 'passengers', 'in', '2', '0', '0', '7', ',', 'dropping', 'to', '1', '2', '.', '8', 'million', 'in', '2', '0', '0', '8', '.'], ['in', 'march', '2', '0', '1', '8', ',', 'smith', 'released', 'a', 'statement', 'stating', 'that', 'he', 'was', 'seeking', 'help', 'for', 'mental', 'health', 'and', 'gambling', 'addiction', 'problems', '.'], ['the', 'only', 'way', 'to', 'actually', 'win', 'the', 'game', 'is', 'to', 'complete', 'it', 'without', 'harming', 'or', 'killing', 'any', 'other', 'living', 'creature', '.'], ['total', 'berth', 'length', 'in', 'nsp', 'equals', '8', '.', '3', 'km', '.'], ['thus', 'triassic', 'stratigraphy', 'is', 'mostly', 'based', 'on', 'organisms', 'living', 'in', 'lagoons', 'and', 'hypersaline', 'environments', ',', 'such', 'as', '``', 'estheria', \"''\", 'crustaceans', 'and', 'terrestrial', 'vertebrates', '.'], ['additionally', ',', 'the', 'port', 'at', 'whitby', 'has', 'suffered', 'from', 'a', 'lack', 'of', 'investment', 'in', 'its', 'infrastructure', ',', 'so', 'much', 'so', ',', 'that', 'some', 'fishing', 'boats', 'registered', 'at', 'whitby', 'travel', 'to', 'the', 'dock', 'at', 'north', 'shields', ',', 'to', 'the', 'north', 'to', 'unload', 'their', 'catch', '.'], ['pope', 'leo', 'xiii', 'elevated', 'the', 'priory', 'to', 'an', 'abbey', ',', 'known', 'as', 'belmont', 'abbey', ',', 'on', '1', '9', 'december', '1', '8', '8', '4', ',', 'whereupon', 'the', 'monks', 'elected', 'father', 'leo', 'haid', 'as', 'their', 'first', 'abbot', '.'], ['divorce', 'papers', 'were', 'filed', 'on', 'october', '1', ',', '2', '0', '1', '2', '.'], ['in', '1', '9', '7', '4', ',', 'rubinstein', 'received', 'his', 'ph.d.', 'from', 'the', 'university', 'of', 'california', ',', 'berkeley', 'under', 'the', 'advisership', 'of', 'john', 'stallings', '.'], ['on', '2', '1', 'march', '1', '7', '9', '6', '``', 'serin', \"''\", 'supported', 'the', 'landing', 'of', 'troops', 'for', 'an', 'attack', 'on', 'leogane', '.'], ['a', 'radio', 'enthusiast', 'from', 'an', 'early', 'age', '(', 'with', 'an', 'amateur', 'radio', 'station', 'k', '2', 'koq', 'in', 'a', 'corner', 'of', 'the', 'basement', ')', ',', 'he', 'became', 'a', 'dj', '(', '``', 'large', 'sarge', \"''\", ')', 'on', 'whvw', 'in', 'nearby', 'hyde', 'park', ',', 'after', 'helping', 'build', 'the', 'station', '.'], ['there', 'was', 'a', 'reduction', 'in', 'the', 'number', 'of', 'european', 'greenfinches', 'but', 'no', 'significant', 'decline', 'in', 'the', 'overall', 'number', 'of', 'common', 'chaffinches', '.'], ['bradford', 'church', 'of', 'christ', 'is', 'the', 'town', \"'s\", 'lone', 'church', 'of', 'christ', ',', 'operating', 'on', 'front', 'street', '.'], ['union', 'was', 'patronized', 'by', 'eastern', 'german', 'trade', 'union', 'fdgb', '.'], ['there', 'are', 'presently', 'other', 'countries', 'using', 'mvdds', 'for', 'television', 'signal', 'delivery', ',', 'these', 'also', 'being', 'built', 'by', 'mds', 'america', ',', 'for', 'example', ':'], ['reports', 'refuting', 'the', 'most', 'significant', 'aspects', 'of', 'the', 'original', 'results', 'were', 'published', 'in', 'the', 'same', 'journal', 'in', '2', '0', '1', '2', '.'], ['in', '1', '3', '3', '9', ',', 'ulrich', 'decreed', 'the', 'primogeniture', 'in', 'hanau', '.'], ['the', 'new', 'york', 'city', 'police', 'department', 'pension', 'fund', 'signed', 'a', 'lease', 'for', 'on', 'the', '1', '9', 'th', 'and', '2', '5', 'th', 'floors', 'in', 'april', '2', '0', '0', '2', '.'], ['``', 'performance', 'level', 'descriptors', \"''\", 'define', 'the', 'required', 'skills', 'for', 'remedial', 'and', 'standard', 'courses', '.'], ['jencks', 'died', 'on', 'june', '3', '0', ',', '2', '0', '1', '4', ',', 'at', 'the', 'age', 'of', '9', '3', '.'], ['the', 'company', 'operated', '5', '2', '-miles', 'of', 'trams', 'until', 'world', 'war', 'ii', '.'], ['it', 'pays', 'off', ',', 'as', 'dolly', 'is', 'invited', 'to', 'the', '``', 'd', '&', 'amp', ';', 'me', \"''\", 'offices', 'and', 'is', 'given', 'a', 'music', 'journalist', 'job', '.'], ['within', 'the', 'city', 'is', 'a', 'rocky', 'formation', 'called', 'piedra', 'del', 'cocuy', ',', 'an', 'excellent', 'climbing', 'place', 'in', 'one', 'of', 'the', 'most', 'bio-diverse', 'areas', 'on', 'earth', '.'], ['ctb', 'serves', 'more', 'than', '1', '8', 'million', 'students', 'in', 'all', '5', '0', 'states', 'and', '4', '9', 'countries', '.'], ['she', 'made', 'her', 'senior', 'debut', 'for', 'jamaica', 'on', '3', '0', 'september', '2', '0', '1', '9', '.'], ['located', 'near', 'the', 'north', 'edge', 'of', 'the', 'city', ',', 'it', 'is', 'bounded', 'by', 'sarcee', 'trail', 'to', 'the', 'west', ',', 'the', 'nolan', 'hill', 'community', 'across', '1', '2', '8', 'avenue', 'n.w', '.'], ['in', 'contrast', 'to', 'the', 'embellishments', 'of', 'the', 'elda', 'version', ',', 'titra', \"'s\", 'dubbing', 'was', 'largely', 'faithful', 'to', 'the', 'cast', \"'s\", 'onscreen', 'dialogue', ',', 'although', 'some', 'phrases', 'were', 'softened', ',', 'such', 'as', 'asa', \"'s\", 'line', '``', 'you', 'too', 'can', 'find', 'the', 'joy', 'and', 'happiness', 'in', 'hades', '!', \"''\"], ['he', 'named', 'his', 'capital', '``', 'the', 'place', 'of', 'the', 'one', 'to', 'be', 'killed', \"''\", '.'], ['it', 'connects', 'ranchi', ',', 'capital', 'of', 'jharkhand', ',', 'to', 'hazaribagh', 'in', 'jharkhand', '.'], ['proponents', 'of', 'ancient', 'grains', 'say', 'that', 'they', 'are', 'rich', 'in', 'protein', ',', 'omega-', '3', 'fatty', 'acids', 'and', 'antioxidants', '.'], ['on', '2', '4', 'august', '2', '0', '0', '3', 'it', 'premiered', 'at', 'the', 'london', 'frightfest', 'film', 'festival', 'and', 'stars', 'kevin', 'howarth', 'and', 'mark', 'stevenson', '.'], ['artsvi', 'bakhchinyan', 'received', 'his', 'diploma', 'in', 'armenian', 'language', 'and', 'literature', 'from', 'the', 'yerevan', 'state', 'university', 'in', '1', '9', '9', '3', '.'], ['he', 'was', 'a', 'second', 'unit', 'director', 'for', '``', 'poetic', 'justice', \"''\", ',', '``', 'higher', 'learning', \"''\", ',', '``', 'tank', 'girl', \"''\", 'and', '``', 'godzilla', \"''\", '.'], ['she', 'earned', 'her', 'master', \"'s\", 'degree', 'in', 'applied', 'linguistics', 'at', 'umm', 'al-qura', 'university', 'in', 'makkah', '.'], ['on', 'that', 'day', ',', 'lieutenants', 'myers', 'and', 'mccollough', 'with', 'lieutenants', 'white', 'and', 'bruett', 'as', 'protection', 'were', 'attacked', 'by', 'a', 'group', 'of', 'five', 'enemy', 'aircraft', '.'], ['the', 'white', ',', 'stone', 'church', 'was', 'built', 'during', 'the', 'middle', 'to', 'late', '1', '3', 'th', 'century', '.'], ['in', '1', '9', '3', '5', ',', 'he', 'tied', 'for', '5', '-', '6', 'th', 'in', 'łódź', '(', 'savielly', 'tartakower', 'won', ')', 'and', 'took', '4', 'th', 'in', 'tatatovaros', '(', 'lászló', 'szabó', 'won', ')', '.'], ['the', 'track', 'is', 'recreated', 'by', 'savvy', 'and', 'sung', 'by', 'imran', 'mahmudul', '.'], ['the', 'opposition', 'to', 'the', 'vatican', 'council', 'reached', 'its', 'acme', 'in', 'the', 'work', '``', 'der', 'papst', 'und', 'das', 'concil', \"''\", ',', 'by', '``', 'janus', \"''\", '(', 'döllinger', ')', '.'], ['the', 'unit', 'stationed', 'in', 'flåm', 'was', 'periodically', 'sent', 'for', 'service', 'in', 'oslo', ',', 'and', 'when', 'this', 'happened', ',', 'a', 'new', 'unit', 'would', 'be', 'stationed', 'in', 'flåm', '.'], ['climbers', 'usually', 'start', 'from', 'the', '``', 'les', 'grands', 'couloirs', \"''\", 'glacier', 'and', 'ascend', 'the', 'southwest', 'side', 'of', 'the', 'mountain', '.'], ['about', '8', '.', '4', '%', 'of', 'families', 'and', '1', '2', '.', '4', '%', 'of', 'the', 'population', 'were', 'below', 'the', 'poverty', 'line', ',', 'including', '2', '0', '.', '3', '%', 'of', 'those', 'under', 'age', '1', '8', 'and', '9', '.', '0', '%', 'of', 'those', 'age', '6', '5', 'or', 'over', '.'], ['shortly', 'after', 'the', 'study', 'was', 'completed', ',', 'there', 'were', 'bloody', 'revolts', 'at', 'both', 'the', 'san', 'quentin', 'and', 'attica', 'prison', 'facilities', ',', 'and', 'zimbardo', 'reported', 'his', 'findings', 'on', 'the', 'experiment', 'to', 'the', 'u.s.', 'house', 'committee', 'on', 'the', 'judiciary', '.'], ['more', 'specifically', ',', 'mmp-', '2', '(', 'along', 'with', 'mmp-', '9', ')', 'is', 'capable', 'of', 'degrading', 'type', 'iv', 'collagen', ',', 'the', 'most', 'abundant', 'component', 'of', 'the', 'basement', 'membrane', '.'], ['in', 'time', ',', 'alder', 'fully', 'adopted', 'the', 'mingo', 'way', 'of', 'life', ';', 'he', 'lived', ',', 'hunted', ',', 'and', 'fought', 'as', 'an', 'indian', '.'], ['he', 'also', 'stated', 'that', 'though', 'many', 'of', 'the', 'disney', 'characters', 'are', 'not', 'normally', 'dark', 'and', 'serious', ',', 'there', 'were', 'not', 'many', 'challenges', 'making', 'them', 'so', 'for', 'the', 'story', ',', 'and', 'despite', 'this', ',', 'their', 'personalities', 'shine', 'because', 'they', 'maintain', 'their', 'own', 'characteristics', '.'], ['he', 'and', 'his', 'wife', 'fatma', 'have', 'a', 'son', ',', 'kaan', 'berk', ',', 'and', 'a', 'baby', 'girl', ',', 'eylem', 'banu', '.'], ['on', 'january', '2', '5', ',', '2', '0', '1', '0', 'crittenton', 'pleaded', 'guilty', 'and', 'was', 'given', 'a', 'year', 'of', 'probation', 'on', 'a', 'misdemeanor', 'gun', 'possession', 'charge', 'stemming', 'from', 'this', 'incident', '.'], ['born', 'in', '1', '8', '8', '1', 'at', 'englefield', 'in', 'the', 'english', 'county', 'of', 'berkshire', ',', 'dixon', 'was', 'influenced', 'by', 'the', 'reformist', 'labour', 'politics', 'of', 'his', 'home', 'country', ',', 'and', 'also', 'favoured', 'the', 'single', 'tax', 'ideas', 'of', 'henry', 'george', '.'], ['a', 'second', 'teaser', 'image', 'was', 'released', 'two', 'days', 'later', ',', 'reporting', 'that', 'this', 'would', 'be', 'her', 'third', 'summer', 'album', 'after', '``', 'hands', 'on', 'me', \"''\", '(', '2', '0', '1', '7', ')', 'and', '``', 'blooming', 'blue', \"''\", '(', '2', '0', '1', '8', ')', '.'], ['some', 'years', 'later', ',', 'in', '1', '9', '3', '8', ',', 'the', 'need', 'to', 'build', 'a', 'new', 'high', 'pressure', 'boiler', 'building', 'led', 'to', 'the', 'demolition', 'of', 'the', 'naves', 'from', 'the', 'station', \"'s\", 'original', 'phase', ',', 'leaving', 'no', 'trace', 'behind', '.'], ['this', 'invitation', 'resulted', 'in', 'a', 'commission', 'for', 'négyesy', 'to', 'write', 'a', 'book', 'on', 'violin', 'techniques', '.'], ['its', 'title', 'is', 'based', 'on', 'a', 'line', 'from', 'a', 'clive', 'james', 'poem', 'first', 'published', 'in', 'the', '3', 'june', '2', '0', '1', '3', 'issue', 'of', '``', 'the', 'new', 'yorker', \"''\", 'in', 'which', 'he', 'describes', 'his', 'own', 'mortality', 'called', '``', 'leçons', 'des', 'ténèbres', \"''\", '.'], ['he', 'enlisted', 'in', 'the', 'navy', 'at', 'denver', ',', 'colorado', 'on', '2', 'july', '1', '9', '4', '1', '.'], ['the', 'aeon', 'bukit', 'tinggi', 'shopping', 'centre', 'has', 'a', 'gross', 'lettable/leasable', 'area', 'of', ',', 'making', 'it', 'one', 'of', 'the', 'largest', 'shopping', 'malls', 'in', 'the', 'country', '.'], ['he', 'had', 'to', 'overcome', 'a', 'lot', 'of', 'hurdles', 'to', 'form', 'this', 'specialized', 'unit', 'as', 'many', 'brass', 'types', 'could', 'not', 'buy', 'into', 'the', 'concept', 'of', 'such', 'a', 'specialized', 'unit', '.'], ['both', 'the', 'declaration', 'of', 'the', 'rights', 'of', 'woman', 'and', 'of', 'the', 'female', 'citizen', 'and', 'the', 'creation', 'of', 'the', 'society', 'of', 'revolutionary', 'republican', 'women', 'further', 'conveyed', 'their', 'message', 'of', 'women', \"'s\", 'rights', 'as', 'a', 'necessity', 'to', 'the', 'new', 'order', 'of', 'the', 'revolution', '.'], ['``', 'miel', 'amarga', \"''\", '(', ')', 'is', 'a', 'ranchera', 'song', 'by', 'mexican', 'recording', 'artist', 'irma', 'serrano', ',', 'from', 'her', 'sixth', 'studio', 'album', ',', '``', 'mexican', 'fire', \"''\", '(', '1', '9', '6', '6', ')', '.'], ['he', 'was', 'appointed', 'officer', 'in', 'charge', 'of', 'the', 'anti-submarine', 'establishment', 'at', 'portland', 'in', '1', '9', '3', '6', '.'], ['as', 'part', 'of', 'his', 'phd', 'program', 'on', 'information', 'technology', ',', 'he', 'developed', 'a', 'java-based', 'simulation', 'platform', 'called', '``', 'sense', \"''\", '(', 'simulated', 'environment', 'of', 'networked', 'sensor', 'experiments', ')', ',', 'to', 'test', 'different', 'heuristics', '.'], ['it', 'was', 'officially', 'discontinued', 'after', 'the', '2', '0', '1', '6', 'game', ',', 'as', 'the', 'organizing', 'committee', 'announced', '(', 'in', 'january', '2', '0', '1', '7', ')', 'that', 'it', 'had', 'decided', 'to', 'host', 'only', 'one', 'game', ',', 'beginning', 'with', 'the', '2', '0', '1', '7', 'season', '.'], ['sena', 'kougami', 'returned', 'as', 'a', 'racing', 'queen', 'for', 'this', 'season', 'and', 'was', 'joined', 'by', 'tsukasa', 'arai', 'and', 'elena', 'ishiguro', '.'], ['the', 'modellista', 'body', 'kits', 'were', 'also', 'available', 'as', 'dealer', 'installed', 'options', ',', 'which', 'is', 'badged', 'as', '``', 'limited', \"''\", '.'], ['with', 'planar', 'systems', 'and', 'clarity', 'visual', 'systems', ',', 'it', 'is', 'one', 'of', 'three', 'companies', 'in', 'the', 'computer', 'display', 'industry', 'started', 'by', 'people', 'who', 'formerly', 'worked', 'for', 'tektronix', '.'], ['for', 'every', '1', '0', '0', 'females', ',', 'there', 'were', '9', '3', '.', '9', 'males', '.'], ['the', 'regular', 'semi-algebraic', 'systems', 'form', 'a', 'triangular', 'decomposition', 'of', 'the', 'semi-algebraic', 'system', '.'], ['in', 'front', 'of', 'the', 'peninsula', 'is', 'the', 'wadden', 'sea', 'which', 'stretches', 'between', 'the', 'jade', \"'s\", 'and', 'the', 'weser', \"'s\", 'mouths', 'about', '2', '3', 'kilometers', 'to', 'the', 'northwest', 'beyond', 'the', 'mellum', 'island', '.'], ['on', '1', '1', 'september', 'neufville', 'returned', 'two', 'barrels', 'with', 'debased', 'coins', 'worth', '5', '0', ',', '0', '0', '0', 'guilders', 'to', 'carl', 'leveaux', '.'], ['sowers', \"'\", 'pitching', 'repertoire', 'featured', 'a', 'fastball', 'with', 'which', 'he', 'varied', 'the', 'speed', 'between', 'about', '8', '5', 'and', '9', '2', 'mph', ',', 'a', 'curveball', ',', 'a', 'slider', 'that', 'cuts', 'in', 'on', 'right-handed', 'batters', ',', 'and', 'a', 'changeup', '.'], ['colonel', '``', 'schauenburg', \"''\", 'was', 'already', 'stationed', 'in', '``', 'réghaïa', \"''\", 'as', 'the', 'head', 'of', 'the', 'cavaliers', 'of', 'the', '``', \"''\", 'to', 'protect', 'and', 'guard', 'the', 'agricultural', 'farms', 'that', 'had', 'been', 'looted', 'at', 'the', 'start', 'of', 'hostilities', 'in', 'the', 'spring', 'of', '1', '8', '3', '7', '.'], ['the', 'population', 'was', '6', '3', '9', 'at', 'the', '2', '0', '1', '0', 'census', '.'], ['this', 'was', 'because', 'lobhengula', 'was', 'born', 'to', 'a', 'swazi', 'mother', 'and', 'mbiko', 'ka', 'madlenya', 'masuku', 'felt', 'that', 'she', 'was', 'of', 'a', 'lesser', 'class', '.'], ['on', 'january', '2', '0', ',', '2', '0', '0', '6', ',', 'the', 'los', 'angeles', 'galaxy', 'picked', 'king', 'in', 'the', 'fourth', 'round', '(', 'forty-eighth', 'overall', ')', 'in', 'the', '2', '0', '0', '6', 'mls', 'superdraft', '.'], ['dannen', ',', 'frederic', ',', '``', 'hit', 'men', ':', 'power', 'brokers', 'and', 'fast', 'money', 'inside', 'the', 'music', 'business', \"''\", ',', 'vintage', 'books', ',', '1', '9', '9', '1', '(', ')'], ['callot', 'soeurs', \"'s\", 'greatest', 'american', 'supporter', 'was', 'rita', 'de', 'acosta', 'lydig', 'who', 'ordered', 'dozens', 'of', 'dresses', 'at', 'a', 'time', '.'], ['damir', 'črnčec', '(', 'born', 'june', '1', '9', ',', '1', '9', '7', '3', 'in', 'maribor', ')', 'is', 'a', 'columnist', ',', 'expert', 'on', 'security', 'issues', ',', 'university', 'professor', ',', 'and', 'civil', 'society', 'activist', '.'], ['the', 'ord', 'river', 'is', 'a', 'river', 'in', 'the', 'kimberley', 'region', 'of', 'western', 'australia', '.'], ['in', 'addition', ',', 'the', 'wind', 'farm', 'would', 'make', 'a', 'very', 'significant', 'contribution', 'to', 'reducing', 'greenhouse', 'gas', 'emissions', 'in', 'queensland', '-', 'reducing', 'electricity', 'emissions', 'by', 'over', '3', '7', '0', ',', '0', '0', '0', 'tonnes', 'of', 'greenhouse', 'gas', 'emissions', 'annually', '.'], ['carter', 'soon', 'discovers', 'lexie', \"'s\", 'agenda', 'and', 'is', 'doubly', 'hurt', 'when', 'he', 'learns', 'that', 'dodge', 'and', 'lexie', 'are', 'starting', 'to', 'show', 'affections', 'for', 'each', 'other', 'and', 'even', 'shared', 'a', 'kiss', '.'], ['they', 'provide', 'more', 'flexibility', 'than', 'traditional', 'clinics', 'and', 'hospitals', ',', 'but', 'more', 'stability', 'than', 'many', 'university-based', 'research', 'organizations', '.'], ['at', 'that', 'time', 'the', 'company', 'employed', '1', ',', '2', '0', '0', 'people', '.'], ['in', 'late', 'december', '2', '0', '0', '6', 'an', 'unsuccessful', 'attempt', 'was', 'made', 'to', 'arrest', 'lasantha', 'wickrematunge', 'for', '``', 'endangering', 'national', 'security', \"''\", 'after', '``', 'the', 'sunday', 'leader', \"''\", 'published', 'a', 'report', 'exposing', 'a', 'rs', '.'], ['alicia', 'miller', 'of', 'zumic', 'stated', 'that', '``', 'fashawn', 'and', 'nas', 'both', 'drop', 'deep', 'bars', 'in', 'their', 'verses', 'and', 'blacc', 'croons', 'on', 'the', 'hook', 'with', 'thought-provoking', 'lines', \"''\", '.'], ['anthynus', 'admits', 'that', 'he', 'is', 'not', 'osrick', ',', 'and', 'osrick', 'is', 'recognised', 'as', 'himself', '.'], ['during', 'the', 'first', 'decade', 'of', 'the', '2', '1', 'st', 'century', ',', 'oakland', 'has', 'consistently', 'been', 'listed', 'as', 'one', 'of', 'the', 'most', 'dangerous', 'large', 'cities', 'in', 'the', 'united', 'states', '.'], ['the', 'summit', 'crossing', 'never', 'was', 'able', 'to', 'handle', 'the', 'canal', 'traffic', '.'], ['caranda', 'airport', 'is', 'an', 'airstrip', 'serving', 'caranda', 'in', 'the', 'santa', 'cruz', 'department', 'of', 'bolivia', '.'], ['many', 'jetboats', 'are', 'small', 'enough', 'to', 'be', 'carried', 'on', 'a', 'trailer', 'and', 'towed', 'by', 'car', '.'], ['in', '2', '0', '0', '3', 'the', 'northern', 'teacher', 'education', 'program', '(', 'nortep', ')', 'hosted', 'the', 'program', 'in', 'la', 'ronge', ',', 'saskatchewan', '.'], ['dennis', 'baker', 'of', '``', 'the', 'guardian', \"''\", 'wrote', 'that', 'barker', '``', 'preferred', 'innuendo', 'over', 'the', 'crudely', 'explicit', ',', 'a', 'restraint', 'that', 'demanded', 'some', 'imagination', 'from', 'the', 'audience', 'and', 'was', 'the', 'essence', 'of', 'his', 'comedy', '.', \"''\"], ['the', 'following', 'year', ',', 'she', 'appeared', 'in', 'the', 'popular', 'murder', 'mystery', '``', 'the', 'thirteenth', 'chair', \"''\", ',', 'a', 'role', 'that', 'offered', 'her', 'the', 'chance', 'to', 'display', 'her', 'dramatic', 'abilities', 'as', 'a', 'murder', 'suspect', '.'], ['in', '1', '9', '5', '0', ',', 'minton', 'won', 'another', 'victory', 'when', 'the', 'union', 'established', 'its', 'first', 'pension', 'plan', 'for', 'its', 'members', '.'], ['however', ',', 'to', 'avoid', 'a', 'conflict', 'of', 'interest', ',', 'he', 'stayed', 'out', 'of', 'the', 'courts', 'and', 'practised', 'solely', 'as', 'a', 'solicitor', '.'], ['it', 'was', 'praised', 'by', 'critics', 'at', 'the', 'festival', 'as', '``', 'accessible', ',', 'enjoyable', ',', 'and', 'light-hearted', \"''\", '.'], ['the', 'french', 'sinologist', 'stanislas', 'julien', 'described', 'part', 'ii', 'as', '``', 'without', 'dispute', ',', 'the', 'best', 'chinese', 'dictionary', 'composed', 'in', 'a', 'european', 'language', \"''\", '.'], ['the', 'township', 'acquired', 'large', 'tracts', 'of', 'environmentally', 'sensitive', 'land', 'to', 'slow', 'the', 'pace', 'of', 'development', ',', 'preserve', 'the', 'environment', ',', 'and', 'protect', 'housing', 'values', '.'], ['glen', 'is', 'a', 'large', 'and', 'incredibly', 'lazy', 'man', ',', 'often', 'seen', 'sitting', 'on', 'his', 'lawn', 'chair', 'or', 'napping', '.'], ['mithran', 'and', 'sree', 'valsan', ',', 'and', 'two', 'other', 'daughters', '.'], ['it', 'has', 'a', 'single', 'entry', 'through', 'the', 'bell', 'tower', '.'], ['these', 'are', 'also', 'the', 'poorer', 'and', 'more', 'disadvantaged', 'areas', 'of', 'belfast', '.'], ['in', 'the', 'late', '1', '9', '4', '0', 's', ',', 'porter', 'and', 'dmytryk', 'escaped', 'to', 'england', '.'], ['this', 'second', ',', '``', 'new', \"''\", 'courthouse', 'has', 'since', 'been', 'replaced', 'with', 'new', 'facilities', 'as', 'well', 'as', 'a', 'park', '.'], ['its', 'population', '(', '2', '0', '0', '6', ')', 'was', 'estimated', 'by', 'the', 'ibge', 'to', 'be', '4', '0', '7', ',', '8', '1', '5', 'inhabitants', 'in', 'a', 'total', 'area', 'of', '1', '1', ',', '3', '2', '7', 'km²', '.'], ['his', 'wife', 'moved', 'back', 'to', 'the', 'united', 'states', 'with', 'their', 'children', ',', 'the', 'same', 'year', 'that', 'he', 'pleaded', 'guilty', 'in', 'relation', 'to', 'an', 'attempted', 'coup', 'in', 'equatorial', 'guinea', 'and', 'questions', 'were', 'being', 'asked', 'in', 'the', 'government', 'about', 'whether', 'he', 'should', 'be', 'stripped', 'of', 'his', 'title', '.'], ['during', 'the', 'late', 'gothic', 'era', ',', 'the', 'growing', 'prosperity', 'and', 'position', 'of', 'the', 'dukes', 'led', 'to', 'a', 'growing', 'need', 'for', 'a', 'representative', 'castle', ',', 'and', 'this', 'meant', 'architectural', 'changes', 'to', 'the', 'fortress', 'settlement', '.'], ['the', 'independent', 'section', 'formed', 'a', 'separate', 'congregation', 'in', '1', '6', '8', '6', ';', 'on', 'the', 'issue', 'of', 'james', 'ii', \"'s\", \"'declaration\", 'for', 'liberty', 'of', 'conscience', \"'\", 'next', 'year', '(', '4', 'april', ')', ',', 'the', 'presbyterians', 'under', 'fairfax', 'hired', 'a', 'building', 'for', 'public', 'worship', 'in', 'st.', 'nicholas', 'parish', '.'], ['around', 'the', 'same', 'time', ',', 'skye', 'disappeared', 'and', 'adam', ',', 'who', 'was', 'back', 'in', 'a', 'romance', 'with', 'sharon', 'newman', ',', 'was', 'accused', 'of', 'her', 'murder', '.'], ['however', ',', 'on', '2', 'february', '2', '0', '1', '9', ',', 'he', 'used', 'the', 'title', 'to', 'sign', 'a', 'press', 'release', '.'], ['during', 'the', 'cambrian', ',', 'the', 'first', 'vertebrate', 'animals', ',', 'among', 'them', 'the', 'first', 'fishes', ',', 'had', 'appeared', '.'], ['the', 'population', 'of', 'gosberton', ',', 'which', 'was', 'approximately', '2', '5', '0', '0', ',', 'increased', 'to', '2', ',', '9', '5', '8', 'at', 'the', '2', '0', '1', '1', 'census', '.'], ['tripunithura', 'sree', 'poornathrayeesa', 'temple', 'vrishchikolsavam', 'is', 'one', 'of', 'the', 'best', 'venue', 'of', 'panchari', 'melam', 'where', 'one', 'can', 'enjoy', '1', '5', 'detailed', 'panchari', 'melams', '.'], ['the', 'city', 'of', 'kičevo', 'is', 'the', 'seat', 'of', 'kičevo', 'municipality', '.'], ['the', 'song', 'was', 'also', 'a', 'number-one', 'hit', 'in', 'ireland', 'and', 'a', 'number-three', 'hit', 'in', 'austria', '.'], ['when', 'the', 'bonfire', 'had', 'been', 'reduced', 'to', 'ashes', 'and', 'cinders', ',', 'nilsen', 'used', 'a', 'rake', 'to', 'search', 'the', 'debris', 'for', 'any', 'recognisable', 'bones', '.'], ['licking', 'view', 'is', 'located', 'along', 'the', 'licking', 'river', 'near', 'the', 'western', 'border', 'of', 'zanesville', '.'], ['she', 'played', 'nadine', 'in', 'this', 'sweet', 'sickness', ',', 'directed', 'by', 'claude', 'miller', ',', 'based', 'on', 'the', 'novel', 'written', 'by', 'patricia', 'highsmith', '.'], ['ting', 'later', 'announced', 'that', 'they', 'had', 'reached', 'an', 'agreement', 'that', 'would', 'allow', 'them', 'to', 'continue', 'to', 'offer', 't-mobile', 'service', 'for', 'at', 'least', 'three', 'years', 'after', 'december', '2', '0', '1', '9', '.'], ['national', 'amusements', 'agreed', 'to', 'not', 'propose', 'a', 'cbs-viacom', 'merger', 'for', 'at', 'least', 'two', 'years', 'after', 'the', 'date', 'of', 'the', 'settlement', '.'], ['``', 'midnight', \"'s\", 'children', \"''\", 'won', 'both', 'the', 'booker', 'prize', 'and', 'the', 'james', 'tait', 'black', 'memorial', 'prize', 'in', '1', '9', '8', '1', '.'], ['this', 'contrasts', 'with', 'sōtō', 'practice', ',', 'which', 'has', 'de-emphasized', 'kōans', 'since', 'gentō', 'sokuchū', '(', 'circa', '1', '8', '0', '0', ')', ',', 'and', 'instead', 'emphasizes', 'shikantaza', '.'], ['guatemala', 'does', 'not', 'have', 'a', 'digital', 'terrestrial', 'standard', 'yet', ',', 'but', 'it', 'seems', 'that', 'isdb-t', 'will', 'be', 'the', 'norm', '.'], ['at', 'various', 'times', 'during', 'their', 'career', 'the', 'band', 'has', 'maintained', 'a', 'mythology', 'about', 'their', 'origins', 'which', 'purports', 'them', 'to', 'be', 'rogue', 'secret', 'agents', ',', 'on', 'the', 'run', 'from', 'a', 'clandestine', 'government', 'organization', 'with', 'ties', 'to', 'extraterrestrials', '.'], ['people', 'who', 'view', 'themselves', 'in', 'an', 'individualistic', 'sense', 'describe', 'themselves', 'with', 'personality', 'traits', 'that', 'are', 'permanent', 'descriptions', 'unrelated', 'to', 'particular', 'situations', '.'], ['in', '2', '0', '0', '3', ',', 'a', 'golden', 'palm', 'star', 'on', 'the', 'palm', 'springs', ',', 'california', ',', 'walk', 'of', 'stars', 'was', 'dedicated', 'to', 'him', 'and', 'his', 'father', ',', 'richard', '.'], ['when', 'she', 'understood', 'the', 'solemnity', 'of', 'the', 'proceedings', ',', 'she', 'wished', 'to', 'retreat', ',', 'but', 'was', 'caught', 'by', 'the', 'lodge', 'tyler', ',', 'who', 'was', 'also', 'the', 'family', 'butler', '.'], ['in', '2', '0', '0', '3', ',', 'geneva', 'declaration', 'of', 'principles', 'and', 'the', 'geneva', 'plan', 'of', 'action', 'were', 'released', ',', 'which', 'highlights', 'the', 'importance', 'of', 'measures', 'in', 'the', 'fight', 'against', 'cybercrime', '.'], ['among', 'these', ',', 'illiterate', 'goldsmith', 'luka', 'chkhartishvili', 'was', 'singled', 'out', 'by', '``', 'the', 'daily', 'tribune', \"''\", 'in', '1', '9', '0', '1', 'for', '``', '[', 't', ']', 'he', 'wonderful', 'horsemanship', \"''\", 'that', '``', 'made', 'him', 'one', 'of', 'the', 'attractions', 'of', 'the', 'show', \"''\", '.'], ['the', 'angel', 'therefore', 'tried', 'to', 'push', 'off', 'the', 'request', ',', 'saying', '``', 'do', 'you', 'think', 'you', 'are', 'on', 'the', 'level', 'of', 'rabbi', 'joshua', 'ben', 'levi', '?', \"''\"], ['when', 'the', 'rime', 'is', 'nasalized', ',', 'the', 'three', 'voiced', 'phonemes', ',', 'and', 'are', 'realized', 'as', 'the', 'nasals', ',', 'and', ',', 'respectively', '.'], ['she', 'was', 'married', 'first', 'to', 'the', 'historian', 'friedrich', 'max', 'kircheisen', 'and', 'later', 'to', 'the', 'publisher', 'paul', 'aretz', '.'], ['the', 'lamp', 'was', 'missing', 'for', 'many', 'years', 'but', 'was', 'found', '&', 'amp', ';', 'restored', 'by', 'the', 'then', 'landlord', ',', 'colin', 'garlic', '.'], ['some', 'sports', ',', 'such', 'as', 'athletics', ',', 'divide', 'athletes', 'by', 'both', 'the', 'category', 'and', 'severity', 'of', 'their', 'disabilities', ',', 'other', 'sports', ',', 'for', 'example', 'swimming', ',', 'group', 'competitors', 'from', 'different', 'categories', 'together', ',', 'the', 'only', 'separation', 'being', 'based', 'on', 'the', 'severity', 'of', 'the', 'disability', '.'], ['noted', 'percussionist', 'edwin', 'bonilla', '(', 'longtime', 'member', 'of', 'gloria', 'estefan', \"'s\", 'band', ')', 'tapped', 'pérez', 'for', 'his', 'traditional', '(', '``', 'duro', \"''\", ')', 'sound', ',', 'having', 'him', 'as', 'a', 'collaborator', 'in', 'his', 'records', 'released', 'by', 'the', 'sar', 'label', '.'], ['he', 'also', 'gave', 'new', 'scenery', 'for', 'the', 'westminster', 'school', 'play', 'to', 'replace', 'the', 'sets', 'designed', 'by', 'athenian', 'stuart', '.'], ['both', 'the', 'nord', 'stream', 'gas', 'pipeline', 'from', 'russia', '(', 'by', '``', 'gazprom', \"''\", 'and', '``', 'e.on', \"''\", ')', 'and', 'several', 'power', 'plants', '(', 'by', '``', 'dong', 'energy', \"''\", 'and', '``', 'enbw', \"''\", ')', 'are', 'under', 'construction', '.'], ['other', 'authors', 'began', 'to', 'share', 'the', 'column', ',', 'and', 'the', 'june', '1', '9', '8', '6', 'issue', 'saw', 'the', 'final', 'installment', 'under', 'that', 'title', '.'], ['population', ':', '2', '3', ',', '1', '4', '5', '(', '2', '0', '0', '2', 'census', ')', ';', 'the', 'population', 'of', 'dubrovka', 'accounts', 'for', '3', '9', '.', '9', '%', 'of', 'the', 'district', \"'s\", 'total', 'population', '.'], ['he', 'is', 'known', 'for', 'his', 'film', '``', 'the', 'accidental', 'prime', 'minister', \"''\", 'starring', 'anupam', 'kher', 'and', 'akshaye', 'khanna', 'the', 'film', 'was', 'based', 'on', 'the', 'on', 'book', 'written', 'by', 'sanjaya', 'baru', '.'], ['amends', 'the', 'native', 'american', 'programs', 'act', 'of', '1', '9', '7', '4', 'to', 'authorize', 'the', 'secretary', 'of', 'health', 'and', 'human', 'services', ',', 'as', 'part', 'of', 'the', 'native', 'american', 'languages', 'grant', 'program', ',', 'to', 'make', 'three-year', 'grants', 'for', 'educational', 'native', 'american', 'language', 'nests', ',', 'survival', 'schools', ',', 'and', 'restoration', 'programs', '.'], ['supports', 'could', 'include', ':', 'modifying', 'a', 'job', ',', 'adding', 'accommodations', 'or', 'assistive', 'technology', ',', 'enhancing', 'on', 'the', 'job', 'site', 'training', 'among', 'other', 'approaches', ',', 'such', 'as', 'identifying', 'network', 'relationships', '(', 'e.g.', ',', 'family', 'business', ',', 'local', 'job', 'sites', 'and', 'owners', ')', 'and', 'training', 'parents', 'regarding', 'better', 'futures', '.'], ['in', 'the', 'general', 'election', ',', 'he', 'was', 'opposed', 'by', 'jimmy', 'carr', ',', 'the', 'democratic', 'nominee', ',', 'and', 'neil', 'polimeni', ',', 'the', 'libertarian', 'nominee', '.'], ['following', 'a', 'performance', 'at', 'an', 'israeli', 'independence', 'day', 'party', ',', 'datner', 'continues', 'to', 'help', 'shy', 'bazooka', 'with', 'his', 'relationship', 'lessons', 'by', 'hooking', 'him', 'up', 'with', 'two', 'girls', ',', 'who', 'later', 'are', 'seen', 'as', 'drunk', 'and', 'begin', 'raping', 'bazooka', '.'], ['aarif', 'rahman', '(', ',', 'born', '2', '6', 'february', '1', '9', '8', '7', ')', ',', 'also', 'known', 'as', 'aarif', 'lee', 'zhi-ting', ',', 'is', 'a', 'hong', 'kong', 'actor', ',', 'singer', 'and', 'songwriter', '.'], ['after', 'the', 'oilers', 'were', 'eliminated', 'in', 'the', '1', '9', '8', '2', 'nhl', 'playoffs', ',', 'kurri', 'was', 'able', 'to', 'join', 'the', 'finnish', 'national', 'team', 'in', '1', '9', '8', '2', 'world', 'championships', '.'], ['over', 'the', 'red', ',', 'black', 'and', 'white', 'canvas', 'there', 'is', 'a', 'poem', 'written', 'in', 'braille', 'by', 'poet', 'chloe', 'mitchell', '.'], ['in', '2', '0', '1', '5', ',', 'a', 'clash', 'which', 'took', 'place', 'in', 'mamasapano', ',', 'maguindanao', 'killed', '4', '4', 'members', 'of', 'the', 'philippine', 'national', 'police-special', 'action', 'force', ',', 'resulting', 'in', 'efforts', 'to', 'pass', 'the', 'bangsamoro', 'basic', 'law', 'reaching', 'an', 'impasse', '.'], ['his', 'work', 'was', ',', 'and', 'is', ',', 'so', 'alive', '.'], ['it', 'is', 'the', 'administrative', 'and', 'transport', 'center', 'for', 'the', 'surrounding', 'agricultural', 'area', '.'], ['with', 'diane', \"'s\", 'help', ',', 'the', 'team', 'overthrow', 'geiser', 'and', 'he', 'is', 'replaced', 'by', 'billy', ',', 'a', 'retired', 'school', 'baseball', 'coach', '.'], ['like', 'a', 'number', 'of', 'officers', 'with', 'colonial', 'experience', ',', 'gallieni', 'wanted', 'the', 'french', 'army', 'to', 'give', 'up', 'the', '``', 'pantalon', 'rouge', \"''\", '(', 'red', 'trousers', 'worn', 'by', 'french', 'soldiers', ',', 'allegedly', 'as', 'a', 'boost', 'to', 'morale', ')', 'and', 'adopt', 'a', 'less', 'conspicuous', 'uniform', '.'], ['dromard', 'performed', 'during', 'the', 'production', 'with', 'both', 'academy', 'award', 'winner', 'patty', 'duke', 'and', 'emmy', 'award', 'winner', 'carol', 'kane', ',', 'both', 'as', 'madame', 'morrible', '.'], ['it', 'lies', 'approximately', 'north-east', 'of', 'mińsk', 'mazowiecki', 'and', 'east', 'of', 'warsaw', '.'], ['over', 'the', 'next', '2', '6', 'years', 'they', 'would', 'pair', 'these', 'songs', 'together', 'over', '5', '0', '0', 'times', ',', 'most', 'often', 'as', 'a', 'second', 'set', 'opener', '.'], ['males', 'also', 'spend', 'much', 'of', 'their', 'time', 'in', 'the', 'tree', 'tops', ',', 'defending', 'their', 'territory', 'from', 'rivals', ',', 'though', 'they', 'will', 'sometimes', 'descend', 'to', 'drink', 'from', 'puddles', 'or', 'feed', '.'], ['the', 'project', 'is', 'funded', 'by', 'both', 'the', 'state', 'and', 'federal', 'governments', '.'], ['hop', 'is', 'the', 'only', 'contestant', 'who', 'was', 'being', 'heavily', 'castigated', 'by', 'nam', 'trung', 'due', 'to', 'her', 'struggles', 'in', 'the', 'action', 'skills', ',', 'but', 'despite', 'of', 'this', ',', 'she', 'kept', 'herself', 'moving', 'until', 'she', 'went', 'on', 'top', 'of', 'the', 'game', '.'], ['on', 'may', '1', ',', '1', '9', '3', '6', ',', 'he', 'became', 'lieutenant', 'governor', 'of', 'british', 'columbia', ',', 'achieving', 'considerable', 'popularity', '.'], ['other', 'known', 'works', 'were', 'produced', 'in', '1', '5', '0', '4', 'or', '1', '5', '0', '5', ',', 'in', '1', '5', '1', '1', ',', 'and', 'in', '1', '5', '3', '3', '.'], ['the', 'song', 'peaked', 'on', 'the', 'us', '``', 'billboard', \"''\", 'bubbling', 'under', 'r', '&', 'amp', ';', 'b/hip-hop', 'singles', 'at', 'number', 'one', '.'], ['in', '1', '3', '6', '4', 'king', 'louis', 'i', 'gave', 'them', 'ilok', 'castle', 'together', 'with', 'its', 'estate', ',', 'and', 'thus', 'they', 'became', 'újlaki/iločki', '.'], ['tiruvottiyur', 'railway', 'station', 'and', 'perambur', 'railway', 'station', 'are', 'the', 'nearest', 'railway', 'stations', 'of', 'manali', ',', 'which', 'are', '4', 'km', 'and', '8', 'km', 'away', ',', 'respectively', '.'], ['this', 'deployment', 'was', 'at', 'the', 'request', 'of', 'the', 'committee', 'of', 'safety', ',', 'which', 'claimed', 'an', '``', 'imminent', 'threat', 'to', 'american', 'lives', 'and', 'property', '.', \"''\"], ['the', 'song', 'reached', 'number', '2', 'on', 'billboard', \"'s\", 'r', '&', 'amp', ';', 'b', 'chart', 'and', 'number', '3', '2', 'on', 'the', 'same', 'magazine', \"'s\", 'pop', 'charts', '.'], ['tie-', '1', 'uses', 'rubisco', 'to', 'convert', 'carbon', 'dioxide', 'into', 'nutrition', 'for', 'itself', '.'], ['the', '``', 'dao', 'de', 'jing', \"''\", 'uses', 'it', 'in', 'meaning', '2', 'and', 'the', '``', 'zhuangzi', \"''\", 'uses', '``', 'zhen', \"''\", 'in', 'meanings', '1', ',', '3', ',', '4', ',', '5', ',', '6', ',', 'and', '8', '.'], ['in', 'consequence', 'of', 'construction', 'going', 'on', 'in', 'the', 'library', ',', 'she', 'was', 'woken', 'by', 'the', 'voices', 'she', 'heard', 'next', 'door', ',', 'and', 'the', 'light', 'shining', 'through', 'the', 'loose', 'brickwork', '.'], ['he', 'is', 'a', 'pioneering', 'specialist', 'in', 'the', 'field', 'of', 'sustainable', 'development', 'and', 'has', 'worked', 'internationally', 'in', 'educational', 'reform', ',', 'international', 'and', 'regional', 'environmental', 'project', 'management', 'and', 'conflict', 'resolution', ',', 'environmental', 'education', 'and', 'curriculum', 'development', '.'], ['in', 'new', 'zealand', 'stv', 'is', 'used', 'in', 'elections', 'to', 'small', 'number', 'of', 'local', 'authorities', 'and', 'in', 'all', 'elections', 'for', 'district', 'health', 'boards', '.'], ['in', '2', '0', '1', '3', ',', 'the', 'newspaper', 'launched', '``', 'la', 'presse+', \"''\", ',', 'a', 'free', 'digital', 'edition', 'for', 'ipad', '.'], ['the', 'building', 'would', 'house', 'the', 'factory', 'and', 'offices', 'of', 'the', 'downey-farrell', 'company', ',', 'a', 'margarine', 'manufacturer', 'that', 'wrigley', 'was', 'affiliated', 'with', '.'], ['instead', ',', 'ice', 'volcanoes', 'are', 'created', 'by', 'waves', 'colliding', 'with', 'irregularities', 'at', 'the', 'edge', 'of', 'an', 'ice', 'sheet', '.'], ['in', '1', '9', '7', '6', 'he', 'was', 'invited', 'by', 'french', 'composer', 'pierre', 'boulez', 'to', 'ircam', 'for', 'a', 'week', 'of', 'performances', '.'], ['``', 'my', 'tyme', \"''\", ',', 'which', 'was', 'released', 'the', 'same', 'year', ',', 'was', 'his', 'third', 'album', 'in', 'a', 'five-year', 'period', 'to', 'peak', 'at', 'number', '8', '3', 'on', 'the', '``', 'billboard', \"''\", 'top', 'r', '&', 'amp', ';', 'b', 'albums', 'chart', '.'], ['``', 'day', 'of', 'the', 'dove', \"''\", 'is', 'the', 'seventh', 'episode', 'of', 'the', 'of', 'the', 'american', 'science', 'fiction', 'television', 'series', '``', \"''\", '.'], ['in', 'search', 'of', 'food', ',', 'young', 'strong', 'people', 'would', 'walk', 'for', 'tens', 'of', 'kilometers', 'to', 'trade', 'valuables', 'for', 'food', 'at', 'farms', '.'], ['jamshedpur-ranchi-hazaribagh-barhi', 'expressway', 'is', 'a', '4', '-lane', 'highway', 'in', 'jharkhand', 'constructed', 'on', 'nh', '2', '0', ',', 'nh', '4', '3', 'and', 'ranchi', 'ring', 'road', '.'], ['ruth', 'also', 'recorded', 'with', 'george', 'clinton', ',', 'and', 'he', 'appeared', 'on', 'the', '2', '0', '0', '3', 'compilation', '``', '6', 'degrees', 'of', 'p-funk', ':', 'the', 'best', 'of', 'george', 'clinton', '&', 'amp', ';', 'his', 'funky', 'family', \"''\", '.'], ['he', 'released', '3', '1', '2', '``', 'eps', 'with', 'the', 'sinister', 'cleaners', 'and', 'toured', 'the', 'uk', 'and', 'europe', 'with', 'them', 'from', '1', '9', '8', '5', 'to', '1', '9', '8', '7', '.'], ['fighting', 'ensues', ';', 'the', 'woman', 'plays', 'music', 'loudly', ',', 'causing', 'the', 'infected', 'to', 'stop', 'attacking', 'and', 'cover', 'their', 'ears', '.'], ['during', 'world', 'war', 'ii', ',', 'hoover', 'was', 'again', 'tasked', 'with', 'providing', 'food', 'to', 'war-torn', 'countries', '.'], ['in', 'the', 'uk', ',', 'a', 'digital', 'bundle', 'was', 'released', '.'], ['basra', 'was', 'born', 'to', 'punjabi', 'indian', 'parents', 'in', 'portsmouth', 'on', 'the', 'south', 'coast', 'of', 'england', ',', 'but', 'now', 'resides', 'in', 'mumbai', '.'], ['simon', 'left', 'the', 'sinister', 'cleaners', 'to', 'join', 'the', 'wedding', 'present', 'as', 'drummer', 'in', '1', '9', '8', '7', ',', 'working', 'briefly', 'with', 'sinister', 'cleaner', 'len', 'liggins', 'and', 'pete', 'solowka', 'in', 'the', 'wedding', 'present', 'offshoot', 'band', 'the', 'ukrainians', '.'], ['g.', 'earl', 'guinn', ',', 'the', 'president', 'of', 'louisiana', 'college', 'from', '1', '9', '5', '1', 'to', '1', '9', '7', '5', ',', 'said', 'of', 'his', 'friend', ':', '``', 'i', 'feel', 'toward', 'j.', 'd.', 'grey', 'about', 'like', 'winston', 'churchill', 'felt', 'toward', 'his', 'friend', ',', 'the', 'first', 'earl', 'of', 'birkenhead', '.'], ['in', '1', '8', '8', '1', ',', 'he', 'was', 'demonstrator', 'in', 'the', 'physiology', 'laboratory', ',', 'and', 'in', '1', '8', '8', '2', ',', 'he', 'was', 'an', 'instructor', 'in', 'nervous', 'diseases', ',', 'also', 'at', 'the', 'university', 'of', 'pennsylvania', '.'], ['he', 'died', 'on', 'pelee', 'island', 'at', 'the', 'age', 'of', '5', '5', '.'], ['kerlikowske', 'was', 'drafted', 'into', 'the', 'army', 'in', '1', '9', '7', '0', ',', 'and', 'was', 'stationed', 'in', 'washington', ',', 'd.c.', 'part', 'of', 'his', 'responsibility', 'was', 'saluting', 'then-president', 'richard', 'nixon', 'as', 'he', 'boarded', 'the', 'presidential', 'helicopter', 'and', 'he', 'was', 'awarded', 'the', 'presidential', 'service', 'badge', '.'], ['gowdy', 'has', 'been', 'nominated', ',', 'repeatedly', ',', 'for', 'every', 'major', 'canadian', 'book', 'prize', ',', 'including', 'the', 'giller', 'prize', '(', 'twice', 'short-listed', ',', 'once', 'long-listed', ')', ';', 'the', 'governor', 'general', \"'s\", 'award', '(', 'three-times', 'short-listed', ')', ';', 'and', 'the', 'rogers', 'writers', \"'\", 'trust', 'fiction', 'prize', '(', 'twice-shorted', 'listed', ')', '.'], ['senghor', 'drew', '1', '7', '4', 'votes', ',', 'compared', 'to', '1', '3', '0', 'for', 'runner-up', 'el', 'hadji', 'malick', 'gackou', ',', 'and', '2', '6', 'for', 'third', 'candidate', 'oumar', 'diop', '.'], ['the', 'name', 'of', 'cornwall', \"'s\", 'rugby', 'league', 'team', ',', 'the', 'cornish', 'rebels', ',', 'was', 'inspired', 'by', 'the', 'cornish', 'rebellion', 'of', '1', '4', '9', '7', '.'], ['facing', 'the', 'emergence', 'of', 'centrist', 'emmanuel', 'macron', 'and', 'left-winger', 'jean-luc', 'mélenchon', ',', 'hamon', 'failed', 'to', 're-establish', 'the', 'ps', 'leadership', 'on', 'the', 'centre-left', 'and', 'finished', '5', 'th', 'in', 'the', '2', '0', '1', '7', 'presidential', 'election', ',', 'gathering', 'only', '6', '.', '3', '6', 'percent', 'of', 'the', 'votes', '.'], ['they', 'were', 'used', 'to', 'transport', 'the', 'patient', 'to', 'hospital', 'care', ',', 'assisting', 'emas', 'with', 'freeing', 'up', 'ambulance', 'crews', 'and', 'allowing', 'the', 'patient', 'to', 'reach', 'hospital', 'care', 'sooner', 'than', 'waiting', 'for', 'emas', 'transport', '.'], ['as', 'the', 'plea', 'registered', 'with', 'the', 'merciless', 'circle', 'they', 'rose', 'to', 'their', 'fullest', 'height', 'and', 'turned', 'menacingly', '...', \"''\", 'recalling', 'the', 'work', ',', 'years', 'later', ',', 'graham', 'dancer', 'bessie', 'schonberg', 'noted', 'the', 'dance', 'could', 'be', 'interpreted', 'as', 'the', 'contrast', 'between', 'martha', \"'s\", 'oeuvre', 'and', 'tradition', '.'], ['the', '4', '0', '0', '-lap', 'race', 'was', 'won', 'by', 'jimmie', 'johnson', 'of', 'the', 'hendrick', 'motorsports', 'team', 'after', 'he', 'started', 'from', 'pole', 'position', '.'], ['lydia', 'decides', 'to', 'ask', 'her', 'great-cousin', 'arno', 'brandner', ',', 'who', 'has', 'known', 'tanja', 'for', 'a', 'very', 'long', 'time', 'and', 'is', 'agreeing', 'that', 'she', \"'s\", 'a', 'very', 'dangerous', 'woman', 'and', 'goes', 'over', 'dead', 'bodies', 'to', 'get', 'what', 'she', 'wants', '.'], ['its', 'next', 'performance', 'was', '2', '8', 'years', 'later', ',', 'on', '6', 'november', '1', '9', '5', '0', 'in', '[', '[', 'carnegie', 'hall', ']', ']', ',', '[', '[', 'new', 'york', 'city', ']', ']', '.'], ['elk', 'have', 'thick', 'bodies', 'with', 'slender', 'legs', 'and', 'short', 'tails', '.'], ['however', ',', 'hull', 'reassured', 'him', ',', 'noting', 'that', 'as', 'an', 'aviation', 'expert', ',', 'irimescu', 'had', 'served', 'in', 'all', 'cabinets', 'since', 'that', 'of', 'vaida-voevod', ',', 'regardless', 'of', 'party', ',', 'and', 'that', 'he', 'himself', 'belonged', 'to', 'no', 'party', '.'], ['a', 'move', 'down', 'yields', 'two', 'half-cycles', 'horizontally', 'and', 'a', 'half-cycle', 'vertically', '.'], ['he', 'created', 'his', 'personal', 'group', 'in', 'the', 'early', '1', '9', '7', '0', 's', ',', 'with', 'a', 'repertory', 'which', 'included', ',', 'among', 'others', ',', 'franz', 'kafka', \"'s\", '``', 'the', 'trial', \"''\", ',', 'arthur', 'miller', \"'s\", '``', 'view', 'from', 'the', 'bridge', \"''\", 'and', 'brecht', \"'s\", '``', 'the', 'threepenny', 'opera', \"''\", '.'], ['he', 'was', 'related', 'to', 'michael', 'pertwee', 'and', 'jon', 'pertwee', ',', 'being', 'a', 'second', 'cousin', 'of', 'michael', \"'s\", 'and', 'jon', \"'s\", 'father', ',', 'the', 'screenwriter', 'and', 'actor', 'roland', 'pertwee', '.'], ['on', 'appeal', ',', 'irvine', 'was', 'banned', 'for', 'three', 'races', '.'], ['this', 'was', 'located', 'on', 'the', 'eastern', 'end', 'of', 'long', 'island', ',', 'across', 'the', 'causeway', 'linking', 'long', 'island', 'with', 'the', 'mainland', 'and', 'was', 'in', 'use', 'from', 'at', 'least', '1', '5', 'august', '1', '8', '8', '7', '.'], ['in', '2', '0', '1', '5', ',', 'mora', 'published', 'the', 'first', 'issue', 'of', 'his', 'serialized', 'graphic', 'novel', '``', 'a', 'light', 'before', 'the', 'darkness', \"''\", ',', 'a', 'biography', 'of', 'the', 'artist', 'caravaggio', 'on', 'the', 'cloud-based', 'distribution', 'platform', 'comixology', 'with', 'a', 'limited', 'first', 'printing', 'for', 'patrons', 'of', 'his', 'successful', 'kickstarter', 'campaign', '.'], ['in', 'that', 'scheme', 'of', 'international', 'auto', 'racing', 'colours', 'french', 'cars', 'were', 'blue', '(', 'bleu', 'de', 'france', ')', ',', 'british', 'cars', 'were', 'green', '(', 'british', 'racing', 'green', ')', ',', 'etc', '.'], ['on', 'may', '2', '1', ',', '1', '9', '9', '8', ',', 'mcmahon', 'was', 'nominated', 'by', 'president', 'bill', 'clinton', 'to', 'a', 'seat', 'on', 'the', 'united', 'states', 'district', 'court', 'for', 'the', 'southern', 'district', 'of', 'new', 'york', 'vacated', 'by', 'john', 'f.', 'keenan', '.'], ['ignoring', 'immigration', 'and', 'emigration', ',', 'the', 'population', 'of', 'swiss', 'citizens', 'decreased', 'by', '3', 'while', 'the', 'foreign', 'population', 'remained', 'the', 'same', '.'], ['gaston', \"'s\", 'exploits', 'lead', 'to', 'a', 'frantic', 'farcical', 'sequence', 'in', 'hennequin', \"'s\", 'customary', 'manner', ':', 'the', 'characters', 'rush', 'in', 'and', 'out', ',', 'hide', ',', 'and', 'are', 'mistaken', 'for', 'others', '.'], ['in', '1', '8', '3', '1', ',', 'land', 'for', 'the', 'church', 'was', 'leased', 'from', 'a', 'local', 'family', ',', 'the', 'ramsdens', '.'], ['the', 'initiative', 'soon', 'became', 'a', 'trending', 'topic', 'on', 'weibo', ',', 'a', 'main', 'social', 'media', 'in', 'china', '.'], ['of', 'these', 'ninety', 'five', 'were', 'launched', ',', 'whilst', 'three', 'were', 'retained', 'as', 'spares', '.'], ['anna', 'gutto', ',', 'or', 'anna', 'guttormsgaard', 'is', 'a', 'norwegian', 'director', ',', 'writer', 'and', 'artistic', 'director', 'living', 'in', 'los', 'angeles', 'and', 'oslo', '.'], ['in', 'the', 'three', 'years', 'from', '2', '0', '1', '4', 'onward', ',', 'the', 'ranch', 'reported', 'losses', 'on', 'its', 'form', '9', '9', '0', ',', 'totaling', 'nearly', '$', '3', 'million', '.'], ['it', 'also', 'features', 'adaptive', 'people', 'and', 'resilient', 'ecosystems', 'able', 'to', 'cope', 'with', 'global', 'climate', 'change', '.'], ['many', 'western', 'members', 'of', 'the', 'assembly', 'however', 'assumed', 'their', 'offices', 'in', 'richmond', ',', 'which', 'reflected', 'the', 'deep', 'divisions', 'among', 'the', 'western', 'counties', '.'], ['a', 'brief', ',', '3', '-second', 'moment', 'of', 'the', 'impostor', 'polly', 'brushing', 'off', 'a', 'remark', 'from', 'the', 'doctor', 'survives', 'from', 'episode', '2', '.'], ['after', 'his', 'nascar', 'team', 'ran', 'out', 'of', 'money', ',', 'he', 'returned', 'to', 'modified', 'racing', '.'], ['dammooru', '(', 'also', 'spelled', 'as', 'dammur', ')', 'is', 'a', 'village', 'in', 'the', 'hungund', 'taluk', 'of', 'bagalkot', 'district', 'in', 'the', 'indian', 'state', 'of', 'karnataka', '.'], ['after', 'a', 'long', 'and', 'perilous', 'voyage', ',', 'one', 'had', 'died', 'at', 'sea', ',', 'three', 'of', 'them', 'landed', 'at', 'penang', 'in', 'april', '1', '8', '5', '2', '.'], ['tilottama', 'is', 'currently', 'a', 'professor', 'of', 'humanities', 'at', 'new', 'york', 'university', '.'], ['it', 'can', 'be', 'seen', 'as', 'a', 'branch', 'of', 'the', 'carbon', 'cycle', ',', 'which', 'also', 'includes', 'the', 'organic', 'carbon', 'cycle', ',', 'in', 'which', 'biological', 'processes', 'convert', 'carbon', 'dioxide', 'and', 'water', 'into', 'organic', 'matter', 'and', 'oxygen', 'via', 'photosynthesis', '.'], ['there', 'were', '1', '2', '6', 'apartments', 'in', 'the', 'municipality', '.'], ['it', 'is', 'suitable', 'for', 'occasions', 'such', 'as', 'weddings', 'and', 'formal', 'gatherings', '.'], ['it', 'originally', 'had', 'a', '6', 'th', 'form', ',', 'lost', 'in', 'a', 'reorganisation', 'in', '1', '9', '8', '8', ',', 'when', 'the', 'lower', 'school', 'buildings', 'became', 'the', 'wood', 'lane', 'buildings', 'of', 'loxley', 'college', ',', 'part', 'of', 'sheffield', 'college', '.'], ['despite', 'the', 'british', 'conquest', 'of', 'acadia', 'in', '1', '7', '1', '0', ',', 'nova', 'scotia', 'remained', 'primarily', 'occupied', 'by', 'catholic', 'acadians', 'and', \"mi'kmaq\", '.'], ['thus', 'a', 'v-', '6', 'engine', 'has', 'two', 'banks', 'of', 'three', 'cylinders', 'at', 'an', 'angle', 'driving', 'a', 'common', 'crankshaft', ',', 'a', 'v-', '1', '2', 'two', 'groups', 'of', 'six', 'in-line', '.'], ['even', 'after', 'doukas', \"'s\", 'overthrow', 'by', 'nikephoros', 'iii', 'botaneiates', '(', ')', ',', 'bryennios', 'continued', 'his', 'revolt', ',', 'and', 'threatened', 'constantinople', '.'], ['the', 'injury', 'facilitates', 'the', 'entry', 'of', 'pathogens', 'and', 'causes', 'stress', 'to', 'the', 'plant', ',', 'reducing', 'its', 'growth', 'and', 'fruit', 'production', '.'], ['the', 'intention', 'to', 'incorporate', 'the', 'former', 'french', 'ship', 'into', 'the', '``', 'regia', 'marina', \"''\", 'was', ',', 'however', ',', 'undermined', 'by', 'italy', \"'s\", 'chronic', 'oil', 'fuel', 'shortages', '.'], ['mikhael', 'subotzky', '(', 'born', 'cape', 'town', ',', 'south', 'africa', ',', '1', '9', '8', '1', ')', 'is', 'a', 'south', 'african', 'artist', 'based', 'in', 'johannesburg', '.'], ['alexei', 'was', 'a', 'handsome', 'boy', ',', 'and', 'he', 'bore', 'a', 'striking', 'resemblance', 'to', 'his', 'mother', '.'], ['prior', 'to', 'briginshaw', ',', 'due', 'to', 'the', 'state', 'of', 'the', 'law', 'in', 'england', 'at', 'the', 'time', ';', 'australian', 'law', 'regarding', 'the', 'onus', 'of', 'proof', 'in', 'divorce', 'cases', \"'was\", 'a', 'little', 'confused', \"'\", '.'], ['callaloo', ',', 'a', 'journal', 'of', 'african', 'diaspora', 'arts', 'and', 'letters', ',', 'is', 'a', 'quarterly', 'literary', 'magazine', 'that', 'was', 'established', 'in', '1', '9', '7', '6', 'by', 'charles', 'rowell', ',', 'who', 'remains', 'its', 'editor-in-chief', '.'], ['he', 'attended', 'the', 'local', 'mzinyati', 'mission', 'school', ',', 'before', 'completing', 'his', 'secondary', 'education', 'at', 'tegwani', 'high', 'school', 'in', 'plumtree', '.'], ['hispanic', 'or', 'latino', 'of', 'any', 'race', 'were', '1', '.', '6', '%', 'of', 'the', 'population', '.'], ['the', 'performances', 'were', 'released', 'as', 'b-sides', 'on', 'the', '``', 'i', 'feel', 'possessed', \"''\", 'cd', 'single', '.'], ['nerves', 'arise', 'from', 'the', 'two', 'ends', 'of', 'the', 'ganglion', ';', 'those', 'from', 'the', 'anterior', 'end', 'innervate', 'the', 'buccal', 'siphon', 'and', 'those', 'from', 'the', 'posterior', 'end', 'supply', 'the', 'rest', 'of', 'the', 'body', ',', 'the', 'atrial', 'siphon', ',', 'organs', ',', 'gut', 'and', 'the', 'musculature', 'of', 'the', 'body', 'wall', '.'], ['in', 'the', 'french', 'journal', '``', 'la', 'paix', \"''\", ',', 'he', 'affirmed', 'his', 'belief', 'in', 'the', 'orthodox', 'church', ',', 'and', 'advised', 'his', 'detractors', 'to', 'restrict', 'themselves', 'to', 'the', 'simple', 'issue', 'of', 'the', 'existence', 'of', 'the', 'buddhist', 'scrolls', 'at', 'hemis', '.'], ['she', 'represented', 'her', 'hometown', 'of', 'west', 'seneca', ',', 'new', 'york', 'as', 'the', '9', 'th', 'district', 'erie', 'county', 'legislator', 'from', '1', '9', '9', '1', 'to', '1', '9', '9', '4', '.'], ['hispanic', 'or', 'latino', 'of', 'any', 'race', 'were', '1', '.', '5', '%', 'of', 'the', 'population', '.'], ['the', 'fia', \"'s\", 'vision', 'of', 'a', 'single', 'unified', 'formula', 'for', 'the', 'sportscar', 'world', 'championship', 'that', 'would', 'truly', 'equal', 'that', 'of', 'formula', 'one', 'was', 'finally', 'into', 'place', 'following', 'the', 'development', 'of', '3', '5', '0', '0', 'cc', 'sportscars', 'in', 'the', 'previous', 'seasons', '.'], ['in', 'addition', ',', '``', 'e-students', \"''\", 'have', 'access', 'to', '``', 'e-tutors', \"''\", 'to', 'help', 'them', 'with', 'pedagogical', 'and', 'administrative', 'questions', '.'], ['adam', 'christopher', 'john', 'duggleby', '(', 'born', '1', '6', 'october', '1', '9', '8', '4', ')', 'is', 'a', 'british', 'paralympic', 'cyclist', '.'], ['as', 'a', 'fifth-year', 'senior', 'in', '2', '0', '0', '8', ',', 'barnes', 'played', 'in', 'the', 'first', 'seven', 'games', 'before', 'suffering', 'a', 'shoulder', 'injury', '.'], ['in', 'late', 'august', '2', '0', '1', '1', ',', 'otherside', 'farms', 'opened', 'a', 'private', 'collective', ',', 'maintaining', 'it', 'as', 'a', 'separate', 'entity', 'from', 'otherside', 'farms', '.'], ['the', 'reconstruction', 'has', 'been', 'made', 'from', 'the', 'proofs', 'which', 'are', 'kept', 'in', 'the', 'bibliothèque', 'nationale', 'de', 'france', ',', 'taking', 'into', 'account', 'the', 'written', 'corrections', 'and', 'wishes', 'of', 'mallarmé', 'and', 'correcting', 'certain', 'errors', 'on', 'the', 'part', 'of', 'the', 'printers', 'firmin-didot', '.'], ['chruśnice', 'is', 'a', 'village', 'in', 'the', 'administrative', 'district', 'of', 'gmina', 'czerwin', ',', 'within', 'ostrołęka', 'county', ',', 'masovian', 'voivodeship', ',', 'in', 'east-central', 'poland', '.'], ['in', 'april', 'and', 'may', '2', '0', '0', '4', ',', 'the', 'group', 'supported', 'story', 'of', 'the', 'year', 'on', 'their', 'headlining', 'us', 'tour', '.'], ['the', 'tanzanian', 'railways', '-', 'except', 'the', 'tazara', '-', 'was', 'reorganised', 'as', 'tanzania', 'railways', 'corporation', '(', 'trc', ')', '.'], ['by', 'then', ',', 'the', 'band', 'had', 'shown', 'him', 'the', 'a', 'breakdown', 'of', 'future', 'tours', ',', 'which', 'encouraged', 'aro', 'to', 'rejoin', 'the', 'haunted', '.'], ['in', 'october', 'that', 'same', 'year', ',', 'dice.com', 'moved', 'operations', 'to', 'urbandale', ',', 'iowa', '.'], ['this', '1', '0', 'th', 'edition', 'of', 'the', 'event', ',', 'organised', 'by', 'the', 'world', \"'s\", 'governing', 'body', ',', 'the', 'fivb', ',', 'in', 'conjunction', 'with', 'the', 'ioc', ',', 'was', 'held', 'in', 'australia', \"'s\", 'largest', 'city', ',', 'sydney', ',', 'from', '1', '7', 'september', 'to', '1', 'october', '2', '0', '0', '0', '.'], ['in', '2', '0', '1', '2', ',', 'park', 'also', 'vowed', 'to', 'construct', 'a', 'new', 'airport', 'in', 'the', 'southeastern', 'region', ',', 'a', '2', '0', '0', '8', 'presidential', 'campaign', 'promise', 'made', 'by', 'gnp', 'but', 'cancelled', 'in', '2', '0', '1', '1', ',', 'despite', 'claims', 'of', 'economic', 'infeasibility', 'of', 'the', 'plan', '.'], ['stance', 'can', 'be', 'used', 'to', 'attribute', 'personal', 'value', 'to', 'an', 'object', 'by', 'way', 'of', 'describing', 'how', 'the', 'speaker', 'feels', 'about', 'it', '.'], ['a', 'total', 'of', '3', '4', '8', 'gannets', 'were', 'built', ',', 'of', 'which', '4', '4', 'were', 'the', 'redesigned', 'aew', '.', '3', '.'], ['none', 'of', 'those', 'would', 'eventually', 'make', 'it', 'to', 'the', 'actual', 'mr', 'wagon', ',', 'which', 'went', 'on', 'sale', 'on', 'january', '2', '0', '(', 'moco', 'on', 'february', '1', ')', 'the', 'following', 'year', ',', 'while', 'on', 'the', 'other', 'hand', 'the', 'model', 'features', 'the', 'new', 'keyless', 'entry', 'and', 'start', 'system', '.'], ['now', ',', 'with', 'almost', 'all', 'members', 'of', 'the', 'icp', 'central', 'committee', 'in', 'the', 'south', 'in', 'jail', ',', 'regional', 'leaders', 'took', 'matters', 'in', 'their', 'own', 'hands', 'and', 'began', 'to', 'plan', 'for', 'a', 'general', 'uprising', 'in', 'response', 'to', 'the', 'decisions', 'reached', 'at', 'the', 'sixth', 'plenum', 'the', 'previous', 'november', '.'], ['texila', 'american', 'university', 'is', 'a', 'dental', 'school', 'in', 'guyana', '.'], ['``', 'summertime', 'magic', \"''\", 'is', 'a', 'song', 'by', 'the', 'american', 'recording', 'artist', 'childish', 'gambino', '.'], ['brohm', 'played', 'basketball', 'and', 'baseball', 'for', 'the', 'shamrocks', ',', 'helping', 'the', 'basketball', 'team', 'to', 'its', 'first', 'ever', 'regional', 'title', 'and', 'the', 'baseball', 'team', 'to', 'a', 'state', 'runner-up', 'finish', '.'], ['the', 'act', 'also', 'makes', 'it', 'a', 'felony', 'to', 'hire', ',', 'transport', ',', 'harbor', ',', 'or', 'furnish', 'illegal', 'or', 'inadmissible', 'immigrants', 'with', 'improper', 'documentation', '.'], ['there', 'is', 'an', 'element', 'that', 'the', 'crime', 'is', '(', 'or', 'appears', 'likely', 'to', 'be', ')', '``', 'unable', \"''\", 'to', 'be', 'solved', '.'], ['he', 'was', 'convicted', 'in', 'september', '2', '0', '0', '8', 'to', '8', 'years', 'and', '6', 'months', 'of', 'imprisonment', 'by', 'the', 'court', 'of', 'bosnia', 'and', 'herzegovina', '.'], ['the', 'year', 'level', 'designation', 'is', 'on', 'the', 'shoulder', 'mark', 'in', 'blue', 'with', 'yellow', 'stripes', 'indicating', 'year', 'level', '.'], ['on', '1', '6', 'march', 'this', 'was', 'extended', 'to', 'all', 'borders', 'of', 'norway', 'and', 'nordic', 'non-norwegian', 'citizens', '.'], ['there', 'are', 'also', 'a', 'small', 'number', 'of', 'works', 'which', 'survive', 'in', 'manuscript', 'form', '.'], ['general', 'sale', 'began', 'on', '1', '6', 'and', '1', '7', 'december', '.'], ['the', 'former', 'bishopric', 'of', 'mâcon', 'was', 'located', 'in', 'burgundy', '.'], ['the', 'system', 'could', 'generate', '2', ',', '0', '0', '0', 'candlepower', 'of', 'light', 'for', 'a', 'single', 'photograph', '.'], ['the', 'idea', 'was', 'that', 'the', 'controller', 'could', 'be', 'operated', 'with', 'less', 'physical', 'force', ',', 'reducing', 'thumb', 'injuries', 'and', '``', 'numb', 'thumb', \"''\", ',', 'thereby', 'improving', 'player', 'comfort', 'and', 'health', '.'], ['rings', 'are', 'fabricated', 'from', 'any', 'combination', 'of', 'plate', ',', 'tee', 'or', 'w', 'shape', 'that', 'the', 'shop', 'can', 'roll', '.'], ['a', 'cap', 'attaches', 'to', 'the', 'exterior', 'of', 'a', 'pipe', ',', 'and', 'may', 'have', 'a', 'solvent-weld', 'socket', 'end', 'or', 'a', 'female-threaded', 'interior', '.'], ['in', 'april', 'came', 'word', 'of', 'general', 'lee', \"'s\", 'surrender', ',', 'and', 'the', 'camp', 'began', 'to', 'parole', 'the', 'men', '.'], ['the', 'united', 'nations', 'humanitarian', 'coordinator', 'for', 'yemen', 'johannes', 'van', 'der', 'klaauw', 'said', 'that', 'these', 'bombings', 'constituted', 'a', 'war', 'crime', '.'], ['historically', 'the', 'bottle', 'size', 'alludes', 'to', 'the', 'amount', 'of', 'wine', 'left', 'over', 'after', 'six', 'years', 'of', 'aging', 'and', 'evaporation', '.'], ['this', 'was', 'important', ',', 'as', 'the', 'market', 'was', 'growing', 'quickly', 'at', 'the', 'beginning', 'of', 'the', '2', '0', 'th', 'century', '.'], ['adults', 'live', 'in', 'the', 'bee', 'nests', ',', 'and', 'deutonymphs', 'disperse', 'on', 'the', 'adult', 'bees', '.'], ['hence', 'galaxies', 'categorised', 'active', 'make', 'up', 'a', 'large', 'fraction', '(', '3', '1', '%', ')', 'of', 'the', 'atlas', 'sample', ',', 'and', 'comprise', '4', '3', '%', 'of', 'the', 'total', 'sample', 'if', 'other', 'atlas', 'galaxies', 'with', 'activity', 'as', 'a', 'sub-category', 'are', 'included', '.'], ['later', ',', 'production', 'was', 'delegated', 'to', 'malaysia', 'and', 'southeast', 'asia', 'in', 'order', 'to', 'increase', 'sales', 'in', 'those', 'regions', '.'], ['arumaki', 'strickland', '(', 'died', '9', 'september', '1', '9', '7', '1', ')', 'was', 'a', 'cook', 'islands-born', 'businessman', 'and', 'politician', 'in', 'niue', '.'], ['basketball', 'began', 'to', 'be', 'practised', 'at', 'the', 'club', 'in', '1', '9', '2', '5', 'when', 'the', 'first', 'court', 'was', 'built', '.'], ['this', 'is', 'the', 'case', 'for', 'our', 'father', ',', 'mother', 'land', 'ijoko', '.'], ['while', 'he', 'is', 'recovering', 'ibis', 'offers', 'to', 'tell', 'him', 'stories', '.'], ['trevor', 'phillips', '(', 'born', '1', '8', 'september', '1', '9', '5', '2', ')', 'is', 'an', 'english', 'retired', 'professional', 'footballer', 'who', 'played', 'in', 'the', 'football', 'league', 'for', 'four', 'clubs', 'between', '1', '9', '6', '9', 'and', '1', '9', '8', '4', '.'], ['he', 'earned', 'significant', 'praise', 'as', 'a', 'result', 'and', 'later', 'became', 'a', 'cardinal', ',', 'gaining', 'much', 'political', 'influence', 'and', 'extending', 'the', 'corruption', 'within', 'basin', 'city', '.'], ['described', 'as', 'the', '``', 'love', 'child', 'of', 'the', 'british', 'version', 'of', '``', 'the', 'office', \"''\", 'and', 'an', 'overheard', 'conversation', 'about', 'science', 'between', 'two', 'reasonably', 'informed', 'guys', ',', \"''\", 'the', 'show', 'was', 'about', 'a', 'real', 'podcast', 'that', 'is', 'set', 'in', 'a', 'fictional', 'world', '.'], ['on', 'july', '8', ',', '1', '9', '8', '3', ',', 'a', 'fire', 'destroyed', 'most', 'of', 'the', 'remaining', 'hotel', 'and', 'today', 'the', 'site', 'lies', 'in', 'ruins', '.'], ['studies', 'indicated', 'both', 'type', 'of', 'orthoses', 'improve', 'the', 'hand', 'function', 'and', 'reduce', 'the', 'pain', 'in', 'people', 'with', 'tennis', 'elbow', '.'], ['after', 'emerging', 'from', 'the', 'grand', 'canyon', ',', 'dox', 'wrote', 'that', '``', 'in', 'all', 'the', 'wide', ',', 'wide', 'world', 'there', 'can', 'be', 'nothing', 'more', 'wonderful', 'and', 'beautiful', '.', \"''\"], ['after', 'the', 'expiration', 'of', 'the', '7', 'or', '5', 'years', 'respectively', ',', 'the', 'foreign', 'national', 'can', 'generally', 'only', 'qualify', 'for', 'l-', '1', 'status', 'again', 'by', 'working', 'abroad', 'for', 'at', 'least', '1', 'year', 'for', 'the', 'parent', ',', 'subsidiary', ',', 'affiliate', 'or', 'branch', 'office', 'of', 'the', 'u.s.', 'company', '.'], ['the', 'uk', ',', 'danish', 'and', 'finnish', 'releases', 'include', 'a', 'stereo', 'version', 'of', 'the', 'german', 'dub', 'and', 'finnish', ',', 'swedish', ',', 'english', ',', 'german', ',', 'arabic', ',', 'bulgarian', ',', 'czech', ',', 'danish', ',', 'dutch', ',', 'hungarian', ',', 'icelandic', ',', 'norwegian', ',', 'polish', ',', 'romanian', ',', 'and', 'turkish', 'subtitles', '.'], ['the', 'low', 'agricultural', 'utility', 'across', 'wide', 'areas', 'resulted', 'in', 'a', 'relatively', 'sparse', 'population', 'and', ',', 'especially', 'in', 'the', '2', '0', 'th', 'century', ',', 'it', 'was', 'extensively', 'used', 'for', 'military', 'training', 'purposes', '.'], ['the', 'name', 'may', 'also', 'be', 'a', 'reference', 'to', 'these', 'two', 'teams', 'being', 'among', 'the', 'original', 'eleven', 'members', 'of', 'the', 'scottish', 'football', 'league', 'formed', 'in', '1', '8', '9', '0', '.'], ['the', 'condition', 'of', 'the', 'woods', 'is', 'graded', 'as', '``', 'good', \"''\", '.'], ['mengistu', 'supported', 'robert', 'mugabe', ',', 'the', 'former', 'long-standing', 'president', 'of', 'zimbabwe', ',', 'during', 'his', 'leadership', 'of', 'ethiopia', '.'], ['the', 'ridge', 'divides', 'the', 'indian', 'ocean', 'into', 'the', 'west', 'and', 'east', 'indian', 'ocean', '.'], ['the', 'revolution', 'of', '1', '8', '4', '8', 'forced', 'the', 'conservatory', 'to', 'close', 'down', '.'], ['nevertheless', ',', 'mugham', 'composition', 'is', 'designed', 'very', 'similarly', 'to', 'sufism', 'in', 'that', 'it', 'seeks', 'to', 'achieve', 'ascension', 'from', 'a', 'lower', 'level', 'of', 'awareness', 'to', 'a', 'transcendental', 'union', 'with', 'god', '.'], ['succinic', 'semialdehyde', 'dehydrogenase', 'deficiency', '(', 'ssadhd', ')', ',', 'is', 'a', 'rare', 'autosomal', 'recessive', 'disorder', 'of', 'the', 'degradation', 'pathway', 'of', 'the', 'inhibitory', 'neurotransmitter', 'γ-aminobutyric', 'acid', ',', 'or', 'gaba', '.'], ['peaceful', 'and', 'kindly', 'by', 'nature', ',', 'the', 'menoptra', 'move', 'in', 'a', 'unique', ',', 'stylised', 'way', 'and', 'their', 'vocal', 'inflections', 'are', 'stilted', '.'], ['the', 'promis', 'initiative', 'is', 'fulfilled', 'by', 'a', 'network', 'of', 'primary', 'research', 'sites', 'and', 'coordinating', 'centers', 'that', 'collaborate', 'to', 'develop', 'the', 'items', 'and', 'tools', 'to', 'measure', 'pros', ',', 'and', 'to', 'evaluate', 'the', 'reliability', 'and', 'validity', 'of', 'these', 'measures', '.'], ['in', '1', '9', '1', '9', 'and', '1', '9', '2', '0', ',', 'frank', 'barnwell', ',', 'chief', 'designer', 'of', 'the', 'bristol', 'aeroplane', 'company', ',', 'considered', 'designs', 'for', 'a', 'commercial', 'transport', 'aircraft', ',', 'ranging', 'from', 'single-engine', ',', 'three-seat', 'aircraft', 'to', 'four-engine', 'aircraft', 'carrying', 'ten', 'passengers', ',', 'none', 'of', 'which', 'were', 'built', '.'], ['the', 'firearm', 'was', 'tested', 'in', 'bisley', 'ranges', ',', 'bisley', ',', 'surrey', 'in', '1', '9', '0', '6', ',', 'but', 'never', 'adopted', 'for', 'military', 'use', '.'], ['he', 'argues', 'that', 'both', 'jihadi', 'islamists', 'and', 'far-right', 'activists', 'use', 'the', 'term', '``', 'to', 'deflect', 'attention', 'away', 'from', 'more', 'nuanced', 'discussions', 'on', 'the', 'make-up', 'of', 'muslim', 'communities', \"''\", ',', 'feeding', '``', 'a', 'language', 'of', 'polarised', 'polemics', \"''\", '.'], ['israel', 'and', 'palestine', ',', 'beinart', 'wrote', ',', 'should', 'instead', 'work', 'toward', 'creating', 'a', 'fully', 'democratic', 'binational', 'state', 'representing', 'both', 'jewish', 'and', 'palestinian', 'identity', ',', 'along', 'the', 'lines', 'of', 'belgium', 'or', 'northern', 'ireland', 'following', 'the', 'good', 'friday', 'agreement', '.'], ['medley', 'started', 'acting', 'at', 'age', '1', '2', 'when', 'she', 'won', 'a', 'part', 'in', 'an', 'international', 'commercial', '.'], ['the', 'south', 'doors', 'were', 'created', 'by', 'andrea', 'pisano', 'and', 'the', 'north', 'and', 'east', 'doors', 'by', 'lorenzo', 'ghiberti', '.'], ['the', 'country', \"'s\", 'second', 'pride', 'parade', 'took', 'place', 'in', 'june', '2', '0', '1', '9', '.'], ['the', 'church', 'of', 'santa', 'cruz', '(', ')', 'is', 'a', 'catholic', 'church', 'situated', 'in', 'the', 'civil', 'parish', 'of', 'santa', 'cruz', ',', 'in', 'the', 'municipality', 'of', 'lagoa', ',', 'in', 'the', 'portuguese', 'archipelago', 'of', 'the', 'azores', '.'], ['although', 'the', 'said', 'organization', 'has', 'a', 'representative', 'elected', 'to', 'compete', 'through', 'siran', 'samuel', '.'], ['in', '1', '9', '9', '4', ',', 'another', 'significant', 'change', 'was', 'made', '.'], ['the', 'scandinavian', 'expansion', 'included', 'danish', 'and', 'norwegian', 'as', 'well', 'as', 'swedish', 'elements', ',', 'all', 'under', 'the', 'leadership', 'of', 'rollo', '.'], ['the', 'british', 'empire', 'thus', 'backed', 'the', 'albusaidi', 'sultans', 'of', 'muscat', 'that', 'came', 'to', 'power', 'in', 'the', 'second', 'half', 'of', 'the', '1', '8', 'th', 'century', '.'], ['before', 'rossi', 'wrote', 'her', 'first', 'book', ',', 'she', 'completed', 'undergraduate', 'studies', 'at', 'the', 'university', 'of', 'california', 'in', 'los', 'angeles', 'and', 'went', 'on', 'to', 'study', 'fine', 'art', 'at', 'the', 'california', 'college', 'of', 'the', 'arts', 'in', 'san', 'francisco', '.'], ['following', 'the', 'victory', 'of', 'the', 'paigc', 'in', 'the', '1', '9', '9', '4', 'parliamentary', 'election', ',', 'vieira', 'appointed', 'saturnino', 'da', 'costa', ',', 'who', 'was', 'then', 'secretary-general', 'of', 'paigc', ',', 'as', 'prime', 'minister', 'on', '2', '5', 'october', '1', '9', '9', '4', '.'], ['san', 'quirino', '(', ')', 'is', 'a', '``', 'comune', \"''\", '(', 'municipality', ')', 'in', 'the', 'province', 'of', 'pordenone', 'in', 'the', 'italian', 'region', 'friuli-venezia', 'giulia', ',', 'located', 'about', 'northwest', 'of', 'trieste', 'and', 'about', 'northeast', 'of', 'pordenone', '.'], ['the', 'russian', 'way', 'of', 'punishing', 'the', 'robbers', 'irritated', 'the', 'qing', 'side', 'and', 'became', 'a', 'new', 'reason', 'to', 'suspend', 'the', 'trade', 'for', '7', 'years', '.'], ['in', '1', '9', '7', '1', ',', 'goode', 'became', 'the', 'first', 'black', 'member', 'of', 'the', 'radio', 'and', 'television', 'news', 'directors', 'association', '.'], ['in', '1', '9', '1', '7', 'a', 'house', 'was', 'constructed', 'near', 'the', 'lighthouse', ',', 'where', ',', 'in', '1', '9', '2', '9', ',', 'flávio', 'gonçalves', ',', 'sun', 'of', 'the', 'keeper', ',', 'was', 'born', '.'], ['on', '2', 'october', '2', '0', '0', '6', ',', 'partygaming', 'announced', 'that', 'it', 'would', '``', 'suspend', 'all', 'real', 'money', 'gaming', 'business', 'with', 'us', 'customers', \"''\", 'in', 'light', 'of', 'the', 'passage', 'of', 'the', 'unlawful', 'internet', 'gambling', 'enforcement', 'act', 'of', '2', '0', '0', '6', '.'], ['vegetius', 'states', 'that', 'the', '``', 'ducenarius', \"''\", 'commanded', ',', 'as', 'the', 'name', 'implies', ',', '2', '0', '0', 'men', '.'], ['the', 'median', 'income', 'for', 'a', 'household', 'in', 'the', 'city', 'was', '$', '4', '4', ',', '4', '4', '9', '(', '$', '5', '0', ',', '3', '0', '9', 'in', 'december', '2', '0', '0', '6', ')', ',', 'and', 'the', 'median', 'income', 'for', 'a', 'family', 'was', '$', '4', '8', ',', '6', '8', '9', '.'], ['in', 'addition', ',', 'the', 'dvd', 'gives', 'viewers', 'the', 'option', 'to', 'play', 'the', 'original', 'hong', 'kong', 'version', '.'], ['formation', 'is', 'more', 'thoroughly', 'suppressed', 'by', 'powerful', 'storms', ',', 'which', 'erode', 'the', 'ice', 'too', 'fast', 'for', 'mound', 'creation', '.'], ['about', '4', '8', '0', ',', '0', '0', '0', 'skiers', 'visit', 'the', 'area', 'each', 'year', ',', 'primarily', 'from', 'west', 'virginia', 'and', 'the', 'larger', 'cities', 'of', 'the', 'mid-atlantic', 'and', 'southeast', '.'], ['dr.', 'reynolds', 'patterned', 'the', ',', 'double-ended', 'ketch', 'on', 'the', 'colin', 'archer', 'design', 'used', 'for', 'sturdy', 'norwegian', 'fishing', 'vessels', '.'], ['john', 'mahoney', 'of', '``', 'the', 'hollywood', 'reporter', \"''\", 'wrote', 'that', 'clark', '``', 'invites', 'no', 'comparisons', ',', 'bringing', 'to', 'her', 'interpretation', 'of', 'sharon', 'her', 'own', 'distinctive', 'freshness', 'and', 'form', 'of', 'delivery', '.', \"''\"], ['on', 'february', '1', '0', ',', '2', '0', '0', '9', ',', 'the', 'station', 'was', 'granted', 'a', 'license', 'to', 'cover', 'for', 'the', 'change', '.'], ['the', 'development', 'was', 'intended', 'to', 'house', 'around', '6', '0', ',', '0', '0', '0', 'inhabitants', '.'], ['graceful', 'hand', 'and', 'body', 'movements', ',', 'and', 'musical', 'accompaniment', 'dominated', 'by', 'drums', 'and', 'fiddle', ',', 'are', 'hallmarks', 'of', 'javanese', 'mask', 'dance', '.'], ['scheduled', 'castes', 'and', 'scheduled', 'tribes', 'accounted', 'for', '1', '3', '.', '6', '4', '%', 'and', '0', '.', '4', '2', '%', 'of', 'the', 'population', 'respectively', '.'], ['it', 'is', 'also', 'believed', 'that', 'angiotensin', 'directly', 'affects', 'cardiac', 'remodeling', ',', 'and', 'blocking', 'its', 'activity', 'can', 'thereby', 'slow', 'the', 'deterioration', 'of', 'cardiac', 'function', '.'], ['while', 'some', 'consider', 'the', 'plant', 'to', 'be', 'a', 'weed', ',', 'its', 'roots', 'are', 'food', 'for', 'bears', ',', 'who', 'eat', 'it', 'after', 'hibernating', 'as', 'a', 'laxative', 'or', 'cathartic', '.'], ['in', 'a', '2', '0', '1', '5', 'survey', 'conducted', 'by', '``', 'mint', \"''\", 'and', 'instavaani', 'in', 'new', 'delhi', ',', 'mumbai', ',', 'bengaluru', ',', 'chennai', ',', 'hyderabad', ',', 'ahmedabad', 'and', 'kolkata', ',', 'it', 'was', 'found', 'that', 'aircel', 'offered', 'the', 'best', 'service', 'among', 'all', 'the', 'telecom', 'providers', 'in', 'the', 'respective', 'cities', '.'], ['the', 'merits', ',', 'difficulties', 'and', 'effectiveness', 'of', 'establishing', 'a', 'multi-currency', 'reserve', 'system', 'are', 'weighed', 'against', 'that', 'of', 'the', 'sdrs', ',', 'or', '``', 'basket', 'currency', \"''\", 'strategy', ',', 'and', 'those', 'of', 'establishing', 'this', 'new', '``', 'global', 'reserve', 'currency', \"''\", '.'], ['the', 'development', 'of', 'the', 'h-', '1', 'freeway', 'took', 'away', 'commercial', 'traffic', 'that', 'previously', 'patronized', 'moiliili', \"'s\", 'businesses', '.'], ['he', 'succeed', 'in', 'maneuvering', 'around', 'the', 'flank', 'of', 'an', 'island', 'of', 'resistance', 'and', 'in', 'capturing', ',', 'with', 'his', 'comrades', ',', 'four', 'machine', 'guns', 'and', 'twenty-five', 'german', 'gunners', \"''\", '.'], ['caramanica', 'also', 'noted', 'how', 'the', '``', 'most', 'striking', 'moments', 'were', 'the', 'most', 'bare', \"''\", '.'], ['after', 'the', 'election', ',', 'she', 'opposed', 'katz', \"'s\", 'decision', 'to', 'shelve', 'the', 'implementation', 'of', 'a', 'rapid', 'transit', 'plan', 'for', 'winnipeg', '.'], ['meanwhile', ',', 'miranda', 'and', 'hillary', \"'s\", 'conflicts', 'escalate', 'since', 'both', 'salvador', 'and', 'hillary', 'find', 'themselves', 'working', 'together', '.'], ['they', \"'ve\", 'performed', 'at', 'sold-out', 'rockwood', 'music', 'hall', 'concerts', ',', 'the', 'national', 'women', \"'s\", 'music', 'festival', ',', 'and', 'venues', 'around', 'the', 'country', '.'], ['surgical', 'elimination', 'of', 'the', 'blood', 'vessels', 'involved', 'is', 'the', 'preferred', 'curative', 'treatment', 'for', 'many', 'types', 'of', 'avm', '.'], ['ira', 'adjuntant-general', ',', 'tomás', 'ó', 'dubhghaill', ',', 'gave', 'the', 'party', 'his', 'approval', '.'], ['``', 'banjo', \"''\", 'paterson', \"'s\", 'poems', '``', 'mulga', 'bill', \"'s\", 'bicycle', \"''\", ',', 'first', 'published', 'in', '``', 'the', 'sydney', 'mail', \"''\", 'in', '1', '8', '9', '6', ',', 'paterson', 'introduces', 'the', 'eponymous', 'character', 'as', '``', 'mulga', 'bill', ',', 'from', 'eaglehawk', ',', 'that', 'caught', 'the', 'cycling', 'craze', \"''\", '.'], ['on', 'ending', 'his', 'contract', 'with', 'deutz', ',', 'ettore', 'loaded', 'his', 'family', 'into', 'the', 'type', '1', '0', 'and', 'headed', 'to', 'the', 'alsace', 'region', ',', 'then', 'still', 'part', 'of', 'the', 'german', 'empire', ',', 'looking', 'for', 'a', 'factory', 'to', 'begin', 'producing', 'cars', 'of', 'his', 'own', '.'], ['on', 'november', '1', '2', ',', '1', '9', '9', '5', ',', 'a', 'new', 'presidential', 'election', 'was', 'held', ',', 'and', 'in', 'the', 'second', 'round', 'on', 'january', '7', ',', '1', '9', '9', '6', ',', 'álvaro', 'arzú', 'won', 'to', 'replace', 'de', 'león', '.'], ['``', 'ebony', 'jam', \"''\", 'and', '``', 'drop', 'it', 'in', 'the', 'slot', \"''\", 'were', 'sampled', 'on', 'the', 'beastie', 'boys', \"'\", '1', '9', '8', '9', 'album', '``', 'paul', \"'s\", 'boutique', \"''\", '.'], ['he', 'was', 'promoted', 'to', 'first', 'lieutenant', 'in', 'june', '1', '9', '5', '7', ',', 'and', 'integrated', 'into', 'the', 'regular', 'marine', 'corps', 'in', 'january', '1', '9', '5', '8', '.'], ['all', 'of', 'the', 'characters', 'to', 'whom', 'the', 'hybrids', 'bear', 'resemblance', 'were', 'at', 'one', 'time', 'members', 'of', 'the', 'original', 'secret', 'society', 'of', 'super-villains', ',', 'as', 'was', 'funky', 'flashman', ',', 'so', 'it', \"'s\", 'assumed', 'that', 'he', 'got', 'the', 'genetic', 'samples', 'from', 'those', 'villains', 'when', 'they', 'were', 'members', 'of', 'the', 'ssosv', '.'], ['the', 'building', 'is', 'now', 'white-washed', 'and', 'has', 'a', 'red', 'tile', 'roof', '.'], ['in', 'april', ',', 'she', 'became', 'a', 'guest', 'judge', 'for', '``', 'it', \"'s\", 'showtime', \"''\", 'and', 'appeared', 'as', 'risa', 'in', 'the', 'maalaala', 'mo', 'kaya', 'episode', ',', '``', 'medalyon', \"''\", '.'], ['the', 'current', 'provost', 'and', 'vice-president', '(', 'academic', ')', 'is', 'dr.', 'janice', 'ristock', ',', 'who', 'was', 'appointed', 'in', '2', '0', '1', '6', '.'], ['he', 'played', 'college', 'football', 'at', 'the', 'university', 'of', 'texas', 'at', 'austin', '.'], ['however', ',', 'the', 'state', 'senators', 'already', 'in', 'office', ',', 'and', 'the', 'senators', 'elected', 'in', 'april', '1', '8', '1', '5', 'under', 'the', 'previous', 'apportionment', ',', 'should', 'represent', 'the', 'district', 'in', 'which', 'they', 'resided', '.'], ['antonio', 'died', 'in', '1', '5', '5', '9', ',', 'having', 'been', 'a', 'source', 'of', 'trouble', 'and', 'expense', 'to', 'paulus', 'during', 'the', 'last', 'four', 'years', 'of', 'his', 'life', '.'], ['his', 'best', 'finish', 'in', 'a', 'major', 'was', 'a', 'seventh-place', 'tie', 'at', 'the', '1', '9', '9', '6', 'u.s.', 'open', '.'], ['in', 'a', 'small', 'area', 'of', 'the', 'oltrepò', 'pavese', 'rise', 'hills', 'and', 'the', '.'], ['the', 'research', 'was', 'abandoned', 'following', 'the', 'isolation', 'of', 'the', \"o'hara\", 'cluster', ',', 'although', 'it', 'did', 'yield', 'an', 'unexpected', 'side', 'effect', '—', 'the', 'harramin', 'holy', 'grail', ',', 'immortality', '.'], ['g', '2', 'and', 'mi', '5', 'noted', 'that', 'aisérighe', 'members', 'were', 'often', 'found', 'attending', 'sinn', 'féin', 'meetings', 'and', 'speaking', 'from', 'their', 'platforms', 'along', 'with', 'the', 'fact', 'several', 'aiséirghe', 'officials', 'had', 'sinn', 'féin', 'pedigrees', '.'], ['while', 'infrastructure-based', 'access', 'is', 'now', 'generally', 'available', ',', 'unbundled', 'fast', 'bitstream', 'access', 'is', 'limited', 'to', 'a', 'period', 'of', 'four', 'years', 'after', 'the', 'entry', 'into', 'force', 'of', 'the', 'act', '.'], ['of', 'more', 'lasting', 'significance', 'was', 'the', 'education', 'he', 'received', 'from', 'his', 'uncle', 'who', 'worked', 'as', 'the', 'head', 'gardener', 'at', 'a', 'nearby', '.'], ['the', '1', '9', '9', '4', 'bankruptcy', 'of', 'orange', 'county', ',', 'california', 'further', 'underscored', 'the', 'need', 'for', 'ongoing', 'excellence', 'and', 'expertise', 'in', 'the', 'field', 'of', 'municipal', 'finance', '.'], ['the', 'following', 'month', ',', 'he', 'lost', 'to', 'pierre', 'carl', 'ouellet', '.'], ['the', 'chart', 'ranks', 'the', 'top', 'one', 'hundred', 'listened', 'to', 'songs', 'on', 'a', 'weekly', 'basis', '.'], ['the', 'undercard', 'debate', 'was', 'the', 'fourth', 'and', 'final', 'debate', 'appearance', 'of', 'senator', 'lindsey', 'graham', 'and', 'former', 'governor', 'george', 'pataki', ',', 'who', 'suspended', 'their', 'campaigns', 'on', 'december', '2', '1', 'and', 'december', '2', '9', ',', 'respectively', '.'], ['hori', 'later', 'voiced', 'junpei', 'takiguchi', \"'s\", '``', 'evil', 'boss', \"''\", 'roles', 'in', 'the', '``', 'time', 'bokan', 'series', \"''\", 'after', 'he', 'died', 'in', '2', '0', '1', '1', '.'], ['this', 'seems', 'to', 'be', 'a', 'clumsy', 'way', 'of', 'saying', 'that', 'it', 'is', 'a', 'clear', 'expression', 'of', 'the', 'typical', 'form', 'of', 'the', 'species', '.'], ['carlson', \"'s\", 'theorem', 'is', 'typically', 'invoked', 'to', 'defend', 'the', 'uniqueness', 'of', 'a', 'newton', 'series', 'expansion', '.'], ['in', 'august', '1', '9', '5', '5', ',', 'the', 'same', 'quantity', 'of', 'onions', 'had', 'been', 'priced', 'at', '$', '2', '.', '7', '5', 'a', 'bag', '.'], ['unicredit', 'bank', 'serbia', 'was', 'owned', 'by', 'bank', 'austria', ',', 'which', 'in', 'turn', 'was', 'majority', 'owned', 'by', 'german', 'bank', 'hypovereinsbank', '(', 'hvb', ')', ',', 'which', 'was', ',', 'in', 'turn', ',', 'majority', 'owned', 'by', 'italian-based', 'unicredit', 'banking', 'group', 'since', 'november', '2', '0', '0', '5', '.'], ['robinson', 'held', 'the', 'district', 'for', 'five', 'terms', ',', 'being', 're-elected', 'in', '1', '9', '4', '0', ',', '1', '9', '4', '4', ',', '1', '9', '4', '8', 'and', '1', '9', '5', '2', '.'], ['the', 'rest', 'of', 'the', 'channel', 'and', 'the', 'land', 'south', 'of', 'it', 'lies', 'within', 'mexican', 'territory', '.'], ['in', 'march', ',', 'he', 'made', 'appearances', 'for', 'inter', 'species', 'wrestling', 'defeating', 'kenny', 'the', 'bastard', 'and', 'king', 'sphinx', 'in', 'a', 'three-way', 'match', 'on', 'march', '3', ';', 'a', 'week', 'later', ',', 'defeated', 'jake', \"o'reilly\", 'for', 'canadian', 'wrestling', 'revolution', 'in', 'maple', ',', 'ontario', '.'], ['he', 'also', 'interned', 'with', 'hudson', 'institute', ',', 'the', 'heritage', 'foundation', ',', 'and', 'the', 'united', 'states', 'department', 'of', 'the', 'treasury', 'from', '2', '0', '1', '4', '-', '2', '0', '1', '6', '.'], ['he', 'did', 'this', 'in', 'numerous', 'unsigned', 'contributions', 'to', '``', 'isis', \"''\", ',', 'including', 'an', 'article', 'in', 'march', '1', '9', '2', '4', 'in', 'the', '``', 'isis', 'idols', \"''\", 'series', '.'], ['in', 'this', 'area', 'the', 'general', 'water', 'flow', 'is', 'distorted', 'by', 'more', 'local', 'conditions', 'reaching', 'across', 'to', 'france', '.'], ['the', 'singapore', 'river', 'underwent', 'a', 'major', 'cleanup', 'program', 'and', 'the', 'areas', 'along', 'the', 'river', 'were', 'developed', 'for', 'restaurants', 'and', 'other', 'tourist', 'amenities', '.'], ['this', 'did', 'not', 'resolve', 'the', 'question', 'of', 'authenticity', ',', 'however', ',', 'as', 'it', 'was', '``', 'conceivable', 'that', 'the', 'illuminations', 'could', 'have', 'been', 'retouched', 'in', 'a', 'naïve', 'attempt', 'at', 'restoration', '.', \"''\"], ['in', '1', '7', '7', '7', 'he', 'succeeded', 'his', 'father', 'as', 'second', 'baronet', 'and', 'promptly', 'commissioned', 'the', 'building', 'of', 'heveningham', 'hall', 'in', 'suffolk', '.'], ['fiberglass', 'winch', 'bases', 'mount', 'two', 'no', '.', '1', 'snubbing', 'winches', 'used', 'for', 'headsail', 'sheeting', '.'], ['although', 'it', 'is', 'hard', 'to', 'distinguish', 'between', 'magmatic', 'monazite', 'and', 'hydrothermal', 'monazite', ',', 'analysing', 'the', 'texture', 'and', 'pattern', 'of', 'monazite', 'may', 'help', 'distinguish', 'them', '.'], ['he', 'took', 'senior', 'status', 'on', 'august', '2', '2', ',', '2', '0', '1', '3', '.'], ['in', '2', '0', '1', '3', ',', 'she', 'curated', 'an', 'exhibition', '``', 'ultramegalore', \"''\", 'at', 'the', ',', 'based', 'on', 'her', 'career', 'of', 'acting', 'and', 'modeling', '.'], ['he', 'then', 'attended', 'chico', 'state', 'university', 'where', 'he', 'was', 'a', '1', '9', '7', '8', 'honorable', 'mention', '(', 'third', 'team', ')', 'all', 'american', 'soccer', 'player', '.'], ['she', 'won', 'the', 'academy', 'award', 'for', 'best', 'film', 'editing', 'for', '``', 'the', 'last', 'emperor', \"''\", '(', '1', '9', '8', '7', ')', ',', 'which', 'won', 'a', 'total', 'of', '9', 'oscars', '(', 'including', 'best', 'picture', 'and', 'best', 'director', '(', 'for', 'bertolucci', ')', ')', 'as', 'well', 'as', 'numerous', 'other', 'honors', '.'], ['allmusic', 'awarded', 'the', 'album', '4', 'stars', 'stating', '``', 'this', 'outing', 'features', 'pianist', 'hank', 'jones', 'emphasizing', 'the', 'swing', 'side', 'of', 'his', 'flexible', 'musical', 'personality', '.'], ['after', 'the', '1', '9', '6', '9', 'riot', ',', 'umno', 'also', 'began', 'to', 'restructure', 'the', 'political', 'system', 'to', 'reinforce', 'its', 'power', '.'], ['this', 'method', 'has', 'been', 'utilized', 'to', 'produce', 'a', 'variety', 'of', 'kinetically', 'stable', 'phosphaalkynes', ',', 'including', 'aryl', ',', 'tertiary', 'alkyl', ',', 'secondary', 'alkyl', ',', 'and', 'even', 'primary', 'alkyl', 'phosphaalkynes', 'in', 'good', 'yields', '.'], ['fresh', 'water', 'from', 'the', 'peace', 'river', 'is', 'vital', 'to', 'maintain', 'the', 'delicate', 'salinity', 'of', 'charlotte', 'harbor', 'that', 'hosts', 'several', 'endangered', 'species', ',', 'as', 'well', 'as', 'commercial', 'and', 'recreational', 'harvests', 'of', 'shrimp', ',', 'crabs', ',', 'and', 'fish', '.'], ['michelangelo', 'dubbed', 'the', 'east', 'doors', 'the', '``', 'gates', 'of', 'paradise', \"''\", '.'], ['in', '1', '9', '4', '5', 'opolot', 'enlisted', 'in', 'the', 'king', \"'s\", 'african', 'rifles', 'in', 'mbale', '.'], ['a', 'severe', 'neck', 'injury', 'kept', 'him', 'out', 'of', 'action', 'throughout', 'much', 'of', 'early', '2', '0', '0', '6', ',', 'but', 'he', 'returned', 'in', 'march', 'of', 'that', 'same', 'year', '.'], ['players', 'that', 'have', 'suffered', 'from', 'the', 'concussion', ',', 'the', 'average', 'of', 'their', 'age', 'was', '1', '9', '.', '5', 'years', 'of', 'age', ',', 'and', 'they', 'had', 'an', 'estimated', '8', '.', '4', 'years', 'of', 'experience', '.'], ['it', 'was', 'founded', 'in', '1', '9', '5', '0', 'by', 'raúl', 'ruiz', 'gonzález', 'and', 'other', 'former', 'members', 'of', 'the', 'revolutionary', 'left', 'party', '(', 'pir', ')', '.'], ['as', 'of', 'march', '2', '0', '1', '9', ',', 'the', 'fsin', 'is', 'responsible', 'for', '5', '5', '8', ',', '7', '7', '8', 'inmates', ',', 'including', 'pre-trial', 'detainees', '.'], ['located', 'directly', 'across', 'the', 'street', 'from', 'the', 'virginia', 'state', 'capitol', ',', 'it', 'has', 'long', 'been', 'a', 'popular', 'house', 'of', 'worship', 'for', 'political', 'figures', ',', 'including', 'general', 'robert', 'e.', 'lee', 'and', 'confederate', 'president', 'jefferson', 'davis', '(', 'earning', 'it', 'the', 'nickname', '``', 'the', 'cathedral', 'of', 'the', 'confederacy', \"''\", ')', '.'], ['trustees', 'are', 'elected', 'in', 'non-partisan', 'elections', 'on', 'an', 'at-large', 'basis', 'to', 'staggered', 'four-year', 'terms', 'of', 'office', 'with', 'three', 'trustee', 'seats', 'up', 'for', 'election', 'in', 'odd-numbered', 'years', '.'], ['according', 'to', '``', 'psychology', 'today', \"''\", ',', 'the', 'empirical', 'feeling', '``', 'that', 'some', 'teachings', 'of', 'pick-up', 'artists', 'are', 'grounded', 'in', 'theory', 'does', 'not', 'negate', 'the', 'callous', 'and', 'objectionable', 'nature', 'of', 'the', 'field', '.'], ['in', 'honor', 'of', 'this', 'occasion', ',', 'the', 'national', 'convention', 'was', 'held', 'in', 'troy', ',', 'new', 'york', 'to', 'commemorate', 'the', 'founding', 'of', 'theta', 'xi', '.'], ['this', 'also', 'included', 'coal', 'by-product', 'operations', 'at', 'orgreave', 'and', 'brookhouse', ',', 'suppliers', 'of', 'metallurgical', 'coke', 'for', 'blast', 'furnaces', '.'], ['without', 'such', 'legal', 'arms', 'it', 'is', 'practically', 'impossible', 'to', 'prove', 'one', \"'s\", 'nobiliary', 'status', '.'], ['immediately', 'after', 'the', 'crash', ',', 'the', 'nearby', 'milan', 'central', 'railway', 'station', ',', 'metro', 'station', 'and', 'the', 'linate', 'airport', 'were', 'shut', 'down', '.'], ['almost', '9', '0', '0', 'students', 'are', 'enrolled', 'in', 'the', 'college', 'and', 'more', 'than', '2', '0', '0', 'students', 'reside', 'in', 'the', 'hostel', 'on', 'the', 'college', 'campus', '.'], ['the', 'main', 'subclans', 'among', 'labhana', 'banjaras', 'are', 'kesharot', ',', 'dhirbasi', ',', 'gugra', ',', 'rusawat', ',', 'meghawat', ',', 'kachkad', ',', 'pachoria', ',', 'alwat', ',', 'khasawat', ',', 'bhokan', ',', 'katkwal', ',', 'dhobda', ',', 'machalya', ',', 'khaseria', ',', 'gozal', ',', 'borya', ',', 'ramawat', ',', 'bhutiya', ',', 'bumbholya', ',', 'retheyo', ',', 'and', 'manzawat', '.'], ['in', 'addition', ',', 'as', 'of', '1', 'december', '2', '0', '1', '4', 'one', 'property', 'has', 'been', 'registered', '(', 'as', 'opposed', 'to', 'designated', ')', 'nationally', 'and', 'another', 'at', 'the', 'prefectural', 'level', ':'], ['he', 'made', 'his', 'debut', 'for', 'os', 'lis', 'in', 'a', '2', '-', '1', 'loss', 'to', 'sertanense', '.'], ['but', 'only', '1', '/', '3', 'of', 'them', 'were', 'active', ',', 'many', 'having', 'other', 'pursuits', 'and', 'clubs', 'to', 'attend', '.'], ['for', 'example', ',', 'since', 'march', 'of', '2', '0', '0', '8', 'visa', 'inc.', 'has', 'used', 'the', 'symbol', 'v', 'that', 'had', 'previously', 'been', 'used', 'by', 'vivendi', 'which', 'had', 'delisted', 'and', 'given', 'up', 'the', 'symbol', '.'], ['for', 'each', 'outer', 'diameter', ',', 'either', '7', '5', 'or', '5', '0', 'ohm', 'inner', 'tubes', 'can', 'be', 'obtained', '.'], ['the', 'service', 'brakes', 'are', 'applied', 'by', 'means', 'of', 'a', 'brake', 'pedal', 'air', 'valve', 'which', 'regulates', 'both', 'circuits', '.'], ['american', 'rap', 'icon', 'tupac', 'shakur', 'also', 'wore', 'air', 'jordans', 'in', 'a', 'popular', '``', 'thug', 'life', \"''\", 'photo', 'in', '1', '9', '9', '3', '.'], ['guest', 'star', 'seth', 'green', 'said', 'that', 'despite', 'being', 'cast', 'as', '``', 'stoner', 'kid', \"''\", 'emil', ',', 'and', 'having', '``', 'cornered', 'the', 'market', 'on', 'the', 'affable', 'stoner', 'in', 'tv', 'and', 'film', \"''\", ',', 'he', 'had', 'never', 'used', 'cannabis', 'before', '.'], ['bellport', 'also', 'has', 'a', 'ferry', 'leading', 'to', 'bellport', 'beach', 'on', 'fire', 'island', '.'], ['scripps', 'was', 'born', 'in', '1', '8', '3', '5', 'in', 'london', 'to', 'james', 'mogg', 'scripps', 'and', 'ellen', 'mary', '(', 'saunders', ')', 'scripps', '.'], ['probable', 'fossils', '1', '0', '0', 'million', 'years', 'older', 'have', 'been', 'found', 'in', 'the', 'same', 'area', '.'], ['this', 'made', 'it', 'an', 'almost', 'exclusively', 'long-haul', ',', 'intercontinental', 'scheduled', 'airline', '.'], ['newmyer', ',', 'a', 'lifelong', 'asthmatic', ',', 'had', 'a', 'heart', 'attack', 'triggered', 'by', 'asthma', ',', 'while', 'working', 'out', 'in', 'a', 'health', 'club', '.'], ['aella', \"'s\", 'weapon', 'of', 'choice', 'was', 'a', 'double-axe', ',', 'a', 'common', 'symbol', 'used', 'in', 'the', 'minoan', 'culture', '.'], ['she', 'conducted', 'the', 'irish', 'chamber', 'orchestra', 'on', 'her', 'own', '``', 'pages', \"''\", 'album', 'recording', 'where', 'she', 'had', 'also', 'composed', 'and', 'orchestrated', 'the', 'music', '.'], ['marci', 'miller', 'stepped', 'into', 'the', 'role', 'from', 'november', '2', '0', '1', '6', 'to', 'november', '2', '0', '1', '8', '.'], ['copy', 'and', 'audio', 'cuts', 'are', 'also', 'used', 'by', 'bfbs', 'radio', ',', 'in', 'addition', 'to', 'radio', 'stations', 'in', 'the', 'republic', 'of', 'ireland', ',', 'spain', ',', 'cyprus', ',', 'uae', ',', 'south', 'africa', 'and', 'australia', '.'], ['first', 'published', 'in', '1', '8', '5', '7', ',', 'this', 'book', 'explains', 'the', 'fundamentals', 'of', 'the', 'spiritist', 'doctrine', 'concerning', 'the', 'nature', 'of', 'spirits', ',', 'their', 'manifestations', ',', 'and', 'how', 'they', 'relate', 'to', 'men', ',', 'moral', 'laws', ',', 'and', 'the', 'present', 'and', 'future', 'life', 'and', 'destiny', 'of', 'humankind', '.'], ['moreover', ',', 'lubmin', 'is', 'the', 'administrative', 'seat', 'of', '``', 'amt', 'lubmin', \"''\", ',', 'to', 'which', 'nine', 'other', 'municipalities', 'belong', '.'], ['the', 'senators', 'traded', 'goaltender', 'damian', 'rhodes', 'to', 'the', 'atlanta', 'thrashers', 'as', 'part', 'of', 'a', 'deal', 'during', 'the', '1', '9', '9', '9', 'nhl', 'expansion', 'draft', ',', 'and', 'acquired', 'patrick', 'lalime', 'from', 'the', 'mighty', 'ducks', 'of', 'anaheim', 'to', 'split', 'goaltending', 'duties', 'with', 'ron', 'tugnutt', '.'], ['in', 'december', '1', '9', '0', '9', ',', 'siggins', 'and', 'her', 'husband', 'moved', 'to', 'new', 'zealand', '.'], ['the', 'observer', 'school', 'building', 'at', 'ins', 'garuda', 'in', 'kochi', 'is', 'named', '``', 'mihir', 'hall', \"''\", 'after', 'roy', '.'], ['israel', 'represented', 'poalei', 'zion', 'in', 'the', 'zionist', 'congress', 'of', '1', '9', '0', '7', ',', 'which', 'took', 'place', 'in', 'the', 'hague', 'in', 'the', 'netherlands', '.'], ['this', 'has', 'led', 'to', 'controversy', 'about', 'his', 'attitude', 'toward', 'jews', 'and', 'to', 'accusations', 'of', 'anti-judaism', '.'], ['there', 'were', 'four', 'lady', 'trick', 'riders', ':', 'frida', 'mgaloblishvili', ',', 'kristine', 'tsintsadze', ',', 'maro', 'and', 'barbara', 'zakareishvili', '.'], ['among', 'his', 'findings', ',', 'which', 'were', 'published', 'only', 'after', 'the', 'end', 'of', 'the', 'war', ',', 'was', 'that', 'the', '``', 'elon-elon', \"''\", 'variety', 'flowered', 'during', 'short', 'days', 'when', 'there', 'was', 'less', 'than', '1', '2', 'hours', 'of', 'light', '.'], ['scolton', 'manor', 'is', 'a', 'victorian', 'country', 'house', 'and', 'country', 'park', 'located', 'in', 'pembrokeshire', ',', 'west', 'wales', 'northeast', 'of', 'haverfordwest', 'and', 'on', 'the', 'borders', 'of', 'the', 'pembrokeshire', 'coast', 'national', 'park', '.'], ['with', 'his', 'vacation', 'plans', 'now', 'ruined', ',', 'duke', 'hits', 'the', '``', 'eject', \"''\", 'button', ',', 'and', 'vows', 'to', 'do', 'whatever', 'it', 'takes', 'to', 'stop', 'the', 'alien', 'invasion', '.'], ['in', 'october', '2', '0', '0', '7', ',', 'he', 'published', 'a', 'book', '``', 'raiders', 'of', 'the', 'caribbean', \"''\", '(', 'co-authored', 'with', 'gerard', 'siggins', ')', 'with', 'the', \"o'brien\", 'press', 'which', 'tells', 'the', 'story', 'of', 'ireland', \"'s\", 'remarkable', 'performances', 'in', 'the', '2', '0', '0', '7', 'cricket', 'world', 'cup', '.'], ['herzstark', ',', 'the', 'son', 'of', 'a', 'catholic', 'mother', 'and', 'jewish', 'father', ',', 'was', 'taken', 'into', 'custody', 'in', '1', '9', '4', '3', 'and', 'eventually', 'sent', 'to', 'buchenwald', 'concentration', 'camp', ',', 'where', 'he', 'was', 'encouraged', 'to', 'continue', 'his', 'earlier', 'research', ':'], ['cerithium', 'africanum', 'is', 'a', 'species', 'of', 'sea', 'snail', ',', 'a', 'marine', 'gastropod', 'mollusk', 'in', 'the', 'family', 'cerithiidae', '.'], ['the', 'banks', 'that', 'are', 'located', 'on', 'this', 'wall', 'street', 'of', 'chinatown', 'are', 'asia', 'bank', ',', 'united', 'orient', 'bank', ',', 'and', 'citibank', '(', 'corner', 'of', 'mott', 'street', ')', 'on', 'chatham', 'square', '.'], ['the', 'first', 'anticonvulsant', 'was', 'bromide', ',', 'suggested', 'in', '1', '8', '5', '7', 'by', 'the', 'british', 'gynecologist', 'charles', 'locock', 'who', 'used', 'it', 'to', 'treat', 'women', 'with', '``', 'hysterical', 'epilepsy', \"''\", '(', 'probably', '``', 'catamenial', 'epilepsy', \"''\", ')', '.'], ['in', '1', '9', '4', '5', ',', 'he', 'succeeded', 'orwell', 'as', 'literary', 'editor', 'of', 'the', '``', 'tribune', \"''\", 'newspaper', 'when', 'orwell', 'left', 'to', 'become', 'a', 'war', 'correspondent', 'for', '``', 'the', 'observer', \"''\", '.'], ['spray', ',', 'ice', ',', 'and', 'slush', 'splashing', 'out', 'of', 'the', 'feature', 'create', 'a', 'volcanic', 'cone', 'at', 'the', 'channel', \"'s\", 'shoreward', 'end', '.'], ['the', 'sheffield', 'coal', 'company', ',', 'owners', 'of', 'birley', 'collieries', ',', 'brookhouse', 'and', 'north', 'staveley', 'collieries', ',', 'was', 'bought', 'by', 'the', 'united', 'steel', 'companies', 'in', '1', '9', '3', '7', '.'], ['it', 'was', 'appended', 'to', '``', 'los', 'dialogos', 'de', 'amor', \"''\", ',', 'the', 'spanish', 'translation', 'of', 'judah', 'abravanel', \"'s\", '``', 'dialoghi', \"d'amore\", \"''\", '.'], ['mcleod', 'attended', 'the', 'melbourne', 'law', 'school', 'at', 'the', 'university', 'of', 'melbourne', ',', 'where', 'she', 'enjoyed', 'participating', 'in', 'student', 'theatre', 'productions', '.'], ['in', 'law', 'and', 'diplomacy', 'in', '1', '9', '8', '0', '.'], ['ril', 'allowed', 'the', 'cag', 'to', 'begin', 'the', 'audit', 'in', 'april', 'this', 'year', 'after', 'stalling', 'it', 'for', 'a', 'year', '.'], ['thomas', 'was', 'born', 'on', '2', '1', 'october', '1', '9', '3', '1', 'in', 'windsor', ',', 'england', ',', 'to', 'hugh', 'whitelegge', 'thomas', ',', 'a', 'colonial', 'commissioner', ',', 'and', 'his', 'wife', 'margery', 'augusta', 'angelo', ',', '``', 'née', \"''\", 'swynnerton', '.'], ['``', 'it', \"'s\", 'an', 'anti-violence', 'poem', ',', \"''\", 'she', 'said', '.'], ['the', 'who', 'also', 'performed', 'some', 'live', 'staples', 'such', 'as', '``', 'substitute', \"''\", ',', '``', 'my', 'generation', \"''\", ',', '``', 'magic', 'bus', \"''\", ',', '``', 'i', 'ca', \"n't\", 'explain', \"''\", ',', 'and', 'the', 'perennial', 'covers', 'of', '``', 'shakin', \"'\", 'all', 'over', \"''\", 'and', '``', 'summertime', 'blues', \"''\", '.'], ['he', 'moved', 'los', 'angeles', 'to', 'pursue', 'music', 'and', 'a', 'university', 'education', 'and', 'earned', 'a', 'bachelor', 'of', 'arts', 'degree', 'in', 'political', 'science', 'from', 'california', 'state', 'university', ',', 'northridge', ',', 'and', 'both', 'a', 'master', 'of', 'arts', 'and', 'doctor', 'of', 'philosophy', 'in', 'ethnomusicology', 'from', 'the', 'university', 'of', 'california', ',', 'los', 'angeles', '.'], ['by', '1', '9', '4', '0', ',', 'the', 'population', 'of', 'the', 'zoo', 'numbered', '9', '6', '5', 'individuals', 'representing', '2', '0', '9', 'species', '.'], ['temperature', 'is', 'a', 'factor', ',', 'with', '1', '0', '0', '%', 'germination', 'occurring', 'at', '.'], ['between', '1', '8', '0', '5', 'and', '1', '8', '1', '1', 'the', 'area', 'became', 'a', 'stop', 'on', 'the', 'federal', 'road', 'through', 'the', 'creek', 'nation', '.'], ['the', 'marriage', 'canceled', 'rosalynn', \"'s\", 'plans', 'to', 'attend', 'georgia', 'state', 'college', 'for', 'women', ',', 'where', 'she', 'had', 'planned', 'to', 'study', 'interior', 'design', '.'], ['after', 'alsina', 'died', 'in', '1', '8', '7', '7', ',', 'julio', 'argentino', 'roca', 'was', 'appointed', 'minister', 'of', 'war', ',', 'and', 'decided', 'to', 'change', 'the', 'strategy', '.'], ['the', 'firm', 'was', 'from', '1', '8', '0', '0', 'based', 'in', 'thomas', 'ter', 'borch', \"'s\", 'property', 'at', 'dronningens', 'tværgade', '7', '.'], ['taxonomists', 'have', 'confirmed', 'the', 'fluorescent', 'pink', 'species', \"'\", 'distinction', 'from', 'the', 'red', 'triangle', 'slug', '.'], ['in', '1', '9', '7', '9', ',', 'general', \"'s\", 'contract', 'to', 'manage', 'two', 'hotels', 'in', 'yellowstone', 'park', 'was', 'terminated', 'due', 'to', '``', 'poor', 'service', \"''\", 'and', 'inadequate', 'maintenance', 'of', 'the', 'properties', ',', 'according', 'to', 'the', 'national', 'park', 'service', '.'], ['overall', 'planned', 'investment', 'is', 'us', '$', '1', '0', '7', '4', '0', '0', '0', '.'], ['several', 'of', 'the', 'first', 'production', 'beauforts', 'were', 'engaged', 'in', 'working-up', 'trials', 'and', 'final', 'service', 'entry', 'began', 'in', 'january', '1', '9', '4', '0', 'with', '2', '2', 'squadron', 'of', 'raf', 'coastal', 'command', '.'], ['the', 'efficiency', 'of', 'removal', 'will', 'depend', 'on', 'the', 'specific', 'equipment', ',', 'the', 'chemical', 'composition', 'of', 'the', 'waste', ',', 'the', 'design', 'of', 'the', 'plant', ',', 'the', 'chemistry', 'of', 'reagents', ',', 'and', 'the', 'ability', 'of', 'engineers', 'to', 'optimize', 'these', 'conditions', ',', 'which', 'may', 'conflict', 'for', 'different', 'pollutants', '.'], ['richard', 'rawson', '(', 'born', '5', 'february', '1', '9', '8', '7', ')', ',', 'better', 'known', 'by', 'his', 'stage', 'name', 'fazer', ',', 'is', 'a', 'british', 'rapper', ',', 'singer', ',', 'songwriter', ',', 'record', 'producer', 'and', 'dj', '.'], ['trujillo', 'was', 'born', 'in', 'salt', 'lake', 'city', ',', 'utah', '.'], ['mechtilde', 'died', 'in', 'the', 'monastery', 'of', 'helfta', ',', 'on', 'november', '1', '9', ',', '1', '2', '9', '8', '.'], ['smes', 'sort', 'test', 'items', 'into', 'categories', 'of', 'appropriate', 'difficulty', ',', 'or', 'correlate', 'item', 'difficulty', 'to', 'course', 'levels', '.'], ['suicidal', 'and', 'desperate', ',', 'she', 'meets', 'with', 'dr.', 'elizabeth', 'barnes', 'who', 'videotapes', 'each', 'patient', \"'s\", 'interviews', '.'], ['according', 'to', 'the', '2', '0', '0', '8', 'census', 'it', 'has', 'a', 'population', 'of', '2', '9', ',', '0', '1', '2', '.'], ['the', 'company', 'publishes', ',', 'prints', 'and', 'distributes', 'books', 'globally', '.'], ['subsequently', ',', 'the', 'protonation', 'of', 'sγ', 'induces', 'cβ-sγ', 'bond', 'cleavage', ',', 'thereby', 'releasing', 'homocysteine'], ['approximately', '2', ',', '1', '6', '9', 'developers', 'across', '1', '4', 'studios', 'worked', 'on', '``', 'the', 'last', 'of', 'us', 'part', 'ii', \"''\", '.'], ['krstić', 'was', 'born', 'in', 'either', 'september', '1', '8', '2', '4', 'or', '1', '8', '2', '6', ',', 'in', 'the', 'village', 'of', 'mlado', 'nagoričane', 'at', 'the', 'time', 'part', 'of', 'the', 'sanjak', 'of', 'üsküp', ',', 'ottoman', 'empire', '(', 'now', 'staro', 'nagoričane', ',', 'north', 'macedonia', ')', '.'], ['dr.', 'teal', 'and', 'dr.', 'little', 'of', 'bell', 'telephone', 'laboratories', 'were', 'the', 'first', 'to', 'use', 'the', 'czochralski', 'method', 'to', 'create', 'ge', 'and', 'si', 'single', 'crystals', '.'], ['6', '4', 'anteaters', 'have', 'won', 'individual', 'national', 'championships', ',', 'and', '5', '3', 'anteaters', 'have', 'competed', 'in', 'the', 'olympics', '.'], ['john', 'andrew', 'was', 'replaced', 'by', 'frederick', 'jellieffe', 'steane', 'in', 'june', '1', '8', '7', '3', 'when', 'andrew', 'briefly', 'left', 'hay', '.'], ['however', 'in', '1', '9', '8', '6', 'the', 'building', 'was', 'demolished', 'to', 'make', 'room', 'for', 'the', 'union', 'boulevard', 'in', 'bucharest', '.'], ['like', 'many', 'other', 'european', 'police', 'tactical', 'units', ',', 'the', 'bsb', 'was', 'established', 'in', '1', '9', '7', '5', 'following', 'munich', 'massacre', '.'], ['between', 'these', 'districts', ',', 'the', 'humedales', 'de', 'villa', 'maría', ',', 'a', 'swamp', ',', 'is', 'home', 'to', 'a', 'local', 'species', 'of', 'heron', ',', 'along', 'with', 'many', 'species', 'of', 'frogs', 'and', 'fish', '.'], ['the', '``', 'new', \"''\", 'shipments', 'of', 'onions', 'caused', 'many', 'futures', 'traders', 'to', 'think', 'that', 'there', 'was', 'an', 'excess', 'of', 'onions', 'and', 'further', 'drove', 'down', 'onion', 'prices', 'in', 'chicago', '.'], ['the', 'cardinals', 'are', 'a', 'family', 'of', 'robust', 'seed-eating', 'birds', 'with', 'strong', 'bills', '.'], ['the', 'wagon', 'can', 'also', 'be', 'seen', 'in', '``', 'dragon', 'quest', 'v', \"''\", 'and', '``', 'dragon', 'quest', 'vi', \"''\", '.'], ['in', 'the', 'example', 'above', '(', 'figure', '2', ')', ',', 'the', 'variables', 'a', ',', 'b', ',', 'c', ',', 'and', 'e', 'are', 'the', 'neighbors', 'of', 'the', 'clue', 'cell', '1', 'and', 'they', 'are', 'not', 'neighbors', 'of', 'any', 'other', 'cell', '.'], ['we', 'wrote', 'to', 'judges', ',', 'lawyers', 'and', 'hundreds', 'of', 'times', 'to', 'the', 'department', 'of', 'justice', '.'], ['additionally', ',', 'pohl', 'claimed', 'that', 'he', 'had', 'uncovered', 'the', 'tops', 'of', 'posts', 'about', 'a', 'foot', 'underground', ',', 'arranged', 'in', 'a', 'pattern', 'that', 'might', 'have', 'been', 'that', 'of', 'either', 'a', 'norse', 'shipyard', 'or', 'drydock', '.'], ['she', 'served', 'as', 'the', 'model', 'for', 'michaël', 'borremans', \"'s\", 'painting', '``', 'the', 'angel', '.', \"''\"], ['in', '1', '9', '9', '8', ',', 'he', 'was', 'named', 'one', 'of', 'people', 'magazine', \"'s\", '5', '0', 'most', 'beautiful', 'people', '.'], ['emile', 'cioran', 'starts', '``', 'aus', 'einem', 'interview', 'mit', 'michael', 'jakob', \"''\", 'with', 'a', 'question', 'by', 'jakob', ',', 'that', 'mentions', 'cioran', \"'s\", 'disbelief', 'in', 'dialogue', 'and', 'his', 'belief', 'that', 'every', 'meeting', 'was', 'a', 'kind', 'of', 'cruxification', '.'], ['in', 'theoretical', 'physics', ',', 'super', 'qcd', 'is', 'a', 'supersymmetric', 'gauge', 'theory', 'which', 'resembles', 'quantum', 'chromodynamics', '(', 'qcd', ')', 'but', 'contains', 'additional', 'particles', 'and', 'interactions', 'which', 'render', 'it', 'supersymmetric', '.'], ['thomas', 'gained', 'a', 'first', 'class', 'in', 'part', 'i', 'of', 'the', 'history', 'tripos', 'in', '1', '9', '5', '2', ',', 'and', 'the', 'following', 'year', 'was', 'president', 'of', 'the', 'cambridge', 'union', 'society', '.'], ['the', 'name', 'was', 'described', 'as', 'having', 'been', '``', 'controversial', \"''\", ',', 'since', 'it', 'has', 'been', 'used', 'to', 'describe', 'larger', 'areas', '.'], ['he', 'began', 'a', 'career', 'as', 'a', 'journalist', 'in', '1', '9', '5', '8', ',', 'writing', 'for', '``', 'the', 'rand', 'daily', 'mail', \"''\", 'in', 'johannesburg', ',', 'where', 'he', 'eventually', 'became', 'deputy-editor', '.'], ['bogdanov', 'gave', 'a', 'lecture', 'to', 'a', 'club', 'at', 'moscow', 'university', ',', 'which', ',', 'according', 'to', 'yakov', 'yakovlev', ',', 'included', 'an', 'account', 'of', 'the', 'formation', 'of', 'vpered', 'and', 'reiterated', 'some', 'of', 'the', 'criticisms', 'bogdanov', 'had', 'made', 'at', 'the', 'time', 'of', 'the', 'individualism', 'of', 'certain', 'leaders', '.'], ['this', 'was', 'a', 'hit', 'in', 'the', 'republic', 'of', 'macedonia', ',', 'winning', 'the', 'prize', 'for', 'most', 'listened', 'song', 'from', 'the', 'audience', 'in', '1', '9', '9', '2', '.'], ['making', 'his', 'debut', 'with', 'the', 'texas', 'rangers', 'on', 'june', '2', '0', ',', '1', '9', '9', '1', ',', 'he', 'became', 'the', 'youngest', 'player', 'to', 'catch', 'in', 'a', 'major', 'league', 'game', 'that', 'season', 'at', '1', '9', 'years', 'of', 'age', '.'], ['in', 'the', '1', '9', '6', '0', 's', ',', 'she', 'was', 'active', 'in', 'voice', 'of', 'women', ',', 'and', 'leased', 'the', 'kingsmill', 'family', 'summer', 'home', 'on', 'grindstone', 'island', 'to', 'the', 'society', 'of', 'friends', 'to', 'serve', 'as', 'a', 'quaker', 'retreat', 'centre', 'and', 'an', 'institution', 'for', 'peace', 'studies', '.'], ['shows', 'in', 'portland', ',', 'houston', ',', 'denver', 'and', 'washington', ',', 'd.c.', 'were', 'later', 'added', '.'], ['the', 'r', '9', '3', '5', 'road', 'is', 'a', 'regional', 'road', 'in', 'ireland', 'which', 'links', 'the', 'n', '5', '5', 'road', 'with', 'the', 'r', '2', '1', '2', 'regional', 'road', 'in', 'cavan', 'in', 'county', 'cavan', '.'], ['for', 'australia', ',', 'taking', '2', '5', '°', 'as', 'a', 'median', 'latitude', ',', '``', 'hk', \"''\", '=', '1', '.', '2', '.'], ['as', 'part', 'of', 'the', 'management', \"'s\", 'restructuring', ',', 'miyamoto', 'and', 'takeda', 'were', 'respectively', 'named', 'creative', 'and', 'technological', 'advisors', '.'], ['the', 'average', 'literacy', 'was', '7', '1', '.', '8', '%', ',', 'compared', 'to', 'the', 'national', 'average', 'of', '7', '2', '.', '9', '9', '%', '.'], ['we', 'want', 'to', 'experiment', 'with', 'different', 'ways', 'of', 'storytelling', '.'], ['in', 'addition', ',', 'weekly', 'bird', 'surveys', 'are', 'conducted', 'to', 'monitor', 'usage', 'and', 'to', 'ensure', 'that', 'problems', 'are', 'detected', 'quickly', '.'], ['higgs', 'began', 'his', 'own', 'business', ',', 'm', 'and', 't', 'transportation', ',', 'inc', ',', 'in', '1', '9', '9', '8', '.'], ['the', 'increase', 'of', 'telemedicine', ',', 'has', 'shown', 'the', 'rise', 'of', 'possible', 'ai', 'applications', '.'], ['his', '1', '9', '9', '8', 'season', 'was', 'even', 'more', 'limited', ',', 'with', 'no', 'first', 'team', 'appearances', 'and', 'only', 'a', 'single', 'second', 'team', 'appearance', 'for', 'middlesex', '.'], ['the', 'western', 'european', 'league', 'of', 'the', 'fei', 'world', 'cup', 'jumping', '2', '0', '1', '1', '/', '2', '0', '1', '2', 'is', 'the', '3', '4', 'th', 'edition', 'of', 'the', 'west', 'and', 'central', 'european', 'league', 'of', 'the', 'show', 'jumping', 'world', 'cup', '.'], ['he', 'became', 'chief', 'of', 'staff', 'at', 'headquarters', 'far', 'east', 'land', 'forces', 'in', '1', '9', '5', '0', ',', 'general', 'officer', 'commanding', '3', 'rd', 'division', 'based', 'in', 'the', 'middle', 'east', 'in', '1', '9', '5', '2', 'and', 'then', 'director', 'of', 'military', 'operations', 'at', 'the', 'war', 'office', 'in', '1', '9', '5', '4', '.'], ['johnston', 'was', 'born', 'in', 'wollongong', ',', 'new', 'south', 'wales', ',', 'and', 'played', 'his', 'early', 'cricket', 'for', 'new', 'south', 'wales', 'in', 'australian', 'domestic', 'competitions', '.'], ['horrified', ',', 'she', 'runs', 'after', 'scott', 'to', 'tell', 'him', 'about', 'what', 'she', 'saw', 'and', 'what', 'she', 'remembered', '.'], ['russia', 'has', 'one', 'of', 'the', 'highest', 'incarceration', 'rates', 'in', 'the', 'world', 'at', '4', '1', '6', 'per', '1', '0', '0', ',', '0', '0', '0', 'people', 'in', '2', '0', '1', '8', ',', 'with', 'a', 'prison', 'population', 'ranked', 'fourth', 'behind', 'the', 'united', 'states', ',', 'china', ',', 'and', 'brazil', '.'], ['the', 'album', 'has', 'also', 'been', 'described', 'as', 'new', 'wave', '.'], ['in', '1', '9', '6', '8', ',', 'the', 'name', 'was', 'changed', 'to', 'the', 'brico', 'symphony', '.'], ['he', 'was', 'rewarded', 'with', 'the', 'military', 'and', 'civil', 'governorship', 'of', 'heilongjiang', 'in', 'march', '1', '9', '2', '1', 'and', 'promoted', 'to', 'commander', 'of', 'the', '5', 'th', 'army', 'in', '1', '9', '2', '4', '.'], ['recreational', 'canoeing', 'routes', 'often', 'include', 'portages', 'between', 'lakes', ',', 'for', 'example', ',', 'the', 'seven', 'carries', 'route', 'in', 'adirondack', 'park', '.'], ['the', 'entire', 'story', 'was', 'invented', 'by', 'notovitch', ',', 'who', 'earned', 'a', 'good', 'deal', 'of', 'money', 'and', 'a', 'substantial', 'amount', 'of', 'notoriety', 'for', 'his', 'hoax', '.', \"''\"], ['decided', 'to', 'have', 'him', 'quietly', 'excecuted', '(', '``', 'sine', 'sonitu', 'et', 'sine', 'strepitu', \"''\", ')', '.'], ['after', 'graduating', ',', 'he', 'worked', 'as', 'a', 'car', 'mechanic', 'for', 'two', 'years', '.'], ['however', ',', 'comyn', 'writes', 'in', 'his', 'memoirs', 'that', 'he', 'also', 'saw', '``', 'the', 'charred', 'remains', 'of', 'the', 'stockade', \"''\", 'of', 'sulaiman', \"'s\", 'fortifications', '.'], ['jul', '2', '6', ',', '1', '8', '5', '8', '-', 'the', 'portsmouth', 'national', 'light', 'infantry', 'greys', 'observed', 'the', 'passing', 'of', 'their', 'second', 'year', 'with', 'a', 'target', 'shoot', 'occupying', 'the', 'hours', 'of', 'the', 'day', '.'], ['for', 'example', ',', 'furby', 'affects', 'the', 'way', 'people', 'think', 'about', 'their', 'identity', ',', 'and', 'many', 'children', 'think', 'that', 'furby', 'is', 'alive', 'in', 'a', '``', 'furby', 'kind', 'of', 'way', \"''\", 'in', 'sherry', 'turkle', \"'s\", 'research', '.'], ['degree', 'from', 'the', 'university', 'of', 'hamburg', 'in', '1', '9', '4', '8', '.'], ['the', '``', 'kingdom', 'hearts', \"''\", 'series', 'is', 'directed', 'by', 'tetsuya', 'nomura', ',', 'the', 'character', 'designer', 'of', 'the', 'games', '.'], ['surgery', 'is', 'performed', 'by', 'a', 'neurosurgeon', 'who', 'temporarily', 'removes', 'part', 'of', 'the', 'skull', '(', 'craniotomy', ')', ',', 'separates', 'the', 'avm', 'from', 'surrounding', 'brain', 'tissue', ',', 'and', 'resects', 'the', 'abnormal', 'vessels', '.'], ['in', 'addition', ',', 'many', 'medical', 'and', 'surgical', 'techniques', 'were', 'developed', 'by', 'exploiting', 'the', 'bodies', 'of', 'enslaved', 'black', 'women', '.'], ['it', 'received', 'royal', 'assent', 'on', '6', 'may', '2', '0', '1', '5', '.'], ['this', 'is', 'an', 'example', 'of', 'how', 'public', 'utilities', 'can', 'assist', 'with', 'electric', 'vehicle', 'charging', 'upgrades', '.'], ['cadoret', 'served', 'as', 'a', 'general', 'councillor', 'in', 'the', 'between', '1', '9', '2', '2', 'and', '1', '9', '4', '5', '.'], ['the', 'campus', 'was', 'opened', 'in', 'the', 'fall', 'of', '2', '0', '0', '5', 'to', '5', 'th', 'and', '6', 'th', 'grade', 'students', '.'], ['in', 'this', 'episode', ',', 'veronica', 'is', 'hired', 'by', 'an', 'arab', 'couple', 'who', 'own', 'a', 'middle', 'eastern', 'restaurant', 'because', 'their', 'restaurant', 'has', 'recently', 'had', 'the', 'word', '``', 'terrorist', \"''\", 'spray-painted', 'on', 'it', '.'], ['he', 'returned', 'to', 'the', 'singles', 'chart', 'in', '2', '0', '1', '0', ',', 'after', 'an', 'absence', 'of', 'over', '2', '0', 'years', ',', 'with', 'his', 'recording', 'of', '``', 'we', 'both', 'grown', \"''\", ',', 'a', 'duet', 'with', 'dave', 'hollister'], ['the', 'region', 'varies', 'in', 'elevation', 'from', '7', '0', '0', 'to', '2', '0', '0', '0', 'meters', 'from', 'west', 'to', 'east', '.'], ['after', 'the', 'fall', 'of', 'communism', 'in', '1', '9', '8', '9', 'and', 'the', 'collapse', 'of', 'bulgaria', \"'s\", 'planned', 'economy', ',', 'a', 'number', 'of', 'industrial', 'complexes', 'were', 'closed', '.'], ['because', 'the', 'field', 'was', 'one', 'short', 'of', 'the', 'minimum', 'requirement', 'of', '1', '0', 'cars', ',', 'the', 'final', 'spot', 'was', 'awarded', 'to', 'the', 'highest', 'finishing', 'driver', 'in', 'the', '1', '9', '8', '5', 'points', 'standings', 'without', 'a', 'win', '.'], ['it', 'was', 'released', 'in', '1', '9', '7', '6', 'on', 'asylum', 'records', '.'], ['``', 'retro', 'gamer', \"''\", 'took', 'a', 'look', 'back', 'at', '``', 'ninja', 'gaiden', \"''\", 'in', 'its', 'march', '2', '0', '0', '4', 'issue', ',', 'when', 'the', '2', '0', '0', '4', 'xbox', 'remake', 'was', 'released', '.'], ['the', 'second', ',', 'revised', 'and', 'completed', 'edition', 'of', 'the', 'book', 'was', 'published', 'in', '2', '0', '0', '2', '.'], ['royal', 'air', 'force', 'thruxton', 'or', 'more', 'simply', 'raf', 'thruxton', 'is', 'a', 'former', 'royal', 'air', 'force', 'station', 'located', 'west', 'of', 'andover', ',', 'hampshire', 'and', 'about', 'southwest', 'of', 'london', '.'], ['in', '2', '0', '1', '4', 'he', 'served', 'as', 'chairman', 'of', 'the', 'd.c.', 'federation', 'of', 'college', 'republicans', '.'], ['after', 'about', '1', '8', '2', '0', 'the', 'design', 'and', 'layout', 'had', 'settled', 'down', 'to', 'a', 'more', 'or', 'less', 'standardized', 'arrangement', '.'], ['she', 'was', 'born', 'into', 'a', 'distinguished', 'literary', 'and', 'medical', 'family', 'of', 'prominent', 'unitarians', '.'], ['this', '``', 'too', 'little', ',', 'too', 'late', \"''\", 'effort', 'may', 'be', 'a', 'mass', 'form', 'of', 'climate', 'change', 'denial', ',', 'or', 'an', 'idealistic', 'pursuit', 'of', 'green', 'energy', '.'], ['among', 'mitchell', \"'s\", 'organizational', 'activities', 'were', 'membership', 'on', 'the', 'board', 'of', 'directors', 'of', 'the', 'empty', 'foxhole', 'inc.', 'in', 'philadelphia', ',', 'secretary', 'of', 'the', 'unification', 'of', 'concerned', 'jazz', 'artists', ',', 'and', 'an', 'association', 'with', 'the', 'jazz', 'museum', 'in', 'new', 'york', '.'], ['excessive', 'twists', 'or', 'turns', ',', 'uncomfortable', 'reaches', 'or', 'pickups', ',', 'and', 'unnecessary', 'walking', 'all', 'contribute', 'to', 'wasted', 'motion', 'and', 'may', 'put', 'error', 'inducing', 'stress', 'upon', 'the', 'operator', '.'], ['the', 'national', 'institutional', 'ranking', 'framework', '(', 'nirf', ')', 'ranked', 'it', '1', '3', '0', 'among', 'engineering', 'colleges', 'in', '2', '0', '2', '0', '.'], ['it', 'was', 'announced', 'on', '1', '6', 'december', '2', '0', '0', '9', 'that', 'the', 'telescope', 'was', '``', 'subject', 'to', 'discussions', 'leading', 'to', 'managed', 'withdrawal', \"''\", '.'], ['he', 'served', 'in', 'the', 'militia', 'during', 'the', 'war', 'of', '1', '8', '1', '2', ',', 'first', 'as', 'lieutenant', 'and', 'then', 'as', 'captain', '.'], ['in', 'the', 'late', '2', '0', 'th', 'century', ',', 'hwang', 'jini', \"'s\", 'story', 'began', 'to', 'attract', 'attention', 'from', 'both', 'sides', 'of', 'the', 'korean', 'divide', 'and', 'feature', 'in', 'a', 'variety', 'of', 'novels', ',', 'operas', ',', 'films', 'and', 'television', 'series', '.'], ['the', 'subsequently', 'abandoned', '5', '5', '/', '3', '5', 'mm', 'century', 'projector', 'eventually', 'became', 'the', 'century', 'jj', '7', '0', '/', '3', '5', 'mm', 'projector', '.'], ['the', 'quality', 'of', 'the', 'line', '(', 'how', 'well', 'it', 'performs', ')', 'at', 'the', 'frequency', 'of', 'the', 'bin', 'in', 'question', 'determines', 'how', 'many', 'bits', 'can', 'be', 'encoded', 'within', 'that', 'bin', '.'], ['her', 'final', 'years', 'from', '1', '9', '8', '9', 'were', 'spent', 'at', 'a', 'retirement', 'home', ',', 'in', 'ferryside', ',', 'carmarthenshire', '.'], ['for', 'every', '1', '0', '0', 'females', 'age', '1', '8', 'and', 'over', ',', 'there', 'were', '8', '7', '.', '0', 'males', '.'], ['he', 'maintained', 'a', 'considerable', 'financial', 'interest', 'and', 'a', 'friendly', 'connection', 'with', 'his', 'successors', '.'], ['``', ',', 'sky', 'refused', 'to', 'go', 'along', 'with', 'rayne', ',', 'the', 'mystery', 'woman', 'and', 'sarita', ',', 'when', 'they', 'all', 'finished', 'assaulting', 'love', 'and', 'taylor', 'wilde', '.'], ['he', 'was', 'a', 'student', 'of', 'francesco', 'casanova', 'and', 'louis-gabriel', 'moreau', '.'], ['the', 'track', 'received', '1', '0', '0', 'k', 'hits', 'on', 'youtube', 'during', 'the', 'first', 'two', 'days', 'of', 'its', 'release', '.'], ['a', 'frieze', 'of', 'stained', 'glass', 'in', 'the', 'apse', 'shows', 'characters', 'from', 'the', 'bible', 'and', 'from', 'the', 'history', 'of', 'the', 'christian', 'church', ',', 'including', 'a', 'portrait', 'of', 'bishop', 'martin', ',', 'who', 'was', 'responsible', 'for', 'construction', 'of', 'the', 'new', 'building', '.'], ['before', 'they', 'can', 'do', 'anything', 'to', 'her', ',', 'ido', 'appears', 'and', 'attacks', 'rasha', 'with', 'his', 'rocket', 'hammer', ',', 'slicing', 'off', 'his', 'left', 'arm', ',', 'but', 'getting', 'stabbed', 'in', 'the', 'shoulder', '.'], ['his', 'third', 'studio', 'album', ',', '``', '1', '8', 'months', \"''\", ',', 'was', 'released', 'on', '2', '9', 'october', '2', '0', '1', '2', '.'], ['these', 'religious', ',', 'by', 'gathering', 'these', 'lands', 'to', 'other', 'land', 'grants', ',', 'were', 'an', 'immense', 'plantation', 'marked', 'by', 'a', 'large', 'wooden', 'cross', ':', 'the', 'holy', 'cross', '.'], ['pascal', ',', 'fermat', 'and', 'huyens', 'all', 'gave', 'numerical', 'solutions', 'to', 'this', 'problem', 'without', 'detailing', 'their', 'methods', ',', 'and', 'then', 'more', 'detailed', 'solutions', 'were', 'presented', 'by', 'jakob', 'bernoulli', 'and', 'abraham', 'de', 'moivre', '.'], ['the', 'case', 'has', 'been', 'described', 'as', '``', 'a', 'pivotal', 'moment', 'in', 'the', 'canadian', 'disability', 'rights', 'movement', \"''\", 'and', 'lead', 'to', 'a', 'widespread', 're-examination', 'of', 'provincial', 'guardianship', 'laws', '.'], ['the', 'print', 'itself', 'was', 'given', 'to', 'abc', 'from', 'a', 'private', 'collector', 'living', 'in', 'australia', '.'], ['the', 'field', 'occupied', '9', '.', '2', '2', 'hectares', 'and', 'had', 'a', 'seating', 'capacity', 'of', '5', ',', '0', '0', '0', '.'], ['in', '1', '7', '8', '1', ',', 'when', 'pérez', 'was', 'only', '2', '0', 'years', 'old', ',', 'he', 'married', 'clemencia', 'hernández', '.'], ['this', 'edition', 'reconstructs', 'the', 'typography', 'originally', 'designed', 'by', 'mallarmé', 'for', 'the', 'projected', 'vollard', 'edition', 'in', '1', '8', '9', '7', 'and', 'which', 'was', 'abandoned', 'after', 'the', 'sudden', 'death', 'of', 'the', 'author', 'in', '1', '8', '9', '8', '.'], ['it', 'features', 'performances', 'by', 'brooks', ',', 'lee', 'morgan', ',', 'sonny', 'clark', ',', 'doug', 'watkins', 'and', 'art', 'blakey', '.'], ['in', 'zoology', ',', 'a', 'folivore', 'is', 'a', 'herbivore', 'that', 'specializes', 'in', 'eating', 'leaves', '.'], ['in', 'late', '1', '9', '6', '9', 'the', 'grateful', 'dead', 'began', 'segueing', '``', 'china', 'cat', 'sunflower', \"''\", 'into', '``', 'i', 'know', 'you', 'rider', \"''\", 'during', 'live', 'performances', '.'], ['his', 'first', 'recording', 'session', 'at', 'age', '1', '7', 'was', 'the', 'top', '4', '0', 'narada', 'michael', 'walden-produced', '``', 'we', 'do', \"n't\", 'have', 'to', 'take', 'our', 'clothes', 'off', \"''\", 'by', 'jermaine', 'stewart', '.'], ['a', 'canadian', 'cf-', '1', '8', 'hornet', 'fighter', 'recorded', 'an', 'official', 'victory', 'in', 'the', 'beginning', 'of', 'the', 'battle', 'against', 'the', 'iraqi', 'navy', '.'], ['the', 'lions', 'have', 'been', 'to', 'the', 'college', 'world', 'series', 'once', ',', 'in', '1', '9', '8', '6', ',', 'and', 'also', 'recorded', '9', 'ncaa', 'appearances', ',', 'and', '1', '0', 'west', 'coast', 'conference', 'championships', '(', 'three', 'championship', 'series', 'and', 'seven', 'regular', 'season', ')', '.'], ['2', '0', '1', '5', 'dance', 'gavin', 'dance', \"'s\", '``', 'instant', 'gratification', \"''\", 'debuted', 'at', '#', '3', '1', 'on', 'the', 'billboard', 'top', '2', '0', '0', 'charts', 'and', '#', '1', '8', 'on', 'overall', 'records', 'sold', '.'], ['human', 'cases', 'of', 'anthrax', 'was', 'noted', 'in', '1', '9', '8', '5', 'to', 'be', 'a', '``', 'persistent', 'problem', \"''\", 'stemming', 'from', 'cattle', 'consumption', '.'], ['the', 'winning', 'candidate', 'was', 'sam', 'katz', ',', 'whose', 'platform', 'thomas', 'had', 'criticized', '.'], ['adedoyin', 'was', 'born', 'in', 'the', 'late', '1', '8', '7', '0', 's', 'to', 'the', 'anoko', 'royal', 'family', 'of', 'ofin', ',', 'sagamu', '.'], ['in', '1', '9', '7', '1', ',', 'he', 'graduated', 'with', 'a', 'ph.d.', 'from', 'the', 'department', 'of', 'aeronautics', 'and', 'astronautics', 'at', 'the', 'massachusetts', 'institute', 'of', 'technology', 'with', 'a', 'thesis', 'entitled', ',', '``', 'extracting', 'scientific', 'information', 'from', 'spacecraft', 'tracking', 'data', '.', \"''\"], ['smuttynose', 'was', 'founded', 'in', '1', '9', '9', '4', 'in', 'portsmouth', ',', 'new', 'hampshire', '.'], ['on', 'the', 'day', 'of', 'ahmadinejad', \"'s\", 'return', ',', 'the', 'iranian', 'foreign', 'ministry', 'summoned', 'a', 'european', 'union', 'representative', 'in', 'tehran', 'to', 'protest', 'what', 'iran', 'called', 'the', 'eu', \"'s\", '``', 'double', 'standard', \"''\", 'with', 'regards', 'to', 'racism', '.'], ['people', 'perform', 'their', 'prayers', 'in', 'deep', 'brotherhood', 'here', ',', 'especially', 'in', 'mundial', 'mosque', '.'], ['the', 'county', 'is', 'subdivided', 'into', 'six', 'gminas', '(', 'two', 'urban', ',', 'one', 'urban-rural', 'and', 'three', 'rural', ')', '.'], ['the', 'garden', 'at', 'qrendi', 'is', 'located', 'at', 'the', 'corner', 'of', '``', 'triq', 'santa', 'katerina', \"''\", '(', 'st.', 'catherine', 'street', ')', 'and', '``', 'triq', 'dwardu', 'borg', \"''\", '(', 'dwardu', 'borg', 'street', ')', '.'], ['she', 'is', 'a', 'member', 'of', 'the', 'high', 'class', ',', 'core', 'family', ',', 'the', 'hortons', '.'], ['there', 'is', 'a', 'petrol', 'station', 'also', 'in', 'block', '1', '.'], ['civil', 'war', 'erupted', ',', 'and', 'the', 'race', 'factionalised', 'into', 'the', 'githyanki', 'and', 'the', 'githzerai', '(', 'and', 'in', 'the', 'spelljammer', 'campaign', 'setting', 'the', 'pirates', 'of', 'gith', ')', '.'], ['michael', 'schilling', 'was', 'appointed', 'city', 'editor', ',', 'to', 'which', 'his', 'deputies', 'were', 'timo', 'lokoschat', 'and', 'thomas', 'müller', '.'], ['the', 'olive', 'woodpecker', 'is', 'native', 'to', 'central', ',', 'east', 'and', 'southern', 'africa', ',', 'from', 'the', 'ruwenzori', 'mountains', 'to', 'the', 'western', 'cape', '.'], ['the', 'action', 'of', '1', '2', 'october', '1', '9', '5', '0', 'was', 'a', 'battle', 'fought', 'during', 'the', 'korean', 'war', '.'], ['according', 'to', 'wickrematunge', 'the', 'president', 'had', 'threatened', 'to', 'destroy', 'him', 'saying', '``', 'fuck', 'your', 'mother', ',', 'you', 'son', 'of', 'a', 'bloody', 'whore', '!', '...', 'i', 'treated', 'you', 'well', 'all', 'this', 'while', '.'], ['this', 'also', 'deprived', 'feng', \"'s\", 'rival', 'duan', 'of', 'a', 'powerful', 'supporter', '.'], ['bloglines', 'became', 'unavailable', 'in', 'early', '2', '0', '1', '5', '.'], ['units', 'range', 'in', 'grade', 'from', '0', 'to', '5', ',', 'though', 'not', 'all', 'categories', 'of', 'units', 'have', 'a', 'unit', 'available', 'for', 'every', 'grade', '.'], ['it', 'also', 'adopted', 'a', 'performance', 'rating', 'nomenclature', 'instead', 'of', 'reporting', 'the', 'real', 'clock', 'speed', ',', 'similar', 'to', 'contemporary', 'amd', 'and', 'cyrix', 'processors', '.'], ['now', 'merely', 'a', 'few', 'buildings', ',', 'south', 'spafford', 'retains', 'an', 'old', 'church', ',', 'no', 'longer', 'in', 'service', 'for', 'that', 'purpose', '.'], ['on', 'the', 'night', 'of', 'december', '3', '1', ',', '2', '0', '1', '2', ',', 'ellerbe', \"'s\", 'department', 'placed', '1', '1', 'transport', 'units', 'out', 'of', 'service', ',', 'blaming', 'excessive', 'sick', 'leave', 'taken', 'by', 'the', 'members', 'of', 'the', 'department', 'that', 'morning', '.'], ['each', 'album', 'is', 'very', 'different', 'with', 'a', 'wide', 'range', 'of', 'songs', 'and', 'sounds', '.'], ['in', 'may', '2', '0', '1', '2', ',', 'songwriter', 'and', 'producer', 'william', 'orbit', 'stated', 'that', 'the', 'best', 'songs', 'he', 'made', 'for', 'madonna', \"'s\", 'album', '``', 'mdna', \"''\", '(', '2', '0', '1', '2', ')', 'that', 'did', 'not', 'make', 'the', 'final', 'track', 'listing', 'would', 'be', 'included', 'on', '``', 'fortune', \"''\", '.'], ['grylls', 'married', 'shara', 'cannings', 'knight', 'in', '2', '0', '0', '0', '.'], ['in', 'january', '2', '0', '0', '7', ',', 'iajuddin', 'ahmed', 'stepped', 'down', 'as', 'the', 'head', 'of', 'the', 'caretaker', 'government', ',', 'under', 'pressure', 'from', 'the', 'military', '.'], ['myra', 'began', 'to', 'become', 'involved', 'within', 'her', 'community', ',', 'and', 'was', 'on', 'the', 'board', 'of', 'the', 'friends', 'association', 'of', 'service', 'for', 'the', 'elderly', '.'], ['(', 'blocks', '2', '9', ',', '4', '5', 'and', '7', '0', 'in', 'new', 'belgrade', ',', 'etc', '.', ')', '.'], ['clarkson', \"'s\", 'march', '1', '8', '8', '4', 'report', 'stated', 'that', 'due', 'to', 'the', 'prevalence', 'of', 'dysentery', 'and', 'malarial', 'fever', 'there', 'had', 'been', 'a', 'large', 'increase', 'in', 'the', 'number', 'of', 'admissions', ',', 'as', 'well', 'as', 'a', 'comparatively', 'high', 'death', 'rate', ',', 'with', 'eight', 'deaths', 'that', 'month', '.'], ['gonsalvus', 'held', 'that', 'the', 'will', 'was', 'superior', 'since', ',', 'through', 'it', ',', 'god', 'is', 'known', 'as', 'he', 'actually', 'is', 'whereas', 'the', 'intellect', 'only', 'knows', 'the', 'image', 'of', 'god', 'in', 'the', 'mind', '.'], ['a', 'barrel', 'processor', 'is', 'a', 'cpu', 'that', 'switches', 'between', 'threads', 'of', 'execution', 'on', 'every', 'cycle', '.'], ['the', 'base', 'model', 'high', 'flyer', 'features', 'an', 'mk', 'superfit', 'rip-stop', 'nylon', 'parachute-style', 'high-wing', ',', 'tricycle', 'landing', 'gear', 'and', 'a', 'single', '2', 'si', '4', '6', '0', '-f', 'engine', 'in', 'pusher', 'configuration', '.'], ['according', 'to', 'marv', ',', 'he', 'was', 'once', 'a', 'doctor', 'and', 'priest', 'serving', 'in', 'the', 'medical', 'corps', 'during', 'either', 'world', 'war', 'ii', 'or', 'the', 'korean', 'war', '.'], ['she', 'lived', 'in', 'wellington', 'for', 'a', 'period', ',', 'working', 'as', 'an', 'organiser', 'for', 'the', 'amalgamated', 'society', 'of', 'merchant', 'assistants', ',', 'and', 'was', 'interviewed', 'by', 'the', '``', 'maoriland', 'worker', \"''\", 'about', 'the', 'differences', 'between', 'the', 'labour', 'movements', 'in', 'australia', 'and', 'new', 'zealand', '.'], ['found', 'in', 'near', 'equal', 'frequencies', 'in', 'both', 'maxilla', 'and', 'mandible', '.'], ['the', 'first', ',', 'which', 'was', 'from', 'god', ',', 'was', 'that', 'of', 'adam', '.'], ['philipps', 'has', 'written', 'extensively', 'about', 'wild', 'horses', 'in', 'the', 'west', ',', 'and', 'gained', 'attention', 'in', '2', '0', '1', '2', 'when', 'u.s.', 'secretary', 'of', 'interior', 'ken', 'salazar', 'threatened', 'to', 'punch', 'him', 'while', 'philipps', 'was', 'asking', 'about', 'troubles', 'in', 'the', 'department', \"'s\", 'wild', 'horse', 'program', '.'], ['released', 'in', '1', '9', '9', '3', ',', 'it', 'was', 'produced', 'by', 'christian', 'de', 'walden', 'and', 'ralf', 'stemmann', '.'], ['it', 'was', 'revealed', 'that', '``', 'flourishing', \"''\", 'would', 'be', 'an', 'extended', 'play', 'and', 'be', 'released', 'on', 'june', '2', '4', 'at', '6', 'p.m.', 'kst', '.'], ['crowded', 'house', 'performed', 'the', 'song', '(', 'along', 'with', '``', 'mr.', 'tambourine', 'man', \"''\", 'and', '``', 'eight', 'miles', 'high', \"''\", ')', 'with', 'mcguinn', 'in', 'los', 'angeles', 'on', 'april', '7', ',', '1', '9', '8', '9', '.'], ['shortly', 'after', 'etty', 'joined', 'the', 'ra', ',', 'four', 'major', 'lectures', 'on', 'painting', 'were', 'delivered', 'by', 'john', 'opie', 'in', 'february', 'and', 'march', '1', '8', '0', '7', '.'], ['in', 'the', 'film', ',', 'eloise', 'webb', 'portrayed', 'the', '1', '0', '-year', 'old', 'ella', 'in', 'the', 'prologue', ',', 'with', 'lily', 'james', 'portrayed', 'the', 'older', 'ella', '.'], ['the', 'southern', 'half', 'of', 'the', 'welsh', 'district', 'became', 'the', '``', 'diocese', 'of', 'newport', 'and', 'menevia', \"''\", 'and', 'was', 'a', 'suffragan', 'of', 'the', 'archdiocese', 'of', 'birmingham', '.'], ['fearing', 'the', 'destruction', 'of', 'the', 'natural', 'character', 'and', 'small-town', 'charm', 'of', 'the', 'community', ',', 'during', 'the', 'early', '1', '9', '9', '0', 's', 'the', 'grosse', 'ile', 'township', 'established', 'an', '``', 'open', 'space', 'program', \"''\", ',', 'to', 'be', 'funded', 'by', 'a', 'voter-approved', 'dedicated', 'local', 'property', 'tax', 'to', 'buy', 'undeveloped', 'land', '.'], ['the', 'first', 'clash', 'between', 'a', 'ruler', 'of', 'an', 'indian', 'kingdom', 'and', 'the', 'arabs', 'took', 'place', 'in', '6', '4', '3', 'ad', ',', 'when', 'arab', 'forces', 'defeated', 'rutbil', ',', 'king', 'of', 'zabulistan', 'in', 'sistan', '.'], ['the', 'dorsal', 'surface', 'is', 'white', 'or', 'cream', ',', 'the', 'head', 'and', 'thorax', 'are', 'green', 'or', 'reddish', 'and', 'covered', 'with', 'white', 'setae', ',', 'and', 'the', 'maculations', 'are', 'greatly', 'expanded', ',', 'leaving', 'only', 'small', 'areas', 'of', 'white', 'brown', '.'], ['as', 'of', '2', '0', '0', '9', ',', 'the', 'firm', 'employed', 'more', 'than', '2', '0', '0', 'people', 'at', 'nine', 'locations', 'in', 'europe', 'and', 'served', 'more', 'than', '1', '5', ',', '0', '0', '0', 'corporate', 'customers', 'in', '5', '5', 'countries', '.'], ['the', 'gene', 'for', 'slitrk', '1', 'is', 'located', 'on', 'chromosome', '1', '3', 'q', '3', '1', '.', '1', '.'], ['the', 'book', 'is', 'both', 'an', 'introduction', 'to', 'the', 'other', 'works', 'and', 'a', 'summary', 'of', 'them', ',', 'which', ',', 'in', 'their', 'turn', ',', 'can', 'each', 'be', 'seen', 'as', 'an', 'unfolding', 'of', 'one', 'of', 'the', 'issues', 'it', 'covers', '.'], ['the', 'films', 'were', 'produced', 'by', 'imagos', 'films', ',', 'an', 'independent', 'film', 'company', 'based', 'in', 'seattle', '.'], ['in', '2', '0', '1', '6', ',', 'time', 'inc.', 'acquired', 'bizrate', 'insights', '.'], ['since', '2', '0', '1', '5', ',', 'she', 'has', 'lived', 'in', 'budapest', '.'], ['of', 'bell', \"'s\", 'death', ',', 'oregon', 'lgbtq', 'activist', 'alex', 'horsey', 'stated', ':', '``', 'sometimes', ',', 'it', 'can', 'be', 'easy', 'to', 'become', 'disconnected', 'to', 'so', 'many', 'stories', 'like', 'jadin', \"'s\", 'in', 'the', 'media', '...', 'every', 'story', '(', 'including', 'those', 'not', 'covered', 'by', 'media', 'outlets', ')', 'has', 'equal', 'importance', '...'], ['in', 'response', 'to', 'this', 'threat', ',', 'jackson', 'chose', 'to', 'go', 'on', 'the', 'offensive', ',', 'attacking', 'pope', \"'s\", 'vanguard', 'under', 'banks', ',', 'before', 'the', 'entire', 'army', 'of', 'virginia', 'could', 'be', 'brought', 'to', 'bear', 'on', 'his', 'position', 'at', 'gordonsville', '.'], ['she', 'in', 'turn', 'gave', 'the', 'nearby', 'holy', 'grail', 'temple', 'its', 'original', 'name', ',', '``', 'bass', 'tomb', \"''\", ',', 'after', 'her', 'guide', '.'], ['further', ',', 'at', 'about', 'the', 'same', 'time', 'a', 'claimed', '``', 'viking', 'horse', 'bone', \"''\", 'may', 'have', 'been', 'unearthed', 'at', 'follins', 'pond', '.'], ['it', 'documents', 'the', 'rise', 'of', 'the', 'australia', \"'s\", 'alternative', 'music', 'scene', 'and', 'how', 'that', 'success', 'attracted', 'the', 'interest', 'of', 'the', 'music', 'industry', \"'s\", 'major', 'labels', '.'], ['syntagmatic', 'relations', ',', 'in', 'contrast', ',', 'are', 'concerned', 'with', 'how', 'units', ',', 'once', 'selected', 'from', 'their', 'paradigmatic', 'sets', 'of', 'oppositions', ',', 'are', \"'chained\", \"'\", 'together', 'into', 'structural', 'wholes', '.'], ['1', 'of', 'the', 'u.s.', '``', 'billboard', \"''\", 'hot', '1', '0', '0', 'in', 'october', '.'], ['in', 'a', 'few', 'weeks', ',', 'however', ',', 'ramsay', 'saw', 'reason', 'to', 'believe', 'that', 'the', 'agreement', 'would', 'not', 'be', 'fairly', 'executed', ',', 'and', 'in', 'december', '1', '6', '3', '7', 'he', 'made', 'the', 'count', 'of', 'hanau', 'prisoner', ',', 'and', 'retook', 'possession', 'of', 'hanau', '.'], ['ten', 'days', 'of', 'experimental', 'medicine', 'successfully', 'reopened', 'the', 'artery', '.'], ['he', 'died', 'at', 'paris', 'on', '1', '3', 'july', '1', '5', '6', '6', ',', 'and', 'was', 'buried', 'at', 'bisham', ',', 'berkshire', ',', 'where', 'his', 'widow', 'erected', 'a', 'monument', 'to', 'his', 'memory', 'and', 'to', 'that', 'of', 'his', 'half-brother', 'sir', 'philip', 'hoby', '.'], ['during', 'its', 'first', 'six', 'years', ',', 'the', 'secretariat', 'reportedly', 'refused', 'to', 'say', 'how', 'many', 'corruption', 'complaints', 'it', 'had', 'processed', '.'], ['he', 'was', 'given', 'the', 'number', '2', '5', 'shirt', ',', 'previously', 'worn', 'by', 'bobby', 'zamora', '.'], ['in', 'terms', 'of', 'sales', ',', 'devi', 'is', 'the', 'most', 'popular', 'comic', 'of', 'the', 'shakti', 'line', '.'], ['since', 'outdoor', 'air', 'pollution', 'is', 'a', 'major', 'cause', 'of', 'premature', 'death', 'in', 'europe', ',', 'the', 'excessive', 'pollution', 'is', 'a', 'major', 'concern', 'for', 'asturias', '.'], ['the', 'oldest', 'evidence', 'of', 'human', 'existence', 'on', 'the', 'ryukyu', 'islands', 'is', 'from', 'the', 'stone', 'age', 'and', 'was', 'discovered', 'in', 'naha', 'and', 'yaeyama', '.'], ['according', 'to', 'plans', 'of', 'the', 'tourism', 'department', 'of', 'the', 'government', 'of', 'jharkhandd', ',', 'the', 'panchghagh', 'waterfalls', 'will', 'soon', 'get', 'a', 'kiosk', ',', 'a', 'restaurant', ',', 'toilets', ',', 'fastfood', 'joints', ',', 'lighting', 'facilities', 'and', 'a', 'watchtower', '.'], ['and', 'the', 'recent', 'development', 'of', 'minatec', ',', 'a', 'centre', 'for', 'innovation', 'in', 'micro-', 'and', 'nano-technology', ',', 'only', 'increases', 'grenoble', \"'s\", 'position', 'as', 'a', 'european', 'scientific', 'centre', '.'], ['the', 'school', 'sits', 'on', 'the', 'site', 'of', 'the', 'former', 'world', 'international', 'school', ',', 'which', 'provided', 'an', 'international', 'education', 'in', 'english', 'for', 'pupils', 'aged', '2', '½', 'to', '1', '8', '.'], ['he', 'was', 'a', 'maître', 'de', 'conférences', 'at', 'the', 'university', 'of', 'nancy', ',', 'and', 'later', 'a', 'professor', 'of', 'greek', 'archaeology', 'at', 'paris', 'i', '.'], ['because', 'they', 'accept', 'all', 'the', 'major', 'hindu', 'gods', ',', 'they', 'are', 'known', 'as', 'liberal', 'or', 'nonsectarian', '.'], ['flight', '1', '6', '9', '1', 'was', 'due', 'to', 'leave', 'for', 'odessa', 'at', '8', ':', '1', '5', 'local', 'time', ',', 'but', 'was', 'delayed', 'due', 'to', 'adverse', 'weather', 'conditions', 'at', 'both', 'odessa', 'and', 'vnukovo', '.'], ['following', 'his', 'senior', 'year', 'he', 'was', 'drafted', 'by', 'the', 'colorado', 'rockies', 'in', 'the', '4', '9', 'th', 'round', 'of', 'the', '2', '0', '0', '4', 'mlb', 'draft', '.'], ['later', 'he', 'worked', 'at', 'the', 'publishing', 'company', '``', 'estúdios', 'cor', \"''\", 'and', 'as', 'a', 'translator', ',', 'then', 'as', 'a', 'journalist', '.'], ['it', 'was', 'founded', 'by', 'a', 'non-profit', 'organization', 'known', 'as', 'the', 'women', \"'s\", 'civic', 'league', ',', 'which', 'is', 'an', 'organization', 'run', 'by', 'women', 'looking', 'to', 'better', 'baltimore', 'for', 'its', 'citizens', '.'], ['on', 'their', 'return', 'journey', 'six', 'days', 'later', 'the', 'exploration', 'party', 'camped', 'on', 'the', 'opposite', 'side', 'of', 'the', 'river', 'where', 'the', 'tributary', 'entered', 'the', 'main', 'stream', '.'], ['urie', 'played', 'the', 'central', 'character', 'in', 'the', 'stage', 'play', '``', 'wtc', 'view', \"''\", 'as', 'well', 'as', 'in', 'the', 'film', 'adaptation', '.'], ['however', ',', 'this', 'was', 'certainly', 'not', 'the', 'limit', 'of', 'the', 'soldiers', 'load', '.'], ['the', 'central', 'seminary', 'of', 'the', 'university', 'of', 'santo', 'tomas', 'was', 'designed', 'by', 'ar', '.'], ['born', '1', '8', '0', '3', 'or', '1', '8', '0', '4', ',', 'edward', 'was', 'the', 'younger', 'son', 'of', 'the', 'medical', 'doctor', 'john', 'badeley', 'and', 'his', 'wife', ',', 'charlotte', '``', 'née', \"''\", 'brackenbury', 'of', 'chelmsford', '.'], ['his', 'wife', 'florence', 'revised', 'the', 'book', 'after', 'he', 'became', 'disabled', ',', 'and', '``', 'mr.', 'popper', \"'s\", 'penguins', \"''\", 'went', 'on', 'to', 'become', 'a', 'children', \"'s\", 'classic', '.'], ['the', 'introduction', 'of', 'motorola', 'type', 'ii', 'smartzone', 'introduced', 'the', 'intellirepeater', '.'], ['he', 'then', 'tells', 'her', 'that', 'the', 'best', 'way', 'to', 'end', 'the', 'bloodshed', 'and', 'the', 'continuous', 'spread', 'of', 'the', 'curse', 'is', 'to', 'kill', 'him', '.'], ['there', 'were', '3', '3', '8', '(', '6', '.', '2', '%', ')', 'unmarried', 'opposite-sex', 'partnerships', ',', 'and', '4', '9', '(', '0', '.', '9', '%', ')', 'same-sex', 'married', 'couples', 'or', 'partnerships', '.'], ['in', 'the', 'third', 'test', ',', 'new', 'zealand', 'were', '1', '-', '1', '1', '9', 'when', 'dyer', 'claimed', 'a', 'catch', 'off', 'andrew', 'jones', 'from', 'the', 'bowling', 'of', 'craig', 'mcdermott', '.'], ['she', 'endeavored', 'to', 'introduce', 'a', 'new', 'cheap', 'oral', 'cholera', 'vaccine', 'in', 'bangladesh', 'in', 'replacement', 'of', 'dukoral', ',', 'which', 'is', 'costly', 'for', 'poor', 'people', 'and', 'cost-ineffective', 'as', 'a', 'public', 'health', 'tool', '.'], ['building', 'costs', 'were', 'estimated', 'at', '£', '3', ',', '5', '0', '0', ',', 'from', 'which', 'the', 'federation', 'of', 'synagogues', 'contributed', '£', '5', '0', '0', ',', 'private', 'members', 'raised', '£', '7', '0', '0', 'and', 'samuel', 'montagu', 'put', 'down', 'at', 'least', '£', '2', '0', '0', 'of', 'his', 'own', 'money', '.'], ['there', 'is', 'no', 'defense', 'against', 'imsi-catcher', 'based', 'eavesdropping', ',', 'except', 'using', 'end-to-end', 'call', 'encryption', ';', 'products', 'offering', 'this', 'feature', ',', 'secure', 'telephones', ',', 'are', 'already', 'beginning', 'to', 'appear', 'on', 'the', 'market', ',', 'though', 'they', 'tend', 'to', 'be', 'expensive', 'and', 'incompatible', 'with', 'each', 'other', ',', 'which', 'limits', 'their', 'proliferation', '.'], ['manizer', 'or', 'henrich', 'henrikhovitch', 'manizer', 'was', 'a', 'russian', 'ethnographer', 'who', ',', 'among', 'other', 'works', ',', 'produced', 'valuable', 'ethnographic', 'monographs', 'regarding', 'two', 'indigenous', 'peoples', 'of', 'brazil', 'in', '1', '9', '1', '4', 'and', '1', '9', '1', '5', '.'], ['the', 'antennae', 'are', 'dark', 'fuscous', 'and', 'the', 'thorax', 'is', 'dark', 'fuscous', '.'], ['in', 'the', '1', '9', '7', '0', 's', 'it', 'became', 'the', 'caulfield', 'institute', 'of', 'technology', '.'], ['the', 'rebellion', 'organized', 'a', 'group', 'to', 'sail', 'for', 'paris', ',', 'where', 'it', 'met', 'with', 'officials', 'of', 'the', 'french', 'government', '.'], ['jewison', 'wanted', 'to', 'end', 'the', 'film', 'with', 'the', 'freeze-frame', 'but', 'was', 'overruled', 'by', 'the', 'producer', '.'], ['for', 'the', 'greek', 'divisions', 'on', 'the', 'eastern', 'slopes', 'of', 'mt', '.'], ['plante', \"'s\", 'clinical', 'and', 'research', 'interests', 'include', 'psychological', 'issues', 'among', 'catholic', 'clergy', 'and', 'laypersons', ',', 'ethical', 'decision', 'making', ',', 'health', 'effects', 'related', 'to', 'spiritual', 'and', 'religious', 'involvement', ',', 'stress', 'and', 'coping', ',', 'and', 'the', 'influence', 'of', 'aerobic', 'exercise', 'and', 'perceived', 'fitness', 'on', 'psychological', 'functioning', '.'], ['the', 'first', 'movement', 'is', 'in', 'ternary', 'form', '(', 'aba′', ',', 'plus', 'a', 'coda', ')', ',', 'the', 'main', 'theme', 'of', 'which', 'begins', 'with', 'a', 'rising-scale', 'violin', 'melody', 'heavily', 'laden', 'with', 'gypsy', 'influences', ',', 'including', 'the', 'characteristic', 'dotted', 'rhythms', '.'], ['with', 'the', 'two', 'teams', 'deadlocked', 'at', 'the', 'end', 'of', 'the', 'regular', 'season', ',', 'they', 'played', 'a', 'best-of-three', 'tie-breaker', 'series', 'to', 'decide', 'the', 'championship', '.'], ['the', 'polisario', 'front', ',', 'the', 'national', 'liberation', 'movement', 'that', 'administers', 'the', 'sadr', ',', 'currently', 'controls', 'the', 'area', 'that', 'it', 'calls', 'the', 'liberated', 'territories', ',', 'a', 'strip', 'of', 'western', 'sahara', 'territory', 'east', 'of', 'the', 'moroccan', 'wall', '.'], ['new', 'york', 'city', 'scenes', 'were', 'filmed', 'on', 'the', '2', '0', 'th', 'century-fox', 'lot', 'in', 'california', '.'], ['the', 'iroquois', 'county', 'state', 'wildlife', 'area', ',', 'a', 'state', 'park', ',', 'is', 'located', 'in', 'the', 'northeast', 'corner', 'of', 'the', 'county', '.'], ['featuring', 'gayatri', 'jayaraman', 'in', 'the', 'lead', 'protagonist', 'role', ',', 'it', 'also', 'stars', 'ananth', 'nag', ',', 'shivadhwaj', ',', 'jayanthi', 'and', 'naveen', 'mayur', 'in', 'key', 'roles', '.'], ['in', '1', '8', '6', '0', ',', 'jason', 'gould', 'sold', 'his', 'business', 'to', 'the', 'union', 'forwarding', 'co.', 'which', 'was', 'principally', 'owned', 'by', 'daniel', 'crowley', '(', 'the', 'former', 'captain', 'of', 'the', '``', 'north', 'star', \"''\", ')', '.'], ['in', 'urgent', 'situations', 'where', 'a', 'council', 'decision', 'can', 'not', 'be', 'made', 'in', 'time', ',', 'he', 'is', 'empowered', 'to', 'act', 'on', 'behalf', 'of', 'the', 'whole', 'council', '.'], ['lenin', 'replied', ',', 'outlining', 'his', 'views', 'on', 'the', 'situation', 'faced', 'by', 'the', 'revolutionary', 'socialist', 'movement', '.'], ['a', 'pipe', 'organ', 'was', 'installed', 'by', 'bishop', 'and', 'son', '.'], ['some', 'of', 'his', 'literary', 'works', 'received', 'good', 'reviews', 'in', 'his', 'local', 'network', '.'], ['the', 'building', 'may', 'be', 'sold', 'in', 'order', 'for', 'the', 'state', 'to', 'recuperate', 'the', 'loss', 'brought', 'to', 'it', 'as', 'a', 'result', 'of', 'the', 'fraudulent', 'privatization', 'of', 'the', 'institute', 'for', 'alimentary', 'research', 'in', '2', '0', '0', '3', '.'], ['two', 'years', 'later', 'in', '2', '0', '0', '9', ',', 'the', 'australian', 'youth', 'climate', 'coalition', ',', 'in', 'partnership', 'with', 'the', 'university', 'of', 'western', 'sydney', ',', 'getup', 'and', 'greenpeace', ',', 'organised', 'the', 'australian', 'power', 'shift', 'conference', 'on', 'july', '1', '1', 'to', '1', '3', ',', '2', '0', '0', '9', '.'], ['the', 'same', 'year', ',', 'the', 'agriculture', 'and', 'resource', 'management', 'council', 'of', 'australia', 'and', 'new', 'zealand', 'decided', 'to', 'phase', 'out', 'remaining', 'organochlorine', 'uses', 'by', '3', '0', 'june', '1', '9', '9', '5', ',', 'with', 'the', 'exception', 'of', 'the', 'northern', 'territory', '.'], ['the', 'project', 'would', 'have', 'constructed', 'new', 'rail', 'facilities', 'to', 'connect', 'with', 'the', 'long', 'island', 'rail', 'road', ',', 'new', 'york', 'connecting', 'railroad', ',', 'and', 'a', 'proposed', 'rail', 'tunnel', 'to', 'staten', 'island', '.'], ['while', 'the', 'area', 'is', 'still', 'best', 'known', 'for', 'winter', 'activities', ',', 'today', 'the', 'resort', 'has', 'extensive', 'mountain', 'biking', 'trails', ',', 'a', 'popular', 'golf', 'course', ',', 'wedding', 'and', 'convention', 'areas', ',', 'a', 'number', 'of', 'summer', 'outdoor', 'activities', ',', 'and', 'also', 'hosts', 'a', 'grand', 'national', 'cross', 'country', 'racing', 'event', '.'], ['nurse', 'fran', 'reynolds', '(', 'carli', 'norris', ')', ',', 'who', 'grew', 'up', 'in', 'the', 'same', 'care', 'home', 'as', 'jac', ',', 'becomes', 'jealous', 'of', 'jasmine', '.'], ['today', 'the', 'route', 'forms', 'a', 'loop', 'proceeding', 'counterclockwise', 'from', 'civic', 'center', 'plaza', ',', 'and', 'its', 'length', 'is', 'closer', 'to', '.'], ['the', 'per', 'capita', 'income', 'for', 'the', 'cdp', 'was', '$', '1', '7', ',', '0', '1', '4', '.'], ['carville', 'knew', 'he', 'needed', 'to', 'bring', 'clinton', 'back', 'into', 'the', 'news', 'limelight', '.'], ['in', '1', '9', '9', '5', ',', 'mullins', 'purchased', 'wbzi', 'radio', 'in', 'xenia', ',', 'ohio', '.'], ['lake', 'celilo', 'is', 'a', 'long', 'reservoir', 'on', 'the', 'columbia', 'river', 'in', 'the', 'united', 'states', ',', 'between', 'the', 'u.s.', 'states', 'of', 'washington', 'and', 'oregon', '.'], ['in', 'february', '1', '9', '4', '6', ',', 'the', 'newly', 'appointed', 'united', 'states', 'attorney', 'general', ',', 'texan', 'tom', 'c.', 'clark', ',', 'recommended', 'a', 'pardon', 'to', 'president', 'truman', ',', 'who', 'granted', 'it', 'on', '2', '0', 'february', '.'], ['4', '-seeded', 'stan', 'wawrinka', 'in', 'the', 'quarterfinals', 'in', 'straight', 'sets', ',', 'marking', 'tsonga', \"'s\", 'best', 'result', 'at', 'the', 'tournament', 'since', 'his', '2', '0', '1', '3', 'quarterfinal', 'run', '.'], ['the', 'equipment', 'for', 'the', 'plant', ',', 'the', 'biggest', 'in', 'spain', ',', 'cost', 'more', 'than', 'seven', 'million', 'euros', ';', 'it', 'recycles', 'rubbish', 'before', 'taking', 'the', 'remainder', 'to', 'the', 'gardelegi', 'dump', '.'], ['her', 'father', 'was', 'charles', 'rochemont', 'aikin', ',', 'a', 'member', 'of', 'the', 'royal', 'college', 'of', 'surgeons', '.'], ['he', 'also', 'returned', '6', '6', 'kickoffs', 'for', '1', ',', '6', '1', '8', 'yards', 'and', '3', '1', 'punts', 'for', '3', '6', '0', 'yards', '.'], ['``', 'kadenang', 'ginto', \"''\", 'premiered', 'on', 'october', '8', ',', '2', '0', '1', '8', 'on', 'abs-cbn', '.'], ['affirmative', 'covenants', 'are', 'clauses', 'in', 'debt', 'contracts', 'that', 'require', 'firms', 'to', 'maintain', 'certain', 'levels', 'of', 'capital', 'or', 'financial', 'ratios', '.'], ['a', 'hundred', 'of', 'them', ',', 'in', 'new', 'uniforms', 'and', 'armed', 'with', 'schmeissers', ',', 'have', 'already', 'been', 'recruited', 'as', 'the', 'nucleus', 'of', 'the', 'new', 'zangaran', 'army', '.'], ['during', 'the', 'period', 'of', '1', '9', '4', '2', 'and', '1', '9', '4', '5', ',', 'hajong', 'sharecroppers', 'organized', 'in', 'the', 'kisan', 'sabha', 'struggled', 'against', 'feudal', 'domination', 'of', 'bengali', 'hindu', 'landlords', '.'], ['thnk', 'school', 'of', 'creative', 'leadership', 'is', 'an', 'international', 'leadership', 'organization', 'headquartered', 'in', 'amsterdam', '.'], ['after', 'their', 'marriage', ',', 'tilottama', 'took', 'her', 'husband', \"'s\", 'last', 'name', 'and', 'began', 'teaching', 'english', 'at', 'the', 'ngee', 'ann', 'polytechnic', 'university', 'and', 'also', 'worked', 'as', 'a', 'freelance', 'writer', '.'], ['only', 'later', ',', 'he', 'believed', ',', 'would', 'it', 'be', 'possible', 'to', 'progress', 'to', 'a', 'communist', 'system', 'where', 'distribution', 'will', 'be', 'according', 'to', 'need', ':'], ['foxx', 'achieved', 'his', 'most', 'widespread', 'fame', 'starring', 'in', 'the', 'television', 'sitcom', '``', 'sanford', 'and', 'son', ',', \"''\", 'an', 'adaptation', 'of', 'the', 'bbc', 'series', '``', 'steptoe', 'and', 'son', \"''\", '.'], ['polski', 'cukier', 'toruń', 'won', 'its', 'first-ever', 'cup', 'title', 'in', 'club', 'history', '.'], ['elkana', 'marziano', 'was', 'declared', 'the', 'winner', ',', 'with', 'tamar', 'amar', 'as', 'runner-up', '.'], ['this', 'version', 'features', 'an', 'english', 'dub', 'with', 'chow', 'dubbing', 'his', 'own', 'voice', 'and', 'bai', 'ling', 'as', 'the', 'voice', 'of', 'mui', '.'], ['the', 'fairhaven', 'branch', 'had', 'several', 'customers', 'throughout', 'its', 'existence', '.'], ['the', 'federal', 'government', 'has', 'only', 'a', 'very', 'limited', 'role', 'in', 'water', 'supply', 'and', 'sanitation', '.'], ['it', 'included', 'nemea', ',', 'zeus', 'seizing', 'aegina', ',', 'harpina', ',', 'corcyra', ',', 'thebe', ',', 'and', 'asopus', 'himself', '.'], ['donald', 'died', 'on', '2', '0', 'august', '1', '9', '6', '8', ',', 'at', 'their', 'then', 'home', 'at', 'holy', 'well', 'cottage', ',', 'snells', 'nook', 'lane', ',', 'loughborough', ';', 'he', 'was', '4', '6', '.'], ['it', 'had', 'two', 'seats', 'and', 'was', 'fitted', 'with', 'what', 'was', 'called', 'a', '``', 'democrat', \"''\", 'body', 'on', 'an', '8', 'foot', '4', 'inch', 'wheelbase', '.'], ['it', 'was', 'co-written', 'by', 'browning', 'and', 'waldemar', 'young', ',', 'writing', 'a', 'similar', 'storyline', 'to', 'their', 'earlier', '1', '9', '2', '5', 'hit', 'film', '``', 'the', 'unholy', 'three', \"''\", '.'], ['in', 'a', 'recent', 'interview', ',', 'former', 'washington', 'wizards', 'teammate', 'caron', 'butler', 'stated', 'that', '``', 'you', 'never', 'know', ',', 'and', 'that', \"'s\", 'the', 'crazy', 'thing', 'about', 'it', \"''\", 'when', 'questioned', 'if', 'there', 'was', 'going', 'to', 'be', 'a', 'trigger', 'pulled', 'in', 'the', 'incident', 'between', 'crittenton', 'and', 'arenas', '.'], ['poipcs', 'are', 'solid', 'protic', 'organic', 'salts', 'formed', 'by', 'proton', 'transfer', 'from', 'a', 'brønsted', 'acid', 'to', 'a', 'brønsted', 'base', 'and', 'in', 'essence', 'are', 'protic', 'ionic', 'liquids', 'in', 'the', 'molten', 'state', ',', 'have', 'found', 'to', 'be', 'promising', 'solid-state', 'proton', 'conductors', 'for', 'high', 'temperature', 'proton', 'exchange', 'membrane', 'fuel', 'cells', '.'], ['the', 'home', 'was', 'closed', 'in', '1', '9', '9', '8', 'for', 'reasons', 'of', 'economy', '.'], ['in', '2', '0', '1', '2', 'the', 'charity', 'announced', 'that', 'it', 'was', 'looking', 'to', 'withdraw', 'in', 'order', 'to', 'prioritise', 'other', 'challenges', 'facing', 'welsh', 'wildlife', '.'], ['after', 'elshinta', 'radio', 'was', 'bought', '(', 'possibly', 'by', 'salim', 'group', ')', 'in', 'the', 'late', '1', '9', '7', '0', 's', ',', 'soejoso', 'karsono', 'created', 'radio', 'suara', 'irama', 'indah', '.'], ['the', 'work', 'of', 'the', 'committee', 'resulted', 'in', 'the', 'passing', 'of', 'the', 'gold', 'coast', 'library', 'board', 'ordinance', 'cap', '1', '1', '8', ',', 'in', 'december', ',', '1', '9', '4', '9', ',', 'which', 'became', 'operational', 'on', 'january', '1', ',', '1', '9', '5', '0', '.'], ['described', 'by', 'emery', 'in', '1', '8', '9', '4', ',', 'the', 'species', 'is', 'endemic', 'to', 'brazil', '.'], ['core', 'companies', 'of', 'the', 'group-tata', 'motors', ',', 'tata', 'steel', ',', 'tata', 'chemicals', ',', 'tata', 'power', ',', 'tata', 'industries', ',', 'tata', 'airlines', 'and', 'trent', '-operate', 'out', 'of', 'the', 'bombay', 'house', '.'], ['he', 'initially', 'wrestled', 'under', 'the', 'ring', 'names', 'kevin', 'kross', 'and', 'killer', 'kross', ',', 'performing', 'for', 'impact', 'wrestling', ',', 'lucha', 'libre', 'aaa', 'worldwide', '(', 'aaa', ')', ',', 'major', 'league', 'wrestling', ',', 'and', 'multiple', 'promotions', 'on', 'the', 'independent', 'circuit', '.'], ['simone', 'tried', 'to', 'break', 'it', 'up', 'and', 'ended', 'up', 'falling', 'to', 'the', 'floor', ',', 'suffering', 'a', 'miscarriage', '.'], ['a', 'doorway', 'at', 'the', 'eastern', 'end', 'of', 'the', 'supermarket', 'was', 'built', 'as', 'well', '.'], ['he', 'was', 'elected', 'to', 'the', 'house', 'of', 'commons', 'for', 'dunwich', 'in', '1', '7', '6', '8', ',', 'a', 'seat', 'he', 'held', 'until', '1', '7', '9', '0', '.'], ['despite', 'a', 'lukewarm', 'response', 'to', 'their', 'debut', 'performance', 'in', 'january', '1', '9', '9', '9', ',', 'g.o.d', 'went', 'on', 'to', 'establish', 'themselves', 'as', 'one', 'of', 'the', 'most', 'popular', 'first-generation', 'k-pop', 'groups', '.'], ['many', 'mass-produced', '1', '9', 'th', 'century', 'units', 'only', 'bricked', 'the', 'building', \"'s\", 'façade', ',', 'with', 'the', 'building', \"'s\", 'largely', 'being', 'built', 'on', 'mass-produced', 'timbers', 'filled', 'with', 'furring', 'strips', ',', 'lath', 'and', 'stucco', ',', 'or', 'veneer', '.'], ['luteuthis', 'shuishi', 'is', 'a', 'species', 'of', 'octopus', 'that', 'lives', 'in', 'the', 'south', 'china', 'sea', ',', 'which', 'is', 'known', 'only', 'from', 'one', 'female', 'specimen', 'collected', 'at', 'a', 'depth', 'of', '7', '6', '7', 'meters', '.'], ['fortunately', ',', 'her', 'eyes', 'had', 'recovered', 'four', 'days', 'later', '.'], ['he', 'has', 'also', 'played', 'for', 'the', 'tokyo', 'yakult', 'swallows', 'of', 'nippon', 'professional', 'baseball', '(', 'npb', ')', '.'], ['the', 'negative', 'momentum', 'is', 'applied', 'to', 'explain', 'negative', 'refraction', ',', 'inverse', 'doppler', 'effect', 'and', 'reverse', 'cherenkov', 'effect', 'observed', 'in', 'a', 'negative', 'index', 'metamaterial', '.'], ['apparently', 'i', 'made', 'an', 'horrific', 'horror-film', ',', 'but', 'should', \"n't\", 'a', 'good', 'horror', 'film', 'be', 'horrific', '?'], ['he', 'later', 'represented', 'texas', 'in', 'the', 'second', 'confederate', 'congress', 'in', '1', '8', '6', '4', 'and', '1', '8', '6', '5', 'until', 'the', 'end', 'of', 'the', 'war', '.'], ['in', '2', '0', '1', '6', ',', 'an', 'official', 'funeral', 'of', 'the', 'town', \"'s\", 'defenders', 'from', '1', '6', '5', '6', 'took', 'place', ',', 'after', 'their', 'remains', 'were', 'discovered', 'during', 'archaeological', 'works', '.'], ['carter', 'g.', 'woodson', 'regional', 'library', 'is', 'one', 'of', 'two', 'regional', 'libraries', 'in', 'the', 'chicago', 'public', 'library', 'system', 'in', 'chicago', ',', 'in', 'the', 'u.s.', 'state', 'of', 'illinois', ',', 'serving', 'as', 'the', 'hub', 'for', 'the', 'approximately', '2', '4', 'branch', 'libraries', 'of', 'the', 'south', 'district', '.'], ['hispanic', 'or', 'latino', 'people', 'represented', '2', '%', 'of', 'the', 'population', '.'], ['it', 'is', 'also', 'true', 'that', 'hart', 'worked', 'hard', 'to', 'keep', 'his', 'pre-transition', 'identity', 'secret', ',', 'and', 'would', 'hardly', 'have', 'sought', 'to', 'publicly', 'claim', 'a', 'trans', 'identity', '.'], ['the', 'delegates', 'from', 'hong', 'kong', 'and', 'macau', 'are', 'elected', 'via', 'an', 'electoral', 'college', 'rather', 'than', 'by', 'popular', 'vote', ',', 'but', 'do', 'include', 'significant', 'political', 'figures', 'who', 'are', 'residing', 'in', 'the', 'regions', '.'], ['akercocke', 'revealed', 'a', 'surprise', 'reunion', 'as', 'a', 'band', 'in', '2', '0', '1', '6', ',', 'featuring', 'original', 'guitarist', 'paul', 'scanlan', 'returning', 'to', 'the', 'band', 'along', 'with', 'newcomer', 'nathanael', 'underwood', 'on', 'bass', 'guitar', '.'], ['left', 'with', 'no', 'choice', 'megha', 'gives', 'in', 'to', 'him', 'due', 'to', 'which', 'not', 'only', 'her', 'job', 'is', 'saved', 'but', 'also', 'a', 'promotion', 'is', 'given', 'to', 'her', '.'], ['parentheses', 'enclose', 'values', 'that', 'are', 'redundant', 'according', 'to', 'the', 'phonological', 'rules', ';', 'these', 'values', 'simply', 'represent', 'the', 'results', 'of', 'these', 'rules', '.'], ['gsn', 'reran', 'the', 'entire', '1', '9', '9', '7', '-', '9', '8', 'season', 'in', '2', '0', '1', '5', '.'], ['``', 'de', 'officiis', \"''\", 'continues', 'to', 'be', 'one', 'of', 'the', 'most', 'popular', 'of', 'cicero', \"'s\", 'works', 'because', 'of', 'its', 'style', ',', 'and', 'because', 'of', 'its', 'depiction', 'of', 'roman', 'political', 'life', 'under', 'the', 'republic', '.'], ['the', 'average', 'household', 'size', 'was', '2', '.', '5', '6', 'and', 'the', 'average', 'family', 'size', 'was', '3', '.', '0', '9', '.'], ['sepia', 'bandensis', ',', 'commonly', 'known', 'as', 'the', 'stumpy-spined', 'cuttlefish', 'or', 'dwarf', 'cuttlefish', ',', 'is', 'a', 'species', 'of', 'cuttlefish', '.'], ['a', 'larva', \"'s\", 'head', 'is', 'pale', 'brown', 'striped', 'with', 'darker', 'brown', '.'], ['at', 'the', 'time', 'of', 'filming', 'the', 'source', 'was', 'considered', 'to', 'be', 'the', 'shannon', 'pot', 'in', 'co.', 'cavan', 'as', 'told', 'by', 'folklore', 'though', 'creedon', 'meets', 'with', 'hyrdrogeologists', 'who', 'perform', 'a', 'dye', 'tracing', 'experiment', 'to', 'find', 'the', 'true', 'source', 'of', 'the', 'river', '.'], ['due', 'to', 'different', 'stories', 'from', 'the', 'band', 'members', ',', 'it', 'is', 'unclear', 'whether', 'he', 'was', 'fired', 'or', 'left', 'the', 'band', 'of', 'his', 'own', 'accord', '.'], ['he', 'was', 'educated', 'at', 'sherborne', 'school', 'in', 'dorset', ',', 'before', 'taking', 'a', 'ba', 'in', '1', '9', '5', '1', 'at', 'queens', \"'\", 'college', ',', 'cambridge', ',', 'where', 'he', 'was', 'a', 'major', 'scholar', 'and', 'was', 'later', 'an', 'honorary', 'fellow', '.'], ['nunastar', 'announced', 'at', 'the', 'time', 'that', 'it', 'planned', 'significant', 'renovations', '.'], ['the', 'terms', '``', 'hydraulic', 'lime', \"''\", 'and', '``', 'hydrated', 'lime', \"''\", 'are', 'quite', 'similar', 'and', 'may', 'be', 'confused', 'but', 'are', 'not', 'necessarily', 'the', 'same', 'material', ':', 'hydrated', 'lime', 'is', '``', 'any', \"''\", 'lime', 'which', 'has', 'been', 'slaked', 'whether', 'it', 'sets', 'through', 'hydration', ',', 'carbonation', ',', 'or', 'both', '.'], ['he', 'was', 'listed', 'as', 'one', 'of', '1', '2', '``', 'promising', 'new', 'actors', 'of', '1', '9', '9', '1', '``', 'in', '``', 'john', 'willis', \"'\", 'screen', 'worlds', 'vol', '.'], ['haqq', 'ad-din', 'ruled', 'for', 'ten', 'years', ',', 'until', 'he', 'was', 'killed', 'in', 'action', 'against', 'soldiers', 'of', 'the', 'ethiopian', 'emperor', '.'], ['carter', 'has', 'served', 'as', 'a', 'member', 'of', 'the', 'executive', 'committee', 'of', 'cabinet', 'for', 'the', 'government', 'of', 'south', 'australia', '.'], ['as', 'of', '2', '0', '1', '8', ',', 'china', 'is', 'the', 'most', 'popular', 'country', 'in', 'asia', 'for', 'international', 'students', ',', 'and', 'the', 'second', 'most', 'popular', 'education', 'powerhouse', 'in', 'the', 'world', 'after', 'the', 'united', 'states', '.'], ['the', 'main', 'languages', 'of', 'this', 'village', 'are', 'hindi', 'and', 'awadhi', '.'], ['following', 'the', 'death', 'of', 'close', 'friend', 'and', 'former', 'teammate', 'joseph', 'gilliam', 'in', '2', '0', '1', '8', ',', 'russell', 'suffered', 'from', 'a', 'severe', 'bout', 'of', 'depression', '.'], ['members', 'of', 'the', 'royal', 'guard', 'regiment', 'often', 'wear', 'the', 'flowing', 'white', 'thaub', '(', 'robe', ')', 'and', 'white', 'kaffiyah', 'and', 'qhutrah', '(', 'traditional', 'arab', 'headgear', 'of', 'skullcap', 'and', 'scarf', ')', '.'], ['journalist', 'sandhya', '(', 'madhumitha', ')', 'comes', 'from', 'india', 'for', 'a', 'cover', 'story', 'on', 'the', 'ethnic', 'strife', ',', 'but', 'the', 'witnessing', 'of', 'every', 'possible', 'cruelty', 'inflicted', 'on', 'the', 'people', 'is', 'too', 'much', 'to', 'take', '.'], ['the', 'first', 'two', 'lengths', 'were', 'swum', 'using', 'the', 'butterfly', 'stroke', ',', 'the', 'second', 'pair', 'with', 'the', 'backstroke', ',', 'the', 'third', 'pair', 'of', 'lengths', 'in', 'breaststroke', ',', 'and', 'the', 'final', 'two', 'were', 'freestyle', '.'], ['he', 'has', 'been', 'the', 'official', 'styling', 'partner', 'for', 'miss', 'india', 'and', 'holds', 'the', 'limca', 'record', 'for', '4', '1', '0', 'nonstop', 'haircuts', 'in', '2', '4', 'hours', '.'], ['anti-spanish', 'passions', 'in', 'new', 'orleans', 'reached', 'their', 'highest', 'level', 'after', 'two', 'years', 'of', 'spanish', 'administration', 'in', 'louisiana', '.'], ['robert', 'e.', 'lee', 'wanted', 'the', 'old', 'model', '1', '8', '4', '1', 'bronze', 'guns', 'to', 'be', 'melted', 'down', 'and', 'recast', 'into', '1', '2', '-pounder', 'napoleons', '.'], ['as', 'the', 'first', 'open', 'trading', 'port', 'as', 'well', 'as', 'the', 'most', 'prosperous', 'city', 'before', 'the', '2', '0', 'th', 'century', ',', 'shanghai', 'possessed', 'sufficient', 'resources', 'for', 'the', 'development', 'of', 'chinese', 'movies', '.'], ['it', 'is', 'houghton', \"'s\", 'seventh', 'album', ',', 'his', 'sixth', 'with', 'integrity', ',', 'and', 'his', 'fourth', 'live', 'album', '.'], ['in', 'what', 'history', 'professor', 'donald', 'e.', 'reynolds', 'termed', '``', 'the', 'most', 'statesmanlike', 'address', 'of', 'his', 'entire', 'presidency', \"''\", ',', 'gee', 'informed', 'all', 'college', 'employees', 'of', 'imminent', 'integration', 'at', 'a', 'meeting', ',', 'stressing', 'his', 'expectation', 'that', 'everyone', 'would', 'comply', 'entirely', 'with', 'the', 'new', 'policy', '.'], ['the', 'position', 'proved', 'difficult', ';', 'a', 'long-distance', 'joint-ownership', 'agreement', 'gave', 'the', 'hungarian', 'footballer', 'ferenc', 'puskás', 'control', 'over', 'the', 'san', 'francisco', 'section', 'of', 'the', 'squad', ',', 'while', 'robson', 'took', 'care', 'of', 'the', 'vancouver', 'squad', '.'], ['national', 'information', 'standards', 'organization', '(', 'niso', ')', ',', 'an', 'american', 'library', 'standards', 'body', '.'], ['susquehanna', 'township', 'high', 'school', '(', 'sths', ')', 'is', 'a', 'mid-sized', ',', 'public', 'high', 'school', 'located', 'in', 'harrisburg', ',', 'pennsylvania', 'serving', 'students', 'from', 'susquehanna', 'township', '.'], ['it', 'was', 'released', 'in', 'the', 'united', 'kingdom', 'on', '3', '1', 'july', '2', '0', '2', '0', 'by', 'lionsgate', '.'], ['walker', 'is', 'featured', 'in', '``', 'the', 'advocate', \"''\", '′s', '``', 'forty', 'under', '4', '0', '``', 'issue', 'of', 'june/july', '2', '0', '0', '9', 'as', 'one', 'of', 'the', 'most', 'influential', '``', 'out', \"''\", 'media', 'professionals', '.'], ['wet', 'nursing', 'used', 'to', 'be', 'commonplace', 'in', 'the', 'united', 'kingdom', '.'], ['on', 'the', 'september', '2', 'episode', 'of', '``', 'impact', 'wrestling', \"''\", ',', 'love', 'and', 'madison', 'rayne', 'came', 'to', 'the', 'aid', 'of', 'velvet', 'sky', ',', 'who', 'was', 'being', 'beaten', 'down', 'by', 'the', 'dollhouse', 'members', 'rebel', ',', 'jade', 'and', 'marti', 'bell', ',', 'turning', 'face', 'and', 'reforming', 'the', 'beautiful', 'people', 'in', 'the', 'process', '.'], ['the', 'swimwear', 'for', 'the', 'finals', 'was', 'designed', 'by', 'uae-based', 'couture', 'label', 'amato', 'couture', 'by', 'filipino', 'designer', 'furne', 'one', 'in', 'collaboration', 'with', 'luxury', 'swimwear', 'amari', 'swim', '.'], ['with', 'only', 'nine', 'skaters', 'and', 'a', 'goalie', 'at', 'the', 'game', ',', 'the', 'goaltender', 'for', 'the', 'blades', 'quit', 'the', 'team', 'at', 'the', 'end', 'of', 'the', 'second', 'period', '.'], ['it', 'offers', 'flexible', 'schedules', 'and', 'childcare', 'services', 'for', 'students', 'with', 'children', '.'], ['however', ',', 'two', 'studies', ',', 'one', 'in', '1', '9', '9', '7', 'and', 'another', 'in', '1', '9', '9', '9', 'found', '``', '[', 'no', ']', 'adverse', 'health', 'effects', 'which', 'may', 'have', 'resulted', 'from', 'environmental', 'exposures', '.', \"''\"], ['bashahrul', 'abu', 'bakar', '(', 'born', '6', 'april', '1', '9', '9', '0', 'in', 'kedah', ')', 'is', 'a', 'malaysian', 'footballer', 'formerly', 'playing', 'for', 'sime', 'darby', 'f.c', '.'], ['the', 'typical', 'intermediate', 'rings', 'are', 'designed', 'for', 'wind', 'bending', 'stresses', ',', 'reduced', 'as', 'required', 'by', 'the', 'yield', 'stress', 'reduction', 'at', 'working', 'temperatures', '.'], ['but', 'unresolved', 'issues', 'could', 'stall', 'audit', 'of', 'kg', 'basin', 'again', '.'], ['the', 'show', \"'s\", '``', 'gruelling', 'schedule', \"''\", ',', 'involving', 'shooting', 'for', '4', '7', 'weeks', 'a', 'year', ',', 'had', 'made', 'it', 'difficult', 'for', 'his', 'growing', 'family', 'of', 'three', 'young', 'children', '.'], ['as', 'the', 'growers', 'began', 'buying', 'onions', ',', 'siegel', 'and', 'kosuga', 'accumulated', 'short', 'positions', 'on', 'a', 'large', 'number', 'of', 'onion', 'contracts', '.'], ['born', 'the', 'son', 'of', 'sir', 'john', 'hall', ',', '5', 'th', 'baronet', ',', 'hall', 'was', 'commissioned', 'as', 'an', 'ensign', 'in', 'the', 'coldstream', 'guards', 'on', '2', 'august', '1', '8', '5', '4', '.'], ['upregulation', 'of', 'gsh', 'may', 'be', 'protective', 'against', 'the', 'oxidative', 'and', 'neurotoxic', 'effects', 'of', 'oligomeric', 'aβ', '.'], ['on', '9', 'january', '2', '0', '1', '0', ',', 'kim', 'made', 'his', 'first', 'international', 'appearance', 'for', 'south', 'korea', 'in', 'a', 'friendly', 'match', 'against', 'zambia', 'and', 'participated', 'in', 'the', '2', '0', '1', '0', 'world', 'cup', 'later', 'that', 'year', '.'], ['oral', 'arguments', 'were', 'heard', 'in', 'december', '1', '9', '9', '3', '.'], ['on', '3', '1', 'august', '2', '0', '1', '6', ',', 'ziad', 'jneid', 'and', 'rabih', 'jneid', 'were', 'convicted', 'and', 'sentenced', 'by', 'the', 'perth', 'district', 'court', 'after', 'both', 'pleading', 'guilty', 'before', 'trial', 'for', 'their', 'roles', 'in', 'the', 'supply', 'of', 'almost', 'and', 'almost', ',', 'respectively', ',', 'of', 'methylamphetamine', 'in', '2', '0', '1', '4', '.'], [')', ',', 'he', 'arrested', 'paige', 'on', 'their', 'wedding', 'day', ',', 'baby', 'caitlin', 'died', ',', 'his', 'best', 'friend', 'died', ',', 'and', 'his', 'sister', 'slept', 'with', 'elly', 'days', 'before', 'their', 'wedding', '.'], ['in', '1', '9', '4', '0', ',', 'he', 'formed', 'a', 'partnership', 'with', 'robert', 'allan', 'jacobs', ',', 'the', 'son', 'of', 'architect', 'harry', 'allan', 'jacobs', '.'], ['his', 'plan', 'to', 'leave', 'on', 'the', 'pretext', 'of', 'taking', 'another', '``', 'hajj', \"''\", 'was', 'stymied', 'by', 'the', 'sultan', '.'], ['in', 'the', 'second', 'round', ',', 'the', 'second', 'team', 'plays', 'first', 'and', 'chooses', 'the', 'first', 'category', '.'], ['only', '8', '%', 'of', 'prisoners', 'in', 'russia', 'are', 'female', ',', 'and', '0', '.', '2', '%', 'are', 'juvenile', 'offenders', '.'], ['this', 'was', 'called', 'partisan', 'press', 'and', 'was', 'not', 'unbiased', 'in', 'opinion', '.'], ['the', 'stems', 'are', 'usually', '1', '5', 'to', '3', '0', 'cm', 'in', 'length', 'but', 'are', 'sometimes', 'much', 'longer', '.'], ['he', 'portrayed', 'the', 'main', 'character', 'in', 'the', '2', '0', '1', '0', 'film', '``', 'dog', 'pound', \"''\", '.'], ['his', 'eyes', 'lit', 'and', 'he', 'ended', 'up', 'putting', 'us', 'on', 'the', 'bidding', 'list', '.'], ['the', 'album', '``', 'chairete', 'daimones', \"''\", '(', 'ancient', 'greek', 'for', '``', 'welcome', ',', 'daemons', \"''\", ')', 'was', 'released', 'in', '2', '0', '1', '9', 'and', 'titled', 'for', 'a', 'libation', 'invocation', 'revived', 'by', 'nietzsche', 'in', '1', '8', '7', '1', '.'], ['the', 'four-stage', 'tower', 'is', 'supported', 'by', 'buttresses', 'and', 'has', 'bands', 'of', 'blank', 'quatrefoils', ',', 'and', 'is', 'surmounted', 'by', 'battlements', 'with', 'pinnacles', '.'], ['he', 'was', 'appointed', 'dean', 'of', 'st', 'george', \"'s\", 'hospital', 'medical', 'school', 'in', '1', '9', '8', '8', ',', 'subsequently', 'becoming', 'its', 'principal', 'until', 'his', 'retirement', 'in', '1', '9', '9', '6', '.'], ['this', 'variant', 'is', 'no', 'longer', 'supported', ';', 'more', 'information', 'can', 'be', 'found', 'on', 'the', 'weblink', 'below', '.'], ['its', 'eye', 'also', 'became', 'well-defined', 'and', 'the', 'system', 'became', 'compact', 'in', 'size', '.'], ['the', 'same', 'day', ',', 'pakistan', 'allowed', 'thai', 'airways', 'to', 'resume', 'its', 'flight', 'operation', 'for', 'islamabad', 'to', 'bring', 'back', '1', '7', '5', 'pakistanis', 'stranded', 'in', 'bangkok', ',', 'thailand', '.'], ['organizational', 'behavior', 'is', 'the', 'application', 'of', 'behavioral', 'science', 'in', 'a', 'business', 'setting', '.'], ['however', ',', 'it', 'is', 'now', 'possible', 'to', 'read', 'and', 'participate', 'in', 'usenet', 'newsgroups', 'to', 'a', 'large', 'degree', 'using', 'ordinary', 'web', 'browsers', 'since', 'most', 'newsgroups', 'are', 'now', 'copied', 'to', 'several', 'web', 'sites', '.'], ['the', 'abnormalities', 'concentrate', 'the', 'wave', 'energy', 'in', 'a', 'small', 'area', ',', 'where', 'the', 'ice', 'is', 'eroded', 'to', 'form', 'a', 'v-shaped', 'channel', '.'], ['during', 'his', 'remaining', 'time', 'at', 'hertford', ',', 'waugh', 'missed', 'few', 'opportunities', 'to', 'ridicule', 'cruttwell', '.'], ['with', 'any', 'pixel', 'on', 'an', 'oled', 'screen', 'effectively', 'being', 'a', 'notification', 'led', ',', 'software', 'can', 'be', 'used', 'to', 'customize', 'its', 'appearance', '.'], ['kara', 'manning', 'in', 'a', '1', '9', '9', '3', '``', 'rolling', 'stone', \"''\", 'review', 'described', 'the', 'song', 'as', '``', 'replete', 'with', 'wistful', 'vocals', 'encircling', 'deceptively', 'simple', 'melodies', '.', \"''\"], ['on', '1', '3', 'march', ',', '``', 'ub-', '1', '6', '``', ',', 'now', 'under', 'the', 'command', 'of', 'oblt', '.'], ['by', '1', '9', '1', '4', ',', 'a', '2', 'ft', 'gauge', 'tramway', 'had', 'been', 'built', 'between', 'the', 'lower', 'chalk', 'pit', 'and', 'the', 'lime', 'kiln', 'at', '.'], ['about', '9', '.', '2', '%', 'of', 'families', 'and', '1', '1', '.', '9', '%', 'of', 'the', 'population', 'were', 'below', 'the', 'poverty', 'line', ',', 'including', '1', '4', '.', '0', '%', 'of', 'those', 'under', 'age', '1', '8', 'and', '7', '.', '3', '%', 'of', 'those', 'age', '6', '5', 'or', 'over', '.'], ['aron', 'warner', ',', 'the', 'producer', 'of', '``', 'tank', 'girl', \"''\", ',', 'suggested', 'he', 'join', 'dreamworks', 'animation', '.'], ['after', 'this', 'prophecy', 'failed', 'to', 'materialise', ',', 'with', 'donald', 'trump', 'winning', 'the', 'election', ',', 'joshua', 'stated', 'that', 'he', 'was', 'referring', 'to', 'clinton', \"'s\", 'win', 'in', 'the', 'popular', 'vote', 'and', 'any', 'misinterpretation', 'was', 'due', 'to', 'a', 'lack', 'of', '``', 'spiritual', 'understanding', \"''\", '.'], ['when', 'taking', 'their', 'seats', 'at', 'the', 'next', 'session', 'in', 'january', '1', '8', '1', '6', ',', 'in', 'three', 'districts', 'there', 'was', 'a', 'number', 'of', 'senators', 'differing', 'from', 'the', 'apportionment', ',', 'which', 'was', 'corrected', 'at', 'the', 'election', 'in', '1', '8', '1', '6', '.'], ['early', 'forms', 'of', 'the', 'word', 'in', 'english', 'included', '``', 'uskebeaghe', \"''\", '(', '1', '5', '8', '1', ')', ',', '``', 'usquebaugh', \"''\", '(', '1', '6', '1', '0', ')', ',', '``', 'usquebath', \"''\", '(', '1', '6', '2', '1', ')', ',', 'and', '``', 'usquebae', \"''\", '(', '1', '7', '1', '5', ')', '.'], ['the', 'capital', 'shares', 'bear', 'greater', 'risk', 'than', 'the', 'preferred', 'shares', 'in', 'the', 'event', 'that', 'the', 'value', 'of', 'the', 'underlying', 'basket', 'of', 'conventional', 'shares', 'falls', 'in', 'value', '.'], ['edgar', 'allan', 'poe', \"'s\", 'only', 'novel', ',', '``', 'the', 'narrative', 'of', 'arthur', 'gordon', 'pym', 'of', 'nantucket', \"''\", '(', '1', '8', '3', '8', ')', 'has', 'a', 'minor', 'character', 'richard', 'parker', ',', 'who', 'is', 'cannibalised', 'by', 'the', 'shipwreck', \"'s\", 'survivors', '.'], ['fort', 'cooper', 'state', 'park', 'is', 'a', '7', '1', '0', '-acre', 'historic', 'site', 'in', 'inverness', ',', 'florida', ',', 'united', 'states', '.'], ['and', 'was', 'strong', 'supporter', 'of', 'the', 'republican', 'party', 'serving', 'on', 'various', 'campaigns', 'and', 'committees', '.'], ['i.', 'i.', 'maslennikov', ',', 'commander', 'of', 'the', 'front', \"'s\", 'northern', 'group', 'of', 'forces', ',', 'received', 'an', 'order', 'from', 'the', '``', 'stavka', \"''\", 'which', 'stated', ',', 'in', 'part', ':', 'this', 'brought', 'the', 'division', 'under', 'the', 'command', 'of', 'the', '4', '4', 'th', 'army', '.'], ['about', 'the', 'same', 'time', ',', 'the', 'california', 'businessman', 'w.', 'leslie', 'comyn', 'took', 'the', 'initiative', 'to', 'build', 'ferrocement', 'ships', 'on', 'his', 'own', '.'], ['william', 'shakespeare', \"'s\", '``', 'hamlet', \"''\", ',', 'while', 'not', 'actually', 'forbidden', ',', 'was', 'denounced', 'for', '``', 'flabbiness', 'of', 'soul', \"''\", '.'], ['the', 'national', 'agency', 'for', 'the', 'management', 'of', 'seized', 'assets', '(', 'anabi', ')', 'has', 'placed', 'the', 'building', 'for', 'sale', 'on', 'its', 'website', '.'], ['the', '3', '7', 'th', 'ranger', 'battalion', ',', 'already', 'in', 'da', 'nang', 'for', 'rest', 'and', 'retraining', ',', 'moved', 'to', 'hieu', 'duc', 'district', 'on', '2', '0', 'july', '.'], ['peter', 'roland', 'mikael', 'lönn', '(', 'born', '1', '3', 'july', '1', '9', '6', '1', ')', 'is', 'a', 'swedish', 'former', 'footballer', 'who', 'played', 'as', 'a', 'defender', '.'], ['the', 'landed', 'interests', 'managed', 'to', 'ensure', 'that', 'the', 'political', 'weight', 'of', 'numbers', 'was', 'skewed', 'disproportionately', 'in', 'their', 'favour', '.'], ['the', 'cotton', 'club', 'had', 'already', 'featured', 'duke', 'ellington', 'and', 'cab', 'calloway', ',', 'who', 'won', 'their', 'first', 'widespread', 'fame', 'from', 'their', 'inventive', 'shows', 'for', 'the', 'cotton', 'club', \"'s\", 'all-white', 'patrons', '.'], ['in', '1', '9', '8', '7', ',', 'when', 'kenosha', 'mayor', 'john', 'd.', 'bilotti', 'resigned', 'to', 'accept', 'an', 'appointment', 'in', 'the', 'wisconsin', 'department', 'of', 'revenue', ',', 'the', 'city', 'council', 'elected', 'dorff', 'to', 'act', 'as', 'interim', 'mayor', 'until', 'the', '1', '9', '8', '8', 'election', '.'], ['note', ':', 'any', 'black', 'top', 'management', 'employees', 'that', 'are', 'counted', 'for', 'the', 'management', '&', 'amp', ';', 'control', 'score', 'can', 'not', 'be', 'included', 'in', 'the', 'calculation', 'of', 'the', 'employment', 'equity', '(', 'statement', '8', '0', '3', ')', 'score', '.'], ['wysoka', 'is', 'a', 'village', 'in', 'the', 'administrative', 'district', 'of', 'gmina', 'jordanów', ',', 'within', 'sucha', 'county', ',', 'lesser', 'poland', 'voivodeship', ',', 'in', 'southern', 'poland', '.'], ['on', 'june', '1', '2', ',', '2', '0', '1', '9', ',', 'it', 'was', 'reported', 'that', 'chungha', 'was', 'returning', 'with', 'new', 'music', 'after', 'five', 'months', 'since', 'the', 'release', 'of', 'her', 'single', '``', 'got', 'ta', 'go', \"''\", '.'], ['rabbi', 'leder', 'joined', 'wilshire', 'boulevard', 'temple', 'in', '1', '9', '8', '7', ',', 'and', 'succeeded', 'rabbi', 'harvey', 'j', '.'], ['the', 'race', 'is', 'named', 'for', 'opening', 'verse', ',', 'winner', 'of', 'the', '1', '9', '9', '1', 'breeders', \"'\", 'cup', 'mile', 'at', 'churchill', 'downs', ',', 'and', 'was', 'run', 'as', 'the', 'opening', 'verse', 'handicap', 'from', 'inception', 'through', '2', '0', '0', '8', '.'], ['the', 'marathon', 'is', 'organized', 'by', 'the', 'same', 'team', 'that', 'made', 'the', 'aviva', 'ironman', '7', '0', '.', '3', 'singapore', 'triathlon', 'possible', '.'], ['in', '2', '0', '1', '4', ',', 'a', 'feasibility', 'study', 'was', 'carried', 'out', 'by', 'the', 'national', 'aerospace', 'laboratory', 'of', 'amsterdam', ',', 'for', 'use', 'of', 'pulsars', 'in', 'place', 'of', 'gps', 'in', 'navigation', '.'], ['a', 'solemn', 'mass', 'was', 'held', 'at', 'st.', 'matthew', \"'s\", 'to', 'celebrate', 'mcnally', \"'s\", 'installation', 'and', 'creation', 'of', 'the', 'parish', '.'], ['interactive', 'application', 'security', 'testing', '(', 'iast', ')', 'is', 'a', 'solution', 'that', 'assesses', 'applications', 'from', 'within', 'using', 'software', 'instrumentation', '.'], ['in', 'august', '1', '9', '9', '2', ',', 'the', 'recreation', 'vehicles', 'and', 'rescue', 'vehicles', 'brand', '``', 'weinsberg', \"''\", 'was', 'sold', 'to', 'tabbert', 'industrie', 'ag', '(', 'later', 'named', 'knaus', 'tabbert', ')', '.'], ['he', 'also', 'joined', 'a', 'lithuanian', 'choir', 'led', 'by', 'česlovas', 'sasnauskas', ',', 'organist', 'at', 'the', 'church', 'of', 'st.', 'catherine', '.'], ['he', 'also', 'served', 'under', 'nelson', 'rockefeller', 'in', 'the', 'blockade', 'and', 'supply', 'branch', 'of', 'the', 'latin', 'american', 'division', 'of', 'the', 'board', 'of', 'economic', 'warfare', 'during', 'world', 'war', 'ii', '.'], ['instead', 'of', 'archaeological', 'evidence', ',', 'alexandru', 'madgearu', 'highlights', 'the', 'importance', 'of', 'the', 'linguistic', 'traces', 'of', 'continuity', ',', 'referring', 'to', 'the', 'romanian', 'river', 'names', 'in', 'the', 'apuseni', 'mountains', 'and', 'the', 'preservation', 'of', 'archaic', 'latin', 'lexical', 'elements', 'in', 'the', 'local', 'dialect', '.'], ['similar', 'material', ',', 'but', 'he', \"'s\", 'really', 'being', 'innovative', 'with', 'some', 'of', 'the', 'music', 'that', 'you', 'have', \"n't\", 'heard', 'before', ',', 'taking', 'pieces', 'of', 'other', 'genres', 'and', 'integrating', 'them', 'into', 'pop', 'and', 'r', '&', 'amp', ';', 'b', ',', 'which', 'i', 'think', 'is', 'really', 'cool', '.'], ['drunkenness', ',', 'hopeless', 'indebtedness', ',', 'and', 'a', 'desire', 'to', 'borrow', 'were', 'characteristics', 'that', 'greatly', 'disturbed', 'him', '.'], ['alarmed', 'by', 'his', 'behavior', ',', 'pakistan', 'leader', 'general', 'zia', 'warned', 'hekmatyar', ',', '``', 'it', 'was', 'pakistan', 'that', 'made', 'him', 'an', 'afghan', 'leader', 'and', 'it', 'is', 'pakistan', 'who', 'can', 'equally', 'destroy', 'him', 'if', 'he', 'continues', 'to', 'misbehave', '.', \"''\"], ['her', 'first', 'book', 'of', 'poems', 'is', 'a', 'kind', 'of', 'lament', 'to', 'her', 'father', ',', 'a', 'sensitive', 'journey', 'with', 'a', 'description', 'of', 'the', 'relationship', 'and', 'longing', 'for', 'him', ':'], ['wegman', 'was', 'in', 'a', 'drugstore', 'when', 'she', 'was', 'spotted', 'by', 'a', 'scout', 'of', 'the', 'all-american', 'girls', 'professional', 'baseball', 'league', '.'], ['he', 'continued', 'studying', 'part-time', 'at', 'bradford', 'technical', 'college', 'whilst', 'working', 'as', 'an', 'engineering', 'apprentice', 'with', 'the', 'english', 'electric', 'company', ',', 'and', 'gained', 'an', 'external', 'degree', 'of', 'the', 'university', 'of', 'london', 'with', 'first', 'class', 'honours', '.'], ['unita', 'leader', 'samakuva', 'said', 'on', 'september', '7', 'that', '``', 'the', 'final', 'result', 'might', 'not', 'fully', 'reflect', 'the', 'will', \"''\", 'of', 'the', 'people', ',', 'but', 'also', 'said', 'that', 'the', 'election', 'marked', '``', 'an', 'important', 'step', 'towards', 'consolidation', 'of', 'our', 'democracy', \"''\", '.'], ['in', '1', '7', '8', '4', 'some', 'russian', 'buryats', 'and', 'the', 'uriankhais', 'of', 'the', 'qing', 'together', 'robbed', 'the', 'chinese', 'merchant', 'in', 'the', 'khövsgöl', 'region', '.'], ['it', 'then', 'screened', 'at', 'the', 'toronto', 'international', 'film', 'festival', 'beginning', 'september', '8', ',', '2', '0', '1', '8', '.'], ['according', 'to', 'the', '2', '0', '0', '2', 'poland', 'census', ',', 'there', 'were', '1', '2', '9', 'people', 'residing', 'in', 'kamieniec', 'village', ',', 'of', 'whom', '4', '8', '.', '8', '%', 'were', 'male', 'and', '5', '1', '.', '2', '%', 'were', 'female', '.'], ['royal', 'guardsmen', 'wear', 'bright', 'green', 'berets', 'when', 'in', 'conventional', 'uniforms', '.'], ['while', 'originally', 'skeptical', 'he', 'agrees', 'after', 'ibis', 'makes', 'it', 'clear', 'that', 'the', 'stories', 'are', 'not', 'taboo', '.'], ['marshall', 'began', 'his', 'post-war', 'career', 'by', 'working', 'as', 'a', 'welder', 'and', 'contractor', '.'], ['working-class', 'women', 'both', 'provided', 'and', 'received', 'wet', 'nursing', 'services', '.'], ['in', 'november', '2', '0', '1', '5', ',', 'grand', 'river', 'enterprises', 'germany', 'and', 'philip', 'morris', 'had', 'a', 'dispute', 'over', 'the', 'name', 'of', 'the', 'mark', 'adams', 'no', '.'], ['on', '1', 'february', '2', '0', '1', '6', 'prime', 'minister', 'beata', 'szydło', 'entrusted', 'him', 'with', 'the', 'responsibilities', 'of', 'the', 'head', 'of', 'the', 'office', 'of', 'war', 'veterans', 'and', 'victims', 'of', 'oppression', '.'], ['3', '8', '5', ')', 'for', 'nine', 'season', 'between', '1', '9', '8', '1', '-', '1', '9', '8', '9', ',', 'oldham', '(', 'heritage', 'no', '.', ')'], ['tiny', 'lund', 'would', 'notice', 'engine', 'failure', 'on', 'lap', '2', '4', '8', 'while', 'frank', 'warren', 'had', 'the', 'same', 'issue', 'on', 'lap', '3', '0', '5', '.'], ['the', 'first', 'inspector', 'to', 'head', 'the', 'post', 'was', 'an', 'egyptian', 'officer', ',', 'who', 'was', 'soon', 'succeeded', 'by', 'the', 'scottish', 'lieutenant', 'david', 'comyn', '.'], ['this', 'required', 'skilled', 'teamwork', 'on', 'the', 'part', 'of', 'the', 'crew', ',', 'changing', 'the', 'magazines', 'while', 'on', 'the', 'move', 'to', 'keep', 'up', 'the', 'volume', 'of', 'fire', '.'], ['in', 'november', '2', '0', '2', '0', ',', 'dwayne', '``', 'the', 'rock', \"''\", 'johnson', 'collaborated', 'with', 'microsoft', 'and', 'billionaire', 'bill', 'gates', 'to', 'donate', 'xbox', 'series', 'x', 'consoles', 'to', 'children', \"'s\", 'wisconsin', 'along', 'with', '1', '9', 'other', 'children', \"'s\", 'hospitals', 'throughout', 'the', 'country', '.'], ['montegrano', \"'s\", 'inhabitants', 'were', 'not', 'unique', 'or', 'inherently', 'more', 'impious', 'than', 'other', 'people', '.'], ['clinton', 'rebuked', 'sister', 'souljah', \"'s\", 'remarks', ':', '``', 'if', 'black', 'people', 'kill', 'black', 'people', 'every', 'day', ',', 'why', 'not', 'have', 'a', 'week', 'and', 'kill', 'white', 'people', '?', \"''\"], ['also', ',', 'wordplay', 'which', 'includes', 'the', 'use', 'of', 'puns', ',', 'one', 'liners', ',', 'limericks', ',', 'witticisms', ',', 'among', 'various', 'others', ',', 'can', 'be', 'another', 'way', 'to', 'produce', 'humour', '.'], ['this', 'induced', 'the', 'seljuqs', 'to', 'hastily', 'evacuate', 'most', 'of', 'surrounding', 'districts', '.'], ['ky', '3', '6', '3', '0', 'heads', 'west', 'and', 'intersects', 'the', 'southern', 'terminus', 'of', 'ky', '5', '7', '7', '.'], ['the', 'aperture', 'diameter', 'would', 'be', 'equal', 'to', 'formula_', '4', '.'], ['late', 'november', '2', '0', '1', '8', ',', 'the', 'company', 'launched', '``', 'xpress', \"''\", 'service', 'for', 'prospective', 'authors', '.'], ['one', 'norman', ',', 'who', 'had', 'converted', 'to', 'christianity', 'and', 'lived', 'amongst', 'the', 'frisians', ',', 'and', 'who', 'has', 'been', 'said', 'to', 'have', 'been', 'roruk', ',', 'rudolf', \"'s\", 'uncle', ',', 'convinced', 'them', 'to', 'end', 'the', 'siege', 'and', 'sign', 'a', 'pact', '.'], ['however', ',', 'others', 'deny', 'that', 'notovich', 'ever', 'accepted', 'the', 'accusations', 'against', 'him', '.'], ['he', 'graduated', 'in', '1', '9', '6', '4', 'with', 'a', 'double', 'major', 'in', 'journalism', 'and', 'photography', '.'], ['women', \"'s\", 'team', 'also', 'play', 'the', 'highest', 'czech', 'floorball', 'league', ',', 'extraliga', 'žen', 've', 'florbale', ',', 'since', 'season', '2', '0', '1', '3', '-', '1', '4', '.'], ['thirty-six', 'athletes', 'had', 'to', 'qualify', 'for', 'each', 'of', 'the', 'two', 'events', ';', 'a', 'maximum', 'of', 'two', 'per', 'gender', 'from', 'any', 'nation', '.'], ['when', 'leo', 'became', 'ill', 'and', 'died', 'on', 'november', '1', '7', ',', 'zeno', 'became', 'sole', 'emperor', 'with', 'ariadne', 'as', 'his', 'empress', 'consort', '.'], ['elodie', 'davis', '(', 'brianna', 'hildebrand', ')', ',', 'moe', 'truax', '(', 'kiana', 'madeira', ')', ',', 'and', 'tabitha', 'foster', '(', 'quintessa', 'swindell', ')', 'become', 'friends', 'after', 'finding', 'each', 'other', 'at', 'a', 'shoplifters', 'anonymous', 'meeting', '.'], ['time', 'machine', 'is', 'a', 'video', 'compilation', 'by', 'the', 'american', 'heavy', 'metal', 'band', 'dio', '.'], ['dublin', 'harbour', ',', 'a', 'division', 'of', 'dublin', ',', 'was', 'a', 'uk', 'parliamentary', 'constituency', 'in', 'ireland', '.'], ['``', 'invincible', \"''\", 'was', 'released', 'on', 'cd', 'through', 'cd', 'baby', 'on', 'june', '1', '5', ',', '2', '0', '1', '1', 'after', 'two', 'steps', 'from', 'hell', 'reached', '2', '0', ',', '0', '0', '0', 'likes', 'on', 'their', 'facebook', 'page', 'on', 'may', '4', ',', '2', '0', '1', '1', '.'], ['he', 'was', 'a', 'long-time', 'chairman', 'of', 'the', 'party', ',', 'serving', 'from', '1', '9', '9', '8', 'to', '2', '0', '0', '9', '.'], ['parry', 'joined', 'the', 'royal', 'navy', '1', '9', '0', '5', 'and', 'served', 'in', 'the', 'first', 'world', 'war', '.'], ['no', 'hurdle', 'rates', 'or', 'capital', 'thresholds', 'are', 'defined', 'for', 'the', 'purpose', 'of', 'the', 'exercise', '.'], ['the', 'approach', 'used', 'by', 'the', 'movement', 'is', 'based', 'on', 'the', 'method', 'developed', 'by', 'joseph', 'cardijn', 'to', '``', 'see-judge-act', \"''\", '.'], ['german', 'socialism', 'is', 'accompanied', 'by', 'the', '``', 'volksgeist', \"''\", '(', 'national', 'spirit', ')', 'which', 'is', 'not', 'racial', 'in', 'the', 'biological', 'sense', 'but', 'metaphysical', ':', '``', 'the', 'german', 'spirit', 'in', 'a', 'negro', 'is', 'quite', 'as', 'much', 'within', 'the', 'realm', 'of', 'possibility', 'as', 'the', 'negro', 'spirit', 'in', 'a', 'german', \"''\", '.'], ['after', 'the', 'eagles', 'left', ',', 'the', 'ground', 'subsequently', 'deteriorated', 'through', 'lack', 'of', 'maintenance', ',', 'though', 'other', 'sports', 'would', 'regularly', 'use', 'the', 'oval', 'including', 'cricket', ',', 'rugby', 'league', ',', 'baseball', ',', 'gridiron', 'and', 'soccer', '.'], ['2', '0', 'in', 'three', 'races', 'with', 'smith', 'driving', 'two', 'and', 'berte', 'one', '.'], ['skeppsholmskyrkan', 'church', 'and', 'rosendal', 'palace', ',', 'both', 'in', 'the', 'capital', 'city', ',', 'stockholm', '.'], ['her', 'face', 'and', 'story', 'background', 'changed', 'several', 'times', 'while', 'she', 'underwent', 'many', 'redesigns', 'and', 're-imagining', 'as', 'developers', 'searched', 'for', 'the', 'right', 'look', 'to', 'combine', 'the', 'qualities', 'of', '``', 'feminine', 'attraction', \"''\", 'and', 'the', '``', 'strength', 'of', 'a', 'fighting', 'woman', \"''\", '.'], ['following', 'her', 'retirement', 'from', 'competition', ',', 'keleti', 'worked', 'as', 'a', 'physical', 'education', 'instructor', 'at', 'tel', 'aviv', 'university', ',', 'and', 'for', '3', '4', 'years', 'at', 'the', 'wingate', 'institute', 'for', 'sports', 'in', 'netanya', '.'], ['this', 'occurs', 'in', 'conditions', 'of', 'extended', 'drought', ',', 'and', 'has', 'significant', 'effects', 'on', 'fire', 'behaviour', '.'], ['on', 'december', '1', '8', ',', '2', '0', '1', '7', ',', 'ballentine', 'was', 'sentenced', 'to', 'life', 'in', 'prison', ',', 'with', 'the', 'possibility', 'of', 'parole', 'after', '2', '5', 'years', '.'], ['construction', 'of', 'the', 'facility', 'began', 'in', '1', '9', '2', '6', 'and', 'it', 'was', 'inaugurated', 'on', '1', '6', 'june', '1', '9', '2', '9', '.'], ['e.', 'a.', 'beet', ',', 'a', 'doctor', 'working', 'in', 'southern', 'rhodesia', '(', 'now', 'zimbabwe', ')', 'had', 'observed', 'in', '1', '9', '4', '8', 'that', 'sickle-cell', 'disease', 'was', 'related', 'to', 'a', 'lower', 'rate', 'of', 'malaria', 'infections', '.'], ['the', 'almanac', 'had', 'different', 'editors', 'and', 'publishers', 'under', 'the', 'american', 'anti-slavery', 'society', 'depending', 'on', 'the', 'edition', 'and', 'the', 'publication', 'location', '.'], ['upper-class', 'men', 'often', 'wore', 'a', 'cane', 'as', 'part', 'of', 'their', 'outfits', ',', 'suspending', 'it', 'by', 'a', 'loop', 'from', 'one', 'of', 'their', 'waistcoat', 'buttons', 'to', 'allow', 'their', 'hands', 'to', 'properly', 'hold', 'snuff-boxes', 'or', 'handkerchiefs', '.'], ['the', 'average', 'household', 'size', 'was', '2', '.', '1', '8', 'and', 'the', 'average', 'family', 'size', 'was', '2', '.', '8', '6', '.'], ['in', '2', '0', '0', '7', ',', 'the', 'state', 'government', 'decided', 'that', 'the', 'baden-württemberg', 'police', 'will', 'also', 'change', 'to', 'blue', 'uniforms', 'and', 'patrol', 'vehicles', '.'], ['george', 'norton', 'is', 'a', 'low-level', 'bumbler', 'who', 'works', 'for', 'chicago', 'crime', 'boss', 'charley', 'barker', '.'], ['the', 'following', 'yang', 'module', 'codice_', '1', 'shows', 'a', 'data', 'model', 'for', 'team', 'sports', '.'], ['arturo', 'gatti', 'vs.', 'floyd', 'mayweather', 'jr.', ',', 'billed', 'as', '``', 'thunder', '&', 'amp', ';', 'lightning', \"''\", ',', 'was', 'a', 'professional', 'boxing', 'match', 'contested', 'on', 'june', '2', '5', ',', '2', '0', '0', '5', 'for', 'the', 'wbc', 'super', 'lightweight', 'championship', '.'], ['he', 'also', 'cites', 'paul', 'gerni', ',', 'mike', 'massey', 'and', 'yoshikazu', 'kimura', 'as', 'influences', '.'], ['after', 'it', 'was', 'built', ',', 'the', 'reservoir', 'filled', 'gradually', '.'], ['however', 'the', 'final', 'decision', 'about', 'the', 'standard', 'selected', 'was', \"n't\", 'announced', 'at', 'that', 'moment', '(', 'august', '2', '0', '0', '0', ')', 'because', 'of', 'three', 'main', 'points', ':'], ['mayo', 'clinic', '(', 'rochester', ',', 'mn', ')', 'was', 'ranked', 'the', '#', '1', 'hospital', 'in', 'the', 'nation', 'for', '2', '0', '1', '8', '-', '2', '0', '1', '9', 'by', 'u.s.', 'news', '&', 'amp', ';', 'world', 'report', '.'], ['he', 'matriculated', 'at', 'oxford', 'on', '2', 'october', '1', '6', '5', '2', ',', 'and', 'the', 'same', 'year', 'graduated', 'b.a', '.'], ['1', '7', 'days', 'later', ',', 'the', 'ship', 'was', 'severely', 'damaged', 'at', 'dawn', 'by', 'two', 'bombs', 'from', 'a', 'lone', 'japanese', 'aircraft', '.'], ['a', 'rotary', 'converter', 'is', 'a', 'type', 'of', 'electrical', 'machine', 'which', 'acts', 'as', 'a', 'mechanical', 'rectifier', ',', 'inverter', 'or', 'frequency', 'converter', '.'], ['rtl-sdr', 'was', 'discovered', 'by', 'steve', 'markgraf', ',', 'who', 'also', 'created', 'osmo-fl', '2', 'k', 'for', 'radio', 'transmissions', '.'], ['``', 'low', 'church', \"''\", ',', 'in', 'a', 'contemporary', 'anglican', 'context', ',', 'denotes', 'a', 'protestant', 'emphasis', ',', 'and', '``', 'high', 'church', \"''\", 'denotes', 'an', 'emphasis', 'on', 'ritual', ',', 'often', 'as', 'anglo-catholicism', '.'], ['on', 'the', 'night', 'of', 'ingelmunster', 'railway', 'station', 'and', 'airfield', 'and', 'bisseghem', 'aerodrome', 'were', 'bombed', '.'], ['the', 'pulpit', 'is', 'renaissance', ',', 'with', 'pictorial', 'representations', 'of', 'the', 'virtues', '.'], ['robert', 'moog', 'built', 'a', 'prototype', 'with', 'undercut', 'round', 'front', 'rectangular', 'keys', '.'], ['moreover', ',', 'even', 'for', '``', 'a', 'single', \"''\", 'agent', ',', 'there', 'is', 'no', 'algorithm', 'that', 'computes', 'the', 'agent', \"'s\", 'maximin-share', 'using', 'finitely-many', 'rw', 'queries', '.'], ['she', 'was', 'elected', 'to', 'the', 'position', 'of', 'the', 'prime', 'minister', 'of', 'the', 'first', 'government', 'on', '1', '7', 'march', 'by', 'the', 'supreme', 'council', 'of', 'lithuania', '.'], ['back', 'in', 'the', 'present', ',', 'general', 'zeng', \"'s\", 'autopsy', 'is', 'held', 'up', 'in', 'diplomatic', 'red', 'tape', ',', 'forcing', 'the', 'investigators', 'into', 'trying', 'to', 'get', 'to', 'the', 'truth', 'through', 'raghu', '.'], ['barakat', 'resided', 'in', 'greensboro', ',', 'nc', 'with', 'his', 'wife', ',', 'florence', ',', 'and', 'was', 'the', 'parent', 'of', 'four', 'adult', 'children', ':', 'nancy', ',', 'christie', ',', 'amy', ',', 'and', 'rick', '.'], ['he', 'is', 'better', 'known', 'as', 'dr.', 'shubhankar', 'rai', 'of', '``', 'dill', 'mill', 'gayye', \"''\", 'on', 'star', 'one', '.'], ['he', 'started', 'his', 'career', 'at', 'everton', \"'s\", 'youth', 'academy', 'aged', '1', '3', ',', 'and', 'progressed', 'through', 'the', 'club', \"'s\", 'youth', 'system', 'before', 'playing', 'regularly', 'for', 'the', 'reserve', 'side', '.'], ['one', 'of', 'the', 'earliest', 'such', 'cases', 'involves', 'one', 'of', 'the', 'most', 'famous', 'american', 'soldiers', 'of', 'world', 'war', 'i', ',', 'alvin', 'york', ',', 'who', 'initially', 'received', 'a', 'distinguished', 'service', 'cross', 'which', 'was', 'upgraded', 'to', 'the', 'medal', 'of', 'honor', '.'], ['a', 'wholly', 'owned', 'subsidiary', 'of', 'ia', 'financial', 'group', '(', 'tsx', ':', 'ifg', ')', ',', 'the', 'company', 'sells', 'various', 'products', ',', 'including', 'mutual', 'funds', ',', 'portfolios', ',', 'exchange-traded', 'series', 'of', 'mutual', 'funds', ',', 'segregated', 'funds', 'and', 'socially', 'responsible', 'investments', '.'], ['the', 'show', 'was', 'also', 'observed', 'having', 'longer', 'commercial', 'loads', 'ending', 'up', 'to', 'a', 'huge', 'gaps', 'per', 'show', '.'], ['civilians', 'in', 'panic', 'were', 'forced', 'to', 'escape', 'the', 'fires', 'that', 'had', 'been', 'started', '.'], ['the', 'surface', 'landforms', 'that', 'arose', 'in', 'the', 'pleistocene', 'epoch', 'are', 'therefore', 'heavily', 'eroded', 'or', 'even', 'levelled', ',', 'the', 'soils', 'are', 'heavily', 'decalcified', 'and', ',', 'in', 'places', ',', 'strongly', 'acidified', '.'], ['however', ',', 'on', '1', '4', 'may', '2', '0', '1', '8', ',', 'the', 'court', 'of', 'arbitration', 'for', 'sport', 'upheld', 'the', 'appeal', 'filed', 'by', 'the', 'world', 'anti-doping', 'agency', ',', 'extending', 'the', 'ban', 'to', '1', '4', 'months', 'and', 'ruling', 'him', 'out', 'of', 'the', 'tournament', '.'], ['tennis', 'channel', 'provides', 'extensive', 'coverage', 'of', 'the', 'davis', 'cup', '(', 'until', '2', '0', '1', '8', ')', ',', 'fed', 'cup', 'and', 'hopman', 'cup', 'as', 'well', 'as', 'other', 'tournaments', 'throughout', 'the', 'year', '.'], ['paul', 'mccartney', 'claimed', 'to', 'have', 'dreamed', 'the', 'melody', 'to', 'his', 'song', '``', 'yesterday', \"''\", '.'], ['by', '2', '0', '1', '8', ',', 'the', 'hashtag', 'received', '9', '9', '.', '6', 'million', 'impressions', 'on', 'twitter', 'and', '1', '7', '0', '0', '0', '0', 'posts', 'were', 'shared', 'on', 'twitter', 'and', 'instagram', 'containing', 'at', 'least', 'one', 'of', 'fashion', 'revolution', \"'s\", 'hashtags', '.'], ['the', 'book', 'contained', 'concise', 'biographies', 'of', 'famous', 'armenians', 'who', 'had', 'lived', 'and', 'worked', 'in', 'foreign', 'countries', '.'], ['their', 'first', 'running', 'engine', 'was', 'the', '``', 'skuten', \"''\", ',', 'ground', 'tested', 'in', '1', '9', '4', '9', 'but', 'not', 'flown', '.'], ['this', 'company', 'began', 'construction', 'in', 'november', '1', '9', '0', '9', 'on', 'the', 'line', 'north', 'from', 'klamath', 'falls', ',', 'soon', 'reaching', 'chiloquin', 'under', 'lease', 'to', 'the', 'sp', '.'], ['the', 'nature', 'reserve', 'borders', 'to', 'the', 'south', 'on', 'the', 'parish', 'of', 'serams', 'and', 'the', 'b', '1', '9', '6', 'federal', 'road', '.'], ['in', 'may', '2', '0', '1', '8', ',', 'sony', 'pictures', 'and', 'stage', '6', 'films', 'acquired', 'u.s.', 'distribution', 'rights', 'to', 'the', 'film', 'at', 'the', '7', '1', 'st', 'cannes', 'film', 'festival', ',', 'with', 'a', 'planned', 'awards', 'season', 'release', '.'], ['king', 'is', 'a', 'powerful', 'robot', 'appearing', 'in', '``', 'mega', 'man', 'and', 'bass', \"''\", 'as', 'the', 'apparent', 'main', 'antagonist', '.'], ['robson', 'was', 'dissatisfied', 'by', 'this', 'situation', 'and', 'when', ',', 'in', 'january', '1', '9', '6', '8', ',', 'fulham', 'offered', 'him', 'a', 'contract', 'as', 'their', 'manager', ',', 'he', 'accepted', 'the', 'position', 'at', 'craven', 'cottage', '.'], ['a', 'locomotive', ',', 'dc', '4', '6', '8', '6', ',', 'ended', 'up', 'completely', 'submerged', 'in', 'the', 'river', 'on', '4', 'january', '2', '0', '0', '2', ',', 'after', 'floodwater', 'undermined', 'a', 'stopbank', 'supporting', 'the', 'railway', 'line', ',', 'causing', 'a', 'derailment', '.'], ['the', 'event', 'was', 'the', 'first', 'held', 'in', 'the', 'middle', 'east', 'following', 'the', 'purchase', 'of', 'a', '1', '0', 'percent', 'stake', 'in', 'the', 'ufc', 'parent', 'company', 'zuffa', 'by', 'abu', 'dhabi', 'government-owned', 'flash', 'entertainment', '.'], ['the', 'mit', 'necst', 'consortium', ',', 'founded', 'by', 'wardle', 'in', '2', '0', '0', '6', ',', 'actively', 'develops', 'technologies', 'for', 'improving', 'the', 'performance', 'of', 'advanced', 'aerospace', 'materials/structures', ',', 'primarily', 'through', 'strategic', 'use', 'of', 'carbon', 'nanotubes', '(', 'cnts', ')', 'combined', 'with', 'traditional', 'advanced', 'composites', 'to', 'form', 'hybrid', 'architectures', '.'], ['the', 'earliest', 'existing', 'historical', 'records', 'of', 'the', 'church', 'date', 'back', 'to', 'the', 'year', '1', '3', '1', '9', ',', 'but', 'the', 'church', 'was', 'not', 'new', 'at', 'that', 'time', '.'], ['in', '1', '8', '8', '7', '3', 'rd', 'class', 'coaches', 'appeared', 'in', 'express', 'trains', 'for', 'the', 'first', 'time', ',', 'whilst', 'the', 'hungarian', 'expresses', 'were', 'made', 'up', 'exclusively', 'of', '1', 'st', 'and', '2', 'nd', 'class', 'accommodation', 'until', '1', '9', '1', '2', '.'], ['in', '2', '0', '0', '5', ',', 'honma', 'became', 'affiliated', 'with', 'kensuke', 'sasaki', \"'s\", 'kensuke', 'office', 'agency', 'in', 'an', 'effort', 'to', 'further', 'improve', 'his', 'career', '.'], ['the', 'flowers', 'produce', 'various', 'odors', 'resembling', 'sap', ',', 'urine', ',', 'blood', ',', 'dung', ',', 'carrion', ',', 'and', ',', 'in', 'some', 'species', ',', 'fragrant', 'fruity', 'aromas', '.'], ['we', 'have', 'to', 'transform', 'our', 'city', 'into', 'an', 'advanced', 'developed', 'society', '.'], ['according', 'to', 'chettleburgh', ',', 'npf', 'first', 'formed', 'in', 'the', 'mid-to-late', '1', '9', '8', '0', 's', '.'], ['on', '1', '0', 'august', '2', '0', '0', '7', ',', 'lockheed', 'announced', 'that', 'bsat-', '3', 'a', 'was', 'mated', 'to', 'the', 'launcher', 'and', 'ready', 'for', 'its', 'ride', 'to', 'orbit', '.'], ['is', 'a', '1', '9', '9', '8', 'japanese', 'drama', 'film', 'directed', 'by', 'nobuhiko', 'obayashi', 'and', 'based', 'on', 'the', 'true', 'story', 'of', 'sada', 'abe', '.'], ['houlding', 'suggested', 'that', '1', '2', ',', '0', '0', '0', 'shares', 'be', 'created', 'with', 'each', 'everton', 'board', 'member', 'given', 'one', 'share', 'and', 'the', 'other', 'shares', 'sold', 'to', 'the', 'public', 'or', 'everton', 'board', 'members', '.'], ['abbot', \"'s\", 'demon', 'name', 'is', \"n'zall\", ',', 'meaning', '``', 'little', 'horn', \"''\", 'in', 'ancient', 'demon', 'language', '.'], ['glen', 'murray', 'resigned', 'as', 'mayor', 'in', 'mid-', '2', '0', '0', '4', 'to', 'run', 'for', 'the', 'house', 'of', 'commons', 'of', 'canada', '.'], ['hoppus', 'referenced', 'tim', 'burton', \"'s\", '``', 'the', 'nightmare', 'before', 'christmas', \"''\", 'at', 'the', 'request', 'of', 'barker', ',', 'with', 'the', 'lines', '``', 'we', 'can', 'live', 'like', 'jack', 'and', 'sally', 'if', 'we', 'want', '...', 'and', 'we', \"'ll\", 'have', 'halloween', 'on', 'christmas', \"''\", ',', 'toward', 'his', 'then-wife', ',', 'shanna', 'moakler', '.'], ['it', 'is', 'simply', 'sophisticated', 'software', 'running', 'on', 'a', 'quantar', 'repeater', '.'], ['pohl', 'published', 'a', 'book', 'entitled', '``', 'the', 'lost', 'discovery', ':', 'uncovering', 'the', 'track', 'of', 'the', 'vikings', 'in', 'america', \"''\", '(', 'new', 'york', ':', 'norton', '.'], ['as', 'a', 'child', ',', 'he', 'moved', 'with', 'his', 'father', 'to', 'the', 'town', 'of', 'montalto', 'uffugo', 'in', 'calabria', ',', 'where', 'leoncavallo', 'lived', 'during', 'his', 'adolescence', '.'], ['the', 'ground', 'level', 'rectangular', 'water', 'tank', 'near', 'the', 'house', 'is', 'of', 'low', 'significance', '.'], ['the', 'vermont', 'railway', 'freight', 'rail', 'line', ',', 'and', 'an', 'exempt', 'rail', 'spur', ',', 'traverses', 'bennington', 'in', 'the', 'northern', 'portions', '.'], ['petrel', 'is', 'an', 'unincorporated', 'community', 'in', 'fairbanks', 'township', ',', 'saint', 'louis', 'county', ',', 'minnesota', ',', 'united', 'states', ';', 'located', 'within', 'the', 'superior', 'national', 'forest', '.'], ['the', 'british', 'discovered', 'the', 'town', 'was', 'too', 'strongly', 'defended', 'and', 'withdrew', 'the', 'next', 'day', '.'], ['the', 'characters', 'have', 'different', 'personalities', 'and', 'personas', 'in', 'school', ',', 'keeping', 'their', 'friendship', 'a', 'secret', ':', 'elodie', 'is', 'an', 'introvert', ';', 'moe', 'favors', 'punk', 'style', ';', 'while', 'tabitha', 'comes', 'from', 'a', 'wealthy', 'family', '.'], ['aro', 'told', 'jensen', 'he', \"'d\", 'give', 'him', 'a', 'response', 'two', 'weeks', 'later', '.'], ['the', 'film', \"'s\", 'plot', 'is', 'about', 'a', 'young', 'woman', \"'s\", 'dreams', 'to', 'married', 'her', 'fiancé', 'which', 'arranged', 'by', 'her', 'parents', 'when', 'she', 'was', 'kidnapped', 'by', 'her', 'jealous', 'college', 'mate', 'and', 'raped', 'leading', 'into', 'a', 'forced', 'marriage', '.'], ['elisha', 'putnam', 'and', 'israel', 'putnam', ',', 'who', 'became', 'a', 'renowned', 'general', 'during', 'the', 'american', 'revolution', 'were', 'cousins', '.'], ['in', '2', '0', '1', '8', ',', 'dorn', 'staged', 'richard', 'wagners', '``', 'parsifal', \"''\", ',', 'conducted', 'by', 'sir', 'simon', 'rattle', ',', 'choreography', 'by', 'martin', 'gruber', '.'], ['they', 'should', 'provide', 'translations', 'of', 'basic', 'items', 'on', 'status', 'records', '(', 'e.g', '.'], ['the', 'idea', 'for', 'the', 'movie', 'began', 'after', 'cousins', 'aaron', 'and', 'chad', 'burns', 'finished', 'their', 'self-produced', 'film', 'called', '``', 'pendragon', \"''\", 'that', 'was', 'picked', 'up', 'for', 'international', 'distribution', 'and', 'broadcast', 'by', 'various', 'tv', 'stations', '.'], ['in', '1', '9', '8', '9', 'he', 'set', 'a', 'new', 'track', 'record', ',', 'starting', 'on', 'the', 'pole', 'position', 'as', 'a', 'rookie', 'in', 'the', 'little', '5', '0', '0', ',', 'the', 'usac', 'sprint', 'car', 'championship', '.'], ['the', 'aircraft', 'collided', 'with', 'the', 'ground', '1', '5', '4', '8', 'metres', 'from', 'the', 'runway', 'threshold', '.'], ['the', 'ferrying', 'service', 'on', 'muskrat', 'lake', 'came', 'to', 'an', 'end', 'with', 'the', 'arrival', 'of', 'the', 'railroad', 'in', 'cobden', 'during', '1', '8', '7', '6', '.'], ['holm', ',', 'anders', '(', '2', '0', '1', '9', ')', '.'], ['he', 'puts', 'the', 'pieces', 'together', 'and', 'realizes', 'that', 'doom', 'is', 'a', 'site', 'of', 'an', 'ancient', 'bio-lab', 'set', 'up', 'by', 'the', 'harammins', '3', 'million', 'years', 'ago', 'to', 'develop', 'bio-weapons', 'in', 'their', 'fight', 'against', 'the', 'insects', '.'], ['he', 'warns', 'her', 'that', 'those', 'who', 'have', 'been', 'cured', 'by', 'manang', 'elsa', 'will', 'be', 'possessed', 'by', 'their', 'own', 'alter-egos', 'and', 'their', 'souls', 'shall', 'be', 'offered', 'to', 'him', '.'], ['he', 'stopped', 'racing', 'and', 'opened', 'a', 'motorcycle', 'dealership', 'in', 'wichita', 'falls', 'in', '1', '9', '6', '6', '.'], ['during', 'this', 'time', ',', 'ipg', 'started', 'developing', 'its', 'mutli-kilowatt', 'diode-pumped', 'fiber', 'lasers', '.'], ['the', 'park', 'opened', 'in', '2', '0', '0', '4', ',', 'an', 'array', 'of', 'works', 'by', 'omri', 'and', 'julie', 'rotblatt-amrany', 'that', 'included', 'seventeen', 'bronze', 'sculptures', ',', 'three', 'bas', 'reliefs', ',', 'fourteen', 'laser-engraved', 'granite', 'panels', ',', 'and', 'eight', 'installations', '.'], ['since', '1', '9', '9', '0', 'the', 'area', 'of', 'the', 'klaipėda', 'region', 'has', 'formed', 'part', 'of', 'the', 'independent', 'republic', 'of', 'lithuania', ',', 'as', 'part', 'of', 'klaipėda', 'and', 'tauragė', 'counties', '.'], ['attiliosa', 'perplexa', 'is', 'a', 'species', 'of', 'sea', 'snail', ',', 'a', 'marine', 'gastropod', 'mollusk', 'in', 'the', 'family', 'muricidae', ',', 'the', 'murex', 'snails', 'or', 'rock', 'snails', '.'], ['as', 'trust', 'in', 'the', 'public', 'institutions', 'continues', 'to', 'decrease', ',', 'the', 'future', 'of', 'its', 'constitution', 'could', 'also', 'come', 'into', 'question', '.'], ['farah', 'announced', 'that', 'he', 'would', 'switch', 'from', 'track', 'events', 'to', 'the', 'marathon', 'after', 'the', '2', '0', '1', '7', 'world', 'championships', 'in', 'athletics', '.'], ['alexander', 'grothendieck', 'characterized', 'the', 'strong', 'dual', 'and', 'bidual', 'for', 'certain', 'situations', ':'], ['the', 'pertschuk', 'family', 'fled', 'the', 'german', 'invasion', 'to', 'the', 'unoccupied', 'zone', 'of', 'france', 'to', 'live', 'in', 'montréjeau', 'in', 'southwestern', 'france', '.'], ['he', 'once', 'offended', 'queen', 'victoria', 'and', 'was', 'exiled', 'to', 'the', 'south', 'pacific', '(', 'shades', 'of', 'gauguin', ')', ',', 'but', 'edward', 'vii', 'has', 'succeeded', 'to', 'the', 'throne', ',', 'and', 'farll', 'has', 'been', 'recalled', 'to', 'london', 'to', 'receive', 'a', 'knighthood', '.'], ['in', '1', '9', '0', '2', ',', 'meredith', 'was', 'elected', 'president', 'of', 'the', 'montreal', 'stock', 'exchange', ',', 'a', 'position', 'he', 'held', 'until', '1', '9', '0', '5', '.'], ['as', 'a', 'bonus', ',', 'it', 'came', 'bundled', 'with', 'the', 'visual', 'novel', \"'s\", 'original', 'soundtrack', 'and', 'a', 'game', 'demo', 'of', 'key', \"'s\", 'ninth', 'game', '``', 'rewrite', \"''\", '.'], ['a', 'few', 'artillery', 'pieces', 'and', 'gregg', \"'s\", 'brigade', 'from', 'crook', \"'s\", 'corps', 'moved', 'forward', 'in', 'support', '.'], ['among', 'her', 'students', 'who', 'became', 'notable', 'psychologists', 'were', 'molly', 'harrower', ',', 'winifred', 'raphael', ',', 'and', 'olive', 'wheeler', '.'], ['for', 'a', 'good', 'lookout', 'at', 'rat', 'sands', ',', 'dongyong', 'lighthouse', 'and', 'taibai', 'echo', 'cliff', '(', ')', 'are', 'good', 'spots', '.'], ['there', 'are', 'terms', ',', 'inner', 'light', ',', 'guide', ',', 'seed', ',', 'or', 'spirit', '(', 'or', 'some', 'variation', ')', 'used', 'by', 'many', 'friends', 'to', 'explain', 'the', 'source', 'of', 'what', 'they', 'may', 'say', 'or', 'reflect', 'upon', 'during', 'meeting', '.'], ['timothy', 'wright', 'became', 'his', 'assistant', 'at', 'ipswich', 'in', '1', '6', '9', '8', '.'], ['where', 'oxygenation', 'is', 'a', 'critical', 'requirement', '``', 'stratiotes', 'aloides', \"''\", ',', '``', 'hydrocharis', 'morsus-ranae', \"''\", ',', '``', 'acorus', 'calamus', \"''\", ',', '``', 'myriophyllum', \"''\", 'species', 'and', '``', 'elodea', \"''\", 'have', 'been', 'used', '.'], ['she', 'has', 'collaborated', 'on', 'art', 'projects', 'with', 'several', 'artists', ',', 'including', 'a', 'project', 'in', '2', '0', '1', '1', 'where', 'video', 'artists', 'applied', '3', '6', '5', 'layers', 'of', 'makeup', 'to', 'her', 'face', '.'], ['a', 'total', 'of', 'four', 'episodes', ',', 'containing', 'highlights', 'from', 'the', 'first', 'and', 'second', 'series', ',', 'broadcast', 'at', '7', ':', '0', '0', 'pm', 'between', '2', '2', 'and', '3', '1', 'july', ',', 'being', 'shown', 'on', 'both', 'mondays', 'and', 'wednesdays', '.'], ['the', 'per', 'capita', 'income', 'for', 'the', 'city', 'was', '$', '1', '8', ',', '0', '4', '2', '.'], ['the', 'black', 'market', 'increasingly', 'ran', 'out', 'of', 'food', 'as', 'well', ',', 'and', 'with', 'the', 'gas', 'and', 'electricity', 'and', 'heat', 'turned', 'off', ',', 'everyone', 'was', 'very', 'cold', 'and', 'very', 'hungry', '.'], ['to', 'the', 'west', 'it', 'also', 'reaches', 'the', 'river', 'saar', '.'], ['more', 'successful', 'were', 'his', 'efforts', 'to', 'raise', 'funds', 'for', 'a', 'community', 'hall', '-', 'fundraising', 'efforts', 'began', 'in', '1', '9', '3', '9', 'and', 'the', 'building', 'was', 'constructed', 'by', '1', '9', '4', '1', '.'], ['this', 'was', 'followed', 'by', 'the', '``', 'grim', 'and', 'grimmer', \"''\", 'quartet', 'of', 'humorous', 'fantasy', 'novels', '(', '2', '0', '1', '0', 'and', '2', '0', '1', '1', ')', '.'], ['at', 'the', 'pacific', 'grand', 'prix', ',', 'aguri', 'suzuki', 'drove', 'irvine', \"'s\", 'vacated', 'jordan', '.'], ['in', '2', '0', '0', '2', ',', 'ctb', 'reportedly', 'had', 'a', '4', '0', 'percent', 'share', 'of', 'the', 'test', 'design', 'market', ',', 'ranking', 'second', 'of', 'the', 'four', 'major', 'companies', 'in', 'the', 'industry', '.'], ['the', 'vegetative', 'mycelium', 'is', 'composed', 'of', 'thin', 'and', 'twisted', 'hyphae', '.'], ['tiling', ',', 'color', 'component', 'transform', ',', 'discrete', 'wavelet', 'transform', ',', 'and', 'quantization', 'could', 'be', 'done', 'pretty', 'fast', ',', 'though', 'entropy', 'codec', 'is', 'time', 'consuming', 'and', 'quite', 'complicated', '.'], ['the', 'new', 'format', 'would', 'be', 'positioned', 'towards', 'women', '.', \"''\", \"''\"], ['here', 'are', 'some', 'examples', '(', 'please', 'note', 'some', 'equities', 'listed', 'here', ',', 'such', 'as', 'subscription', 'rights', ',', 'do', 'not', 'exist', 'anymore', 'due', 'to', 'its', 'own', 'finite', 'nature', '.'], ['the', '2', '0', 'th', 'massachusetts', 'infantry', 'again', 'suffered', 'heavy', 'losses', 'at', 'antietam', '.'], ['these', 'are', 'moral', 'fables', 'and', 'legends', 'dealing', 'with', 'the', 'previous', 'births', 'of', 'gautama', 'buddha', 'in', 'both', 'human', 'and', 'animal', 'form', '.'], ['born', 'in', 'liverpool', ',', 'wallace', 'has', 'represented', 'england', 'at', 'under-', '1', '9', 'and', 'under-', '2', '0', 'level', ',', 'despite', 'having', 'represented', 'the', 'republic', 'of', 'ireland', 'at', 'under-', '1', '6', 'level', '.'], ['she', 'was', 'constructed', 'in', 'bremerhaven', 'in', '1', '9', '6', '0', ',', 'and', 'initially', 'served', 'as', 'a', 'commercial', 'trawler', 'as', 'part', 'of', 'the', 'ross', 'group', 'fleet', ',', 'notably', 'taking', 'part', 'in', 'the', 'cod', 'wars', 'of', 'the', '1', '9', '7', '0', 's', '.'], ['the', 'song', 'was', 'well', 'received', 'by', 'audience', 'and', 'critics', ',', 'where', 'the', 'popularity', 'garnered', 'by', 'the', 'song', 'surpasses', 'the', 'popularity', 'gained', 'by', 'the', 'film', '.'], ['hydrologic', 'features', 'in', 'the', 'area', 'include', 'tres', 'pinos', 'creek', ',', 'the', 'san', 'benito', 'river', ',', 'and', 'the', 'paicines', 'reservoir', '.'], ['scheifele', 'has', 'competed', 'for', 'team', 'canada', 'at', 'both', 'the', 'junior', 'and', 'national', 'level', 'at', 'international', 'tournaments', '.'], ['the', 'yarn', 'market', 'in', 'dunster', ',', 'somerset', ',', 'england', 'was', 'built', 'in', 'the', 'early', '1', '7', 'th', 'century', '.'], ['these', 'turcomans', 'were', 'likely', 'relatively', 'new', 'additions', 'to', 'baibars', \"'\", 'army', ',', 'being', 'integrated', 'in', '1', '2', '6', '8', 'and', 'given', 'horses', ',', 'titles', ',', 'and', 'lands', 'in', 'return', 'for', 'military', 'service', 'after', 'the', 'turkmen', 'migrations', 'following', 'the', 'mongol', 'invasions', '.'], ['this', 'law', 'does', 'not', 'allow', 'ahmadi', 'muslims', 'to', 'call', 'themselves', 'muslim', 'or', 'to', '``', 'pose', 'as', 'muslims', \"''\", ',', 'which', 'are', 'crimes', 'punishable', 'by', 'three', 'years', 'in', 'prison', '.'], ['schaerer', 'immediately', 'attempted', 'to', 'undermine', 'gondra', 'by', 'forcing', 'the', 'resignation', 'of', 'interior', 'minister', 'josé', 'guggiari', ',', 'gondra', \"'s\", 'most', 'vocal', 'supporter', '.'], ['ibn', 'al-ṭayyib', 'studied', 'medicine', 'and', 'probably', 'philosophy', 'under', 'abū', 'al-khayr', 'ibn', 'suwār', 'ibn', 'al-khammār', '.'], ['it', 'occupied', 'an', 'area', 'of', 'about', '1', '2', 'acres', ',', 'on', 'a', 'hexagonal', 'ground', 'plan', ',', 'with', 'bastions', 'at', 'the', 'angles', ',', 'and', 'enclosed', 'the', 'church', 'of', 'st', 'john', 'the', 'baptist', ',', 'converted', 'by', 'cromwell', 'into', 'an', 'armoury', 'and', 'guard-room', '.'], ['amylaria', 'is', 'a', 'genus', 'of', 'fungus', 'in', 'the', 'family', 'bondarzewiaceae', '.'], ['in', '1', '9', '4', '8', 'he', 'became', 'a', 'member', 'of', 'the', 'royal', 'academy', 'of', 'science', ',', 'letters', 'and', 'fine', 'arts', 'of', 'belgium', 'and', 'a', 'member', 'of', 'the', 'commission', \"d'achat\", 'des', 'musées', 'royaux', \"d'art\", 'moderne', '[', 'acquisitions', 'commission', 'of', 'the', 'royal', 'museums', 'of', 'modern', 'art', ']', '.'], ['the', 'only', 'other', 'song', 'on', 'the', 'album', 'soundtrack', 'to', 'perform', 'well', 'on', 'the', 'mainstream', 'charts', 'was', 'brown', \"'s\", 'previously', 'released', 'single', 'brother', 'rapp', '.'], ['also', 'in', '2', '0', '0', '7', ',', 'wrestlemania', 'iii', 'was', 're-released', 'on', 'dvd', '.'], ['after', 'making', 'his', 'senior', 'debut', 'at', 'the', '2', '0', '1', '4', 'iihf', 'world', 'championship', ',', 'scheifele', 'won', 'his', 'first', 'iihf', 'world', 'championship', 'gold', 'medal', 'in', '2', '0', '1', '6', 'and', 'was', 'named', 'his', 'hometowns', 'athlete', 'of', 'the', 'year', '.'], ['it', 'was', 'entered', 'into', 'the', '2', '1', 'st', 'berlin', 'international', 'film', 'festival', '.'], ['slater', 'left', 'to', 'tour', 'with', 'snake', 'river', 'conspiracy', ',', 'but', 'oakson', 'remained', 'and', 'toured', 'as', 'brougham', 'briefly', ',', 'before', 'the', 'group', 'disbanded', 'completely', 'in', 'late', '2', '0', '0', '0', '.'], ['critic', 'sukanya', 'verma', 'from', '``', 'rediff', \"''\", 'gave', 'it', 'a', '3', '/', '5', 'rating', 'explaining', '``', \"''\", 'tanu', 'weds', 'manu', \"''\", 'is', 'a', 'pleasant', 'experience', 'for', 'most', 'part', '.'], ['it', 'visited', 'europe', ',', 'oceania', ',', 'asia', 'and', 'the', 'americas', '.'], ['a', 'music', 'video', 'was', 'released', 'for', 'the', 'opening', 'track', 'of', 'the', 'album', \"'s\", 'namesake', ',', 'depicting', 'barbarossa', 'chasing', 'replicas', 'of', 'himself', 'in', 'a', 'forest', '.'], ['the', 'same', 'apply', 'to', 'ex', 'rights', 'indication', 'by', 'the', 'same', 'reason', ')', ':'], ['both', 'the', 'italy', 'and', 'spain', 'editions', 'have', 'the', 'most', 'audio', 'dub', 'options', 'of', 'all', 'dvds', ',', 'featuring', 'french', ',', 'italian', ',', 'and', 'spanish', 'stereo', 'dubs', ';', 'and', 'have', 'spanish', ',', 'portuguese', ',', 'english', ',', 'french', ',', 'italian', ',', 'croatian', ',', 'greek', ',', 'hebrew', ',', 'and', 'slovenian', 'subtitle', 'settings', '.'], ['there', 'she', 'joined', 'the', 'trinidad', 'workingman', \"'s\", 'association', ',', 'which', 'was', 'led', 'by', 'captain', 'a', '.'], ['mangroves', 'are', 'inhabited', 'by', 'a', 'variety', 'of', 'benthic', 'invertebrates', ',', 'such', 'as', 'polychaetes', ',', 'gastropods', ',', 'bivalves', ',', 'hermit', 'crabs', ',', 'brachyuran', 'crabs', 'and', 'sipuncula', '.'], ['1', 'brand', 'and', 'the', 'mark', '1', '0', 'brand', 'in', 'romania', '.'], ['one', 'of', 'her', 'earliest', 'publications', ',', '``', 'treason', 'in', 'november', \"''\", '(', '1', '9', '6', '1', ')', ',', 'deals', 'with', 'events', 'surrounding', 'the', 'gunpowder', 'plot', 'of', '1', '6', '0', '5', '.'], ['the', 'sultanate', 'eventually', 'became', 'increasingly', 'dependent', 'on', 'british', 'loans', 'and', 'political', 'advice', '.'], ['she', 'was', 'sold', 'in', '1', '9', '9', '3', 'for', 'conversion', 'into', 'a', 'short-range', 'cruise', 'ship', ',', 'under', 'the', 'names', 'mv', '``', 'her', 'majesty', 'm', ',', 'then', 'mv', '``', 'tara', 'ii', '.'], ['she', 'won', 'ehf', 'cup', 'in', '2', '0', '0', '5', '.'], ['most', 'of', 'the', 'native', 'americans', 'in', 'ohio', 'were', 'driven', 'out', 'or', 'killed', 'by', 'the', 'arriving', 'anglo', 'settlers', 'and', 'military', '.'], ['the', 'source', 'data', '(', '8', 'x', '8', ')', 'is', 'transformed', 'to', 'a', 'linear', 'combination', 'of', 'these', '6', '4', 'frequency', 'squares', '.'], ['he', 'enjoys', 'pulling', 'pranks', 'and', 'laughing', 'at', 'people', ',', 'but', 'hates', 'it', 'when', 'others', 'prank', 'or', 'laugh', 'at', 'him', ',', 'saying', 'that', '``', 'it', \"'s\", 'only', 'funny', 'when', 'it', 'happens', 'to', 'someone', 'else', '.', \"''\"], ['in', '1', '9', '8', '6', ',', 'while', 'environmental', 'testing', 'was', 'continuing', ',', 'a', 'winter', 'communal', 'roost', 'of', 'bald', 'eagles', ',', 'then', 'an', 'endangered', 'species', ',', 'was', 'discovered', 'at', 'the', 'rocky', 'mountain', 'arsenal', '.'], ['the', 'embassy', 'is', 'known', 'in', 'some', 'detail', 'because', 'the', 'financial', 'accounts', 'of', 'it', 'have', 'remained', '.'], ['as', 'of', '2', '0', '0', '2', 'the', 'community', 'numbered', 'twenty-eight', 'professed', 'nuns', ',', 'also', 'two', 'postulants', '(', 'the', 'monastic', 'term', 'for', 'those', 'resident', 'who', 'are', '``', 'thinking', 'about', 'a', 'vocation', \"''\", ')', '.'], ['the', 'communicable', 'disease', 'center', 'focused', 'on', 'infectious', 'diseases', ',', 'and', 'was', 'based', 'in', 'atlanta', 'due', 'to', 'its', 'initial', 'mission', 'of', 'eradicating', 'malaria', 'in', 'the', 'united', 'states', '.'], ['punt', 'and', 'dennis', 'later', 'became', 'resident', 'guest', 'comedians', 'on', 'shows', 'presented', 'by', 'jasper', 'carrott', ',', 'including', '``', 'carrott', 'confidential', \"''\", 'and', '``', 'canned', 'carrott', \"''\", 'with', 'punt', 'contributing', 'in', 'the', 'writing', 'team', 'as', 'well', '.'], ['the', 'museum', 'moved', 'the', 'tug', 'to', 'its', 'property', 'with', 'the', 'intention', 'of', 'restoring', 'it', ',', 'and', 'the', 'tug', 'was', 'listed', 'on', 'the', 'national', 'register', 'of', 'historic', 'places', 'in', '2', '0', '0', '3', '.'], ['he', 'also', 'gave', 'money', 'to', 'many', 'hospitals', 'including', 'tilbury', 'hospital', 'next', 'to', 'tilbury', 'dock', 'essex', ',', 'where', 'he', 'built', 'a', 'ward', 'which', 'was', 'named', 'after', 'him', '.'], ['he', 'originated', 'the', 'role', 'as', 'the', 'lover', 'in', '``', 'the', 'who', \"'s\", 'tommy', \"''\", 'in', 'its', 'european', 'premier', 'in', 'offenbach', 'germany', '.'], ['the', 'controller', 'was', 'endorsed', 'by', 'dr.', 'robert', 'grossman', ',', 'an', 'orthopaedic', 'surgeon', 'specialising', 'in', 'sports', 'injuries', '.'], ['they', 'were', 'buried', 'along', 'the', 'route', ',', 'which', 'became', 'known', 'as', 'the', 'trail', 'of', 'death', '.'], ['as', 'mystery', 'skulls', ',', 'dubuc', 'has', 'performed', 'across', 'the', 'country', 'and', 'has', 'held', 'many', 'shows', ',', 'including', 'a', 'performance', 'at', 'furry', 'weekend', 'atlanta', 'in', 'may', '2', '0', '1', '9', ',', 'and', 'a', 'summer', 'tour', 'to', 'promote', '``', 'back', 'to', 'life', \"''\", '.'], ['this', 'disruption', 'allowed', 'the', 'illithids', 'to', 'retreat', 'to', 'underground', 'strongholds', 'where', 'they', 'still', 'dwell', '.'], ['other', 'pecuniary', 'embarrassments', 'arose', 'from', 'a', 'contract', 'for', 'supplying', 'fish', 'to', 'venice', ',', 'into', 'which', 'paulus', 'had', 'somewhat', 'strangely', 'entered', 'with', 'the', 'government', '.'], ['a', 'myspace', 'blog', 'posted', 'on', 'november', '1', '7', ',', '2', '0', '0', '9', 'detailed', 'the', 'forthcoming', 'album', ',', '``', 'tapestry', 'of', 'webs', \"''\", '.'], ['in', '2', '0', '1', '8', ',', 'mark', 'shared', 'the', 'original', 'handwritten', 'lyrics', 'on', 'twitter', '.'], ['although', 'he', 'had', 'an', 'inconsistent', 'year', ',', 'forster', 'did', 'end', 'the', 'season', 'with', 'a', 'total', 'of', '1', '4', 'clean', 'sheets', ',', 'although', 'his', 'side', 'finished', 'eighth', 'in', 'the', 'league', 'and', 'failed', 'to', 'qualify', 'for', 'european', 'football', 'in', 'the', 'following', 'season', '.'], ['as', 'a', 'result', ',', 'in', '1', '7', '3', '3', ',', 'lü', \"'s\", 'corpse', 'and', 'that', 'of', 'one', 'of', 'his', 'sons', 'were', 'exhumed', 'and', 'mutilated', ',', 'another', 'son', 'was', 'executed', ',', 'his', 'grandsons', 'were', 'exiled', 'and', 'female', 'relatives', 'enslaved', ',', 'and', 'all', 'of', 'his', 'writings', 'were', 'banned', '.'], ['at', 'a', 'nightclub', 'the', 'protagonist', 'dances', 'and', 'flirts', 'with', 'another', 'club-goer', ',', 'who', 'then', 'attacks', 'her', 'when', 'she', 'leaves', 'the', 'club', '.'], ['she', 'ran', 'in', 'iqaluit', 'west', ',', 'which', 'had', 'the', 'highest', 'voter', 'turnout', 'at', '9', '0', '.', '2', 'per', 'cent', ',', 'but', 'was', 'defeated', 'by', 'incumbent', 'mla', 'paul', 'okalik', 'by', '4', '4', 'votes', '.'], ['after', 'a', 'period', 'of', 'touring', ',', 'in', '1', '9', '3', '4', 'the', 'band', 'accepted', 'a', 'booking', 'at', 'the', 'harlem', 'nightclub', 'the', 'cotton', 'club', 'for', 'their', 'revue', '``', 'cotton', 'club', 'parade', \"''\", 'starring', 'adelaide', 'hall', '.'], ['bakhchinyan', 'published', 'his', 'first', 'book', ',', '``', 'they', 'are', 'armenian', 'by', 'origin', \"''\", ',', 'in', '1', '9', '9', '3', '.'], ['interconnection', 'with', 'rigid', 'line', 'is', 'done', 'with', 'an', 'inner', 'bullet/inner', 'support', 'and', 'a', 'flange', 'or', 'connection', 'kit', '.'], ['young', 'larvae', 'feed', 'under', 'loose', 'bark', ',', 'penetrating', 'the', 'wood', 'through', 'dried', 'stubs', 'of', 'pruned', 'canes', '.'], ['curtis', 'fuller', 'also', 'confirms', 'that', 'it', 'was', 'indeed', 'a', 'tina', 'brooks', 'original', '.', \"''\"], ['on', '1', '5', 'november', '1', '9', '6', '4', ',', 'university', 'college', 'cork', 'won', 'the', 'championship', 'following', 'a', '0', '-', '1', '2', 'to', '1', '-', '0', '6', 'defeat', 'of', 'carbery', 'in', 'the', 'final', '.'], ['the', 'north-south', 'line', 'from', 'liederschiedt', 'to', 'rahling', 'delineates', 'the', 'very', 'sharp', 'divide', 'between', 'its', 'different', 'landscapes', '.'], ['on', '1', 'march', '1', '9', '0', '2', ',', 'the', 'people', 'were', 'called', 'to', 'choose', 'a', 'successor', 'to', 'sierra', '.'], ['he', 'was', 'a', 'graduate', 'student', 'at', 'new', 'york', 'university', 'from', '2', '0', '0', '9', 'to', '2', '0', '1', '1', 'with', 'a', 'master', \"'s\", 'degree', 'in', 'journalism', '.'], ['the', 'fiba', 'under-', '1', '7', 'basketball', 'world', 'cup', '(', 'formerly', 'fiba', 'under-', '1', '7', 'world', 'championship', ')', 'is', 'an', 'under-', '1', '7', 'world', 'basketball', 'championship', 'of', 'the', 'international', 'basketball', 'federation', '(', 'fiba', ')', '.'], ['a', '0', '-', '1', '6', 'to', '1', '-', '0', '7', 'gave', 'kerry', 'the', 'title', 'and', 'an', 'all-ireland', 'medal', 'for', \"o'shea\", '.'], ['development', 'began', 'in', '2', '0', '1', '4', ',', 'soon', 'after', 'the', 'release', 'of', '``', 'the', 'last', 'of', 'us', 'remastered', \"''\", '.'], ['it', 'does', \"n't\", 'take', 'offence', 'at', 'anything', 'but', 'will', 'charm', 'you', 'anyway', '.'], ['he', 'went', 'on', 'to', 'fabricate', 'the', 'detail', 'that', 'on', 'that', 'day', 'the', 'tribe', 'revealed', 'that', 'his', '``', 'great-great', 'grandparents', ',', 'homer', 'and', 'matilda', 'loudermilk', \"''\", 'were', 'listed', 'on', 'the', 'dawes', 'rolls', '(', 'the', 'citizenship', 'rolls', 'of', 'the', 'nation', ')', '.'], ['the', 'population', 'was', '2', '0', '0', 'as', 'of', '2', '0', '1', '0', '.'], ['additionally', ',', '1', '3', '%', 'of', 'pupils', 'received', 'special', 'education', 'services', ',', 'while', '6', '.', '9', '%', 'of', 'pupils', 'were', 'identified', 'as', 'gifted', '.'], ['in', '2', '0', '1', '5', ',', 'taylor', 'launched', 'the', 'environmental', 'fellows', 'program', '(', 'efp', ')', 'in', 'partnership', 'with', 'the', 'environmental', 'grantmakers', 'association', '.'], ['bozhenishki', 'urvich', 'is', 'a', 'ruined', 'fortress', 'on', 'the', 'northern', 'slopes', 'of', 'lakavishki', 'ridge', 'in', 'the', 'western', 'balkan', 'mountains', ',', '3', 'km', 'south', 'of', 'village', 'bozhenitsa', 'and', '2', '0', 'km', 'from', 'the', 'town', 'of', 'botevgrad', ',', 'bulgaria', '.'], ['its', 'customers', 'included', 'alcatel', ',', 'fujitsu', ',', 'lucent', ',', 'siemens', ',', 'and', 'marconi', '(', 'reltec', ')', '.'], ['the', 'lake', 'is', 'endorheic', 'and', 'has', 'a', 'large', 'catchment', ',', 'and', 'a', 'lava', 'flow', 'forms', 'its', 'southern', 'shore', '.'], ['mrs', 'blight', 'noted', 'that', 'mrs', 'veitch', 'was', 'having', 'difficulty', 'bringing', 'up', 'both', 'of', 'her', 'children', 'and', 'had', 'intended', 'to', 'send', 'her', 'daughter', 'to', 'feilding', ',', 'a', 'northern', 'settlement', 'in', 'the', 'manawatu', 'district', 'in', 'the', 'north', 'island', 'of', 'new', 'zealand', '.'], ['he', 'worked', 'there', 'for', '2', '0', 'years', 'and', 'established', 'a', 'well-equipped', 'and', 'well-staffed', 'research', 'unit', 'to', 'study', 'the', 'complications', 'of', 'insensitive', 'hands', 'and', 'feet', ',', 'their', 'prevention', 'and', 'management', '.'], ['strübin', 'played', 'second', 'for', 'stöckli', 'at', 'the', '1', '9', '9', '8', 'world', 'junior', 'curling', 'championships', 'where', 'they', 'picked', 'up', 'a', 'bronze', 'medal', '.'], ['thereafter', 'he', 'graduated', 'from', 'st.', 'stephen', \"'s\", 'college', ',', 'delhi', 'and', 'afterward', 'completed', 'a', 'master', 'of', 'business', 'administration', 'degree', 'from', 'buckingham', 'university', ',', 'uk', 'in', '1', '9', '9', '0', '.'], ['hunt', ',', 'who', 'was', 'a', 'photographer', 'working', 'throughout', 'alaska', 'in', 'the', 'early', '1', '9', '0', '0', 's', ',', 'are', 'also', 'on', 'the', 'main', 'campus', '.'], ['the', 'last', 'is', 'the', 'most', 'celebrated', 'and', 'useful', 'of', 'all', 'his', 'works', '.'], ['today', ',', 'chij', 'schools', 'can', 'be', 'found', 'in', 'most', 'states', 'and', 'many', 'major', 'cities', 'and', 'they', 'continue', 'to', 'educate', 'local', 'girls', 'of', 'all', 'races', 'and', 'religion', '.'], ['november', 'saw', 'an', 'arrangement', 'of', 'another', 'event', 'which', 'met', 'with', 'positive', 'reception', '.'], ['balestrate', 'borders', 'the', 'following', 'municipalities', ':', 'alcamo', ',', 'partinico', ',', 'trappeto', '.'], ['according', 'to', 'iranian', 'historian', 'rashid-al-din', 'hamadani', ',', 'of', 'these', '1', '2', 'governors', ',', '8', 'were', 'muslims', ';', 'in', 'the', 'remaining', 'districts', ',', 'the', 'vice-governors', 'were', 'muslim', '.'], ['some', 'television', 'prints', 'and', 'videocassette', 'versions', 'of', 'the', 'film', 'were', 'missing', 'some', 'of', 'the', 'songs', 'written', 'and', 'performed', 'by', 'clear', 'light', 'with', 'barry', 'mcguire', ',', 'with', 'the', 'songs', 'replaced', 'with', 'generic', 'stock', 'instrumental', 'music', 'because', 'of', 'music', 'copyright', 'issues', '.'], ['a', 'book', 'on', 'anantharamakrishnan', 'was', 'released', 'during', 'his', 'birth', 'centenary', 'on', '1', '2', 'november', '2', '0', '0', '5', 'by', 'former', 'supreme', 'court', 'of', 'india', 'judge', 'ratnavel', 'pandian', 'in', 'the', 'presence', 'of', 'his', 'sons', ',', 'a.', 'sivasailam', 'and', 'a.', 'krishnamoorthy', '.'], ['on', 'september', '2', '9', ',', '1', '9', '3', '8', ',', 'around', 'sixty', 'of', 'disney', \"'s\", 'artists', 'gathered', 'for', 'a', 'two-and-a-half', 'hour', 'piano', 'concert', 'while', 'he', 'provided', 'a', 'running', 'commentary', 'about', 'the', 'new', 'musical', 'feature', '.'], ['the', 'government', 'of', 'south', 'africa', ',', 'and', 'other', 'analysts', 'maintain', 'that', 'farm', 'attacks', 'are', 'part', 'of', 'a', 'broader', 'crime', 'problem', 'in', 'south', 'africa', ',', 'and', 'do', 'not', 'have', 'a', 'racial', 'motivation', '.'], ['he', 'wrote', 'comic', 'operas', 'and', 'incidental', 'music', 'for', 'plays', ',', 'but', 'was', 'most', 'widely', 'known', 'for', 'his', 'choral', 'music', '.'], ['select', 'a', 'reference', 'point', 'r', 'and', 'compute', 'the', 'relative', 'position', 'and', 'velocity', 'vectors', ','], ['the', 'employees', 'were', 'made', 'redundant', 'on', '2', '6', 'july', '2', '0', '0', '6', '.'], ['the', 'complex', 'includes', 'also', 'the', 'islets', 'and', 'rocks', 'of', 'diakopo', ',', 'diaplo', ',', 'karavi', ',', 'kastrino', ',', 'leipso', ',', 'ostrako', ',', 'plaka', ',', 'plateia', 'and', 'tracheia', '.'], ['in', 'the', 'same', 'month', ',', 'he', 'brought', 'in', 'a', 'bill', 'that', 'would', 'allow', 'the', 'region', 'of', 'south', 'tyrol', 'to', 'hold', 'a', 'referendum', ',', 'where', 'the', 'local', 'electorate', 'could', 'decide', 'whether', 'to', 'remain', 'within', 'the', 'republic', 'of', 'italy', ',', 'take', 'independence', ',', 'or', 'become', 'part', 'of', 'austria', 'again', '.'], ['while', 'employed', 'effectively', 'against', 'their', 'austro-hungarian', 'counterparts', 'during', 'the', 'initial', 'offensives', 'across', 'the', 'isonzo', 'river', ',', 'the', 'italian', 'mounted', 'forces', 'ceased', 'to', 'have', 'a', 'significant', 'role', 'as', 'the', 'front', 'shifted', 'into', 'mountainous', 'terrain', '.'], ['the', 'population', 'of', 'ormancık', 'is', '4', '8', '4', 'as', 'of', '2', '0', '1', '1', '.'], ['7', '4', 'fatalities', 'have', 'been', 'confirmed', 'worldwide', 'in', '2', '0', '1', '4', ':', '4', '7', 'in', 'the', 'united', 'states', ',', '2', '0', 'in', 'bangladesh', ',', 'three', 'in', 'brazil', 'and', 'two', 'in', 'australia', 'and', 'russia', '.'], ['the', 'john', 'w.', 'lavelle', 'preparatory', 'charter', 'school', 'opened', 'in', 'september', '2', '0', '0', '9', 'and', 'is', 'the', 'first', 'charter', 'school', '(', 'a', 'school', 'that', 'is', 'publicly', 'funded', ',', 'but', 'privately', 'run', ')', 'on', 'staten', 'island', '.'], ['a', 'financial', 'recovery', 'plan', 'was', 'delivered', 'in', 'the', '2', '0', '1', '9', '/', '2', '0', 'financial', 'year', '.'], ['from', 'the', '1', '8', '8', '5', 'election', 'he', 'sat', 'for', 'the', 'hoxton', 'division', 'of', 'shoreditch', '.'], ['after', 'the', 'unification', ',', 'plovdiv', 'remained', 'the', 'second', 'most', 'populous', 'city', 'in', 'bulgaria', 'after', 'the', 'capital', 'sofia', '.'], ['gen.', 'beverly', 'robertson', 'was', 'sent', 'ahead', 'to', 'dispatch', 'the', 'federal', 'cavalry', 'guarding', 'the', 'fords', 'of', 'the', 'rapidan', 'river', 'and', 'occupying', 'madison', 'court', 'house', ',', 'threatening', 'the', 'confederates', 'left', 'flank', 'as', 'they', 'marched', 'northward', '.'], ['it', 'is', 'part', 'of', 'the', 'modesto', 'metropolitan', 'statistical', 'area', '.'], ['the', 'company', 'was', 'located', 'in', 'louisville', ',', 'kentucky', 'near', 'the', 'university', 'of', 'louisville', 'campus', '.'], ['cordelia', 'is', 'unable', 'to', 'see', 'that', 'the', 'woman', 'is', 'fred', 'from', 'her', 'vision', ',', 'crazy', 'after', 'all', 'her', 'years', 'in', 'pylea', '.'], ['after', 'his', 'death', 'in', '1', '6', '1', '9', ',', 'his', 'domain', 'was', 'divided', '.'], ['the', 'village', ',', 'which', 'is', 'one', 'of', 'around', '2', '0', '0', 'lost', 'settlements', 'in', 'norfolk', ',', 'was', 'abandoned', 'in', 'the', '1', '6', 'th', 'century', ',', 'probably', 'as', 'the', 'consequence', 'of', 'the', 'land', 'being', 'enclosed', 'by', 'the', 'landlord', 'of', 'that', 'time', '.'], ['the', 'first', 'moran', 'eye', 'center', 'building', 'was', 'constructed', 'in', '1', '9', '9', '3', 'with', 'a', 'lead', 'gift', 'from', 'university', 'of', 'utah', 'alumnus', 'john', 'a.', 'moran', '.'], ['gang', 'wrestled', 'at', 'heroes', 'of', 'wrestling', 'event', 'on', 'october', '1', '0', ',', '1', '9', '9', '9', 'against', 'abdullah', 'the', 'butcher', 'in', 'a', 'double', 'count', 'out', '.'], ['norman', 'simmons', '(', 'born', 'october', '6', ',', '1', '9', '2', '9', ')', 'is', 'an', 'american', 'arranger', ',', 'composer', ',', 'educator', ',', 'and', 'most', 'prominently', 'a', 'pianist', 'who', 'has', 'worked', 'extensively', 'with', 'helen', 'humes', ',', 'carmen', 'mcrae', ',', 'sarah', 'vaughan', ',', 'anita', \"o'day\", ',', 'and', 'joe', 'williams', 'among', 'others', '.'], ['buying', 'another', 'box', 'with', 'elegant', 'clothing', 'cut-outs', 'to', 'fit', 'over', 'the', 'dolls', ',', 'the', 'customer', 'could', 'transform', 'them', '``', 'after', 'the', 'receipt', 'was', 'sold', '.', \"''\"], ['helfgott', \"'s\", 'proof', 'has', 'not', 'yet', 'appeared', 'in', 'a', 'peer-reviewed', 'publication', ',', 'though', 'was', 'accepted', 'for', 'publication', 'in', 'the', '``', 'annals', 'of', 'mathematics', 'studies', \"''\", 'series', 'in', '2', '0', '1', '5', ',', 'and', 'has', 'been', 'undergoing', 'further', 'review', 'and', 'revision', 'since', '.'], ['the', 'bread', 'ration', 'had', 'already', 'dropped', 'from', '2', ',', '2', '0', '0', 'to', '1', ',', '8', '0', '0', 'and', 'then', 'to', '1', ',', '4', '0', '0', 'grams', 'per', 'week', '.'], ['ministry', 'of', 'youth', 'and', 'sports', 'of', 'azerbaijan', 'has', 'declared', 'that', 'the', 'stadium', 'will', 'be', 'renewed', '.'], ['paul', ',', 'who', 'was', 'previously', 'stationed', 'in', 'england', ',', 'now', 'serves', 'the', 'army', 'in', 'france', 'and', 'sees', 'his', 'wife', 'for', 'the', 'first', 'time', 'in', 'years', '.'], ['in', '2', '0', '0', '2', ',', 'when', 'state', 'representative', 'nancy', 'argenziano', 'opted', 'to', 'run', 'for', 'a', 'seat', 'in', 'the', 'florida', 'senate', 'rather', 'than', 'seek', 're-election', 'to', 'the', 'state', 'house', ',', 'dean', 'ran', 'to', 'succeed', 'her', 'as', 'a', 'republican', 'in', 'the', '4', '3', 'rd', 'district', '.'], ['unlike', 'european', 'immigrants', 'who', 'settled', 'permanently', 'in', 'the', 'new', 'world', ',', 'many', 'pakistanis', 'who', 'emigrated', 'considered', 'themselves', 'to', 'be', '``', 'sojourners', \"''\", ',', 'who', 'left', 'to', 'earn', 'money', 'abroad', 'but', 'not', 'to', 'settle', ',', 'or', 'were', 'students', 'who', 'intended', 'to', 'return', 'to', 'pakistan', 'when', 'their', 'degree', 'programs', 'were', 'completed', '.'], ['the', 'federation', 'of', 'sports', 'at', 'altitude', 'was', 'founded', 'by', 'marino', 'giancometti', 'who', 'with', 'other', 'fellow', 'climbers', 'conducted', 'high-altitude', 'races', 'across', 'the', 'world', \"'s\", 'most', 'famous', 'mountain', 'ranges', 'the', 'himalayas', ',', 'rockies', ',', 'mount', 'kenya', ',', 'and', 'the', 'mexican', 'volcanoes', '.'], ['onny', 'parun', 'and', 'evonne', 'goolagong', 'won', 'the', 'singles', 'titles', '.'], ['he', 'formed', 'the', 'san', 'francisco', 'ship', 'building', 'company', '(', 'in', 'oakland', ',', 'california', ')', ',', 'and', 'hired', 'alan', 'macdonald', 'and', 'victor', 'poss', 'to', 'design', 'the', 'first', 'american', 'ferrocement', 'ship', ',', 'a', '6', ',', '1', '2', '5', '-ton', 'steamer', 'named', 'the', '.'], ['the', 'house', 'is', 'recorded', 'in', 'the', 'national', 'heritage', 'list', 'for', 'england', 'as', 'a', 'designated', 'grade', 'i', 'listed', 'building', '.'], ['``', 'variety', \"''\", 'observed', '``', 'miss', 'clark', 'gives', 'a', 'good', 'performance', 'and', 'she', 'sings', 'the', 'beautiful', 'songs', 'like', 'a', 'nightingale', '.', \"''\"], ['it', 'stars', 'andrea', 'riseborough', ',', 'demi', 'moore', ',', 'harry', 'melling', ',', 'and', 'karl', 'glusman', '.'], ['his', 'second', 'wife', ',', 'maria', 'teresa', 'de', 'carvalho', 'de', 'albuquerque', 'schmidt', ',', 'and', 'had', 'four', 'children', ':', 'pedro', 'jaime', 'marque', ',', 'guilherme', 'infante', 'de', 'lacerda', ',', 'patrícia', 'marques', 'and', 'diogo', 'schmidt', '.'], ['the', '2', 'nd', 'guards', 'reserve', 'division', '(', '``', '2', '.'], ['known', 'to', 'many', 'as', '``', 'the', 'wizard', ',', 'lee', \"'s\", \"''\", 'designs', 'achieved', 'notoriety', 'in', 'the', '1', '9', '7', '0', 's', ',', 'with', '``', 'chutzpah', \"''\", 'and', '``', 'merlin', \"''\", 'having', 'won', 'the', 'transpacific', 'yacht', 'race', 'from', 'los', 'angeles', 'to', 'honolulu', 'many', 'times', '.'], ['mullett', 'lake', 'is', 'a', 'lake', 'in', 'cheboygan', 'county', 'in', 'the', 'u.s.', 'state', 'of', 'michigan', '.'], ['unfortunately', ',', 'she', 'begins', 'to', 'suspect', 'that', 'one', 'of', 'her', 'suitors', 'might', 'be', 'a', 'deadly', 'cyber', 'stalker', '.'], ['she', 'along', 'with', 'empress', 'schuck', ',', 'enchong', 'dee', 'and', 'sam', 'concepcion', 'are', 'referred', 'to', 'as', 'asap', \"'s\", \"'dance\", 'quad', \"'\", '.'], ['in', '2', '0', '1', '0', ',', 'the', 'park', 'district', 'signed', 'a', 'lease', 'for', 'the', 'adjacent', 'hardy', 'road', 'landfill', ',', 'bringing', 'the', 'park', 'to', 'its', 'current', 'size', 'of', '6', '5', '5', 'acres', '.'], ['the', 'article', 'noted', 'the', 'game', \"'s\", 'high', 'level', 'of', 'difficulty', ',', 'saying', 'the', 'game', '``', 'threw', 'up', 'an', 'immense', 'challenge', 'even', 'for', 'the', 'veteran', 'gamer', ',', 'and', 'almost', 'dared', 'you', 'to', 'complete', 'it', 'mentally', 'and', 'physically', 'intact', \"''\", '.'], ['1', '0', '8', '0', '8', 'refers', 'to', 'page', '1', '0', '8', '0', '8', 'of', 'the', '4', '2', 'nd', 'volume', '(', 'calendar', 'year', '2', '0', '1', '8', ')', '.'], ['to', 'accomplish', 'this', ',', 'the', 'collector', 'or', 'holding-institution', 'must', 'take', 'into', 'consideration', 'proper', 'housing', 'containers', ',', 'as', 'well', 'as', 'environmental', 'conditions', 'necessary', 'to', 'prevent', 'damages', '.'], ['this', 'species', 'is', 'currently', 'threatened', 'by', 'loss', 'of', 'habitat', 'and', 'trapping', 'for', 'plumage', 'or', 'the', 'pet', 'trade', '.'], ['bockel', 'won', 'ironman', '7', '0', '.', '3', 'florida', 'in', 'may', '2', '0', '0', '9', ',', 'marking', 'the', 'first', 'luxembourgish', 'to', 'ever', 'win', 'an', 'ironman', 'event', '.'], ['in', '2', '0', '0', '6', ',', 'the', 'oscar', 'de', 'la', 'renta', 'label', 'diversified', 'into', 'bridal', 'wear', '.'], ['he', 'finished', 'fourth', 'in', 'the', 'finale', 'on', 'day', '8', '4', '.'], ['moorehead', 'appeared', 'on', 'hundreds', 'of', 'individual', 'broadcasts', 'across', 'a', 'radio', 'career', 'that', 'spanned', 'from', '1', '9', '2', '6', 'to', 'her', 'final', 'two', 'appearances', ',', 'on', '``', 'cbs', 'radio', 'mystery', 'theatre', \"''\", 'in', '1', '9', '7', '4', '.'], ['of', 'particular', 'importance', 'are', 'also', 'the', 'church', 'of', 'st.', 'servatius', 'in', 'quedlinburg', ',', 'and', 'also', 'luebeck', 'cathedral', ',', 'brunswick', 'cathedral', ',', 'hildesheim', 'cathedral', ',', 'st.', 'michael', 'in', 'hildesheim', ',', 'trier', 'cathedral', 'and', 'bamberg', 'cathedral', ',', 'whose', 'last', 'phase', 'of', 'construction', 'falls', 'in', 'the', 'gothic', 'period', '.'], ['by', 'the', '1', '9', '7', '0', 's', ',', 'a', 'national', 'institutes', 'of', 'health', 'initiative', ',', 'the', 'anticonvulsant', 'screening', 'program', ',', 'headed', 'by', 'j.', 'kiffin', 'penry', ',', 'served', 'as', 'a', 'mechanism', 'for', 'drawing', 'the', 'interest', 'and', 'abilities', 'of', 'pharmaceutical', 'companies', 'in', 'the', 'development', 'of', 'new', 'anticonvulsant', 'medications', '.'], ['the', 'clark', 'sanitary', 'landfill', 'began', 'operations', 'in', '2', '0', '0', '2', '.'], ['in', 'the', 'early', '1', '4', 'th', 'century', ',', 'pirate', 'mercenaries', 'of', 'the', 'catalan', 'grand', 'company', 'repeatedly', 'raided', 'the', 'holy', 'mountain', ',', 'while', 'looting', 'and', 'sacking', 'numerous', 'monasteries', ',', 'stealing', 'treasures', 'and', 'christian', 'relics', ',', 'and', 'terrorizing', 'monks', '.'], ['bernard', 'is', 'eventually', 'recalled', 'to', 'london', ',', 'and', 'sent', 'on', 'a', 'mission', 'to', 'vienna', 'to', 'pick', 'up', 'a', 'package', 'from', 'a', 'stamp', 'auction', '.'], ['felle', 'was', 'born', 'in', 'bari', 'and', 'received', 'her', 'diplomas', 'in', 'piano', 'and', 'singing', 'from', 'the', 'city', \"'s\", 'conservatorio', 'niccolò', 'piccinni', '.'], ['in', 'the', 'better', 'weather', 'before', '2', '2', 'october', ',', 'the', 'royal', 'flying', 'corps', '(', 'rfc', ')', 'flew', 'many', 'reconnaissance', 'and', 'artillery-observation', 'sorties', '.'], ['traffic', ',', 'notably', 'coal', ',', 'east', 'of', 'langwith', 'junction', 'was', 'heavy', ',', 'but', 'little', 'materialised', 'on', 'the', 'chesterfield', 'to', 'langwith', 'section', '.'], ['the', 'nord-stream-pipeline', 'was', 'a', '7', '.', '4', 'bn', '€', 'pipeline', 'project', 'finished', 'in', '2', '0', '1', '1', '.'], ['nariampara', 'puthiyakavu', 'devikshethram', 'is', 'a', 'hindu', 'temple', 'located', 'in', 'nariampara', 'near', 'kattappana', 'in', 'idukki', 'district', 'of', 'kerala', 'state', ',', 'india', '.'], ['he', 'received', 'prestigious', 'commissions', 'and', 'rose', 'quickly', 'in', 'rank', '.'], ['nevertheless', ',', 'the', 'considerable', 'amount', 'of', 'bone', 'loss', 'relative', 'to', 'the', 'young', 'age', 'of', 'the', 'individual', 'in', 'agp', 'necessitates', 'an', 'often', 'more', 'aggressive', 'treatment', 'approach', ',', 'to', 'halt', 'further', 'periodontal', 'destruction', 'and', 'regain', 'as', 'much', 'periodontal', 'attachment', 'as', 'possible', '.'], ['cawfe', 'incorporates', 'data', 'from', 'the', 'three', 'main', 'environmental', 'factors', 'that', 'affect', 'wildland', 'fire', 'behavior', ':', 'weather', ',', 'fuel', 'characteristics', ',', 'and', 'topography', '.'], ['the', 'purpose', 'of', 'the', 'needle', 'is', 'to', 'penetrate', 'the', 'membrane', 'of', 'the', 'cyst', ',', 'so', 'that', 'the', 'cyst', 'will', 'deflate', '.'], ['in', 'recent', 'years', ',', 'cfs', 'has', 'hosted', 'student', 'q', '&', 'amp', ';', 'as', 'with', 'filmmakers', 'such', 'as', 'nick', 'hornby', ',', 'george', 'amponsah', '(', 'director', 'of', '``', 'the', 'hard', 'stop', \"''\", ')', ',', 'and', 'sir', 'ronald', 'harwood', '.'], ['as', 'a', 'congressman', ',', 'johnson', 'had', 'long', 'lobbied', 'for', 'a', 'presidential', 'pardon', 'for', 'parr', ',', 'who', 'had', 'been', 'convicted', 'of', 'tax', 'evasion', 'in', '1', '9', '3', '2', '.'], ['oil', 'ministry', 'did', 'not', 'approve', 'company', \"'s\", 'us', '$', '7', '.', '2', 'billion', 'stake', 'in', 'deal', 'with', 'bp', '.'], ['and', 'organized', 'drug', 'gangs', 'such', 'as', 'the', '``', '6', '9', 'mob', \"''\", ',', 'with', 'increases', 'in', 'arrests', ',', 'prosecutions', ',', 'and', 'imprisonment', '.'], ['he', 'received', 'special', 'training', 'as', 'a', 'scholar', 'of', 'the', 'association', 'for', 'overseas', 'technical', 'scholarship', '(', 'aots', ')', 'in', 'tokyo', ',', 'japan', 'in', '1', '9', '9', '9', '.'], ['weidenhammer', 'and', 'krebs', '(', '1', '9', '3', '0', ')', 'commented', ',', 'that', 'this', '``', 'book', 'is', 'mainly', 'concerned', 'with', 'the', 'trust', 'problem', '.'], ['the', 'origin', 'of', 'language', '(', 'spoken', 'and', 'signed', ',', 'as', 'well', 'as', 'language', 'related', 'technological', 'systems', 'such', 'as', 'writing', ')', ',', 'its', 'relationship', 'with', 'human', 'evolution', ',', 'and', 'its', 'consequences', ',', 'have', 'been', 'a', 'centuries-long', 'subject', 'of', 'study', 'for', 'the', 'human', 'race', '.'], ['the', 'third', 'public', 'reading', 'of', 'the', 'declaration', 'of', 'independence', 'took', 'place', 'in', 'new', 'brunswick', ',', 'but', 'many', 'east', 'jerseyans', 'became', 'tories', '.'], ['in', 'the', 'case', 'of', 'complex', 'quadratic', 'polynomial', 'one', 'can', 'compute', 'this', 'map', 'using', 'laurent', 'series', 'about', 'infinity'], ['through', 'the', 'leadership', 'of', 'kevin', 'mcfadden', ',', 'the', 'self-governed', 'organization', 'was', 'absorbed', 'by', 'the', 'virginia', 'foundation', 'for', 'the', 'humanities', 'during', 'this', 'period', 'and', 'then', 'in', '2', '0', '1', '8', 'became', 'a', 'part', 'of', 'the', 'virginia', 'center', 'for', 'the', 'book', '.'], ['in', 'the', 'present', 'day', ',', 'will', 'wonders', 'what', 'went', 'wrong', '.'], ['the', 'movement', 'was', 'spread', 'throughout', 'the', 'area', 'by', 'baptist', 'preacher', 'richard', 'g.', 'spurling', '(', 'senior', ')', ',', 'and', 'the', 'use', 'of', '``', 'latter', 'rain', \"''\", 'to', 'describe', 'the', 'movement', 'originated', 'at', 'this', 'time', '.'], ['this', 'subsidiary', ',', 'which', 'was', 'founded', 'in', '2', '0', '0', '6', ',', 'is', 'a', 'front-end', 'factory', 'manufacturing', 'logic', 'and', 'power', 'semiconductors', 'for', 'the', 'automotive', 'and', 'industrial', 'market', '.'], ['however', ',', 'the', 'party', 'did', 'agree', 'to', 'giving', 'the', 'palestinian', 'arabs', 'self-governing', 'autonomy', ',', 'subject', 'to', 'israel', \"'s\", 'authority', 'only', 'in', 'matters', 'of', 'security', 'and', 'foreign', 'affairs', '(', 'such', 'as', 'in', 'borders', 'and', 'diplomacy', ')', ',', 'without', 'the', 'dismantling', 'of', 'the', 'jewish', 'settlements', '.'], ['by', '1', '3', '0', '0', ',', 'the', 'friars', 'and', 'local', 'priests', 'staged', 'the', 'passion', 'plays', 'during', 'holy', 'week', ',', 'which', 'depicted', 'jews', '(', 'in', 'contemporary', 'dress', ')', 'killing', 'christ', ',', 'according', 'to', 'gospel', 'accounts', '.'], ['the', 'school', 'site', 'is', 'now', 'occupied', 'by', 'the', 'royal', 'australasian', 'college', 'of', 'surgeons', '.'], ['full', 'yearly', 'tuition', 'at', 'creighton', 'prep', 'is', 'estimated', 'to', 'cost', 'approximately', '$', '1', '7', ',', '0', '0', '0', 'with', 'a', 'portion', 'of', 'this', 'cost', 'being', 'subsidized', 'by', 'donations', ',', 'bringing', 'the', 'average', 'tuition', 'price', 'at', 'creighton', 'prep', 'to', 'approximately', '$', '1', '1', ',', '1', '5', '5', '.'], ['hence', 'the', 'two-dimensional', 'sphere', 'admits', 'a', 'unique', 'complex', 'structure', 'turning', 'it', 'into', 'a', 'one-dimensional', 'complex', 'manifold', '.'], ['in', 'line', 'with', 'the', 'supposed', 'mechanism', 'of', 'action', ',', 'it', 'is', 'not', 'merely', 'the', 'introduction', 'of', 'a', 'platform', 'switch', ',', 'but', 'the', '``', 'magnitude', \"''\", 'of', 'the', 'implant-abutment', 'diameter', 'mismatch', ',', 'that', 'makes', 'a', 'difference', '.'], ['as', 'of', '2', '0', '1', '3', ',', 'carhartt', 'had', 'sales', 'of', 'about', '$', '6', '0', '0', 'million', 'per', 'year', '.'], ['hansen', 'was', 'sponsored', 'by', 'the', 'norwegian', 'turnverein', 'at', 'the', 'olympics', 'in', '1', '9', '0', '4', '.'], ['the', 'project', 'also', 'won', 'an', 'award', 'of', 'merit', 'from', '``', 'engineering', 'news-record', \"''\", 'in', 'the', 'government/public', 'building', 'category', 'of', 'its', 'california', \"'s\", 'best', 'projects', 'competition', 'for', '2', '0', '1', '3', '.'], ['in', '1', '9', '1', '7', ',', 'prepeluh', 'became', 'the', 'leader', 'of', 'the', 'internal', 'opposition', 'against', 'the', 'main', 'current', 'of', 'the', 'yugoslav', 'social', 'democratic', 'party', ',', 'which', 'continued', 'to', 'put', 'the', 'social', 'question', 'before', 'the', 'issue', 'of', 'national', 'emancipation', '.'], ['in', 'total', ',', '``', 'n', \"''\", '+', '1', 'runs', 'of', 'the', 'algorithm', 'are', 'required', ',', 'where', '``', 'n', \"''\", 'is', 'the', 'number', 'of', 'distinct', 'variables', 'in', 'φ', '.'], ['the', 'first', 'casino', 'appears', 'in', 'this', 'installment', 'as', 'a', 'place', 'to', 'play', 'several', 'mini-games', '(', 'slot', 'machine', ',', 'poker', ',', 'and', 'the', 'monster', 'betting', 'that', 'was', 'introduced', 'in', '``', 'dragon', 'warrior', 'iii', \"''\", ')', 'using', 'tokens', 'that', 'could', 'be', 'traded', 'for', 'special', 'items', '.'], ['the', 'word', \"'tour\", \"'\", 'in', 'scots', 'refers', 'to', 'a', \"'tower\", \"'\", 'and', \"'kirk\", \"'\", 'to', 'a', 'parish', 'church', '.'], ['he', 'was', 'educated', 'at', 'eton', 'college', 'and', 'christ', 'church', ',', 'oxford', '.'], ['it', 'had', 'a', 'market', 'capitalisation', 'of', 'approximately', '£', '1', '6', '.', '9', 'billion', 'as', 'of', '2', '3', 'december', '2', '0', '1', '1', ',', 'making', 'it', 'the', '2', '4', 'th-largest', 'company', 'on', 'the', 'london', 'stock', 'exchange', '.'], ['throughout', '1', '9', '4', '3', ',', 'the', '3', '4', '4', 'th', 'received', 'new', 'graduates', 'from', 'the', 'air', 'training', 'command', \"'s\", 'twin-engine', 'flight', 'schools', 'and', 'provided', 'transition', 'and', 'combat', 'training', 'to', 'pilots', 'and', 'new', 'flight', 'crews', 'assembled', 'from', 'various', 'usaaf', 'technical', 'schools', '.'], ['mika', 'partanen', '(', 'born', 'october', '1', '8', ',', '1', '9', '9', '2', ')', 'is', 'a', 'finnish', 'ice', 'hockey', 'player', '.'], ['the', 'battle', 'of', 'kalavrye', '(', 'also', 'kalavryai', 'or', 'kalavryta', ')', 'was', 'fought', 'in', '1', '0', '7', '8', 'between', 'the', 'byzantine', 'imperial', 'forces', 'of', 'general', '(', 'and', 'future', 'emperor', ')', 'alexios', 'komnenos', 'and', 'the', 'rebellious', 'governor', 'of', 'dyrrhachium', ',', 'nikephoros', 'bryennios', 'the', 'elder', '.'], ['when', 'paroled', 'he', 'took', 'advantage', 'of', 'the', 'circumstance', 'to', 'make', 'his', 'first', 'visit', 'to', 'kentucky', 'on', 'horseback', 'over', 'the', 'mountains', ',', 'and', 'then', 'located', 'the', 'lands', 'on', 'which', 'he', 'subsequently', 'lived', 'in', 'woodford', '.'], ['players', 'can', 'trigger', 'their', 'own', 'traps', ',', 'resulting', 'in', 'no', 'harmful', 'effects', ',', 'but', 'the', 'trap', 'will', 'instantly', 'disappear', '.'], ['the', 'audience', 'will', 'see', 'her', 'in', 'a', 'new', 'light', '.', \"''\"], ['in', 'the', 'earliest', 'seasons', ',', 'his', 'laziness', 'was', 'due', 'to', 'his', 'obsessive', 'focus', 'on', 'his', 'rv', '.'], ['he', 'had', 'surrendered', 'to', 'police', 'in', 'june', '2', '0', '1', '8', 'after', 'he', 'was', 'charged', 'and', 'began', 'serving', 'time', 'in', 'prison', '.'], ['in', '1', '9', '8', '1', ',', 'rinaldini', 'appeared', 'in', 'the', 'french', 'open', 'and', 'wimbledon', 'championships', 'but', 'was', 'beaten', 'in', 'the', 'opening', 'round', 'at', 'both', 'events', ',', 'by', 'pavel', 'složil', 'and', 'tim', 'gullikson', 'respectively', '.'], ['the', 'sisters', 'are', 'informally', 'known', 'as', 'the', '``', 'roesbrugge', 'dames', \"''\", '-', 'the', 'roesbrugge', 'ladies', '.'], ['his', 'proposals', 'to', 'give', 'the', 'various', 'peoples', 'in', 'the', 'netherlands', ',', 'still', 'under', 'habsburg', 'rule', ',', 'more', 'say', 'in', 'their', 'governmental', 'affairs', 'were', 'rejected', '.'], ['desiring', 'a', 'more', 'rural', 'setting', ',', 'rowson', 'would', 'move', 'her', 'school', 'to', 'medford', ',', 'then', 'to', 'newton', ',', 'massachusetts', ',', 'before', 'returning', 'it', 'to', 'boston', 'in', '1', '8', '0', '9', '.'], ['having', 'sworn', 'that', 'the', 'charges', 'were', 'untrue', ',', 'the', 'three', 'collected', 'damages', 'from', 'the', 'magazine', '.'], ['however', ',', 'all', 'of', 'the', 'characters', 'are', 'playable', 'in', 'the', 'game', 'boy', 'advance', 'version', '.'], ['after', 'the', 'german', 'invasion', 'of', 'the', 'soviet', 'union', 'in', '1', '9', '4', '1', 'during', 'world', 'war', 'ii', ',', 'the', 'soviet', 'government', 'considered', 'the', 'volga', 'germans', 'potential', 'collaborators', ',', 'and', 'deported', 'many', 'of', 'them', 'eastward', ',', 'where', 'thousands', 'died', '.'], ['due', 'to', 'its', 'location', 'north', 'of', 'the', 'potomac', 'river', ',', 'fort', 'greble', 'was', 'considered', 'a', 'rear-line', 'fort', '.'], ['mega', 'man', 'and', 'bass', 'had', 'to', 'battle', 'him', 'and', 'many', 'robots', 'that', 'had', 'joined', 'his', 'army', ';', 'when', 'either', 'one', 'finally', 'defeats', 'king', ',', 'it', \"'s\", 'revealed', 'that', 'he', 'had', 'actually', 'been', 'programmed', 'to', 'form', 'a', 'rebellion', 'by', 'dr.', 'wily', '.'], ['the', 'mate', '3', '0', \"'s\", 'camera', 'design', 'is', 'the', 'same', 'as', 'the', 'mate', '3', '0', \"'s\", ',', 'and', 'has', 'the', 'laser-autofocus', 'in', 'place', 'of', 'the', 'time-of-flight', 'sensor', '.'], ['employees', 'of', 'epic', 'systems', 'each', 'select', 'a', 'personal', 'charity', ',', 'and', 'every', 'month', ',', 'epic', 'donates', '$', '1', '0', '0', 'to', 'four', 'employee', 'chosen', 'charities', '.'], ['these', 'land', 'masses', 'once', 'connected', 'with', 'australia', 'as', 'the', 'gondwanaland', 'supercontinent', '.'], ['at', 'the', 'service', 'of', 'the', 'prime', 'minister', 'of', 'spain', '.'], ['after', 'leaving', 'college', 'in', '1', '9', '4', '7', 'gangadharan', 'formed', 'the', 'kerala', 'socialist', 'party', '(', 'ksp', ')', 'under', 'the', 'leadership', 'of', 'mathai', 'manjooran', ',', 'whom', 'he', 'considered', 'as', 'his', 'mentor', 'and', 'guide', '.'], ['the', 'institute', 'was', 'incorporated', 'by', 'an', 'act', 'of', 'parliament', 'to', 'include', 'all', 'former', 'provincial', 'groups', 'except', 'the', 'mining', 'society', 'of', 'nova', 'scotia', ',', 'which', 'remained', 'a', 'separate', 'body', '.'], ['in', '2', '0', '1', '3', 'the', 'cd', 'label', 'oboe', 'classics', 'from', 'london', 'released', 'a', 'cd', '``', 'balkan', 'bolero', \"''\", 'with', 'her', 'chamber', 'music', 'for', 'winds', '(', '1', '1', 'compositions', ')', '.'], ['brereton', 'made', 'a', 'second', 'marriage', 'in', 'about', '1', '7', '3', '1', 'to', 'catherine', 'lloyd', ',', 'daughter', 'of', 'salusbury', 'lloyd', 'of', 'leadbrook', ',', 'flintshire', ',', 'the', 'mp', 'for', 'flint', 'boroughs', '.'], ['internacional', 'acquired', 'lomba', 'from', 'bahia', 'on', 'july', '1', '5', ',', '2', '0', '1', '6', '.'], ['my', 'lands', 'enjoys', 'up', 'to', '2', '0', '0', ',', '0', '0', '0', 'active', 'players', 'and', 'has', 'been', 'translated', 'into', 'over', '2', '0', 'languages', '.'], [\"'\", ',', \"'\", 'and', 'the', 'remakes', 'of', 'iv', 'allow', 'tactics', 'to', 'be', 'set', 'for', 'characters', 'individually', 'rather', 'than', 'using', 'one', 'tactics', 'mode', 'for', 'all', 'characters', ',', 'as', 'well', 'as', 'including', 'the', '``', 'follow', 'orders', \"''\", 'tactics', 'mode', ',', 'which', 'allows', 'other', 'characters', 'to', 'be', 'controlled', 'manually', '.'], ['during', 'his', 'stay', 'in', 'lyon', ',', 'he', 'published', 'several', 'works', ',', 'among', 'them', '``', 'la', 'pratique', 'de', 'la', 'perfection', 'chrétienne', 'et', 'religieuse', \"''\", '(', '1', '6', '6', '7', ')', ',', 'a', 'translation', 'of', 'the', 'work', 'of', 'the', 'spanish', 'jesuit', 'theologian', ',', 'alonso', 'rodriguez', '.'], ['the', 'swedish', 'and', 'swiss', 'legations', 'stopped', 'answering', 'our', 'letters', '.'], ['the', 'first', 'united', 'states', 'stockade', 'named', 'fort', 'lauderdale', 'was', 'built', 'in', '1', '8', '3', '8', ',', 'and', 'subsequently', 'was', 'a', 'site', 'of', 'fighting', 'during', 'the', 'second', 'seminole', 'war', '.'], ['under', 'the', 'minister', 'and', 'the', 'director-general', ',', 'hpw', 'has', 'three', 'deputy', 'director-generals', '(', 'housing', ',', 'homelessness', 'and', 'sport', ';', 'building', 'policy', 'and', 'asset', 'management', ';', 'portfolio', 'strategy', ')', ',', 'an', 'assistant', 'director-general', ',', 'and', 'the', 'chief', 'customer', 'and', 'digital', 'officer', ',', 'as', 'well', 'as', 'a', 'transition', 'advisor', '.'], ['the', 'longest', 'and', 'the', 'most', 'sublime', 'panchari', 'melam', \"'s\", 'are', 'the', 'ones', 'held', 'at', 'tripunithura', 'sree', 'poornathrayeesa', 'temple', 'vrishchikolsavam', ',', 'peruvanam', 'pooram', ',', 'edakkunni', 'uthram', 'vilakku', '&', 'amp', ';', 'kuttanellur', 'pooram', ',', 'with', 'the', 'performance', 'lasting', 'for', 'about', 'four', 'hours', '.'], ['after', 'the', 'americans', 'moved', 'east', 'in', 'october', ',', 'the', 'airfield', 'was', 'closed', 'and', 'dismantled', '.'], ['charles', 'fernando', '(', '1', '9', '4', '1', '-', '1', '9', '9', '5', ')', 'was', 'a', 'zimbabwean', 'abstract', 'painter', 'and', 'jazz', 'musician', '.'], ['by', 'the', 'early', '1', '9', '6', '0', 's', ',', 'the', 'rapid', 'growth', 'of', 'the', 'church', 'had', 'created', 'administrative', 'difficulties', 'that', 'needed', 'to', 'be', 'addressed', '.'], ['the', 'organization', 'received', 'a', '$', '2', '5', ',', '0', '0', '0', 'grant', 'from', 'the', 'national', 'endowment', 'of', 'arts', 'in', '2', '0', '1', '3', '.'], ['the', 'plateau-like', ',', 'semi-arid', 'highlands', 'of', 'anatolia', 'are', 'considered', 'the', 'heartland', 'of', 'the', 'country', '.'], ['on', '1', '5', 'december', '1', '9', '8', '7', '``', 'tortuga', \"''\", 'ran', 'aground', 'on', 'san', 'miguel', 'island', 'after', 'breaking', 'its', 'tow', 'during', 'a', 'storm', '.'], ['it', 'would', 'be', 'the', 'last', 'game', 'the', '``', 'blades', \"''\", 'would', 'ever', 'play', '.'], ['the', 'national', 'elephant', 'institute', 'was', 'founded', 'as', 'the', 'thai', 'elephant', 'conservation', 'center', '(', 'tecc', ')', 'in', '1', '9', '9', '3', '.'], ['he', 'has', 'also', 'stated', 'and', 'exhibited', 'his', 'dean', 'martin', 'memorabilia', 'collection', ',', 'which', 'includes', '``', 'every', 'applicable', 'book', 'and', 'record', 'album', ',', 'plus', 'publicity', 'photos', ',', 'newspaper', 'and', 'magazine', 'clippings', ',', 'novelty', 'statuettes', ',', 'comic', 'books', ',', 'and', 'even', 'a', 'copy', 'of', 'dino', \"'s\", 'death', 'certificate', '.', \"''\"], ['ʻammar', 'converted', 'to', 'islam', 'in', '6', '1', '4', 'or', '6', '1', '5', 'ce', 'under', 'the', 'direct', 'influence', 'of', 'abu', 'bakr', '.'], ['one', 'of', 'the', 'painting', 'he', 'commissioned', 'was', '``', 'the', 'long', 'walk', ',', 'windsor', ',', 'with', 'brood', 'mares', 'and', 'foals', \"''\", ',', 'which', 'included', 'the', 'famous', 'racehorse', 'eclipse', '.'], ['this', 'can', 'then', 'be', 'compared', 'to', 'the', 'entire', 'plant', 'mass', 'in', 'the', 'area', 'to', 'determine', 'the', 'percent', 'of', 'each', 'species', 'located', 'within', 'the', 'area', '.'], ['the', 'name', 'is', 'the', 'source', 'of', 'a', 'lot', 'of', 'his', 'resentment', 'towards', 'the', 'older', 'demons', '.'], ['the', 'osapac', 'website', 'also', 'hosts', 'a', 'learning', 'object', 'repository', ',', 'where', 'educators', 'can', 'submit', 'lessons', 'and', 'other', 'learning', 'objects', 'for', 'others', 'to', 'download', 'and', 'use', 'in', 'their', 'classrooms', '.'], ['the', 'rest', 'of', 'the', 'original', 'cast', 'appeared', 'in', 'the', 'pbs', 'production', '.'], ['in', 'early', 'february', '1', '2', '9', '8', ',', 'andrew', 'visited', 'albert', 'of', 'austria', 'in', 'vienna', 'and', 'promised', 'to', 'support', 'him', 'against', 'adolf', 'of', 'nassau', ',', 'king', 'of', 'germany', '.'], ['this', 'is', 'because', 'as', 'eigenvalues', 'become', 'relatively', 'small', ',', 'their', 'contribution', 'to', 'the', 'inversion', 'is', 'large', '.'], ['the', 'body', 'is', 'coloured', 'light', 'brown', ',', 'or', 'greenish', 'yellow', ',', 'with', 'white', 'spots', 'on', 'the', 'head', 'and', 'short', 'white', 'bars', 'on', 'the', 'dorsal', 'mantle', '.'], ['while', 'hillary', 'refuses', 'to', 'have', 'anything', 'to', 'do', 'with', 'him', ',', 'salvador', 'secretly', 'plans', 'to', 'win', 'her', 'back', 'and', 'instructs', 'his', 'lawyer', 'to', 'drop', 'his', 'petition', 'for', 'annulment', '.'], ['a', 'small', 'set', 'of', 'features', 'were', 'identified', 'as', '``', 'obsolescent', \"''\", 'and', 'expected', 'to', 'be', 'removed', 'in', 'a', 'future', 'standard', '.'], ['due', 'to', 'the', 'unfavorable', 'circumstances', 'in', 'which', 'modern', 'macedonian', 'literature', 'developed', ',', 'the', 'first', 'macedonian', 'language', 'translations', 'of', 'science', 'fiction', 'novels', 'and', 'the', 'first', 'works', 'of', 'macedonian', 'science', 'fiction', 'authors', 'appeared', 'in', 'the', '1', '9', '5', '0', 's', ',', 'much', 'later', 'than', 'the', 'ones', 'in', 'serbo-croatian', 'and', 'slovene', '.'], ['mcmahon', 'was', 'confirmed', 'by', 'the', 'united', 'states', 'senate', 'on', 'october', '2', '1', ',', '1', '9', '9', '8', ',', 'and', 'received', 'her', 'commission', 'the', 'next', 'day', '.'], ['people', 'come', 'here', 'from', 'distant', 'places', 'to', 'worship', 'the', 'lord', 'shivji', '.'], ['she', 'believed', 'that', 'reporting', 'it', 'would', 'be', 'pointless', ';', 'she', 'had', 'danced', 'with', 'him', 'at', 'the', 'party', ',', 'had', 'left', 'with', 'him', 'voluntarily', ',', 'and', 'he', 'was', 'a', 'pillar', 'of', 'the', 'community', '.'], ['morale', 'is', 'often', 'highly', 'dependent', 'on', 'soldier', 'effectiveness', ',', 'health', ',', 'comfort', ',', 'safety', 'and', 'belief-in-purpose', ',', 'and', 'therefore', 'an', 'army', 'with', 'good', 'supply', 'lines', ',', 'sound', 'air', 'cover', 'and', 'a', 'clear', 'objective', 'will', 'typically', 'possess', ',', 'as', 'a', 'whole', ',', 'better', 'morale', 'than', 'one', 'without', '.'], ['she', 'was', 'the', 'only', 'child', 'of', 'farming', 'couple', 'josé', 'joaquim', 'and', 'maria', 'da', 'conceição', 'varela', 'homem', 'de', 'melo', '.'], ['lorraine', 'sterritt', 'is', 'an', 'irish-american', 'academic', 'administrator', 'serving', 'as', 'the', '1', '7', 'th', 'president', 'of', 'saint', 'michael', \"'s\", 'college', 'in', 'colchester', ',', 'vermont', '.'], ['in', '2', '0', '0', '6', ',', 'it', 'had', 'the', 'first', 'graduating', 'class', 'with', 'ib', 'diploma', 'recipients', '.'], ['as', 'a', 'regional', 'centre', ',', 'the', 'city', 'of', 'dubbo', 'provided', 'services', 'far', 'beyond', 'its', 'own', 'population', 'base', '.'], ['in', '1', '9', '6', '6', ',', 'by', 'decision', 'of', 'finance', 'minister', 'michel', 'debré', ',', 'the', 'comptoir', 'national', \"d'escompte\", 'de', 'paris', 'merged', 'with', 'the', 'banque', 'nationale', 'pour', 'le', 'commerce', 'et', \"l'industrie\", '(', 'bnci', ')', 'to', 'create', 'the', 'banque', 'nationale', 'de', 'paris', '(', 'bnp', ')', '.'], ['for', 'a', 'particularly', 'grave', 'offence', 'uefa', 'has', 'the', 'power', 'to', 'impose', 'a', 'lengthy', 'ban', 'against', 'the', 'offender', '.'], ['on', 'november', '2', '0', ',', '2', '0', '1', '7', ',', 'ninjaman', 'and', 'his', 'co-accused', 'were', 'found', 'guilty', 'of', 'the', '2', '0', '0', '9', 'murder', 'of', 'ricardo', 'johnson', '.'], ['arguably', 'the', 'biggest', 'and', 'most', '``', 'spectacular', \"''\", 'use', 'of', 'cgi', 'is', 'in', 'the', 'creation', 'of', 'photo-realistic', 'images', 'of', 'science-fiction/fantasy', 'characters', ',', 'settings', 'and', 'objects', '.'], ['ms', '``', 'rotterdam', \"''\", 'is', 'a', '``', 'pinnacle', \"''\", '-class', 'cruise', 'ship', 'under', 'construction', 'for', 'holland', 'america', 'line', '(', 'hal', ')', ',', 'a', 'subsidiary', 'of', 'carnival', 'corporation', '.'], ['two', 'years', 'later', 'and', 'johanna', 'has', 'become', 'dolly', 'wilde', ',', 'and', 'sends', 'one', 'music', 'review', 'a', 'day', 'to', 'the', 'disc', '&', 'amp', ';', 'music', 'echo', '.'], ['during', 'her', 'time', 'in', 'the', 'southwest', ',', 'dox', 'was', 'an', 'early', 'explorer', 'of', 'the', 'grand', 'canyon', ',', 'where', 'she', 'was', 'guided', 'by', 'william', 'bass', 'in', '1', '8', '9', '1', '.'], ['this', 'caused', 'some', 'discontent', 'with', 'the', 'crew', 'who', 'had', 'held', 'a', 'naming', 'contest', 'while', 'the', 'icebreaker', 'was', 'moored', 'in', 'tallinn', 'and', 'chosen', 'the', 'name', '``', 'leijona', \"''\", 'after', 'the', 'lion', 'of', 'finland', '.'], ['in', '1', '9', '4', '7', '-', '1', '9', '4', '8', ',', 'diggs', 'served', 'as', 'the', 'president', 'of', 'the', 'yale', 'club', 'of', 'washington', '.'], ['the', 'university', 'chamber', 'choir', ',', 'the', 'elizabethan', 'madrigal', 'singers', ',', 'have', 'been', 'singing', 'in', 'the', 'town', 'since', '1', '9', '5', '0', 'and', 'continue', 'to', 'hold', 'a', 'number', 'of', 'concerts', 'throughout', 'the', 'year', '.'], ['at', 'the', 'eastern', 'side', 'of', 'the', 'castle', \"'s\", 'courtyard', 'were', 'the', 'remnants', 'of', 'the', 'st.', 'stanislaus', 'church', ',', 'next', 'to', 'which', 'was', 'located', 'a', 'tomb', 'of', 'm.', 'potocki', '.'], ['the', 'two', 'decide', 'to', 'go', 'to', 'rome', ',', 'since', 'sergio', 'wants', 'to', 'get', 'close', 'to', 'power', 'and', 'aims', 'to', 'reach', 'silvio', 'berlusconi', '.'], ['humans', 'are', 'also', 'among', 'the', 'best', 'long-distance', 'runners', 'in', 'the', 'animal', 'kingdom', ',', 'but', 'slower', 'over', 'short', 'distances', '.'], ['much', 'of', 'the', 'river', 'within', 'yunnan', 'is', 'part', 'of', 'the', 'three', 'parallel', 'rivers', 'of', 'yunnan', 'protected', 'areas', ',', 'a', 'world', 'heritage', 'site', '.'], ['but', 'as', 'he', 'once', 'said', '``', 'you', 'ca', \"n't\", 'make', 'a', 'living', 'out', 'of', 'the', 'xylophone', 'if', 'you', 'play', 'it', 'right', '.', \"''\"], ['in', '1', '9', '5', '4', ',', 'she', 'became', 'its', 'editor-in-chief', ',', 'a', 'position', 'never', 'before', 'held', 'by', 'a', 'woman', 'in', 'the', 'world', 'of', 'new', 'york', 'publishing', '.'], ['his', 'platoon', 'and', 'a', 'second', 'platoon', 'did', 'not', 'receive', 'the', 'order', 'to', 'retire', 'and', 'were', 'cut', 'off', '.'], ['seth', 'rogen', ',', 'matt', 'besser', ',', 'patton', 'oswalt', ',', 'and', 'judah', 'friedlander', 'also', 'auditioned', 'for', 'the', 'role', '.'], ['he', 'turned', 'to', 'his', 'cousin', 'lady', 'gifford', 'for', 'advice', 'and', 'encouragement', ',', 'and', 'she', 'remained', 'a', 'close', 'correspondent', 'until', 'her', 'death', 'at', 'the', 'end', 'of', 'the', 'decade', '.'], [':', '5', '5', ')', 'is', 'a', 'punjab', 'legislative', 'assembly', 'constituency', 'in', 'fatehgarh', 'sahib', 'district', ',', 'punjab', 'state', ',', 'india', '.'], ['historically', 'the', 'largest', 'entry', 'port', 'for', 'irish', 'immigrants', 'in', 'the', 'us', 'south', ',', 'new', 'orleans', 'has', 'maintained', 'a', 'large', 'population', 'of', 'irish', 'heritage', '.'], ['today', ',', 'constitutional', 'patriotism', 'plays', 'a', 'role', 'in', 'distancing', 'the', 'current', 'european', 'union', 'from', 'its', 'past', 'totalitarian', 'experiences', 'with', 'nazism', 'and', 'stalinism', '.'], ['this', 'characteristic', '``', 'musk', \"''\", 'aroma', 'can', 'be', 'best', 'observed', 'in', 'light', 'bodied', ',', 'low', 'alcohol', 'wines', 'such', 'as', 'moscato', 'asti', 'which', 'have', 'not', 'had', 'their', 'bouquet', 'heavily', 'influenced', 'by', 'other', 'winemaking', 'techniques', 'like', 'oak', 'aging', ',', 'autolysis', 'with', 'yeast', ',', 'malolactic', 'fermentation', 'or', 'fortification', '.'], ['its', 'main', 'towns', 'were', 'dunstable', ',', 'houghton', 'regis', 'and', 'leighton', 'buzzard', '.'], ['he', 'was', 'the', 'mvp', 'of', 'the', 'only', 'state', 'tournament', 'victory', 'in', 'trinity', 'history', ',', 'when', 'they', 'defeated', 'university', 'heights', 'academy', 'in', '2', '0', '0', '4', '.'], ['mrs', 'blight', 'noted', 'that', 'mrs', 'veitch', 'had', 'tried', 'to', 'make', 'her', 'friend', 'believe', 'that', 'the', 'daughter', 'was', 'in', 'danger', 'from', 'her', 'aunt', 'and', 'might', 'drown', 'her', '.'], ['notes', ':', 'there', 'were', 'no', '``', 'attendees', \"''\", ',', 'but', 'there', 'were', '4', '8', 'adult', 'builders', 'displaying', '.'], ['the', 'eastern', 'road', 'nature', 'reserve', ',', 'off', 'lewes', 'road', ',', 'is', 'a', 'reserve', 'alongside', 'the', 'scrase', 'stream', ',', 'which', 'provides', 'a', 'wetland', 'habitat', 'for', 'birds', ',', 'butterflies', 'and', 'insects', '.'], ['the', 'religious', 'commandment', 'against', 'coveting', 'one', \"'s\", 'neighbor', \"'s\", 'wife', 'has', 'as', 'part', 'of', 'its', 'basis', 'that', '``', 'the', 'wife', 'is', 'definitely', 'seen', 'as', 'property', \"''\", ',', 'wrote', 'schmidt', '.'], ['he', 'played', 'three', 'seasons', 'in', 'major', 'league', 'baseball', 'from', '-', 'for', 'the', 'philadelphia', 'phillies', 'and', 'atlanta', 'braves', '.'], ['a', 'criticism', 'of', 'marriage', 'is', 'that', 'it', 'gives', 'the', 'state', 'an', 'undue', 'power', 'and', 'control', 'over', 'the', 'private', 'lives', 'of', 'the', 'citizens', '.'], ['the', 'town', 'was', 'formerly', 'located', 'at', 'the', 'narrowest', 'point', 'between', 'the', 'cumberland', 'river', 'and', 'the', 'tennessee', '.'], ['australasian', 'robins', 'are', 'a', 'group', 'of', 'small', 'insectivorous', 'birds', ',', 'whose', 'exact', 'position', 'in', 'the', 'bird', 'family', 'tree', 'is', 'unclear', '.'], ['yakovlev', 'further', 'claimed', 'that', 'bogdanov', 'discussed', 'the', 'development', 'of', 'the', 'concept', 'of', 'proletarian', 'culture', 'up', 'to', 'the', 'present', 'day', 'and', 'discussed', 'to', 'what', 'extent', 'the', 'communist', 'party', 'saw', 'proletkult', 'as', 'a', 'rival', '.'], ['st.', 'croix', 'is', 'a', 'community', 'in', 'the', 'canadian', 'province', 'of', 'nova', 'scotia', ',', 'located', 'in', 'hants', 'county', ',', 'nova', 'scotia', '.'], ['countries', 'that', 'have', 'followed', 'the', 'route', 'to', 'gradual', 'civic', 'rights', 'for', 'adolescents', 'include', 'england', ',', 'ireland', ',', 'australia', 'and', 'new', 'zealand', '.'], ['alternatively', ',', 'larvae', 'may', 'also', 'develop', 'under', 'dry', 'bark', '.'], ['duttine', 'has', 'played', 'two', 'characters', 'in', 'the', 'uk', 'television', 'series', '``', 'heartbeat', \"''\", '.'], ['some', 'examples', 'of', 'this', 'are', 'shipton', ',', 'sommerfelt', ',', 'tilman', ',', 'dutton', 'and', 'arthur', '.'], ['in', '2', '0', '1', '3', ',', 'angle', 'was', 'inducted', 'into', 'the', 'tna', 'hall', 'of', 'fame', ':', 'he', 'is', 'the', 'second', 'wrestler', ',', 'after', 'sting', ',', 'to', 'be', 'inducted', 'into', 'both', 'the', 'wwe', 'and', 'tna', 'halls', 'of', 'fame', '.'], ['they', 'started', 'alongside', 'outside', 'linebackers', 'ryan', 'kerrigan', 'and', 'preston', 'smith', '.'], ['she', 'was', 'educated', 'at', 'reykjavik', 'high', 'school', 'and', 'graduated', 'from', 'there', 'in', '1', '9', '4', '4', '.'], ['we', 'now', 'prove', 'the', 'same', 'theorem', 'formula_', '9', '2', 'in', 'the', 'axiomatic', 'system', 'by', 'jan', 'łukasiewicz', 'described', 'above', ',', 'which', 'is', 'an', 'example', 'of', 'a', 'classical', 'propositional', 'calculus', 'systems', ',', 'or', 'a', 'hilbert-style', 'deductive', 'system', 'for', 'propositional', 'calculus', '.'], ['outside', 'its', 'use', 'in', 'official', 'nazi', 'terminology', ',', 'the', 'term', '``', 'mischlingskinder', \"''\", '(', '``', 'mixed', 'children', \"''\", ')', 'was', 'later', 'used', 'to', 'refer', 'to', 'war', 'babies', 'born', 'to', 'non-white', 'soldiers', 'and', 'german', 'mothers', 'in', 'the', 'aftermath', 'of', 'world', 'war', 'ii', '.'], ['the', 'aircraft', 'descended', 'rapidly', 'and', '2', '.', '5', 'seconds', 'before', 'first', 'impact', ',', 'the', 'crew', 'moved', 'the', 'throttles', 'to', 'takeoff', 'thrust', 'and', 'left', 'them', 'there', ',', 'but', 'this', 'did', 'nothing', 'to', 'save', 'the', 'aircraft', '.'], ['the', 'orange', 'patch', 'on', 'the', 'crown', 'is', 'usually', 'not', 'visible', '.'], ['for', 'the', 'european', 'leg', 'of', 'the', 'tour', 'in', 'late', '2', '0', '1', '1', ',', 'the', 'band', 'ran', 'a', 'competition', 'that', 'allowed', 'fans', 'to', 'create', 'original', 'artwork', 'to', 'be', 'featured', 'on', 'the', 'cover', 'art', 'of', '``', 'sounds', 'from', 'nowheresville', \"''\", '.'], ['thomas', 'attended', 'aberystwyth', 'university', ',', 'wales', ',', 'where', 'he', 'studied', 'drama', 'from', '1', '9', '9', '8', 'to', '2', '0', '0', '1', 'and', 'received', 'a', 'ba', 'upper', 'second', '.'], ['groundwater', 'tables', 'may', 'make', 'it', 'impossible', 'to', 'install', 'or', 'build', 'a', 'shelter', 'below', 'ground', ',', 'elderly', 'or', 'people', 'with', 'limited', 'mobility', 'may', 'be', 'unable', 'to', 'access', 'a', 'below', 'ground', 'shelter', ',', 'or', 'people', 'may', 'have', 'significant', 'phobias', 'pertaining', 'to', 'below', 'ground', 'sheltering', '.'], ['they', 'are', ',', 'in', 'differing', 'traditions', ',', 'of', 'good', 'and', 'evil', 'influence', '.'], ['the', 'front', 'main', 'entrance', 'has', 'ionic', 'columns', 'topped', 'with', 'a', 'pediment', 'protruding', 'from', 'the', 'front', 'triple-bay', 'building', 'line', ',', 'the', 'roof', 'is', 'clad', 'in', 'black', 'glazed', 'norfolk', 'pantiles', '.'], ['with', 'the', 'start', 'of', 'the', 'russo-japanese', 'war', ',', 'ōsako', 'participated', 'in', 'the', 'siege', 'of', 'port', 'arthur', '.'], ['josh', 'schertz', 'is', 'an', 'american', 'basketball', 'coach', 'who', 'is', 'the', 'current', 'head', 'coach', 'of', 'the', 'indiana', 'state', 'sycamores', 'men', \"'s\", 'basketball', 'team', '.'], ['with', 'florent', 'prévost', 'and', 'isidore', 'geoffroy', 'saint-hilaire', ',', 'he', 'published', 'a', 'catalog', 'involving', 'species', 'of', 'mammals', 'and', 'birds', 'kept', 'in', 'the', 'collections', 'at', 'the', 'museum', ',', 'titled', '``', 'muséum', \"d'histoire\", 'naturelle', 'de', 'paris', '.'], ['he', 'visited', 'sites', 'sacred', 'to', 'buddhism', 'in', 'nepal', 'and', 'india', ',', 'and', 'then', 'at', 'the', 'invitation', 'of', 'the', 'king', 'of', 'sikkim', ',', 'took', 'up', 'residence', 'in', 'gangtok', ',', 'sikkim', '.'], ['holdsworth', 'was', 'replaced', 'by', 'john', 'etheridge', 'for', 'the', 'next', 'album', '``', 'softs', \"''\", '(', '1', '9', '7', '6', ')', '.'], ['an', 'appeal', 'against', 'reading', 'borough', 'council', \"'s\", 'rejection', 'of', 'the', 'plan', 'was', 'dismissed', 'by', 'the', 'planning', 'inspector', 'in', 'january', '2', '0', '1', '1', '.'], ['on', 'september', '2', '6', ',', '2', '0', '2', '0', ',', 'wmata', 'proposed', 'to', 'eliminate', 'all', 'route', '9', '7', 'service', 'and', 'replace', 'them', 'with', 'route', '9', '6', 'trips', 'that', 'will', 'operate', 'the', 'full', 'route', 'between', 'tenleytown', 'station', 'and', 'capitol', 'heights', 'station', '.'], ['for', 'the', 'seven', 'months', 'following', 'her', 'arrival', 'in', 'fremantle', ',', 'she', 'engaged', 'in', 'routine', 'patrols', 'off', 'the', 'australian', 'coast', 'before', 'being', 'refitted', 'at', 'sydney', 'in', 'october', '1', '9', '4', '2', '.'], ['most', 'of', 'the', 'massif', 'is', 'part', 'of', 'the', 'rhenohercynian', 'zone', 'of', 'this', 'orogeny', ',', 'that', 'also', 'encompasses', 'the', 'harz', 'further', 'east', 'and', 'devonian', 'rocks', 'of', 'cornwall', '(', 'southwestern', 'england', ')', '.'], ['the', '1', '9', '5', '7', 'national', 'government', 'defence', 'review', 'directed', 'the', 'discontinuation', 'of', 'coastal', 'defence', 'training', ',', 'and', 'the', 'approximately', '1', '0', '0', '0', 'personnel', 'of', 'the', '9', 'th', ',', '1', '0', 'th', ',', 'and', '1', '1', 'th', 'coastal', 'regiments', 'had', 'their', 'compulsory', 'military', 'training', 'obligation', 'removed', '.'], ['because', 'it', 'forms', 'dense', 'schools', 'and', 'lives', 'in', 'shallower', 'waters', ',', 'the', 'mediterranean', 'horse', 'mackerel', 'is', 'the', 'more', 'commonly', 'caught', 'species', '.'], ['it', 'is', 'well', 'worth', 'noting', 'that', 'generally', 'speaking', ',', 'most', 'commanders', 'do', 'not', 'look', 'at', 'the', 'morale', 'of', 'specific', 'individuals', 'but', 'rather', 'the', '``', 'fighting', 'spirit', \"''\", 'of', 'squadrons', ',', 'divisions', ',', 'battalions', ',', 'ships', ',', 'etc', '.'], ['he', 'owns', 'an', 'indie', 'record', 'label', 'called', 'gooey', 'music', '.'], ['this', 'was', 'their', 'sixth', 'championship', 'title', 'overall', 'and', 'their', 'second', 'title', 'in', 'succession', '.'], ['the', '3', '4', '4', 'th', 'bombardment', 'group', 'arrived', 'at', 'lakeland', 'aaf', 'in', 'late', 'december', '1', '9', '4', '2', 'and', 'was', 'assigned', 'by', 'iii', 'bomber', 'command', 'to', 'be', 'an', 'operational', 'training', 'unit', 'for', 'the', 'b-', '2', '6', 'marauder', 'school', '.'], ['clinton', 'county', 'is', 'a', 'county', 'in', 'the', 'north-easternmost', 'corner', 'of', 'the', 'state', 'of', 'new', 'york', ',', 'in', 'the', 'united', 'states', 'and', 'bordered', 'by', 'the', 'canada', 'province', 'of', 'quebec', '.'], ['in', 'addition', 'to', 'providing', 'access', 'to', 'equipment', 'and', 'mentoring', 'for', 'and', 'by', 'indigenous', 'media', 'makers', ',', 'including', 'mentorship', 'by', 'indigenous', 'filmmakers', 'such', 'as', 'dana', 'claxton', 'and', 'loretta', 'todd', ',', 'imag', 'held', 'the', 'annual', 'imagenation', 'aborginal', 'film', 'and', 'video', 'festival', '.'], ['ralph', 'imposed', 'taxation', 'in', 'his', 'diocese', 'to', 'secure', 'the', 'completion', 'of', 'carlisle', 'cathedral', '.'], ['the', 'ducklings', 'ride', 'the', 'basket', 'at', 'sea', 'and', 'eat', 'the', 'contents', ',', 'unaware', 'that', 'they', 'are', 'being', 'spotted', 'by', 'an', 'octopus', '.'], ['roy', 'johnson', 'batted', 'left-handed', 'and', 'threw', 'right-handed', ';', 'he', 'stood', 'tall', 'and', 'weighed', '.'], ['in', 'june', '2', '0', '1', '3', ',', 'national', 'team', 'coach', 'ignacio', 'quereda', 'confirmed', 'melisa', 'as', 'a', 'member', 'of', 'his', '2', '3', '-player', 'squad', 'for', 'the', 'uefa', 'women', \"'s\", 'euro', '2', '0', '1', '3', 'finals', 'in', 'sweden', '.'], ['though', 'they', 'all', 'look', 'quite', 'similar', 'in', 'habitus', ',', 'there', 'are', 'few', 'unequivocal', 'characters', 'that', 'can', 'be', 'easily', 'used', 'to', 'recognize', 'adult', 'members', 'of', 'this', 'tribe', '.'], ['once', 'married', ',', 'although', 'granddaughter', 'philippa', 'of', 'eltham', 'was', 'grown', ',', 'it', 'was', 'decided', 'they', 'would', 'continue', 'working', 'for', 'her', 'and', 'the', 'king', '.'], ['from', '1', '9', '9', '5', '-', '2', '0', '0', '4', 'he', 'served', 'as', 'executive', 'producer', 'of', 'the', 'live', 'radio', 'broadcast', 'for', 'the', 'new', 'england', 'patriots', '.'], ['the', 'wagon', ',', 'first', 'introduced', 'in', 'this', 'game', ',', 'allows', 'the', 'player', 'to', 'choose', 'which', 'characters', 'are', 'used', 'in', 'battle', '.'], ['mukhopadhyay', 'received', 'the', 'jawahralal', 'nehru', 'memorial', 'fund', 'award', 'in', '1', '9', '9', '3', 'for', 'academic', 'excellence', 'and', 'the', 'apeeza', 'trust', 'award', 'of', 'the', 'indian', 'immunology', 'society', 'in', '1', '9', '9', '6', '.'], ['(', '2', '0', '1', '3', ')', 'the', 'song', 'was', 'released', 'as', 'the', 'album', \"'s\", 'first', 'promotional', 'single', 'on', 'august', '1', ',', '2', '0', '1', '3', '.'], ['he', 'attended', 'yadavindra', 'public', 'school', ',', 'patiala', 'and', 'subsequently', 'studied', 'at', 'the', 'doon', 'school', ',', 'dehradun', '.'], ['``', 'a', \"''\", 'can', 'represent', 'either', 'short', 'or', 'long', ',', '``', 'e', \"''\", 'represents', 'either', 'or', ',', 'etc', '.'], ['as', 'of', 'mid-', '2', '0', '1', '3', ',', 'less', 'than', '5', 'per', 'cent', 'of', 'mtr', 'customers', 'travelled', 'on', 'single', 'journey', 'tickets', '.'], ['however', ',', 'for', 'various', 'reasons', ',', 'historical', 'and', 'cultural', ',', 'they', 'did', 'not', 'have', 'what', 'he', 'termed', '``', 'social', 'capital', \"''\", ',', 'the', 'habits', ',', 'norms', ',', 'attitudes', ',', 'and', 'networks', 'to', 'motivate', 'people', 'to', 'work', 'for', 'the', 'common', 'good', '.'], ['the', 'dairy', 'farm', 'products', 'company', 'opened', 'its', 'plant', 'in', 'the', 'building', 'on', 'october', '1', '7', ',', '1', '9', '1', '2', ',', 'manufacturing', 'butter', '.'], ['snowshoe', 'has', 'several', 'commercial', 'areas', ',', 'with', 'the', 'most', 'prominent', 'being', 'the', 'village', 'at', 'snowshoe', ',', 'located', 'at', 'the', 'summit', 'of', 'the', 'mountain', '(', 'rather', 'than', 'at', 'its', 'base', ')', '.'], ['after', 'four', 'hours', 'of', 'diligence', ',', 'the', 'remains', 'were', 'taken', 'to', 'the', 'amphitheater', 'of', 'the', 'institute', 'of', 'forensic', 'services', 'for', 'the', 'purpose', 'of', 'law', 'that', 'an', 'autopsy', '.'], ['six', 'of', 'his', 'albums', 'have', 'since', 'reached', 'the', '``', 'top', '1', '0', '``', 'on', 'the', '``', 'billboard', \"''\", '2', '0', '0', ',', 'and', 'a', 'record-setting', '8', ',', 'have', 'topped', 'the', 'classical', 'albums', 'charts', 'in', 'the', 'united', 'states', '.'], ['apart', 'from', 'tourism', ',', 'lubmin', 'is', 'a', 'major', 'transport', 'and', 'industry', 'hub', 'and', 'investment', 'location', 'in', 'the', 'german', 'energy', 'sector', '.'], ['it', 'lies', 'approximately', 'south', 'of', 'przasnysz', 'and', 'north', 'of', 'warsaw', '.'], ['he', 'ran', 'in', 'the', 'democratic', 'congressional', 'primary', 'in', '2', '0', '1', '6', 'and', 'then', 'for', 'an', 'iowa', 'state', 'house', 'seat', 'in', 'the', '2', '0', '1', '6', 'election', '.'], ['a', 'courthouse', 'building', 'was', 'built', 'in', 'downtown', 'dayton', 'in', '1', '8', '8', '8', 'to', 'supplement', 'dayton', \"'s\", 'original', 'neoclassical', 'courthouse', ',', 'which', 'still', 'stands', '.'], ['coconut', 'oil', 'was', 'sold', 'in', 'singapore', 'in', 'great', 'quantities', ',', 'yielding', 'profits', 'of', '2', '0', '0', 'to', '3', '0', '0', '%', '.'], ['leafie', 'witnesses', 'the', 'battle', 'and', 'wanderer', 'is', 'killed', 'by', 'one-eye', ',', 'leaving', 'leafie', 'completely', 'heartbroken', '.'], ['the', 'racial', 'makeup', 'of', 'the', 'city', 'was', '8', '1', '.', '9', '%', 'white', ',', '1', '.', '3', '%', 'native', 'american', ',', '1', '.', '5', '%', 'asian', ',', '1', '1', '.', '8', '%', 'from', 'other', 'races', ',', 'and', '3', '.', '5', '%', 'from', 'two', 'or', 'more', 'races', '.'], ['are', 'commonly', 'found', 'in', 'both', 'shinto', 'shrines', 'and', 'buddhist', 'temples', 'and', 'are', 'considered', 'to', 'be', 'imbued', 'with', 'the', 'power', 'of', 'the', 'deities', '(', ')', 'or', 'buddhist', 'figures', 'revered', 'therein', '.'], ['these', 'locations', 'were', 'allegedly', 'revealed', 'to', 'a', 'man', 'named', 'agripino', 'lontoc', 'by', 'the', '``', 'santong', 'boses', \"''\", 'or', 'the', '``', 'holy', 'voices', \"''\", ',', 'which', 'also', 'gave', 'the', 'names', 'to', 'these', 'places', 'way', 'back', 'during', 'the', 'spanish', 'colonial', 'sra', '.'], ['it', 'is', 'one', 'of', 'the', 'two', 'major', 'contemporary', 'political', 'parties', 'in', 'croatia', ',', 'along', 'with', 'the', 'centre-left', 'social', 'democratic', 'party', '(', 'sdp', ')', '.'], ['over', 'the', 'objections', 'of', 'parr', ',', 'who', 'wanted', 'a', 'family', 'friend', 'of', 'one', 'of', 'his', 'cronies', 'appointed', 'as', 'district', 'attorney', 'stevenson', 'appointed', 'one', 'who', 'implemented', 'a', 'crackdown', 'on', 'prostitution', '.'], ['the', '6', '9', 'th', 'american', 'cinema', 'editors', 'eddie', 'awards', 'were', 'presented', 'on', 'february', '1', ',', '2', '0', '1', '9', 'at', 'the', 'beverly', 'hilton', 'hotel', ',', 'honoring', 'the', 'best', 'editors', 'in', 'films', 'and', 'television', '.'], ['the', 'portrait', 'of', 'washington', 'is', 'influenced', 'by', 'gilbert', 'stuart', \"'s\", 'lansdowne', 'portrait', ',', 'and', 'the', 'portrait', 'of', 'webster', 'is', 'based', 'on', 'one', 'by', 'albert', 'gallatin', 'hoit', 'that', 'originally', 'hung', 'in', 'the', 'revere', 'house', '.'], ['as', 'national', 'ffa', 'president', ',', 'ackerson', 'presided', 'over', 'the', 'desegregation', 'of', 'the', 'ffa', 'and', 'the', 'new', 'farmers', 'of', 'america', '(', 'nfa', ')', ',', 'a', 'parallel', 'youth', 'organization', 'for', 'african', 'americans', 'in', 'states', 'that', 'had', 'previously', 'practiced', 'racial', 'segregation', '.'], ['shenton', 'appealed', 'and', 'received', 'a', 'personal', 'hearing', 'at', 'the', 'aaa', '.'], ['in', 'addition', ',', 'she', 'performed', 'a', 'one-woman', 'off-broadway', 'show', 'while', 'living', 'in', 'new', 'york', 'city', 'in', 'the', 'early', '1', '9', '9', '0', 's', '.'], ['the', 'vido', 'is', 'a', 'smart', 'bluetooth', 'headset', 'that', 'detects', 'signs', 'of', 'drowsiness', 'through', 'eye', 'and', 'head', 'motion', 'to', 'alert', 'users', '.'], ['the', 'governments', 'of', 'the', 'regions', 'are', 'responsible', 'policy', 'and', 'regulation', 'related', 'to', 'water', 'supply', 'and', 'sanitation', ',', 'and', 'for', 'environmental', 'policy', 'more', 'generally', '.'], ['river', 'wharf', 'was', 'the', 'terminus', 'of', 'the', 'northern', 'line', 'until', 'the', 'first', 'hawkesbury', 'river', 'railway', 'bridge', 'opened', 'in', '1', '8', '8', '9', '.'], ['henry', 'bizot', ',', 'president', 'of', 'the', 'cnep', ',', 'has', 'been', 'appointed', 'president', 'of', 'the', 'new', 'establishment', ',', 'and', 'pierre', 'ledoux', ',', 'ceo', 'of', 'bnci', ',', 'becomes', 'ceo', 'of', 'bnp', '.'], ['these', 'taxis', 'can', 'be', 'identified', 'by', 'their', 'roof', 'sign', 'and', 'can', 'be', 'found', 'in', 'cities', 'like', 'ushuaia', ',', 'formosa', ',', 'corrientes', 'or', 'catamarca', '.'], ['adjacent', 'grounds', 'were', 'used', 'as', 'fields', 'for', 'northville', 'youth', 'soccer', 'programs', 'until', 'their', 'sale', 'to', 'developers', 'in', '1', '9', '9', '8', '.'], ['she', 'made', 'her', 'singing', 'debut', 'in', 'bari', 'in', '1', '9', '8', '1', 'performing', 'in', 'oratorios', 'by', 'vivaldi', 'and', 'pergolesi', 'with', 'the', 'orchestra', 'sinfonica', 'della', 'provincia', 'di', 'bari', '.'], ['but', ',', 'if', 'alice', 'knows', 'bob', \"'s\", 'valuations', ',', 'she', 'can', 'deviate', 'to', 'a', 'strategy', 'that', 'lets', 'bob', 'win', 'in', 'the', 'first', 'round', 'so', 'that', 'in', 'the', 'second', 'round', 'she', 'can', 'win', 'for', 'a', 'price', 'slightly', 'above', '0', '.'], ['he', 'was', 'his', 'party', \"'s\", 'first', 'representative', 'from', 'palestine', '.'], ['at', 'the', 'age', 'of', '3', '8', ',', 'iredell', 'was', 'the', 'youngest', 'of', 'the', 'early', 'supreme', 'court', 'justices', '.'], ['at', 'this', 'point', ',', 'the', 'road', 'continues', 'east', 'as', 'part', 'of', 'ky', '3', '0', '.'], ['in', '2', '0', '1', '3', ',', 'a', 'woman', 'and', 'her', 'two', 'daughters', 'were', 'murdered', 'by', '1', '0', 'male', 'relatives', ',', 'who', 'strangled', 'and', 'beat', 'them', ',', 'and', 'then', 'threw', 'their', 'bodies', 'in', 'the', 'nile', '.'], ['although', 'part', 'of', 'the', 'bailiwick', 'of', 'guernsey', ',', 'sark', 'is', 'fiscally', 'separate', 'from', 'the', 'rest', 'of', 'the', 'bailiwick', '.'], ['williams', \"'\", 'trademark', 'instrument', 'is', 'the', 'stingray', 'and', 'other', 'basses', 'by', 'music', 'man', ',', 'strung', 'with', \"d'addario\", '(', '.', '0', '4', '5', ',', '.', '0', '6', '5', ',', '.', '0', '8', '5', ',', '.', '1', '0', '5', ')', 'flatwounds', 'in', 'the', 'studio', 'and', 'roundwound', 'xls', 'in', 'concert', '.'], ['cloob.com', 'is', 'a', 'persian-language', 'social', 'networking', 'website', ',', 'mainly', 'popular', 'in', 'iran', '.'], ['about', 'this', 'time', ',', 'mr', 'rudkin', 'of', 'abbots', 'hall', 'purchased', 'a', 'cottage', 'in', 'tollesbury', 'and', 'fitted', 'it', 'up', 'for', 'worship', ',', 'which', 'was', 'served', 'regularly', 'by', 'william', 'merchant', 'of', 'layer', 'breton', 'and', 'mr.', 'forster', '.'], ['at', 'the', 'same', 'time', ',', 'the', 'capital', 'was', 'moved', 'to', 'the', 'castle', 'of', 'saint', 'george', ',', 'a', 'more', 'well-protected', 'site', 'in', 'the', 'island', \"'s\", 'interior', '.'], ['the', 'modern', 'globe', 'theatre', 'is', 'an', 'academic', 'approximation', 'based', 'on', 'available', 'evidence', 'of', 'the', '1', '5', '9', '9', 'and', '1', '6', '1', '4', 'buildings', '.'], ['before', '1', '9', '4', '9', ',', 'most', 'chinese', 'films', 'were', 'produced', 'in', 'shanghai', ',', 'which', 'equipped', 'shanghai', 'with', 'abundant', 'experience', ',', 'talents', 'and', 'physical', 'solutions', 'in', 'film', 'production', '.'], ['lamellidea', 'ogasawarana', 'is', 'a', 'species', 'of', 'air-breathing', 'tropical', 'land', 'snails', ',', 'terrestrial', 'pulmonate', 'gastropod', 'mollusks', 'in', 'the', 'family', 'achatinellidae', '.'], ['the', 'racial', 'makeup', 'of', 'the', 'town', 'was', '9', '7', '.', '5', '7', '%', 'white', ',', '0', '.', '1', '9', '%', 'native', 'american', ',', '1', '.', '6', '9', '%', 'from', 'other', 'races', ',', 'and', '0', '.', '5', '6', '%', 'from', 'two', 'or', 'more', 'races', '.'], ['yap', 'also', 'signed', 'agreements', 'with', 'washington', 'department', 'of', 'ecology', 'director', 'ted', 'sturdevant', 'on', 'limiting', 'carbon', 'emissions', 'from', 'government', 'operations', 'and', 'promoting', 'awareness', 'of', 'the', 'impacts', 'of', 'sea', 'level', 'rise', 'on', 'coastal', 'areas', '.'], ['it', 'is', 'known', 'as', 'the', 'location', 'of', 'song', 'kol', 'lake', 'and', 'chatyr-kul', 'lake', 'and', 'tash', 'rabat', '.'], ['in', '2', '0', '1', '7', 'they', 'headlined', 'the', '2', '0', '1', '7', 'nba', 'all', 'star', 'game', 'pregame', 'introductions', 'and', 'performed', 'a', 'musical', 'show', 'with', 'various', 'guests', 'titled', '``', 'the', 'evolution', 'of', 'greatness', \"''\", '.'], ['it', 'refers', 'to', '``', 'the', 'ray', 'of', 'light', '(', 'behind', ')', 'a', 'man', \"'s\", 'shadow', \"''\", '.'], ['by', '1', '8', '3', '2', ',', 'lewis', 'weiss', 'began', 'building', 'boats', 'for', 'the', 'lehigh', 'coal', 'and', 'navigation', 'company', 'and', 'the', 'morris', 'canal', '&', 'amp', ';', 'banking', 'company', '.'], ['the', 'mount', 'orne', 'covered', 'bridge', 'is', 'located', 'in', 'a', 'rural', 'area', 'of', 'eastern', 'lunenburg', 'and', 'southwestern', 'lancaster', '.'], ['two', 'days', 'later', 'the', 'third', 'and', 'final', 'teaser', 'image', 'was', 'released', ',', 'showing', 'the', 'singer', 'in', 'a', 'red', 'aesthetic', 'set', '.'], ['the', 'valves', 'themselves', 'had', 'shorter', ',', '5', '/', '1', '6', '``', 'diameter', 'stems', ',', 'to', 'allow', 'for', 'the', 'more', 'aggressive', 'camshaft', '.'], ['the', 'maximum', 'boat', 'size', 'imposed', 'by', 'the', 'locks', 'proved', 'insufficient', ',', 'and', 'a', 'proposed', 'enlargement', 'to', 'the', 'larger', 'freycinet', 'gauge', 'was', 'never', 'realized', '.'], ['omonia', 'ormideia', 'is', 'a', 'cypriot', 'association', 'football', 'club', 'based', 'in', 'ormideia', ',', 'located', 'in', 'the', 'larnaca', 'district', '.'], ['home', 'ported', 'in', 'baltimore', ',', 'maryland', ',', 'different', 'sources', 'report', 'her', 'as', 'armed', 'either', 'with', 'six', '1', '2', '-pound', 'carronades', ',', 'or', 'six', 'six-pound', 'cannon', '.'], ['if', 'each', 'item', 'is', 'sold', 'in', 'isolation', ',', 'there', 'is', 'a', 'nash', 'equilibrium', 'in', 'which', 'alice', 'bids', 'slightly', 'above', '4', 'and', 'wins', ',', 'and', 'her', 'net', 'utility', 'is', 'slightly', 'below', '2', '.'], ['the', 'statue', 'is', 'a', 'work', 'of', 'the', 'sculptor', '(', '1', '9', '0', '6', '-', '1', '9', '8', '3', ')', 'and', 'it', 'was', 'inaugurated', 'on', '1', '9', 'january', '1', '9', '6', '7', '.'], ['nomura', 'has', 'stated', 'that', 'unlike', 'working', 'with', '``', 'final', 'fantasy', \"''\", 'characters', ',', 'keeping', 'the', 'main', 'character', 'sora', 'alive', 'and', 'interesting', 'over', 'multiple', 'games', 'is', 'a', 'challenge', '.'], ['this', 'central', 'point', 'was', 'generally', 'referred', 'to', 'as', '``', 'groma', \"''\", ',', 'from', 'the', 'name', 'of', 'the', 'instrument', 'used', 'by', 'the', '``', 'gromatici', \"''\", '(', 'surveyors', ')', '.'], ['dependent', 'on', 'the', 'hardness', 'of', 'the', 'surface', 'or', 'the', 'quality', 'of', 'the', 'grass', 'and', 'how', 'well', 'the', 'player', 'lands', 'will', 'impact', 'on', 'the', 'injury', '.'], ['beast', 'is', 'the', 'b', '2', 'st', '(', 'beast', 'is', 'the', 'best', ')', 'is', 'the', 'debut', 'mini-album', 'played', 'by', 'south', 'korean', 'boy', 'band', 'beast', ',', 'and', 'was', 'released', 'by', 'cube', 'entertainment', 'on', 'october', '1', '4', ',', '2', '0', '0', '9', '.'], ['in', '1', '9', '9', '2', ',', 'aged', '1', '8', ',', 'he', 'began', 'attending', 'the', 'royal', 'academy', 'of', 'dramatic', 'art', '(', 'rada', ')', 'in', 'london', '.'], ['after', 'working', 'as', 'a', 'landscape', 'painter', 'in', 'several', 'countries', ';', 'including', 'italy', ',', 'where', 'he', 'probably', 'lived', 'in', 'rome', 'from', '1', '7', '8', '0', 'to', '1', '7', '8', '5', ',', 'he', 'returned', 'to', 'france', ',', 'but', 'was', 'there', 'for', 'only', 'a', 'short', 'time', 'before', 'the', 'outbreak', 'of', 'the', 'revolution', '.'], ['amerila', 'arthusbertrand', 'is', 'a', 'moth', 'of', 'the', 'subfamily', 'arctiinae', 'first', 'described', 'by', 'félix', 'édouard', 'guérin-méneville', 'in', '1', '8', '3', '0', '.'], ['calvé', 'then', 'followed', 'this', 'success', 'by', 'winning', 'a', 'silver', 'medal', 'at', 'the', '2', '0', '1', '1', 'giant', 'slalom', 'world', 'cup', 'the', 'next', 'year', '.'], ['the', 'networks', 'spans', 'northeast', 'and', 'north-central', 'mexico', ',', 'along', 'with', 'the', 'southwestern', 'united', 'states', 'through', 'over-the-air', 'availability', ',', 'but', 'is', 'also', 'available', 'nationally', 'in', 'both', 'countries', 'via', 'cable', ',', 'satellite', 'and', 'iptv', 'services', '.'], ['the', 'chinese', 'indonesian', 'community', 'in', 'tanjung', 'balai', 'municipality', 'in', 'north', 'sumatra', 'has', 'protested', 'against', 'the', 'administration', \"'s\", 'plan', 'to', 'dismantle', 'a', 'statue', 'of', 'buddha', 'on', 'top', 'of', 'the', 'tri', 'ratna', 'temple', '.'], ['others', 'serve', 'as', 'missionaries', 'to', 'different', 'mission', 'countries', ',', 'while', 'many', 'who', 'have', 'chosen', 'the', 'lay', 'state', 'have', 'made', 'their', 'marks', 'in', 'the', 'field', 'of', 'politics', ',', 'the', 'academe', ',', 'music', 'and', 'arts', ',', 'medicine', ',', 'and', 'the', 'private', 'and', 'public', 'sectors', '.'], ['many', 'current', 'paths', ',', 'rather', 'than', 'a', 'single', 'filament', ',', 'are', 'possibly', 'involved', '.'], ['``', ',', 'with', 'a', 'reference', 'to', 'the', 'berlin', 'wall', ',', 'when', 'the', 'opponents', 'formed', 'a', 'wall', 'during', 'free', 'kicks', 'in', '1', '9', '8', '0', 's', '.'], ['after', 'the', 'locally', '(', 'and', 'internationally', ')', 'popular', 'social', 'networking', 'website', 'orkut', 'was', 'blocked', 'by', 'the', 'iranian', 'government', ',', 'a', 'series', 'of', 'local', 'sites', 'and', 'networks', ',', 'including', 'cloob', ',', 'emerged', 'to', 'fill', 'the', 'gap', '.'], ['in', 'january', ',', '1', '9', '7', '0', ',', 'he', 'moved', 'to', 'the', 'office', 'of', 'navy', 'comptroller', 'as', 'assistant', 'comptroller', 'for', 'cost', 'review', 'and', 'reporting', ',', 'and', 'as', 'a', 'special', 'assistant', 'to', 'the', 'assistant', 'secretary', 'of', 'the', 'navy', 'for', 'financial', 'management', '.'], ['in', '1', '8', '8', '6', 'when', 'the', 'archdiocese', 'of', 'varapuzha', 'was', 'established', 'and', 'this', 'church', 'became', 'the', 'cathedral', 'church', 'of', 'the', 'archdiocese', '.'], ['the', 'film', 'stars', 'pataratida', 'pacharawirapong', ',', 'siwat', 'chotchaicharin', 'and', 'porntip', 'papanai', 'as', 'the', 'ghost', '.'], ['this', 'was', 'an', 'expensive', 'operation', ',', 'but', 'the', 'costs', 'were', 'recuperated', 'within', 'a', 'few', 'years', '.'], ['morgan', 'had', 'the', 'support', 'of', 'morse', 'and', 'green', '(', 'though', 'green', \"'s\", 'endorsement', 'did', 'not', 'come', 'until', 'the', 'final', 'week', 'of', 'the', 'campaign', ')', ',', 'and', 'duncan', 'had', 'the', 'endorsement', 'of', 'most', 'of', 'the', 'party', 'organization', 'and', 'the', 'major', 'newspapers', 'in', 'the', 'state', '.'], ['in', 'return', ',', 'they', 'were', 'granted', 'periodical', 'shipments', 'of', 'cattle', 'and', 'food', '.'], ['alameda', 'island', 'is', 'an', 'island', 'located', 'in', 'the', 'san', 'francisco', 'bay', 'in', 'california', '.'], ['in', 'the', 'aftermath', 'of', 'italy', \"'s\", 'republican', 'referendum', 'after', 'world', 'war', 'ii', ',', 'efforts', 'to', 'prosecute', 'former', 'officials', 'in', 'the', 'fascist', 'government', 'for', 'collaborationism', 'and', 'war', 'crimes', 'resulted', 'in', 'the', 'legal', 'differentiation', 'between', 'the', 'concepts', 'of', 'normal', 'brutality', ',', 'cruel', 'brutality', ',', 'and', '``', 'particularly', 'cruel', 'brutality', \"''\", '.'], ['he', 'watched', 'it', 'about', 'half', 'a', 'year', 'before', 'filming', '``', 'flame', '&', 'amp', ';', 'citron', \"''\", ',', 'and', 'it', 'also', 'inspired', '``', 'the', 'mythologizing', 'of', 'the', 'characters', \"''\", 'in', '``', 'flame', '&', 'amp', ';', 'citron', \"''\", '.'], ['3', 'middle', 'school', 'is', 'located', 'on', 'xiangdong', 'road', 'in', 'hongqiao', 'district', 'of', 'tianjin', ',', 'china', '.'], ['players', 'that', 'have', 'suffered', 'two', 'or', 'more', 'concussions', 'were', 'slightly', 'younger', 'at', '1', '9', '.', '1', 'years', 'of', 'age', ',', 'and', 'had', 'some', 'more', 'experience', 'at', '9', '.', '1', 'years', 'of', 'participation', '.'], ['in', '2', '0', '0', '6', ',', 'robbins', 'founded', 'whizmob', 'inc.', ',', 'a', 'brain', 'trust', 'that', 'offers', 'law', 'enforcement', 'officials', 'and', 'ex-cons', 'as', 'subject', 'matter', 'experts', 'on', 'current', 'fraud', ',', 'theft', ',', 'and', 'scam', 'trends', '.'], ['elke', 'twesten', '(', 'born', 'july', '7', ',', '1', '9', '6', '3', 'in', 'scheeßel', ')', 'is', 'a', 'german', 'politician', 'for', 'the', 'cdu', 'in', 'lower', 'saxony', 'who', 'switched', 'parties', 'from', 'the', 'alliance', \"'\", '9', '0', '/the', 'greens', 'in', '2', '0', '1', '7', '.'], ['the', 'men', \"'s\", '4', '0', '0', 'metre', 'individual', 'medley', 'event', 'at', 'the', '1', '9', '7', '2', 'summer', 'olympics', 'took', 'place', 'august', '3', '0', '.'], ['richard', 'is', 'very', 'childish', 'and', 'has', 'been', 'seen', 'exhibiting', 'childish', 'behaviors', 'in', 'several', 'episodes', ',', 'which', 'include', 'believing', 'in', 'ghosts', ',', 'joining', 'in', 'some', 'of', 'gumball', \"'s\", 'misadventures', ',', 'believing', 'in', 'santa', 'claus', ',', 'and', 'many', 'others', '.'], ['the', 'process', 'of', 'moulting', 'in', 'insects', 'begins', 'with', 'the', 'separation', 'of', 'the', 'cuticle', 'from', 'the', 'underlying', 'epidermal', 'cells', '(', 'apolysis', ')', 'and', 'ends', 'with', 'the', 'shedding', 'of', 'the', 'old', 'cuticle', '(', 'ecdysis', ')', '.'], ['between', 'april', 'and', 'may', '2', '0', '1', '1', ',', 'the', 'group', 'completed', 'a', 'second', 'european', 'tour', ',', 'the', '``', 'breathe', 'in', 'life', 'tour', \"''\", ',', 'for', 'the', 'promotion', 'of', 'their', 'debut', 'album', '.'], ['thabo', 'andrew', 'rametsi', 'ii', '(', 'born', '1', '7', 'july', '1', '9', '8', '8', ')', ',', 'popularly', 'as', 'thabo', 'rametsi', ',', 'is', 'a', 'south', 'african', 'actor', 'and', 'producer', '.'], ['in', 'april', '2', '0', '0', '9', ',', 'black', 'starred', 'in', 'an', 'episode', 'of', '``', 'yo', 'gabba', 'gabba', '!'], ['the', 'following', 'day', ',', 'saint-étienne', 'announced', 'they', 'and', 'malbranque', 'had', 'agreed', 'to', 'a', 'mutual', 'termination', 'of', 'his', 'contract', '.'], ['on', 'february', '7', ',', '2', '0', '1', '1', 'yap', 'and', 'terasen', 'gas', 'provided', '$', '6', '.', '9', 'million', 'for', '3', '5', 'energy', 'projects', 'in', 'ten', 'school', 'districts', 'to', 'help', 'reduce', 'greenhouse', 'gas', 'emissions', ',', 'energy', 'consumption', 'and', 'costs', 'through', 'british', 'columbia', \"'s\", 'energy', 'conservation', 'agreement', 'fund', '.'], ['the', 'fourth', 'model', 'of', 'cybermat', 'appears', 'for', 'the', 'first', 'time', 'in', 'the', 'revived', 'series', 'in', 'the', '2', '0', '1', '1', 'episode', '``', 'closing', 'time', \"''\", ',', 'where', 'it', 'is', 'shown', 'to', 'have', 'an', 'organic', 'mouth', 'full', 'of', 'sharp', 'teeth', ',', 'and', 'transmits', 'power', 'to', 'a', 'crashed', 'cyber-ship', '.'], ['the', 'day', 'after', 'he', 'returned', ',', 'he', 'shot', 'down', 'two', 'british', 'planes', '.'], ['these', 'peptides', 'are', 'derived', 'from', 'gluten', 'or', 'gluten-like', 'proteins', '.'], ['his', 'house', 'has', 'been', 'incorporated', 'into', 'the', 'manx', 'national', 'heritage', 'folk', 'museum', 'at', 'cregneash', '.'], ['other', 'facilities', 'included', 'a', 'boiler', 'house', ',', 'a', '6', 'stall', 'roundhouse', ',', 'a', 'coal', 'tipple', 'and', 'a', 'u.s.', 'customs', 'bonded', 'warehouse', ',', 'for', 'the', 'care', 'of', 'imported', 'goods', '.'], ['in', '1', '9', '8', '7', ',', 'he', 'followed', 'hillenkamp', 'at', 'münster', 'and', 'both', 'formed', 'a', 'group', 'in', 'the', 'faculty', 'of', 'medicine', 'at', 'university', 'of', 'münster', '.'], ['she', 'also', 'set', 'osu', \"'s\", 'single-season', 'record', 'with', '1', '2', 'shutouts', '.'], ['instead', 'they', 'are', 'officially', 'called', 'fourth', 'class', ',', 'third', 'class', ',', 'second', 'class', ',', 'and', 'first', 'class', 'cadets', '.'], ['within', 'a', 'decade', ',', 'the', 'crown', 'ceded', 'the', 'territory', 'formally', 'back', 'to', 'honduras', '.'], ['the', 'review', 'was', 'intended', 'to', 'guide', 'tax', 'system', 'reforms', 'over', 'the', 'next', '1', '0', 'to', '2', '0', 'years', '.'], ['this', 'was', 'sometimes', 'referred', 'to', 'as', '``', 'upstairs', 'trading', \"''\", '.'], ['for', 'each', 'satellite', 'used', 'by', 'the', 'receiver', ',', 'the', 'receiver', 'must', 'first', 'acquire', 'the', 'signal', 'and', 'then', 'track', 'it', 'as', 'long', 'as', 'that', 'satellite', 'is', 'in', 'use', ';', 'both', 'are', 'performed', 'in', 'the', 'digital', 'domain', 'in', 'by', 'far', 'most', '(', 'if', 'not', 'all', ')', 'receivers', '.'], ['melinsky', \"'s\", 'work', 'has', 'been', 'featured', 'in', 'several', 'sets', 'of', 'commemorative', 'royal', 'mail', 'stamps', '.'], ['he', 'was', 'released', 'from', 'the', 'organization', 'on', 'june', '6', ',', '2', '0', '1', '8', '.'], ['the', '``', 'motivational', 'reserve', \"''\", '(', 'parallel', 'to', 'cognitive', 'reserve', ')', '(', 'with', 's.', 'forstmeier', ')', 'of', 'older', 'people', 'which', 'is', 'based', 'on', 'life', 'and', 'learning', 'history', 'resources', 'and', 'is', 'assumed', 'to', 'temporarily', 'compensate', 'for', 'a', 'dementia-induced', 'reduction', 'in', 'intelligence', 'and', 'general', 'abilities', '.'], ['he', 'received', '3', '2', ',', '6', '3', '5', 'votes', 'and', 'defeated', 'jehanzeb', 'imtiaz', 'gill', ',', 'a', 'candidate', 'of', 'pakistan', 'peoples', 'party', '(', 'ppp', ')', '.'], ['bapaume', 'is', 'a', 'rural', 'locality', 'in', 'the', 'southern', 'downs', 'region', ',', 'queensland', ',', 'australia', '.'], ['no', 'intellectual', 'will', 'want', 'to', 'waste', 'his', 'time', 'in', 'a', 'chaotic', 'environment', 'as', 'it', 'presently', 'stands', 'in', 'ijoko', '.'], ['the', 'main', 'and', 'the', 'only', 'inhabited', 'islands', 'of', 'the', 'archipelago', 'are', 'othoni', ',', 'ereikoussa', 'and', 'mathraki', '.'], ['kocian', 'returned', 'to', 'competition', 'at', 'the', 'byu', ',', 'utah', 'state', 'tri-meet', 'where', 'she', 'competed', 'on', 'both', 'bars', 'and', 'floor', '.'], ['during', 'the', 'last', 'years', 'of', 'the', 'ming', ',', 'today', \"'s\", 'hubei', 'was', 'ravaged', 'several', 'times', 'by', 'the', 'rebel', 'armies', 'of', 'zhang', 'xianzhong', 'and', 'li', 'zicheng', '.'], ['it', 'was', 'hard', 'for', 'the', 'club', 'to', 'qualify', 'from', 'the', 'first', 'rounds', 'of', 'the', 'soviet', 'cup', '.'], ['supposedly', ',', 'he', 'paid', '$', '2', '5', '0', 'for', 'the', 'horse', 'but', 'he', 'was', 'just', '``', 'too', 'much', 'horse', \"''\", 'for', 'his', 'show', \"'s\", 'riders', '.'], ['hadžić', 'sent', 'an', 'urgent', 'request', 'to', 'belgrade', 'for', 'reinforcements', ',', 'arms', ',', 'and', 'equipment', '.'], ['this', 'made', 'it', 'the', 'only', 'non-amd', 'cpu', 'on', 'socket', '7', 'to', 'support', '3', 'dnow', '!'], ['invited', 'by', 'walter', 'fink', ',', 'he', 'was', 'the', '1', '9', 'th', 'composer', 'to', 'be', 'featured', 'in', 'the', 'annual', 'komponistenporträt', 'of', 'the', 'rheingau', 'musik', 'festival', 'in', '2', '0', '0', '9', '.'], ['the', 'survival', 'of', 'the', 'names', 'of', 'the', 'largest', 'rivers', 'from', 'antiquity', 'is', 'often', 'cited', 'as', 'an', 'evidence', 'for', 'the', 'continuity', 'theory', ',', 'although', 'some', 'linguists', 'who', 'support', 'it', 'note', 'that', 'a', 'slavic-speaking', 'population', 'transmitted', 'them', 'to', 'modern', 'romanians', '.'], ['on', '2', '2', 'january', '1', '6', '1', '9', 'he', 'was', 'knighted', 'at', 'newmarket', ',', 'and', 'in', 'november', 'of', 'the', 'same', 'year', 'married', 'elizabeth', ',', 'daughter', 'of', 'sir', 'nicholas', 'tufton', '.'], ['in', '1', '9', '1', '6', ',', 'the', 'building', 'was', 'sold', 'to', 'william', 'wrigley', 'jr.', 'for', 'approximately', '$', '1', '2', '5', ',', '0', '0', '0', '.'], ['stafford', 'also', 'stated', 'she', 'had', 'some', 'ideas', 'for', 'a', 'recast', ',', 'but', 'would', 'not', 'detail', 'the', 'specifics', 'of', 'those', 'ideas', '.'], ['is', 'a', 'toyline', 'by', 'takara', 'toys', 'launched', 'in', '1', '9', '8', '0', '.'], ['outside', 'of', 'canada', ',', 'pérez', 'is', 'best', 'known', 'for', 'his', 'touring', 'and', 'recording', 'with', 'ricardo', 'lemvo', \"'s\", 'makina', 'loca', ',', 'where', 'he', 'plays', 'flute', ',', 'sometimes', 'piano', ',', 'and', 'sings', 'some', 'vocals', '.'], ['sex', 'is', 'one', 'of', 'the', 'prohibited', 'grounds', 'under', 'the', 'act', ',', 'meaning', 'that', 'discrimination', 'on', 'this', 'basis', 'is', 'prohibited', '.'], ['the', 'school', 'has', 'since', 'changed', 'status', 'to', 'an', 'academy', '.'], ['throughout', 'this', 'time', ',', 'continuous', 'pressure', 'was', 'maintained', 'by', 'relevant', 'committees', ',', 'for', 'example', 'the', 'technical', 'committee', 'on', 'agricultural', 'chemicals', '(', 'tcac', ')', ',', 'to', 'reduce', 'approved', 'organochlorine', 'use', '.'], ['haldra', 'is', 'a', 'genus', 'of', 'pyramidellid', 'gastropod', 'mollusks', 'or', 'micromollusks', 'in', 'the', 'tribe', 'chrysallidini', 'within', 'the', 'family', 'pyramidellidae', '.'], ['the', 'lords', 'of', 'neipperg', 'became', 'protestants', 'around', '1', '5', '3', '0', '.'], ['her', '2', '0', '0', '6', 'solo', 'cabaret', 'debut', 'at', 'feinstein', \"'s\", 'at', 'the', 'regency', 'received', 'rave', 'reviews', 'from', 'new', 'york', 'times', 'and', 'variety', 'as', 'well', 'as', 'the', 'bisto', 'award', 'for', 'best', 'debut', 'concert', '.'], ['in', '2', '0', '1', '4', ',', 'the', 'estimated', 'impact', 'of', 'that', 'year', \"'s\", 'convention', 'was', '$', '1', '7', '7', '.', '8', 'million', '.'], ['by', '1', '9', '1', '3', 'a', 'soup', 'kitchen', 'had', 'been', 'established', 'to', 'provide', 'meals', 'for', 'older', 'inmates', 'and', 'in', '1', '9', '1', '8', 'hot', 'meals', 'were', 'also', 'being', 'supplied', 'for', 'school', 'children', '(', ';', ')', '.'], ['after', '1', '9', '8', '1', \"'s\", '``', 'the', 'visitors', \"''\", ',', 'björn', 'ulvaeus', 'and', 'benny', 'andersson', 'took', 'some', 'time', 'off', 'to', 'write', 'new', 'material', ',', 'yet', 'at', 'the', 'same', 'time', ',', 'they', 'were', 'beginning', 'to', 'create', 'their', 'first', 'musical', ',', '``', 'chess', \"''\", ',', 'alongside', 'tim', 'rice', '.'], ['kids', 'station', 'hd', '(', 'japanese', ':', 'hd', ',', '``', 'kizzu', 'sutēshon', 'hd', \"''\", ')', ',', 'an', 'hd', 'version', 'of', 'this', 'channel', ',', 'was', 'first', 'established', 'on', 'october', '1', ',', '2', '0', '0', '9', '.'], ['she', 'was', 'then', 'adopted', 'by', 'some', 'friends', 'of', 'her', 'mother', \"'s\", 'and', 'raised', 'by', 'them', '.'], ['he', 'found', 'the', 'game', 'frustrating', 'at', 'times', 'when', 'unable', 'to', 'control', 'the', 'ball', '.'], ['moltke', 'told', 'the', 'kaiser', 'that', 'attempting', 'to', 'redeploy', 'a', 'million', 'men', 'was', 'unthinkable', ',', 'and', 'that', 'making', 'it', 'possible', 'for', 'the', 'french', 'to', 'attack', 'the', 'germans', '``', 'in', 'the', 'rear', \"''\", 'would', 'prove', 'disastrous', '.'], ['it', 'was', 'here', 'that', 'phillips', 'first', 'began', 'working', 'with', 'sean', 'mcvay', ',', 'who', 'had', 'preceded', 'phillips', 'as', 'washington', \"'s\", 'tight', 'ends', 'coach', 'before', 'being', 'elevated', 'to', 'offensive', 'coordinator', '.'], ['the', 'postal', 'code', 'of', 'the', 'area', 'is', '6', '1', '0', '.'], ['the', 'brother', ',', 'franklin', 'j.', 'w.', 'schmidt', ',', 'had', 'been', 'prominent', 'in', 'the', 'then-new', 'field', 'of', 'wildlife', 'management', '.'], ['it', 'was', 'not', 'until', '1', '9', '9', '1', 'that', 'the', 'diocese', 'of', 'alcalá', 'was', 'finally', 'restored', ',', 'being', 'separated', 'from', 'the', 'archdiocese', 'of', 'madrid', ',', 'at', 'which', 'time', 'the', 'building', 'was', 'granted', 'its', 'present', 'status', 'of', 'cathedral-magistral', '.'], ['according', 'to', 'her', 'sister', 'mercedes', 'de', 'acosta', ',', '``', 'rita', 'designed', 'most', 'of', 'her', 'own', 'clothes', 'and', 'they', 'were', 'made', 'for', 'her', 'by', 'callot', 'soeurs', '.', \"''\"], ['during', 'the', 'second', 'world', 'war', ',', 'the', 'childless', 'couple', 'took', 'in', 'british', 'children', 'who', 'were', 'sent', 'to', 'canada', 'for', 'safety', 'reasons', '.'], ['the', 'english', 'people', 'possess', 'the', 'jewish', 'spirit', 'and', 'the', '``', 'chief', 'task', \"''\", 'of', 'the', 'german', 'people', 'and', 'national', 'socialism', 'is', 'to', 'destroy', 'the', 'jewish', 'spirit', '.'], ['fighting', 'continued', 'until', 'one', 'party', 'was', 'dead', 'or', 'disabled', '.'], ['during', 'his', 'time', 'at', 'the', 'fletcher', 'school', ',', 'he', 'was', 'the', 'director', 'of', '``', 'the', 'fletcher', 'forum', 'of', 'world', 'affairs', \"''\", '.'], ['its', 'purpose', 'is', 'to', 'ensure', 'better', 'local', 'and', 'regional', 'management', 'of', 'groundwater', 'use', 'and', 'it', 'seeks', 'to', 'have', 'a', 'sustainable', 'groundwater', 'management', 'in', 'california', 'by', '2', '0', '4', '2', '.'], ['in', '1', '9', '5', '7', ',', 'phillips', 'joined', 'aneurin', 'bevan', 'and', 'richard', 'crossman', 'in', 'suing', '``', 'the', 'spectator', \"''\", 'magazine', 'for', 'libel', '.'], ['joseph', 'was', 'known', ',', 'in', 'addition', 'for', 'being', 'very', 'handsome', ',', 'to', 'be', 'of', 'gentle', 'temperament', '.'], ['in', '2', '0', '1', '0', ',', 'miličić', 'paid', 'for', 'a', 'trip', 'and', 'treatment', 'in', 'china', 'for', 'five', 'serbian', 'children', 'suffering', 'from', 'batten', 'disease', '.'], ['the', 'vessel', 'did', 'not', 'enter', 'civilian', 'service', 'before', 'she', 'was', 'broken', 'up', 'for', 'scrap', 'in', '2', '0', '0', '3', '.'], ['amid', 'the', 'withdrawal', 'of', 'iraqi', 'forces', 'from', 'three', 'northern', 'provinces', ',', 'kurdistan', 'region', 'emerged', 'in', '1', '9', '9', '2', 'as', 'an', 'autonomous', 'entity', 'inside', 'iraq', 'with', 'its', 'own', 'local', 'government', 'and', 'parliament', '.'], ['his', 'songs', 'mainly', 'feature', 'vocals', 'and', 'acoustic', 'guitar', 'played', 'over', 'hip', 'hop', 'beats', 'and', 'his', 'sound', 'has', 'been', 'compared', 'to', 'that', 'of', 'musician', 'everlast', '.'], ['a', 'turnoff', 'south', 'on', 'the', 'main', 'road', 'in', 'the', 'village', 'leads', 'inland', 'to', 'vaipouli', 'college', 'and', 'itu', 'o', 'tane', 'secondary', 'school', '.'], ['it', 'takes', 'its', 'name', 'from', 'the', 'nearby', 'town', 'of', 'carmel', ',', 'and', 'in', 'turn', 'gives', 'it', 'to', 'the', 'community', 'of', '``', 'lake', 'carmel', \"''\", 'surrounding', 'it', '.'], ['in', '1', '9', '8', '4', ',', 'kozak', 'was', 'the', 'legal', 'advisor', 'in', 'the', 'state', 'department', \"'s\", 'delegation', 'that', 'met', 'at', 'a', 'midtown', 'manhattan', 'hotel', '(', 'while', 'registered', 'under', 'pseudonyms', 'to', 'avoid', 'attention', ')', 'with', 'cuba', \"'s\", 'vice', 'foreign', 'minister', 'ricardo', 'alarcón', '.'], ['if', 'a', 'man', 'recognizes', 'kuroki', 'in', 'his', 'wife', 'or', 'girlfriend', ',', 'he', 'is', 'forced', 'to', 'strip', 'it', 'off', 'in', 'order', 'to', 'deal', 'with', 'her', '.'], ['this', 'vision', 'includes', 'rich', ',', 'healthy', 'and', 'productive', 'ecosystems', 'actively', 'managed', 'and', 'sustainably', 'used', 'by', 'formerly', 'poor', 'local', 'communities', '.'], ['mcmanus', 'is', 'on', 'a', 'three-year', 'contract', 'beginning', 'from', 'the', 'start', 'of', '2', '0', '1', '6', ',', 'which', 'includes', 'mcmanus', 'remuneration', 'of', 'shares', 'valued', 'at', '$', '3', '5', '0', ',', '0', '0', '0', 'every', 'six', 'months', '.'], ['françois-joseph', 'kinson', '(', 'dutch', ':', 'franciscus', 'josephus', 'kinsoen', ')', '(', 'bruges', '2', '9', 'january', '1', '7', '7', '0', '-', '1', '8', 'october', '1', '8', '3', '9', ')', ',', 'was', 'a', 'flemish', 'painter', '.'], ['that', 'night', ',', 'gally', 'is', 'awakened', 'by', 'ido', 'going', 'out', '.'], ['according', 'to', 'legend', 'there', \"'s\", 'a', 'vintage', 'bottle', 'of', 'wine', 'from', 'voltaire', \"'s\", 'personal', '``', 'cave', \"''\", 'built', 'into', 'the', 'foundation', '.'], ['``', 'it', 'is', 'a', 'plea', 'for', 'education', 'rather', 'than', 'violence', '.', \"''\"], ['in', '2', '0', '0', '8', ',', 'hauwanga', 'was', 'involved', 'in', 'a', 'legal', 'saga', 'with', 'another', 'prominent', 'businessman', ',', 'harold', 'pupkewitz', '.'], ['``', 'the', 'lost', 'weekend', \"''\", 'failed', 'commercially', ',', 'and', 'after', 'a', 'few', 'singles', ',', 'the', 'band', 'officially', 'broke', 'up', ',', 'though', 'they', 'served', 'as', 'jessica', 'griffin', \"'s\", 'backing', 'band', 'on', 'the', 'first', 'album', 'by', 'the', 'would-be-goods', ',', '``', 'the', 'camera', 'loves', 'me', \"''\", 'in', '1', '9', '8', '8', '.'], ['1', '0', '1', '5', ')', 'in', '1', '9', '8', '9', '-', '9', '0', ',', 'and', 'penrith', 'panthers', '(', 'heritage', 'no', '.'], ['investigations', 'of', 'the', 'event', ',', 'dubbed', '``', 'troopergate', \"''\", 'by', 'media', 'outlets', ',', 'were', 'not', 'affected', 'by', 'spitzer', \"'s\", 'resignation', '.'], ['by', 'october', '1', '8', '4', '4', 'a', 'bonding', 'warehouse', 'had', 'been', 'built', 'in', 'manchester', 'and', 'the', 'first', 'cargo', 'to', 'arrive', 'was', 'announced', 'in', 'a', 'letter', 'to', 'the', '``', 'manchester', 'guardian', ',', \"''\", 'later', 'printed', 'in', '``', 'the', 'times', ':', \"''\"], ['upon', 'completion', 'of', 'these', 'courses', ',', 'he', 'was', 'transferred', 'to', 'the', 'marine', 'corps', 'supply', 'activity', ',', 'philadelphia', ',', 'pennsylvania', ',', 'for', 'duty', 'as', 'field', 'inspection', 'officer', ',', 'field', 'inspection', 'section', ',', 'and', 'later', ',', 'officer', 'in', 'charge', ',', 'audit', 'section', '.'], ['the', 'display', 'has', 'contained', 'works', 'by', 'influential', 'pop', 'artists', 'andy', 'warhol', ',', 'peter', 'blake', ',', 'roy', 'lichtenstein', 'and', 'david', 'hockney', '.'], ['season', 'five', 'opens', 'in', 'los', 'angeles', ',', 'where', 'a', 'vacationing', 'chuck', 'and', 'nate', 'decide', 'to', 'visit', 'serena', ',', 'who', 'is', 'working', 'on', 'a', 'film', 'set', '.'], ['a', 'failed', 'independence', 'vote', 'in', 'late', '1', '9', '9', '5', 'can', 'be', 'partially', 'attributed', 'to', 'bermudian', 'fears', 'of', 'scaring', 'away', 'foreign', 'firms', '.'], ['the', 'median', 'income', 'for', 'a', 'household', 'in', 'the', 'borough', 'was', '$', '3', '5', ',', '0', '3', '0', ',', 'and', 'the', 'median', 'income', 'for', 'a', 'family', 'was', '$', '4', '6', ',', '6', '8', '1', '.'], ['wood', 'was', 'voted', 'as', 'one', 'of', 'grazia', 'magazine', \"'s\", \"'women\", 'of', 'the', 'year', \"'\", 'in', '2', '0', '0', '8', 'and', 'has', 'won', 'the', \"'inspirational\", 'determination', \"'\", 'award', 'in', 'the', 'inspiration', 'awards', 'for', 'women', '2', '0', '1', '0', '.'], ['pat', 'mcmanus', 'and', 'his', 'team', 'of', 'divers', 'from', 'the', 'athlone', 'sub', 'aqua', 'club', 'investigate', 'an', 'unknown', 'ship', 'lost', 'to', 'time', 'on', 'the', 'lake', 'bed', 'of', 'lough', 'ree', 'for', 'many', 'years', '.'], ['the', 'band', 'formed', 'in', 'late', '2', '0', '1', '1', 'and', 'self-released', 'their', 'debut', 'ep', 'titled', '``', 'waves', \"''\", 'on', 'march', '1', '3', ',', '2', '0', '1', '2', '.'], ['in', 'mid-', '2', '0', '0', '7', 'there', 'were', 'an', 'estimated', '3', ',', '4', '5', '6', 'domesticated', 'elephants', 'left', 'in', 'thailand', 'and', 'roughly', 'a', 'thousand', 'wild', 'elephants', '.'], ['the', 'nyu', 'archives', 'also', 'accommodates', 'scholars', ',', 'authors', ',', 'and', 'other', 'interested', 'persons', 'who', 'seek', 'to', 'evaluate', 'the', 'impact', 'of', 'the', 'university', \"'s\", 'activities', 'on', 'the', 'history', 'of', 'american', 'social', ',', 'cultural', 'and', 'intellectual', 'development', '.'], ['he', 'selected', 'the', 'mountain', 'as', 'the', 'focus', 'of', 'the', 'primary', 'axis', 'of', 'the', 'exposition', '.'], ['he', 'later', 'formed', 'his', 'own', 'company', ',', 'grand', 'slamm', 'animation', ',', 'where', 'he', 'produced', '``', 'ubu', \"''\", '.'], ['harris', 'also', 'oversaw', 'harris-seybold', \"'s\", 'installation', 'of', 'a', 'research', 'lab', 'to', 'facilitate', 'innovation', 'in', 'lithography', 'and', 'graphic', 'arts', '.'], ['the', 'twins', 'were', 'starting', 'to', 'get', 'hip', 'to', 'the', 'young', 'fledgling', 'hip-hop', 'scene', 'due', 'to', 'the', 'prodding', 'of', 'fat', 'man', ',', 'whose', 'harlem', 'world', 'club', 'became', 'a', 'rite', 'of', 'passage', 'for', 'many', 'up', 'and', 'coming', 'hip-hop', 'artists', '.'], ['farruko', 'released', 'his', 'first', 'album', '``', 'el', 'talento', 'del', 'bloque', \"''\", 'which', 'produced', 'hit', 'singles', ',', '``', 'su', 'hija', 'me', 'gusta', \"''\", 'featuring', 'josé', 'feliciano', ',', '``', 'nena', 'fichu', \"''\", ',', 'and', '``', 'te', 'iré', 'a', 'buscar', \"''\", '.'], ['cotillard', ',', 'isabelle', 'huppert', ',', 'and', 'isabelle', 'adjani', 'are', 'the', 'only', 'french', 'actresses', 'to', 'win', 'the', 'new', 'york', 'film', 'critics', 'circle', 'award', 'for', 'best', 'actress', '.'], ['the', 'halt', 'was', 'approximately', 'from', 'london', 'liverpool', 'street', 'station', '.'], ['the', 'difference', 'is', 'small', 'for', 'the', 'car', 'owner', 'and', 'the', 'owner', 'is', 'always', 'responsible', '.'], ['the', 'anime', 'was', 'intended', 'to', 'be', 'aired', 'outside', 'japan', ',', 'but', 'no', 'international', 'airing', 'date', 'has', \"n't\", 'yet', 'announced', '.'], ['by', '2', '0', '0', '3', 'more', 'classes', 'were', 'being', 'offered', 'and', 'the', 'summer', 'school', 'moved', 'permanently', 'to', 'its', 'new', 'home', 'on', 'the', 'university', 'of', 'alberta', 'campus', '.'], ['in', 'irish', 'club', 'cricket', ',', 'he', 'plays', 'for', 'the', 'railway', 'union', 'cricket', 'club', '.'], ['the', 'funding', 'of', 'the', 'national', 'science', 'foundation', 'network', 'as', 'a', 'new', 'backbone', 'in', 'the', '1', '9', '8', '0', 's', ',', 'as', 'well', 'as', 'private', 'funding', 'for', 'other', 'commercial', 'extensions', ',', 'led', 'to', 'worldwide', 'participation', 'in', 'the', 'development', 'of', 'new', 'networking', 'technologies', ',', 'and', 'the', 'merger', 'of', 'many', 'networks', '.'], ['he', 'achieved', 'distinction', 'as', 'a', 'director', 'of', 'choral', 'groups', ',', 'teacher', 'of', 'voice', ',', 'and', 'a', 'member', 'of', 'choral', 'competition', 'juries', '.'], ['it', 'was', 'also', 'adapted', 'into', 'versions', 'with', 'much', 'narrower', 'and', 'longer-range', 'beams', 'that', 'was', 'used', 'to', 'guide', 'the', 'bombers', 'on', 'missions', 'over', 'britain', ',', 'under', 'the', 'name', 'knickebein', 'and', 'x-gerät', '.'], ['in', '1', '9', '9', '0', ',', 'the', 'pixar', 'image', 'computer', 'was', 'defining', 'the', 'state-of-the-art', 'in', 'commercial', 'image', 'processing', '.'], ['instead', 'the', 'french', 'term', 'of', '``', 'noblesse', \"''\", 'has', 'been', 'used', 'by', 'the', 'court', 'of', 'the', 'lord', 'lyon', 'as', 'this', 'term', 'not', 'only', 'includes', 'peers', 'but', 'also', 'the', 'non-peerage', 'minor-nobility', ',', 'which', 'includes', 'baronets', ',', 'knights', ',', 'feudal', 'barons', ',', 'armigers', 'with', 'territorial', 'designations', ',', 'esquires', 'and', 'gentlemen', '.'], ['the', 'runway', 'was', 'further', 'lengthened', 'to', 'accommodate', 'vickers', 'viscount', ',', '1', '9', '7', '0', ',', 'and', 'ultimately', 'boeing', '7', '3', '7', 'aircraft', 'types', 'in', '1', '9', '7', '5', '.'], ['the', 'board', 'of', 'education', 'act', '1', '8', '9', '9', 'abolished', 'the', 'committee', 'of', 'the', 'privy', 'council', 'which', 'had', 'been', 'responsible', 'for', 'education', 'matters', 'and', 'instituted', 'a', 'new', 'board', 'of', 'education', 'from', '1', 'april', '1', '9', '0', '0', '.'], ['as', 'duke', 'descends', 'on', 'los', 'angeles', 'in', 'hopes', 'of', 'taking', 'a', 'vacation', ',', 'his', 'ship', 'is', 'shot', 'down', 'by', 'unknown', 'hostiles', '.'], ['the', 'editing', 'dragged', 'on', 'for', '2', 'years', ',', 'and', 'florin', 'piersic', 'jr', 'joined', 'during', 'the', 'post-production', 'phase', 'as', 'a', 'technical', 'consultant', '.'], ['ratledge', ',', 'the', 'last', 'remaining', 'original', 'member', 'of', 'the', 'band', ',', 'had', 'left', 'during', 'the', 'early', 'stages', 'of', 'recording', '.'], ['the', 'presence', 'of', 'these', 'current', 'paths', 'in', 'the', 'dielectric', 'can', 'be', 'in', 'situ', 'demonstrated', 'via', 'conductive', 'atomic', 'force', 'microscopy', '.'], ['apart', 'from', 'this', 'show', ',', 'lewis', 'also', 'helped', 'to', 'launch', '``', 'the', 'jackie', 'gleason', 'show', \"''\", ',', '``', 'the', 'dinah', 'shore', 'show', \"''\", 'and', '``', 'the', 'phil', 'silvers', 'show', \"''\", '.'], ['by', '2', '0', '1', '3', ',', 'the', 'last', 'issue', 'has', 'been', 'published', 'in', '2', '0', '1', '1', '.'], ['at', 'the', 'time', 'of', '``', 'expedition', 'to', 'the', 'barrier', 'peaks', \"''\", \"'s\", 'release', ',', 'each', '``', 'dungeons', '&', 'amp', ';', 'dragons', \"''\", 'module', 'was', 'marked', 'with', 'an', 'alphanumeric', 'code', 'indicating', 'the', 'series', 'to', 'which', 'it', 'belonged', '.'], ['he', 'argued', 'that', 'the', 'two-state', 'model', 'has', 'become', 'untenable', 'and', 'that', 'israel', \"'s\", 'permanent', 'control', 'over', 'millions', 'of', 'palestinians', 'who', 'lack', 'basic', 'rights', 'will', 'result', 'in', 'war', ',', 'and', 'perhaps', 'even', 'ethnic', 'cleansing', '.'], ['esquivel', \"'s\", 'original', 'styles', 'were', 'inspired', 'by', 'music', 'and', 'cars', '.'], ['this', 'oberschlesische', 'schmalspurbahn', '(', 'ossb', ')', 'survived', 'the', 'nationalization', 'of', 'the', 'standard', 'gauge', 'lines', ',', 'and', 'in', 'two', 'steps', '1', '9', '2', '0', 'and', '1', '9', '4', '5', 'became', 'present', 'day', 'górnośląskie', 'koleje', 'wąskotorowe', '(', 'gkw', ')', '.'], ['``', 'i', 'miss', 'you', \"''\", 'was', 'recorded', 'throughout', '2', '0', '0', '3', ',', 'and', 'began', 'production', 'at', 'the', 'rubin', \"'s\", 'house', ',', 'a', 'rented', 'home', 'in', 'the', 'san', 'diego', 'luxury', 'community', 'of', 'rancho', 'santa', 'fe', '.'], ['in', 'great', 'britain', ',', 'the', 'number', 'of', 'infected', 'carcasses', 'recovered', 'each', 'year', 'declined', 'after', 'a', 'peak', 'in', '2', '0', '0', '6', '.'], ['in', 'january', '1', '9', '5', '0', 'the', '1', '3', '8', 'th', 'became', 'the', 'first', 'new', 'york', 'air', 'national', 'guard', 'unit', 'to', 'receive', 'jet', 'aircraft', ',', 'obtaining', 'f-', '8', '4', 'b', 'thunderjets', ',', 'mostly', 'from', 'the', 'usaf', '2', '0', 'th', 'fighter', 'group', 'at', 'shaw', 'afb', ',', 'south', 'carolina', '.'], ['on', 'the', 'same', 'day', ',', 'the', 'electoral', 'commission', 'said', 'that', 'the', 'election', 'would', 'not', 'be', 'held', 'over', 'again', ',', 'rejecting', 'the', 'opposition', 'demands', '.'], ['the', 'project', 'started', 'in', '2', '0', '0', '4', 'from', 'the', 'initiative', 'of', 'minna', 'maija', 'lappalainen', ',', 'who', 'aimed', 'to', 'create', 'a', 'collaboration', 'between', 'finnish', 'artists', 'and', 'the', 'people', 'of', 'the', 'santhiaba', 'neighbourhood', 'in', 'dakar', '.'], ['butterfield', 'road', ',', 'sleepy', 'hollow', \"'s\", 'main', 'street', ',', 'is', 'accessed', 'from', 'sir', 'francis', 'drake', 'boulevard', ',', 'a', 'major', 'east-west', 'road', 'in', 'marin', 'county', '.'], ['in', '1', '9', '6', '1', ',', 'gmats', 'had', 'a', 'total', 'of', '3', '6', 'pilots', 'and', '1', '5', '0', 'maintenance', 'staff', ',', 'and', 'by', '1', '9', '6', '5', 'this', 'had', 'grown', 'to', '2', '7', 'pilots', ',', '2', '7', 'co-pilots', 'and', 'a', 'total', 'staff', 'of', '2', '3', '0', '.'], ['during', 'the', 'time', 'liwa', 'al-thuwar', 'al-raqqa', 'was', 'part', 'of', 'al-nusra', ',', 'it', 'fought', 'the', 'kurdish-led', 'people', \"'s\", 'protection', 'units', '(', 'ypg', ')', 'in', 'tell', 'abyad', ',', 'and', 'was', 'accused', 'by', 'kurdish', 'officials', 'of', 'involvement', 'in', 'the', 'abduction', 'of', 'kurds', 'and', 'looting', 'in', 'raqqa', 'city', '.'], ['antler', 'orchids', 'grow', 'in', 'coastal', 'scrub', 'and', 'on', 'mangroves', ',', 'in', 'coastal', 'rainforest', ',', 'and', 'woodland', ',', 'sometimes', 'on', 'rocks', '.'], ['in', 'some', 'circumstances', ',', 'land', 'use', 'permits', 'may', 'be', 'granted', 'to', 'individuals', ',', 'organizations', ',', 'or', 'companies', 'if', 'the', 'intended', 'use', 'is', 'compatible', 'with', 'conservation', 'of', 'the', 'area', '.'], ['ovulation', 'is', 'the', 'release', 'of', 'eggs', 'from', 'the', 'ovaries', '.'], ['democrats', ',', 'who', 'had', 'hoped', 'that', 'bradley', 'might', 'side', 'with', 'their', 'candidate', ',', 'focused', 'their', 'anger', 'on', 'him', 'rather', 'than', 'on', 'his', 'fellow', 'republicans', 'on', 'the', 'panel', '.'], ['by', '1', '9', '7', '6', 'zappa', \"'s\", 'output', 'had', 'slowed', 'while', 'he', 'was', 'in', 'dispute', 'with', 'cohen', 'and', 'warner', 'bros.', 'records', '.'], ['he', 'serves', 'a', 'meal', 'of', 'vipers', 'and', 'scorpions', ',', 'which', 'juan', 'bravely', 'eats', '.'], ['and', 'during', 'his', 'period', 'in', 'the', 'cabinet', ',', 'he', 'is', 'believed', 'to', 'have', 'angered', 'the', 'right', 'wing', 'of', 'his', 'party', 'and', 'the', 'prime', 'minister', 'for', 'not', 'pressing', 'far', 'enough', 'with', 'anti-trade', 'union', 'legislation', '.'], ['a', 'project', 'in', '2', '0', '0', '7', 'has', 'sequenced', 'the', 'genome', 'of', 'dandruff-causing', '``', 'malassezia', 'globosa', \"''\", 'and', 'found', 'it', 'to', 'have', '4', ',', '2', '8', '5', 'genes', '.'], ['in', 'their', 'tours', 'in', '2', '0', '1', '0', ',', 'the', 'band', 'supported', 'asking', 'alexandria', ',', 'of', 'mice', '&', 'amp', ';', 'men', ',', 'sleeping', 'with', 'sirens', ',', 'and', 'pierce', 'the', 'veil', '.'], ['the', 'township', 'of', 'edgecumbe', 'in', 'the', 'bay', 'of', 'plenty', 'region', 'was', 'evacuated', 'on', 'april', '6', 'due', 'to', 'flooding', ',', 'and', 'a', 'state', 'of', 'emergency', 'declared', '.'], ['he', 'later', 'transferred', 'thomas', \"'s\", 'wardship', 'to', 'john', \"'s\", 'brother', ',', 'henry', 'rolfe', 'in', 'heacham', '.'], ['menden', 'is', 'also', 'the', 'host', 'of', 'an', 'international', 'soccer', 'competition', 'in', 'which', 'every', 'u-', '1', '0', 'club', 'can', 'take', 'part', '.'], ['there', 'is', 'evidence', 'that', 'originally', 'it', 'continued', 'eastwards', 'to', 'the', 'north', 'east', 'corner', 'of', 'the', 'nave', ',', 'where', 'there', 'is', 'a', 'stub', 'of', 'similar', 'walling', ',', 'and', 'that', 'part', 'was', 'removed', 'to', 'accommodate', 'the', '1', '4', 'th', 'century', 'tower', '.'], ['in', 'wyoming', ',', 'the', 'major', 'tributary', 'is', 'goose', 'creek', ',', 'which', 'flows', 'out', 'of', 'a', 'basin', 'with', 'sheridan', ',', 'wyoming', 'at', 'its', 'center', ',', 'and', 'so', 'this', 'entire', 'basin', 'area', 'has', 'well-developed', 'paved', 'and', 'gravel', 'roads', '.'], ['thereafter', 'kodagu', 'was', 'annexed', 'by', 'the', 'british', 'and', 'the', 'raja', 'was', 'exiled', '.'], ['it', 'is', 'one', 'of', 'several', 'crabs', 'known', 'as', 'the', 'mud', 'crab', 'and', 'is', 'found', 'in', 'mangrove', 'areas', 'from', 'southeast', 'asia', 'to', 'pakistan', ',', 'and', 'from', 'japan', 'to', 'northern', 'australia', '.'], ['the', 'flaps', 'were', 'then', 'deflected', 'by', '2', '0', 'degrees', '.'], ['with', 'the', 'assistance', 'of', 'four', 'partners', 'from', 'amcare', 'inc.', 'and', 'a', 'one', 'million', 'dollar', 'investment', 'by', 'citicorp', 'venture', 'capital', ',', 'scrushy', 'took', 'the', 'quickly', 'growing', 'company', 'and', 'founded', 'healthsouth', 'corporation', 'in', '1', '9', '8', '4', '.'], ['by', 'beating', 'manta', 'the', 'dutch', 'won', 'the', 'tie', 'and', 'mohr', 'featured', 'in', 'the', 'final', 'rubber', ',', 'a', 'loss', 'to', 'jan', 'siemerink', '.'], ['in', 'paris', ',', 'he', 'offered', '``', 'poliuto', \"''\", 'to', 'the', 'opéra', 'and', 'it', 'was', 'set', 'to', 'a', 'new', 'and', 'expanded', 'four-act', 'french-language', 'libretto', 'by', 'eugène', 'scribe', 'with', 'the', 'title', ',', '``', 'les', 'martyrs', \"''\", '.'], ['(', 'bryan', ')', 'sparks', ',', 'dso', ',', 'who', 'commanded', 'it', 'until', '1', '1', 'august', '1', '9', '4', '5', '.'], ['``', 'framesii', \"''\", 'which', 'occurs', 'to', 'the', 'west', 'along', 'the', 'namaqualand', 'coast', '.'], ['metropolitan', 'transport', 'corporation', '(', 'mtc', ')', 'runs', 'passenger', 'buses', 'to', 'manali', 'from', 'other', 'major', 'parts', 'of', 'the', 'chennai', 'city', '.'], ['on', '5', 'february', '2', '0', '1', '5', ',', 'metropolitan', 'police', 'deputy', 'commissioner', 'craig', 'mackey', 'qpm', 'attended', 'a', 'shomrim', 'event', 'as', 'guest', 'of', 'honour', 'and', 'spoke', 'highly', 'of', 'the', 'work', 'shomrim', 'do', '.'], ['the', 'battery', 'took', 'an', 'active', 'part', 'in', 'the', 'campaigns', 'of', 'the', 'army', 'from', 'the', 'seven', 'days', 'battles', 'to', 'cold', 'harbor', 'and', 'the', 'battle', 'of', 'gettysburg', ',', 'where', 'it', 'engaged', 'federal', 'forces', 'with', 'its', 'napoleon', 'and', 'whitworth', 'artillery', 'pieces', 'on', 'both', 'the', 'first', 'and', 'the', 'second', 'day', 'of', 'the', 'battle', '.'], ['the', 'island', \"'s\", 'economy', 'is', 'now', 'mostly', 'based', 'on', 'seasonal', 'tourism', ',', 'which', 'has', 'put', 'increased', 'pressure', 'on', 'its', 'historic', 'properties', '.'], ['historically', ',', 'elite', 'military', 'units', 'such', 'as', 'special', 'operations', 'forces', 'have', '``', 'high', 'morale', \"''\", 'due', 'to', 'their', 'training', 'and', 'pride', 'in', 'their', 'unit', '.'], ['however', ',', 'ogden', 'prescribed', 'that', 'any', 'student', 'should', 'learn', 'an', 'additional', '1', '5', '0', '-word', 'list', 'for', 'everyday', 'work', 'in', 'some', 'particular', 'field', ',', 'by', 'adding', 'a', 'list', 'of', '1', '0', '0', 'words', 'particularly', 'useful', 'in', 'a', 'general', 'field', '(', 'e.g.', ',', 'science', ',', 'verse', ',', 'business', ',', 'etc', '.'], ['an', 'interactive', 'special', ',', 'subtitled', '``', 'happy', 'apocalypse', 'to', 'you', \"''\", ',', 'was', 'released', 'on', 'april', '6', ',', '2', '0', '2', '1', '.'], ['then', 'we', 'spent', 'the', 'day', 'until', 'evening', 'and', 'went', 'out', 'concealing', 'ourselves', \"''\", '.'], ['in', 'the', 'neustädter', 'kirche', ',', 'hannover', ',', 'she', 'sang', 'in', 'choral', 'concerts', ',', 'in', '1', '9', '9', '6', '``', 'ein', 'deutsches', 'requiem', \"''\", ',', 'and', 'in', '1', '9', '8', '8', 'stravinsky', \"'s\", '``', 'cantata', \"''\", 'and', 'mozart', \"'s\", '``', 'great', 'mass', 'in', 'c', 'minor', \"''\", '.'], ['it', 'flowered', 'for', 'a', 'little', 'longer', 'in', 'al-andalus', '(', 'islamic', 'spain', ')', 'but', 'ended', 'with', 'the', 'expulsion', 'of', 'the', 'arabs', 'in', '1', '4', '9', '2', '.'], ['it', 'elected', 'one', 'member', 'of', 'parliament', '(', 'mp', ')', ',', 'elected', 'by', 'the', 'first', 'past', 'the', 'post', 'voting', 'system', '.'], ['due', 'to', 'a', 'bad', 'economic', 'situation', ',', 'after', 'steady', 'staff', 'reduction', ',', 'in', 'april', '2', '0', '0', '2', ',', 'insolvency', 'was', 'filed', '.'], ['the', 'city', 'is', 'located', 'a', 'few', 'kilometers', 'from', 'the', 'mouth', 'of', 'the', 'casiquiare', 'canal', ',', 'an', 'important', 'fluvial', 'artery', 'that', 'connects', 'the', 'amazon', 'basin', 'with', 'the', 'orinoco', 'river', ',', 'thus', 'uniting', 'venezuela', ',', 'colombia', 'and', 'brazil', ',', 'and', 'is', 'above', 'sea', 'level', '.'], ['it', 'carried', 'two', '3', '5', '6', 'mm', 'torpedo', 'tubes', 'and', 'two', '3', '5', 'mm', 'machine', 'guns', '.'], ['it', 'was', 'home', 'to', 'several', 'noted', 'painters', ',', 'poets', ',', 'and', 'sculptors', '.'], ['the', 'hudson', 'river', 'way', 'is', 'a', 'pedestrian', 'bridge', 'that', 'links', 'broadway', 'in', 'downtown', 'albany', ',', 'new', 'york', 'with', 'the', 'corning', 'preserve', 'on', 'the', 'bank', 'of', 'the', 'hudson', 'river', '.'], ['the', 'main', 'runway', 'was', 'sealed', 'in', '1', '9', '6', '5', ',', 'and', 'turboprop', 'flights', 'began', 'to', 'hamilton', 'that', 'year', ',', 'with', 'nac', \"'s\", 'fokker', 'friendship', 'aircraft', 'operating', '.'], ['born', 'in', 'nantes', 'and', 'an', 'official', 'in', 'the', 'french', 'ministry', 'of', 'justice', 'since', '1', '8', '2', '3', ',', 'after', 'the', 'revolution', 'of', '1', '8', '4', '8', 'hélie', 'became', 'a', 'judge', 'with', 'the', 'court', 'of', 'cassation', 'in', '1', '8', '4', '9', '.'], ['österreichisches', 'museum', 'für', 'kunst', 'und', 'industrie', '(', 'today', 'the', 'museum', 'für', 'angewandte', 'kunst', ')', 'in', 'vienna', ',', 'where', 'he', 'would', 'work', 'for', 'the', 'next', 'ten', 'years', ',', 'eventually', 'as', 'director', 'of', 'the', 'textile', 'department', '.'], ['already', 'some', 'patrioteers', 'are', 'suggesting', 'that', 'native', 'american', 'sons', 'to', 'whom', 'democracy', 'is', 'a', 'sacred', 'ideal', 'should', 'be', 'exiled', '.', \"''\"], ['due', 'to', 'the', '1', '9', '4', '8', 'palestinian', 'exodus', ',', 'a', 'number', 'of', 'palestinian', 'players', 'joined', 'tadamon', 'sour', '.'], ['knight-bruce', 'wished', 'to', 'shorten', 'procedure', 'and', 'save', 'time', 'in', 'the', 'discussion', 'of', 'technicalities', ',', 'and', 'in', 'some', 'of', 'his', 'decisions', ',', 'which', 'were', 'over-ruled', 'by', 'lord', 'cottenham', ',', 'he', 'anticipated', 'reforms', 'which', 'were', 'subsequently', 'made', '.'], ['the', 'construction', 'budget', 'was', 'estimated', 'at', 'ush', '9', 'billion', '(', 'approx', '.'], ['it', 'is', 'also', 'characterized', 'as', 'a', 'common', 's-type', 'asteroid', 'in', 'the', 'sdss-mfb', '(', 'masi', 'foglia', 'binzel', ')', 'taxonomy', '.'], ['the', 'ngr', 'operated', 'at', 'a', 'loss', 'during', 'its', 'early', 'years', ',', 'but', 'after', 'the', 'second', 'boer', 'war', ',', 'the', 'ngr', 'made', 'around', 'half', 'of', 'the', 'natal', 'government', \"'s\", 'income', '.'], ['eupen', 'and', 'immediately', 'started', 'in', 'the', 'away', 'match', 'against', 'anderlecht', '.'], ['russell', \"'s\", 'teapot', 'is', 'still', 'invoked', 'in', 'discussions', 'concerning', 'the', 'existence', 'of', 'god', ',', 'and', 'has', 'had', 'influence', 'in', 'various', 'fields', 'and', 'media', '.'], ['mohr', 'played', 'his', 'first', 'match', 'for', 'the', 'switzerland', 'davis', 'cup', 'team', 'in', '1', '9', '9', '4', ',', 'a', 'world', 'group', 'qualifier', 'against', 'indonesia', 'in', 'jakarta', '.'], ['across', 'from', 'these', ',', 'near', 'the', 'northern', 'walls', 'and', 'lanckorońska', 'tower', ',', 'was', 'the', 'residence', 'of', 'the', 'starosta', '.'], ['the', 'film', 'was', 'dubbed', 'into', 'tamil', 'as', '``', 'captain', 'dhevaram', \"''\", 'and', 'was', 'well', 'received', '.'], ['he', 'served', 'at', 'various', 'times', 'as', 'visiting', 'professor', 'at', 'the', 'university', 'of', 'chicago', 'and', 'syracuse', 'university', '.'], ['in', 'terms', 'of', 'dyadic', 'relationships', ',', 'girls', 'are', 'more', 'likely', 'to', 'have', 'longer-lasting', 'relationships', 'of', 'this', 'nature', ',', 'but', 'no', 'literature', 'suggests', 'that', 'girls', 'engage', 'in', 'more', 'dyadic', 'relationships', 'than', 'boys', '.'], ['bacan', 'further', 'to', 'the', 'south', ',', 'and', 'jailolo', 'on', 'halmahera', ',', 'were', 'also', 'commonly', 'included', 'in', 'maluku', 'proper', ',', 'the', 'four', 'kingdoms', 'forming', 'a', 'ritual', 'quadripartition', 'with', 'connotations', 'to', 'local', 'cosmology', '.'], ['full', 'planning', 'permission', 'was', 'subsequently', 'granted', 'on', '1', '0', 'december', '2', '0', '1', '2', '.'], ['on', 'winning', 'the', 'intermediate', 'football', 'championship', 'the', 'club', 'defeated', 'fermoy', 'by', '3', 'points', 'at', 'buttevant', ',', 'nemo', 'rangers', 'by', 'a', 'point', 'at', 'mourneabbey', 'and', 'accounted', 'for', 'naomh', 'abán', 'by', '3', 'points', 'in', 'dromtariffe', 'at', 'the', 'semi-final', 'and', 'mallow', 'after', 'a', 'replay', 'in', 'the', 'final', '.'], ['the', 'constant', 'growth', 'dividend', 'discount', 'model', 'for', 'the', 'valuation', 'of', 'the', 'common', 'stock', 'of', 'a', 'corporation', 'is', 'another', 'example', '.'], ['the', 'park', 'is', 'located', 'along', 'the', 'st.', 'lawrence', 'river', 'by', 'ny', '1', '2', 'and', 'ny', '1', '8', '0', ',', 'between', 'clayton', 'and', 'alexandria', 'bay', '.'], ['from', '1', '9', '3', '3', 'to', '1', '9', '4', '5', 'the', 'facility', 'was', 'known', 'as', 'the', 'adolf', 'hitler', 'stadium', 'and', 'it', 'was', 'used', 'as', 'a', 'training', 'venue', 'for', 'the', '1', '9', '3', '6', 'berlin', 'olympic', 'games', '.'], ['we', 'have', 'to', 'be', 'together', ',', 'without', 'exception', ',', 'committed', 'to', 'projects', 'development', 'in', 'the', 'land', '.'], ['for', 'example', ',', 'a', 'quarterback', 'that', 'is', 'hit', 'the', 'least', 'amount', 'on', 'the', 'football', 'fields', 'only', 'suffers', 'concussions', 'around', '5', '.', '6', '%', 'of', 'the', 'reported', 'concussions', ',', 'opposed', 'to', 'offensive', 'lineman', 'that', 'suffers', 'about', '2', '0', '.', '9', '%', 'of', 'the', 'reported', 'concussions', '.'], ['following', 'a', 'string', 'of', 'loans', 'to', 'bury', ',', 'stockport', 'county', ',', 'shrewsbury', 'town', ',', 'stevenage', 'and', 'tranmere', 'rovers', ',', 'he', 'eventually', 'left', 'everton', 'without', 'playing', 'a', 'league', 'game', ',', 'joining', 'tranmere', 'on', 'a', 'permanent', 'basis', 'in', '2', '0', '1', '2', 'and', 'then', 'sheffield', 'united', 'in', '2', '0', '1', '4', '.'], ['the', 'issue', 'was', 'fixed', 'by', 'marginally', 'changing', 'the', 'excitation', 'voltage', '.'], ['it', 'was', 'only', 'when', 'climate', 'conditions', 'and', 'drought', 'became', 'so', 'extreme', 'that', 'they', 'failed', '.', \"''\"], ['the', 'australia', \"'s\", 'future', 'tax', 'system', 'review', ',', 'informally', 'known', 'as', 'the', 'henry', 'tax', 'review', 'was', 'commissioned', 'by', 'the', 'rudd', 'government', 'in', '2', '0', '0', '8', 'and', 'published', 'in', '2', '0', '1', '0', '.'], ['in', '1', '9', '6', '3', ',', 'a', 'major', 'development', 'of', 'the', 'pipe', 'factory', 'occurred', ',', 'which', 'was', 'opened', 'by', 'premier', 'charles', 'court', 'on', '1', '2', 'december', '.'], ['although', 'her', 'father', 'left', 'school', 'at', 'a', 'young', 'age', ',', 'both', 'of', 'her', 'parents', 'were', 'literate', '.'], ['politically', ',', 'shiner', 'was', 'known', 'to', 'take', '``', 'an', 'active', 'part', 'in', 'local', 'politics', 'of', 'east', 'washington', 'in', 'suffrage', 'times', '.', \"''\"], ['he', 'was', 'named', 'after', 'his', 'great', 'grandfather', ',', 'eliab', 'harvey', ',', 'brother', 'to', 'william', 'harvey', '.'], ['legislation', 'can', 'not', 'be', 'made', 'which', 'applies', 'on', 'sark', 'without', 'the', 'approval', 'of', 'the', 'chief', 'pleas', ',', 'although', 'recently', 'chief', 'pleas', 'has', 'been', 'delegating', 'a', 'number', 'of', 'ordinance', 'making', 'powers', 'to', 'the', 'states', 'of', 'guernsey', '.'], ['the', 'south', 'bank', 'grand', 'arbour', 'is', 'a', 'kilometre', 'long', 'arbour', 'located', 'in', 'the', 'south', 'bank', 'parklands', 'in', 'brisbane', ',', 'australia', '.'], ['the', 'track', 'was', 'sung', 'by', 'shaan', ',', 'and', 'nazmun', 'munira', 'nancy', '.'], ['the', 'engine', 'has', 'a', 'power', 'output', 'of', 'and', 'of', 'torque', '.'], ['the', 'results', 'of', 'the', 'vote', 'of', 'both', 'houses', 'combined', 'are', 'as', 'follows', ':'], ['the', 'porion', 'is', 'the', 'point', 'on', 'the', 'human', 'skull', 'located', 'at', 'the', 'upper', 'margin', 'of', 'each', 'ear', 'canal', '(', 'external', 'auditory', 'meatus', ',', 'external', 'acoustic', 'meatus', ')', '.'], ['during', 'the', 'night', ',', 'british', 'bombers', 'attacked', 'ingelmunster', ',', 'abeele', ',', 'marcke', ',', 'bisseghem', 'and', 'moorslede', 'aerodromes', 'and', 'the', 'railway', 'station', 'at', 'roulers', '.'], ['``', 'lautrec', \"''\", 'won', 'the', 'palme', \"d'or\", 'at', 'the', 'cannes', 'film', 'festival', 'in', '1', '9', '7', '5', 'and', '``', 'ubu', \"''\", 'won', 'the', 'golden', 'bear', 'award', 'for', 'best', 'short', 'film', 'at', 'the', '1', '9', '7', '9', 'berlin', 'international', 'film', 'festival', '.'], ['the', 'village', 'is', 'situated', '9', 'km', 'to', 'the', 'south', 'of', 'the', 'city', 'of', 'drama', 'in', 'macedonia', ',', 'greece', '.'], ['prunskienė', 'flew', 'to', 'countries', 'all', 'over', 'the', 'world', ',', 'including', 'the', 'united', 'states', ',', 'to', 'try', 'to', 'gain', 'support', 'for', 'negotiations', 'with', 'gorbachev', 'about', 'the', 'embargo', 'through', 'such', 'committees', 'as', 'the', 'helsinki', 'commission', '.'], ['in', '2', '0', '1', '2', ',', 'he', 'signed', 'for', 'heartland', 'in', 'the', 'nigeria', 'premier', 'league', '.'], ['the', 'radar', 'was', 'widely', 'utilized', 'by', 'both', 'army', 'and', 'marine', 'corps', 'air', 'defense', 'and', 'early', 'warning', 'units', 'during', 'world', 'war', 'ii', '.'], ['ford', 'did', \"n't\", 'entirely', 'abandon', 'the', 'concept', 'of', 'a', 'two-door', 'station', 'wagon', ',', 'and', 'used', 'a', 'smaller', 'version', 'with', 'the', 'all-new', 'ford', 'falcon', 'in', '1', '9', '6', '0', ',', 'offered', 'in', 'multiple', 'bodystyles', ',', 'including', 'a', 'two-door', 'station', 'wagon', '.'], ['scythe', 'faraday', 'begins', 'training', 'citra', 'and', 'rowan', 'by', 'having', 'them', 'accompany', 'him', 'on', 'his', 'gleanings', ',', 'though', 'they', 'do', 'not', 'participate', '.'], ['higgins', 'left', '``', 'the', 'sun', \"''\", 'in', 'june', '1', '9', '9', '8', '.'], ['joelle', 'garguilo', 'is', 'an', 'american', 'journalist', ',', 'host', ',', 'digital', 'journalist', 'and', 'reporter', ',', 'working', 'for', 'nbc', 'universal', ',', 'appearing', 'on', 'all', 'platforms', ',', 'including', 'nbc', 'news', ',', '``', 'today', \"''\", ',', 'today.com', ',', 'msnbc.com', ',', 'ivillage', 'and', 'wnbc', '.'], ['rychłocice', 'is', 'a', 'village', 'in', 'the', 'administrative', 'district', 'of', 'gmina', 'konopnica', ',', 'within', 'wieluń', 'county', ',', 'łódź', 'voivodeship', ',', 'in', 'central', 'poland', '.'], ['he', 'had', 'a', 'huge', 'hit', 'with', '``', 'the', 'carpetbaggers', \"''\", '(', '1', '9', '6', '4', ')', 'from', 'the', 'novel', 'by', 'harold', 'robbins', 'for', 'producer', 'joseph', 'e.', 'levine', '.'], ['the', 'industry', 'has', 'not', 'decided', 'how', 'to', 'proceed', 'yet', '.'], ['camitia', 'rotellina', ',', 'common', 'name', 'the', 'wheel', 'top', 'shell', ',', 'is', 'a', 'species', 'of', 'sea', 'snail', ',', 'a', 'marine', 'gastropod', 'mollusk', 'in', 'the', 'family', 'trochidae', ',', 'the', 'top', 'snails', '.'], ['a', 'rocket', 'telephone', 'booth', 'lands', 'in', 'the', 'town', 'of', 'speelburgh', 'and', 'abcd', '(', 'pronounced', '``', 'absid', \"''\", ')', '(', 'tom', 'nolan', ')', 'with', 'his', 'group', 'of', 'aliens', 'exit', '.'], ['palestinian', 'fauna', 'is', 'not', 'as', 'rich', 'today', 'as', 'it', 'was', 'during', 'the', 'biblical', 'times', '.'], ['in', '1', '9', '7', '8', 'she', 'assembled', 'a', 'small', 'ensemble', 'with', 'sharon', 'freeman', ',', 'buster', 'williams', ',', 'and', 'kenny', 'kirkland', 'as', 'sidemen', '.'], ['melinda', 'houston', 'of', '``', 'the', 'sydney', 'morning', 'herald', \"''\", 'was', 'also', 'critical', 'of', 'the', 'character', ',', 'branding', 'him', '``', 'the', 'most', 'ineffectual', 'cop', 'in', 'australia', \"''\", '.'], ['viola', 'served', 'as', 'musical', 'director', 'on', 'a', 'promotional', 'tour', 'for', 'the', 'film', 'in', 'december', '2', '0', '0', '7', ',', 'with', 'john', 'c.', 'reilly', 'acting', 'out', 'his', 'fictional', 'character', 'of', 'dewey', 'cox', '.'], ['tamari', 'is', 'the', 'recipient', 'of', 'many', 'awards', ',', 'including', 'the', '``', 'transparency', 'shield', \"''\", 'awarded', 'annually', 'by', 'the', 'israeli', 'chapter', 'of', 'transparency', 'international', '.'], ['as', 'noted', 'in', 'the', 'previous', 'section', ',', 'sheridan', 'had', 'received', 'wrong', 'information', 'so', 'he', 'thought', 'the', 'v', 'corps', 'was', 'in', 'the', 'rear', 'and', 'almost', 'on', 'the', 'flank', 'of', 'the', 'confederates', 'and', 'therefore', 'he', 'mistakenly', 'thought', 'v', 'corps', 'could', 'launch', 'an', 'early', ',', 'severe', 'attack', 'on', 'pickett', \"'s\", 'force', '.'], ['the', 'show', 'in', 'the', 'fall', 'is', 'a', 'straight', 'play', ',', 'the', 'show', 'in', 'the', 'winter', 'is', 'a', 'variety', 'of', 'one-act', 'plays', 'directed', 'by', 'students', ',', 'and', 'the', 'show', 'in', 'the', 'spring', 'is', 'a', 'musical', '.'], ['the', 'formation', 'straddles', 'the', 'cretaceous-paleogene', '(', 'k-pg', ')', 'boundary', ',', 'which', 'divides', 'it', 'into', 'an', 'upper', ',', 'early', 'paleocene', 'member', 'and', 'a', 'lower', ',', 'late', 'cretaceous', 'member', '.'], ['it', 'is', 'an', 'administrative', 'division', 'under', 'the', 'jurisdiction', 'of', 'the', 'commune', 'of', 'bopa', '.'], ['on', '1', '3', 'april', ',', 'he', 'assisted', 'in', 'the', 'battle', 'of', 'bergen', 'and', 'the', 'attack', 'on', 'general', 'wargenheim', \"'s\", 'camp', 'on', '1', '9', 'september', '.'], ['in', '1', '3', '6', '1', ',', 'the', 'chapter', 'of', 'the', 'holy', 'spirit', 'moved', 'from', 'sint', 'odiliënberg', 'to', 'roermond', '.'], ['after', 'vieira', \"'s\", 'election', ',', 'gomes', 'initially', 'refused', 'to', 'recognize', 'the', 'result', ',', 'but', 'he', 'also', 'moved', 'away', 'from', 'his', 'earlier', 'threat', 'to', 'resign', '.'], ['he', 'worked', 'his', 'way', 'up', 'to', 'a', 'world', 'title', 'eliminator', 'in', '2', '0', '1', '0', 'against', 'british', 'boxer', 'rendall', 'munroe', '.'], ['ncac', \"'s\", 'website', 'contains', 'reports', 'of', 'censorship', 'incidents', ',', 'analysis', 'and', 'discussion', 'of', 'free', 'expression', 'issues', ',', 'a', 'database', 'of', 'legal', 'cases', 'in', 'the', 'arts', ',', 'an', 'archive', 'of', 'ncac', \"'s\", 'quarterly', 'newsletter', ',', 'a', 'blog', ',', 'and', 'censorpedia', ',', 'a', 'crowdsourced', 'wiki', '.'], ['the', 'film', 'has', 'received', 'generally', 'favorable', 'reviews', 'from', 'film', 'critics', 'and', 'audiences', 'around', 'the', 'world', ',', 'having', 'received', 'more', 'than', '2', '0', 'festival', 'awards', '.'], ['his', 'brother', ',', 'james', 'davis', ',', 'was', 'also', 'a', 'running', 'back', 'and', 'played', 'college', 'football', 'at', 'clemson', 'university', 'and', 'in', 'the', 'nfl', 'from', '2', '0', '0', '9', 'to', '2', '0', '1', '1', '.'], ['in', 'conjunction', 'with', '``', 'instrument', \"''\", ',', 'director', 'jem', 'cohen', \"'s\", '1', '9', '9', '9', 'documentary', 'film', 'about', 'the', 'band', ',', 'fugazi', 'released', 'the', '``', 'instrument', 'soundtrack', \"''\", ',', 'consisting', 'of', 'instrumental', 'music', 'and', 'previously', 'unreleased', 'studio', 'outtakes', 'and', 'demos', '.'], ['for', 'example', ',', 'the', 'problem', 'known', 'as', 'the', '``', 'gambler', \"'s\", 'ruin', \"''\", 'is', 'based', 'on', 'a', 'simple', 'random', 'walk', ',', 'and', 'is', 'an', 'example', 'of', 'a', 'random', 'walk', 'with', 'absorbing', 'barriers', '.'], ['the', 'origin', 'of', 'gonsalvus', \"'s\", 'dispute', 'with', 'eckhart', 'has', 'to', 'do', 'with', 'the', 'relative', 'superiority', 'of', 'the', 'will', 'to', 'that', 'of', 'the', 'intellect', 'in', 'knowing', 'god', '.'], ['after', 'leading', 'a', 'successful', 'campaign', 'in', 'malabar', ',', 'he', 'became', 'the', 'senior', 'officer', 'at', 'kochi', 'kerala', '.'], ['3', 'g', 'capital', \"'s\", 'new', 'management', 'team', 'eliminated', 'the', 'focus', 'on', 'the', 'superfan', 'after', 'its', 'acquisition', 'the', 'company', 'in', '2', '0', '1', '0', ',', 'concentrating', 'on', 'a', 'more', 'broad', 'demographic', 'base', 'that', 'includes', 'women', 'and', 'more', 'health', 'conscious', 'customers', '.'], ['stahl', 'sees', 'modern', 'bucharest', 'as', 'a', 'playing', 'ground', 'for', 'handmaidens', 'and', 'their', 'aroused', 'admirers', ',', 'riddled', 'with', '``', 'moronic', \"''\", 'pastimes', 'such', 'as', 'binge', 'drinking', 'and', 'visits', 'to', 'the', 'city', 'morgue', '.'], ['first', ',', 'the', 'question', 'is', 'asked', 'on', 'the', 'given', 'formula', 'φ', '.'], ['it', 'became', 'merged', 'with', 'tirb', 'in', '2', '0', '0', '6', 'when', 'the', 'two', 'former', 'operators', 'of', 'hurtigruten', 'merged', '.'], ['n', '1', '7', '(', 'sometimes', 'known', 'as', 'november', '1', '7', ')', 'is', 'an', 'industrial', 'metal', 'band', 'from', 'phoenix', ',', 'arizona', ',', 'united', 'states', '.'], ['he', 'was', 'also', 'given', 'an', 'honorary', 'doctorate', 'of', 'civil', 'laws', 'by', 'oxford', 'university', 'on', '1', '5', 'june', '1', '8', '4', '1', '.'], ['since', 'the', '1', '6', 'th', 'century', 'many', 'ponds', 'and', 'lakes', 'have', 'been', 'laid', 'out', 'in', 'this', 'area', ',', 'mostly', 'for', 'agricultural', 'and', 'industrial', 'purposes', '.'], ['by', 'the', 'time', 'hayman', 'was', '1', '8', ',', 'he', 'got', 'involved', 'in', 'a', 'media', 'programme', 'called', 'the', 'govan', 'initiative', 'which', 'gave', 'him', 'his', 'first', 'taste', 'of', 'film', 'production', '.'], ['the', 'division', 'of', 'chronic', 'diseases', 'focused', 'on', 'other', 'diseases', ',', 'mainly', 'cancer', ',', 'diabetes', ',', 'arthritis', ',', 'heart', 'disease', ',', 'neurological', 'disease', ',', 'and', 'mental', 'retardation', ',', 'in', 'addition', 'to', 'aging', 'and', 'nursing', 'homes', '.'], ['the', 'construction', 'of', 'the', 'cairns', 'to', 'mungana', 'railway', 'by', 'the', 'queensland', 'government', 'in', '1', '8', '9', '3', 'sparked', 'interest', 'in', 'the', 'herberton', 'area', 'from', 'a', 'group', 'of', 'adelaide', 'based', 'mining', 'entrepreneurs', '.'], ['tramcars', 'had', 'a', 'light', 'green', 'and', 'ivory', 'livery', ',', 'and', 'there', 'were', 'changes', 'to', 'the', 'detailing', 'of', 'the', 'paint', 'scheme', 'over', 'the', 'life', 'of', 'the', 'tram', 'system', '.'], ['historically', ',', 'this', 'is', 'derived', 'from', 'the', 'indo-european', 'present', 'tense', '.'], ['these', 'are', 'home', 'to', 'the', '2', '7', '-person', 'breck', 'pro', 'team', ',', 'as', 'well', 'as', 'numerous', 'other', 'extreme', 'sports', 'groups', 'from', 'around', 'the', 'world', 'who', 'use', 'the', 'parks', 'to', 'prepare', 'for', 'such', 'events', 'as', 'the', 'dew', 'tour', 'and', 'x-games', '.'], ['in', 'order', 'to', 'take', 'his', 'coronation', 'oath', 'and', 'be', 'anointed', ',', 'charles', 'ii', 'visited', 'his', 'kingdom', 'in', 'summer', '1', '3', '5', '0', '.'], ['by', 'the', 'beginning', 'of', 'the', 'fifth', 'month', 'of', 'human', 'development', ',', 'only', 'the', 'ducts', 'and', 'a', 'few', 'of', 'the', 'tubules', 'of', 'the', 'mesonephros', 'remain', '.'], ['``', 'deeper', 'shades', 'of', 'purple', ':', 'womanism', 'in', 'religion', 'and', 'society', \"''\", 'collects', 'various', 'essays', 'from', 'many', 'leading', 'womanist', 'scholars', 'and', 'womanist', 'allies', '.'], ['comet', 'was', 're-tracked', 'during', 'the', 'off-season', 'in', '2', '0', '0', '6', ',', 'and', 'new', 'seat', 'belts', 'were', 'added', 'two', 'years', 'later', '.'], ['on', 'august', '1', '9', 'mazarin', 'withdrew', 'to', 'bouillon', 'in', 'the', 'ardennes', 'and', 'continued', 'his', 'intrigues', 'to', 'win', 'back', 'paris', 'from', 'there', '.'], ['it', 'is', '7', '5', '0', 'metres', 'long', 'and', 'is', 'bordered', 'from', 'end', 'to', 'end', 'by', 'the', 'eponymous', 'promenade', '.'], ['typically', ',', 'about', 'ten', 'of', 'these', 'qualify', 'for', 'tests', 'on', 'humans', '.'], ['her', 'husband', 'died', 'in', '1', '7', '2', '7', 'at', 'the', 'hôtel', 'de', 'conti', '(', 'quai', 'conti', ')', 'in', 'paris', 'due', 'to', 'a', '``', 'chest', 'swelling', \"''\", '.'], ['it', 'provides', 'over', '3', ',', '3', '0', '0', 'square', 'metres', 'of', 'additional', 'teaching', 'space', 'for', 'both', 'the', 'faculty', 'of', 'science', 'and', 'technology', ',', 'and', 'the', 'faculty', 'of', 'arts', 'and', 'creative', 'industries', ',', 'and', 'is', 'home', 'to', 'the', 'uk', \"'s\", 'first', \"'cyber\", 'factory', \"'\", '.'], ['kentucky', 'trailer', '(', 'known', 'also', 'as', 'kentucky', 'manufacturing', 'company', ')', 'is', 'currently', 'owned', 'by', 'several', 'fourth', 'generation', 'members', 'of', 'r.c', '.'], ['the', 'closest', 'a', 'single', 'candidate', 'has', 'been', 'on', 'two', 'different', 'lines', 'using', 'fusion', 'voting', 'since', 'the', '1', '9', '9', '0', 'election', 'was', 'in', '2', '0', '0', '6', '.'], [\"'share\", 'the', 'love', \"'\", 'topped', 'the', 'japanese', 'itunes', 'store', 'for', 'four', 'weeks', 'and', 'was', 'certified', 'platinum', 'by', 'the', 'riaj', '.'], ['he', 'was', 'a', '1', '9', '6', '0', 'graduate', 'of', 'bradley', 'central', 'high', 'school', 'in', 'cleveland', '.'], ['it', 'was', 'then', 'that', 'he', 'changed', 'his', 'name', ',', 'signing', 'the', 'contract', 'with', '``', 'ed', 'gardner', \"''\", ',', 'rather', 'than', '``', 'ed', 'poggenburg', \"''\", '.'], ['espoir', 'de', 'labé', 'is', 'a', 'football', 'club', 'from', 'labé', 'in', 'the', 'west', 'african', ',', 'state', 'of', 'guinea', '.'], ['the', 'property', 'manager', 'has', 'a', 'primary', 'responsibility', 'to', 'the', 'landlord', 'and', 'a', 'secondary', 'responsibility', 'to', 'the', 'agency', '.'], ['during', 'this', 'term', ',', 'students', 'take', 'three', '1', '0', '-week', 'core', 'courses', '(', 'compulsory', ')', 'and', 'the', 'equivalent', 'of', 'two', '1', '0', '-week', 'elective', 'courses', '.'], ['there', 'were', '3', 'single', 'room', 'apartments', 'and', '5', '9', 'apartments', 'with', 'five', 'or', 'more', 'rooms', '.'], ['the', 'hawks', 'can', 'be', 'seen', 'soaring', 'above', 'the', 'meadows', 'as', 'they', 'hunt', 'for', 'small', 'voles', 'and', 'mice', '.'], ['many', 'lessons', 'were', 'learned', 'from', 'minamata', 'and', 'the', 'investigation', 'into', 'the', 'cause', 'of', 'the', 'outbreak', 'proceeded', 'much', 'more', 'smoothly', 'than', 'it', 'had', 'in', 'minamata', '.'], ['kičevo', '(', ';', ')', 'is', 'a', 'city', 'in', 'the', 'western', 'part', 'of', 'north', 'macedonia', ',', 'located', 'in', 'a', 'valley', 'in', 'the', 'south-eastern', 'slopes', 'of', 'mount', 'bistra', ',', 'between', 'the', 'cities', 'of', 'ohrid', 'and', 'gostivar', '.'], ['the', 'mystic', 'is', 'a', '1', '9', '2', '5', 'american', 'mgm', 'silent', 'drama', 'film', 'directed', 'by', 'tod', 'browning', ',', 'who', 'later', 'directed', 'mgm', \"'s\", '``', 'freaks', \"''\", '(', '1', '9', '3', '2', ')', '.'], ['rigid', 'lines', 'can', 'not', 'be', 'bent', ',', 'so', 'they', 'often', 'need', 'elbows', '.'], ['playgrounds', 'are', 'located', 'throughout', 'the', 'new', 'subdivisions', 'in', 'the', 'suburb', ',', 'as', 'well', 'as', 'walking', 'and', 'bike', 'paths', 'leading', 'to', 'newly', 'created', 'artificial', 'lakes', '.'], ['in', '2', '0', '1', '2', ',', 'the', 'cd', 'label', 'classic', 'produktion', 'osnabrück', '(', 'cpo', ')', 'from', 'germany', 'released', 'a', 'cd', 'with', 'her', 'orchestral', 'music', ',', 'performed', 'by', 'the', 'janáček', 'philharmonic', 'orchestra', ',', 'žebeljan', 'orchestra', 'and', 'conductor', 'david', 'porcelijn', '(', 'cpo', '7', '7', '7', '6', '7', '0', '2', ')', '.'], ['jamgon', 'kongtrul', 'did', 'a', 'commentary', 'on', 'the', 'text', 'which', 'has', 'been', 'given', 'the', 'english', 'gloss', \"'illuminating\", 'the', 'profound', 'meaning', ':', 'a', 'commentary', 'to', '``', 'the', 'profound', 'inner', 'meaning', \"''\", '(', 'zabdon', 'nangjey', ')', \"'\", '.'], ['he', 'was', 'with', 'washington', 'at', 'valley', 'forge', ',', 'pennsylvania', '.'], ['netanyahu', \"'s\", 'term', 'as', 'prime', 'minister', 'became', 'a', 'stormy', 'period', 'for', 'levy', 'and', 'other', 'coalition', 'partners', '.'], ['in', '1', '8', '9', '2', 'plovdiv', 'became', 'the', 'host', 'of', 'the', 'first', 'bulgarian', 'fair', 'with', 'international', 'participation', 'which', 'was', 'succeeded', 'by', 'the', 'international', 'fair', 'plovdiv', '.'], ['he', 'won', 'the', 'nigerian', 'media', 'merit', 'award', 'in', '1', '9', '9', '1', 'as', 'best', 'reporter', 'for', 'coverage', 'of', 'the', 'military', 'air', 'crash', 'in', 'ejigbo', ',', 'lagos', '.'], ['in', '1', '9', '2', '7', 'she', 'edited', 'the', 'memoirs', 'of', '(', '1', '7', '7', '7', '-', '1', '8', '6', '3', ')', '.'], ['he', 'recorded', 'with', 'mississippi', 'john', 'hurt', 'in', '1', '9', '6', '4', '.'], ['aceis', 'and', 'arbs', 'decrease', 'afterload', 'by', 'antagonizing', 'the', 'vasopressor', 'effect', 'of', 'angiotensin', ',', 'thereby', 'decreasing', 'the', 'amount', 'of', 'work', 'the', 'heart', 'must', 'perform', '.'], ['even', 'so', ',', 'the', 'catch', 'landed', 'in', 'yorkshire', 'represented', 'a', 'value', 'of', 'over', '£', '1', '6', 'million', 'in', '2', '0', '1', '7', '.'], ['while', 'müller', 'argues', 'that', 'the', 'european', 'union', 'has', 'yet', 'to', 'fully', 'acknowledge', 'and', 'embrace', 'constitutional', 'patriotism', 'as', 'an', 'identity', ',', 'countries', 'do', 'seem', 'to', 'be', 'converging', 'on', '``', 'political', 'ideals', ',', 'civic', 'expectations', ',', 'and', 'policy', 'tools', \"''\", 'that', 'fall', 'under', 'the', 'umbrella', 'of', 'constitutional', 'patriotism', '.'], ['the', 'town', 'is', 'located', 'in', 'the', 'bank', 'of', 'vaippar', 'river', '.'], ['6', '4', 'of', 'the', 'us', '``', 'billboard', \"''\", 'charts', '.'], ['nevertheless', ',', 'there', 'were', 'still', 'numbers', 'of', 'the', 'old', 'pieces', 'serving', 'with', 'southern', 'armies', 'as', 'late', 'as', 'the', 'battle', 'of', 'chancellorsville', '.'], ['in', '2', '0', '1', '6', ',', 'the', 'estimated', 'impact', 'of', 'that', 'year', \"'s\", 'convention', 'was', 'down', 'to', '$', '1', '5', '0', 'million', '.'], ['this', 'module', 'was', 'included', 'as', 'part', 'of', 'the', '``', 'realms', 'of', 'horror', \"''\", 'abridged', 'compilation', 'produced', 'in', '1', '9', '8', '7', '.'], ['the', 'patrols', 'of', 'the', 'danish', 'west', 'indies', 'was', 'to', 'protect', 'american', 'neutrality', 'prior', 'to', 'u.s.', 'entry', 'into', 'world', 'war', 'i', 'in', 'april', '1', '9', '1', '7', '.'], ['he', 'was', 'in', 'favour', 'of', 'collaboration', 'with', 'the', 'democratic', 'party', 'and', 'supported', 'the', 'social-liberal', 'coalition', 'government', 'of', 'ljubomir', 'davidović', '.'], ['he', 'was', 'instrumental', 'in', 'establishing', 'the', 'present-day', 'botanical', 'garden', 'jevremovacin', 'belgrade', 'while', 'supporting', 'other', 'botanical', 'gardens', 'with', 'saplings', 'grown', 'in', 'belgrade', '.'], ['it', 'is', 'clear', ',', 'through', 'a', 'process', 'of', 'elimination', ',', 'that', 'only', 'she', 'could', 'be', 'the', 'culprit', '.'], ['at', 'the', 'beginning', 'of', '2', '0', '1', '4', ',', 'campi', 'had', 'a', 'good', 'preseason', 'and', 'internal', 'competition', 'with', 'the', 'new', 'reinforcement', 'ex', 'velez', ',', 'francisco', 'cerro', ',', 'who', 'becomes', 'undisputed', 'and', 'one', 'of', 'the', 'best', 'players', 'in', 'a', 'disastrous', 'level', 'team', 'points', 'will', 'arise', '.'], ['returning', 'to', 'the', 'ring', 'on', 'january', '1', '5', ',', '1', '9', '0', '7', ',', 'walcott', 'lost', 'a', 'fifteen-round', 'decision', 'on', 'points', 'to', 'mike', 'donavan', 'in', 'providence', ',', 'rhode', 'island', '.'], ['seven', 'people', ',', 'including', 'two', 'children', ',', 'had', 'died', 'during', 'the', 'journey', 'and', 'four', 'babies', 'were', 'born', 'between', 'hamburg', 'and', 'rockhampton', '.'], ['he', 'was', 'buried', 'in', 'carlisle', 'cathedral', ',', 'but', 'his', 'tomb', 'was', 'destroyed', 'soon', 'after', 'his', 'burial', 'by', 'a', 'fire', 'in', 'the', 'cathedral', '.'], ['after', 'the', 'nazis', 'had', 'captured', 'the', 'town', ',', 'jewish', 'homes', 'and', 'shops', 'were', 'robbed', 'by', 'the', 'civilians', 'from', 'neighbouring', 'towns', '.'], ['at', 'the', 'age', 'of', '2', '6', ',', 'roy', 'returned', 'to', 'washington', 'state', 'to', 'run', 'for', 'prosecuting', 'attorney', 'in', 'whitman', 'county', '.'], ['in', '1', '9', '2', '2', ',', 'wark', 'and', 'phyllis', 'divorced', ';', 'five', 'years', 'later', ',', 'on', '1', '0', 'december', '1', '9', '2', '7', ',', 'he', 'married', 'catherine', 'mary', 'davis', 'at', 'st', 'stephen', \"'s\", 'presbyterian', 'church', ',', 'sydney', '.'], ['in', 'december', '2', '0', '1', '5', ',', 'infusion', 'of', 'silicon', 'carbide', 'nano-particles', 'in', 'molten', 'magnesium', 'was', 'mentioned', 'as', 'a', 'way', 'to', 'produce', 'a', 'new', 'strong', 'and', 'plastic', 'alloy', 'suitable', 'for', 'use', 'in', 'aeronautics', ',', 'aerospace', ',', 'automobile', 'and', 'micro-electronics', '.'], ['kuryakin', 'has', 'been', 'the', 'subject', 'of', 'several', 'popular', 'songs', 'including', 'alma', 'cogan', \"'s\", '``', 'love', 'ya', 'illya', \"''\", 'and', '``', 'ilya', 'kuryakin', 'looked', 'at', 'me', \"''\", 'penned', 'by', 'the', 'cleaners', 'from', 'venus', '.'], ['born', 'in', 'the', 'netherlands', ',', 'summerville', 'is', 'of', 'surinamese', 'descent', '.'], ['he', 'retained', 'his', 'card', 'for', '2', '0', '1', '0', ',', 'finishing', 'within', 'the', 'top', '1', '0', '0', 'of', 'the', 'race', 'to', 'dubai', '.'], ['christian', 'scholars', 'interested', 'in', 'the', 'bible', 'consulted', 'with', 'talmudic', 'rabbis', '.'], ['the', 'park', 'is', 'bordered', 'by', 'the', 'protected', 'areas', 'of', 'cañón', 'de', 'santa', 'elena', 'and', 'maderas', 'del', 'carmen', 'in', 'mexico', '.'], ['he', 'was', 'selected', 'to', 'play', 'for', 'the', 'korea', 'national', 'baseball', 'team', 'in', 'the', 'inaugural', 'world', 'baseball', 'classic', 'in', '2', '0', '0', '6', '.'], ['aldeia', 'itaóca', 'is', 'a', 'guarani/guarani', 'mbya/guarani', 'ñandeva', 'indigenous', 'village', 'located', 'within', 'the', 'municipality', 'of', 'mongaguá', 'in', 'the', 'state', 'of', 'são', 'paulo', ',', 'brazil', '.'], ['this', 'agrees', 'with', 'the', 'findings', 'of', 'previous', 'authors', 'and', 'suggests', 'that', 'the', 'absence', 'of', 'a', 'widely', 'distributed', 'compound', 'like', 'myricetin', 'among', 'the', '``', 'nepenthes', \"''\", 'examined', 'might', 'provide', 'additional', 'diagnostic', 'information', 'for', 'these', 'taxa', '.'], ['shiner', 'began', 'his', 'testimony', 'by', 'stating', ',', \"''\", 'i', 'am', 'a', 'laboring', 'man', 'in', 'the', 'paint', 'shop', 'of', 'the', 'washington', 'navy', 'yard', '.', \"''\"], ['the', 'walking', 'path', 'marked', 'by', 'a', 'red', 'line', '(', 'white', 'background', ')', 'leads', 'in', 'parallel', 'to', 'the', 'stream', ',', 'up', 'to', 'the', 'grassy', ',', 'mildly', 'inclined', 'plateau', 'of', 'combe', 'de', 'drône', ',', 'from', 'which', 'col', 'du', 'bastillon', '``', '(', '2', '7', '5', '7', 'm', ')', \"''\", 'can', 'be', 'reached', '.'], ['while', 'hanna', 'of', 'local', 'veterinary', 'and', 'thomas', 'brunner', 'of', 'the', 'mayor', \"'s\", 'daughter', 'is', 'secretly', 'admired', 'and', 'sought', 'after', ',', 'the', 'siblings', 'have', 'eyes', 'only', 'for', 'each', 'other', '.'], ['west', 'torrens', 'played', 'their', 'last', 'game', 'at', 'the', 'ground', 'in', 'on', '2', 'september', '1', '9', '8', '9', 'ending', 'a', 'run', 'of', '6', '8', 'seasons', 'at', 'thebarton', 'oval', '.'], ['michigan', 'entered', 'the', 'game', 'ranked', 'sixth', 'nationally', 'in', 'the', 'ap', 'poll', ',', 'while', 'wisconsin', 'was', 'unranked', '.'], ['french', ',', 'german', ',', 'spanish', ',', 'italian', ',', 'and', 'russian', 'versions', 'of', 'the', 'game', 'will', 'also', 'be', 'released', '.'], ['the', 'american', 'missionary', 'william', 'a.', 'macy', 'said', 'all', 'the', 'missionaries', 'and', 'scholars', 'of', 'chinese', 'had', 'used', 'morrison', \"'s\", 'dictionary', 'as', 'the', '``', 'common', 'fountain', \"''\", 'from', 'which', 'they', 'could', '``', 'obtain', 'the', 'knowledge', 'they', 'desired', \"''\", '.'], ['as', 'general', 'barnard', 'would', 'say', 'in', 'a', 'december', '2', '4', ',', '1', '8', '6', '2', 'report', ',', '``', 'it', 'is', 'seldom', 'necessary', 'to', 'keep', 'these', 'infantry', 'supports', 'attached', 'to', 'the', 'works', '.', \"''\"], ['in', '``', 'the', 'craftsman', \"''\", ',', 'fielding', 'voiced', 'the', 'opposition', 'attack', 'on', 'bribery', 'and', 'corruption', 'in', 'british', 'politics', '.'], ['ada', 'milea', 'composed', 'the', 'score', ',', 'while', 'the', 'end', 'title', \"'s\", 'song', 'was', 'written', 'by', 'dan', 'lăzărescu', '.'], ['massumi', 'works', 'from', 'whitehead', \"'s\", 'notion', 'of', '``', 'creative', 'advance', ',', \"''\", 'according', 'to', 'which', 'the', 'world', 'is', 'in', 'a', 'perpetual', 'state', 'of', 'emergence', 'characterized', 'by', 'the', 'continual', 'variation', 'of', 'form', '.'], ['adults', 'fed', 'by', 'tube', 'have', 'previously', 'shown', 'a', 'significantly', 'higher', 'rate', 'and', 'quantity', 'of', 'deposition', 'than', 'adults', 'fed', 'orally', '.'], ['the', 'jackson', 'estate', 'said', 'plepler', '``', 'must', 'have', 'known', \"''\", 'about', 'the', '1', '9', '9', '2', 'contract', ',', 'since', 'he', 'had', 'been', 'senior', 'vice', 'president', 'of', 'communications', 'then', '.'], ['till', 'the', 'terms', 'were', 'carried', 'out', 'he', 'was', 'to', 'be', 'allowed', 'to', 'stay', 'in', 'hanau', 'as', 'a', 'private', 'man', '.'], ['rosena', 'chantelle', 'allin-khan', '(', 'born', '1', '9', '7', '7', ')', 'is', 'a', 'british', 'doctor', 'and', 'politician', 'who', 'has', 'served', 'as', 'member', 'of', 'parliament', '(', 'mp', ')', 'for', 'tooting', 'since', 'the', '2', '0', '1', '6', 'by-election', '.'], ['three', 'years', 'on', ',', 'manager', 'steve', 'lomas', 'praised', 'his', 'predecessor', 'for', 'his', 'role', 'of', 'signing', 'mackay', 'and', 'davidson', '.'], ['he', 'was', 'a', 'scholar', 'of', 'the', 'london-based', 'international', 'bar', 'association', 'during', 'its', 'biennial', 'conference', 'in', 'new', 'delhi', ',', 'india', 'in', '1', '9', '9', '7', '.'], ['after', 'retiring', ',', 'coontz', 'wrote', 'a', 'memoir', 'chronicling', 'his', 'early', 'life', 'growing', 'up', 'in', 'hannibal', ',', 'missouri', ',', 'and', 'his', 'navy', 'career', ',', 'titled', '``', 'from', 'the', 'mississippi', 'to', 'the', 'sea', \"''\", '.'], ['she', 'has', 'returned', 'in', 'showbiz', 'from', 'her', 'retirement', 'and', 'has', 'included', 'in', 'the', 'casts', 'of', '``', 'ang', 'tanging', 'ina', 'ninyong', 'lahat', \"''\", 'and', '``', 'ang', 'tanging', 'ina', 'mo', '(', 'last', 'na', \"'to\", '!'], ['regarded', 'as', 'astute', 'in', 'financial', 'matters', ',', 'utley', 'married', 'into', 'a', 'wealthy', 'family', 'following', 'the', 'death', 'of', 'his', 'first', 'wife', '.'], ['with', 'the', 'consecutive', 'failures', 'in', 'the', 'brazilian', 'championship', 'and', 'state', 'championship', 'of', 'the', 'then', 'holder', 'juninho', 'edson', 'won', 'another', 'chance', 'in', 'the', 'team', \"'s\", 'athletic', 'in', 'july', '2', '0', '0', '8', ',', 'having', 'a', 'good', 'run', 'of', 'games', '.'], ['in', '1', '9', '9', '1', ',', 'leguizamo', 'also', 'wrote', 'and', 'performed', 'in', 'the', 'off-broadway', 'production', '``', 'mambo', 'mouth', \"''\", ',', 'where', 'he', 'played', 'seven', 'different', 'characters', '.'], ['the', 'type', 'species', 'of', '``', 'elachistocleis', \"''\", ',', 'it', 'was', 'described', 'without', 'a', 'holotype', 'or', 'type', 'locality', ',', 'and', 'due', 'to', 'this', 'it', 'is', 'not', 'known', 'exactly', 'to', 'which', 'population', 'the', 'name', '``', 'elachistocleis', 'ovalis', \"''\", 'applies', ',', 'making', 'it', 'a', '``', 'nomen', 'nudum', \"''\", '.'], ['the', 'names', 'of', 'the', 'new', 'digital', 'terrestrial', 'channels', 'were', 'presented', 'in', 'march', '2', '0', '0', '9', ':', 'dr', 'k', ',', 'dr', 'ramasjang', '(', 'for', 'children', ')', 'and', 'dr', 'hd', 'together', 'with', 'dr', '1', ',', 'dr', '2', 'and', 'dr', 'update', '.'], ['he', 'was', 'named', 'to', 'the', 'major', 'league', 'baseball', '(', 'mlb', ')', 'rookie', 'all-star', 'team', 'by', 'both', 'topps', 'and', 'baseball', 'america', 'and', 'finished', 'in', 'fourth', 'place', 'in', 'the', 'al', 'rookie', 'of', 'the', 'year', 'voting', '.'], ['it', 'was', 'located', 'in', 'the', 'greater', 'upper', 'nile', 'region', 'and', 'it', 'bordered', 'eastern', 'nile', 'to', 'the', 'north', ',', 'eastern', 'bieh', 'to', 'the', 'south', ',', 'and', 'ethiopia', 'to', 'the', 'east', '.'], ['koroğlu', 'can', 'remain', 'alive', 'by', 'coming', 'to', 'his', 'mother', \"'s\", 'grave', 'and', 'whom', 'breastfeed', 'by', 'his', 'death', 'mother', '.'], ['a', 'warning', 'has', 'been', 'issued', 'to', 'police', 'officers', 'to', 'be', 'extremely', 'careful', 'when', 'encountering', 'npf', 'members', 'because', 'of', 'the', 'gang', \"'s\", '``', 'armed', 'and', 'dangerous', \"''\", 'status', '.'], ['a', 'military', 'garrison', 'was', 'established', 'nearby', 'but', 'both', 'government', 'authorities', 'and', 'workers', 'adopted', 'a', 'relatively', 'passive', 'stance', 'during', 'the', 'remaining', 'years', 'before', 'the', 'outbreak', 'of', 'the', '1', '9', '1', '0', 'mexican', 'revolution', '.'], ['it', 'is', 'found', 'in', 'north', 'america', ',', 'including', 'its', 'type', 'location', ',', 'the', 'santa', 'rita', 'mountains', 'in', 'southeastern', 'arizona', '.'], ['shaffer', 'was', 'subsequently', 'outrighted', 'to', 'the', 'minor', 'leagues', 'on', 'february', '2', ',', '2', '0', '1', '7', '.'], ['he', 'was', 'a', 'second-team', 'all-south', 'selection', 'and', 'rated', 'as', 'the', 'fourth', 'best', 'offensive', 'tackle', 'in', 'florida', 'by', '``', 'the', 'florida', 'times-union', \"''\", '.'], ['certain', 'resurrection', 'plants', 'have', 'long', 'been', 'sold', 'in', 'their', 'dry', ',', '``', 'lifeless', \"''\", 'form', 'as', 'curiosities', '.'], ['in', '1', '9', '0', '9', ',', 'tinker', ',', 'who', 'earned', '$', '1', ',', '5', '0', '0', ',', 'demanded', 'a', '$', '2', ',', '5', '0', '0', 'salary', '.'], ['the', 'mockery', 'in', 'this', 'article', 'was', 'disguised', 'as', 'a', 'paean', 'of', 'praise', ',', 'according', 'to', 'waugh', \"'s\", 'biographer', 'martin', 'stannard', ',', 'arranged', 'around', 'an', 'unflattering', 'photograph', 'of', 'cruttwell', 'displaying', '``', 'bad', 'teeth', 'within', 'an', 'unfortunate', 'smile', \"''\", '.'], ['this', 'was', 'met', 'with', 'some', 'opposition', 'with', 'cattlemen', 'raising', 'concerns', 'about', 'cattle', 'and', 'horses', 'slipping', 'on', 'the', 'new', 'bitumen', 'as', 'they', 'herded', 'mobs', 'of', 'cattle', 'from', 'victoria', 'parade', 'onto', 'the', 'fitzroy', 'bridge', '.'], ['the', 'military', 'intelligence', 'hall', 'of', 'fame', 'is', 'a', 'hall', 'of', 'fame', 'established', 'by', 'the', 'military', 'intelligence', 'corps', 'of', 'the', 'united', 'states', 'army', 'in', '1', '9', '8', '8', ',', 'to', 'honor', 'soldiers', 'and', 'civilians', 'who', 'have', 'made', 'exceptional', 'contributions', 'to', 'military', 'intelligence', '.'], ['sowers', 'grew', 'up', 'in', 'louisville', ',', 'kentucky', ',', 'where', 'he', 'attended', 'ballard', 'high', 'school', '.'], ['a', 'small', 'part', 'of', 'the', 'settlement', 'also', 'lies', 'in', 'the', 'neighbouring', 'municipality', 'of', 'zagorje', 'ob', 'savi', '.'], ['rejected', 'concepts', 'for', 'sheva', 'included', 'her', 'being', 'either', 'a', 'civilian', ',', 'a', 'guerrilla', ',', 'or', 'a', 'military', 'commander', '.'], ['on', 'may', '2', '6', ',', '1', '9', '4', '2', ',', 'wjma', 'was', 'sold', 'to', 'earl', 'm.', 'key', 'and', 'the', 'callsign', 'changed', 'to', 'wkey', 'in', '1', '9', '4', '3', '.'], ['chastain', 'attributed', 'hong', \"'s\", 'ability', 'to', 'a', 'lost', 'goal', ',', 'saying', '``', 'she', 'got', 'in', 'my', 'head', 'and', 'as', 'i', 'approached', 'the', 'ball', 'i', 'was', 'thinking', 'more', 'about', 'her', 'than', 'about', 'what', 'i', 'should', 'be', 'doing', '.', \"''\"], ['dunham', 'massey', 'hall', 'and', 'park', 'is', 'an', '1', '8', 'th-century', 'hall', 'with', 'a', 'deer', 'park', ',', 'both', 'now', 'owned', 'by', 'the', 'national', 'trust', 'and', 'previously', 'owned', 'by', 'the', 'earls', 'of', 'stamford', '.'], ['he', 'stated', 'that', 'the', 'segment', 'provided', 'him', 'with', 'new', 'challenges', 'and', 'opportunities', 'for', '``', 'creative', 'risk-taking', \"''\", '.'], ['david', 'o.', 'mckay', 'charged', 'the', 'general', 'priesthood', 'committee', ',', 'led', 'by', 'harold', 'b.', 'lee', ',', 'to', 'form', 'committees', '``', 'to', 'correlate', 'the', 'instruction', 'and', 'curriculum', 'of', 'all', 'priesthood', 'and', 'auxiliary', 'organizations', 'of', 'the', 'church', '.', \"''\"], ['whitside', 'served', 'for', 'the', 'next', '2', '0', 'years', 'with', 'the', '6', 'th', 'cavalry', 'commanding', 'b', 'company', 'at', 'various', 'posts', 'throughout', 'the', 'west', '.'], ['the', 'area', 'is', 'part', 'of', 'the', 'traditional', 'region', 'of', 'styria', '.'], ['he', 'performed', 'with', 'the', 'other', 'ones', 'during', 'the', 'band', \"'s\", 'final', 'tour', 'with', 'that', 'name', 'in', '2', '0', '0', '2', '.'], ['the', 'thick', 'leaves', 'have', 'a', 'dark', 'green', 'surface', 'and', 'a', 'slightly', 'paler', 'underside', '.'], ['the', '2', '0', '0', '4', 'dvd', 'release', 'restored', 'the', 'songs', '.'], ['airport', 'officials', 'had', 'claimed', 'that', 'wickrematunge', 'required', '``', 'special', 'permission', \"''\", 'to', 'leave', 'sri', 'lanka', '.'], ['rugby', 'league', 'in', 'the', 'solomon', 'islands', 'has', 'existed', 'sporadically', 'since', 'the', '1', '9', '9', '0', 's', '.'], ['marion', 'f.', 'allsup', 'was', 'a', 'cement', 'and', 'plaster', 'contractor', 'who', 'worked', 'on', 'the', 'idanha', 'hotel', ',', 'the', 'belgravia', 'building', ',', 'and', 'st.', 'michael', \"'s\", 'cathedral', '.'], ['he', 'was', 'a', 'member', 'of', 'the', 'société', \"d'agen\", 'académique', ',', 'and', 'a', 'chevalier', 'in', 'the', 'légion', \"d'honneur\", 'and', 'the', 'ordre', 'de', 'la', 'conception', 'de', 'portugal', '.'], ['as', 'shannon', 'drives', 'endean', 'to', 'the', 'border', ',', 'he', 'explains', 'that', 'endean', \"'s\", 'otherwise', 'comprehensive', 'research', 'failed', 'to', 'note', 'the', '2', '0', ',', '0', '0', '0', 'immigrant', 'workers', 'who', 'did', 'most', 'of', 'the', 'work', 'in', 'zangaro', ',', 'but', 'were', 'politically', 'disenfranchised', 'by', 'the', 'kimba', 'government', '.'], ['in', 'later', 'years', ',', 'however', ',', 'improved', 'medication', 'has', 'afforded', 'canavan', 'what', 'he', 'described', 'as', ',', '``', 'a', 'better', 'quality', 'of', 'life', \"''\", '.'], ['primrose', 'hill', ',', 'immediately', 'to', 'the', 'north', 'of', 'regent', \"'s\", 'park', ',', 'at', 'is', 'a', 'popular', 'spot', 'from', 'which', 'to', 'view', 'the', 'city', 'skyline', '.'], ['harris', 'was', 'also', 'nominated', 'for', 'best', 'british', 'male', 'solo', 'artist', 'at', 'the', '2', '0', '1', '3', 'brit', 'awards', 'in', 'february', '.'], ['after', 'defeating', 'banks', ',', 'he', 'then', 'hoped', 'to', 'move', 'on', 'culpeper', 'court', 'house', ',', 'north', 'of', 'gordonsville', 'and', 'the', 'focal', 'point', 'of', 'the', 'union', 'arc', 'about', 'northern', 'virginia', ',', 'to', 'keep', 'pope', \"'s\", 'army', 'from', 'uniting', '.'], ['kernanigous', 'gives', 'his', 'consent', 'to', 'gaston', \"'s\", 'marriage', 'with', 'mathilde', '.'], ['this', 'development', 'phase', ',', 'positioned', 'between', 'the', 'early', 'modernism', ',', 'international', 'style', ',', 'and', 'late', 'modernism', ',', 'without', 'including', 'the', 'postmodern', 'experimentation', ',', 'lasted', 'up', 'to', '1', '9', '7', '0', '.'], ['nov.', \"'kaputar\", \"'\", 'is', 'related', 'but', 'not', 'identical', 'to', '``', 'triboniophorus', 'graeffei', \"''\", ',', 'the', 'red', 'triangle', 'slug', '.'], ['he', 'later', 'threw', 'a', 'second', 'no-hitter', 'on', 'april', '2', '2', ',', '1', '8', '9', '8', '.'], ['the', 'casualties', 'achieved', 'underground', 'success', 'in', 'the', '2', '0', '0', '0', 's', '.'], ['there', 'is', 'no', 'secondary', 'school', 'in', 'booyal', ',', 'but', 'the', 'nearest', 'are', 'isis', 'district', 'state', 'high', 'school', 'in', 'childers', 'and', 'gin', 'gin', 'state', 'high', 'school', 'in', 'gin', 'gin', '.'], ['she', 'is', 'the', 'current', 'women', \"'s\", 'international', 'boxing', 'association', 'lightweight', 'champion', '.'], ['in', '2', '0', '0', '6', ',', 'georgia', 'enacted', '``', 'law', 'of', 'georgia', 'on', 'elimination', 'of', 'domestic', 'violence', ',', 'protection', 'and', 'support', 'of', 'victims', 'of', 'domestic', 'violence', \"''\", '.'], ['on', 'the', 'women', \"'s\", 'side', ',', 'the', 'rachel', 'homan', 'rink', 'from', 'ottawa', 'continued', 'their', 'dominance', ',', 'winning', 'their', 'third', 'straight', 'slam', ',', 'defeating', 'the', 'olympic', 'champion', 'jennifer', 'jones', 'rink', 'of', 'winnipeg', 'in', 'the', 'final', ',', '8', '-', '7', '.'], ['it', 'preserves', 'fossils', 'dating', 'back', 'to', 'the', 'carboniferous', 'period', '.'], ['in', '2', '0', '1', '0', ',', 'civita', 'was', 'designated', 'as', 'a', 'california', 'catalyst', 'community', 'by', 'the', 'california', 'department', 'of', 'housing', 'and', 'community', 'development', 'to', 'support', 'innovation', 'and', 'test', 'sustainable', 'strategies', 'that', 'reflect', 'the', 'interdependence', 'of', 'environmental', ',', 'economic', ',', 'and', 'community', 'health', '.'], ['the', 'hotel', 'features', 'a', 'ground', 'floor', 'shopping', 'mall', ',', 'with', 'retail', 'franchises', 'including', 'versace', ',', 'giorgio', 'armani', ',', 'lacoste', 'and', 'montblanc', ',', 'harking', 'back', 'to', 'the', 'building', \"'s\", 'origins', '.'], ['among', 'his', 'pupils', 'at', 'the', 'academy', 'were', 'pietro', 'benvenuti', ',', 'who', 'would', 'replace', 'him', 'as', 'director', 'of', 'the', 'academy', ',', 'and', 'pietro', 'ermini', '.'], ['she', 'produces', ',', 'directs', ',', 'and', 'stars', 'in', 'the', 'series', ',', 'and', 'handles', 'much', 'of', 'its', 'operations', 'as', 'co-founder', 'of', 'two', 'little', 'hands', 'productions', '.'], ['usually', 'such', 'profound', 'ignorance', 'like', 'this', 'is', 'commonly', 'found', 'in', 'the', '1', '8', 'th', ',', 'not', 'the', '2', '1', 'st', 'century', '.', \"''\"], ['the', 'unit', 'has', 'maintained', '1', '0', 'goats', ',', 'all', 'named', 'batisse', 'as', 'of', '2', '0', '1', '1', '.'], ['his', 'autobiography', ',', '``', 'thoughts', 'of', 'a', 'lifetime', \"''\", ',', 'was', 'published', 'in', '1', '9', '7', '1', '.'], ['other', 'skeptics', 'note', 'institutional', 'features', ',', 'such', 'as', 'a', 'lack', 'of', 'focus', 'on', 'meaningful', 'electoral', 'politics', ',', 'as', 'reasons', 'for', 'why', 'it', 'has', 'not', 'fully', 'been', 'embraced', 'at', 'the', 'supranational', 'level', 'in', 'the', 'european', 'union', '.'], ['her', 'career', 'includes', 'acting', ',', 'writing', ',', 'translating', ',', 'directing', 'and', 'adaptations', 'into', 'english', 'from', 'norwegian', 'texts', '.'], ['the', 'term', 'entered', 'the', 'english', 'language', 'when', 'svein', 'forkbeard', 'and', 'cnut', 'the', 'great', 'conquered', 'and', 'occupied', 'anglo-saxon', 'england', ';', 'the', 'housecarls', 'of', 'cnut', 'were', 'highly', 'disciplined', 'bodyguards', '.'], ['the', 'republican', 'victory', 'was', 'undoubtedly', 'masséna', \"'s\", 'greatest', 'triumph', ',', 'however', 'he', 'too', 'has', 'been', 'criticised', 'for', 'failing', 'to', 'fully', 'exploit', 'his', 'success', '.'], ['the', 'title', 'track', 'was', 'the', 'opening', 'theme', 'for', 'the', 'anime', '``', 'magical', 'girl', 'lyrical', 'nanoha', \"''\", '.'], ['male', 'inuit', 'initially', 'took', 'the', 'lead', 'in', 'assimilation', 'by', 'learning', 'the', 'language', 'of', 'the', 'arriving', 'culture', 'and', 'taking', 'on', 'modern', ',', 'wage', 'earning', 'jobs', ';', 'however', ',', 'a', 'lack', 'of', 'education', 'began', 'to', 'hinder', 'the', 'men', \"'s\", 'ability', 'to', 'find', 'and', 'keep', 'jobs', '.'], ['even', 'with', 'two', 'reservoirs', 'constructed', 'at', 'the', 'summit', 'as', 'feeders', 'to', 'the', 'canal', ',', 'the', 'union', 'canal', 'still', 'required', 'pumped', 'water', 'from', 'a', 'waterworks', 'at', 'the', 'junction', 'of', 'swatara', 'creek', 'and', 'clarke', \"'s\", 'run', 'and', 'later', 'from', 'a', 'second', 'waterworks', 'on', 'furnace', 'creek', 'on', 'the', 'quitipahilla', '.'], ['michele', 'r.', 'mcphee', '(', 'born', 'april', '8', ',', '1', '9', '7', '0', ')', 'is', 'an', 'american', 'author', ',', 'talk', 'radio', 'host', ',', 'and', 'five-time', 'emmy', 'nominated', 'investigative', 'journalist', 'from', 'boston', '.'], ['josh', 'meyers', '(', 'born', 'december', '7', ',', '1', '9', '8', '5', ')', 'is', 'an', 'american', 'former', 'professional', 'ice', 'hockey', 'player', '.'], ['maroney', 'won', 'the', 'vault', 'final', 'with', 'a', 'score', 'of', '1', '5', '.', '3', '0', '0', '.'], ['one', 'of', 'matheson', \"'s\", 'most', 'notable', 'decisions', 'was', 'in', '``', 'clark', 'v.', 'clark', \"''\", ',', 'a', 'case', 'that', 'heavily', 'influenced', 'the', 'law', 'regarding', 'the', 'capacity', 'of', 'differently-abled', 'persons', '.'], ['between', '1', '9', '7', '8', 'and', '1', '9', '8', '6', 'it', 'flew', 'the', 'a-', '4', 'skyhawk', '.'], ['after', 'maneuvering', 'shurlock', 'into', 'leaving', 'the', 'film', \"'s\", 'content', 'largely', 'intact', ',', 'hitchcock', 'learns', 'the', 'studio', 'is', 'only', 'going', 'to', 'open', 'the', 'film', 'in', 'two', 'theaters', '.'], ['yandex', 'denied', 'being', 'attacked', 'directly', 'and', 'instead', 'suggested', 'that', 'users', 'fell', 'victim', 'to', 'phishing', '.'], ['goda', \"'s\", 'counterpart', 'in', '``', 'ryu', 'ga', 'gotoku', 'ishin', '!', \"''\"], ['in', 'addition', 'to', 'this', 'number', ',', 'the', 'outgoing', 'world', 'champion', 'and', 'the', 'current', 'continental', 'champions', 'were', 'also', 'able', 'to', 'take', 'part', '.'], ['the', 'engines', 'were', 'equipped', 'with', 'adjustable', 'governor', ',', 'pop', 'safety', 'valve', ',', 'steam', 'gauge', ',', 'feed', 'water', 'heater', ',', 'direct', 'acting', 'pump', ',', 'whistle', ',', 'blower', ',', 'brake', ',', 'and', 'a', 'full', 'supply', 'of', 'wrenches', 'and', 'fire', 'tools', '.'], ['multimers', 'of', 'vwf', 'can', 'be', 'extremely', 'large', ',', '&', 'gt', ';', '2', '0', ',', '0', '0', '0', 'kda', ',', 'and', 'consist', 'of', 'over', '8', '0', 'subunits', 'of', '2', '5', '0', 'kda', 'each', '.'], ['in', 'the', 'month', 'of', 'rajab', 'of', '2', '0', '1', '3', ',', 'he', 'conducted', 'the', 'annual', 'examinations', 'of', 'al', 'jamea', 'tus', 'saifiyah', 'on', 'behalf', 'of', 'syedna', 'mohammed', 'burhanuddin', '.'], ['the', 'objective', 'of', 'treatment', 'is', 'to', 'create', 'a', 'conducive', 'clinical', 'condition', 'for', 'retaining', 'as', 'many', 'teeth', ',', 'for', 'as', 'long', 'as', 'possible', '.'], ['li', 'bai', 'made', 'this', 'his', 'home', 'for', 'about', 'ten', 'years', ',', 'living', 'in', 'a', 'home', 'owned', 'by', 'his', 'wife', \"'s\", 'family', 'on', 'mt', '.'], ['she', 'died', 'on', '2', '4', 'january', '1', '6', '2', '2', '.'], ['according', 'to', 'lehrer', ',', 'the', 'song', 'is', '``', 'not', 'intended', 'as', 'a', 'slur', 'on', '[', 'lobachevsky', \"'s\", ']', 'character', \"''\", 'and', 'the', 'name', 'was', 'chosen', '``', 'solely', 'for', 'prosodic', 'reasons', \"''\", '.'], ['still', ',', 'during', 'this', 'time', ',', 'it', 'began', 'edging', 'closer', 'to', 'kplr', '(', 'which', 'had', 'turned', 'the', 'fox', 'affiliation', 'down', 'before', 'the', 'network', 'approached', 'kdnl', ')', 'in', 'the', 'ratings', 'after', 'having', 'been', 'well', 'behind', 'channel', '1', '1', 'for', 'most', 'of', 'its', 'first', 'two', 'decades', 'on', 'the', 'air', '.'], ['not', 'all', 'such', 'attitudes', 'were', 'favorable', 'towards', 'the', 'jews', ';', 'they', 'were', 'shaped', 'in', 'part', 'by', 'a', 'variety', 'of', 'protestant', 'beliefs', ','], ['bello', 'had', 'been', 'a', 'member', 'of', 'the', 'bell', 'city', 'council', 'for', 'over', 'a', 'decade', ',', 'resigning', 'in', '2', '0', '0', '9', ',', 'and', 'served', 'as', 'the', 'mayor', 'in', '2', '0', '0', '2', '-', '2', '0', '0', '3', '.'], ['that', 'same', 'year', ',', 'he', 'began', 'another', 'successful', 'collaboration', ',', 'this', 'time', 'with', 'the', 'band', 'massive', 'attack', '.'], ['it', 'is', 'the', 'sole', 'representative', 'of', 'the', 'monospecific', 'genus', 'minaselates', ',', 'described', 'from', 'the', 'cavernas', 'do', 'peruaçu', 'national', 'park', 'in', 'southeastern', 'brazil', '.'], ['it', 'has', 'conducted', 'diplomatic', 'relations', 'with', 'states', 'and', 'international', 'organisations', 'since', 'its', 'inception', 'in', '1', '9', '7', '3', '.'], ['taradevi', 'siddhartha', '(', 'born', '1', '9', '5', '3', ')', 'is', 'a', 'politician', 'from', 'karnataka', ',', 'india', '.'], ['in', '2', '0', '0', '1', ',', 'the', 'parent', 'company', ',', 'earthweb', ',', 'changed', 'its', 'name', 'to', 'dice', 'inc', '.'], ['over', 'the', 'course', 'of', 'their', 'career', 'their', 'music', 'evolved', 'from', 'straightforward', 'punk', 'rock', 'to', 'incorporate', 'aspects', 'of', 'classic', 'rock', 'and', 'heavy', 'metal', '.'], ['in', '1', '9', '8', '2', ',', 'undp', 'and', 'unesco', 'provided', 'the', 'school', 'with', 'new', 'equipment', '.'], ['according', 'to', 'ali', ',', 'ranjit', 'singh', \"'s\", 'government', 'was', 'despotic', ',', 'and', 'he', 'was', 'a', 'mean', 'monarch', 'in', 'contrast', 'to', 'the', 'mughals', '.'], ['the', 'place', 'possesses', 'uncommon', ',', 'rare', 'or', 'endangered', 'aspects', 'of', 'the', 'cultural', 'or', 'natural', 'history', 'of', 'new', 'south', 'wales', '.'], ['in', 'november', '1', '9', '9', '5', ',', 'caravan', 'pictures', 'which', 'was', 'based', 'at', 'hollywood', 'pictures', ',', 'a', 'division', 'of', 'disney', 'studios', ',', 'optioned', 'the', 'script', 'for', '1', '8', 'months', '.'], ['in', 'august', '2', '0', '1', '7', ',', 'merrygold', 'was', 'announced', 'as', 'a', 'contestant', 'for', 'the', 'fifteenth', 'series', 'of', 'strictly', 'come', 'dancing', '.'], ['7', '6', 'trustees', '(', 'at', 'large', ')', ',', 'and', 'four', 'of', 'the', 'medicine', 'hat', 'catholic', 'separate', 'regional', 'division', 'no', '.'], ['it', 'conducts', 'classes', 'from', 'primary', 'to', 'senior', 'secondary', 'level', '.'], ['given', 'a', 'locally', 'convex', 'tvs', '``', 'x', \"''\", ',', 'formula_', '1', '7', 'is', 'assumed', 'to', 'have', 'the', 'strong', 'topology', '(', 'so', 'formula_', '1', '7', '2', ')', 'and', 'unless', 'stated', 'otherwise', ',', 'the', 'same', 'is', 'true', 'of', 'the', 'bidual', 'formula_', '1', '7', '3', '(', 'so', 'formula_', '1', '7', '4', '.'], ['baroness', 'sophie', 'buxhoeveden', ',', 'his', 'mother', \"'s\", 'lady-in-waiting', ',', 'reflected', 'that', '``', 'he', 'was', 'a', 'pretty', 'child', ',', 'tall', 'for', 'his', 'age', ',', 'with', 'regular', 'features', ',', 'splendid', 'dark', 'blue', 'eyes', 'with', 'a', 'spark', 'of', 'mischief', 'in', 'them', ',', 'brown', 'hair', ',', 'and', 'an', 'uptight', 'figure', '.', \"''\"], ['in', '1', '9', '9', '8', ',', 'she', 'recorded', 'the', '``', 'st', 'matthew', 'passion', \"''\", 'with', 'the', 'thomanerchor', 'and', 'the', 'gewandhausorchester', 'leipzig', ',', 'conducted', 'by', 'georg', 'christoph', 'biller', '.'], ['opie', 'advised', 'his', 'students', 'to', 'pay', 'great', 'attention', 'to', 'titian', ',', 'whose', 'use', 'of', 'colour', 'he', 'considered', 'unsurpassed', ',', 'advising', 'students', 'that', '``', 'colouring', 'is', 'the', 'sunshine', 'of', 'the', 'art', ',', 'that', 'clothes', 'poverty', 'in', 'smiles', '[', '...', ']', 'and', 'doubles', 'the', 'charms', 'of', 'beauty', '.'], ['in', 'the', 'same', 'period', ',', 'along', 'with', 'planning', 'activities', ',', 'čanak', 'deals', 'with', 'scientific', 'research', 'in', 'the', 'field', 'of', 'housing', 'quality', '.'], ['nothing', 'is', 'impossible', 'with', 'our', 'cooperation', ',', 'commitment', 'and', 'integrity', '.'], ['public', 'libraries', 'are', 'functioning', 'in', 'the', 'community', 'centers', 'in', 'the', 'villages', '.'], ['the', 'singles', 'start', 'with', 'the', 'a-side', 'tracks', '``', 'seven', 'seas', 'of', 'rhye', \"''\", 'through', 'to', '``', 'a', 'kind', 'of', 'magic', \"''\", 'complete', 'with', 'b-sides', '.'], ['the', 'complete', 'bible', 'was', 'published', 'in', 'six', 'volumes', 'between', '1', '5', '7', '9', 'and', '1', '5', '9', '3', 'with', 'extensive', 'annotations', '.'], ['turnpikes', 'contributed', 'significantly', 'to', 'england', \"'s\", 'economic', 'development', 'before', 'and', 'during', 'the', 'industrial', 'revolution', '.'], ['construction', 'was', 'started', 'in', '1', '8', '9', '2', ',', 'triggering', 'other', 'similar', 'facilities', 'to', 'be', 'built', 'at', 'redford', 'barracks', 'in', 'edinburgh', 'and', 'barry', 'buddon', 'outside', 'dundee', '.'], ['it', 'is', '4', '2', 'kilometers', 'in', 'diameter', 'and', 'reaches', 'a', 'depth', 'of', '1', '.', '8', 'kilometers', '.'], ['lockley', 'chases', 'henderson', 'through', 'the', 'streets', 'and', 'into', 'the', 'saks', 'fifth', 'avenue', 'department', 'store', ',', 'and', 'the', 'two', 'end', 'up', 'trapped', 'in', 'an', 'elevator', 'between', 'floors', ',', 'holding', 'guns', 'on', 'each', 'other', '.'], ['da', 'costa', 'formed', 'a', 'government', 'on', '1', '8', 'november', 'that', 'was', 'almost', 'entirely', 'composed', 'of', 'paigc', 'members', ',', 'although', 'one', 'post', 'was', 'given', 'to', 'the', 'bafata', 'movement', '.'], ['knowingly', 'or', 'willfully', 'doing', 'so', ',', 'however', ',', 'is', 'a', 'fourth', 'degree', 'felony', ',', 'along', 'with', 'transporting', 'those', 'foreigners', 'within', 'bhutan', 'and', 'tampering', 'with', 'travel', 'documents', '.'], ['their', 'current', 'population', '(', 'as', 'of', '2', '0', '1', '4', ')', 'is', '1', ',', '0', '5', '4', 'tribal', 'members', '.'], ['farloe', 'melody', 'took', 'a', 'clear', 'lead', 'from', 'siostalaoir', 'at', 'the', 'third', 'bend', 'after', 'they', 'were', 'neck', 'and', 'neck', 'until', 'then', '.'], ['his', 'points', 'tally', 'for', 'wigan', \"'s\", 'season', 'totalled', '3', '2', 'tries', ',', 'five', 'goals', ',', 'and', 'one', 'drop', 'goal', '.'], ['after', 'being', 'presented', 'at', 'the', 'edwardian', 'court', 'in', 'london', ',', 'at', '1', '8', 'mabel', 'was', 'engaged', 'to', 'norman', 'brookes', ',', 'a', 'tennis', 'player', ',', 'who', 'was', 'the', 'first', 'australian', 'to', 'win', 'wimbledon', '.'], ['the', 'exception', 'is', 'mechanical', 'movement', ',', 'which', 'typically', 'moves', 'in', 'straight', 'lines', '.'], ['(', 'it', 'had', 'already', 'broken', 'up', 'the', 'sp-up', 'combination', 'in', '1', '9', '1', '3', '.', ')'], ['aghoremani', 'devi', 'was', 'born', 'of', 'a', 'brahmin', 'family', 'in', 'the', 'year', '1', '8', '2', '2', 'in', 'the', 'village', 'called', 'kamarhati', 'near', 'calcutta', '.'], ['through', 'the', '1', '9', '9', '0', 's', ',', 'mainstream', 'movie', 'and', 'television', 'actors', 'have', 'been', 'more', 'willing', 'to', 'portray', 'homosexuality', ',', 'as', 'the', 'threat', 'of', 'any', 'backlash', 'against', 'their', 'careers', 'has', 'lessened', 'and', 'society', \"'s\", 'acceptance', 'of', 'gay', 'and', 'lesbian', 'people', 'has', 'increased', '.'], ['its', 'athletics', 'are', 'known', 'as', 'the', 'independence', 'falcons', 'and', 'the', 'school', 'colors', 'are', 'maroon', 'and', 'silver', '.'], ['he', 'was', 'a', 'prolific', 'engineer', 'working', 'with', 'the', 'atlantic', 'telegraph', 'company', 'on', 'machinery', 'for', 'cable', 'laying', ',', 'the', 'metropolitan', 'board', 'of', 'works', 'on', 'sewage', 'systems', 'and', 'isambard', 'kingdom', 'brunel', 'on', 'his', 'steamships', '.'], ['quixey', 'used', 'the', 'challenge', 'as', 'a', 'recruiting', 'tool', 'for', 'software', 'engineers', ',', 'and', 'winners', 'were', 'invited', 'to', 'interview', 'with', 'the', 'company', ',', 'resulting', 'in', 'several', 'hires', '.'], ['so', 'in', '2', '0', '0', '7', 'singh', 'signed', 'for', 'churchill', 'brothers', '.'], ['her', 'work', 'is', 'exemplified', 'by', 'the', 'post-minimalist', 'use', 'of', 'materials', '(', 'ala', 'richard', 'tuttle', 'only', 'much', 'larger', ',', 'but', 'smaller', 'than', 'jessica', 'stockholder', \"'s\", 'full', 'room', 'works', ')', 'in', 'a', 'range', 'of', 'tactically', 'diverse', 'ways', ',', 'such', 'as', 'stuffed', 'fabric', ',', 'wood', ',', 'and', 'marble', '.'], ['wisconsin', 'junction', 'is', 'an', 'unincorporated', 'community', 'located', 'in', 'the', 'town', 'of', 'argonne', ',', 'forest', 'county', ',', 'wisconsin', ',', 'united', 'states', '.'], ['he', 'began', 'his', 'law', 'enforcement', 'career', 'in', '1', '9', '7', '2', 'as', 'a', 'police', 'officer', 'for', 'the', 'st.', 'petersburg', 'police', 'in', 'florida', '.'], ['matt', 'darey', 'is', 'a', 'prolific', 'remixer', 'using', 'a', 'number', 'of', 'aliases', '.'], ['market', 'gardens', 'are', 'necessarily', 'close', 'to', 'the', 'markets', ',', 'i.e', '.'], ['in', '2', '0', '0', '6', ',', 'a', 'meme', 'began', 'circulating', 'on', '4', 'chan', 'boards', 'regarding', 'racist', 'conduct', 'by', 'habbo', 'moderators', 'and', 'arbitrary', 'banning', 'of', 'players', 'with', 'darker-skinned', 'avatars', '.'], ['barakat', 'died', 'in', 'greensboro', 'of', 'a', 'heart', 'attack', 'on', 'june', '2', '1', ',', '2', '0', '1', '0', 'at', 'the', 'age', 'of', '7', '1', '.'], ['the', 'novel', 'is', 'a', 'historical', 'and', 'literary', 'portrayal', 'of', 'the', 'status', 'of', 'women', 'in', 'the', 'old', 'west', '.'], ['galacto-oligosaccharides', 'are', 'classified', 'as', 'prebiotics', ',', 'defined', 'as', 'non-digestible', 'food', 'ingredients', 'that', 'beneficially', 'affect', 'the', 'host', 'by', 'stimulating', 'the', 'growth', 'and/or', 'activity', 'of', 'beneficial', 'bacteria', 'in', 'the', 'colon', '.'], ['after', '3', '0', 'days', ',', 'hanina', 'asked', 'the', 'angel', 'to', 'show', 'him', 'hanina', \"'s\", 'place', 'in', 'the', 'world', 'to', 'come', ',', 'and', 'the', 'angel', 'agreed', '.'], ['he', 'started', 'playing', 'guitar', 'in', 'local', 'coffee', 'shops', 'in', 'the', 'late', '1', '9', '5', '0', 's', '.'], ['all', 'the', 'pages', 'are', 'printed', 'in', 'the', 'format', '(', '3', '8', 'cm', 'by', '2', '8', 'cm', ')', 'and', 'in', 'the', 'typography', 'chosen', 'by', 'the', 'author', '.'], ['coontz', 'was', 'briefly', 'recalled', 'to', 'active', 'duty', 'in', '1', '9', '3', '0', ',', 'to', 'investigate', 'railroads', 'in', 'alaska', '.'], ['on', '2', '7', 'july', '2', '0', '0', '6', ',', 'the', 'business', 'was', 'sold', 'as', 'a', 'going', 'concern', 'and', 'the', 'employees', 'were', 'engaged', 'again', '.'], ['``', 'to', 'his', 'backers', ',', 'gonzales', 'is', 'a', 'quiet', ',', 'hardworking', 'attorney', 'general', 'notable', 'for', 'his', 'open', 'management', 'style', 'and', 'his', 'commitment', 'to', 'the', 'administration', 'of', 'justice', 'and', 'to', 'the', 'war', 'on', 'terrorism', '.', \"''\"], ['the', 'coxeter', 'elements', 'are', '1', '2', ',', '1', '8', 'and', '3', '0', 'respectively', '.'], ['kudankulam', 'nuclear', 'power', 'plant', '(', 'or', 'kudankulam', 'npp', 'or', 'kknpp', ')', 'is', 'the', 'largest', 'nuclear', 'power', 'station', 'in', 'india', ',', 'situated', 'in', 'kudankulam', 'in', 'the', 'tirunelveli', 'district', 'of', 'the', 'southern', 'indian', 'state', 'of', 'tamil', 'nadu', '.'], ['since', 'the', 'war', \"'s\", 'end', ',', 'after', 'most', 'of', 'the', 'mass', 'graves', 'had', 'been', 'searched', ',', 'the', 'body', 'count', 'has', 'remained', 'less', 'than', 'half', 'of', 'the', 'estimated', '1', '0', ',', '0', '0', '0', 'plus', '.'], ['rivers', 'form', 'the', 'principal', 'part', 'of', 'the', 'water', 'systems', 'of', 'azerbaijan', '.'], ['it', 'is', 'mutually', 'intelligible', 'with', 'other', 'varieties', 'of', 'the', 'western', 'desert', 'language', ',', 'and', 'is', 'particularly', 'closely', 'related', 'to', 'the', 'yankunytjatjara', 'dialect', '.'], ['she', 'received', 'the', 'british', 'film', 'institute', 'fellowship', 'in', 'recognition', 'of', 'her', 'outstanding', 'contribution', 'to', 'film', ',', 'presented', 'to', 'her', 'by', 'fellow', 'actor', 'ian', 'mckellen', '.'], ['they', 'have', 'four', 'children', 'and', 'live', 'in', 'hyde', 'park', '.'], ['not', 'too', 'long', 'after', 'that', ',', 'the', 'pair', 'sold', 'both', 'horses', 'to', 'colonel', 'jim', 'skew', '.'], ['he', 'is', 'a', 'knight', 'of', 'the', 'order', 'of', 'the', 'holy', 'sepulchre', '.'], ['according', 'to', 'the', '1', '9', '9', '8', 'census', 'it', 'has', 'a', 'population', 'of', '5', '7', ',', '2', '7', '0', '.'], ['in', '1', '9', '6', '5', ',', 'a', 'deadly', 'accident', 'occurred', 'between', 'ullevål', 'and', 'berg', 'stations', ',', 'when', 'a', 'train', 'ran', 'over', 'a', '3', '3', '-year-old', 'man', 'walking', 'in', 'the', 'tracks', '.'], ['it', 'contains', 'only', 'the', 'species', 'protomeroleuca', 'perlides', 'from', 'madagascar', '.'], ['corporal', 'king', 'is', 'an', 'anomaly', 'in', 'the', 'japanese', 'prison', 'camp', '.'], ['``', 'ynys-hir', \"''\", 'means', '``', 'long', 'island', \"''\", 'in', 'welsh', '.'], ['negotiations', 'to', 'operate', 'there', 'took', 'place', 'two', 'years', 'before', '.'], ['he', 'released', 'a', 'self-titled', 'debut', 'album', 'in', '2', '0', '0', '5', '.'], ['she', 'won', 'a', 'bronze', 'medal', 'in', 'the', 'k-', '2', '5', '0', '0', 'm', 'event', 'at', 'the', '1', '9', '8', '0', 'summer', 'olympics', 'in', 'moscow', '.'], ['in', 'his', 'first', 'season', 'at', 'middlesex', 'he', 'exclusively', 'played', 'in', 'the', 'second', 'xi', ',', 'sharing', 'the', 'gloves', 'with', 'david', 'nash', 'and', 'appearing', 'in', 'six', 'matches', ',', 'scoring', '1', '9', '3', 'runs', 'at', '2', '7', '.', '5', '7', '.'], ['he', 'was', 'elected', 'as', 'a', 'democrat', 'to', 'the', 'united', 'states', 'house', 'of', 'representatives', 'from', 'massachusetts', 'and', 'served', 'from', 'march', '4', ',', '1', '9', '0', '3', ',', 'to', 'march', '3', ',', '1', '9', '1', '1', '.'], ['this', 'appointment', 'probably', 'lasted', 'until', '1', '6', '2', '9', '.'], ['stockdale', 'was', 'born', 'in', 'abingdon', ',', 'illinois', ',', 'on', 'december', '2', '3', ',', '1', '9', '2', '3', ',', 'the', 'son', 'of', 'mabel', 'edith', '(', 'née', 'bond', ')', 'and', 'vernon', 'beard', 'stockdale', '.'], ['giška', 'often', 'acted', 'as', 'a', 'negotiator', ',', 'settling', 'feuds', 'between', 'his', 'own', 'and', 'other', 'gangs', '.'], ['their', 'music', 'fuses', 'our', 'traditional', 'americana', 'roots', 'with', 'modern', 'live', 'production', ',', 'skillfully', 'tight', 'vocal', 'harmonies', ',', 'and', 'lyrics', 'that', 'seek', 'to', 'understand', 'their', 'connection', 'to', 'the', 'past', '...', 'so', 'that', 'they', 'may', 'create', 'the', 'future', '.'], ['the', '-', \"''\", 'um', \"''\", 'therefore', 'stays', 'constant', 'and', 'does', 'not', 'change', 'for', 'gender', 'or', 'number', '.'], ['he', 'then', 'turned', 'the', 'weapon', 'on', 'his', 'head', 'and', 'fired', '.'], ['the', 'story', 'of', 'mr.', 'popper', \"'s\", 'penguins', \"''\", ',', 'inspired', 'by', 'a', 'documentary', 'about', 'richard', 'e.', 'byrd', \"'s\", 'antarctic', 'expedition', 'that', 'he', 'had', 'seen', 'with', 'his', 'family', 'in', '1', '9', '3', '2', '.'], ['the', 'film', 'stars', 'prem', 'nazir', ',', 'sharada', ',', 'sukumari', 'and', 'kottayam', 'santha', 'in', 'the', 'lead', 'roles', '.'], ['other', 'scholars', 'have', 'called', 'cummings', 'a', 'neo-romantic', 'instead', ',', 'citing', 'his', 'deliberate', 'use', 'of', 'illogic', '(', 'as', 'in', 'the', 'title', 'of', 'the', 'collection', ',', '``', 'is', '5', ',', \"''\", 'which', 'stems', 'from', 'the', 'assertion', 'that', '``', 'two', 'plus', 'two', 'is', 'five', \"''\", ')', '.'], ['the', 'suds', ',', 'pittsburgh', 'hardhats', 'and', 'kentucky', 'bourbons', 'were', 'the', 'only', 'franchises', 'to', 'play', 'all', '6', 'seasons', 'of', 'professional', 'softball', '.'], ['browning', 'was', 'elected', 'bishop', 'of', 'canberra', 'and', 'goulburn', 'on', '3', '1', 'january', '1', '9', '9', '3', 'and', 'installed', 'on', '3', '0', 'may', '1', '9', '9', '3', '.'], ['she', 'was', 'also', 'the', 'first', 'person', 'to', 'introduce', 'radio', 'programs', 'in', 'the', 'department', '.'], ['the', 'station', \"'s\", 'transmitter', 'is', 'located', 'atop', 'the', 'benson', 'apartment', 'tower', 'at', 'north', '6', '0', 'th', 'street', 'and', 'northwest', 'radial', 'highway', ',', 'northwest', 'of', 'downtown', 'omaha', '.'], ['the', 'winston', 'was', 'open', 'to', 'race', 'winners', 'from', 'the', '1', '9', '8', '5', 'season', '.'], ['danny', 'cowan', 'of', 'indiegames.com', 'compared', 'it', 'with', 'sidhe', 'interactive', \"'s\", '``', 'shatter', \"''\", 'and', '``', 'vg', '2', '4', '7', '``', 'called', 'it', 'a', 'rendition', 'of', '``', 'breakout', \"''\", '.'], ['fair', 'trade', 'towns', 'usa', 'offers', 'resources', 'on', 'their', 'website', 'designed', 'to', 'help', 'communities', 'in', 'their', 'efforts', '.'], ['in', 'the', 'mid-', '2', '0', 'th', 'century', 'the', 'firm', 'published', 'books', 'by', 'enid', 'blyton', 'and', 'children', \"'s\", 'classics', 'in', 'the', 'dean', \"'s\", 'classics', 'series', '.'], ['case', 'had', 'stated', 'that', 'although', 'he', 'has', 'the', 'deepest', 'respect', 'for', 'daniel', 'akaka', ',', 'hawaii', 'is', 'in', 'a', 'time', 'of', 'transition', 'with', 'regard', 'to', 'the', 'state', \"'s\", 'representation', 'in', 'congress', 'which', 'requires', 'that', 'the', 'state', 'phase', 'in', 'the', 'next', 'generation', 'to', 'provide', 'continuity', 'in', 'that', 'service', '.'], ['because', 'of', 'the', 'nature', 'of', 'the', 'nat', ',', 'ip', 'addresses', 'on', 'the', 'local', 'computer', 'are', 'not', 'visible', 'on', 'the', 'internet', '.'], ['donna', 'zakowska', 'was', 'born', 'in', 'brooklyn', 'in', '1', '9', '5', '4', '.'], ['upon', 'check-in', ',', 'all', 'three', 'men', 'were', 'selected', 'by', 'the', 'computer', 'assisted', 'passenger', 'prescreening', 'system', '(', 'capps', ')', 'for', 'further', 'screening', 'of', 'their', 'checked', 'baggage', '.'], ['the', 'inclusion', 'is', 'not', 'limited', 'to', 'files', ',', 'and', 'may', 'also', 'be', 'the', 'text', 'output', 'from', 'a', 'program', ',', 'or', 'the', 'value', 'of', 'a', 'system', 'variable', 'such', 'as', 'the', 'current', 'time', '.'], ['accounting', 'for', 'foreign', 'brands', ',', 'plug-in', 'car', 'sales', 'rise', 'to', 'about', '6', '0', '0', ',', '0', '0', '0', 'in', '2', '0', '1', '7', ',', 'representing', 'about', 'half', 'of', 'global', 'plug-in', 'car', 'sales', 'in', '2', '0', '1', '7', '.'], ['from', 'the', 'accounts', 'at', 'this', 'time', ',', 'it', 'was', 'still', 'a', 'fairly', 'large', 'village', ',', 'with', 'a', 'number', 'of', 'people', 'inhabiting', 'it', '.'], ['fall', 'of', '2', '0', '0', '6', 'saw', 'the', 'release', 'of', 'version', '4', 'of', 'the', 'database', ',', 'now', 'stored', 'in', 'postgresql', ',', 'and', 'the', 'supporting', 'software', ',', 'now', 'written', 'entirely', 'in', 'java', '.'], ['noble', 'served', 'as', 'executive', 'producer', 'for', 'network', '1', '0', \"'s\", 'big', 'brother', 'australia', 'from', 'the', 'fourth', 'series', 'until', 'the', 'seventh', 'series', '.'], ['another', 'one', 'of', 'these', 'mountains', 'is', 'the', 'adjacent', 'mount', 'banahaw', 'de', 'lucbán', '.'], ['crops', 'traded', 'by', 'europeans', 'from', 'the', 'new', 'world', 'began', 'to', 'appear', ',', 'acquired', 'through', 'trade', 'with', 'china', ',', 'japan', ',', 'europe', ',', 'and', 'the', 'philippines', ';', 'these', 'crops', 'included', 'corn', ',', 'sweet', 'potatoes', ',', 'chili', 'peppers', ',', 'tomatoes', ',', 'peanuts', ',', 'and', 'squash', '.'], ['it', 'was', 'louis-antoine-augustin', 'pavy', ',', 'who', 'served', 'as', 'the', 'bishop', 'of', 'algiers', 'from', '1', '8', '4', '6', 'to', '1', '8', '6', '6', ',', 'who', 'paved', 'the', 'way', 'for', 'its', 'construction', '.'], ['after', 'completion', 'of', 'the', 'keystone', 'xl', 'line', ',', 'oil', 'pipelines', 'to', 'the', 'u.s.', 'may', 'run', 'nearly', 'half-empty', '.'], ['rosie', 'maclennan', 'also', 'suffered', 'a', 'mild', 'concussion', 'before', 'the', '2', '0', '1', '5', 'pan', 'am', 'games', 'in', 'toronto', '.'], ['the', 'museum', 'implements', 'various', 'projects', 'together', 'with', 'different', 'state', 'cultural', 'organizations', 'and', 'ngos', '.'], ['however', ',', 'this', 'cottage', 'was', 'found', \"'highly\", 'inconvenient', ',', 'and', 'indeed', 'from', 'its', 'extreme', 'heat', 'through', 'the', 'multitude', 'which', 'attended', ',', 'dangerous', \"'\", ',', 'so', 'a', 'new', 'meeting', 'house', 'was', 'erected', 'in', '1', '8', '0', '3', 'and', 'the', 'revd', 'mr.', 'harding', 'of', 'duxford', 'nominated', 'as', 'minister', '.'], ['because', 'of', 'vehicle', 'weight', 'limits', ',', 'the', 'mackay', 'bridge', 'is', 'the', 'only', 'crossing', 'that', 'commercial', 'trucks', 'can', 'use', 'to', 'cross', 'the', 'harbour', '.'], ['though', 'disney', 'gave', 'nomura', 'freedom', 'in', 'the', 'characters', 'and', 'worlds', 'used', 'for', 'the', 'games', ',', 'he', 'and', 'his', 'staff', 'tried', 'to', 'stay', 'within', 'the', 'established', 'roles', 'of', 'characters', 'and', 'boundaries', 'of', 'the', 'worlds', '.'], ['he', 'won', 'the', 'german', 'national', 'road', 'race', 'in', '1', '9', '5', '8', '.'], ['the', 'development', 'was', 'described', 'to', ',', 'according', 'to', 'president', 'of', 'astra', 'honda', 'motor', 'toshiyuki', 'inuma', ',', 'as', '``', 'simple', \"''\", 'and', '``', 'raw', \"''\", '.'], ['karp', 'and', 'robinson', 'choose', 'ali', 'segel', 'and', 'erin', 'mallory', 'long', 'to', 'replace', 'them', 'as', 'hosts', '.'], ['in', '1', '8', '0', '9', ',', 'mccormick', 'married', 'mary', 'cornwall', ',', 'the', 'daughter', 'of', 'john', 'cornwall', '.'], ['on', '2', 'april', '2', '0', '1', '3', ',', 'emma', 'willis', 'was', 'officially', 'announced', 'as', 'the', 'host', 'of', '``', 'celebrity', 'big', 'brother', \"''\", ',', 'after', 'previous', 'host', 'brian', 'dowling', 'was', 'removed', '.'], ['more', 'puzzling', ',', 'thomas', 'finds', 'a', 'copy', 'of', 'a', 'theology', 'text', 'that', 'he', 'himself', 'wrote', 'years', 'ago', '.'], ['they', 'continue', 'to', 'be', 'a', 'commercial', 'success', ',', 'with', 'such', 'themes', 'as', 'mickey', 'mouse', ',', 'donald', 'duck', ',', 'oliver', '&', 'amp', ';', 'company', ',', 'superman', ',', 'spider-man', ',', 'rocket', 'power', ',', 'rugrats', ',', 'smiley', 'faces', ',', 'barbie', ',', 'dora', 'the', 'explorer', ',', 'and', 'batman', '.'], ['the', 'two', 'structures', 'were', 'combined', 'in', '1', '7', '8', '7', '.'], ['being', 'in', 'the', 'command', 'center', 'allowed', 'me', 'to', 'observe', 'the', 'first', 'hours', 'of', 'the', 'operation', 'literally', 'from', 'a', 'front-row', 'seat', '.'], ['the', 'game', 'is', 'based', 'on', 'parts', 'of', 'the', 'movie', '``', \"''\", 'and', 'other', 'parts', 'of', 'the', 'bionicle', 'storyline', '.'], ['the', 'live', 'action', 'miniseries', 'acts', 'a', 'prequel', 'to', 'the', 'events', 'of', 'the', 'game', ',', 'albeit', 'one', 'which', 'is', 'inspired', 'by', 'its', 'plot', 'and', 'characters', 'rather', 'than', 'being', 'strictly', 'canonical', 'to', 'it', '.'], ['``', 'some', 'were', 'wearing', 'army', 'fatigues', 'and', 'some', 'had', 'lungis', 'tied', 'up', 'to', 'their', 'waists', '.'], ['in', '2', '0', '1', '4', ',', 'phillips', 'joined', 'the', 'washington', 'redskins', 'as', 'tight', 'ends', 'coach', 'under', 'new', 'head', 'coach', 'jay', 'gruden', '.'], ['prefectural', 'police', 'departments', 'are', 'established', 'for', 'each', 'prefectures', 'and', 'have', 'full', 'responsibility', 'for', 'regular', 'police', 'duties', 'for', 'their', 'area', 'of', 'responsibility', '.'], ['he', 'died', 'at', 'the', 'age', 'of', '4', '4', 'in', '1', '6', '7', '7', 'from', 'a', 'lung', 'illness', ',', 'perhaps', 'tuberculosis', 'or', 'silicosis', 'exacerbated', 'by', 'the', 'inhalation', 'of', 'fine', 'glass', 'dust', 'while', 'grinding', 'lenses', '.'], ['in', '1', '9', '8', '0', ',', 'the', 'highway', 'was', 'extended', 'to', 'its', 'current', 'southbound', 'terminus', ',', 'replacing', 'pr', '2', '5', '8', 'between', 'neepawa', 'and', 'pth', '3', 'at', 'cartwright', ',', 'via', 'glenboro', 'and', 'carberry', ',', 'and', 'pth', '2', '8', 'between', 'the', 'u.s.', 'border', 'and', 'cartwright', '.'], ['from', '2', '0', '2', '0', 'he', 'serves', 'as', 'the', 'chair', 'of', 'the', 'then', 'newly', 'established', 'department', 'of', 'chinese', 'studies', 'at', 'the', 'institute', 'of', 'oriental', 'languages', 'and', 'cultures', 'at', 'his', 'university', '.'], ['demetria', 'fulton', 'previewed', 'patricia', 'smith', 'in', 'the', 'second', 'season', 'of', 'barnaby', 'jones', ',', 'episode', 'titled', ',', '``', 'blind', 'terror', \"''\", '(', '0', '9', '/', '1', '6', '/', '1', '9', '7', '3', ')', '.'], ['until', '2', '8', 'november', '2', '0', '1', '3', ',', 'he', 'was', 'the', 'vice', 'president', 'of', 'the', 'professional', 'football', 'league', 'of', 'romania', '.'], ['groups', 'of', '``', 'silhak', \"''\", '(', '``', 'practical', 'learning', \"''\", ')', 'scholars', 'began', 'to', 'emphasize', 'the', 'importance', 'of', 'looking', 'outside', 'the', 'country', 'for', 'innovation', 'and', 'technology', 'to', 'help', 'improve', 'the', 'agricultural', 'systems', '.'], ['he', 'shrugs', 'it', 'off', ',', 'saying', ',', '``', 'i', 'like', 'it', \"''\", '(', 'this', 'has', 'caused', 'the', 'cartoon', 'much', 'controversy', 'for', 'implying', 'sadomasochism', ')', '.'], ['one', 'day', 'megha', ',', 'a', 'team', 'member', ',', 'at', 'work', ',', 'approaches', 'him', 'to', 'save', 'her', 'job', 'for', 'not', 'performing', 'well', '.'], ['the', 'observatory', 'is', 'at', 'an', 'altitude', 'of', 'above', 'sea', 'level', '.'], ['the', 'ostrich', ',', 'for', 'instance', ',', 'a', 'denizen', 'of', 'the', 'torrid', 'regions', ',', 'and', 'the', 'camel', ',', 'of', 'the', 'waterless', 'districts', 'around', 'palestine', ',', 'are', 'mentioned', 'side', 'by', 'side', 'with', 'the', 'roebuck', 'and', 'deer', 'of', 'the', 'woody', 'summits', 'of', 'lebanon', '.'], ['the', 'gameplay', 'revolves', 'around', 'surviving', 'on', 'a', 'deserted', 'island', '.'], ['ky', '3', '6', '3', '0', 'begins', 'at', 'an', 'intersection', 'with', 'ky', '5', '7', '8', 'in', 'laurel', 'county', ',', 'heading', 'north', 'on', 'a', 'two-lane', 'undivided', 'road', '.'], ['diablo', 'jewelflower', ',', 'is', 'a', 'rare', 'species', 'of', 'flowering', 'plant', 'in', 'the', 'mustard', 'family', '.'], ['the', 'flatmates', 'brought', 'the', 'man', 'to', 'the', 'flat', 'days', 'later', 'and', 'warned', 'him', 'in', 'front', 'of', 'her', 'that', 'they', 'would', 'break', 'his', 'legs', 'if', 'they', 'saw', 'him', 'at', 'any', 'of', 'the', 'places', 'they', 'frequented', '.'], ['it', 'is', 'dedicated', 'to', 'rishabha', ',', 'the', 'first', 'tirthankara', 'of', 'jainism', '.'], ['in', 'pre-revolutionary', 'france', ',', 'women', 'had', 'no', 'part', 'in', 'affairs', 'outside', 'the', 'house', '.'], ['rivers', 'running', 'north', 'off', 'the', 'wales-brabant', 'high', 'deposited', 'material', 'in', 'the', 'southern', 'parts', 'of', 'the', 'pennine', 'basin', 'from', 'northeast', 'wales', 'to', 'the', 'peak', 'district', '.'], ['the', 'name', 'refers', 'to', 'a', 'wooded', 'ridge', 'which', 'was', 'once', 'surrounded', 'by', 'marshland', '.'], ['ramm', 'blev', 'joined', 'the', 'army', 'in', '1', '8', '4', '8', 'and', 'was', 'in', '1', '8', '5', '2', 'appointed', 'second', 'lieutenant', 'in', 'the', 'infantry', '.'], ['requesting', 'an', 'overseas', 'transfer', ',', 'johnson', 'was', 'reassigned', 'to', 'the', '5', '7', 'th', 'infantry', '(', 'philippine', 'scouts', ')', 'at', 'fort', 'mckinley', ',', 'philippine', 'islands', 'in', '1', '9', '4', '0', '.'], ['he', 'is', 'a', 'member', 'of', 'the', 'association', 'for', 'conflict', 'resolution', ',', 'the', 'aba', 'forum', 'committee', 'on', 'the', 'construction', 'industry', ',', 'aba', 'alternate', 'dispute', 'resolution', 'section', ',', 'florida', 'bar', 'construction', 'law', 'committee', ',', 'alternate', 'dispute', 'resolution', 'section', ',', 'and', 'miami', 'international', 'arbitration', 'society', '.'], ['for', 'this', 'reason', 'she', 'also', 'sought', 'to', 'reconcile', 'with', 'the', 'catholic', 'church', '.'], ['males', 'had', 'a', 'median', 'income', 'of', '$', '3', '6', ',', '7', '3', '5', 'versus', '$', '2', '2', ',', '7', '0', '0', 'for', 'females', '.'], ['level', 'of', 'teaching', 'is', 'not', 'very', 'good', 'here', ',', 'but', 'thats', 'only', 'because', 'of', 'failed', 'education', 'system', 'of', 'india', '.'], ['the', 'fact', 'that', 'health', 'insurance', 'plans', 'are', 'administered', 'by', 'the', 'provinces', 'and', 'territories', 'in', 'a', 'country', 'where', 'large', 'numbers', 'of', 'residents', 'of', 'certain', 'provinces', 'work', 'in', 'other', 'provinces', 'may', 'lead', 'to', 'inequitable', 'inter-provincial', 'outcomes', 'with', 'respect', 'to', 'revenues', 'and', 'expenditures', '.'], ['with', 'the', 'exception', 'of', 'its', 'exchange-traded', 'series', ',', 'ia', 'clarington', 'products', 'can', 'only', 'be', 'purchased', 'through', 'licensed', ',', 'third-party', 'financial', 'advisors', '.'], ['he', 'served', 'five', 'years', 'as', 'an', 'armor', 'officer', 'in', 'the', 'u.s.', 'army', 'at', 'fort', 'hood', ',', 'departing', 'active', 'duty', 'after', 'attaining', 'the', 'rank', 'of', 'captain', '.'], ['the', 'detailed', 'description', 'of', 'pfm', 'principles', 'and', 'applications', 'is', 'available', 'in', 'a', 'series', 'of', 'tutorial', 'lectures', 'based', 'on', 'the', 'materials', 'presented', 'during', 'pfm', 'workshop', 'series', '(', 'initiated', 'in', '2', '0', '0', '6', 'at', 'oak', 'ridge', 'national', 'laboratory', ')', ':'], ['(', 'joseph', 'and', 'de', 'neufville', 'had', 'both', 'borrowed', 'privately', 'from', 'other', 'people', ',', 'using', 'the', 'bars', 'as', 'collateral', '.', ')'], ['uss', '``', 'zizania', \"''\", 'was', 'a', 'patrol', 'craft', 'tender', 'that', 'served', 'in', 'the', 'united', 'states', 'navy', 'from', '1', '9', '1', '7', 'to', '1', '9', '1', '9', 'and', 'again', 'as', 'uss', '``', 'adario', \"''\", 'from', '1', '9', '4', '3', 'to', '1', '9', '4', '6', '.'], ['in', '2', '0', '0', '3', ',', 'as', 'was', 'added', 'to', 'the', 'directv', 'lineup', '.'], ['by', 'july', '2', '0', '1', '3', ',', 'the', 'group', 'added', 'the', 'word', '``', 'islamic', \"''\", 'to', 'its', 'name', ',', 'and', 'appeared', 'in', 'a', 'joint', 'statement', 'with', 'isil', 'in', 'front', 'of', 'the', 'latter', \"'s\", 'black', 'standard', '.'], ['he', 'spent', 'his', 'formative', 'years', 'studying', 'metallurgy', 'with', 'his', 'father', 'and', 'was', 'also', 'to', 'become', 'a', 'noted', 'metallurgist', ',', 'though', 'was', 'never', 'to', 'receive', 'full', 'recognition', ',', 'financial', 'or', 'personal', ',', 'for', 'his', 'achievements', '.'], ['at', 'his', 'peak', ',', 'bratton', 'was', 'earning', 'tens', 'of', 'thousands', 'of', 'dollars', 'per', 'fight', ',', 'and', 'he', 'spent', 'lavishly', ',', 'on', 'clothes', ',', 'cars', 'and', 'gambling', '.'], ['the', 'series', 'released', 'approximately', '5', '0', 'volumes', 'in', 'its', 'first', 'four', 'years', 'and', 'the', 'label', 'claims', 'that', 'over', '1', '0', 'million', 'copies', 'were', 'sold', 'by', 'the', 'end', 'of', 'the', '2', '0', 'th', 'century', '.'], ['however', ',', '2', '0', 'seconds', 'of', 'material', 'is', 'missing', 'from', 'episode', '3', ',', 'due', 'to', 'damage', 'to', 'the', 'print', '.'], ['the', 'police', 'removed', 'him', 'from', 'the', 'station', 'and', 'sent', 'him', 'home', 'in', 'a', 'taxi', '.'], ['instead', ',', 'experiments', 'show', 'longer-lasting', 'shocks', 'of', 'a', 'given', 'magnitude', 'produce', 'more', 'material', 'damage', '.'], ['this', 'period', 'of', 'creativity', 'fostered', 'mccarthy', \"'s\", 'general', 'philosophy', 'of', 'anti-elitism', 'in', 'arts', 'and', 'culture', 'and', 'an', 'aversion', 'to', 'academe', ';', 'hence', ',', 'the', 'atypical', 'combination', 'of', 'his', 'occupation', 'of', 'composer', 'and', 'martial', 'artist', '.'], ['tv', 'replays', 'showed', 'that', 'dyer', 'had', 'fumbled', 'the', 'ball', '.'], ['his', 'siblings', 'included', 'thomas', '(', 'born', '1', '8', '5', '4', ')', ',', 'david', 'samuel', '(', 'born', '1', '8', '5', '9', ')', 'and', 'robert', '(', 'born', '1', '8', '6', '0', ')', '.'], ['natural', 'factors', 'included', 'widespread', 'drought', 'in', 'the', 'early', '1', '8', '3', '0', 's', ',', 'and', 'again', 'in', 'the', '1', '8', '4', '0', 's', ',', 'and', 'a', 'food', 'crisis', 'in', 'the', '1', '8', '4', '0', 's', '.'], ['the', 'new', 'lkb', '5', '3', '5', 'traction', 'motors', ',', 'instead', 'of', 'ee', '5', '4', '1', ',', 'are', 'adapted', 'to', 'the', 'higher', 'permissible', 'operating', 'temperature', '.'], ['judge', 'friedman', 'then', 'recused', 'himself', 'from', 'ruling', ',', 'and', 'instead', 'filed', 'a', 'complaint', 'against', 'thompson', 'with', 'the', 'florida', 'bar', ',', 'calling', 'thompson', \"'s\", 'behavior', '``', 'inappropriate', 'by', 'a', 'member', 'of', 'the', 'bar', ',', 'unprofessional', 'and', 'contemptible', \"''\", '.'], ['mhpi', 'addresses', 'two', 'significant', 'problems', 'concerning', 'housing', 'for', 'military-service', 'members', 'and', 'their', 'families', ':', '(', '1', ')', 'the', 'poor', 'condition', 'of', 'housing', 'owned', 'by', 'the', 'u.s.', 'department', 'of', 'defense', '(', 'dod', ')', ',', 'and', '(', '2', ')', 'a', 'shortage', 'of', 'quality', 'affordable', 'private', 'housing', '.'], ['habbo', 'has', 'been', 'a', 'frequent', 'target', 'for', 'organized', 'raids', 'by', 'anonymous', '.'], ['like', 'other', 'new', 'airports', 'in', 'the', 'region', ',', 'it', 'has', 'a', 'structure', 'mainly', 'made', 'of', 'glass', ',', 'with', 'big', 'transparent', 'spaces', 'inside', 'the', 'terminal', '.'], ['he', 'married', 'ilda', 'reis', 'in', '1', '9', '4', '4', '.'], ['the', 'driving', 'force', 'behind', 'the', 'creation', 'of', 'the', 'museum', 'was', 'sergei', 'korolyov', ',', 'chief', 'designer', 'of', 'rkk', 'energiya', '.'], ['in', '1', '9', '6', '6', ',', 'chicago', 'mayor', 'richard', 'j.', 'daley', 'declared', 'the', 'first', 'week', 'of', 'june', 'to', 'be', '``', 'puerto', 'rican', 'week', '.', \"''\"], ['nonetheless', ',', 'they', 'may', 'produce', 'larger', 'cones', 'further', 'out', 'at', 'sea', ',', 'where', 'the', 'greater', 'depth', 'makes', 'this', 'possible', '.'], ['he', 'made', 'his', 'professional', 'debut', 'for', 'the', 'club', 'in', 'may', '2', '0', '1', '4', 'and', 'went', 'on', 'to', 'make', '1', '4', '1', 'appearances', 'in', 'five', 'years', 'with', 'the', 'u', \"'s\", '.'], ['according', 'to', 'genocide', 'studies', 'and', 'prevention', 'professor', 'gregory', 'stanton', ',', '``', 'early', 'warnings', 'of', 'genocide', 'are', 'still', 'deep', 'in', 'south', 'african', 'society', ',', 'though', 'genocide', 'has', 'not', 'begun', \"''\", '.'], ['while', 'other', 'maps', 'have', 'been', 'attributed', 'to', 'him', ',', 'their', 'origins', 'are', 'contested', 'by', 'historians', '.'], ['it', 'was', 'an', 'event', 'to', 'forget', 'for', 'defending', 'champion', 'nasser', 'al-attiyah', '.'], ['the', 'site', 'comprises', 'a', 'mixture', 'of', 'flower', 'rich', 'grassland', ',', 'scrub', 'and', 'mature', 'hedgerows', '.'], ['born', 'in', 'ipoh', 'in', '1', '9', '7', '2', ',', 'santhara', 'vello', 'first', 'played', 'for', 'malaysia', 'in', 'the', '1', '9', '9', '4', 'icc', 'trophy', 'in', 'nairobi', ',', 'playing', 'three', 'games', 'in', 'the', 'tournament', '.'], ['hall', 'eventually', 'left', 'bohemia', 'in', '2', '0', '1', '4', ',', 'and', 'the', 'game', 'remained', 'in', 'early', 'access', 'more', 'than', 'five', 'years', 'after', 'its', 'release', 'in', 'december', '2', '0', '1', '3', 'with', 'a', 'final', 'alpha', 'release', 'in', 'december', '2', '0', '1', '8', '.'], ['on', 'metacritic', ',', 'which', 'assigns', 'normalized', 'ratings', 'to', 'reviews', ',', 'the', 'film', 'has', 'a', 'weighted', 'average', 'score', 'of', '8', '2', 'out', 'of', '1', '0', '0', ',', 'based', 'on', '5', '5', 'critics', ',', 'indicating', '``', 'universal', 'acclaim', '.', \"''\"], ['following', 'the', 'release', ',', '``', 'ez', 'do', 'dance', \"''\", 'has', 'continued', 'to', 'be', 'featured', 'in', 'the', '``', 'pretty', 'rhythm', \"''\", 'franchise', ',', 'especially', 'in', 'the', '``', 'king', 'of', 'prism', \"''\", 'spin-offs', '.'], ['cobb', 'was', 'mortally', 'wounded', 'in', 'the', 'battle', ',', 'and', 'wofford', 'assumed', 'command', 'of', 'his', 'brigade', 'and', 'was', 'promoted', 'to', 'brigadier', 'general', 'on', 'january', '1', '7', ',', '1', '8', '6', '3', '.'], ['takahashi', 'rebounded', 'with', 'a', 'submission', 'victory', 'over', 'american', 'fighter', 'emma', 'bush', '(', 'at', 'the', 'time', 'emma', 'nielsen', ')', 'with', 'a', 'leg', 'armbar', 'in', 'the', 'first', 'round', 'at', '``', 'smackgirl', ':', 'korea', '2', '0', '0', '5', '``', 'on', '.'], ['in', 'january', '1', '7', '6', '0', ',', 'he', 'left', 'corsica', 'for', 'germany', ',', 'joining', 'marshal', 'broglie', \"'s\", 'army', 'on', '1', 'april', '.'], ['on', '2', '1', 'may', '1', '9', '5', '6', 'as', 'a', 'pop', 'singer', 'and', 'on', '2', '3', 'november', '1', '9', '7', '0', 'as', 'a', 'tenor', '.'], ['the', '``', 'escadrille', \"''\", 'left', '``', 'gc', '1', '2', '``', 'on', '1', '8', 'january', '1', '9', '1', '8', ',', 'being', 'replaced', 'by', '``', 'escadrille', 'spa', '.', '6', '7', '``', '.'], ['country', 'gazette', 'went', 'on', 'to', 'record', 'their', 'first', 'album', '``', 'traitor', 'in', 'our', 'midst', \"''\", 'in', '1', '9', '7', '2', '.'], ['since', '2', '0', '0', '1', ',', 'he', 'has', 'documented', 'conflicts', 'for', 'getty', 'images', 'in', 'the', 'republic', 'of', 'congo', ',', 'afghanistan', ',', 'liberia', ',', 'iraq', ',', 'ukraine', 'and', 'many', 'other', 'countries', '.'], ['a', 'small', 'cadre', 'of', 'regulars', 'remained', ',', 'but', 'as', 'henderson', ',', 'green', ',', 'and', 'cook', 'say', ',', \"'the\", 'coastal', 'artillery', 'had', 'quietly', 'died', '.', \"'\"], ['the', 'worship', 'at', 'st', 'barnabas', 'is', 'in', 'the', 'catholic', 'tradition', 'of', 'the', 'church', 'of', 'england', '.'], ['carlos', 'gómez', 'is', 'the', 'only', 'brewer', 'to', 'win', 'the', 'award', 'twice', '.'], ['the', 'nome', 'king', '(', 'who', 'has', 'recovered', 'from', 'having', 'drunk', 'the', 'water', 'of', 'oblivion', 'in', 'the', 'emerald', 'city', 'of', 'oz', ')', 'is', 'aghast', 'at', 'this', 'group', 'coming', 'toward', 'his', 'underground', 'kingdom', '.'], ['modern', 'lines', 'with', 'stylistic', 'elements', 'of', 'the', '2', '0', 'th', 'century', 'intended', 'to', 'shape', 'the', 'motorcycle', '.'], ['the', 'national', 'hurricane', 'center', '(', 'nhc', ')', 'began', 'monitoring', 'the', 'system', 'for', 'long-term', 'cyclogenesis', 'on', 'october', '1', '3', ',', 'at', 'which', 'time', 'the', 'low', 'was', 'situated', '1', '5', '0', 'mi', '(', '2', '4', '0', 'km', ')', 'south', 'of', 'guatemala', '.'], ['as', 'the', 'wave', 'of', 'discontent', 'in', 'the', 'south', 'rose', ',', 'the', 'party', \"'s\", 'regional', 'committee', 'for', 'cochin', 'china', 'attempted', 'to', 'ride', 'the', 'crest', ',', 'concentrating', 'its', 'propaganda', 'on', 'peasants', 'and', 'newly', 'drafted', 'vietnamese', 'troops', '.'], ['night', 'bombing', 'began', 'in', 'world', 'war', 'i', 'and', 'was', 'widespread', 'during', 'world', 'war', 'ii', '.'], ['consequently', ',', 'until', '2', '0', '0', '5', ',', 'women', 'worked', 'only', 'as', 'doctors', ',', 'nurses', ',', 'teachers', ',', 'women', \"'s\", 'banks', ',', 'or', 'in', 'a', 'few', 'other', 'special', 'situations', 'where', 'they', 'had', 'contact', 'only', 'with', 'women', '.'], ['after', 'his', 'retirement', 'as', 'a', 'player', ',', 'zito', 'remained', 'at', 'santos', 'as', 'a', 'director', 'and', 'youth', 'coordinator', ',', 'developing', 'several', 'young', 'future', 'international', 'players', '.'], ['the', 'flower', 'mart', 'is', 'held', 'each', 'year', 'at', 'the', 'beginning', 'of', 'may', '.'], ['eli', 'gras', 'often', 'shares', 'her', 'knowledge', 'and', 'small', 'discoveries', ',', 'sounds', 'and', 'processes', 'with', 'everyone', 'who', 'feel', 'interest', 'for', ',', 'allowing', 'the', 'audience', 'attending', 'her', 'concerts', 'to', 'play', 'her', 'instruments', ',', 'apart', 'from', 'the', 'workshops', ',', 'didactic', 'talks', 'and', 'exhibitions', '.'], ['energy', '4', 'me', 'educates', 'thousands', 'of', 'children', 'and', 'teachers', 'globally', '.'], ['biziou', 'then', 'trained', 'as', 'a', 'pilot', ',', 'including', 'the', 'course', 'at', 'the', 'school', 'of', 'special', 'flying', 'at', 'gosport', '.'], ['``', 'climbing', 'high', \"''\", 'is', 'an', 'account', 'of', 'gammelgaard', \"'s\", 'experiences', 'and', 'memories', 'while', 'climbing', 'mount', 'everest', '.'], ['he', 'has', 'worked', 'in', 'the', 'fields', 'of', 'operator', 'theory', ',', 'hilbert', 'space', 'operators', ',', 'control', 'theory', ',', 'algebraic', 'geometry', ',', 'and', 'noncommutative', 'computer', 'algebra', 'during', 'his', 'career', '.'], ['one', 'day', 'nina', 'went', 'to', 'work', 'and', 'never', 'came', 'back', ';', 'she', 'was', 'sent', 'to', 'lake', 'ladoga', 'and', 'then', 'urgently', 'evacuated', '.'], ['the', 'average', 'household', 'size', 'was', '2', '.', '3', '3', 'and', 'the', 'average', 'family', 'size', 'was', '2', '.', '8', '0', '.'], ['after', 'his', 'death', ',', 'his', 'nephew', 'sir', 'ralph', 'de', 'sandwich', 'was', 'made', 'administrator', 'of', 'the', 'see', 'of', 'london', ',', 'having', 'already', 'acted', 'as', 'their', 'administrator', 'during', 'henry', \"'s\", 'exile', 'in', 'rome', '.'], ['during', 'his', 'time', 'with', 'juventus', ',', 'he', 'won', 'the', 'croatian', 'player', 'of', 'the', 'year', 'award', 'in', '2', '0', '0', '2', '.'], ['netechma', 'niveonigra', 'is', 'a', 'species', 'of', 'moth', 'of', 'the', 'family', 'tortricidae', '.'], ['fame', 'has', 'been', 'supporting', 'the', 'fashion', 'industry', 'at', 'the', 'grassroots', 'level', 'since', 'inception', '.'], ['the', 'southern', 'border', 'of', 'the', 'park', 'starts', 'at', 'kebbetigollewa', 'horowpothana', 'on', 'the', 'a', '2', '9', 'road', 'while', 'its', 'western', 'border', 'is', 'located', 'next', 'to', 'the', 'welimuwapothanna', 'wewa', '.'], ['as', 'much', 'as', '1', '2', '0', 'db', 'of', 'leakage', 'rejection', 'is', 'required', 'to', 'achieve', 'acceptable', 'performance', '.'], ['he', 'died', 'aged', '2', '4', 'of', 'the', 'wounds', 'he', 'had', 'received', 'in', 'holland', '(', '1', '9', 'december', '1', '9', '0', '1', ')', '.'], ['2', '0', \"'s\", 'five', 'trustees', '(', 'as', 'ward', 'medicine', 'hat', ')', '.'], ['clinton', 'refuted', 'the', 'suggestion', 'that', 'his', 'speech', 'was', 'a', 'calculated', 'attempt', 'to', 'appeal', 'to', 'moderate', 'and', 'conservative', 'swing', 'voters', 'by', 'standing', 'up', 'to', 'a', 'core', 'democratic', 'constituency', '.'], ['the', 'event', \"'s\", 'title', 'referenced', 'jerry', 'lee', 'lewis', \"'\", 'song', 'of', 'the', 'same', 'name', ',', 'which', 'was', 'used', 'as', 'the', 'event', \"'s\", 'theme', 'song', '.'], ['the', 'linking', 'of', 'commercial', 'networks', 'and', 'enterprises', 'by', 'the', 'early', '1', '9', '9', '0', 's', 'marked', 'the', 'beginning', 'of', 'the', 'transition', 'to', 'the', 'modern', 'internet', ',', 'and', 'generated', 'a', 'sustained', 'exponential', 'growth', 'as', 'generations', 'of', 'institutional', ',', 'personal', ',', 'and', 'mobile', 'computers', 'were', 'connected', 'to', 'the', 'network', '.'], ['he', 'was', 'also', 'invited', 'to', 'perform', 'the', 'opening', 'ceremony', ',', 'and', 'on', '2', 'may', '1', '8', '5', '9', 'he', 'travelled', 'from', 'windsor', 'on', 'the', 'royal', 'train', '.'], ['alternative', ',', 'better', 'numerically', 'behaved', 'equivalent', 'expressions', ',', 'can', 'be', 'found', 'in', 'great-circle', 'navigation', '.'], ['each', 'event', 'begins', 'with', 'a', 'spotlight', 'concert', 'that', 'showcases', 'a', 'number', 'of', 'young', 'musicians', 'from', 'local', 'schools', ',', 'before', 'the', 'main', 'concert', 'featuring', 'professional', 'musicians', '.'], ['an', 'important', 'rice-producing', 'area', ',', 'the', 'main', 'crops', 'are', 'maize', 'and', 'paddy', '.'], ['that', 'year', ',', 'she', 'received', 'a', 'star', 'on', 'the', 'hollywood', 'walk', 'of', 'fame', ',', 'inducted', 'at', '6', '7', '1', '2', 'hollywood', 'boulevard', 'outside', 'grauman', \"'s\", 'egyptian', 'theater', '.'], ['in', 'contrast', ',', 'the', 'c', '1', '-o', '1', 'bond', '[', '1', '4', '1', '.', '1', '5', '(', '1', '3', ')', 'pm', ']', 'is', 'shorter', 'than', 'the', 'average', 'csp', '3', '-oh', 'bond', 'which', 'is', 'about', '1', '4', '3', '.', '2', 'pm', '.'], ['when', 'his', 'fellow', 'criminals', 'turned', 'violent', ',', 'cole', 'intervened', ',', 'saving', 'the', 'life', 'of', 'f.b.i', '.'], ['the', 'vantage', 'gt', '3', 'is', 'the', 'successor', 'of', 'the', 'v', '1', '2', 'vantage', 'gt', '3', '.'], ['majority', 'of', 'the', 'muscles', 'regenerate', 'via', 'the', 'same', 'mechanism', ':', 'dedifferentiated', 'cells', 'from', 'the', 'coelomic', 'body', 'cavity', 'travel', 'towards', 'the', 'regenerating', 'starfish', 'tip', 'before', 're-differentiating', 'into', 'muscle', 'components', '.'], ['carel', 'weight', 'was', 'the', 'professor', 'of', 'painting', 'at', 'the', 'rca', 'and', 'in', 'a', 'catalogue', 'for', 'an', 'exhibition', 'of', 'hogan', \"'s\", 'paintings', 'at', 'the', 'fine', 'art', 'society', 'in', '1', '9', '9', '3', 'he', 'wrote', ':'], ['it', 'has', 'been', 'considered', 'the', '``', 'magnum', 'opus', \"''\", 'of', 'its', 'author', ',', 'frederic', 'moore', ',', 'assistant', 'curator', 'at', 'the', 'museum', 'of', 'the', 'east', 'india', 'company', '.'], ['the', 'title', 'track', ',', '``', 'drifter', \"''\", ',', 'was', ',', 'interestingly', ',', 'also', 'recorded', 'on', 'another', 'guitar', 'purchased', 'cheaply', 'at', 'a', 'boot', 'fair', '.'], ['at', 'the', 'time', 'of', 'his', 'death', ',', 'it', 'was', 'announced', 'that', 'raksin', 'had', 'completed', 'his', 'autobiography', ',', 'titled', '``', 'if', 'i', 'say', 'so', 'myself', \"''\", '.'], ['the', 'croatian', 'democratic', 'union', '(', 'or', 'hdz', ',', 'literally', 'croatian', 'democratic', 'community', ')', 'is', 'the', 'major', 'conservative', ',', 'centre-right', 'political', 'party', 'in', 'croatia', '.'], ['gertrude', 'aretz', 'née', 'kuntze-dolton', '(', '1', '8', '8', '9', '-', '1', '9', '3', '8', ')', 'was', 'a', 'german', 'historian', 'and', 'publisher', '.'], ['this', '``', 'tactics', \"''\", 'system', 'is', 'seen', 'as', 'a', 'precursor', 'to', '``', 'final', 'fantasy', 'xii', \"''\", \"'s\", '``', 'gambits', \"''\", 'system', '.'], ['he', 'does', 'everything', 'he', 'can', 'to', 'bring', 'the', 'real', 'darla', 'to', 'the', 'fore', 'and', 'with', 'some', 'persuasion', ',', 'she', 'does', '.'], ['in', 'the', 'summer', 'of', '1', '9', '5', '7', ',', 'he', 'recorded', 'his', 'own', 'version', 'of', '``', 'honeycomb', \"''\", ',', 'which', 'had', 'been', 'written', 'by', 'bob', 'merrill', 'and', 'recorded', 'by', 'georgie', 'shaw', 'three', 'years', 'earlier', '.'], ['the', 'scratch', '2', '.', '0', 'offline', 'editor', 'could', 'be', 'downloaded', 'for', 'windows', ',', 'mac', 'and', 'linux', 'directly', 'from', 'scratch', \"'s\", 'website', ',', 'although', 'support', 'for', 'linux', 'was', 'later', 'dropped', '.'], ['as', 'a', 'lawyer', 'rogers', 'was', 'in', 'private', 'practice', 'and', 'was', 'elected', 'to', 'serve', 'as', 'commonwealth', \"'s\", 'attorney', 'for', 'pulaski', 'and', 'rockcastle', 'counties', 'in', 'kentucky', ',', 'an', 'office', 'he', 'held', 'from', '1', '9', '6', '9', 'to', 'his', 'election', 'to', 'congress', 'in', '1', '9', '8', '0', '.'], ['he', 'is', 'currently', 'playing', 'with', 'jukurit', 'in', 'the', 'finnish', 'liiga', '.'], ['luçon', '(', ')', 'is', 'a', 'commune', 'in', 'the', 'vendée', 'department', 'in', 'the', 'pays', 'de', 'la', 'loire', 'region', 'in', 'western', 'france', '.'], ['he', 'is', 'older', 'than', 'superman', 'who', 'described', 'him', 'as', '``', 'a', 'force', 'for', 'good', 'in', 'the', 'universe', 'when', 'i', 'was', 'still', 'a', 'super-tot', \"''\", '(', '``', 'superman', \"''\", '#', '3', '7', '5', ',', 'september', '1', '9', '8', '2', ':', '``', 'the', 'stoning', 'of', 'lana', 'lang', \"''\", ')', '.'], ['daniel', 'peter', 'roche', '(', ';', 'born', '1', '4', 'october', '1', '9', '9', '9', ')', 'is', 'an', 'english', 'actor', ',', 'known', 'for', 'playing', 'ben', 'brockman', 'in', 'the', 'bbc', 'one', 'sitcom', '``', 'outnumbered', \"''\", '.'], ['weir', 'was', 'appointed', 'member', 'of', 'the', 'order', 'of', 'the', 'british', 'empire', '(', 'mbe', ')', 'in', 'the', '2', '0', '0', '9', 'new', 'year', 'honours', ',', 'he', 'received', 'the', 'honour', 'for', 'his', 'services', 'to', 'disabled', 'sport', '.'], ['panduwasnuwara', 'divisional', 'secretariat', 'is', 'a', 'divisional', 'secretariat', 'of', 'kurunegala', 'district', ',', 'of', 'north', 'western', 'province', ',', 'sri', 'lanka', '.'], ['since', 'inception', 'it', 'has', 'published', 'the', 'work', 'of', 'over', '2', '0', '0', '0', 'authors', ',', 'and', 'sold', 'books', 'in', 'over', '1', '0', '0', 'countries', '.'], ['during', 'jeezy', \"'s\", 'rap', 'verse', ',', 'jeezy', 'is', 'seen', 'in', 'the', 'middle', 'of', 'a', 'crosshair', ',', 'and', 'explosions', 'occur', 'around', 'rihanna', '.'], ['the', 'opportunity', 'for', 'battuta', 'to', 'leave', 'delhi', 'finally', 'arose', 'in', '1', '3', '4', '1', 'when', 'an', 'embassy', 'arrived', 'from', 'yuan', 'dynasty', 'china', 'asking', 'for', 'permission', 'to', 'rebuild', 'a', 'himalayan', 'buddhist', 'temple', 'popular', 'with', 'chinese', 'pilgrims', '.'], ['colin', 'burns', '(', 'born', 'june', '3', '0', ',', '1', '9', '8', '2', ',', 'in', 'newark', ',', 'delaware', ')', 'is', 'a', 'retired', 'american', 'soccer', 'goalkeeper', 'who', 'last', 'played', 'for', 'sandefjord', 'fotball', '.'], ['phenobarbital', 'was', 'first', 'used', 'in', '1', '9', '1', '2', 'for', 'both', 'its', 'sedative', 'and', 'antiepileptic', 'properties', '.'], ['in', '1', '8', '3', '0', 'jühlke', 'embarked', 'on', 'a', 'more', 'formal', 'training', 'programme', 'at', 'the', 'greifswald', 'botanic', 'garden', 'of', 'the', 'university', 'of', 'greifswald', ',', 'a', 'short', 'distance', 'to', 'the', 'south-east', '.'], ['later', 'the', 'radio', 'changed', 'into', 'b-fm', 'and', 'radio', 'one', 'in', 'the', 'late', '1', '9', '9', '0', 's', '.'], ['his', 'dissolute', 'lifestyle', 'probably', 'contributed', 'to', 'his', 'early', 'death', ',', 'which', 'took', 'place', 'during', 'the', 'night', 'of', '9', 'to', '1', '0', 'march', '1', '5', '2', '6', '.'], ['in', 'this', 'operation', ',', 'the', 'function', 'is', 'applied', 'to', 'the', 'result', 'of', 'applying', 'the', 'function', 'to', '.'], ['the', 'species', 'occupies', 'a', 'range', 'of', 'wooded', 'and', 'forested', 'habitats', 'from', '.'], ['multi-cylinder', 'internal', 'combustion', 'engines', 'have', 'their', 'cylinder', 'banks', 'arranged', 'in', 'different', 'ways', '.'], ['talakona', 'is', 'located', 'in', 'nerabailu', 'village', 'in', 'yerravaripalem', 'mandal', 'of', 'chittoor', 'district', '.'], ['there', 'is', 'little', 'narrative', 'in', 'the', 'game', ',', 'only', 'a', 'brief', 'text', 'prelude', 'located', 'under', '``', 'help', \"''\", 'in', 'the', 'main', 'menu', ',', 'and', 'a', 'few', 'cutscenes', 'after', 'the', 'completion', 'of', 'an', 'episode', '.'], ['although', 'there', 'is', 'some', 'disagreement', 'over', 'the', 'role', 'tesla', 'himself', 'played', 'in', 'the', 'invention', 'of', 'radio', ',', 'sources', 'agree', 'on', 'the', 'importance', 'of', 'his', 'circuit', 'in', 'early', 'radio', 'transmitters', '.'], ['the', 'company', 'also', 'has', 'network', 'affiliates', 'in', 'many', 'cities', ',', 'some', 'of', 'which', 'produce', 'local', 'content', '.'], ['in', 'the', 'south', 'wall', 'there', 'are', 'two', 'windows', 'of', '1', '3', 'th', 'century', 'type', ',', 'and', 'in', 'the', 'eastern', 'end', 'wall', ',', 'which', 'is', 'of', '1', '8', 'th', 'century', 'construction', ',', 'is', 'a', 'large', '1', '4', 'th', 'century', 'window', ',', 'probably', 'from', 'the', 'east', 'end', 'of', 'the', 'demolished', 'presbytery', '.'], ['they', 'were', 'usually', 'about', 'than', 'the', 'sailing', 'vessels', 'so', 'they', 'could', 'carry', 'more', 'nets', 'and', 'catch', 'more', 'fish', '.'], ['the', 'film', 'follows', 'hoffman', \"'s\", '(', \"d'onofrio\", ')', 'relationship', 'with', 'his', 'second', 'wife', 'anita', '(', 'garofalo', ')', 'and', 'their', '``', 'awakening', \"''\", 'and', 'subsequent', 'conversion', 'to', 'an', 'activist', 'life', '.'], ['the', 'willy-brandt', 'house', 'opened', 'on', '1', '8', 'december', '2', '0', '0', '7', ',', 'on', 'what', 'would', 'have', 'been', 'willy', 'brandt', \"'s\", '9', '4', 'th', 'birthday', ',', 'in', 'his', 'home', 'town', 'of', 'lübeck', '.'], ['in', 'geometry', ',', 'the', 'small', 'triambic', 'icosahedron', 'is', 'a', 'star', 'polyhedron', 'composed', 'of', '2', '0', 'intersecting', 'non-regular', 'hexagon', 'faces', '.'], ['march', '1', '6', ',', '2', '0', '1', '3', ':', 'mcdermont', 'was', 'the', 'center', 'of', 'the', 'valley', 'when', 'larry', 'hernandez', 'held', 'an', 'amazing', 'concert', 'this', 'day', '.'], ['med', 'tv', 'first', 'broadcast', 'with', 'a', 'license', 'from', 'independent', 'television', 'commission', '(', 'itc', ')', 'and', 'from', 'satellites', 'of', 'polish', 'telecom', ',', 'until', 'the', 'polish', 'government', 'gave', 'in', 'to', 'turkish', 'demands', 'to', 'ban', 'med', 'tv', '.'], ['with', 'the', 'growth', 'of', 'science', 'fiction', 'studies', 'as', 'an', 'academic', 'discipline', 'as', 'well', 'as', 'a', 'popular', 'media', 'genre', ',', 'a', 'number', 'of', 'libraries', ',', 'museums', ',', 'archives', ',', 'and', 'special', 'collections', 'have', 'been', 'established', 'to', 'collect', 'and', 'organize', 'works', 'of', 'scholarly', 'and', 'historical', 'value', 'in', 'the', 'field', '.'], ['like', 'independent', 'soldiers', ',', 'indian', 'posse', ',', 'united', 'nations', ',', 'bo-gars', ',', 'native', 'syndicate', ',', 'and', 'crazy', 'dragons', ',', 'npf', 'has', 'an', 'interprovincial', 'presence', '.'], ['a', 'systematic', 'review', 'showed', 'a', 'predilection', 'for', 'males', 'and', 'predominance', 'in', 'fourth', 'and', 'fifth', 'decades', 'in', 'life', '.'], ['a', 'completely', 'separate', 'personal', 'rapid', 'transit', 'system', ',', 'the', 'london', 'heathrow', 'terminal', '5', 'prt', ',', 'operates', '``', 'landside', \"''\", 'between', 'the', 'car', 'parks', 'and', 'terminal', '5', '.'], ['he', 'was', 'married', 'in', '2', '0', '0', '8', 'and', 'he', 'has', 'one', 'son', 'who', 'was', 'born', 'in', '2', '0', '1', '2', '.'], ['lewis', 'm.', 'feldstein', 'is', 'the', 'co-chair', 'of', 'the', 'saguaro', 'seminar', 'along', 'with', 'robert', 'd.', 'putnam', 'and', 'was', 'president', 'of', 'the', 'new', 'hampshire', 'charitable', 'foundation', 'until', 'june', '2', '0', '1', '0', '.'], ['this', 'gaelic', 'word', 'shares', 'its', 'ultimate', 'origins', 'with', 'germanic', '``', 'water', \"''\", 'and', 'slavic', '``', 'voda', \"''\", 'of', 'the', 'same', 'meaning', '.'], ['the', 'coin', 'was', 'also', 'made', 'thinner', ',', 'although', 'its', 'dimensions', 'did', 'not', 'change', '.'], ['the', 'principal', 'equipment', 'of', 'the', 'line', 'consists', 'of', '3', '5', 'streetcars', 'built', 'in', '1', '9', '2', '3', '-', '2', '4', 'by', 'the', 'perley', 'thomas', 'car', 'co', '.'], ['following', '2', '0', '1', '8', \"'s\", 'hurricane', 'michael', ',', 'volunteers', 'worked', 'in', 'florida', \"'s\", 'bay', 'and', 'calhoun', 'counties', ',', 'with', 'the', 'majority', 'of', 'work', 'focused', 'in', 'the', 'vicinity', 'of', 'youngstown', ',', 'florida', '.'], ['he', 'was', 'also', 'a', 'two-time', 'all-area', 'and', 'all-conference', 'player', 'of', 'the', 'year', '.'], ['the', 'sociedade', 'brasileira', 'de', 'belas', 'artes', 'sbba', '(', 'brazilian', 'society', 'of', 'fine', 'arts', 'sbba', ')', 'is', 'a', 'public', 'benefit', 'entity', 'that', 'aims', 'to', 'promote', 'and', 'disseminate', 'plastic', 'arts', '.'], ['this', 'prompted', 'a', 'reexamination', 'by', 'amnesty', 'international', ',', 'which', 'had', 'originally', 'promoted', 'an', 'account', 'alleging', 'even', 'greater', 'numbers', 'of', 'babies', 'torn', 'from', 'incubators', 'than', 'the', 'original', 'fake', 'testimony', '.'], ['as', 'long', 'as', 'the', 'universe', 'can', 'be', 'modeled', 'as', 'a', 'pseudo-riemannian', 'manifold', ',', 'a', 'lorentz-invariant', 'frame', 'that', 'abides', 'by', 'special', 'relativity', 'can', 'be', 'defined', 'for', 'a', 'sufficiently', 'small', 'neighborhood', 'of', 'each', 'point', 'in', 'this', 'curved', 'spacetime', '.'], ['coontz', 'is', 'buried', 'in', 'mount', 'olivet', 'cemetery', 'in', 'his', 'native', 'hannibal', ',', 'missouri', '.'], ['in', '1', '9', '8', '9', 'the', 'club', 'won', 'the', 'intermediate', 'football', 'championship', 'and', 'league', 'finals', ',', 'with', 'the', 'team', 'captained', 'by', 'joe', 'carroll', 'and', 'trained', 'by', 'pat', 'curtin', ',', 'with', 'selectors', 'den', \"o'mahony\", 'and', 'seanie', 'piggott', '.'], ['he', 'became', 'deputy', 'crown', 'solicitor', 'in', '1', '9', '2', '1', ',', 'assistant', 'crown', 'solicitor', '(', 'based', 'in', 'canberra', ')', 'in', '1', '9', '2', '7', ',', 'and', 'crown', 'solicitor', 'in', 'december', '1', '9', '3', '6', '.'], ['evangelical', 'protestants', 'also', 'use', 'the', 'term', '``', 'lord', \"'s\", 'supper', \"''\", ',', 'but', 'most', 'do', 'not', 'use', 'the', 'terms', '``', 'eucharist', \"''\", 'or', 'the', 'word', '``', 'holy', \"''\", 'with', 'the', 'name', '``', 'communion', \"''\", '.'], ['it', 'is', 'considered', 'quite', 'realistic', ',', 'though', 'modern', 'safety', 'requirements', 'mean', 'that', 'it', 'accommodates', 'only', '1', ',', '4', '0', '0', 'spectators', 'compared', 'to', 'the', 'original', 'theatre', \"'s\", '3', ',', '0', '0', '0', '.'], ['in', '2', '0', '1', '7', ',', 'the', '4', 'th', 'islamic', 'solidarity', 'games', 'were', 'held', 'in', 'azerbaijan', '.'], ['the', 'dealership', 'is', 'still', 'open', '(', 'as', 'of', '2', '0', '0', '8', ')', ',', 'and', 'it', 'is', 'now', 'the', 'oldest', 'honda', 'and', 'kawasaki', 'dealership', 'in', 'texas', '.'], ['newly', 'flooded', 'phases', 'are', 'carefully', 'monitored', 'for', 'at', 'least', 'one', 'year', 'to', 'ensure', 'that', 'any', 'accumulation', 'of', 'pesticides', 'through', 'the', 'aquatic', 'food', 'web', 'do', 'not', 'present', 'a', 'risk', 'to', 'water', 'birds', '.'], ['according', 'to', 'market', 'research', 'companies', 'frost', '&', 'amp', ';', 'sullivan', 'and', 'gartner', ',', 'netviewer', 'is', 'among', 'the', 'leading', 'european', 'providers', 'of', 'web', 'conferencing', 'software', '.'], ['he', 'was', 'also', 'involved', 'in', 'étienne', 'daho', \"'s\", 'daho', 'show', ',', 'covering', '``', 'i', 'ca', \"n't\", 'escape', 'from', 'you', \"''\", 'as', 'a', 'duet', 'with', 'daho', '.'], ['the', 'video', 'opens', 'as', 'the', 'protagonist', '(', 'rihanna', ')', 'shoots', 'and', 'kills', 'a', 'man', 'while', 'he', 'walks', 'through', 'a', 'busy', 'train', 'station', '.'], ['smetona', 'was', 'exposed', 'to', 'socialist', 'ideas', 'and', 'even', 'read', 'marx', \"'s\", '``', \"''\", ',', 'but', 'resolutely', 'rejected', 'them', '.'], ['according', 'to', 'the', 'population', 'census', 'conducted', 'by', 'the', 'institut', 'national', 'de', 'la', 'statistique', 'benin', 'on', 'february', '1', '5', ',', '2', '0', '0', '2', ',', 'the', 'arrondissement', 'had', 'a', 'total', 'population', 'of', '8', ',', '3', '7', '6', '.'], ['they', 'played', 'the', 'azkena', 'rock', 'festival', 'in', 'spain', 'in', 'june', '2', '0', '1', '0', '.'], ['in', '2', '0', '1', '3', ',', 'schaefer', 'and', 'her', 'postdoctoral', 'advisor', ',', 'dr.', 'paul', 'greengard', ',', 'filed', 'a', 'patent', 'for', 'a', 'therapeutic', 'strategy', 'to', 'treat', 'or', 'reduce', 'the', 'likelihood', 'of', 'seizures', '.'], ['troy', 'scott', 'smith', ',', 'the', 'current', 'head', 'gardener', ',', 'is', 'undertaking', 'a', 'major', 'research', 'project', 'on', 'the', 'history', 'of', 'the', 'white', 'garden', 'with', 'the', 'intention', 'of', 'recreating', 'the', 'original', 'planting', 'scheme', 'in', 'its', 'entirety', '.'], ['at', 'the', 'walbridge', 'road', 'interchange', 'in', 'walbridge', ',', 'ohio', ',', 'i-', '2', '8', '0', 'turns', 'back', 'due', 'north', '.'], ['a', 'forestry', 'and', 'farming', 'village', 'situated', 'some', 'southwest', 'of', 'rouen', ',', 'at', 'the', 'junction', 'of', 'the', 'd', '1', '3', '2', 'and', 'the', 'd', '3', '8', 'roads', '.'], ['the', 'object', ',', 'still', ',', 'was', 'to', 'find', 'the', 'words', 'that', 'fit', 'the', 'clues', 'given', 'by', 'the', 'host', '.'], ['``', 'the', 'geranium', \"''\", 'is', 'an', 'early', 'short', 'story', 'by', 'the', 'american', 'author', 'flannery', \"o'connor\", '.'], ['the', 'first', 'austrian', 'express', 'train', '(', '``', 'schnellzug', \"''\", ')', 'ran', 'in', '1', '8', '5', '7', 'from', 'vienna', 'to', 'trieste', '.'], ['many', 'protestants', 'use', 'the', 'term', '``', 'lord', \"'s\", 'supper', \"''\", ',', 'stating', 'that', 'the', 'term', '``', 'last', \"''\", 'suggests', 'this', 'was', 'one', 'of', 'several', 'meals', 'and', 'not', 'meal', '.'], ['ayokunle', 'was', 're-elected', 'for', 'second', 'term', 'and', 'inaugurated', 'in', 'july', '2', '0', '1', '9', 'alongside', 'his', 'vice', 'president', 'rev', 'dr.', 'caleb', 'ahima', '.'], ['captain', 'atom', \"'s\", 'abilities', 'are', 'largely', 'nuclear', 'in', 'nature', 'and', 'involve', 'tapping', 'into', 'the', 'strong', 'nuclear', 'force', ',', 'the', 'energy', 'that', 'binds', 'protons', 'and', 'neutrons', 'in', 'the', 'nucleus', '.'], ['during', 'the', 'bangladesh', 'liberation', 'war', 'she', 'joined', 'the', 'mass', 'movement', 'among', 'indian', 'bengali', 'artistes', 'to', 'raise', 'money', 'for', 'the', 'millions', 'of', 'refugees', 'who', 'had', 'poured', 'into', 'kolkata', 'and', 'west', 'bengal', 'to', 'escape', 'the', 'fighting', ',', 'and', 'to', 'raise', 'global', 'awareness', 'for', 'the', 'cause', 'of', 'bangladesh', '.'], ['during', 'a', 'shortened', 'training', 'camp', ',', 'bass', 'beat', 'out', 'incumbent', 'placekicker', 'stephen', 'hauschka', 'to', 'gain', 'the', 'starting', 'position', ',', 'with', 'the', 'bills', 'cutting', 'hauschka', 'on', 'august', '2', '7', ',', '2', '0', '2', '0', '.'], ['walker', 'played', 'in', 'the', 'game', 'at', 'prop', 'as', 'penrith', 'trailed', 'at', 'halftime', 'before', 'losing', '1', '8', '-', '1', '4', '.'], ['the', 'jews', ',', '6', '0', 'on', 'average', ',', 'carried', 'out', 'road', 'construction', '.'], ['at', 'an', 'october', '9', ',', '2', '0', '0', '3', 'press', 'conference', 'in', 'new', 'york', 'city', ',', 'holiday', 'inn', 'and', 'nickelodeon', 'announced', 'a', 'partnership', 'and', 'renovation', 'of', 'the', 'hotel', ',', 'which', 'would', 'transform', 'it', 'into', 'the', 'nickelodeon', 'family', 'suites', 'by', 'holiday', 'inn', '.'], ['by', 'the', 'same', 'mechanism', 'it', 'also', 'raises', 'concentrations', 'of', 'beta', 'amyloid', ',', 'the', 'main', 'constituent', 'of', 'senile', 'plaques', '.'], ['later', 'on', ',', 'he', 'would', 'appear', 'with', 'red', 'in', 'the', '``', 'boating', 'tips', \"''\", 'segment', ',', 'where', 'he', 'would', 'give', 'advice', 'or', 'instructions', 'on', 'how', 'to', 'maintain', 'and', 'care', 'for', 'boats', '.'], ['wola', 'otałęska', 'is', 'a', 'village', 'in', 'the', 'administrative', 'district', 'of', 'gmina', 'czermin', ',', 'within', 'mielec', 'county', ',', 'subcarpathian', 'voivodeship', ',', 'in', 'south-eastern', 'poland', '.'], ['the', 'movement', 'bases', 'its', 'commitment', 'on', 'faith', 'in', 'jesus', 'christ', ',', 'the', 'gospel', 'and', 'the', 'social', 'teaching', 'of', 'the', 'catholic', 'church', '.'], ['though', 'the', 'fighting', 'continued', ',', 'the', 'result', 'was', 'now', 'not', 'in', 'doubt', '.'], ['glendotricha', 'is', 'an', 'extinct', 'genus', 'in', 'the', 'superfamily', 'pyraloidea', '.'], ['it', 'is', 'situated', 'on', 'the', 'left', 'bank', 'of', 'the', 'neckar', ',', '1', '8', 'km', 'north', 'of', 'stuttgart', ',', 'and', '4', 'km', 'north', 'of', 'ludwigsburg', '.'], ['finnestad', 'was', 'born', 'on', 'june', '3', '0', ',', '1', '9', '7', '3', 'in', 'bellingham', ',', 'washington', 'to', 'chris', 'and', 'betty', 'finnestad', '.'], ['she', 'was', 'represented', 'as', 'the', 'first', 'female', 'canadian', 'athlete', 'to', 'win', 'and', 'lead', 'a', 'snowboard', 'alpine', 'world', 'cup', '.'], ['it', 'is', 'composed', 'of', 'three', 'villages', ':', 'brădeni', ',', 'retiș', '(', '``', 'retersdorf', \"''\", ';', '``', 'réten', \"''\", ')', 'and', 'țeline', '(', '``', 'woßling', \"''\", ';', '``', 'pusztacelina', \"''\", ')', '.'], ['in', 'front', 'of', 'a', 'crowd', 'of', '1', '4', ',', '3', '9', '5', 'at', 'the', 'sydney', 'cricket', 'ground', 'easts', 'were', 'vying', 'for', 'back-to-back', 'premierships', 'and', 'took', 'on', 'balmain', '.'], ['the', 'largest', 'piece', 'of', 'the', 'holbrook', 'meteorite', 'that', 'has', 'been', 'recovered', 'was', 'found', 'shortly', 'after', '.'], ['bonaduce', 'learned', 'the', 'bass', 'guitar', 'line', 'for', '``', 'does', \"n't\", 'somebody', 'want', 'to', 'be', 'wanted', \"''\", ',', 'stating', 'that', 'although', 'he', 'had', 'no', 'ability', 'to', 'read', 'music', ',', 'the', 'song', 'was', 'relatively', 'easy', 'to', 'learn', ';', 'cassidy', 'and', 'bonaduce', 'subsequently', 'performed', 'together', 'on', 'rare', 'occasions', '.'], ['on', '5', 'november', 'džomba', 'and', 'colleague', 'petar', 'metličić', 'scored', 'seven', 'goals', 'for', 'another', 'victory', 'against', 'caja', 'españa', 'ademar', '.'], ['now', ',', 'someone', 'wants', 'to', 'learn', 'the', 'secret', 'of', 'immortality', 'at', 'any', 'cost', '.'], ['the', 'words', 'are', 'apocryphal', 'and', 'have', 'been', 'around', 'since', '1', '9', '6', '0', 'at', 'least', '.'], ['carolinian', 'has', '9', '5', '%', 'lexical', 'similarity', 'with', 'satawalese', ',', '8', '8', '%', 'with', 'woleaian', 'and', 'puluwatese', ';', '8', '1', '%', 'with', 'mortlockese', ';', '7', '8', '%', 'with', 'chuukese', ',', '7', '4', '%', 'with', 'ulithian', '.'], ['she', 'was', 'buried', 'in', 'the', 'bennett', 'family', 'vault', 'in', 'mount', 'jerome', 'cemetery', 'beside', 'her', 'father', 'and', 'brothers', '.'], ['arusha', 'region', 'is', 'one', 'of', 'tanzania', \"'s\", '3', '1', 'administrative', 'regions', '.'], ['terminal', 'risk', 'management', 'checks', 'the', 'transaction', 'amount', 'against', 'an', 'offline', 'ceiling', 'limit', '(', 'above', 'which', 'transactions', 'should', 'be', 'processed', 'on-line', ')', '.'], ['it', 'ran', 'to', 'silver', 'jubilee', 'at', 'mumbai', 'and', 'at', 'other', 'centers', '.'], ['the', 'question', 'of', 'what', 'caused', 'malaria', 'and', 'how', 'it', 'was', 'transmitted', 'did', 'not', 'escape', 'his', 'attention', '.'], ['it', 'was', 'designed', 'by', 'architect', 'j.', 'j.', 'baldwin', 'and', 'completed', 'in', '1', '9', '2', '0', '.'], ['though', 'she', 'was', 'torpedoed', 'twice', ',', '``', 'saratoga', \"''\", 'survived', 'the', 'war', ',', 'and', 'was', 'destroyed', 'as', 'a', 'target', 'ship', 'during', 'operation', 'crossroads', ',', 'a', 'series', 'of', 'atomic', 'bomb', 'tests', 'at', 'bikini', 'atoll', 'in', 'mid-', '1', '9', '4', '6', '.'], ['underwood', 'gave', 'the', 'debut', 'televised', 'performance', 'of', 'the', 'song', 'at', 'the', '5', '3', 'rd', 'annual', 'country', 'music', 'association', 'awards', 'in', 'nashville', '.'], ['when', 'mgm', 'inquired', 'into', 'the', 'possibility', 'of', 'making', 'the', 'film', 'in', 'china', ',', 'the', 'chinese', 'government', 'was', 'divided', 'on', 'how', 'to', 'respond', '.'], ['galloway', 'has', 'asserted', 'that', 'he', 'was', 'saluting', 'the', 'iraqi', 'people', 'rather', 'than', 'saddam', 'hussein', 'in', 'the', 'speech', ',', 'which', 'was', 'translated', 'for', 'the', 'iraqi', 'leader', '.'], ['between', 'thirty', 'and', 'forty', 'people', 'were', 'taken', 'to', 'the', 'hospital', 'with', 'moderate', 'injuries', ',', 'while', 'fire-fighters', 'contained', 'the', 'fire', 'that', 'resulted', 'from', 'the', 'crash', '.'], ['espedal', 'is', 'featured', 'in', 'the', '2', '0', '0', '7', 'documentary', 'film', '``', 'true', 'norwegian', 'black', 'metal', \"''\", 'which', 'focused', 'on', 'some', 'aspects', 'of', 'the', 'life', 'of', 'black', 'metal', 'performer', 'kristian', '``', 'gaahl', \"''\", 'espedal', '.'], ['opposition', 'parties', 'strongly', 'criticised', 'the', 'result', 'and', 'stated', 'they', 'were', 'unlikely', 'to', 'accept', 'the', 'legality', 'of', 'the', 'election', '.'], ['in', '1', '9', '2', '7', ',', 'he', 'was', 'elected', 'a', 'full', 'member', 'of', 'the', 'communist', 'academy', ',', 'eventually', 'becoming', 'its', 'vice-president', '.'], ['upon', 'the', 'death', 'of', 'stalin', 'in', '1', '9', '5', '3', ',', 'the', 'lyrics', ',', 'which', 'mentioned', 'him', 'by', 'name', ',', 'were', 'discarded', 'during', 'the', 'process', 'of', 'de-stalinization', 'and', 'the', 'anthem', 'continued', 'to', 'be', 'used', 'without', 'words', '.'], ['in', '2', '0', '0', '3', ',', 'the', 'novel', 'was', 'listed', 'on', 'the', 'bbc', \"'s\", 'the', 'big', 'read', 'poll', 'of', 'the', 'uk', \"'s\", '``', 'best-loved', 'novels', \"''\", '.'], ['australian', 'promoters', 'such', 'as', 'adelaide', \"'s\", 'kym', 'bonython', 'who', 'ran', 'the', 'rowley', 'park', 'speedway', ',', 'and', 'empire', 'speedways', 'who', 'ran', 'the', 'brisbane', 'exhibition', 'ground', 'and', 'the', 'famous', 'sydney', 'showground', 'speedway', ',', 'often', 'imported', 'drivers', 'from', 'the', 'us', ',', 'sus', 'as', 'the', 'popular', 'jimmy', 'davies', '.'], ['the', 'battalion', 'currently', 'provides', 'support', 'to', 'the', 'brigade', 'modernization', 'command', 'and', '1', 'st', 'armored', 'division', 'during', 'the', 'network', 'integration', 'evaluation', '(', 'nie', ')', 'held', 'bi-annually', 'in', 'the', 'spring', 'and', 'fall', 'at', 'fort', 'bliss', ',', 'tx', 'and', 'white', 'sands', 'missile', 'range', ',', 'nm', '.'], ['the', 'median', 'income', 'for', 'a', 'household', 'in', 'the', 'city', 'was', '$', '3', '1', ',', '6', '0', '7', ',', 'and', 'the', 'median', 'income', 'for', 'a', 'family', 'was', '$', '3', '1', ',', '4', '2', '9', '.'], ['that', 'night', ',', 'billy', 'witnesses', 'a', 'drug', 'deal', 'between', 'reno', 'and', 'some', 'mexican', 'men', '.'], ['she', 'contributed', 'a', 'vault', 'score', 'of', '1', '6', '.', '0', '3', '3', 'and', 'a', 'floor', 'score', 'of', '1', '4', '.', '5', '6', '6', 'towards', 'the', 'american', 'team', \"'s\", 'first-place', 'finish', '.'], ['as', 'frost', 'stands', 'around', 'in', 'her', 'diamond', 'state', ',', 'she', 'sees', 'the', 'phoenix', 'force', 'manifest', 'around', 'hope', ',', 'prompting', 'her', 'to', 'remember', 'that', 'the', 'phoenix', 'had', 'told', 'her', 'to', '``', 'prepare', \"''\", '.'], ['bradford', 'is', 'home', 'to', 'five', 'churches', 'which', 'operate', 'within', 'the', 'city', 'limits', 'as', 'of', 'may', '2', '0', '1', '8', '.'], ['it', 'lies', 'approximately', 'east', 'of', 'korycin', ',', 'west', 'of', 'sokółka', ',', 'and', 'north', 'of', 'the', 'regional', 'capital', 'białystok', '.'], ['these', 'have', 'a', 'highly', 'variable', 'exterior', ',', 'ranging', 'from', 'smooth', 'or', 'glossy', 'to', 'sculptured', '.'], ['the', 'campaign', 'against', 'development', 'has', 'blurred', 'some', 'traditional', 'political', 'boundaries', ',', 'with', 'former', 'conservative', 'party', 'resources', 'development', 'minister', 'colin', 'barnett', 'supporting', 'campaigns', 'to', 'save', 'rock', 'art', 'in', 'this', 'area', '.'], ['``', 'made', 'in', 'america', \"''\", 'is', 'chase', \"'s\", '3', '0', 'th', 'and', 'final', 'official', 'writing', 'credit', '(', 'including', 'story', 'credits', ')', 'for', 'the', 'series', 'and', 'his', 'ninth', 'as', 'sole', 'writer', 'of', 'an', 'episode', '.'], ['turner', \"'s\", 'bills', 'itself', 'as', 'america', \"'s\", '#', '1', 'national', 'rifle', 'association', 'retail', 'recruiter', 'and', 'says', 'it', 'also', 'works', 'closely', 'with', 'organizations', 'including', 'safari', 'club', 'international', ',', 'ducks', 'unlimited', ',', 'california', 'waterfowl', 'association', 'and', 'united', 'anglers', 'to', 'help', 'preserve', 'and', 'protect', 'hunting', ',', 'shooting', 'and', 'fishing', 'activities', 'in', 'california', '.'], ['chaucer', 'was', 'then', 'taken', 'into', 'the', 'king', \"'s\", 'household', 'in', '1', '3', '6', '7', 'and', 'began', 'to', 'receive', 'his', 'own', 'annuity', '.'], ['it', 'was', 'originally', 'backed', 'by', 'italian', 'publishers', ',', 'then', 'sold', 'to', 'the', 'new', 'york', 'times', 'magazine', 'group', 'in', '1', '9', '8', '7', '.'], ['it', 'occurs', 'in', 'the', 'open', 'seas', 'of', 'the', 'southern', 'hemisphere', ',', 'mainly', 'between', '5', '8', '°s', 'and', '3', '2', '°s', '.'], ['however', ',', 'in', 'this', '``', 'interview', \"''\", ',', 'he', 'confesses', 'that', 'he', 'regrets', 'his', 'actions', ',', 'and', 'that', 'they', 'were', 'not', 'right', '.'], ['taylor', 'married', 'carol', 'angermeir', 'in', '1', '9', '7', '8', '.'], ['if', 'no', 'conception', 'occurs', ',', 'the', 'uterine', 'lining', 'as', 'well', 'as', 'the', 'egg', 'will', 'be', 'shed', 'during', 'menstruation', '.'], ['she', 'then', 'beat', 'viktoriya', 'dolgacheva', 'to', 'take', 'the', 'russian', 'indoor', 'title', 'with', 'a', 'clearance', 'of', '1', '4', '.', '4', '1', 'm', '.'], ['she', 'has', 'a', '$', '3', '0', 'billion', 'plan', 'intended', 'to', 'revitalize', 'coal', 'communities', 'and', 'aid', 'them', 'in', 'the', 'transition', 'away', 'from', 'coal', '.'], ['the', 'same', 'year', ',', 'he', 'starred', 'in', 'the', 'television', 'series', '``', 'night', 'after', 'night', \"''\", 'alongside', 'kim', 'sun-ah', ',', 'and', 'starred', 'alongside', 'an', 'ensemble', 'cast', 'in', 'the', 'romance', 'film', '``', 'love', 'now', \"''\", '.'], ['depending', 'up', 'on', 'the', 'present', 'network', 'condition', 'the', 'mobile', 'agent', 'chooses', 'its', 'path', '.'], ['on', '9', 'february', ',', 'waititi', 'was', 'ejected', 'from', 'parliamentary', 'proceedings', 'by', 'speaker', 'mallard', 'for', 'refusing', 'to', 'wear', 'a', 'necktie', 'in', 'line', 'with', 'parliament', \"'s\", 'business', 'attire', 'dress', 'core', '.'], ['the', 'united', 'states', 'television', 'manufacturing', 'corporation', ',', 'also', 'known', 'informally', 'as', 'u.s.', 'television', 'manufacturing', ',', 'and', 'in', 'some', 'advertisements', 'as', 'ust', ',', 'was', 'an', 'american', 'television', 'manufacturing', 'and', 'distribution', 'company', 'known', 'for', 'its', 'early', 'large-screen', 'television', 'sets', ',', 'intended', 'for', 'use', 'in', 'bars', 'and', 'other', 'public', 'spaces', '.'], ['bao', 'has', 'been', 'fascinated', 'with', 'acting', 'and', 'drama', 'since', 'he', 'was', 'a', 'child', '.'], ['the', '1', '9', '7', '3', '1', '0', '0', 'rupiah', 'was', 'given', 'an', 'updated', 'reverse', 'design', 'in', '1', '9', '7', '8', ',', 'reading', \"'hutan\", 'untuk', 'kesejahteraan', \"'\", '(', 'forest', 'for', 'welfare', ')', ',', \"'\", '1', '9', '7', '8', \"'\", 'and', 'a', 'motif', 'of', 'the', 'gunungan', 'wayang', '.'], ['desantis', 'sought', 'to', 'have', 'the', '2', '0', '2', '0', 'republican', 'national', 'convention', 'in', 'jacksonville', '.'], ['however', ',', 'the', 'closing', 'of', 'the', 'case', 'could', \"n't\", 'wait', 'anymore', ':', 'edvard', 'beneš', 'wanted', 'to', 'use', 'the', 'failed', 'coup', 'for', 'his', 'anti-hungarian', 'campaign', '.'], ['back', 'in', '1', '9', '0', '5', ',', 'u.s.', 'president', 'william', 'howard', 'taft', 'had', 'held', 'this', 'honorary', 'office', '.'], ['rawson', 'has', 'said', 'that', 'whilst', 'growing', 'up', 'his', 'biggest', 'influences', 'were', 'tupac', 'shakur', ',', 'biggie', ',', 'rakim', ',', 't.i.', ',', 'and', 'jay-z', '.'], ['he', 'was', 'appointed', 'minister', 'of', 'industries', 'and', 'labour', 'by', 'premier', 'ernest', 'manning', 'in', '1', '9', '4', '8', 'and', 'held', 'that', 'post', 'until', 'his', 'death', 'in', '1', '9', '5', '3', '.'], ['additional', 'working', 'groups', 'and', 'sub-working', 'groups', 'were', 'established', 'as', 'needed', 'to', 'achieve', 'the', 'objectives', 'set', 'for', 'by', 'the', 'steering', 'committee', 'in', 'pursuit', 'of', 'the', 'member', 'agreed', 'upon', 'work', 'items', '.'], ['major', 'towns', 'include', 'monduli', ',', 'namanga', ',', 'longido', ',', 'and', 'loliondo', 'to', 'the', 'north', ',', 'mto', 'wa', 'mbu', 'and', 'karatu', 'to', 'the', 'west', ',', 'and', 'usa', 'river', 'to', 'the', 'east', '.'], ['in', 'february', '2', '0', '1', '8', ',', 'after', 'interviewing', 'hisham', 'geneina', ',', 'wadnam', 'was', 'arrested', 'and', 'subsequently', 'disappeared', 'in', 'state', 'custody', '.'], ['he', 'is', 'also', 'the', 'founding', 'director', 'of', 'the', 'institute', 'for', 'social', 'and', 'economic', 'research', 'and', 'policy', ',', 'and', 'co-founding', 'director', 'of', 'columbia', \"'s\", 'oral', 'history', 'master', 'of', 'arts', 'program', ',', 'the', 'first', 'oral', 'history', 'masters', 'program', 'in', 'the', 'country', '.'], ['parel', '(', 'परळ', ')', 'vidhan', 'sabha', 'seat', 'was', 'one', 'of', 'the', 'constituencies', 'of', 'maharashtra', 'legislative', 'assembly', ',', 'in', 'india', '.'], ['qualification', 'methods', 'were', 'the', 'same', 'for', 'both', 'the', 'men', \"'s\", 'and', 'women', \"'s\", 'events', '.'], ['armand', ',', 'meanwhile', ',', 'is', 'assigned', 'to', 'do', 'labor', 'work', 'at', 'the', 'vineyard', 'in', 'chateau', 'valmont', 'where', 'eve', 'recognizes', 'him', '.'], ['the', 'volatile', 'keyword', 'now', 'ensures', 'that', 'multiple', 'threads', 'handle', 'the', 'singleton', 'instance', 'correctly', '.'], ['the', 'english', 'crowd', 'were', 'optimistic', 'about', 'england', \"'s\", 'position', 'and', 'some', 'of', 'them', 'immediately', 'camped', 'outside', 'the', 'turnstiles', 'upon', 'leaving', 'the', 'ground', '.'], ['by', '1', '9', '6', '7', 'tip', 'top', 'tailors', 'had', 'lost', 'its', 'luster', 'and', 'had', 'deteriorated', 'into', '``', 'an', 'old', 'broken-down', 'chain', \"''\", 'according', 'to', 'toronto', 'broker', 'donald', 'tigert', '.'], ['the', 'plan', 'of', 'the', 'seminary', 'was', 'configured', 'in', 'the', 'form', 'of', 'the', 'letter', 'e', ',', 'with', 'courtyards', 'bisecting', 'the', 'wings', '.'], ['his', 'pieces', 'are', 'often', 'sculptural', ',', 'but', 'he', 'also', 'uses', 'video', 'and', 'paintings', '.'], ['women', 'and', 'politics', 'in', 'algeria', 'from', 'the', 'war', 'of', 'independence', 'to', 'our', 'day', 'research', 'in', 'african', 'literatures', '3', '0', '.', '3', '(', '1', '9', '9', '9', ')', '6', '2', '-', '7', '7'], ['since', 'leo', 'ii', 'was', 'too', 'young', 'to', 'rule', 'himself', ',', 'verina', 'and', 'ariadne', 'prevailed', 'upon', 'him', 'to', 'crown', 'zeno', 'as', 'co-emperor', ',', 'which', 'he', 'did', 'on', 'february', '9', ',', '4', '7', '4', '.'], ['the', 'second', 'session', 'determined', 'the', 'starting', 'positions', 'of', 'the', 'top', 'ten', '.'], ['later', 'that', 'year', ',', 'during', 'the', 'northern', 'fall', ',', 'the', 'band', 'toured', 'the', 'united', 'states', 'with', 'born', 'of', 'osiris', ',', 'veil', 'of', 'maya', ',', 'carnifex', 'and', 'structures', '.'], ['the', 'second', 'and', 'third', 'aircraft', 'to', 'be', 'delivered', 'to', 'atlas', 'were', 'both', 'mirage', 'iiiezs', ',', 'following', 'their', 'conversion', 'of', 'the', '``', 'cheetah', 'e', \"''\", 'configuration', ',', 'these', 'aircraft', 'went', 'into', 'service', 'with', '5', 'squadron', 'at', 'afb', 'louis', 'trichardt', '.'], ['the', '2', '0', '1', '6', 'national', 'park', 'service', 'historic', 'properties', 'management', 'report', 'for', 'grand', 'teton', 'national', 'park', 'recommended', 'that', 'the', 'buildings', 'be', 'repaired', ',', 'becoming', 'a', 'visitor', 'destination', 'with', 'interpretive', 'signage', '.'], ['she', 'has', 'created', 'story', 'quilts', ',', 'such', 'as', '``', 'black', 'barbie', \"''\", ',', 'which', 'is', 'in', 'the', 'permanent', 'collection', 'of', 'the', 'fenimore', 'art', 'museum', 'in', 'new', 'york', 'city', '.'], ['between', '1', '9', '6', '6', 'and', '1', '9', '6', '9', 'in', 'plovdiv', 'was', 'assembled', 'the', 'sports', 'car', 'bulgaralpine', 'as', 'a', 'result', 'of', 'the', 'cooperation', 'of', 'alpine', 'and', 'eto', '``', 'bullet', \"''\", '.'], ['state', 'route', '7', '7', '9', '(', 'sr', '7', '7', '9', ')', 'in', 'the', 'u.s.', 'state', 'of', 'virginia', 'is', 'a', 'secondary', 'route', 'designation', 'applied', 'to', 'multiple', 'discontinuous', 'road', 'segments', 'among', 'the', 'many', 'counties', '.'], ['adjacent', 'to', 'the', 'white', 'tower', 'at', 'the', 'southern', 'walls', 'between', 'white', 'and', 'day', 'towers', 'stood', 'the', 'starosta', \"'s\", 'headquarters', '.'], ['in', '2', '0', '1', '0', ',', 'pascal', 'madeleine', 'defended', 'his', 'higher', 'doctoral', 'dissertation', 'and', 'was', 'awarded', 'the', 'danish', 'higher', 'doctoral', 'degree', '.'], ['duterte', 'delivered', 'remarks', 'at', 'mgimo', ',', 'one', 'of', 'russia', \"'s\", 'prestigious', 'schools', 'in', 'the', 'area', 'of', 'diplomacy', 'and', 'international', 'affairs', '.'], ['the', 'court', 'ordered', 'the', 'city', 'to', 'house', 'no', 'more', 'than', '3', '8', 'children', ',', 'ordered', 'a', 'fine', 'of', '$', '1', ',', '0', '0', '0', 'a', 'day', 'for', 'every', 'day', 'the', 'facility', 'held', 'more', 'than', '3', '8', 'children', '.'], ['gibran', \"'s\", 'reported', 'wealth', ',', 'filed', 'in', '2', '0', '2', '0', 'as', 'a', 'prerequisite', 'to', 'run', 'for', 'office', ',', 'was', 'reported', 'at', 'rp', '2', '2', 'billion', '.'], ['most', 'high', 'school', ',', 'little', 'league', ',', 'and', 'recreational', 'ballparks', 'feature', 'dugouts', 'that', 'are', 'at', 'the', 'field', 'level', ',', 'usually', 'separated', 'from', 'the', 'playing', 'field', 'by', 'chain-link', 'fencing', '.'], ['over', 'their', 'history', 'bearings', 'have', 'been', 'made', 'of', 'many', 'materials', 'including', 'ceramic', ',', 'sapphire', ',', 'glass', ',', 'steel', ',', 'bronze', ',', 'other', 'metals', 'and', 'plastic', '(', 'e.g.', ',', 'nylon', ',', 'polyoxymethylene', ',', 'polytetrafluoroethylene', ',', 'and', 'uhmwpe', ')', 'which', 'are', 'all', 'used', 'today', '.'], ['however', ',', 'none', 'of', 'them', 'was', 'ever', 'identified', 'as', '``', 'the', 'air', 'force', 'song', \"''\", '.'], ['willamette', 'industries', 'was', 'one', 'of', 'the', 'largest', 'lumber', 'companies', 'in', 'the', 'world', 'before', 'a', 'hostile', 'takeover', 'by', 'weyerhaeuser', '.'], ['a', 'facelift', 'of', 'the', 'dongfeng', 'fengxing', 'f', '6', '0', '0', 'was', 'revealed', 'in', '2', '0', '1', '8', 'during', 'the', '2', '0', '1', '8', 'beijing', 'auto', 'show', 'with', 'the', 'design', 'work', 'done', 'by', 'pininfarina', '.'], ['she', 'competed', 'at', 'the', '2', '0', '1', '0', 'winter', 'olympics', 'in', 'vancouver', 'in', 'the', 'women', \"'s\", 'parallel', 'giant', 'slalom', 'competition', '.'], ['the', 'foundation', 'originally', 'estimated', 'the', 'technology', 'to', 'be', 'ready', 'for', 'field', 'use', 'by', '2', '0', '2', '9', 'somewhere', 'in', 'africa', '.'], ['the', 'old', 'chicago', 'tv', 'commercial', 'featured', 'an', '1', '8', '-year-old', 'michelle', 'mauthe', 'tap-dancing', 'on', 'top', 'of', 'the', 'dome', 'during', 'high', 'winds', ',', 'while', 'a', 'cameraman', 'filmed', 'from', 'inside', 'a', 'helicopter', '.'], ['the', 'single', 'from', 'the', 'album', ',', '``', 'dreamland', \"''\", ',', 'was', 'a', 'minor', 'hit', '.'], ['upon', 'its', 'completion', ',', 'it', 'was', 'given', 'the', 'name', '``', 'adelphia', 'coliseum', \"''\", 'in', 'a', '1', '5', '-year', ',', '$', '3', '0', 'million', 'naming', 'rights', 'arrangement', 'with', 'adelphia', 'business', 'solutions', ',', 'a', 'subsidiary', 'of', 'the', 'larger', 'adelphia', 'telecommunications', 'company', '.'], ['the', 'virginia', 'arts', 'of', 'the', 'book', 'center', 'was', 'founded', 'in', '1', '9', '9', '5', 'in', 'charlottesville', 'as', 'a', 'public-access', 'book', 'arts', 'workshop', 'providing', 'cooperative', 'use', 'of', 'presses', 'and', 'type', 'for', 'letterpress', 'printing', '.'], ['the', '1', '0', 'th', 'dalai', 'lama', 'mentioned', 'in', 'his', 'biography', 'that', 'he', 'was', 'allowed', 'to', 'use', 'the', 'golden', 'seal', 'of', 'authority', 'based', 'on', 'the', 'convention', 'set', 'up', 'by', 'the', 'late', 'dalai', 'lama', '.'], ['there', 'is', 'no', 'marked', 'path', 'all', 'the', 'way', 'to', 'the', 'top', ',', 'but', 'nevertheless', ',', 'it', 'is', 'quite', 'an', 'easy', 'and', 'worthwhile', 'ascent', '.'], ['it', 'was', 'awarded', 'the', '``', 'booker', 'of', 'bookers', \"''\", 'prize', 'and', 'the', 'best', 'all-time', 'prize', 'winners', 'in', '1', '9', '9', '3', 'and', '2', '0', '0', '8', 'to', 'celebrate', 'the', 'booker', 'prize', '2', '5', 'th', 'and', '4', '0', 'th', 'anniversary', '.'], ['however', ',', 'she', 'does', 'believe', 'her', 'allergy', 'to', 'dogs', 'is', 'psychosomatic', ',', 'as', 'she', 'mentions', 'that', 'a', 'dog', 'bit', 'her', 'during', 'the', 'time', 'of', 'her', 'first', 'period', '.'], ['on', '2', 'february', '1', '9', '2', '2', 'he', 'joined', 'the', 'royal', 'military', 'college', ',', 'sandhurst', '.'], ['on', 'the', 'first', 'two', 'levels', 'of', 'the', 'staircase', 'there', 'are', 'slots', 'in', 'the', 'external', 'wall', 'to', 'admit', 'light', '.'], ['in', 'the', '2', '0', '1', '4', 'election', ',', 'yazdanfar', 'and', 'richardson', 'ran', 'again', ',', 'this', 'time', 'joined', 'by', 'dorian', 'baxter', ',', 'perennial', 'candidate', 'for', 'the', 'progressive', 'canadian', 'party', '.'], ['with', 'the', 'pressure', 'of', 'the', 'crowd', 'after', 'a', 'draw', 'in', 'the', 'choir', 'and', 'various', 'insults', 'to', 'the', 'goalkeeper', ',', 'the', 'weather', 'was', 'unbearable', 'one', 'of', 'the', 'reasons', 'that', 'made', 'the', 'football', 'and', 'athletic', 'chose', 'to', 'amicably', 'terminate', 'the', 'contract', 'on', 'september', '1', ',', '2', '0', '0', '9', '.'], ['hahto', 'then', 'recorded', 'with', 'the', 'band', 'wintersun', 'as', 'a', 'session', 'drummer', 'before', 'joining', 'them', 'as', 'a', 'band', 'member', '.'], ['his', 'music', 'provides', 'him', 'a', 'voice', 'to', 'raise', 'awareness', 'about', 'social', 'oppression', 'and', 'injustice', '.'], ['these', 'heads', 'were', 'cast', 'iron', 'units', 'with', 'new', 'wedge-shaped', 'combustion', 'chambers', 'and', 'high-swirl', 'valve', 'shrouding', '.'], ['paduasoy', 'silk', 'was', 'woven', 'in', 'a', 'variation', 'of', 'the', 'satin', 'weave', ',', 'with', 'bindings', 'arranged', 'to', 'create', 'fine', 'cross-ridges', 'across', 'the', 'fabric', '.'], ['it', 'is', 'located', 'in', 'belgrade', \"'s\", 'municipality', 'of', 'voždovac', '.'], ['in', '2', '0', '1', '1', ',', 'gong', 'acted', 'opposite', 'cha', 'seung-won', 'in', 'the', 'tv', 'series', '``', 'the', 'greatest', 'love', \"''\", '.'], ['in', '1', '9', '4', '7', ',', 'the', 'doj', 'successfully', 'prosecuted', 'elizabeth', 'ingalls', 'for', 'keeping', 'domestic', 'servant', 'dora', 'l.', 'jones', 'in', 'conditions', 'of', 'slavery', '.'], ['ten', 'locomotives', 'were', 'delivered', 'in', '1', '9', '2', '7', ',', 'numbered', 'in', 'the', 'range', 'from', '1', '3', '7', '0', 'to', '1', '3', '7', '9', '.'], ['tudor', 'was', 'the', 'a', '&', 'amp', ';', 'p', 'supermarket', 'chain', \"'s\", 'private', 'label', '.'], ['as', '``', 'sexy', ',', 'sexy', ',', 'sexy', \"''\", 'was', 'released', 'as', 'a', 'single', 'it', 'performed', 'strongly', 'on', 'the', 'mainstream', 'charts', 'of', 'the', 'united', 'states', '.'], ['saint', 'paul', \"'s\", 'lutheran', 'school', 'is', 'a', 'grade', 'school', '(', 'pre-k-', '8', ')', 'of', 'the', 'wisconsin', 'evangelical', 'lutheran', 'synod', 'near', 'mount', 'calvary', '(', 'in', 'the', 'town', 'of', 'forest', ')', '.'], ['in', 'january', '2', '0', '1', '8', ',', 'cuevas', 'barron', 'left', 'the', 'national', 'action', 'party', 'to', 'join', 'the', 'left-wing', 'national', 'regeneration', 'movement', '(', 'morena', ')', 'citing', 'that', 'the', 'objectives', 'of', 'inclusion', ',', 'pluralism', 'and', 'development', 'were', 'not', 'met', '.'], ['they', 'are', 'provided', 'legislative', 'help', 'in', 'drafting', 'private', 'members', 'bills', '.'], ['although', 'the', 'majority', 'of', 'past', 'research', 'has', 'focused', 'on', 'fibrillar', 'aβ', ',', 'soluble', 'oligomeric', 'aβ', 'species', 'are', 'now', 'considered', 'to', 'be', 'of', 'major', 'pathological', 'importance', 'in', 'ad', '.'], ['at', 'the', '2', '0', '1', '0', 'world', 'cup', ',', 'he', 'scored', 'five', 'goals', 'in', 'six', 'appearances', 'as', 'germany', 'finished', 'in', 'third', 'place', '.'], ['as', 'a', 'member', 'of', 'the', 'arcanum', ',', 'doyle', 'has', 'been', 'involved', 'in', 'many', 'occult', 'mysteries', 'and', 'was', 'unhappy', 'when', 'the', 'group', 'disbanded', '.'], ['in', '1', '8', '7', '1', 'he', 'published', 'the', 'solid', 'study', '``', 'das', 'unfehlbare', 'lehrant', 'des', 'papstes', \"''\", '[', 'the', 'infallible', 'magisterium', '(', 'teaching', 'office', ')', 'of', 'the', 'pope', ',', 'passau', ',', '1', '8', '7', '1', ']', '.'], ['in', 'addition', 'to', 'the', 'national', 'deals', ',', 'many', 'clubs', 'had', 'local', 'broadcast', 'deals', '.'], ['james', 'r.', 'eddy', '(', 'born', 'february', '2', '3', ',', '1', '9', '3', '1', ')', 'is', 'a', 'politician', 'in', 'the', 'american', 'state', 'of', 'florida', '.'], ['its', '``', 'gloomscapes', \"''\", 'are', 'considered', 'to', 'be', '``', 'a', 'sonic', 'touchstone', \"''\", 'for', 'the', 'forthcoming', 'movement', '.'], ['u.s.', 'attorney', 'peter', 'smith', 'said', 'hafer', 'lied', 'to', 'federal', 'agents', 'who', 'interviewed', 'her', 'in', 'may', 'about', 'money', 'she', 'secretly', 'took', 'in', 'from', 'a', 'business', 'person', 'referred', 'to', 'in', 'the', 'indictment', 'only', 'as', '``', 'person', '#', '1', '.', \"''\"], ['it', 'advanced', 'its', 'own', 'version', 'of', '``', 'ketuanan', 'melayu', \"''\", 'whereby', '``', 'the', 'politics', 'of', 'this', 'country', 'has', 'been', ',', 'and', 'must', 'remain', 'for', 'the', 'foreseeable', 'future', ',', 'native', '[', 'i.e', '.'], ['elements', 'software', ',', 'formerly', 'known', 'as', 'helveta', ',', 'is', 'a', 'supply', 'chain', 'management', 'software', 'company', 'and', '``', 'provider', 'of', 'technology', 'solutions', 'for', 'the', 'timber', 'industry', \"''\", 'based', 'in', 'abingdon', ',', 'oxfordshire', ',', 'england', '.'], ['meanwhile', ',', 'a', 'basal', 'lamina', 'gradually', 'develops', 'around', 'the', 'forming', 'muscle', 'tissue', 'to', 'separate', 'it', 'from', 'the', 'coelomic', 'cavities', '.'], ['in', '1', '9', '1', '1', 'he', 'designed', 'a', 'propeller-driven', 'sled', 'that', 'is', 'considered', 'to', 'be', 'one', 'of', 'the', 'predecessors', 'of', 'the', 'aerosani', '.'], ['in', 'october', '1', '8', '3', '8', ',', 'donizetti', 'moved', 'to', 'paris', 'vowing', 'never', 'to', 'have', 'dealings', 'with', 'the', 'san', 'carlo', 'again', 'after', 'the', 'king', 'of', 'naples', 'banned', 'the', 'production', 'of', '``', 'poliuto', \"''\", 'on', 'the', 'grounds', 'that', 'such', 'a', 'sacred', 'subject', 'was', 'inappropriate', 'for', 'the', 'stage', '.'], ['the', 'episode', 'is', 'concluded', 'with', 'a', 'scene', 'that', 'echoes', 'the', 'last', 'scene', 'of', 'the', 'previous', 'season', \"'s\", 'finale', '(', '``', 'help', 'me', \"''\", ')', ':', 'house', 'is', 'sitting', 'on', 'his', 'bathroom', 'floor', 'with', 'a', 'bottle', 'of', 'vicodin', 'in', 'his', 'hand', '.'], ['schmidt', 'was', 'the', 'son', 'of', 'george', 'w.', 'schmidt', 'and', 'margaret', 'patterson', 'schmidt', '.'], ['left-wing', 'benoit', 'hamon', 'was', 'designated', 'as', 'the', 'socialist', 'candidate', 'after', 'defeating', 'former', 'prime', 'minister', 'manuel', 'valls', '.'], ['in', '2', '0', '1', '0', ',', 'letsrecycle.com', 'added', 'a', 'youtube', 'account', 'and', 'twitter', 'account', '@', 'letsrecycle', 'the', 'website', 'is', 'published', 'by', 'the', 'environment', 'media', 'group', 'ltd', '.'], ['in', '1', '8', '8', '6', 'riegl', 'accepted', 'a', 'curatorial', 'position', 'at', 'the', 'k.k', '.'], ['on', '1', '9', 'april', ',', '6', ',', '0', '6', '0', 'new', 'cases', 'were', 'confirmed', ',', 'bringing', 'the', 'total', 'number', 'to', '4', '2', ',', '8', '5', '3', '.'], ['the', 'rhenish', 'romanesque', ',', 'for', 'example', 'at', 'limburg', 'cathedral', ',', 'produced', 'works', 'that', 'used', 'coloured', 'surrounds', '.'], ['the', 'race', ',', 'known', 'as', 'the', 'bob', 'jane', 't-marts', '5', '0', '0', ',', 'was', 'won', 'by', 'england', \"'s\", 'steve', 'soper', 'and', 'belgian', 'driver/journalist', 'pierre', 'dieudonné', 'in', 'a', 'ruedi', 'eggenberger', 'built', 'ford', 'sierra', 'rs', '5', '0', '0', '.'], ['shortly', 'after', 'receiving', 'his', 'master', \"'s\", 'degree', 'he', 'joined', 'hawthorn', 'books', 'as', 'an', 'editor', 'and', 'a', 'year', 'later', 'became', 'the', 'american', 'editor', 'of', 'the', '1', '5', '0', '-volume', 'international', 'twentieth', 'century', 'encyclopedia', 'of', 'catholicism', '.'], ['throughout', 'the', 'middle', 'ages', ',', 'white', 'bread', 'was', 'consumed', 'solely', 'by', 'the', 'rich', ',', 'while', 'the', 'common', 'people', 'could', 'only', 'afford', 'black', 'bread', 'and', ',', 'often', ',', 'not', 'even', 'that', '.'], ['the', 'cluster', 'science', 'archive', 'is', 'located', 'alongside', 'all', 'the', 'other', 'esa', 'science', 'archives', 'at', 'the', 'european', 'space', 'astronomy', 'center', ',', 'located', 'near', 'madrid', ',', 'spain', '.'], ['tie-', '1', 'then', 'converts', 'these', 'electrons', 'into', 'energy', 'using', 'carbon', 'dioxide', 'as', 'an', 'electron', 'receptor', '.'], ['the', 'genus', 'was', 'therefore', 'split', 'and', 'a', 'number', 'of', 'species', 'including', 'the', 'yellow-throated', 'seedeater', 'were', 'moved', 'to', 'the', 'resurrected', 'genus', '``', 'crithagra', \"''\", '.'], ['previously', ',', 'the', 'art', 'museum', 'was', 'located', 'in', 'a', 'ground', 'floor', 'of', 'an', 'office', 'building', 'located', 'vesijärvenkatu', '1', '1', '.'], ['this', 'strategy', 'was', 'also', 'applied', 'to', 'obtain', 'analytic', 'solutions', 'to', 'the', 'dirac', 'equation', 'for', 'an', 'infinite', 'square', 'well', '.'], ['he', 'was', 'working', 'as', 'a', 'laboratory', 'assistant', 'to', 'dr.', 'abner', 'croit', ',', 'a', 'physicist', 'hoping', 'to', 'build', 'a', 'device', 'capable', 'of', 'tapping', 'into', 'energies', 'from', 'other', 'dimensions', '.'], ['by', 'time', 'it', 'was', 'extended', 'to', 'its', 'top', 'length', 'of', '2', '3', '3', '.', '5', 'km', 'in', '1', '9', '6', '5', '.'], ['green', 'had', 'urged', 'duncan', 'to', 'run', ',', 'but', 'duncan', \"'s\", 'hawkish', 'statement', 'troubled', 'her', '.'], ['galloway', 'claimed', 'that', 'the', 'subcommittee', \"'s\", 'dossier', 'was', 'full', 'of', 'distortions', 'and', 'rudimentary', 'mistakes', ',', 'citing', ',', 'for', 'example', ',', 'the', 'charge', 'that', 'he', 'had', 'met', 'with', 'saddam', 'hussein', '``', 'many', 'times', \"''\", 'when', 'the', 'number', 'was', 'two', '.'], ['seeing', 'the', 'impossibility', 'of', 'maintaining', 'himself', 'in', 'hanau', ',', 'ramsay', 'agreed', 'to', 'evacuate', 'the', 'city', 'on', 'honourable', 'terms', '.'], ['players', 'will', 'slowly', 'be', 'invited', 'to', 'download', 'a', 'pc', 'version', 'of', 'the', 'game', 'during', 'its', 'transition', 'from', 'adobe', 'flash', '.'], ['females', 'spend', 'most', 'of', 'their', 'lives', 'in', 'the', 'tree', 'canopy', ',', 'favouring', 'dense', 'and', 'mature', 'oak', 'woodlands', ',', 'coming', 'down', 'only', 'to', 'lay', 'their', 'eggs', 'on', 'the', 'small', 'willow', 'bushes', 'that', 'grow', 'in', 'clearings', 'and', 'bridleways', '.'], ['the', 'evolution', 'of', 'a', 'spin', 'network', 'over', 'time', 'is', 'called', 'a', 'spin', 'foam', '.'], ['in', '1', '9', '8', '8', ',', 'nibbering', 'was', 'elected', 'as', 'a', 'member', 'of', 'the', 'royal', 'netherlands', 'academy', 'of', 'arts', 'and', 'sciences', '.'], ['alix', 'sets', 'out', 'to', 'expose', 'government', 'corruption', ',', 'and', 'ends', 'up', 'embarking', 'on', 'an', 'international', 'journey', '.'], ['the', 'rn', \"'s\", 'first', 'operational', 'gannet', 'squadron', '(', '8', '2', '6', 'nas', ')', 'was', 'embarked', 'on', '.'], ['beginning', 'with', 'the', 'new', 'york', 'city', 'financial', 'crisis', 'in', 'the', '1', '9', '7', '0', 's', 'and', '1', '9', '8', '0', 's', ',', 'state', 'and', 'local', 'governments', 'began', 'overhauling', 'their', 'financial', 'management', 'systems', '.'], ['this', 'heat', 'are', 'regarded', 'as', 'having', 'predated', 'the', 'genre', 'because', 'of', 'their', 'unique', 'combination', 'of', 'avant-prog', ',', 'krautrock', ',', 'and', 'industrial', 'music', 'their', 'music', 'has', 'been', 'compared', 'directly', 'to', 'slint', ',', 'swans', 'and', 'stereolab', '.'], ['such', 'permutations', 'have', 'been', 'called', '``', 'discordant', 'permutations', \"''\", '.'], ['the', '2', '0', '0', '4', 'us', 'dvd', 'release', 'by', 'miramax', 'films', 'deleted', '2', '3', 'minutes', 'of', 'footage', 'from', 'the', 'original', 'cut', ';', 'the', 'omitted', 'footage', 'includes', '``', 'golden', 'leg', \"''\", 'fung', \"'s\", 'flashback', 'opening', 'sequence', 'and', 'sing', \"'s\", 'interactions', 'with', 'mui', '.'], ['she', 'accused', 'the', 'german', 'catholic', 'scouting', 'association', 'of', 'saint', 'george', 'of', 'allowing', 'alcohol', 'and', 'promoting', 'the', 'use', 'of', 'condoms', 'to', 'prevent', 'the', 'spread', 'of', 'aids', ',', 'which', 'she', 'called', '``', 'propaganda', 'from', 'the', 'gay', 'lobby', \"''\", '.'], ['``', 'in', 'my', 'life', \"''\", 'is', 'rock', 'song', 'by', 'australian', 'band', 'divinyls', '.'], ['he', 'was', 'the', 'son', 'of', 'alexander', 'mccormick', ',', 'a', 'fur', 'trader', 'in', 'the', 'ohio', 'country', ',', 'and', 'elizabeth', 'turner', '.'], ['4', 'for', 'saxophone', 'and', 'winds', \"''\", 'inspired', 'by', 'the', 'music', 'of', 'the', 'funk', 'group', 'tower', 'of', 'power', '.'], ['between', '2', '0', '0', '2', 'and', '2', '0', '0', '5', ',', 'the', 'tax', 'raised', '$', '7', '1', 'million', '.'], ['in', 'addition', 'to', 'her', 'work', 'in', 'the', 'senate', ',', 'durrieu', 'served', 'as', 'member', 'of', 'the', 'french', 'delegation', 'to', 'the', 'parliamentary', 'assembly', 'of', 'the', 'council', 'of', 'europe', 'from', '1', '9', '9', '2', 'until', '2', '0', '1', '7', '.'], ['he', 'was', 'associated', 'with', 'a', 'dallas-based', 'private', 'equity', 'firm', ',', 'best', 'merchant', 'partners', ',', 'where', 'he', 'helped', 'to', 'develop', 'two', 'major', 'for-profit', 'educational', 'initiatives', ',', 'the', 'american', 'college', 'of', 'education', 'in', 'chicago', ',', 'illinois', ',', 'and', 'bogota', 'community', 'college', 'in', 'bogota', ',', 'colombia', '.'], ['john', 'degenkolb', '(', ')', ',', 'who', 'had', 'come', 'third', 'and', 'won', 'a', 'one-second', 'bonus', 'in', 'the', 'first', 'sprint', ',', 'took', 'second', 'place', 'in', 'the', 'second', 'sprint', 'ahead', 'of', 'michael', 'matthews', '(', ')', '.'], ['the', 'album', 'was', 'nominated', 'for', 'the', 'latin', 'grammy', 'award', 'for', 'best', 'urban', 'music', 'album', 'in', '2', '0', '1', '2', '.'], ['in', 'particular', 'the', 'data', 'indicates', 'that', 'clothing', 'and', 'household', 'linens', 'are', 'a', 'risk', 'factor', 'for', 'spread', 'of', 's.', 'aureus', '(', 'including', 'mrsa', 'and', 'pvl-producing', 'mrsa', 'strains', ')', ',', 'and', 'that', 'effectiveness', 'of', 'laundry', 'processes', 'may', 'be', 'an', 'important', 'factor', 'in', 'defining', 'the', 'rate', 'of', 'community', 'spread', 'of', 'these', 'strains', '.'], ['this', 'group', 'brought', 'with', 'them', 'a', 'long', 'memorial', 'to', 'summarize', 'the', 'abuses', 'the', 'colony', 'had', 'endured', 'from', 'the', 'spanish', '.'], ['in', 'the', 'courtyard', 'along', 'the', 'southern', 'walls', 'between', 'kovpak', 'and', 'tenchynska', 'towers', 'were', 'a', 'granary', 'and', 'cart', 'shed', '.'], ['in', 'the', 'end', ',', 'she', 'decides', 'to', 'follow', 'her', 'heart', ',', 'when', 'she', 'is', 'attacked', 'by', 'a', 'stranger', 'and', 'rescued', 'by', 'no', 'other', 'than', 'hannes', \"'\", 'mother', 'tanja', '.'], ['these', 'are', 'termed', 'nonisolated', 'singularities', ',', 'of', 'which', 'there', 'are', 'two', 'types', ':'], ['development', 'of', 'the', 'city', 'connected', 'with', 'the', 'rapid', 'growth', 'of', 'the', 'population', 'required', 'a', 'new', 'church', ';', 'the', 'rebuilding', 'began', 'sometime', 'in', 'the', 'first', 'half', 'of', 'the', 'fourteenth', 'century', '(', 'about', '1', '3', '2', '0', ')', '.'], ['an', 'interview', 'with', 'nicol', 'implied', 'that', 'marsh', 'was', 'moving', 'in', 'a', 'different', 'direction', ',', 'specifically', 'appearing', 'to', 'refer', 'to', 'a', 'growing', 'collaboration', 'between', 'marsh', 'and', 'burgess', '.'], ['english', 'translations', 'were', 'soon', 'produced', 'and', 'were', 'made', 'official', 'for', 'their', 'territories', 'by', 'the', 'competent', 'episcopal', 'conferences', '.'], ['this', 'was', 'claimed', 'to', 'be', 'a', 'turning', 'point', 'in', 'the', 'rise', 'of', 'the', 'cowboys', 'to', 'the', 'nfl', \"'s\", 'top', 'echelon', '.'], ['mannosylglycerate', 'synthase', '(', ')', 'is', 'an', 'enzyme', 'with', 'systematic', 'name', '``', 'gdp-mannose', ':', 'd-glycerate', '2', '-alpha-d-mannosyltransferase', \"''\", '.'], ['the', 'complex', 'roofscape', 'is', 'variously', 'composed', 'of', 'mansard', 'and', 'jerkinhead', 'forms', 'and', 'clad', 'with', 'slate', ',', 'however', 'original', 'cast', 'iron', 'cresting', 'has', 'been', 'removed', '.'], ['the', 'parameter', 'formula_', '4', 'is', 'assumed', 'to', 'lie', 'in', 'the', 'interval', 'formula_', '5', ',', 'in', 'which', 'case', 'formula_', '2', 'is', 'bounded', 'on', 'formula_', '7', '.'], ['the', 'original', 'theatre', 'was', 'built', 'in', '1', '5', '9', '9', ',', 'destroyed', 'by', 'the', 'fire', 'in', '1', '6', '1', '3', ',', 'rebuilt', 'in', '1', '6', '1', '4', ',', 'and', 'then', 'demolished', 'in', '1', '6', '4', '4', '.'], ['the', 'first', 'known', 'christmas', 'hymns', 'may', 'be', 'traced', 'to', '4', 'th-century', 'rome', '.'], ['it', 'is', 'an', 'isohedron', ',', 'meaning', 'that', 'all', 'of', 'its', 'faces', 'are', 'symmetric', 'to', 'each', 'other', ',', 'and', 'branko', 'grünbaum', 'has', 'conjectured', 'that', 'it', 'is', 'the', 'only', 'euclidean', 'isohedron', 'with', 'faces', 'of', 'six', 'or', 'more', 'sides', '.'], ['that', 'recording', 'included', 'lee', \"'s\", 'first', 'published', 'hawaiian', 'composition', ',', '``', 'nā', 'nalu', 'ha', \"'\", 'i', 'o', \"mā'ili\", \"''\", ',', 'which', 'was', 'written', 'with', 'the', 'assistance', 'of', 'hailama', 'farden', 'and', 'dedicated', 'to', 'lee', \"'s\", 'brothers', ',', 'who', 'loved', 'to', 'surf', 'the', 'waves', 'of', \"mā'ili\", '.'], ['this', 'decision', 'later', 'proved', 'extremely', 'costly', 'for', 'new', 'zealand', 'because', 'australia', 'only', 'just', 'narrowly', 'escaped', 'with', 'a', 'draw', 'in', 'the', 'game', '.'], ['the', 'median', 'income', 'for', 'a', 'household', 'in', 'the', 'cdp', 'was', '$', '2', '4', ',', '8', '7', '5', ',', 'and', 'the', 'median', 'income', 'for', 'a', 'family', 'was', '$', '3', '1', ',', '5', '0', '5', '.'], ['we', 'also', 'find', 'the', 'name', 'of', '``', 'amorkakij', \"''\", 'for', 'nomuka', 'iki', '.'], ['in', '1', '4', '4', '6', '``', 'altenryet', \"''\", 'is', 'mentioned', 'in', 'writing', '.'], ['the', 'municipality', 'is', 'the', '8', '3', 'rd', 'largest', 'by', 'area', 'out', 'of', 'the', '3', '5', '6', 'municipalities', 'in', 'norway', '.'], ['the', 'last', 'cruiser', 'in', 'the', 'american', 'column', ',', '``', 'northampton', \"''\", ',', 'followed', '``', 'honolulu', \"''\", 'to', 'pass', 'the', 'damaged', 'cruisers', 'ahead', 'to', 'starboard', '.'], ['two', 'of', 'the', 'nine', 'submitted', 'remixes', ':', 'the', 'inertia', 'remix', 'and', 'ckb', 'remix', ',', 'were', 'included', 'as', 'bonus', 'tracks', 'on', 'the', 'deluxe', 'edition', 'of', 'the', 'album', '.'], ['the', 'first', 'flower', 'mart', 'was', 'held', 'in', '1', '9', '1', '1', 'in', 'mount', 'vernon', 'place', 'around', 'the', 'washington', 'monument', ',', 'in', 'the', 'mount', 'vernon', 'area', 'of', 'baltimore', ',', 'md', '.'], ['spader', 'is', 'closely', 'followed', 'by', 'william', 'shatner', ',', 'who', 'received', 'a', 'total', 'of', '1', '4', 'nominations', ',', 'winning', '3', 'awards', 'as', 'well', '.'], ['the', 'disorder', 'has', 'been', 'identified', 'in', 'approximately', '3', '5', '0', 'families', ',', 'with', 'a', 'significant', 'proportion', 'being', 'consanguineous', 'families', '.'], ['pandavani', 'can', 'be', 'understood', 'as', 'a', 'part', 'of', 'the', 'tradition', 'of', 'the', 'tellers-of-tales', 'present', 'in', 'every', 'culture', 'or', 'tradition', '(', 'like', 'baul', 'singers', 'of', 'bengal', 'and', 'kathak', 'performers', ')', ',', 'where', 'ancient', 'epics', ',', 'anecdotes', 'and', 'stories', 'are', 'recounted', 'or', 're-enacted', 'to', 'educate', 'and', 'entertain', 'the', 'masses', '.'], ['on', '3', 'july', '1', '9', '4', '6', ',', 'communist', 'hejiang', 'mobile', 'strike', 'force', 'attacked', 'northward', 'to', 'pursue', 'the', '1', ',', '4', '0', '0', 'strong', 'bandit', 'force', 'that', 'fled', 'to', 'the', 'regions', 'of', 'huachuan', '(', '桦川', ')', 'and', 'fujin', '(', '富锦', ')', 'and', 'joined', 'the', 'local', 'bandits', '.'], ['an', 'estimate', 'in', '2', '0', '0', '9', 'by', 'michael', 'chettleburgh', ',', 'an', 'expert', 'on', 'street', 'gangs', 'who', 'works', 'as', 'a', 'consultant', 'on', 'issues', 'of', 'criminal', 'justice', ',', 'put', 'npf', \"'s\", 'membership', 'between', '6', '0', 'and', '8', '0', '.'], ['the', 'house', 'thinks', 'it', 'over', ',', 'and', 'finally', 'opts', 'to', 'destroy', 'itself', 'rather', 'than', 'live', 'with', 'the', 'simpsons', '.'], ['andik', 'rendika', 'rama', '(', 'born', '1', '6', 'march', '1', '9', '9', '3', ',', 'in', 'gresik', ')', 'is', 'an', 'indonesian', 'professional', 'footballer', 'who', 'plays', 'as', 'a', 'left-back', 'for', 'liga', '1', 'club', 'madura', 'united', '.'], ['on', 'the', 'occasion', 'of', 'the', 'release', 'of', 'sheikh', 'mujibur', 'rahman', ',', 'the', 'imprisoned', 'leader', 'of', 'the', 'new', 'country', 'of', 'bangladesh', ',', 'she', 'released', 'a', 'song', '``', 'bangabandhu', 'tumi', 'phirey', 'ele', \"''\", '.'], ['some', 'researchers', 'support', 'touristic', 'visitation', 'to', 'the', 'archipelago', ',', 'sustaining', 'that', 'the', 'constant', 'presence', 'of', 'people', 'may', 'discourage', 'illegal', 'fishermen', '.'], ['in', 'august', '1', '9', '4', '0', ',', 'the', 'second', 'vienna', 'award', ',', 'arbitrated', 'by', 'germany', 'and', 'italy', ',', 'reassigned', 'the', 'territory', 'of', 'northern', 'transylvania', '(', 'which', 'included', 'hodod', ')', 'from', 'romania', 'to', 'hungary', '.'], ['ting', 'has', 'renewed', 'its', 'network', 'agreement', 'with', 'sprint', 'for', 'an', 'additional', 'year', 'until', 'september', '2', '0', '2', '0', '.'], ['for', 'the', '2', '0', '1', '7', 'spring', 'season', 'one', 'world', 'sports', ',', 'cbs', 'sports', 'network', ',', 'and', 'gol', 'tv', 'did', 'not', 'return', ',', 'but', 'bein', 'sports', 'did', 'return', ',', 'airing', 'a', 'national', 'game', 'of', 'the', 'week', 'featuring', 'at', 'least', 'one', 'appearance', 'by', 'all', 'eight', 'teams', '.'], ['the', 'newly', 'created', 'university', 'acted', 'from', 'the', 'outset', 'as', 'an', 'intellectual', 'center', 'for', 'theology', 'and', 'jurisprudence', 'scholars', 'from', 'throughout', 'the', 'holy', 'roman', 'empire', '.'], ['artemio', 'motta', 'was', 'a', 'catholic', 'priest', ',', 'born', 'in', 'parma', 'into', 'a', 'wealthy', 'family', '.'], ['the', 'police', 'arrive', 'on', 'scene', ',', 'but', 'angel', 'is', 'able', 'to', 'escape', 'without', 'getting', 'captured', '.'], ['kknpp', 'is', 'scheduled', 'to', 'have', 'six', 'vver-', '1', '0', '0', '0', 'reactors', 'built', 'in', 'collaboration', 'with', 'atomstroyexport', ',', 'the', 'russian', 'state', 'company', 'and', 'nuclear', 'power', 'corporation', 'of', 'india', 'limited', '(', 'npcil', ')', ',', 'with', 'an', 'installed', 'capacity', 'of', '6', ',', '0', '0', '0', 'mw', 'of', 'electricity', '.'], ['the', 'corps', 'was', 'first', 'formed', 'as', 'the', '1', '3', '7', 'th', 'rifle', 'corps', 'in', 'late', '1', '9', '4', '5', 'and', 'became', 'the', '4', '3', 'rd', 'rifle', 'corps', '(', 'second', 'formation', ')', 'in', '1', '9', '5', '5', '.'], ['the', 'battalion', 'engineers', ',', 'installs', ',', 'operates', ',', 'maintains', ',', 'and', 'defends', 'network', 'communications', 'in', 'support', 'of', 'combatant', 'commanders', 'and', 'joint', 'force', 'land', 'component', 'commanders', '.'], ['charles', 'kingsley', \"'s\", '``', 'hereward', 'the', 'wake', ':', 'last', 'of', 'the', 'english', \"''\", '(', '1', '8', '6', '6', ')', 'tells', 'the', 'story', 'of', 'hereward', ',', 'the', 'last', 'anglo-saxon', 'holdout', 'against', 'the', 'normans', '.'], ['he', 'later', 'withdrew', 'his', 'candidacy', 'on', '7', 'april', '2', '0', '1', '9', '.'], ['in', '2', '0', '1', '3', '(', 'december', '1', ',', '2', '0', '1', '3', ')', 'eaglerider', 'opened', 'its', 'first', 'master', 'franchise', 'in', 'australia', 'with', 'finedays', 'pty', 'ltd', 'and', 'owners', 'will', 'and', 'santina', 'keith', '.'], ['but', 'it', 'was', 'trang', 'who', 'stole', 'the', 'show', 'to', 'come', 'out', 'to', 'overtake', 'hop', '.'], ['the', 'barbaro', 'stakes', 'is', 'an', 'american', 'thoroughbred', 'horse', 'race', 'once', 'run', 'annually', 'in', 'mid', 'july', 'at', 'delaware', 'park', 'racetrack', 'in', 'stanton', ',', 'delaware', '.'], ['each', 'of', 'the', 'three-member', 'teams', 'are', 'presented', 'with', 'a', 'category', 'containing', 'ten', 'names', '.'], ['he', 'served', 'on', 'and', 'survived', 'its', 'following', 'the', 'battle', 'of', 'midway', '.'], ['given', 'the', 'parties', \"'\", 'failure', 'to', 'agree', 'on', 'a', 'candidate', 'for', 'chief', 'advisor', ',', 'according', 'to', 'the', 'constitution', 'the', 'position', 'devolved', 'to', 'the', 'president', ',', 'iajuddin', 'ahmed', ',', 'serving', 'since', '2', '0', '0', '2', '.'], ['he', 'was', 'listed', 'in', 'serious', ',', 'but', 'not', 'critical', 'condition', '.'], ['foxx', 'was', 'temporarily', 'resuscitated', 'and', 'taken', 'to', 'queen', 'of', 'angels', 'hollywood', 'presbyterian', 'medical', 'center', '.'], ['for', 'the', 'purpose', 'of', 'creating', 'the', 'tiers', ',', 'clubs', 'are', 'ranked', 'based', 'on', 'their', 'domestic', 'league', 'performances', 'and', 'on', 'their', 'qualification', 'for', 'the', 'knockout', 'phases', 'of', 'their', 'championships', '.'], ['vincent', 'p.', 'crawford', '(', 'born', '1', '9', '5', '0', ')', 'is', 'an', 'american', 'economist', '.'], ['lange', 'noted', 'with', 'bitterness', 'that', 'douglas', 'took', 'advantage', 'of', 'the', 'crash', 'to', '``', 'rubbish', \"''\", 'his', 'stated', 'ambitions', 'to', 'have', 'the', 'government', 'focus', 'on', 'social', 'policy', ',', 'and', 'push', 'for', 'more', 'economic', 'reforms', '.'], ['starting', 'in', 'the', 'late', '1', '9', '5', '0', 's', ',', 'the', 'class', 'was', 'also', 'used', 'on', 'the', 'hardanger', 'line', '.'], ['``', 'chicky', \"''\", 'also', 'competed', 'in', 'the', '1', '9', '0', '8', 'summer', 'olympics', '.'], ['a', 'second', 'book', ',', '``', 'true', 'anecdotes', 'of', 'an', 'admiral', \"''\", ',', 'was', 'published', 'in', '1', '9', '3', '4', '.'], ['in', '1', '9', '1', '1', ',', 'he', 'became', 'a', 'consulting', 'neurologist', 'at', 'the', 'hospital', '.'], ['on', '6', 'july', '2', '0', '1', '9', ',', 'nikola', 'mirotić', 'of', 'the', 'milwaukee', 'bucks', 'signed', 'a', 'three-year', 'contract', 'with', 'barcelona', '.'], ['she', 'worked', 'as', 'an', 'assistant', 'editor', 'with', 'zak', 'tucker', 'on', 'the', 'garden', '(', 'harbor', 'pictures', ')', ',', 'previously', 'known', 'as', 'body', '&', 'amp', ';', 'soul', 'by', 'swede', 'films', '.'], ['lambert', 'was', 'born', 'in', 'kuala', 'lumpur', 'to', 'an', 'english', 'father', 'and', 'malaysian', 'mother', '.'], ['an', 'older', 'version', '(', 'before', 'c.', '1', '8', '0', '0', ')', 'was', '1', 'fluid', 'ounces', '.'], ['he', 'had', 'also', 'emailed', 'the', 'anti-defamation', 'league', 'in', 'his', 'own', 'name', 'in', 'late', 'february', '2', '0', '1', '7', ',', 'pointing', 'to', 'his', 'ex-girlfriend', 'as', 'the', 'perpetrator', 'of', 'all', 'of', 'the', 'bomb', 'threats', '.'], ['he', 'subsequently', 'is', 'said', 'to', 'have', 'become', 'professor', 'at', 'turin', '.'], ['government', 'economic', 'priorities', 'are', 'for', 'further', 'strengthening', 'of', 'the', 'tourist', 'and', 'international', 'financial', 'sectors', '.'], ['the', 'regiment', 'was', 'probably', 'stationed', 'on', 'the', 'rhine', 'frontier', 'from', 'an', 'early', 'stage', '.'], ['this', 'chapter', 'mainly', 'focuses', 'on', 'the', 'traditional', 'pharmaceutical', 'and', 'food', 'science', 'applications', 'of', 'rose', 'hips', 'and', 'the', 'essential'], ['they', 'acquired', 'the', 'assets', 'of', 'a', 'small', ',', 'short-lived', 'microbrewery', 'in', 'warehouse', 'on', 'the', 'southern', 'edge', 'of', 'town', '.'], ['it', 'seems', 'the', 'phliasians', 'were', 'insistent', 'that', 'thebe', 'belonged', 'to', 'their', 'asopus', '.'], ['the', 'westinghouse', 'farm', 'engine', 'was', 'said', 'to', 'have', 'a', 'short', ',', 'quick', 'stroke', 'to', 'make', 'it', 'lighter', '.'], ['and', 'only', 'when', 'merlo', 'decides', 'to', 'send', 'the', 'bank', ',', 'campi', 'enters', 'a', 'minute', 'left', 'and', 'stamped', 'a', 'real', 'goal', 'that', 'represents', 'the', 'tie', '3', '-', '3', 'against', 'estudiantes', 'on', 'the', 'hour', '.'], ['but', 'that', 'is', 'a', 'double', 'standard', 'only', 'if', 'it', 'is', 'presumed', 'that', 'those', 'who', 'judge', 'the', 'arguments', 'of', 'both', 'sides', 'in', 'a', 'case', 'are', 'allowed', 'to', 'be', 'as', 'biased', 'as', 'those', 'arguing', 'for', 'each', 'side', '.'], ['jafarian', 'became', 'a', 'permanent', 'member', 'of', 'academy', 'of', 'sciences', 'of', 'iran', 'in', 'june', '2', '0', '1', '8', 'and', 'is', 'currently', 'teaching', 'at', 'the', 'university', 'of', 'tehran', 'with', 'the', 'rank', 'of', 'professor', '.'], ['concluding', 'in', 'a', 'reduction', 'of', '2', '2', 'from', 'the', '8', '0', 'positions', 'in', 'the', 'newsroom', '.'], ['each', 'division', 'is', 'represented', 'on', 'the', 'national', 'executive', 'in', 'a', 'manner', 'broadly', 'proportionate', 'to', 'the', 'membership', 'strength', 'of', 'each', 'division', '.'], ['del', 'barrio', 'worked', 'as', 'a', 'composer', ',', 'orchestrator', ',', 'and', 'keyboard', 'player', 'on', 'stan', 'getz', \"'s\", 'album', '``', 'apasionado', \"''\", '.'], ['under', 'such', 'conditions', 'the', 'bureau', \"'s\", 'survival', 'was', 'only', 'possible', 'through', 'the', 'means', 'of', 'export', '.'], ['it', 'is', 'bounded', 'in', 'the', 'west', 'by', 'talakag', ',', 'northwest', 'by', 'baungon', ',', 'on', 'the', 'north', 'by', 'libona', 'and', 'manolo', 'fortich', ',', 'on', 'the', 'northeast', 'by', 'impasugong', ',', 'on', 'the', 'east', 'by', 'malaybalay', 'city', 'and', 'on', 'the', 'south', 'by', 'lantapan', '.'], ['in', '2', '0', '0', '5', ',', 'tiburon', ',', 'california', ',', 'became', 'the', 'first', 'american', 'city', 'where', 'all', 'restaurants', 'voluntarily', 'cook', 'with', 'trans', 'fat-free', 'oils', '.'], ['on', 'march', '2', '7', ',', '2', '0', '1', '6', ',', 'williams', 'announced', 'on', 'her', 'twitter', 'account', 'that', 'her', 'contract', 'with', 'tna', 'had', 'expired', 'during', 'the', 'pregnancy', '.'], ['vacancies', 'in', 'the', 'fiscal', 'officership', 'or', 'on', 'the', 'board', 'of', 'trustees', 'are', 'filled', 'by', 'the', 'remaining', 'trustees', '.'], ['dubbings', 'made', 'in', 'spain', ',', 'are', 'very', 'particularly', 'localized', '.'], ['both', 'contain', 'fast', 'greens', 'and', 'hilly', 'fairways', ',', 'and', 'they', 'are', 'each', 'over', 'long', '.'], ['he', 'competed', 'at', 'the', '1', '8', '9', '6', 'summer', 'olympics', 'in', 'athens', '.'], ['gordon', 'characterized', 'the', 'issue', 'as', 'a', 'mistake', 'affecting', 'about', '2', '0', 'papers', '.'], ['carol', 'shields', 'claimed', 'in', '``', 'the', 'boston', 'globe', \"''\", 'that', 'gowdy', '``', 'writes', 'like', 'an', 'angel', '.', \"''\"], ['dylan', 'ryan', 'is', 'an', 'australian', 'professional', 'footballer', 'who', 'plays', 'as', 'a', 'defender', 'for', 'melbourne', 'victory', ',', 'on', 'loan', 'from', 'willem', 'ii', '.'], ['by', 'substituting', 'the', 'above', 'equation', ',', 'to', 'the', 'partial', 'derivative', 'of', 'the', 'log-likelihood', 'w.r.t', 'formula_', '4', '3', 'and', 'equating', 'it', 'to', 'zero', ',', 'we', 'get', 'the', 'following', 'expression', 'for', 'the', 'variance'], ['they', 'are', 'eventually', 'rescued', 'by', 'hal', 'jordan', ',', 'who', 'is', 'accompanied', 'by', 'sinestro', ',', 'carol', 'ferris', ',', 'and', 'indigo-', '1', '.'], ['he', 'coached', 'bart', 'veldkamp', 'winning', 'gold', 'at', 'the', '1', '9', '9', '2', 'winter', 'olympics', '.'], ['the', 'antennas', 'on', 'these', 'towers', 'serve', 'broadcast', 'stations', 'airing', 'programming', 'to', 'tv', 'viewers', 'in', 'the', 'sacramento/stockton/modesto', 'dma', '(', 'designated', 'market', 'area', ')', 'in', 'california', \"'s\", 'central', 'valley', '.'], ['however', ',', 'most', 'forts', 'were', 'not', 'kept', 'fully', 'garrisoned', 'at', 'all', 'times', '.'], ['having', 'no', 'children', 'from', 'either', 'marriage', 'he', 'returned', 'his', 'second', 'wife', \"'s\", 'money', 'to', 'her', 'family', 'upon', 'her', 'death', 'claiming', 'he', 'had', 'enough', 'to', 'keep', 'him', '.'], ['gaughan', 'was', 'initially', 'imprisoned', 'at', 'wormwood', 'scrubs', ',', 'where', 'he', 'spent', 'two', 'years', 'before', 'being', 'transferred', 'to', 'the', 'top', 'security', 'albany', 'prison', 'on', 'the', 'isle', 'of', 'wight', '.'], ['he/she', 'presides', 'over', 'council', 'meetings', 'and', 'carries', 'out', 'certain', 'representative', 'functions', 'that', ',', 'in', 'other', 'countries', ',', 'are', 'the', 'business', 'of', 'a', 'head', 'of', 'state', '.'], ['the', 'list', 'covered', 'his', 'discoveries', 'with', 'numbers', 'between', 'and', '.'], ['other', 'units', 'and', 'installations', 'that', 'used', 'goats', 'as', 'a', 'mascot', 'includes', 'the', 'royal', 'canadian', 'dragoons', ',', 'who', 'adopted', 'peter', 'the', 'goat', 'during', 'the', 'first', 'world', 'war', ';', 'and', 'cfb', 'borden', ',', 'who', 'adopted', 'sergeant', 'w.', 'marktime', 'the', 'goat', 'in', '1', '9', '5', '7', '.'], ['the', 'structure', 'won', 'a', 'national', 'architecture', 'and', 'engineering', 'award', 'from', 'the', 'american', 'institute', 'of', 'steel', 'construction', 'and', 'leed', 'gold', 'certification', 'from', 'the', 'u.s.', 'green', 'building', 'council', '.'], ['the', 'story', 'features', 'the', 'battle', 'of', 'the', 'little', 'big', 'horn', '.'], ['kirill', 'vladimirovich', 'grew', 'up', 'between', 'his', 'parents', \"'\", 'residence', 'in', 'st', 'peterburg', ',', 'the', 'vladimir', 'palace', ',', 'and', 'their', 'country', 'retreat', ',', 'the', 'vladimir', 'villa', 'in', 'tsarskoye', 'selo', '.'], ['in', '2', '0', '1', '4', ',', 'walker-leawere', 'was', 'named', 'in', 'the', 'new', 'zealand', 'barbarians', 'schools', \"'\", 'team', 'that', 'played', 'matches', 'against', 'australian', 'schools', 'and', 'fiji', 'schools', '.'], ['animation', 'began', 'in', '1', '9', '9', '9', ',', 'but', 'the', 'programme', 'was', 'not', 'first', 'aired', 'until', '2', '0', '0', '1', ',', 'on', 'both', 'bbc', '2', 'and', 'cbbc', '.'], ['the', 'church', 'scene', 'was', 'filmed', 'on', 'the', 'grounds', 'of', 'the', 'united', 'states', 'military', 'academy', 'at', 'west', 'point', ',', 'new', 'york', ',', 'but', 'the', 'church', \"'s\", 'facade', 'was', 'constructed', 'only', 'for', 'the', 'film', '.'], ['with', 'her', 'husband', 'robert', ',', 'sibley', 'was', 'also', 'deeply', 'involved', 'in', 'the', 'community', 'life', 'of', 'the', 'university', 'of', 'california', ',', 'berkeley', '.'], ['walter', 'matt', 'left', '``', 'the', 'wanderer', \"''\", ',', 'which', 'remained', 'under', 'alphonse', ',', 'to', 'start', '``', 'the', 'remnant', \"''\", 'in', '1', '9', '6', '7', '.'], ['rabbi', 'yeshayahu', 'rabinovich', 'was', 'among', 'the', 'first', 'who', ',', 'in', '1', '9', '0', '4', ',', 'created', 'literary', 'works', 'in', 'the', 'juhuri', 'language', 'for', 'a', 'drama', 'group', 'in', 'the', 'city', 'of', 'derbent', '.'], ['will', 'mason', 'of', 'uploadvr', 'reviewed', 'the', 'film', 'positively', ',', 'particularly', 'praising', 'the', 'emotional', 'impact', 'of', 'henry', 'looking', 'directly', 'at', 'the', 'viewer', '.'], ['seven', 'seas', 'entertainment', 'licensed', 'the', 'manga', 'series', 'for', 'a', 'printed', 'release', 'in', 'north', 'america', 'in', 'august', '2', '0', '1', '5', '.'], ['following', 'the', 'move', ',', 'he', 'was', 'impressive', 'in', 'the', 'defensive', 'midfield', 'position', ',', 'which', 'led', 'to', 'comparisons', 'to', 'former', 'argentina', '``', 'number', '5', '``', 'fernando', 'redondo', 'from', 'jorge', 'valdano', 'and', 'many', 'other', 'pundits', '.'], ['1', '9', '5', '2', ')', 'which', 'detailed', 'this', 'claim', '.'], ['nearby', '(', 'but', 'across', 'the', 'main', 'road', ',', 'therefore', 'not', 'actually', 'in', 'modern', 'eastwood', ')', 'is', '``', 'eastwood', 'parish', 'church', \"''\", 'which', 'dates', 'from', '1', '8', '6', '3', ',', 'replacing', 'an', 'older', 'building', 'from', '1', '7', '8', '1', 'which', 'itself', 'replaced', 'the', 'original', 'in', 'old', 'eastwood', 'cemetery', '.'], ['in', 'this', 'battle', 'he', 'was', 'wounded', 'in', 'the', 'legs', 'when', 'shrapnel', 'hit', 'the', 'bridge', '.'], ['at', 'royal', 'ascot', 'in', 'june', 'he', 'retained', 'his', 'unbeaten', 'record', 'in', 'the', 'rous', 'memorial', 'stakes', 'over', 'one', 'mile', '.'], ['the', 'wild', 'west', 'show', \"'s\", 'female', 'employees', 'brought', 'more', 'grace', 'to', 'the', 'georgians', \"'\", 'performances', '.'], ['in', 'response', 'to', 'the', 'line', '``', 'tell', 'peta', 'my', 'mink', 'is', 'draggin', \"'\", 'on', 'the', 'floor', \"''\", ',', 'peta', 'stated', ':'], ['some', 'facts', 'about', 'homology', 'groups', 'can', 'be', 'derived', 'directly', 'from', 'the', 'axioms', ',', 'such', 'as', 'the', 'fact', 'that', 'homotopically', 'equivalent', 'spaces', 'have', 'isomorphic', 'homology', 'groups', '.'], ['however', 'in', 'northern', 'israel', 'the', 'circassians', 'prevailed', 'and', 'european', 'travelers', 'praised', 'their', '``', 'advanced', 'agricultural', 'methods', \"''\", 'and', 'skill', 'in', 'animal', 'husbandry', '.'], ['mass-produced', 'timber', 'frames', 'were', 'used', 'to', 'speed', 'up', 'the', 'construction', 'of', 'units', 'without', 'compromising', 'the', 'stability', 'of', 'the', 'buildings', ';', 'with', 'developers', 'having', 'expected', 'the', 'eventual', 'home', 'owners', 'to', 'brick', 'the', 'remaining', 'portions', 'when', 'they', 'could', 'afford', 'it', '.'], ['the', 'next', 'day', ',', 'a', 'patrol', 'from', 'benua', 'baroe', 'came', 'in', 'contact', 'with', 'japanese', 'patrols', 'and', 'retreated', 'back', 'to', 'the', 'town', ',', 'as', 'japanese', 'troops', 'began', 'to', 'make', 'camp', 'just', 'one', 'hour', 'away', '.'], ['the', 'company', 'made', 'an', 'attempt', 'to', 'enter', 'the', 'american', 'market', ',', 'creating', 'a', 'subsidiary', 'in', 'michigan', ',', 'indiana', '.'], ['in', '1', '9', '5', '8', ',', 'it', 'moved', 'to', 'its', 'current', 'location', 'on', 'depot', 'road', ',', 'around', 'the', 'corner', 'from', 'the', 'site', 'of', 'the', 'boys', \"'\", 'school', ',', 'which', 'had', 'moved', 'to', 'comptons', 'lane', 'four', 'years', 'previously', '.'], ['about', '8', '.', '9', '%', 'of', 'families', 'and', '8', '.', '7', '%', 'of', 'the', 'population', 'were', 'below', 'the', 'poverty', 'line', ',', 'including', '1', '5', '.', '0', '%', 'of', 'those', 'under', 'the', 'age', 'of', 'eighteen', 'and', 'none', 'of', 'those', '6', '5', 'or', 'over', '.'], ['the', 'district', 'courts', 'were', 'established', 'by', 'congress', 'under', 'article', 'iii', 'of', 'the', 'united', 'states', 'constitution', '.'], ['a', 'lunar', 'eclipse', 'will', 'be', 'preceded', 'and', 'followed', 'by', 'solar', 'eclipses', 'by', '9', 'years', 'and', '5', '.', '5', 'days', '(', 'a', 'half', 'saros', ')', '.'], ['two', 'days', 'later', ',', 'crittenton', 'and', 'arenas', 'were', 'suspended', 'for', 'the', 'rest', 'of', 'the', 'season', 'by', 'nba', 'commissioner', 'david', 'stern', '.'], ['some', 'counties', ',', 'such', 'as', 'lake', ',', 'winnebago', 'and', 'dekalb', ',', 'were', 'once', 'republican', 'strongholds', ',', 'but', 'are', 'now', 'more', 'evenly', 'divided', '.'], ['the', 'c', '1', '-n', '1', 'bond', '[', '1', '4', '7', '.', '8', '4', '(', '1', '4', ')', 'pm', ']', 'is', 'longer', 'than', 'the', 'usual', 'csp', '3', '-npyrrole', 'bond', 'which', 'range', 'from', '1', '4', '1', '.', '2', '-', '1', '4', '5', '.', '8', 'pm', '.'], ['her', 'grandfather', 'was', 'selected', 'as', 'a', 'gymnast', 'for', 'the', '1', '9', '4', '0', 'summer', 'olympics', 'in', 'tokyo', 'but', 'was', 'unable', 'to', 'compete', 'as', 'the', 'games', 'were', 'cancelled', 'due', 'to', 'the', 'outbreak', 'of', 'world', 'war', 'ii', '.'], ['he', 'had', 'five', 'tournament', 'victories', 'on', 'the', 'pga', 'tour', ';', 'all', 'five', 'came', 'in', 'the', 'mid', 'to', 'late', '1', '9', '8', '0', 's', '.'], ['in', 'the', 'presence', 'of', 'a', 'solid', 'acid', 'catalyst', ',', 'thf', 'reacts', 'with', 'hydrogen', 'sulfide', 'to', 'give', 'tetrahydrothiophene', '.'], ['zico', 'signed', 'a', 'contract', 'with', 'iraq', 'football', 'federation', 'on', '2', '8', 'august', '2', '0', '1', '1', 'and', 'first', 'managed', 'the', 'national', 'team', 'in', 'a', 'match', 'against', 'jordan', 'on', '2', 'september', '2', '0', '1', '1', '.'], ['dean', '&', 'amp', ';', 'son', 'was', 'a', '1', '9', 'th-century', 'london', 'publishing', 'firm', ',', 'best', 'known', 'for', 'making', 'and', 'mass-producing', 'moveable', 'children', \"'s\", 'books', 'and', 'toy', 'books', ',', 'established', 'around', '1', '8', '0', '0', '.'], ['the', 'surname', 'migrated', 'to', 'england', 'during', 'the', '1', '2', 'th', 'century', '.'], ['the', 'coaches', \"'\", 'opening', 'performance', 'was', 'also', 'deemed', 'unrehearsed', '.'], ['he', 'never', 'saw', 'a', 'first', 'team', 'game', ',', 'but', 'played', 'ten', 'games', ',', 'scoring', 'two', 'goals', ',', 'with', 'the', 'colorado', 'rapids', 'reserve', 'team', '.'], ['george', 'miller', ',', 'the', 'character', 'making', 'his', 'first', 'appearance', 'in', 'episode', '1', '6', 'of', 'series', '1', '4', ':', '``', 'golf', 'papa', 'one', 'zero', \"''\", '.'], ['it', 'is', 'extended', 'upto', 'jamshedpur', 'in', 'jharkhand', 'and', 'barhi', 'in', 'jharkhand', 'in', '2', '0', '2', '0', 'and', 'giving', 'it', 'a', 'length', 'of', '2', '3', '1', 'km', '.'], ['dardenne', 'announced', 'that', 'he', 'would', 'personally', 'participate', 'in', 'anti-litter', 'efforts', 'in', 'the', 'state', ',', 'even', 'though', 'such', 'activities', 'are', 'not', 'within', 'the', 'domain', 'of', 'his', 'office', '.'], ['animation', 'was', 'considering', 'adaptations', 'of', '``', 'batman/teenage', 'mutant', 'ninja', 'turtles', \"''\", 'and', '``', 'wonder', 'woman', \"''\", 'as', 'possible', 'direct-to-video', 'films', '.'], ['reportedly', ',', 'carl', 'i.', 'hagen', 'wanted', 'to', 'postpone', 'a', 'decision', 'on', 'european', 'union', 'policy', 'from', 'the', 'national', 'convention', 'to', 'a', 'national', 'board', 'meeting', 'in', 'june', '.'], ['if', 'there', 'are', 'just', 'two', ',', 'they', 'may', 'be', 'in-line', ',', 'opposed', 'or', 'at', 'an', 'angle', ',', 'the', 'latter', 'often', 'described', 'as', 'a', 'vee', '(', 'or', 'v', ')', 'arrangement', '.'], ['the', 'men', \"'s\", 'marathon', '1', '0', 'kilometres', 'competition', 'of', 'the', 'swimming', 'events', 'at', 'the', '2', '0', '1', '1', 'pan', 'american', 'games', 'took', 'place', 'on', 'the', '2', '2', 'of', 'october', 'at', 'the', 'api', 'maritime', 'terminal', 'in', 'puerto', 'vallarta', '.'], ['they', 'start', 'to', 'board', 'up', 'the', 'house', 'when', 'they', 'hear', 'howling', 'in', 'the', 'distance', '.'], ['blanchett', 'was', 'also', 'the', 'recipient', 'of', 'the', 'aacta', 'longford', 'lyell', 'award', 'in', '2', '0', '1', '5', ',', 'for', 'her', '``', 'outstanding', 'contribution', 'to', 'the', 'enrichment', 'of', 'australia', \"'s\", 'screen', 'environment', 'and', 'culture', '.', \"''\"], ['after', 'graduating', 'from', 'college', ',', 'olowofoyeku', 'got', 'her', 'start', 'working', 'at', 'an', 'off-broadway', 'theater', 'in', 'new', 'york', 'city', '.'], ['as', 'of', 'the', '2', '0', '0', '0', 'census', ',', 'its', 'population', 'was', '3', '6', '2', '.'], ['dr.', 'bonamy', ',', 'a', 'character', 'in', 'zola', \"'s\", '1', '8', '9', '4', 'novel', '``', 'lourdes', \"''\", ',', 'is', 'unflatteringly', 'based', 'on', 'boissarie', '.'], ['on', '1', '8', 'november', '2', '0', '1', '3', 'she', 'released', 'her', 'debut', 'studio', 'album', '``', 'seize', 'the', 'day', \"''\", ',', 'the', 'album', 'has', 'peaked', 'to', 'number', '2', '0', 'on', 'the', 'danish', 'albums', 'chart', '.'], ['fully', 'equipped', 'for', 'sailing', ',', 'the', 'bluejacket', '2', '3', 'has', 'deck', 'hardware', 'of', 'stainless', 'steel', ',', 'marinium', 'and', 'chromed', 'brass', '.'], ['senghor', 'is', 'also', 'the', 'president', 'of', 'the', 'us', 'gorée', 'football', 'club', '.'], ['in', '1', '9', '3', '6', ',', 'he', 'won', ',', 'with', 'mieczysław', 'najdorf', ',', 'in', 'budapest', '(', 'hun-ch', ')', '.'], ['eds', 'shares', 'a', 'name', 'with', 'the', 'europarty', 'called', 'the', '``', 'european', 'democratic', 'party', \"''\", ',', 'but', 'it', 'is', 'not', 'connected', 'with', 'it', '.'], ['[', '[', 'british', 'compressed', 'gases', 'association', ']', 'website', ':', '[', '[', 'department', 'of', 'health', '(', 'united', 'kingdom', ')', ']', ']', 'htm', '0', '2', '-', '0', '1', 'medical', 'gas', 'pipeline', 'systems', 'part', 'a', ':', 'design', ',', 'installation', ',', 'validation', 'and', 'verification', ']'], ['this', 'morphological', 'data', 'is', 'not', 'enough', 'however', 'to', 'prove', 'that', 'suction', 'feeding', 'was', 'less', 'used', 'as', 'the', 'morphological', 'changes', 'have', 'been', 'found', 'in', 'fish', 'that', 'use', 'the', 'suction', 'feeding', 'mechanism', '.'], ['purging', 'should', 'be', 'done', 'while', 'breathing', 'off', 'the', 'unit', 'so', 'that', 'the', 'inert', 'gas', 'in', 'the', 'user', \"'s\", 'lungs', 'is', 'also', 'removed', 'from', 'the', 'system', '.'], ['jones', 'asserted', 'that', 'the', 'resolution', 'did', 'not', 'conflict', 'with', 'the', 'library', 'bill', 'of', 'rights', ',', 'and', 'instead', 'promoted', 'awareness', 'by', 'encouraging', 'training', 'and', 'outreach', 'programs', 'in', 'the', 'libraries', 'and', 'library', 'schools', '.'], ['his', 'name', 'is', 'also', 'mentioned', 'in', '``', 'the', 'simpsons', 'game', \"''\", '.'], ['the', 'five', 'seats', 'followed', 'each', 'other', 'round', 'to', 'gain', 'a', 'slipstreaming', 'benefit', '.'], ['folusz', '(', ')', 'is', 'a', 'settlement', 'in', 'the', 'administrative', 'district', 'of', 'gmina', 'trzemeszno', ',', 'within', 'gniezno', 'county', ',', 'greater', 'poland', 'voivodeship', ',', 'in', 'west-central', 'poland', '.'], ['hybridization', 'with', 'domestic', 'cats', 'is', 'regarded', 'as', 'a', 'threat', 'to', 'the', 'population', '.'], ['on', 'the', 'hill', 'there', 'are', 'two', 'lynchets', 'halfway', 'down', 'the', 'north', 'slope', ',', 'with', 'a', 'number', 'of', 'later', 'hollow-ways', 'encroaching', 'upon', 'them', '.'], ['in', '1', '9', '8', '9', ',', 'cox', 'sold', 'channel', '3', '0', 'to', 'st.', 'louis-based', 'river', 'city', 'broadcasting', ',', 'a', 'new', 'company', 'formed', 'by', 'two', 'former', 'kplr', 'employees', '.'], ['russia', 'was', 'previously', 'ranked', 'as', 'having', 'the', 'highest', 'incarceration', 'rate', 'per', '1', '0', '0', ',', '0', '0', '0', 'people', 'internationally', 'until', 'it', 'was', 'overtaken', 'by', 'the', 'united', 'states', 'in', '2', '0', '0', '0', '.'], ['towards', 'the', 'end', 'of', 'the', '1', '7', 'th', 'century', ',', 'hallschlag', 'belonged', ',', 'along', 'with', 'kronenburg', ',', 'to', 'the', 'blankenheim', 'line', 'of', 'the', 'county', 'of', 'manderscheid-blankenheim', '.'], ['in', '2', '0', '0', '3', 'the', 'island', 'residents', 'were', 'considering', 'a', 'feasibility', 'study', 'into', 'bringing', 'the', 'island', 'into', 'community', 'ownership', ',', 'a', 'process', 'that', 'has', 'been', 'successfully', 'completed', 'by', 'the', 'islanders', 'of', 'gigha', 'and', 'eigg', '.'], ['asay', 'founded', 'the', 'company', 'after', 'departing', 'a', 'career', 'at', 'gibson', 'dunn', '&', 'amp', ';', 'crutcher', ',', 'where', 'she', 'earned', 'worked', 'with', 'top', 'litigation', 'attorney', 'orin', 'snyder', 'working', 'on', 'complex', 'litigation', '.'], ['``', 'cut', 'scores', \"''\", 'are', 'the', 'minimum', 'scores', 'used', 'to', 'divide', 'students', 'into', 'higher', 'and', 'lower', 'level', 'courses', '.'], ['today', ',', 'the', 'former', 'main', 'runway', 'is', 'visible', 'in', 'aerial', 'photography', ',', 'however', 'no', 'buildings', 'or', 'physical', 'features', 'remain', '.'], ['he', 'earned', 'a', 'doctorate', 'in', 'canon', 'law', 'and', 'entered', 'the', 'diplomatic', 'service', 'of', 'the', 'holy', 'see', 'on', '8', 'march', '1', '9', '7', '6', 'and', 'fulfilled', 'assignments', 'in', 'indonesia', ',', 'in', 'the', 'offices', 'of', 'the', 'secretariat', 'of', 'state', ',', 'in', 'switzerland', ',', 'france', ',', 'austria', 'and', 'italy', '.'], ['while', 'not', 'a', 'security', '``', 'boundary', \"''\", '(', 'the', 'command', 'accessing', 'a', 'resource', 'is', 'blocked', 'rather', 'than', 'the', 'resource', ')', 'this', 'is', 'nevertheless', 'typically', 'used', 'to', 'restrict', 'users', \"'\", 'actions', 'before', 'logging', 'in', '.'], ['the', 'presentation', 'may', 'be', 'of', 'alopecia', '(', 'baldness', ')', '.'], ['in', 'april', '2', '0', '1', '6', ',', 'aleksandra', 'yakovleva', 'returned', 'to', 'acting', 'with', 'the', 'st.', 'petersburg', 'maly', 'theatre', 'comedy', 'in', 'a', 'leading', 'role', 'as', 'the', 'maid', 'bernadette', '.'], ['the', 'courts', 'hear', 'civil', 'and', 'criminal', 'cases', ',', 'and', 'each', 'is', 'paired', 'with', 'a', 'bankruptcy', 'court', '.'], ['there', 'is', 'a', 'historic', 'grave', 'of', 'frederick', 'ind', 'in', 'the', 'cemetery', 'as', 'well', 'as', 'a', 'more', 'recent', 'family', 'grave', '.'], ['some', 'believe', 'that', 'they', 'were', 'converted', 'to', 'christianity', 'by', 'thomas', 'of', 'cana', '(', 'knai', 'thomman', ')', '.'], ['kardai', 'is', 'a', 'village', 'in', 'the', 'bhopal', 'district', 'of', 'madhya', 'pradesh', ',', 'india', '.'], ['he', 'sat', 'in', 'the', 'chamber', 'of', 'deputies', 'from', '1', '9', '3', '0', 'to', '1', '9', '3', '6', ',', 'and', 'led', 'the', 'french', 'rugby', 'league', 'from', '1', '9', '3', '4', 'to', '1', '9', '4', '1', '.'], ['his', 'dissertation', 'was', 'on', 'the', 'topic', 'of', '``', 'isotopies', 'of', 'incompressible', 'surfaces', 'in', 'three', 'dimensional', 'manifolds', \"''\", '.'], ['it', 'is', 'also', 'the', 'name', 'of', 'a', 'park-forest', 'within', 'the', 'neighbourhood', '.'], ['in', 'the', 'military', 'rifle', 'event', ',', 'he', 'placed', 'eleventh', 'with', 'a', 'score', 'of', '8', '9', '4', '.'], ['students', 'have', 'opportunities', 'to', 'participate', 'in', 'a', 'wide', 'variety', 'of', 'sports', 'and', 'extra', 'curricular', 'activities', '.'], ['the', 'track', '``', 'the', 'final', 'sound', \"''\", 'is', '``', 'so', 'positively', 'gothic', 'you', 'could', 'almost', 'be', 'fooled', 'into', 'believing', 'that', 'it', 'was', 'lifted', 'from', 'the', 'soundtrack', 'of', 'some', 'hammer', 'horror', 'gorefest', \"''\", '.'], ['it', 'was', 'built', 'in', 'the', '1', '9', '3', '0', 's', '.'], ['this', 'includes', 'the', 'right', 'to', 'education', 'in', 'each', 'of', 'south', 'africa', \"'s\", 'official', 'languages', ',', 'the', 'right', 'to', 'a', 'healthy', 'living', 'environment', ',', 'as', 'well', 'as', 'the', 'right', 'to', 'free', 'movement', 'and', 'residence', '.'], ['most', 'of', 'the', 'gau', 'became', 'part', 'of', 'poland', 'after', 'the', 'second', 'world', 'war', 'while', 'the', 'remainder', 'became', 'part', 'of', 'what', 'would', 'become', 'east', 'germany', '.'], ['that', 'incident', 'caused', 'much', 'consternation', 'and', 'protests', 'in', 'pakistan', ',', 'over', 'the', 'violation', 'of', 'pakistan', \"'s\", 'sovereignty', '.'], ['this', 'is', 'not', 'caused', 'as', 'popularly', 'supposed', 'by', 'the', 'presence', 'of', 'the', 'isle', 'of', 'wight', ',', 'but', 'is', 'a', 'function', 'of', 'the', 'shape', 'and', 'depth', 'of', 'the', 'english', 'channel', '.'], ['honma', 'announced', 'his', 'departure', 'from', 'ajpw', 'on', 'april', '2', '8', ',', '2', '0', '0', '6', ',', 'and', 'became', 'a', 'freelancer', '.'], ['as', 'albert', 'einstein', 'was', 'born', 'in', 'ulm', 'in', '1', '8', '7', '9', ',', 'it', 'was', 'suggested', 'repeatedly', 'that', 'the', 'university', 'be', 'named', 'after', 'him', '.'], ['other', 'forestry', 'schools', 'in', 'the', 'philippines', 'have', 'also', 'experienced', 'a', 'similar', 'increase', 'in', 'female', 'enrollment', '.'], ['and', 'became', 'part', 'of', 'it', ',', 'although', 'it', 'was', 'not', 'fully', 'integrated', 'into', 'al-nusra', '.'], ['some', 'tribes', 'allied', 'with', 'the', 'argentine', 'government', ',', 'standing', 'neutral', 'or', ',', 'less', 'often', ',', 'fighting', 'for', 'the', 'argentine', 'army', '.'], ['xhch-tv', 'came', 'to', 'air', 'on', 'march', '1', '6', ',', '1', '9', '6', '8', ',', 'after', 'a', 'concession', 'was', 'authorized', 'in', 'november', '1', '9', '6', '4', '.'], ['faktion', 'is', 'the', 'only', 'and', 'self-titled', 'debut', 'studio', 'album', 'by', 'american', 'rock', 'band', 'faktion', '.'], ['schenkel', 'returned', 'to', 'willow', 'grove', 'hoping', 'to', 'jump-start', 'an', 'art', 'career', 'separate', 'from', 'zappa', 'and', 'the', 'record', 'industry', '.'], ['``', 'it', 'was', 'matisse', 'who', 'took', 'the', 'first', 'step', 'into', 'the', 'undiscovered', 'land', 'of', 'the', 'ugly', '.'], ['franklin', 'bells', 'are', 'only', 'a', 'qualitative', 'indicator', 'of', 'electric', 'charge', 'and', 'were', 'used', 'for', 'simple', 'demonstrations', 'rather', 'than', 'research', '.'], ['in', 'indonesia', ',', 'the', 'dish', 'is', 'recognized', 'as', 'a', 'popular', 'chinese', 'indonesian', 'dish', ',', 'served', 'from', 'simple', 'travelling', 'vendor', 'carts', 'frequenting', 'residential', 'areas', ',', 'humble', 'street-side', '``', 'warung', \"''\", 'to', 'restaurants', '.'], ['also', ',', 'the', 'surprise', 'return', 'of', 'cousin', 'charlie', 'will', 'threaten', 'to', 'destroy', 'the', 'van', 'der', 'woodsen', 'family', '.'], ['when', 'he', 'became', 'eighteen', ',', 'he', 'enlisted', 'in', 'the', 'russian', 'army', 'as', 'a', 'musician', '.'], ['the', 'second', 'voyage', 'on', '2', '4', 'november', '1', '9', '1', '9', 'was', 'to', 'sagua', 'la', 'grande', ',', 'cuba', ',', 'with', 'a', 'cargo', 'of', 'cement', '.'], ['his', 'wife', ',', 'stella', ',', 'predeceased', 'her', 'husband', 'by', 'fourteen', 'months', '.'], ['these', 'injuries', 'do', 'happen', 'in', 'practice', ',', 'have', 'been', 'known', 'to', 'happen', 'more', 'often', 'during', 'the', 'participation', 'of', 'a', 'game', '.'], ['according', 'to', 'the', 'three', 'knives', 'of', 'yangzhou', ',', 'written', 'by', '``', 'wang', 'xianxin', \"''\", ',', 'public', 'bathhouses', 'appeared', 'in', 'yangzhou', 'as', 'early', 'as', 'the', 'beginning', 'of', 'the', '1', '1', 'th', 'century', 'ad', ',', 'in', 'the', 'northern', 'song', 'yuanfeng', 'area', '.'], ['she', 'called', 'the', 'governor', '``', 'inefficient', \"''\", 'and', 'said', 'aid', 'from', 'turkmenistan', 'had', 'not', 'reached', 'those', 'in', 'need', 'and', 'had', 'been', 'wasted', 'by', 'the', 'governor', '.'], ['in', '2', '0', '0', '5', 'it', 'had', 'a', 'population', 'of', '1', '9', ',', '9', '5', '8', 'people', '.'], ['since', 'the', 'early', 'sixteenth', 'century', 'with', 'the', 'arrival', 'of', 'the', 'spanish', ',', 'mexico', 'has', 'received', 'immigrants', 'from', 'europe', ',', 'africa', ',', 'the', 'americas', '(', 'particularly', 'the', 'united', 'states', 'and', 'central', 'america', ')', ',', 'the', 'middle', 'east', 'and', 'from', 'asia', '.'], ['fedor', 'malykhin', '(', 'born', '1', '3', 'november', '1', '9', '9', '0', ')', 'is', 'a', 'russian', 'professional', 'ice', 'hockey', 'forward', 'who', 'is', 'currently', 'playing', 'for', 'hc', 'vityaz', 'of', 'the', 'kontinental', 'hockey', 'league', '(', 'khl', ')', '.'], ['but', 'when', 'beet', 'is', 'mortally', 'wounded', 'by', 'the', 'vandel', 'beltorze', ',', '``', 'the', 'king', 'of', 'tragedy', \"''\", ',', 'zenon', 'and', 'the', 'other', 'four', 'zenon', 'warriors', 'give', 'beet', 'their', 'saiga', 'to', 'save', 'his', 'life', 'and', 'fulfill', 'his', 'vow', 'to', 'end', 'the', 'age', 'of', 'darkness', '.'], ['the', 'after', 'engine', 'room', 'flooded', ',', 'three', 'of', 'four', 'shafts', 'ceased', 'turning', ',', 'and', 'the', 'ship', 'listed', '1', '0', 'degrees', 'to', 'port', 'and', 'caught', 'fire', '.'], ['using', 'set', 'theory', 'terminology', ',', 'an', 'elementary', 'event', 'is', 'a', 'singleton', '.'], ['it', 'is', 'recognized', 'by', 'the', 'united', 'states', 'golf', 'association', '(', 'usga', ')', 'as', 'one', 'of', 'the', 'first', '1', '0', '0', 'clubs', 'in', 'america', '.'], ['he', 'was', 'conferred', 'the', 'title', '``', 'guru', 'shiksha', 'parampara', 'award', \"''\", 'by', 'ministry', 'of', 'art', 'and', 'culture', ',', 'government', 'of', 'india', 'for', 'his', 'contribution', 'to', 'the', 'field', 'of', 'music', 'in', '2', '0', '1', '2', '.'], ['it', 'means', 'people', \"'s\", 'self-identity', 'varies', 'in', 'different', 'social', 'or', 'cultural', 'contexts', '.'], ['vartox', 'described', 'himself', 'as', '``', 'far', 'more', 'experienced', \"''\", 'than', 'superman', '(', '``', 'superman', \"''\", '#', '2', '8', '1', ',', 'november', '1', '9', '7', '4', ':', '``', 'mystery', 'mission', 'to', 'metropolis', \"''\", ')', '.'], ['he', 'went', 'unsold', 'at', 'the', '2', '0', '1', '2', 'ipl', 'players', 'auction', ',', 'but', 'was', 'later', 'bought', 'as', 'a', 'replacement', 'for', 'mitchell', 'marsh', 'by', 'the', 'pune', 'warriors', 'india', '.'], ['the', 'awards', 'are', 'based', 'on', 'sales', 'data', 'by', 'nielsen', 'soundscan', 'and', 'radio', 'information', 'by', 'nielsen', 'broadcast', 'data', 'systems', '.'], ['a', 'direct', 'effect', 'of', 'the', 'deportation', 'laws', 'of', '1', '9', '9', '6', 'and', 'the', 'patriot', 'act', 'has', 'been', 'a', 'dramatic', 'increase', 'in', 'deportations', '.'], ['that', 'night', ',', 'the', 'house', 'possesses', 'homer', 'and', 'the', 'children', ',', 'manipulating', 'their', 'minds', 'and', 'making', 'them', 'chase', 'each', 'other', 'with', 'axes', 'and', 'knives', '.'], ['they', 'also', 'come', 'in', 'patterns', 'of', 'squares', ',', 'dots', ',', 'hexagons', 'and', 'other', 'geometric', 'patterns', 'within', 'images', 'termed', 'two-dimensional', 'matrix', 'codes', 'or', 'symbologies', '.'], ['in', '1', '9', '6', '1', ',', 'vasconcelos', 'married', 'maria', 'helena', 'marques', '(', 'born', '2', '6', 'july', '1', '9', '3', '9', ')', ',', 'whom', 'he', 'later', 'divorced', '.'], ['she', 'survived', 'by', 'following', 'the', 'deer', 'out', 'of', 'the', 'forest', '.'], ['on', '2', '4', 'august', 'the', 'band', 'reported', 'that', 'the', 'drum', 'recording', 'was', 'done', '.'], ['on', '2', 'january', '2', '0', '1', '9', ',', '3', '3', '-year-old', 'dennis', 'oliech', 'agreed', 'a', 'two-year', 'contract', 'with', 'kenyan', 'giants', 'gor', 'mahia', ',', 'becoming', 'the', 'highest', 'paid', 'footballer', 'in', 'the', 'country', 'at', 'a', 'fee', 'of', 'kshs', '.', '3', '5', '0', ',', '0', '0', '0', '.'], ['the', '1', '0', '0', '-ton', 'gun', '(', 'also', 'known', 'as', 'the', 'armstrong', '1', '0', '0', '-ton', 'gun', ')', 'was', 'a', 'rifled', 'muzzle-loading', '(', 'rml', ')', 'gun', 'made', 'by', 'elswick', 'ordnance', 'company', ',', 'the', 'armaments', 'division', 'of', 'the', 'british', 'manufacturing', 'company', 'armstrong', 'whitworth', ',', 'owned', 'by', 'william', 'armstrong', '.'], ['she', 'is', 'currently', 'a', 'tenured', 'faculty', 'member', 'teaching', 'sculpture', 'at', 'city', 'college', 'of', 'san', 'francisco', '.'], ['croatian', 'president', 'tuđman', 'considered', 'that', 'it', 'would', 'be', 'better', 'for', 'croatia', 'to', 'avoid', 'conflicts', 'with', 'a', 'friendly', 'slovenian', 'army', 'in', 'the', 'west', 'since', 'the', 'country', 'was', 'threatened', 'by', 'hostile', 'ypa', 'from', 'the', 'east', '.'], ['on', 'thursday', ',', 'june', '7', ',', '2', '0', '0', '1', ',', 'roker', 'underwent', 'a', 'total', 'knee', 'arthoplasty', '(', 'replacement', ',', 'or', '``', 'tka', \"''\", ')', 'on', 'his', 'left', 'knee', '.'], ['menstrual', 'migraines', 'may', 'also', 'be', 'linked', 'to', 'oestrogen', 'withdrawal', '.'], ['due', 'to', 'failing', 'health', ',', 'meredith', 'was', 'forced', 'to', 'retire', 'from', 'business', 'life', 'in', '1', '9', '2', '4', '.'], ['yuaytacondorsenja', '(', 'possibly', 'from', 'quechua', '``', 'wayta', \"''\", 'crest', ';', 'wild', 'flower', ';', 'the', 'whistling', 'of', 'the', 'wind', ',', '``', 'kuntur', \"''\", 'condor', ',', '``', 'sinqa', \"''\", 'nose', ',', ')', 'is', 'a', 'mountain', 'in', 'the', 'chila', 'mountain', 'range', 'in', 'the', 'andes', 'of', 'peru', '.'], ['sir', 'charles', 'leonard', 'woolley', 'unearthed', 'more', 'tablets', 'at', 'ur', 'contained', 'in', 'the', '``', 'ur', 'excavations', 'texts', \"''\", 'from', '1', '9', '2', '8', '.'], ['there', 'is', 'an', 'article', 'in', 'the', 'local', 'mellus', 'newspaper', ',', 'which', 'shows', 'some', 'of', 'the', 'club', 'members', '``', 'polishing', \"''\", 'the', 'mirror', 'for', 'the', 'newtonian', '.'], ['``', 'paavada', \"''\", 'grossed', 'approximately', 'in', 'the', 'opening', 'day', 'from', 'kerala', 'box', 'office', '.'], ['he', 'joined', 'the', 'miami', 'dolphins', 'alumni', 'association', \"'s\", 'advisory', 'board', 'in', '2', '0', '0', '2', ',', 'and', 'is', 'a', 'frequent', 'visitor', 'to', 'the', 'dolphins', \"'\", 'radio', 'show', '.'], ['cohan', 'and', 'hunter', 'also', 'worked', 'as', 'creative', 'consultants', 'on', '``', 'the', 'upper', 'hand', \"''\", ',', 'the', 'british', 'version', 'of', '``', 'who', \"'s\", 'the', 'boss', '?'], ['edmund', 'and', 'his', 'wife', 'anna', 'lived', 'at', 'monte', 'vista', ',', 'their', 'farm', 'on', 'grand', 'lake', ',', 'on', 'the', 'outskirts', 'of', 'enfield', '.'], ['paralympic', 'shooters', 'are', 'classified', 'according', 'to', 'the', 'extent', 'of', 'their', 'disability', '.'], ['the', 'song', 'was', 'covered', 'by', 'dj', 'coo', '(', 'voiced', 'by', 'shotaro', 'morikubo', ')', 'under', 'the', 'title', '``', 'ez', 'do', 'dance', '(', 'dj', 'coo', 'ver', '.'], ['in', 'may', '1', '9', '4', '6', ',', 'due', 'to', 'changing', 'conceptions', 'of', 'the', 'u.s.', 'army', \"'s\", 'tank', 'needs', ',', 'the', 'm', '2', '6', 'was', 'reclassified', 'as', 'a', 'medium', 'tank', '.'], ['two', 'of', 'his', 'songs', 'were', 'featured', 'in', '2', '0', '0', '5', 'episodes', 'of', 'a', '&', 'amp', ';', 'e', \"'s\", 'series', '``', 'dog', 'the', 'bounty', 'hunter', \"''\", '.'], ['he', 'was', 'especially', 'drawn', 'to', 'the', 'work', 'of', 'john', 'cage', ',', 'and', 'himself', 'began', 'to', 'take', 'an', 'interest', 'in', 'promoting', 'experimental', 'research', 'in', 'visual', 'music', 'in', '1', '9', '6', '1', '.'], ['as', 'current', 'is', 'applied', 'to', 'the', 'resistive', 'wire', ',', 'the', 'coils', 'heat', 'up', 'and', 'melt', 'the', 'inside', 'of', 'the', 'fitting', 'and', 'the', 'outside', 'of', 'the', 'pipe', 'wall', 'which', 'weld', 'together', 'producing', 'a', 'very', 'strong', 'homogeneous', 'joint', '.'], ['as', 'soon', 'as', 'the', 'new', 'system', 'of', 'emigration', 'of', 'labour', 'became', 'known', ',', 'a', 'campaign', 'similar', 'to', 'the', 'anti-slavery', 'campaign', 'sprang', 'up', 'in', 'britain', 'and', 'india', '.'], ['marcus', 'daniels', 'was', 'born', 'in', 'flushing', ',', 'queens', ',', 'new', 'york', 'city', '.'], ['neil', 'smith', '(', 'born', 'lambeth', ',', '3', '0', 'september', '1', '9', '7', '1', ')', 'is', 'an', 'english', 'former', 'professional', 'football', 'player', 'and', 'most', 'recently', 'first', 'team', 'manager', 'at', 'bromley', '.'], ['the', 'name', 'badagry', 'derives', 'from', 'the', 'means', 'of', 'livelihood', 'of', 'the', 'indigenous', 'people', 'of', 'the', 'city', ',', 'which', 'include', 'fishing', ',', 'farming', ',', 'salt', 'making', '.'], ['in', '2', '0', '1', '1', ',', 'minersville', 'area', 'school', 'district', 'achieved', 'adequate', 'yearly', 'progress', '(', 'ayp', ')', '.'], ['the', 'm', '4', '7', 'patton', 'was', 'an', 'm', '4', '6', 'patton', 'with', 'a', 'new', 'turret', '.'], ['dreams', 'is', 'the', 'second', 'solo', 'album', 'by', 'grace', 'slick', ',', 'released', 'by', 'rca', 'records', 'in', 'march', '1', '9', '8', '0', '.'], ['in', '2', '0', '0', '7', ',', 'he', 'became', 'the', 'running', 'backs', 'coach', 'for', 'miami', 'central', 'high', 'school', '.'], ['on', 'the', '``', 'cash', 'box', \"''\", 'country', 'singles', 'chart', ',', '``', 'girl', 'in', 'saskatoon', \"''\", 'reached', 'number', '2', '5', 'during', 'its', 'nine', 'weeks', 'stay', '.'], ['the', '``', 'new', 'york', 'telegraph', \"''\", \"'s\", 'critic', 'wrote', ',', 'the', 'work', 'presented', '``', 'a', 'black', 'circle', 'of', 'relentless', 'figures', ',', 'toward', 'which', 'an', 'angelic', 'soul', 'draped', 'in', 'white', 'cried', 'and', 'pleaded', '.'], ['in', 'the', 'fall', 'of', 'that', 'year', ',', 'jones', 'became', 'an', 'occasional', 'part', 'of', 'height', \"'s\", 'live', 'set', ',', 'djing', 'and', 'adding', 'effects', 'to', 'height', \"'s\", 'vocals', '.'], ['north', 'asia', 'is', 'bordered', 'by', 'the', 'arctic', 'ocean', 'to', 'its', 'north', ',', 'by', 'eastern', 'europe', 'to', 'its', 'west', ',', 'by', 'central', 'and', 'east', 'asia', 'to', 'its', 'south', ',', 'and', 'by', 'the', 'pacific', 'ocean', 'and', 'north', 'america', 'to', 'its', 'east', '.'], ['since', '2', '0', '0', '5', ',', 'the', 'nærøyfjord', 'has', 'been', 'listed', 'as', 'a', 'unesco', 'world', 'heritage', 'site', '.'], ['7', '2', ',', 'composed', 'in', '1', '9', '5', '2', 'in', 'a', 'neo-romantic', 'style', '.'], ['ezeugo', 'was', 'alleged', 'to', 'have', 'filled', 'the', 'nomination', 'form', 'and', 'his', 'posters', 'were', 'on', 'the', 'streets', 'for', 'the', 'office', 'of', 'the', 'president', 'in', 'the', '2', '0', '1', '9', 'nigerian', 'general', 'election', 'under', 'advanced', 'peoples', 'democratic', 'alliance', '(', '``', 'apda', \"''\", ')', '.'], ['when', 'kelly', 'produced', 'a', 'photograph', 'taken', 'in', 'early', 'april', '2', '0', '0', '6', 'of', 'a', 'topless', 'kellestine-who', 'was', 'born', 'in', '1', '9', '4', '9', 'and', 'had', 'a', 'scrawny', 'build-leading', 'him', 'to', 'ask', ':', '``', 'how', 'many', 'of', 'your', 'opponents', 'looked', 'like', 'that', '?', \"''\"], ['it', 'is', 'located', 'north', 'of', 'the', 'district', 'headquarters', 'at', 'narnaul', 'and', 'from', 'mahendragarh', ',', 'its', 'postal', 'head', 'office', '.'], ['the', 'rv-', '8', 'also', 'has', 'increased', 'wingspan', 'and', 'wing', 'area', 'over', 'the', 'rv-', '4', ',', 'as', 'well', 'as', 'greater', 'cockpit', 'width', ',', 'headroom', ',', 'legroom', 'and', 'an', 'increased', 'useful', 'load', ',', 'all', 'with', 'a', 'view', 'to', 'accommodating', 'larger', 'pilots', '.'], ['it', 'was', 'inaugurated', 'in', '1', '3', '0', '3', ',', 'when', 'the', 'minaret', 'was', 'added', '.'], ['bashas', \"'\", 'has', 'a', 'distribution', 'center', ',', 'located', 'in', 'chandler', ',', 'which', 'includes', 'over', 'of', 'under-roof', 'space', ',', 'as', 'well', 'as', 'a', 'full', 'mechanic', 'shop', '.'], ['but', 'the', 'converse', 'implication', 'and', 'thus', 'the', 'strong', 'goldbach', 'conjecture', 'remain', 'unproven', '.'], ['bonud', '(', ',', 'also', 'romanized', 'as', 'bonūd', ',', 'banood', ',', 'and', 'banūd', ';', 'also', 'known', 'as', 'bunūt', ')', 'is', 'a', 'village', 'in', 'chah-e', 'mobarak', 'rural', 'district', ',', 'chah-e', 'mobarak', 'district', ',', 'asaluyeh', 'county', ',', 'bushehr', 'province', ',', 'iran', '.'], ['after', 'that', 'day', ',', 'each', 'mission', 'was', 'met', 'and', 'attacked', 'by', 'enemy', 'aircraft', '.'], ['she', 'gets', 'into', 'her', 'car', 'and', 'gives', 'a', 'wink', 'as', 'she', 'drives', 'away', '.'], ['in', '2', '0', '1', '5', 'the', 'governor', 'of', 'alaska', 'received', 'an', 'offer', 'for', 'a', 'fully', 'self-sufficient', 'multi-residence', 'housing', 'project', 'based', 'on', 'the', 'concepts', 'developed', 'for', 'the', 'ibts', 'project', 'and', 'adopted', 'for', 'arctic', 'climate', 'by', 'the', 'developer', 'ts', 'prototype-creation', '.'], ['vukadinović', 'was', 'born', 'in', 'sombor', 'on', '2', '3', 'october', '1', '9', '6', '2', '.'], ['regular', 'trade', 'continued', ',', 'and', 'the', 'new', 'mexicans', 'who', 'traded', 'with', 'comanches', 'became', 'known', 'as', 'comancheros', '.'], ['this', 'put', 'an', 'end', 'to', 'the', 'proposed', 'jamaica', 'bay', 'seaport', '.'], ['with', 'the', 'end', 'of', 'the', 'rochat', 'family', 'business', 'around', '1', '8', '5', '0', 'and', 'the', 'death', 'of', 'charles', 'bruguier', 'father', ',', 'virtually', 'all', 'innovative', 'work', 'on', 'the', 'fusee-wound', 'movement', 'ceased', '.'], ['it', 'was', 'a', 'gentle', 'hint', ',', 'but', 'i', 'realised', '...'], ['ronnie', 'james', 'dio', 'made', 'extra', 'narration', 'to', 'every', 'song', 'in', 'this', 'video', '.'], ['the', 'idea', 'followed', 'a', 'move', 'by', 'bosnian', 'croats', 'who', 'erected', 'a', 'catholic', 'christian', 'cross', 'on', 'hum', 'hill', 'above', 'mostar', ',', 'remembering', 'croats', 'killed', 'there', 'during', 'the', 'bosnian', 'war', '.'], ['in', 'july', '2', '0', '1', '2', 'carapetis', 'was', 'appointed', 'the', 'director', 'of', 'the', 'telethon', 'kids', 'institute', '.'], ['the', 'intersection', 'served', '(', 'and', 'still', 'serves', ')', 'as', 'a', 'key', 'cross-town', 'transit', 'transfer', 'point', 'in', 'the', 'city', '.'], ['audiences', 'polled', 'by', 'cinemascore', 'gave', 'the', 'film', 'an', 'average', 'grade', 'of', '``', 'a', \"''\", 'on', 'an', 'a+', 'to', 'f', 'scale', ',', 'while', 'posttrak', 'reported', 'filmgoers', 'gave', 'it', 'an', 'overall', 'positive', 'score', 'of', '8', '8', '%', '.'], ['the', 'rest', 'of', 'the', 'movie', 'takes', 'place', 'at', 'the', 'party', '.'], ['these', 'are', 'cliff', 'drive', ',', 'pebble', 'hill', ',', 'south', 'park', ',', 'english', 'bluff', ',', 'and', 'beach', 'grove', '.'], ['the', 'novel', '``', 'st.', 'elmo', \"''\", 'was', 'frequently', 'adapted', 'for', 'both', 'the', 'stage', 'and', 'screen', '.'], ['in', '1', '9', '6', '9', 'he', 'became', 'the', 'deputy', 'director', 'for', 'nato', 'nuclear', 'planning', ',', 'a', 'position', 'he', 'held', 'until', '1', '9', '7', '1', '.'], ['give', 'people', 'their', 'own', 'choice', 'to', 'watch', 'it', 'or', 'not', '.'], ['he', 'then', 'became', 'lieutenant', 'colonel', 'and', 'assistant', 'brigade', 'adjutant', 'from', '1', '8', '9', '0', '-', '1', '8', '9', '2', '.'], ['some', 'individuals', 'reacted', 'with', 'irritation', 'of', 'the', 'eyes', 'and', 'skin', '.'], ['jetboats', 'can', 'also', 'be', 'raced', 'for', 'sport', ',', 'both', 'on', 'rivers', '(', 'world', 'champion', 'jet', 'boat', 'marathon', 'held', 'in', 'mexico', ',', 'canada', ',', 'usa', 'and', 'new', 'zealand', ')', 'and', 'on', 'specially', 'designed', 'racecourses', 'known', 'as', 'sprint', 'tracks', '.'], ['during', 'this', 'time', ',', 'he', 'was', 'also', 'a', 'member', 'of', 'the', 'advisory', 'committee', 'of', 'the', 'world', 'council', 'of', 'churches', '.'], ['it', 'is', 'a', 'few', 'minutes', 'away', 'from', 'the', 'town', 'of', 'sainte-adèle', 'and', 'one', 'hour', 'north', 'from', 'montreal', '.'], ['this', 'unusual', 'appearance', 'of', 'a', 'british', 'mp', 'before', 'a', 'us', 'senate', 'committee', 'drew', 'much', 'media', 'attention', 'in', 'both', 'america', 'and', 'britain', '.'], ['for', 'each', 'of', 'the', 'sexes', ',', 'there', 'are', 'seven', 'track', 'running', 'events', ',', 'three', 'obstacle', 'events', ',', 'four', 'jumps', ',', 'four', 'throws', ',', 'and', 'one', 'combined', 'track', 'and', 'field', 'event', '.'], ['in', 'unirank', '2', '0', '2', '0', 'university', 'ranking', 'nure', 'placed', '3', '8', 'th', 'of', '1', '7', '1', 'recognized', 'ukrainian', 'higher-education', 'institutions', '.'], ['it', 'was', 'founded', 'in', '1', '9', '7', '5', ',', 'and', 'became', 'a', 'member', 'of', 'the', 'world', 'organization', 'of', 'the', 'scout', 'movement', 'in', '1', '9', '7', '7', 'and', 'of', 'the', 'world', 'association', 'of', 'girl', 'guides', 'and', 'girl', 'scouts', 'in', '1', '9', '9', '6', '.'], ['kmel', 'moved', 'from', 'rhythmic', 'to', 'urban', 'contemporary', 'at', 'the', 'same', 'time', ',', 'and', 'the', 'two', 'stations', 'battled', 'with', 'each', 'other', 'throughout', 'the', 'mid-', '1', '9', '9', '0', 's', '.'], ['of', 'these', 'ribs', 'about', '1', '8', 'are', 'indicated', 'upon', 'the', 'second', ',', '2', '2', 'upon', 'the', 'third', 'and', 'fourth', ',', '2', '8', 'upon', 'the', 'fifth', ','], ['the', 'law', 'took', 'effect', 'on', '1', 'january', '2', '0', '2', '0', '.'], ['their', 'therapeutic', 'strategy', 'involves', 'administering', 'mir-', '1', '2', '8', ',', 'an', 'agent', 'with', '9', '0', '%', 'sequence', 'homology', ',', 'or', 'an', 'agent', 'capable', 'of', 'increasing', 'the', 'expression', 'or', 'activity', 'of', 'mir-', '1', '2', '8', 'as', 'a', 'means', 'to', 'control', 'dopamine', 'receptor', '1', '(', 'drdr', '1', ')', 'neuron', 'excitability', '.'], ['the', 'blog', 'is', 'known', 'for', 'its', 'efforts', 'to', 'expose', 'upcoming', 'artists', ',', 'such', 'as', 'their', 'installment', 'in', 'the', '``', 'artist', 'discovery', 'series', \"''\", 'of', 'blogs', 'hosted', 'by', 'austin', 'city', 'limits', 'and', 'lollapalooza', ',', 'and', 'their', 'program', 'on', 'sirius-xm', '.'], ['from', '1', '7', 'february', '1', '9', '5', '5', ',', 'all', 'three', 'were', 'stationed', 'in', 'flåm', '.'], ['priaulx', ',', 'gené', 'and', 'chevrolet', \"'s\", 'nicola', 'larini', 'were', 'seventh', ',', 'eighth', 'and', 'ninth', '.'], ['the', '8', '5', ',', '0', '0', '0', '-square-foot', 'facility', 'quickly', 'became', 'too', 'small', 'for', 'the', 'growing', 'department', ',', 'and', 'in', '2', '0', '0', '6', ',', 'the', 'moran', 'eye', 'center', 'moved', 'to', 'its', 'current', '2', '1', '0', ',', '0', '0', '0', '-square-foot', 'location', 'on', 'mario', 'capecchi', 'drive', '.'], ['at', 'the', 'time', 'there', 'were', 'two', 'schools', ',', 'each', 'operating', 'under', 'a', 'different', 'catholic', 'religious', 'community', '.'], ['it', 'is', 'a', 'tributary', 'of', 'lake', 'winnipesaukee', ',', 'part', 'of', 'the', 'merrimack', 'river', 'watershed', '.'], ['he', 'is', 'the', 'son', 'of', 'mla', 'ratnakar', 'gutte', 'from', 'gangakhed', 'vidhansabha', 'constituency', 'of', 'maharashtra', 'legislative', 'assembly', '.'], ['the', 'company', \"'s\", 'former', 'name', 'was', 'nestlé', 'food', 'llc', ',', 'and', 'it', 'was', 'renamed', 'to', 'nestlé', 'rossiya', 'in', '2', '0', '0', '7', '.'], ['a', 'benefit', 'show', 'was', 'held', 'for', 'her', 'daughter', 'at', 'the', 'warfield', 'in', 'san', 'francisco', 'with', 'the', 'tubes', 'and', 'todd', 'rundgren', '.'], ['the', 'banking', 'system', 'was', 'more', 'stable', ',', 'although', 'there', 'were', 'still', 'non-performing', 'loans', 'and', 'corporate', 'debt', '.'], ['he', 'later', 'said', ':', '``', 'even', 'if', '9', '0', '%', 'of', 'the', 'lyrics', 'were', 'fiction', 'there', 'are', 'still', 'feelings', 'in', 'songs', 'like', \"'winner\", 'takes', 'it', 'all', \"'\", 'and', \"'day\", 'before', 'you', 'came', \"'\", 'they', 'have', 'something', 'from', 'that', 'time', 'in', 'them', '.', \"''\"], ['the', 'laws', 'may', ',', 'at', 'any', 'time', ',', 'be', 'changed', 'by', 'the', 'state', 'without', 'the', 'consent', '(', 'or', 'even', 'knowledge', ')', 'of', 'the', 'married', 'people', '.'], ['he', 'made', 'speeches', 'to', 'christians', 'and', 'called', 'for', 'greeks', 'to', 'come', 'to', 'africa', 'for', 'catechization', 'and', 'founding', 'of', 'a', 'mission', '.'], ['singapore', 'would', 'eventually', 'air', 'the', 'remake', 'which', 'premiered', 'on', 'january', '5', ',', '2', '0', '2', '1', 'at', '1', '1', 'pm', '.'], ['saunders', 'sc', 'is', 'a', 'sri', 'lankan', 'football', 'club', 'based', 'in', 'the', 'pettah', 'district', 'of', 'colombo', '.'], ['she', 'served', 'during', 'world', 'war', 'i.', 'post-war', ',', 'she', 'saw', 'new', 'zealand', 'service', '.'], ['one', 'person', 'will', 'give', 'clues', ',', 'trying', 'to', 'get', 'the', 'other', 'two', 'to', 'guess', 'the', 'names', '.'], ['the', 'engine', 'is', 'a', 'development', 'of', 'the', '6', '6', '0', 'cc', 'street', 'triple', 's', 'unit', 'with', 'sixty', 'seven', 'new', 'components', 'and', 'the', 'following', 'differences', ':'], ['upon', 'graduation', 'in', '1', '8', '9', '7', ',', 'smetona', 'entered', 'the', 'faculty', 'of', 'law', 'of', 'the', 'university', 'of', 'saint', 'petersburg', '.'], ['she', 'initially', 'performed', 'the', 'song', 'locally', 'but', 'soon', 'went', 'on', 'to', 'perform', 'at', 'several', 'public', 'events', 'for', 'the', 'air', 'force', 'in', 'washington', 'd.c', '.'], ['phillips', 'had', 'already', 'cut', 'the', 'first', 'records', 'by', 'blues', 'artists', 'such', 'as', 'howlin', \"'\", 'wolf', 'and', 'junior', 'parker', '.'], ['sannie', 'and', 'the', 'two', 'shared', 'time', 'together', 'before', 'her', 'mother', \"'s\", 'death', 'in', '2', '0', '0', '1', '.'], ['it', 'is', 'located', 'about', 'northeast', 'of', 'the', 'village', 'of', 'lysøysundet', ',', 'near', 'the', 'mouth', 'of', 'the', 'åfjorden', '.'], ['marion', 'county', ',', 'in', 'turn', ',', 'had', 'been', 'named', 'for', 'general', 'francis', 'marion', 'of', 'revolutionary', 'war', 'fame', '.'], ['swinney', \"'s\", 'theory', 'followed', 'that', 'once', 'these', 'related', 'concepts', 'are', 'primed', ',', 'recognition', 'of', 'them', 'in', 'this', 'task', 'will', 'be', 'quicker', 'than', 'words', 'that', 'are', 'not', 'activated', '.'], ['communist', 'subsequently', 'launched', 'intensive', 'political', '/', 'psychological', '/', 'propaganda', 'offensives', 'and', 'over', '8', '0', '0', 'surviving', 'surrendered', '.'], ['a', 'treaty', 'signed', 'in', '1', '8', '3', '6', 'forced', 'indian', 'tribes', 'in', 'the', 'eastern', 'united', 'states', 'to', 'move', 'west', 'of', 'the', 'mississippi', 'river', ',', 'but', 'pottawatomie', 'chief', 'menominee', ',', 'his', 'tribe', ',', 'and', 'others', 'refused', 'to', 'leave', 'their', 'land', '.'], ['he', 'adopted', 'his', 'nephew', 'wu', 'tailai', '吳泰來', 'as', 'heir', '.'], ['on', 'september', '2', '6', ',', '2', '0', '1', '1', ',', 'the', 'then-kid-fm', 'rebranded', 'from', '``', 'the', 'bull', \"''\", 'to', '``', 'river', 'country', \"''\", ',', 'now', 'simulcasting', 'on', 'kwfo', '1', '0', '2', '.', '1', 'fm', 'driggs', ',', 'idaho', '.'], ['stahl', 'also', 'protests', 'against', 'the', 'haussmannian', 'renovation', 'of', 'downtown', 'bucharest', ',', 'and', 'proposes', 'that', 'all', 'condemned', 'buildings', 'be', 'photographed', 'and', 'inventoried', 'for', 'historical', 'reference', '.'], ['carritt', \"'s\", 'campaign', 'chairman', 'was', 'liberal', 'mp', ',', 'richard', 'acland', '.'], ['it', 'was', 'hunter', \"'s\", 'paradise', 'with', 'deer', 'roaming', 'here', 'and', 'there', 'with', 'an', 'occasional', 'wild', 'boar', 'making', 'an', 'appearance', '.'], ['it', 'is', 'a', 'very', 'broad', 'generalisation', 'of', 'widely', 'open', 'conjectures', 'such', 'as', 'the', 'twin', 'prime', 'conjecture', '.'], ['current', 'use', 'of', 'stv', 'was', 'introduced', 'by', 'the', 'local', 'electoral', 'act', '2', '0', '0', '1', 'and', 'began', 'with', 'elections', 'to', 'local', 'councils', 'and', 'district', 'health', 'boards', 'in', 'october', '2', '0', '0', '4'], ['the', 'film', 'stars', 'arterton', 'as', 'a', 'reclusive', 'writer', 'who', 'is', 'forced', 'to', 'bond', 'with', 'a', 'young', 'boy', 'who', 'has', 'been', 'entrusted', 'to', 'her', 'care', 'after', 'the', 'london', 'blitz', '.'], ['the', 'disc', 'is', 'somewhat', 'obscurely', 'streaked', 'with', 'ocherous', ',', 'and', 'under', 'a', 'lens', 'small', 'white', 'specks', 'and', 'scales', 'appear', 'scattered', 'in', 'the', 'apical', 'part', 'of', 'the', 'wing', '.'], ['his', 'father', ',', 'son', 'woong-jung', 'is', 'a', 'retired', 'football', 'player', 'turned', 'manager', 'who', 'once', 'played', 'for', 'the', 'south', 'korea', 'national', 'football', 'b', 'team', '.'], ['alethorpe', 'is', 'a', 'deserted', 'medieval', 'village', 'site', 'in', 'the', 'english', 'county', 'of', 'norfolk', '.'], ['the', 'new', 'lyrics', ',', 'which', 'removed', 'any', 'reference', 'to', 'stalin', ',', 'were', 'approved', 'on', 'september', '1', 'and', 'were', 'made', 'official', 'with', 'the', 'printing', 'of', 'the', 'new', 'soviet', 'constitution', 'in', 'october', '1', '9', '7', '7', '.'], ['about', '9', '.', '3', '%', 'of', 'families', 'and', '2', '0', '.', '1', '%', 'of', 'the', 'population', 'were', 'below', 'the', 'poverty', 'line', ',', 'including', '3', '2', '.', '1', '%', 'of', 'those', 'under', 'age', '1', '8', 'and', '9', '.', '5', '%', 'of', 'those', 'age', '6', '5', 'or', 'over', '.'], ['while', 'bivouacked', 'at', 'puckapunyal', 'camp', ',', 'victoria', ',', 'he', 'died', 'suddenly', 'of', 'coronary', 'heart', 'disease', 'on', '1', '3', 'june', '1', '9', '4', '1', '.'], ['the', 'school', 'district', 'administration', 'is', 'headed', 'by', 'dr.', 'tonie', 'mcdonald', ',', 'the', 'current', 'superintendent', 'of', 'schools', ',', 'appointed', 'july', '1', ',', '2', '0', '1', '4', '.'], ['a', 'year', 'and', 'a', 'half', 'later', ',', '``', 'teen', 'town', \"''\", 'morphed', 'into', '``', 'swingin', \"'\", 'time', \"''\", '.'], ['a', 'massacre', 'refers', 'to', 'the', 'killing', 'of', 'multiple', 'individuals', 'and', 'is', 'usually', 'considered', 'to', 'be', 'morally', 'unacceptable', ',', 'especially', 'when', 'perpetrated', 'by', 'a', 'group', 'of', 'political', 'actors', 'against', 'defenseless', 'victims', '.'], ['in', '2', '0', '1', '6', ',', 'facebook', 'founder', 'mark', 'zuckerberg', 'purchased', '7', '0', '0', '-acres', 'of', 'beach', 'front', 'land', 'on', 'the', 'island', 'of', 'kauai', '.'], ['3', '7', '.', '3', '%', 'of', 'all', 'households', 'were', 'made', 'up', 'of', 'individuals', ',', 'and', '2', '1', '.', '5', '%', 'had', 'someone', 'living', 'alone', 'who', 'was', '6', '5', 'years', 'of', 'age', 'or', 'older', '.'], ['he', 'once', 'again', 'topped', 'the', 'disposals', 'count', 'for', 'the', 'season', '.'], ['in', '2', '0', '1', '1', ',', 'the', 'company', 'found', 'itself', 'involved', 'in', 'a', 'controversial', 'redevelopment', 'plan', 'for', 'the', 'bath', 'road', 'reservoir', 'in', 'its', 'home', 'town', 'of', 'reading', '.'], ['nageswara', 'rao', 'park', 'is', 'a', 'park', 'located', 'on', 'luz', 'corner', 'in', 'mylapore', ',', 'chennai', ',', 'india', '.'], ['in', 'this', 'manner', ',', 'terminal', 'tube', 'foot', 'formation', 'is', 'followed', 'by', 'the', 'growth', 'of', 'additional', 'tube', 'feet', ',', 'ampullae', ',', 'aboral', 'ossicles', ',', 'and', 'other', 'musculoskeletal', 'structures', 'in', 'a', 'proximal', 'to', 'distal', 'direction', 'until', 'regeneration', 'is', 'completed', '.'], ['their', 'next', 'ep', ',', '``', 'swish', \"''\", ',', 'appeared', 'in', '1', '9', '9', '7', 'via', 'varispeed', 'records', ',', 'with', 'five', 'tracks', ',', 'which', 'featured', 'their', 'signature', 'song', '``', 'furniture', \"''\", '.'], ['in', 'the', 'early-', '1', '9', '0', '0', 's', 'there', 'were', 'an', 'estimated', '1', '0', '0', ',', '0', '0', '0', 'domesticated', 'or', 'captive', 'elephants', 'in', 'thailand', '.'], ['springtails', 'are', 'well', 'known', 'as', 'pests', 'of', 'some', 'agricultural', 'crops', '.'], ['much', 'of', 'rural', 'new', 'zealand', 'relies', 'on', 'collection', 'of', 'rainwater', 'for', 'water', 'supply', 'and', 'septic', 'tanks', 'for', 'sewage', 'disposal', '.'], ['piringer', 'took', 'over', 'the', \"'concerts\", 'spirituels', \"'\", 'along', 'with', 'karl', 'holz', '(', 'violinist', 'in', 'the', 'schuppanzigh', 'quartet', ')', 'and', 'the', 'tenor', 'ludwig', 'titze', ',', 'with', 'eduard', 'lannoy', 'as', 'conductor', '.'], ['as', 'such', 'she', 'carried', 'a', 'claim', 'to', 'the', 'throne', '.'], ['also', 'in', '2', '0', '0', '9', ',', 'panasonic', 'introduced', 'the', 'toughbook', 'u', '1', 'umpc', ',', 'what', 'was', 'then', 'the', 'world', \"'s\", 'first', 'fully', 'rugged', 'umpc', 'on', 'the', 'market', '.'], ['gradually', 'americans', 'settled', 'there', ',', 'also', 'engaging', 'in', 'hunting', 'and', 'fishing', '.'], ['the', 'first', 'full', 'day', 'of', 'tunnel', 'operations', 'saw', 'lower', 'traffic', 'volumes', ',', 'with', 'only', '2', '2', ',', '1', '4', '5', 'vehicle', 'trips', ',', 'due', 'to', 'an', 'ongoing', 'snowstorm', ',', 'as', 'well', 'as', 'confusion', 'at', 'the', 'left-side', 'exits', '.'], ['it', 'comprises', 'the', 'two', 'upper', 'floors', 'of', 'the', 'main', 'school', 'building', ',', 'browhead', '.'], ['wyler', 'had', 'previously', 'shot', 'two', 'documentaries', 'in', 'color', 'in', '1', '9', '4', '4', ',', '``', \"''\", 'and', 'the', 'uncredited', '``', 'the', 'fighting', 'lady', \"''\", '.'], ['also', ',', 'there', 'is', 'a', 'legend', 'connected', 'with', 'the', 'image', 'of', 'the', 'deer', 'horn', 'of', 'the', 'town', 'emblem', '.'], ['on', 'the', 'other', 'hand', ',', 'the', 'entry', 'of', 'calcium', 'acts', ',', 'either', 'directly', 'or', 'indirectly', ',', 'on', 'different', 'intracellular', 'cascades', '.'], ['yoon', 'left', 'the', 'group', 'in', '2', '0', '0', '4', 'and', 'g.o.d', 'continued', 'as', 'a', 'four-man', 'group', 'before', 'going', 'on', 'hiatus', 'in', 'late', 'december', '2', '0', '0', '5', '.'], ['in', 'order', 'to', 'liberate', 'themselves', ',', 'they', 'must', 'first', 'take', 'off', 'their', 'armour', '.'], ['the', 'deaths', 'of', 'her', 'parents', 'and', 'the', 'racism', 'of', 'philadelphia', 'society', 'cause', 'angela', 'to', 'leave', 'for', 'new', 'york', 'city', ',', 'where', 'she', 'decides', 'to', 'fully', 'hide', 'her', 'african-american', 'heritage', '.'], ['it', 'has', '6', '0', 'edges', 'and', '3', '2', 'vertices', ',', 'and', 'euler', 'characteristic', 'of', '−', '8', '.'], ['the', 'rebellion', 'spread', 'to', 'ji', ',', 'where', 'han', 'guang', 'revived', 'the', 'yan', 'kingdom', '.'], ['for', 'the', 'new', 'york', 'stock', 'exchange', 'building', 'annex', 'into', '2', '0', 'broad', 'street', ',', 'kahn', '&', 'amp', ';', 'jacobs', 'created', 'additional', 'facilities', 'in', '1', '9', '5', '6', 'designed', 'with', 'their', 'characteristic', 'zig-zag', 'of', 'setbacks', 'in', 'the', 'upper', 'stories', '.'], ['gally', 'then', 'arrives', ',', 'killing', 'rasha', 'by', 'punching', 'his', 'head', 'off', '.'], ['frogtown', 'is', 'an', 'unincorporated', 'community', 'in', 'washington', 'county', ',', 'in', 'the', 'u.s.', 'state', 'of', 'missouri', '.'], ['born', 'in', 'vienna', ',', 'he', 'came', 'to', 'britain', 'in', '1', '9', '3', '3', 'as', 'an', 'nkvd', 'agent', 'codenamed', '``', 'abo', \"''\", '.'], ['the', 'discovery', 'district', 'is', 'a', 'special', 'improvement', 'district', 'in', 'downtown', 'columbus', ',', 'ohio', ',', 'the', 'home', 'of', 'columbus', 'state', 'community', 'college', ',', 'columbus', 'college', 'of', 'art', 'and', 'design', ',', 'columbus', 'museum', 'of', 'art', ',', 'and', 'columbus', 'metropolitan', 'library', '.'], ['it', 'is', 'the', 'story', 'of', 'two', 'sisters', 'who', 'lose', 'their', 'parents', 'and', 'go', 'to', 'live', 'with', 'their', 'aunt', '.'], ['blur', 'is', 'an', 'albino', 'teenager', 'wearing', 'an', 'altered', 'form', 'of', 'the', 'reverse-flash', \"'s\", 'costume', ',', 'and', 'he', 'and', 'his', 'four', 'siblings', 'still', 'retain', 'a', 'latent', 'fear', 'of', 'fire', '.'], ['on', '2', '0', 'november', '2', '0', '1', '2', ',', 'hague', 'recognised', 'the', 'national', 'coalition', 'for', 'syrian', 'revolutionary', 'and', 'opposition', 'forces', 'as', 'the', '``', 'sole', 'legitimate', 'representative', \"''\", 'of', 'the', 'syrian', 'people', ',', 'and', 'a', 'credible', 'alternative', 'to', 'the', 'current', 'syrian', 'government', '.'], ['before', 'the', 'first', 'world', 'war', ',', 'building', 'costs', 'were', 'between', '£', '3', ',', '0', '0', '0', 'and', '£', '4', ',', '0', '0', '0', ',', 'at', 'least', 'three', 'times', 'the', 'cost', 'of', 'the', 'sail', 'boats', '.'], ['a', 'basic', 'set', 'generates', 'an', 'abelian', 'group', 'of', 'order', '2', '1', '0', ',', 'which', 'extends', 'in', 'fi', '2', '2', 'to', 'a', 'subgroup', '2', '1', '0', ':', 'm', '2', '2', '.'], ['he', 'attacks', 'the', 'robot', 'ibis', ',', 'not', 'aware', 'of', 'who', 'she', 'is', ',', 'as', 'a', 'result', 'of', 'his', 'mindset', '.'], ['deutonymphs', 'of', '``', 'roubikia', 'panamensis', \"''\", 'and', '``', 'r.', 'imberba', \"''\", 'can', 'also', 'be', 'found', 'dispersing', 'on', 'kleptoparasitic', 'bees', 'of', 'the', 'genus', '``', 'coelioxoides', \"''\", '(', 'apidae', ':', 'tetrapediini', ')', '.'], ['agricultural', 'land', 'use', ',', 'is', '4', '5', '.', '2', '%', 'of', 'total', 'land', 'of', 'phitsanulok', 'province', '.'], ['furthermore', ',', 'max', 'auer', 'explains', 'in', 'his', 'book', ',', '``', 'it', 'is', 'true', 'that', 'bruckner', 'led', 'the', 'pen', 'until', 'the', 'last', 'day', 'of', 'his', 'life', 'to', 'finish', 'his', 'ninth', 'with', 'a', 'finale', '.'], ['they', 'were', 'replaced', 'eventually', 'by', 'pail', 'closets', 'and', 'flush', 'toilets', '.'], ['the', 'world', 'bank', 'approved', 'a', 'plan', 'to', 'invest', 'us', '$', '1', '6', '0', 'billion', 'in', 'emergency', 'aid', 'over', 'the', 'next', '1', '5', 'months', 'to', 'help', 'countries', 'deal', 'with', 'the', 'coronavirus', '.'], ['the', 'entire', 'council', 'was', 'up', 'for', 'election', 'following', 'boundary', 'changes', ',', 'which', 'increase', 'the', 'number', 'of', 'seats', 'from', '3', '6', 'to', '4', '0', '.'], ['major', 'general', 'henry', 'ware', 'lawton', 'told', 'the', 'soldiers', 'before', 'their', 'departure', ':', '``', 'you', 'have', 'nobly', 'earned', 'the', 'reputation', 'of', 'being', 'among', 'the', 'best', 'soldiers', 'of', 'the', 'american', 'army', '.', \"''\"], ['other', 'parts', 'of', 'the', 'story', 'differ', 'significantly', 'between', 'the', 'three', 'narratives', '.'], ['the', 'adult', 'male', 'and', 'female', 'are', 'similar', 'in', 'appearance', ',', 'with', 'predominantly', 'golden-yellow', 'plumage', 'and', 'orange-flushed', 'underparts', 'and', 'face', '.'], ['``', 'chicago', 'tribune', \"''\", 'newspaper', 'reporter', 'lexie', 'littleton', 'becomes', 'the', 'object', 'of', 'the', 'affections', 'of', 'both', 'dodge', 'and', 'carter', '.'], ['references', 'to', 'the', '``', 'illinois', 'register', \"''\", 'contain', 'the', 'volume', 'number', '(', 'each', 'volume', 'is', 'one', 'calendar', 'year', ')', 'and', 'the', 'page', 'number', ',', 'which', 'is', 'continuously', 'numbered', 'over', 'the', 'course', 'of', 'a', 'volume', '.'], ['testing', 'and', 'design', 'modifications', 'such', 'as', 'improvements', 'to', 'the', 'turret', 'and', 'half', 'modular', 'type', 'ceramic', 'composite', 'armour', 'continued', 'until', '1', '9', '8', '6', '.'], ['the', 'manor', 'was', 'the', 'property', 'of', 'the', 'governors', 'of', 'carniola', ',', 'and', 'was', 'then', 'owned', 'by', 'the', 'augustinian', 'order', 'until', '1', '6', '5', '7', ',', 'which', 'then', 'built', 'a', 'monastery', 'in', 'ljubljana', 'and', 'sold', 'the', 'property', 'to', 'johann', 'benaglia', '.'], ['the', 'station', 'began', 'am', 'transmissions', 'on', 'january', '2', '0', ',', '2', '0', '1', '1', ',', 'though', 'it', 'had', 'existed', 'as', 'an', 'internet', 'radio', 'station', 'since', '2', '0', '0', '4', '.'], ['he', 'got', 'his', 'first', 'violin', 'at', 'the', 'age', 'of', 'four', ',', 'and', 'only', 'six', 'months', 'later', 'he', 'gave', 'his', 'first', 'public', 'concert', 'at', 'his', 'school', '.'], ['dirty', 'gas', 'enters', 'the', 'bottom', 'of', 'the', 'baghouse', 'and', 'passes', 'through', 'the', 'filter', ',', 'and', 'the', 'dust', 'collects', 'on', 'the', 'inside', 'surface', 'of', 'the', 'bags', '.'], ['the', 'roots', 'host', 'the', 'roots', 'picnic', ',', 'an', 'annual', 'all-day', 'music', 'festival', 'in', 'philadelphia', ',', 'every', 'june', '.'], ['george', 'served', 'as', 'secretary', 'and', 'manager', 'of', 'the', 'new', 'company', '.'], ['the', 'park', 'is', 'the', 'site', 'of', 'an', 'ancient', 'buffalo', 'jump', ',', 'where', 'cree', 'native', 'people', 'drove', 'bison', 'over', 'the', 'cliffs', 'in', 'large', 'numbers', 'to', 'provide', 'for', 'their', 'tribes', '.'], ['the', 'final', 'billboard', 'chart', 'brown', \"'s\", 'hit', 'appeared', 'on', 'was', 'the', 'soul', 'singles', 'chart', '.'], ['this', 'can', 'be', 'seen', 'in', 'the', 'fact', 'that', 'the', 'account', 'to', 'be', 'rendered', 'on', 'the', 'day', 'of', 'judgement', '(', 'yaum', 'al-din', ')', 'is', 'one', 'of', 'works', '.'], ['her', 'work', 'was', 'also', 'part', 'of', 'a', '2', '0', '@', 'th', 'anniversary', 'celebration', 'of', 'the', 'bezalel', 'school', 'of', 'arts', 'and', 'crafts', '.'], ['he', 'is', 'currently', 'head', 'of', 'a.s.', 'roma', \"'s\", 'youth', 'sector', '.'], ['it', 'was', 'formed', 'under', 'the', 'local', 'government', 'act', '1', '8', '9', '4', 'from', 'the', 'glanford', 'brigg', 'rural', 'sanitary', 'district', '.'], ['his', 'paternal', 'grandparents', 'were', 'johann', 'gustav', 'heckscher', ',', 'a', 'german', 'politician', 'who', 'was', 'the', 'minister', 'of', 'justice', 'in', 'the', 'provisional', 'german', 'government', 'headed', 'by', 'archduke', 'john', 'of', 'austria', ',', 'and', 'marie', 'antoinette', '(', 'née', 'brautigan', ')', 'heckscher', '.'], ['mary', 'mona', 'lisi', '(', 'born', '1', '9', '5', '0', ')', 'is', 'an', 'inactive', 'senior', 'united', 'states', 'district', 'judge', 'of', 'the', 'united', 'states', 'district', 'court', 'for', 'the', 'district', 'of', 'rhode', 'island', '.'], ['in', '1', '9', '5', '0', ',', 'the', 'family', 'moved', 'to', 'fåborg', ',', 'a', 'village', 'where', 'he', 'spent', 'most', 'of', 'his', 'childhood', '.'], ['daphnella', 'angulata', 'is', 'a', 'species', 'of', 'sea', 'snail', ',', 'a', 'marine', 'gastropod', 'mollusk', 'in', 'the', 'family', 'raphitomidae', '.'], ['while', 'the', 'parties', 'claim', 'not', 'to', 'discriminate', 'against', 'muslims', ',', 'they', 'in', 'practice', 'leave', 'the', 'muslims', 'in', 'a', '``', 'ghettoized', 'position', '.', \"''\"], ['other', 'stores', 'include', 'restaurants', ',', 'cafes', ',', 'specialty', 'and', 'services', 'stores', ',', 'food', 'court', ',', 'leisure', 'and', 'entertainment', 'stores', ',', 'cinemas', ',', 'sports', 'and', 'book', 'stores', '.'], ['fat', 'and', 'the', 'crumbled', 'cheese', 'are', 'added', 'and', 'the', 'mixture', 'is', 'whipped', 'until', 'creamy', '.'], ['for', 'instance', ',', 'shadow', 'banned', 'comments', 'posted', 'to', 'a', 'blog', 'or', 'media', 'website', 'will', 'not', 'be', 'visible', 'to', 'other', 'persons', 'accessing', 'that', 'site', 'from', 'their', 'computers', '.'], ['the', 'word', 'play', ',', 'making', 'extensive', 'use', 'of', 'puns', 'on', 'english', 'place', 'names', ',', 'is', 'typical', 'of', 'english', 'humour', '.'], ['yet', 'wilhelm', 'insisted', 'that', 'the', 'german', 'army', 'should', 'not', 'march', 'into', 'luxembourg', 'until', 'he', 'received', 'a', 'telegram', 'sent', 'by', 'his', 'cousin', 'george', 'v', ',', 'who', 'made', 'it', 'clear', 'that', 'there', 'had', 'been', 'a', 'misunderstanding', '.'], ['vieira', 'took', 'office', 'on', '1', 'october', '2', '0', '0', '5', ',', 'and', 'almost', 'two', 'weeks', 'later', 'he', 'and', 'gomes', 'had', 'a', 'meeting', ',', 'with', 'gomes', 'anticipating', 'that', 'the', 'two', 'would', 'be', 'able', 'to', 'work', 'together', '.'], ['it', 'came', 'in', '6', ',', '1', '0', ',', 'and', '1', '5', 'horsepower', 'sizes', '.'], ['it', 'was', 'retired', 'on', 'march', '6', ',', '1', '9', '5', '0', '.'], ['like', 'the', 'rv-', '3', 'to', 'rv-', '7', 'that', 'preceded', 'it', ',', 'the', 'rv-', '8', 'is', 'stressed', 'for', 'aerobatics', '.'], ['ptolemy', 'viii', 'probably', 'also', 'had', 'the', 'young', 'son', 'of', 'ptolemy', 'vi', 'and', 'cleopatra', 'ii', ',', 'who', 'was', 'also', 'called', 'ptolemy', ',', 'murdered', '.'], ['nonetheless', ',', 'now', 'it', 'is', 'clear', 'that', 'many', 'sociolinguistic', 'aspects', 'do', 'not', 'depend', 'on', 'modality', 'and', 'that', 'the', 'combined', 'examination', 'of', 'sociolinguistics', 'and', 'sign', 'language', 'offers', 'countless', 'opportunities', 'to', 'test', 'and', 'understand', 'sociolinguistic', 'theories', '.'], ['george', 'keppel', ',', '3', 'rd', 'earl', 'of', 'albemarle', ',', 'a', 'noted', 'military', 'commander', 'and', 'another', 'prominent', 'member', 'of', 'the', 'rockingham', 'whigs', 'was', 'also', 'a', 'patron', 'of', 'barret', '.'], ['he', 'immediately', 'established', 'himself', 'as', 'an', 'excellent', 'hitter', 'who', 'was', 'also', 'proficient', 'in', 'throwing', 'out', 'would-be', 'base-stealers', '.'], ['in', '2', '0', '1', '0', 'the', 'u.s.', 'national', 'park', 'service', 'described', '``', 'quetzalcoatlus', \"''\", 'as', 'the', 'world', \"'s\", 'second-largest', 'known', 'flying', 'creature', '.'], ['he', 'crossed', 'the', 'finish', 'line', 'wearing', 'mickey', 'mouse', 'ears', '.'], ['in', 'september', '1', '9', '4', '0', ',', 'he', 'joined', 'the', 'union', 'of', 'soviet', 'writers', 'of', 'ukraine', '.'], ['three', 'prestige', 'automotive', 'marques', 'were', 'added', 'to', 'the', 'volkswagen', 'portfolio', 'in', '1', '9', '9', '8', ':', 'bentley', ',', 'lamborghini', 'and', 'bugatti', '.'], ['in', 'january', '2', '0', '1', '9', ',', 'the', 'conversion', 'therapy', 'ban', 'was', 'extended', 'to', 'adults', '.'], ['leaves', 'are', 'alternate', 'on', 'the', 'stem', ',', 'not', 'toothed', '.'], ['his', 'wife', 'was', 'from', 'the', 'well-connected', 'wú', '(', '吳', ')', 'family', '.'], ['he', 'competes', 'in', '1', '0', '0', 'm', 'freestyle', ',', '5', '0', 'm', 'butterfly', ',', '5', '0', 'm', 'freestyle', ',', '4', 'x', '1', '0', '0', 'm', 'freestyle', ',', 'and', '4', 'x', '5', '0', 'm', 'freestyle', '.'], ['together', 'with', 'the', 'islands', 'of', 'alderney', 'and', 'guernsey', ',', 'sark', 'from', 'time', 'to', 'time', 'approves', 'bailiwick', 'of', 'guernsey', 'legislation', ',', 'which', ',', 'subject', 'to', 'the', 'approval', 'of', 'all', 'three', 'legislatures', ',', 'applies', 'in', 'the', 'entire', 'bailiwick', '.'], ['lieutenants', 'manners', 'and', 'george', 'edward', 'cecil', 'and', 'around', '1', '6', '0', 'guardsmen', 'were', 'killed', '.'], ['``', 'the', 'times', 'of', 'india', \"''\", 'also', 'rated', 'it', 'four', 'out', 'of', 'five', ':', '``', 'it', 'introduces', 'the', 'most', 'outrageous', 'scenes', 'in', 'popular', 'hindi', 'cinema', 'and', 'manages', 'to', 'get', 'away', 'with', 'it', 'because', 'it', \"'s\", 'all', 'done', 'with', 'an', 'infectious', 'zest', 'and', 'effervescence', 'that', 'keeps', 'the', 'ribs', 'tickling', '.', \"''\"], ['the', 'orange-crowned', 'warbler', 'has', 'olive-grey', 'upperparts', ',', 'yellowish', 'underparts', 'with', 'faint', 'streaking', 'and', 'a', 'thin', 'pointed', 'bill', '.'], ['bao', 'did', 'not', 'join', 'them', 'initially', 'but', 'he', 'did', 'so', 'later', 'when', 'he', 'felt', 'left', 'out', ',', 'and', 'became', 'addicted', 'to', 'movies', '.'], ['the', 'design', 'firm', 'control', 'group', 'inc.', 'also', 'leased', 'a', 'whole', 'floor', 'of', 'the', 'woolworth', 'building', 'in', '2', '0', '0', '6', '.'], ['optional', ',', 'although', 'compulsory', 'for', 'voting', 'and', 'other', 'government', 'transactions', '.'], ['it', 'is', 'located', 'to', 'the', 'north', 'of', 'the', 'macdonald', 'bridge', ',', 'at', 'the', 'narrows', 'of', 'halifax', 'harbour', '.'], ['the', 'northern', 'segment', 'of', 'sr', '1', '1', 'continuing', 'to', 'glenarm', 'street', 'became', 'sr', '1', '1', '0', ',', 'which', 'continues', 'briefly', 'as', 'the', 'harbor', 'freeway', 'before', 'becoming', 'the', 'pasadena', 'freeway', 'north', 'of', 'the', 'four', 'level', 'interchange', 'with', 'us', '1', '0', '1', '.'], ['the', 'uncensored', ',', 'ultra-violent', 'series', 'is', 'well', 'received', 'among', 'comic', 'book', 'insiders', 'and', 'fans', 'alike', ',', 'acclaimed', 'for', 'its', 'creative', 'allegiance', 'to', 'the', 'original', 'black', 'and', 'white', 'comic', 'book', '.'], ['on', 'may', '1', '6', ',', '1', '8', '5', '3', 'a', 'great', 'forest', 'fire', 'burned', 'from', 'pembroke', 'to', 'horton', ',', 'ontario', '.'], ['suncor', 'energy', 'hoped', 'to', 'recoup', 'significant', 'construction-related', 'tolls', ',', 'though', 'the', 'u.s.', 'federal', 'energy', 'regulatory', 'commission', 'did', 'not', 'rule', 'in', 'their', 'favor', '.'], ['this', 'was', 'confirmed', 'a', 'month', 'later', 'with', 'allmendinger', 'signing', 'a', 'multi-year', 'deal', 'with', 'the', 'team', '.'], ['rob', 'huff', 'was', 'fourth', 'fastest', 'for', 'chevrolet', ',', 'ahead', 'of', 'seat', 'driver', 'tiago', 'monteiro', 'and', 'farfus', '.'], ['``', 'end', 'hits', \"''\", 'followed', 'in', '1', '9', '9', '8', '.'], ['bruno', 'attempts', 'to', 'murder', 'paul', 'but', 'fails', 'and', 'leaves', 'france', '.'], ['more', 'than', '4', '0', 'different', 'monoterpenes', 'have', 'been', 'discovered', 'in', 'muscat', 'grapes', '(', 'as', 'well', 'as', 'in', 'other', 'aromatic', 'varieties', 'like', 'riesling', 'and', 'gewürztraminer', ')', ';', 'these', 'include', 'citronellol', ',', 'geraniol', ',', 'linalool', 'and', 'nerol', '.'], ['``', 'i', 'am', 'first', 'a', 'christian', ',', 'next', 'a', 'catholic', ',', 'then', 'a', 'calvinist', ',', 'fourth', 'a', 'paedobaptist', ',', 'and', 'fifth', 'a', 'presbyterian', '.'], ['in', '2', '0', '1', '9', ',', 'dark', 'horse', 'comics', 'released', 'a', 'pair', 'of', 'two-issue', 'comic', 'book', 'miniseries', 'set', 'between', 'the', 'first', 'and', 'second', 'seasons', 'of', '``', 'the', 'orville', \"''\", ',', 'collected', 'as', '``', 'the', 'orville', ':', 'season', '1', '.', '5', '``', '.'], ['has', 'been', 'running', 'a', 'photography', 'school', 'since', '2', '0', '0', '4', '.'], ['she', 'appeared', 'twice', 'on', '``', 'a', '&', 'amp', ';', 'e', \"'s\", 'an', 'evening', 'at', 'the', 'improv', \"''\", ',', 'on', 'the', 'a', '&', 'amp', ';', 'e', 'tv', 'network', ',', 'on', 'august', '5', ',', '1', '9', '8', '8', ',', 'and', 'march', '3', ',', '1', '9', '8', '9', '.'], ['above', 'ground', 'shelters', 'may', 'be', 'built', 'of', 'different', 'materials', 'such', 'as', 'steel', 'reinforced', 'concrete', 'or', '1', '/', '8', '``', '1', '0', 'ga.', 'hot', 'rolled', 'steel', 'and', 'may', 'be', 'installed', 'inside', 'a', 'home', ',', 'garage', ',', 'or', 'outbuilding', ',', 'or', 'as', 'a', 'stand-alone', 'unit', '.'], ['in', 'the', '3', 'rd', 'millennium', 'bc', ',', 'switzerland', 'lay', 'on', 'the', 'south-western', 'outskirts', 'of', 'the', 'corded', 'ware', 'horizon', ',', 'entering', 'the', 'early', 'bronze', 'age', '(', 'beaker', 'culture', ')'], ['the', 'aria', '``', 'sich', 'üben', 'im', 'lieben', \"''\", '(', '``', 'to', 'practice', 'sweet', 'courtship', ',', 'to', 'joyously', 'cuddle', \"''\", 'or', '``', 'to', 'cultivate', 'love', \"''\", ')', 'is', 'frequently', 'performed', 'as', 'a', 'concert', 'piece', '.'], ['she', 'went', 'on', 'to', 'play', 'parvati', 'in', '``', 'devon', 'ke', 'dev', '...', 'mahadev', \"''\", '.'], ['he', 'wrote', 'books', 'on', 'abnormal', 'psychology', ',', 'anomalistic', 'psychology', 'and', 'the', 'psychology', 'of', 'religion', '.'], ['if', 'the', 'answer', 'is', '``', 'yes', \"''\", ',', 'then', '``', 'x', \"''\", '1', '=true', ',', 'otherwise', '``', 'x', \"''\", '1', '=false', '.'], ['she', 'is', 'the', '2', '0', '1', '0', 'u.s.', 'senior', 'national', 'champion', 'in', 'rhythmic', 'gymnastics', ',', 'and', 'represented', 'the', 'united', 'states', 'at', 'the', '2', '0', '1', '2', 'olympic', 'games', '.'], ['in', '1', '9', '9', '1', ',', 'he', 'became', 'a', 'chairman', 'of', 'the', 'state', 'committee', 'of', 'the', 'republic', 'of', 'kazakhstan', 'on', 'youth', 'affairs', '.'], ['the', 'film', 'was', 'commercially', 'successful', 'in', 'box', 'office', 'and', 'ran', 'over', '2', '0', '0', 'days', 'completed', 'in', 'theatres', '.'], ['it', 'had', 'three', 'cells', 'and', 'a', 'petty', 'session', 'courtroom', '.'], ['at', 'the', 'end', 'of', '2', '0', '1', '1', ',', '``', 'billboard', \"''\", 'ranked', 'it', '#', '1', '3', 'on', 'its', 'annual', '``', 'top', '2', '5', 'tours', \"''\", ',', 'earning', 'nearly', '$', '4', '8', '.', '9', 'million', '.'], ['the', 'ad', 'agency', 'which', 'designed', 'the', 'slogan', 'has', 'denied', 'intent', 'to', 'connect', 'the', 'slogan', 'to', 'that', 'court', 'case', '.'], ['of', 'particular', 'note', 'is', 'the', 'maverick', 'scholar', ',', 'philosopher/poet', ',', 'chinweizu', 'whose', 'influence', 'straddles', 'the', 'globe', ',', 'particularly', 'the', 'black', 'world', '.'], ['it', 'was', 'recorded', 'in', 'new', 'york', 'without', 'any', 'previous', 'or', 'current', 'members', 'of', 'jefferson', 'starship', '.'], ['line', '7', '7', 'connects', 'it', 'to', 'hauketo', 'station', 'and', 'onwards', 'to', 'the', 'bjørndal', 'area', '.'], ['it', 'is', 'the', 'location', 'for', 'mundo', 'maya', 'international', 'airport', ',', 'which', 'is', 'located', 'just', 'outside', 'the', 'town', '.'], ['barbarossa', 'released', 'his', 'third', 'album', '``', 'imager', \"''\", 'in', '2', '0', '1', '5', ',', 'working', 'with', 'josé', 'gonzález', ',', 'ash', 'workman', ',', 'and', 'katy', 'young', 'to', 'create', 'the', 'record', '.'], ['since', 'electrons', 'can', 'not', 'give', 'up', 'energy', 'by', 'moving', 'to', 'lower', 'energy', 'states', ',', 'no', 'thermal', 'energy', 'can', 'be', 'extracted', '.'], ['the', 'football', 'tournament', 'at', 'the', '1', '9', '9', '7', 'southeast', 'asian', 'games', 'was', 'held', 'from', '5', 'to', '1', '8', 'october', 'in', 'jakarta', ',', 'indonesia', '.'], ['his', 'voice', 'acting', 'debut', 'was', 'kinyō', 'road', 'show', \"'s\", '``', 'angel', 'tactics', \"''\", 'in', '2', '0', '0', '5', '.'], ['the', 'two', 'are', 'eventually', 'shackled', 'to', 'each', 'other', 'by', 'an', 'adamantium', 'chain', ',', 'and', 'will', 'fight', 'each', 'other', 'incessantly', 'unless', 'gassed', 'unconscious', 'or', 'lowered', 'into', 'an', 'acid', 'pit', '.'], ['with', 'one', 'change', 'of', 'the', 'codice_', '6', 'file', ',', 'all', 'pages', 'that', 'include', 'the', 'file', 'will', 'display', 'the', 'latest', 'daily', 'quotation', '.'], ['castagnero', 'did', 'not', 'present', 'a', 'strong', 'challenge', 'to', 'combee', ',', 'and', 'he', 'ended', 'up', 'defeating', 'her', 'in', 'a', 'landslide', ',', 'receiving', '6', '5', '%', 'of', 'the', 'vote', ',', 'to', 'win', 'his', 'first', 'term', 'in', 'the', 'legislature', '.'], ['scantlebury', 'worked', 'with', 'keith', 'bartlett', 'at', 'the', 'national', 'physical', 'laboratory', 'in', 'south-west', 'london', ',', 'in', 'collaboration', 'with', 'the', 'national', 'research', 'development', 'corporation', '(', 'nrdc', ')', '.'], ['this', 'work', 'was', 'initiated', 'by', 'brethren', \"'s\", 'bishop', 'jan', 'blahoslav', 'who', 'translated', 'the', 'new', 'testament', 'from', 'greek', 'in', '1', '5', '6', '4', '.'], ['he', 'is', 'the', 'author', 'of', '``', 'el', 'cucuy', 'de', 'la', 'mañana', ':', 'my', 'life', 'in', 'radio', \"'s\", 'fast', 'lane', \"''\", '.'], ['though', 'winning', 'only', 'a', 'few', 'of', 'his', 'remaining', 'bouts', ',', 'walcott', 'succeeded', 'in', 'twice', 'beating', 'george', 'cole', ',', 'a', 'competent', 'hard', 'hitting', 'middleweight', 'from', 'philadelphia', ',', 'in', 'december', '1', '9', '0', '7', 'and', 'january', '1', '9', '0', '8', '.'], ['he', 'played', 'in', 'the', '1', '9', '9', '4', 'college', 'world', 'series', 'with', 'georgia', 'tech', ',', 'losing', 'in', 'the', 'final', 'round', '.'], ['when', 'the', 'angel', 'heard', 'this', ',', 'it', 'remembered', 'an', 'incident', 'where', 'rabbi', 'joshua', 'ben', 'levi', 'had', 'similarly', 'requested', 'the', 'knife', ',', 'and', 'then', 'took', 'the', 'opportunity', 'to', 'escape', '.'], ['with', 'the', 'release', 'of', 'his', 'classical', 'album', ',', '``', 'sacred', 'arias', \"''\", ',', 'bocelli', 'captured', 'a', 'listing', 'in', 'the', 'guinness', 'book', 'of', 'world', 'records', ',', 'as', 'he', 'simultaneously', 'held', 'the', 'no', '.'], ['fia', 'cup', 'cars', 'were', 'required', 'to', 'conform', 'with', 'group', 'c', 'regulations', 'with', 'the', 'exceptions', 'of', 'a', 'lower', 'prescibed', 'minimum', 'weight', '(', '7', '0', '0', 'kg', 'v', '7', '5', '0', 'kg', ')', ',', 'a', 'limitation', 'on', 'engine', 'revolutions', 'and', 'the', 'prohibition', 'of', 'carbon', 'disc', 'brakes', '.'], ['three', 'years', 'later', 'he', 'went', 'to', 'the', 'united', 'kingdom', 'for', 'further', 'military', 'training', '.'], ['about', '6', '.', '6', '0', '%', 'of', 'families', 'and', '9', '.', '6', '0', '%', 'of', 'the', 'population', 'were', 'below', 'the', 'poverty', 'line', ',', 'including', '1', '0', '.', '0', '0', '%', 'of', 'those', 'under', 'age', '1', '8', 'and', '9', '.', '0', '0', '%', 'of', 'those', 'age', '6', '5', 'or', 'over', '.'], ['passed', 'on', 'august', '1', '5', ',', '1', '8', '6', '1', ',', 'the', 'law', 'covered', 'property', 'of', 'more', 'than', '$', '5', '0', '0', '(', 'confederate', ')', 'in', 'value', 'and', 'several', 'luxury', 'items', '.'], ['meanwhile', ',', 'raghu', \"'s\", 'inability', 'to', 'provide', 'a', 'steady', 'income', 'for', 'his', 'family', 'creates', 'tension', 'between', 'him', 'and', 'rukmini', '.'], ['moore', 'house', 'is', 'a', 'flamboyant', 'chateauesque', 'residence', ',', 'and', 'the', '[', 'boise', 'city', 'national', ']', 'bank', 'building', 'is', 'richardsonian', 'romanesque', ';', 'the', '[', 'washington', 'county', ']', 'courthouse', 'had', 'a', 'georgian', 'revival', 'cupola', ',', 'a', 'projecting', 'pavilion', 'reminiscent', 'of', 'federal', 'architecture', 'and', 'round', 'romanesque', 'arches', '.', \"''\"], ['altenriet', 'was', 'first', 'mentioned', 'in', 'documents', 'around', '1', '1', '0', '0', 'as', 'the', 'name', 'of', 'the', 'local', 'noble', 'family', ',', 'the', 'name', 'is', 'derived', 'from', 'the', 'word', '``', 'ried', \"''\", 'for', 'swamp', '.'], ['a', 'numbness', 'developed', 'in', 'koufax', \"'s\", 'index', 'finger', 'on', 'his', 'left', 'hand', ',', 'and', 'the', 'finger', 'became', 'cold', 'and', 'white', '.'], ['while', 'there', 'he', 'studied', 'classical', 'guitar', 'under', 'bruce', 'holzman', '.'], ['lisa', 'lena', 'opas-hanninen', 'young', 'scholar', 'prize', 'recognizes', 'a', 'young', 'scholar', 'for', 'their', 'scholarship', 'or', 'contribution', 'using', 'digital', 'technology', 'at', 'a', 'humanities', 'conference', '.'], ['it', 'attracts', 'a', 'diverse', 'group', 'of', 'athletes', 'and', 'managed', 'to', 'attract', '1', '0', ',', '6', '7', '0', 'entrants', 'in', '2', '0', '0', '9', '.'], ['they', 'worked', 'on', 'a', 'farm', 'near', 'stanley', ',', 'wisconsin', ',', 'where', 'his', 'mother', 'and', 'his', 'younger', 'brother', 'died', 'in', 'a', 'fire', 'on', 'august', '7', ',', '1', '9', '3', '5', '.'], ['``', 'variation', '1', '4', ',', '1', '9', '8', '3', ':', \"''\", 'the', 'media', 'for', 'this', 'artwork', 'consists', 'of', 'sterling', 'silver', 'wire', ',', 'silk', 'thread', ',', 'handcrafted', 'paper', ',', 'pastel', ',', 'nails', ',', 'and', 'pencils', '.'], ['on', 'may', '2', '0', ',', '1', '9', '4', '7', ',', 'the', 'curious', 'five-year-old', 'tried', 'to', 'crack', 'the', 'slab', 'by', 'bouncing', 'it', 'on', 'the', 'rails', '.'], ['the', 'pierpont', 'government', 'found', 'support', 'among', 'the', 'counties', 'along', 'the', 'pennsylvania', 'and', 'ohio', 'borders', 'and', 'the', 'counties', 'along', 'the', 'b', '&', 'amp', ';', 'o', 'railroad', 'line', '.'], ['the', 'southern', 'boundary', 'was', 'defined', 'as', 'rancho', 'corte', 'madera', 'de', 'novato', '.'], ['opie', \"'s\", 'opinions', 'made', 'a', 'deep', 'impression', 'on', 'the', 'young', 'etty', ',', 'and', 'he', 'would', 'hold', 'these', 'views', 'throughout', 'his', 'career', '.'], ['jericho', 'jumps', 'into', 'the', 'water', 'and', 'swims', 'as', 'deep', 'and', 'far', 'as', 'they', 'can', '.'], ['released', 'on', 'digital', 'format', 'on', '1', 'september', '2', '0', '0', '8', 'on', 'paul', 'van', 'dyk', \"'s\", 'own', 'german', 'label', 'vandit', ',', 'this', 'release', 'only', 'consists', 'of', 'the', 'first', 'disc', 'out', 'of', 'the', '2', 'cd', 'edition', '.'], ['at', 'the', 'time', 'of', 'partition', 'he', 'was', 'an', 'active', 'member', 'of', 'the', 'indian', 'national', 'congress', ',', 'and', 'organized', 'relief', 'work', 'for', 'the', 'refugees', 'when', 'riots', 'broke', 'out', 'in', 'rawalpindi', 'in', 'march', '1', '9', '4', '7', '.'], ['in', 'odia', 'literature', 'too', ',', 'there', 'are', 'numerous', 'works', 'in', 'this', 'genre', '.'], ['a', 'film', 'adaptation', 'was', 'released', 'in', 'japanese', 'theaters', 'on', 'february', '2', '2', ',', '2', '0', '1', '4', '.'], ['the', 'college', 'offers', 'honours', 'courses', 'in', 'economics', ',', 'education', ',', 'english', '.'], ['after', 'three', 'personally', 'successful', 'seasons', 'at', 'hajduk', ',', 'he', 'was', 'noticed', 'and', 'acquired', 'by', 'italian', 'giants', 'juventus', 'in', '1', '9', '9', '8', '.'], ['she', 'has', 'served', 'as', 'european', 'commissioner', 'for', 'regional', 'policy', 'from', '2', '2', 'november', '2', '0', '0', '4', 'until', '4', 'july', '2', '0', '0', '9', ',', 'when', 'she', 'resigned', 'to', 'become', 'a', 'member', 'of', 'european', 'parliament', 'for', 'the', 'civic', 'platform', '.'], ['additionally', ',', 'in', '1', '9', '0', '3', ',', 'the', 'constitution', 'underwent', 'a', 'very', 'slight', 'linguistic', 'revision', ',', 'changing', 'the', 'spelling', 'of', 'some', 'words', 'where', 'orthography', 'had', 'changed', 'since', '1', '8', '1', '4', 'but', 'still', 'using', 'conservative', '1', '9', 'th', 'century', 'danish', '.'], ['``', 'the', 'indiscriminate', 'bombing', 'of', 'populated', 'areas', ',', 'with', 'or', 'without', 'prior', 'warning', ',', 'is', 'a', 'contravention', 'international', 'humanitarian', 'law', ',', \"''\", 'he', 'said', '.'], ['this', 'is', 'a', 'regulatory', 'response', 'to', 'the', 'first', 'pillar', ',', 'giving', 'regulators', 'better', \"'tools\", \"'\", 'over', 'those', 'previously', 'available', '.'], ['note', 'that', 'this', 'expression', 'is', 'not', 'well-defined', 'for', 'all-time', 'series', 'or', 'processes', ',', 'because', 'the', 'mean', 'may', 'not', 'exist', ',', 'or', 'the', 'variance', 'may', 'not', 'exist', '.'], ['he', 'volunteered', 'to', 'become', 'a', 'mate', 'on', 'the', 'barque', 'which', 'was', 'despatched', 'in', '1', '8', '5', '0', ',', 'under', 'the', 'command', 'of', 'captain', 'erasmus', 'ommanney', ',', 'on', 'a', 'mission', 'to', 'search', 'for', 'sir', 'john', 'franklin', 'and', 'his', 'ill-fated', 'expedition', 'to', 'find', 'the', 'northwest', 'passage', '.'], ['the', 'qualitative', 'definition', 'of', 'timeliness', 'is', 'how', 'early', 'a', 'block', 'is', 'prefetched', 'versus', 'when', 'it', 'is', 'actually', 'referenced', '.'], ['the', 'median', 'income', 'for', 'a', 'household', 'in', 'the', 'county', 'was', '$', '3', '5', ',', '3', '7', '4', ',', 'and', 'the', 'median', 'income', 'for', 'a', 'family', 'was', '$', '4', '3', ',', '6', '0', '0', '.'], ['elected', 'mayor', 'of', 'new', 'paltz', 'in', '2', '0', '0', '3', 'with', 'promises', 'of', 'environmental', 'sustainability', ',', 'west', 'gained', 'international', 'attention', ',', 'initially', 'as', 'part', 'of', 'the', 'first', 'green', 'party', 'majority', 'elected', 'in', 'new', 'york', 'state', 'and', 'later', 'for', 'risking', 'criminal', 'prosecution', 'to', 'marry', '2', '5', 'same-sex', 'couples', '.'], ['the', 'mac', 'os', 'x', 'version', 'of', 'the', 'game', 'was', 'released', 'by', 'feral', 'interactive', '.'], ['officers', 'included', 'louis', 'gerlinger', ',', 'sr.', ',', 'president', ';', 'h.l', '.'], ['scrushy', 'left', 'lifemark', 'in', '1', '9', '8', '3', 'and', 'founded', 'amcare', ',', 'inc', 'within', 'a', 'year', '.'], ['he', 'is', 'the', 'jonathan', 'r.', 'cole', 'professor', 'of', 'social', 'science', 'in', 'the', 'department', 'of', 'sociology', 'at', 'columbia', 'university', ',', 'the', 'president', 'of', 'the', 'american', 'assembly', 'at', 'columbia', 'university', ',', 'as', 'well', 'as', 'the', 'director', 'of', 'the', 'interdisciplinary', 'center', 'for', 'innovative', 'theory', 'and', 'empirics', '(', 'incite', ')', '.'], ['the', 'port', 'of', 'novorossiysk', 'mainly', 'handles', 'grain', ',', 'coal', ',', 'mineral', 'fertilizers', ',', 'timber', ',', 'oil', 'and', 'oil', 'products', ',', 'containerized', ',', 'food', ',', 'and', 'general', 'cargo', '.'], ['only', 'the', 'portion', 'of', 'the', 'rim', 'that', 'is', 'still', 'relatively', 'intact', 'is', 'from', 'the', 'west-northwest', 'counter-clockwise', 'to', 'the', 'south', '.'], ['he', 'became', 'a', 'master', 'in', 'the', 'local', 'guild', 'in', '1', '6', '6', '2', '.'], ['in', '1', '9', '1', '1', ',', 'siggins', 'was', 'recruited', 'by', 'the', 'grey', 'industrial', 'and', 'political', 'council', 'to', 'work', 'as', 'an', 'organiser', 'in', 'the', 'grey', 'district', ',', 'on', 'the', 'west', 'coast', 'of', 'the', 'south', 'island', '.'], ['in', '2', '0', '1', '3', ',', 'it', 'was', 'added', 'to', 'the', 'buildings', 'at', 'risk', 'register', 'for', 'scotland', ',', 'with', 'the', 'roof', 'continuing', 'to', 'shed', 'slates', ',', 'problems', 'with', 'the', 'guttering', 'and', 'pointing', ',', 'and', 'minor', 'structural', 'cracks', '.'], ['another', 'new', 'change', 'came', 'in', '1', '9', '7', '9', 'when', 'winter', 'and', 'the', 'paul', 'winter', 'consort', 'agreed', 'to', 'be', 'the', 'artists-in-residence', 'at', 'the', 'cathedral', 'of', 'st.', 'john', 'the', 'divine', '.'], ['espedal', 'has', 'been', 'popularly', 'mistaken', 'for', 'a', 'village', ',', 'a', 'misconception', 'perpetuated', 'by', 'the', 'aforementioned', 'documentary', '.'], ['thwe-da', 'and', 'wareru', 'had', 'at', 'least', 'one', 'daughter', ',', 'may', 'hnin', 'theindya', ',', 'who', 'later', 'became', 'a', 'wife', 'of', 'tarabya', 'of', 'pegu', '.'], ['the', 'animated', 'adaptation', 'of', 'the', 'miniseries', 'was', 'officially', 'announced', 'in', 'february', '2', '0', '1', '9', 'to', 'be', 'in', 'production', 'and', 'was', 'released', 'later', 'in', 'the', 'spring', '.'], ['the', 'listed', 'property', 'includes', 'two', 'contributing', 'buildings', ':', 'the', 'main', 'house', '(', 'open', 'to', 'the', 'public', ')', 'and', 'the', 'former', 'kitchen', '(', 'closed', 'to', 'public', ',', 'used', 'as', 'staff', 'offices', ')', '.'], ['jon', 'caramanica', 'of', '``', 'the', 'new', 'york', 'times', \"''\", 'praised', 'her', 'stage', 'presence', ',', 'saying', ':', '``', 'she', 'smiles', 'and', 'sighs', 'as', 'easily', 'as', 'she', 'loses', 'herself', 'in', 'reverie', 'when', 'the', 'song', 'demands', 'it', \"''\", '.'], ['the', 'segment', 'cost', '$', '2', '8', ',', '3', '1', '3', '.', '2', '2', '(', '1', '9', '1', '5', 'usd', ')', ',', 'with', 'the', 'state', 'giving', 'in', '$', '1', '8', ',', '4', '0', '2', '.', '9', '4', 'in', 'funds', 'for', 'the', 'project', '.'], ['however', ',', 'in', '2', '0', '1', '6', 'gates', 'changed', 'this', 'estimate', 'to', 'some', 'time', 'within', 'the', 'following', 'two', 'years', '.'], ['karpati', 'died', 'on', 'february', '6', ',', '2', '0', '0', '9', ',', 'aged', '7', '4', ',', 'and', 'was', 'buried', 'in', 'montreal', 'at', 'the', 'baron', 'de', 'hirsch', 'cemetery', '.'], ['despite', 'the', 'difference', 'in', 'faith', ',', 'where', 'the', 'question', 'has', 'arisen', 'of', 'common', 'rajput', 'honour', ',', 'there', 'have', 'been', 'instances', 'where', 'both', 'muslim', 'and', 'hindu', 'rajputs', 'have', 'united', 'together', 'against', 'threats', 'from', 'external', 'ethnic', 'groups', '.'], ['the', 'sixth', 'russo-turkish', 'war', 'began', 'in', '1', '8', '0', '6', 'and', 'ended', 'in', 'may', '1', '8', '1', '2', ',', 'just', '1', '3', 'days', 'before', 'napoleon', \"'s\", 'invasion', 'of', 'russia', '.'], ['he', 'then', 'uses', 'them', 'to', 'expose', 'himself', 'to', 'mystical', 'monkey', 'power', 'and', 'styles', 'himself', 'as', 'monkey', 'fist', '(', 'a', 'spoonerism', 'of', '``', 'monty', 'fiske', \"''\", ')', '.'], ['from', '1', '9', '3', '9', 'to', '1', '9', '4', '6', 'he', 'was', 'principal', 'comedian', 'of', 'the', \"d'oyly\", 'carte', 'opera', 'company', 'playing', 'the', 'comic', 'leads', 'in', 'gilbert', 'and', 'sullivan', \"'s\", 'savoy', 'operas', '.'], ['[', '[', 'wu', 'mingxia', ']', ']', 'won', 'diving', 'gold', 'in', '``', 'women', \"'s\", 'sync', '3', 'm', 'springboard', \"''\", ',', 'becoming', 'the', 'only', 'chinese', 'athlete', 'to', 'win', 'three', 'gold', 'medals', 'in', 'a', 'single', 'event', '.'], ['the', 'principal', 'role', 'of', 'the', 'chauchat', 'was', 'to', 'provide', 'a', 'mobile', 'barrage', 'during', 'the', 'advance', '.'], ['this', 'technique', 'allows', 'iast', 'to', 'combine', 'the', 'strengths', 'of', 'both', 'sast', 'and', 'dast', 'methods', 'as', 'well', 'as', 'providing', 'access', 'to', 'code', ',', 'http', 'traffic', ',', 'library', 'information', ',', 'backend', 'connections', 'and', 'configuration', 'information', '.'], ['during', 'that', 'time', 'candidates', 'stood', 'in', 'state', 'and', 'federal', 'elections', '.'], ['club', 'de', 'deportes', 'maipo', 'quilicura', 'is', 'a', 'chilean', 'football', 'club', ',', 'their', 'home', 'town', 'is', 'the', 'commune', 'of', 'buin', ',', 'chile', '.'], ['this', 'status', 'remained', 'with', 'this', 'church', 'till', '1', '9', '3', '6', 'when', 'st.', 'francis', 'cathedral', 'was', 'built', 'in', 'ernakulam'], ['kara', 'rheault', '(', 'born', 'november', '9', ',', '1', '9', '7', '5', ')', ',', 'best', 'known', 'as', 'kara', 'ro', ',', 'is', 'a', 'boxing', 'and', 'mma', 'trainer', ',', 'and', 'a', 'retired', 'canadian', 'boxer', '.'], ['the', 'fort', 'was', 'abandoned', 'in', '1', '8', '4', '2', ',', 'after', 'the', 'end', 'of', 'the', 'war', ',', 'and', 'the', 'area', 'remained', 'virtually', 'unpopulated', 'until', 'the', '1', '8', '9', '0', 's', '.'], ['she', 'responded', 'with', '``', 'mrs', 'schofield', \"'s\", 'gcse', \"''\", ',', 'a', 'poem', 'about', 'violence', 'in', 'other', 'fiction', ',', 'and', 'the', 'point', 'of', 'it', '.'], ['its', 'programming', 'is', 'simulcast', 'on', 'fm', 'translator', 'w', '2', '4', '9', 'dw', '9', '7', '.', '7', 'mhz', '.'], ['in', '1', '9', '5', '6', ',', 'alfred', 'marshall', 'opened', 'a', 'new', 'addition', 'to', 'his', 'existing', 'supermarket', ',', 'located', 'in', 'beverly', ',', 'massachusetts', ',', 'utilizing', 'funding', 'provided', 'by', 'two', 'business', 'partners', '.'], ['he', 'also', 'starred', 'as', 'the', 'title', 'character', 'in', 'the', 'melbourne', 'theatre', 'company', 'production', '``', 'poor', 'boy', \"''\", 'alongside', 'guy', 'pearce', 'and', 'abi', 'tucker', '.'], ['some', 'nutritionists', 'state', 'that', 'they', 'are', 'not', 'inherently', 'more', 'healthy', 'than', 'modern', 'grains', ',', 'and', 'that', 'ancient', 'and', 'modern', 'grains', 'have', 'similar', 'health', 'benefits', 'when', 'eaten', 'as', 'whole', 'grains', '.'], ['the', 'hall', 'is', 'rectangle', 'in', 'plan', 'and', 'is', 'built', 'over', 'three', 'storeys', 'and', 'is', 'situated', 'in', 'the', 'centre', 'of', 'the', 'north', 'end', 'of', 'the', 'small', 'estate', '.'], ['in', 'spring', 'he', 'won', 'the', 'chippenham', 'stakes', 'and', 'the', 'burwell', 'stakes', 'over', 'one', 'and', 'a', 'half', 'miles', 'at', 'newmarket', '.'], ['neela', '(', ')', 'is', 'a', '2', '0', '0', '1', 'indian', 'kannada', 'drama', 'film', 'directed', 'by', 't.', 's.', 'nagabharana', 'and', 'written', 'by', 'kotiganahalli', 'ramaiah', '.'], ['two', 'music', 'videos', 'were', 'shot', 'to', 'support', 'the', 'release', 'of', 'the', 'album', 'but', 'only', 'one', ',', '``', 'you', '&', 'amp', ';', 'i', \"''\", ',', 'was', 'broadcast', 'on', 'music', 'channels', '.'], ['the', 'first', 'was', 'accepted', 'on', '1', '2', 'july', '2', '0', '1', '1', '.'], ['during', 'the', 'transition', 'state', ',', 'the', 'fragment', 'coordinated', 'to', 'the', 'amidinium', 'catalyst', 'develops', 'partial', 'anionic', 'character', 'due', 'to', 'the', 'electronegativity', 'of', 'the', 'oxygen', 'and', 'the', 'electron-withdrawing', 'ester', 'group', '.'], ['because', 'the', 'stiffened', 'arterial', 'walls', 'of', 'arteriosclerosis', 'do', 'not', 'compress', 'with', 'pressure', 'normally', ',', 'the', 'blood', 'pressure', 'reading', 'is', 'theoretically', 'higher', 'than', 'the', 'true', 'intra-arterial', 'measurement', '.'], ['the', 'private', 'kitakyushu', 'railway', ',', 'which', 'had', 'a', 'track', 'between', 'and', 'by', '1', '9', '2', '6', 'and', 'had', 'expanded', 'southwards', 'to'], ['michael', 'karas', 'studied', 'chemistry', 'at', 'the', 'university', 'of', 'bonn', ',', 'where', 'he', 'obtained', 'a', 'phd', 'in', 'the', 'field', 'of', 'physical', 'chemistry', 'in', '1', '9', '8', '2', '.'], ['as', 'foghorn', 'leaves', 'he', 'walks', 'past', 'a', 'wooden', 'tower', 'with', 'a', 'sign', 'that', 'reads', '``', 'do', \"n't\", 'look', 'up', \"''\", '.'], ['the', 'lower', 'house', 'assembly', '(', '``', 'mazhilis', \"''\", ')', 'has', '1', '0', '7', 'seats', ',', 'elected', 'for', 'a', 'four-year', 'term', ',', '9', '8', 'seats', 'are', 'from', 'party', 'lists', ',', '9', '-', 'from', 'assembly', 'of', 'people', '.'], ['he', 'was', 'assistant', 'editor', 'of', 'the', 'newspaper', '``', 'diário', 'de', 'notícias', \"''\", ',', 'a', 'position', 'he', 'had', 'to', 'leave', 'after', 'the', 'democratic', 'revolution', 'in', '1', '9', '7', '4', '.'], ['hochstein', 'is', 'a', 'former', 'of', 'the', 'supervisory', 'board', 'of', 'the', 'ukrainian', 'energy', 'company', 'naftogaz', '.'], ['he', 'batted', '.', '3', '3', '3', 'and', 'led', 'all', 'players', 'in', 'the', 'tournament', 'with', '5', 'home', 'runs', 'and', '1', '0', 'rbi', '.'], ['the', 'kerala', 'state', 'assembly', 'raised', 'its', 'voice', 'in', 'unison', 'to', 'strongly', 'condemn', 'the', 'hacking', 'of', 't.', 'j.', 'joseph', ',', 'by', 'fundamentalist', 'elements', 'on', 'the', 'following', 'day', '.'], ['today', ',', 'at', 'the', 'top', 'o', \"'\", 'the', 'world', 'area', ',', 'open', 'fields', 'contain', 'milkwort', ',', 'ironweed', ',', 'queen', 'anne', \"'s\", 'lace', ',', 'goldenrods', 'and', 'asters', '.'], ['the', 'parliament', 'started', 'working', 'under', '``', 'new', 'norms', \"''\", 'including', 'enhanced', 'hygiene', 'measures', ',', 'use', 'of', 'masks', 'and', 'social', 'distancing', '.'], ['on', 'october', '3', '0', ',', '2', '0', '1', '4', 'the', 'telescope', 'ownership', 'was', 'transferred', 'to', 'the', 'university', 'of', 'hawaii', '.'], ['the', '``', 'süddeutsche', 'zeitung', \"''\", 'reported', 'that', 'a', 'total', 'of', '4', '0', 'out', 'of', 'the', '9', '0', 'employees', 'were', 'affected', 'by', 'the', 'job', 'cuts', '.'], ['two', 'brewers', 'have', 'won', 'the', 'wilson', 'defensive', 'player', 'of', 'the', 'year', 'award', '.'], ['the', 'tanah', 'rata', 'convent', 'is', 'one', 'of', 'the', 'few', 'in', 'the', 'region', 'which', 'still', 'contains', 'an', 'operating', 'school', 'and', 'a', 'church', '.'], ['albemarle', 'lived', 'at', 'bagshot', 'park', 'on', 'the', 'crown', 'estate', 'to', 'the', 'south', 'of', 'windsor', '.'], ['an', 'experimental', 'electric', 'version', 'of', 'the', 'fto', 'was', 'produced', '(', 'called', 'the', 'ftoev', ')', ',', 'utilizing', 'high-performance', 'lithium-ion', 'batteries', ',', 'and', 'set', 'a', 'record', 'when', 'it', 'covered', 'in', '2', '4', 'hours', 'in', 'december', '1', '9', '9', '9', '.'], ['throughout', 'her', 'artistic', 'career', 'her', 'work', 'was', 'featured', 'in', 'the', 'armory', 'show', 'at', '1', '0', '0', ',', 'the', 'whitney', 'museum', ',', 'and', 'others', '.'], ['an', 'adaptation', 'by', 'osamu', 'tezuka', 'was', 'serialized', 'in', 'shogakukan', \"'s\", '``', 'weekly', 'shōnen', 'sunday', \"''\", 'from', '1', '9', '7', '2', 'to', '1', '9', '7', '3', '.'], ['kyra', 'e.', 'hicks', '(', 'born', 'october', '1', ',', '1', '9', '6', '5', ')', 'is', 'an', 'author', ',', 'quilter', 'and', 'quilt', 'historian', '.'], ['his', 'narrative', 'nonfiction', 'books', 'include', '``', 'the', 'last', 'of', 'the', 'tribe', \"''\", '(', '2', '0', '1', '0', ')', ',', '``', 'between', 'man', 'and', 'beast', \"''\", '(', '2', '0', '1', '3', ')', ',', 'and', '``', 'a', 'brotherhood', 'of', 'spies', \"''\", '(', '2', '0', '1', '8', ')', '.'], ['his', 'father', 'was', 'new', 'south', 'wales', 'labor', 'mp', 'bill', 'knott', ',', 'who', 'represented', 'the', 'seats', 'of', 'wollondilly', 'and', 'kiama', 'in', 'state', 'parliament', 'from', '1', '9', '7', '8', 'to', '1', '9', '8', '6', '.'], ['among', 'the', 'newly', 'confirmed', 'cases', ',', '5', 'were', 'in', 'chengdu', ',', '4', 'in', 'bazhong', ',', '3', 'in', 'dazhou', ',', '2', 'in', 'luzhou', ',', '2', 'in', 'garzê', ',', '1', 'in', 'mianyang', ',', '1', 'in', 'neijiang', ',', '1', 'in', 'nanchong', ',', 'and', '1', 'in', 'yibin', '.'], ['in', 'healthy', 'humans', '(', 'and', 'many', 'other', 'animals', ')', ',', 'the', 'process', 'of', 'urination', 'is', 'under', 'voluntary', 'control', '.'], ['senegal', \"'s\", 'youth', 'blamed', 'the', 'wreck', 'on', 'the', 'inability', 'of', 'their', 'government', 'to', 'create', 'jobs', 'in', 'their', 'country', '.'], ['the', 'fields', 'cover', 'an', 'estimated', '7', '5', '0', '0', 'square', 'kilometers', '.'], ['the', 'school', 'continued', 'to', 'operate', 'for', 'another', 'four', 'years', ',', 'closing', 'in', '1', '9', '7', '5', '.'], ['koralnik', 'started', 'his', 'career', 'studying', 'early', 'neurological', 'aspects', 'of', 'hiv/aids', '.'], ['as', 'of', 'the', 'census', 'of', '2', '0', '1', '0', ',', 'there', 'were', '1', ',', '0', '9', '8', 'people', ',', '3', '9', '9', 'households', ',', 'and', '2', '7', '1', 'families', 'living', 'in', 'the', 'city', '.'], ['canada', 'recognized', 'the', 'people', \"'s\", 'republic', 'of', 'china', 'as', 'the', 'sole', 'legitimate', 'government', 'of', 'china', 'on', 'october', '1', '3', ',', '1', '9', '7', '0', ',', 'and', 'a', 'canadian', 'embassy', 'was', 'opened', 'in', 'beijing', 'on', 'june', '1', '0', ',', '1', '9', '7', '1', '.'], ['in', '2', '0', '1', '0', ',', 'for', 'example', ',', 'she', 'successfully', 'stopped', 'the', 'lee', 'administration', \"'s\", 'attempt', 'to', 'cancel', 'the', 'plan', 'to', 'establish', 'sejong', 'city', ',', 'a', 'new', 'national', 'center', 'of', 'administration', ',', 'arguing', 'that', 'the', 'plan', 'was', 'a', 'promise', 'made', 'to', 'the', 'people', '.'], ['in', '``', 'invisible', 'chains', \"''\", ',', 'perrin', 'argues', 'that', 'npf', 'has', 'also', 'become', 'active', 'in', 'western', 'canada', '.'], ['it', 'was', 'initially', 'assigned', 'to', 'the', '``', 'vii', 'armee', \"''\", 'front', '.'], ['he', 'was', 'appointed', 'president', 'of', 'dalian', 'naval', 'academy', 'in', 'october', '1', '9', '9', '7', ',', 'and', 'attained', 'the', 'rank', 'of', 'rear', 'admiral', 'in', 'july', '1', '9', '9', '8', '.'], ['other', 'subjects', 'include', 'the', 'journey', 'of', 'the', 'magi', ',', 'where', 'they', 'and', 'perhaps', 'their', 'retinue', 'are', 'the', 'only', 'figures', ',', 'usually', 'shown', 'following', 'the', 'star', 'of', 'bethlehem', ',', 'and', 'there', 'are', 'relatively', 'uncommon', 'scenes', 'of', 'their', 'meeting', 'with', 'herod', 'and', 'the', '``', 'dream', 'of', 'the', 'magi', \"''\", '.'], ['shifting', 'volumes', 'of', 'sand', 'in', 'surf', 'city', 'exposed', 'the', 'structure', 'of', 'the', 'wrecked', 'schooner', '``', 'william', 'h.', 'sumner', \"''\", ',', 'which', 'grounded', 'in', '1', '9', '1', '9', 'and', 'is', 'occasionally', 'visible', 'along', 'the', 'beach', '.'], ['going', 'to', 'pilotless', 'airliners', 'could', 'be', 'done', 'in', 'one', 'bold', 'step', 'or', 'in', 'gradual', 'improvements', 'like', 'by', 'reducing', 'the', 'cockpit', 'crew', 'for', 'long', 'haul', 'missions', 'or', 'allowing', 'single', 'pilot', 'cargo', 'aircraft', '.'], ['he', 'competed', 'in', 'two', 'events', 'at', 'the', '1', '9', '8', '4', 'winter', 'olympics', '.'], ['according', 'to', 'justin', ',', 'ptolemy', 'viii', 'did', 'the', 'deed', 'personally', ',', 'on', 'the', 'night', 'of', 'his', 'wedding', 'to', 'cleopatra', 'in', '1', '4', '5', 'bc', ',', 'and', 'the', 'boy', 'died', 'in', 'his', 'mother', \"'s\", 'arms', '.'], ['in', '1', '9', '8', '1', ',', 'the', 'harbor', 'freeway', 'between', 'gaffey', 'street', 'and', 'interstate', '1', '0', 'became', 'interstate', '1', '1', '0', ',', 'replacing', 'the', 'sr', '1', '1', 'designation', '.'], ['however', ',', 'by', 'their', 'capacity', 'to', 'carry', 'spores', 'of', 'mycorrhizal', 'fungi', 'and', 'mycorrhiza', 'helper', 'bacteria', 'on', 'their', 'tegument', ',', 'soil', 'springtails', 'play', 'a', 'positive', 'role', 'in', 'the', 'establishment', 'of', 'plant-fungal', 'symbioses', 'and', 'thus', 'are', 'beneficial', 'to', 'agriculture', '.'], ['first', 'american', 'international', 'bank', '(', 'formerly', 'hong', 'kong', 'bank', ')', 'and', 'abacus', 'federal', 'savings', 'bank', 'on', 'the', 'bowery', '.'], ['the', 'unit', 'received', 'a', 'distinguished', 'unit', 'citation', 'and', 'a', 'french', 'citation', 'for', 'these', 'missions', '.'], ['ogden', \"'s\", 'word', 'lists', 'include', 'only', 'word', 'roots', ',', 'which', 'in', 'practice', 'are', 'extended', 'with', 'the', 'defined', 'set', 'of', 'affixes', 'and', 'the', 'full', 'set', 'of', 'forms', 'allowed', 'for', 'any', 'available', 'word', '(', 'noun', ',', 'pronoun', ',', 'or', 'the', 'limited', 'set', 'of', 'verbs', ')', '.'], ['the', 'preferred', 'treatment', 'of', 'spetzler-martin', 'grade', '1', 'and', '2', 'avms', 'in', 'young', ',', 'healthy', 'patients', 'is', 'surgical', 'resection', 'due', 'to', 'the', 'relatively', 'small', 'risk', 'of', 'neurological', 'damage', 'compared', 'to', 'the', 'high', 'lifetime', 'risk', 'of', 'hemorrhage', '.'], ['biotechnologies', 'are', 'also', 'well', 'represented', 'in', 'the', 'grenoble', 'region', 'with', 'the', 'molecular', 'biology', 'research', 'center', 'biomérieux', ',', 'the', 'clinatec', 'center', ',', 'the', 'regional', 'center', 'nanobio', 'and', 'many', 'ramifications', 'of', 'the', 'global', 'competitiveness', 'cluster', 'lyonbiopôle', '.'], ['the', 'album', 'spawned', 'six', 'singles', 'but', 'only', 'three', 'of', 'them', 'were', 'international', 'hits', ':', '``', 'va', 'a', 'ser', 'abuela', \"''\", ',', '``', 'feel', 'the', 'rhythm', \"''\", ',', 'and', '``', 'titerito', \"''\", '.'], ['the', 'jonesborough', 'repertory', 'theatre', 'produces', 'community', 'theater', 'and', 'hosts', 'educational', 'workshops', 'for', 'aspiring', 'actors', '.'], ['stretching', 'inland', 'from', 'the', 'aegean', 'coastal', 'plain', ',', 'the', 'central', 'anatolia', 'region', 'occupies', 'the', 'area', 'between', 'the', 'two', 'zones', 'of', 'the', 'folded', 'mountains', ',', 'extending', 'east', 'to', 'the', 'point', 'where', 'the', 'two', 'ranges', 'converge', '.'], ['john', 'bisbee', ',', 'who', 'had', 'represented', 'churchill', 'and', 'koch', 'from', 'the', 'beginning', ',', 'argued', 'their', 'case', '.'], ['speaking', 'of', 'nietzsche', ',', 'he', 'says', ':', '``', 'his', 'personal', 'feelings', 'initiate', 'him', 'into', 'those', 'of', 'the', 'criminal', '...', 'in', 'general', 'all', 'creative', 'originality', ',', 'all', 'artist', 'nature', 'in', 'the', 'broadest', 'sense', 'of', 'the', 'word', ',', 'does', 'the', 'same', '.'], ['it', 'was', 'one', 'of', 'the', 'last', 'hand-animated', 'programmes', 'on', 'the', 'bbc', '.'], ['the', 'hunstanton', 'electoral', 'ward', 'belongs', 'to', 'the', 'borough', 'council', 'of', 'king', \"'s\", 'lynn', 'and', 'west', 'norfolk', '.'], ['diagnosis', 'is', 'made', 'with', 'isolation', 'of', '``', 'pasteurella', 'multocida', \"''\", 'in', 'a', 'normally', 'sterile', 'site', '(', 'blood', ',', 'pus', ',', 'or', 'cerebrospinal', 'fluid', ')', '.'], ['from', 'a', 'modern', 'perspective', ',', 'most', 'spark', 'transmitters', 'could', 'be', 'regarded', 'as', 'tesla', 'coils', '.'], ['``', 'the', 'greatest', 'love', \"''\", 'swept', 'the', 'mbc', 'drama', 'awards', ',', 'including', 'a', 'top', 'excellence', 'award', 'for', 'gong', '(', 'her', 'third', 'consecutive', ',', 'after', '``', 'thank', 'you', \"''\", 'and', '``', 'pasta', \"''\", ')', '.'], ['at', 'the', 'time', 'there', 'were', 'no', 'warning', 'sirens', 'in', 'hays', '.'], ['tomaszewo', 'is', 'a', 'settlement', 'in', 'the', 'administrative', 'district', 'of', 'gmina', 'wronki', ',', 'within', 'szamotuły', 'county', ',', 'greater', 'poland', 'voivodeship', ',', 'in', 'west-central', 'poland', '.'], ['in', 'season', '4', 'he', 'beat', 'big', 'bad', 'billy', 'goatetsky', '.'], ['it', 'focuses', 'deeply', 'on', 'the', 'subject', 'of', 'cerebral', 'palsy', ',', 'quality', 'of', 'life', ',', 'and', 'euthanasia', '.'], ['at', 'the', 'end', 'of', 'the', 'season', ',', 'the', 'car', 'recorded', 'a', 'best', 'finish', 'of', 'fifth', 'place', 'at', 'the', ',', 'and', 'had', 'scored', 'just', 'twenty-seven', 'points', ',', 'leaving', 'mclaren', 'ninth', 'in', 'the', 'world', 'constructors', \"'\", 'championship', '.'], ['this', 'presents', 'the', 'antigen', 'in', 'such', 'a', 'way', 'as', 'to', 'produce', 'a', 'greater', 'action', 'than', 'the', 'simple', 'aqueous', 'tetanus', 'toxoid', '.'], ['they', 'also', 'spend', 'more', 'time', 'in', 'social', 'conversations', 'than', 'boys', 'and', 'are', 'more', 'likely', 'to', 'self-disclose', 'among', 'their', 'peers', 'than', 'boys', '.'], ['his', 'father', 'william', 'harvey', 'was', 'a', 'member', 'of', 'parliament', 'for', 'essex', ',', 'but', 'died', 'when', 'harvey', 'was', 'only', 'five', 'years', 'old', ',', 'in', '1', '7', '6', '3', '.'], ['it', 'is', 'a', 'four-story', 'brick', 'structure', ',', 'roughly', ',', 'with', 'a', 'flat', 'roof', '.'], ['in', 'campaign', 'mode', ',', 'the', 'player', 'allocates', 'gold', 'toward', 'researching', 'new', 'grades', 'of', 'units', '.'], ['bacarisse', 'composed', 'for', 'the', 'piano', ',', 'mixed', 'chamber', 'ensembles', ',', 'operas', 'including', '``', 'el', 'tesoro', 'de', 'boabdil', \"''\", 'which', 'won', 'a', 'french', 'radio', 'award', 'in', '1', '9', '5', '8', ',', 'and', 'orchestral', 'works', 'including', 'four', 'piano', 'concertos', 'and', 'a', 'violin', 'concerto', '.'], ['it', 'is', 'variously', 'ascribed', 'to', 'a', '1', '6', '4', '3', 'christmas', 'day', 'truce', 'between', 'combatants', 'in', 'the', 'english', 'civil', 'war', ',', 'local', 'holly', 'tree', 'coppices', ',', 'or', 'the', 'christmas', 'family', ',', 'which', 'had', 'local', 'connections', '.'], ['the', 'anglican', 'diocese', 'of', 'kwoi', 'is', 'one', 'of', '1', '3', 'within', 'the', 'anglican', 'province', 'of', 'abuja', ',', 'itself', 'one', 'of', '1', '4', 'provinces', 'within', 'the', 'church', 'of', 'nigeria', '.'], ['as', 'world', 'war', 'ii', 'came', 'to', 'an', 'end', 'in', '1', '9', '4', '5', ',', 'the', 'soviet', 'union', 'incorporated', 'the', 'region', 'into', 'the', 'lithuanian', 'ssr', '.'], ['during', 'these', 'wars', ',', 'battles', 'were', 'fought', 'mostly', 'in', 'the', 'mountainous', 'tribal', 'areas', 'of', 'kohistan-e-marri', 'and', 'adjacent', 'localities', '.'], ['the', 'overall', 'height', 'of', 'the', 'spacecraft', 'was', '3', '.', '6', 'm', '.'], ['this', 'historic', 'district', 'is', 'a', 'national', 'historic', 'landmark', 'district', 'and', 'is', 'listed', 'on', 'the', 'national', 'register', 'of', 'historic', 'places', 'as', 'the', 'old', 'san', 'juan', 'historic', 'district', '.'], ['sandra', 'ann', 'goodrich', 'was', 'born', 'and', 'brought', 'up', 'in', 'dagenham', ',', 'essex', ',', 'england', '.'], ['their', 'coat', 'color', 'is', 'always', 'tawny', ',', 'ranging', 'from', 'a', 'pale', 'honey', 'color', 'to', 'reddish-gold', '.'], ['john', 'andrew', 'returned', 'by', 'the', 'end', 'of', 'that', 'year', 'to', 'start', '``', 'the', 'riverine', 'grazier', \"''\", 'newspaper', 'at', 'hay', 'in', 'opposition', 'to', '``', 'the', 'hay', 'standard', \"''\", '.'], ['``', 'this', 'might', 'be', 'it', ',', 'darling', \"''\", 'is', 'creosote', \"'s\", 'first', 'release', 'since', 'this', 'statement', ',', 'and', 'is', 'only', 'available', 'on', 'vinyl', ',', 'directly', 'from', 'anderson', ',', 'at', 'his', 'shows', '.'], ['vladimir', 'putin', \"'s\", 'government', 'is', 'also', 'using', 'natalist', 'policies', 'by', 'giving', 'rewards', 'and', 'promoting', 'more', 'children', 'in', 'families', '.'], ['meanwhile', ',', 'the', 'government', 'of', 'punjab', 'announced', 'a', 'rs', '1', '0', 'billion', 'relief', 'package', 'for', 'financial', 'support', 'of', '2', '.', '5', 'million', 'families', 'of', 'daily-wage', 'earners', '.'], ['when', 'counties', 'were', 'established', 'in', 'new', 'york', 'state', 'in', '1', '6', '8', '3', ',', 'the', 'present', 'lewis', 'county', 'was', 'part', 'of', 'albany', 'county', '.'], ['in', '1', '9', '9', '6', 'stack', 'and', 'his', 'wife', ',', 'katia', ',', 'established', 'the', 'brian', 'p.', 'stack', 'civic', 'association', ',', 'through', 'which', 'they', 'aided', 'residents', 'with', 'issues', 'such', 'as', 'housing', ',', 'employment', 'and', 'immigration', '.'], ['it', 'received', 'seven', 'oscar', 'nominations', '(', 'including', 'a', 'best', 'director', 'nomination', 'for', 'cardiff', ')', 'and', 'freddie', 'francis', 'won', 'for', 'best', 'black-and-white', 'cinematography', '.'], ['like', 'the', 'county', 'in', 'which', 'it', 'is', 'located', ',', 'shelbyville', 'was', 'named', 'for', 'governor', 'isaac', 'shelby', 'of', 'kentucky', '.'], ['it', 'is', 'found', 'in', 'ecuador', '(', 'tungurahua', 'province', ',', 'morona-santiago', 'province', ')', '.'], ['speeches', 'were', 'given', 'by', 'mayor', 'george', 'w.', 'grice', ',', 'lt', '.'], ['imperial', 'japanese', 'army', 'uniforms', 'tended', 'to', 'reflect', 'the', 'uniforms', 'of', 'those', 'countries', 'who', 'were', 'the', 'principal', 'advisors', 'to', 'the', 'imperial', 'japanese', 'army', 'at', 'the', 'time', '.'], ['by', '1', '9', '1', '7', 'he', 'may', 'have', 'moved', 'to', 'flagstaff', ',', 'arizona', '.'], ['there', 'he', 'worked', 'in', 'corporate', 'banking', 'with', 'an', 'emphasis', 'by', 'choice', 'on', 'matters', 'involving', 'international', 'scope', ';', 'his', 'assignments', 'took', 'him', 'to', 'latin', 'america', ',', 'the', 'middle', 'east', ',', 'and', 'asia', '.'], ['in', 'june', '1', '9', '4', '1', ',', 'just', 'before', 'the', 'entry', 'of', 'the', 'german', 'troops', ',', 'he', 'evacuated', 'from', 'lviv', 'together', 'with', 'the', 'soviet', 'troops', 'deep', 'into', 'russia', '.'], ['it', 'started', 'in', 'cell', 'block', '#', '4', 'and', 'continued', 'through', 'the', 'prison', 'hall', 'from', 'cell', 'to', 'cell', '.'], ['when', 'hill', 'participated', 'in', 'a', 'daytona', 'race', 'in', '1', '9', '7', '1', ',', 'he', 'had', 'an', 'opening', 'lap', 'at', ',', 'which', 'was', 'faster', 'than', 'factory', 'rider', 'gary', 'nixon', '.'], ['the', 'present', 'architectural', 'state', 'of', 'the', 'building', 'is', 'the', 'result', 'of', 'a', 'restoration', 'work', 'carried', 'out', 'in', 'the', '1', '9', '9', '0', 's', '.'], ['antennae', ',', 'head', ',', 'thorax', 'and', 'abdomen', 'concolorous', 'with', 'the', 'wings', 'above', ',', 'paler', 'below', '.'], ['``', 'andromeda', \"''\", ',', 'the', 'album', \"'s\", 'fourth', 'single', ',', 'was', 'dedicated', 'to', 'ethel', ',', 'the', 'mother', 'of', 'albarn', \"'s\", 'longtime', 'partner', 'suzi', 'winstanley', ',', 'who', 'died', 'while', 'albarn', 'was', 'writing', 'the', 'song', '.'], ['the', 'sukhoi', 'superjet', '1', '0', '0', 'was', 'incorporated', 'into', 'the', 'fleet', 'in', '2', '0', '1', '3', '.'], ['a', 'week', 'after', 'becoming', 'extratropical', ',', 'the', 'remnants', 'of', 'cyclone', 'debbie', 'passed', 'over', 'new', 'zealand', ',', 'causing', 'flash', 'flooding', 'over', 'many', 'areas', '.'], ['in', 'mathematics', ',', 'schinzel', \"'s\", 'hypothesis', 'h', 'is', 'one', 'of', 'the', 'most', 'famous', 'open', 'problems', 'in', 'the', 'topic', 'of', 'number', 'theory', '.'], ['unlike', 'hydroponics', ',', 'which', 'uses', 'a', 'liquid', 'nutrient', 'solution', 'as', 'a', 'growing', 'medium', 'and', 'essential', 'minerals', 'to', 'sustain', 'plant', 'growth', ',', 'or', 'aquaponics', ',', 'which', 'uses', 'water', 'and', 'fish', 'waste', ',', 'aeroponics', 'is', 'conducted', 'without', 'a', 'growing', 'medium', '.'], ['in', '2', '0', '1', '7', 'pacific', 'gas', 'and', 'electric', 'provided', 'a', 'simple', 'procedure', 'for', 'homeowners', 'wanting', 'to', 'install', 'electric', 'vehicle', 'charging', 'connections', '.'], ['zhang', 'served', 'as', 'chief', 'of', 'staff', 'of', 'the', 'zhoushan', 'naval', 'base', 'from', '1', '9', '9', '4', 'to', '1', '9', '9', '6', ',', 'and', 'deputy', 'commander', 'from', '1', '9', '9', '6', 'to', '1', '9', '9', '7', '.'], ['this', 'church', 'was', 'comparable', 'with', 'the', 'largest', 'churches', 'in', 'upper', 'hungary', '.'], ['the', 'supply', 'line', 'receives', 'air', 'from', 'the', 'prime', 'mover', 'park', 'brake', 'air', 'tank', 'via', 'a', 'park', 'brake', 'relay', 'valve', 'and', 'the', 'control', 'line', 'is', 'regulated', 'via', 'the', 'trailer', 'brake', 'relay', 'valve', '.'], ['kinnear', 'was', 'then', 'assigned', 'to', 'the', 'office', 'of', 'the', 'chief', 'of', 'naval', 'operations', 'as', 'special', 'assistant', 'to', 'the', 'director', 'of', 'navy', 'program', 'planning', '.'], ['adonis', 'is', 'best', 'known', 'for', 'his', 'early', 'chicago', 'house', 'tracks', '``', 'no', 'way', 'back', \"''\", 'and', '``', 'we', \"'re\", 'rockin', 'down', 'the', 'house', \"''\", '.'], ['critics', 'have', 'noted', 'an', 'underlying', 'tension', 'in', 'the', 'poem', 'between', 'thought', 'and', 'feeling', '.'], ['the', 'tarumã', 'açu', 'river', 'originates', 'with', 'a', 'spring', 'in', 'the', 'community', 'of', 'nova', 'canaã', ',', 'at', 'kilometre', '4', '0', 'of', 'the', 'br-', '1', '7', '4', 'highway', '.'], ['the', 'dandie', 'dinmont', 'terrier', 'has', 'a', 'similar', 'body', 'shape', 'to', 'the', 'skye', 'terrier', ',', 'but', 'the', 'skye', \"'s\", 'coat', 'is', 'thicker', 'and', 'longer', '.'], ['in', 'the', 'twenty-first', 'century', ',', 'there', 'is', 'one', 'mining', 'permit', 'in', 'the', 'watershed', '.'], ['lepidoptera', 'indica', 'was', 'a', '1', '0', 'volume', 'work', 'on', 'the', 'butterflies', 'of', 'the', 'indian', 'region', 'that', 'was', 'begun', 'in', '1', '8', '9', '0', 'and', 'completed', 'in', '1', '9', '1', '3', '.'], ['bill', 'lee', 'is', 'the', 'designer', 'of', 'noted', 'ocean', 'racing', 'yachts', ',', 'and', 'one', 'of', 'the', 'founders', 'of', 'the', 'santa', 'cruz', 'school', 'of', 'boatbuilding', '.'], ['there', ',', 'lowe', 'began', 'practicing', 'medicine', 'in', 'the', 'relatively', 'new', ',', 'small', 'frontier', 'village', 'of', 'burlington', ',', 'iowa', '.'], ['this', 're-issue', 'has', 'four', 'bonus', 'tracks', ',', 'including', 'the', 'extended', 'version', 'of', 'the', 'single', '``', 'zip', 'a', 'doo', 'wah', \"''\", 'and', 'the', 'standalone', 'top', '5', '0', 'hit', '``', 'tétéou', \"''\", '.'], ['in', '1', '9', '9', '9', ',', 'it', 'imposed', 'a', '2', 'percent', 'tax', 'on', 'residential', 'real', 'estate', 'sales', 'in', 'excess', 'of', '$', '2', '5', '0', ',', '0', '0', '0', 'for', 'the', 'purpose', 'of', 'buying', 'open', 'space', 'for', 'preservation', '.'], ['the', 'events', 'and', 'the', 'constitution', 'of', '1', '8', '1', '4', 'have', 'a', 'central', 'place', 'in', 'norwegian', 'identity', '.'], ['mario', 'tarradell', 'of', 'the', '``', 'dallas', 'morning', 'news', \"''\", 'was', 'less', 'positive', '.'], ['puerto', 'rico', 'highway', '1', '5', '1', '(', 'pr-', '1', '5', '1', ')', 'is', 'a', 'rural', 'road', 'located', 'in', 'the', 'municipality', 'of', 'villalba', ',', 'puerto', 'rico', '.'], ['from', '1', '9', '9', '8', 'to', '2', '0', '0', '2', ',', 'she', 'was', 'a', 'member', 'of', 'the', 'national', 'transitional', 'council', '(', 'cnt', ')', ',', 'the', 'interim', 'parliament', 'that', 'existed', 'during', 'the', 'transitional', 'period', 'which', 'followed', 'the', '1', '9', '9', '7', 'civil', 'war', '.'], ['guyanese', 'society', 'tends', 'to', 'view', 'homosexuality', ',', 'transgender', 'and', 'non-binary', 'people', 'negatively', ',', 'though', 'attitudes', 'are', 'slowly', 'changing', 'and', 'becoming', 'more', 'accepting', '.'], ['the', 'parish', 'church', ',', 'dedicated', 'to', 'saint', 'anne', ',', 'stands', 'on', 'a', 'hill', 'above', 'the', 'settlement', 'and', 'is', 'an', 'imposing', 'high-baroque', 'domed', 'building', '.'], ['as', 'the', 'nuclear', 'power', 'debate', 'continues', ',', 'greenhouse', 'gas', 'emissions', 'are', 'increasing', '.'], ['this', 'government', 'simulation', 'game', ',', 'like', 'its', 'predecessor', ',', 'puts', 'the', 'player', 'in', 'the', 'role', 'of', 'any', 'nation', \"'s\", 'head', 'of', 'state', '.'], ['the', 'collectivistic', 'view', 'of', 'self', ',', 'however', ',', 'involves', 'people', \"'s\", 'perception', 'of', 'themselves', 'as', 'members', 'of', 'a', 'group', 'or', 'in', 'a', 'particular', 'situation', '.'], ['unlike', 'his', 'younger', 'brother', ',', 'who', 'slugged', '2', '8', '8', 'home', 'runs', 'in', 'his', '1', '3', '-year', 'mlb', 'career', ',', 'roy', 'was', 'basically', 'a', 'contact', ',', 'line-drive', 'hitter', '.'], ['before', 'he', 'resigned', 'as', 'archbishop', 'on', 'may', '2', '4', ',', '1', '9', '8', '0', ',', 'after', 'a', 'period', 'of', 'twenty-nine', 'years', ',', 'the', 'venezuelan', 'primate', 'participated', 'in', 'the', 'conclaves', 'of', 'august', 'and', 'october', '1', '9', '7', '8', ',', 'which', 'selected', 'popes', 'john', 'paul', 'i', 'and', 'john', 'paul', 'ii', 'respectively', '.'], ['just', 'over', 'a', 'week', 'later', ',', 'on', 'february', '1', '8', ',', '2', '0', '0', '9', ',', 'the', 'station', 'applied', 'to', 'relocate', 'again', ',', 'this', 'time', 'to', 'valley', 'grande', ',', 'alabama', '.'], ['when', 'eigendecomposition', 'is', 'used', 'on', 'a', 'matrix', 'of', 'measured', ',', 'real', 'data', ',', 'the', 'inverse', 'may', 'be', 'less', 'valid', 'when', 'all', 'eigenvalues', 'are', 'used', 'unmodified', 'in', 'the', 'form', 'above', '.'], ['he', 'moved', 'to', 'malden', 'township', 'and', 'then', 'in', 'colchester', 'township', 'with', 'his', 'family', '.'], ['the', 'melbourne', 'continuation', 'school', 'was', 'victoria', \"'s\", 'first', 'state', 'secondary', 'school', ',', 'which', 'was', 'established', 'in', '1', '9', '0', '5', 'from', 'the', 'initiative', 'of', 'director', 'of', 'education', ',', 'frank', 'tate', '.'], ['on', 'july', '7', ',', '1', '9', '4', '6', ',', 'they', 'married', 'in', 'plains', '.'], ['there', 'are', 'some', 'rare', 'sonar', 'banjara', 'clans', 'such', 'as', 'medran', '.'], ['ardell', 'leonard', 'wiegandt', '(', 'born', 'june', '2', '8', ',', '1', '9', '4', '0', ')', 'is', 'a', 'former', 'canadian', 'football', 'coach', '.'], ['the', 'pits', 'in', 'zgornja', 'šiška', 'were', 'also', 'the', 'source', 'of', 'the', 'name', 'of', 'pit', 'castle', '(', ')', ',', 'also', 'known', 'as', 'the', 'galle', 'manor', '(', ')', '.'], ['that', 'same', 'day', ',', 'it', 'was', 'reported', 'that', 'in', 'arkhangelsk', 'oblast', ',', 'more', 'than', '7', '0', 'patients', 'and', 'employees', 'at', 'a', 'psychiatric', 'hospital', 'tested', 'positive', 'for', 'coronavirus', '.'], ['the', 'main', 'character', 'is', 'shawn', 'mcdaniel', ',', 'a', 'fourteen-year-old', 'who', 'has', 'cerebral', 'palsy', '.'], ['the', 'stadium', 'was', 'liberated', 'on', '2', '0', 'november', '2', '0', '2', '0', 'as', 'a', 'result', 'of', 'the', '2', '0', '2', '0', 'nagorno-karabakh', 'war', '.'], ['the', 'square', 'is', 'surrounded', 'by', 'important', 'buildings', 'such', 'as', 'the', 'city', 'hall', 'in', 'the', 'neo-gothic', 'style', ',', 'the', 'benussi', 'house', ',', 'the', 'bembo', 'house', 'and', 'the', 'bradamante', 'palace', 'with', 'its', 'decorated', 'façade', 'and', 'an', 'elegant', 'triphora', '.'], ['the', 'independence', 'of', '``', 'ya', \"''\", 'and', '``', 'k', \"''\", 'in', 'this', 'dialect', 'is', 'shown', 'by', 'the', 'fact', 'that', 'they', 'may', 'be', 'separated', 'by', 'clitics', ',', 'as', 'in', '``', 'yato', 'k-a-naʼ', \"''\", '(', '``', 'you', 'already', 'know', 'that', \"''\", ':', 'clitic', '``', '=to', \"''\", '``', 'already', \"''\", ')', '.'], ['it', 'is', 'the', 'masculine', 'version', 'of', 'the', 'name', 'ciara', '.'], ['because', 'the', 'south', 'lacked', 'the', 'north', \"'s\", 'industrial', 'capacity', ',', 'the', '6', '-pounders', 'were', 'employed', 'by', 'confederate', 'armies', 'for', 'a', 'longer', 'period', '.'], ['for', 'example', ',', 'mercury', 'removal', 'by', 'wet', 'scrubbers', 'is', 'considered', 'coincidental', 'and', 'may', 'be', 'less', 'than', '5', '0', '%', '.'], ['after', 'a', 'further', 'change', 'in', 'operational', 'requirements', ',', 'with', 'the', 'addition', 'of', 'a', 'radar', 'and', 'extra', 'crew', 'member', ',', 'the', 'type', 'entered', 'production', 'in', '1', '9', '5', '3', 'and', 'initial', 'deliveries', 'were', 'made', 'of', 'the', 'variant', 'designated', 'as', '.', '1', 'at', 'rnas', 'ford', 'in', 'april', '1', '9', '5', '4', '.'], ['at', 'the', 'battle', 'of', 'antietam', 'on', '1', '7', 'september', '1', '8', '6', '2', ',', 'there', 'were', 'at', 'least', '4', '1', '6', '-pounder', 'guns', 'still', 'being', 'employed', 'in', 'confederate', 'batteries', ',', 'while', 'the', 'union', 'army', 'of', 'the', 'potomac', 'had', 'no', '6', '-pounders', '.'], ['it', 'appeared', 'on', 'platforms', 'including', 'java', ',', 'ios', ',', 'nintendo', 'dsi', '.'], ['three', 'plays', 'later', ',', 'dorsey', 'snuck', 'into', 'the', 'end', 'zone', 'up', 'the', 'middle', 'for', 'his', 'second', 'touchdown', 'of', 'the', 'quarter', ',', 'giving', 'las', 'vegas', 'a', '1', '7', '-', '1', '4', 'lead', 'with', '5', ':', '5', '8', 'left', '.'], ['unlike', 'its', 'british', ',', 'canadian', 'and', 'hong', 'kong', 'independent', 'contemporaries', ',', 'for', 'most', 'of', 'its', 'existence', 'uta', 'did', 'not', 'have', 'a', 'network', 'of', 'short-/medium-haul', 'scheduled', 'routes', 'nor', 'did', 'it', 'compete', 'on', 'any', 'of', 'its', 'scheduled', 'routes', 'with', 'air', 'france', ',', 'the', 'primary', 'french', 'flag', 'carrier', 'at', 'the', 'time', '.'], ['it', 'is', 'located', 'in', 'the', 'kulim', 'high-tech', 'park', 'in', 'malaysia', '.'], ['the', 'general', 'assembly', 'meets', 'at', 'the', 'rhode', 'island', 'state', 'house', 'on', 'the', 'border', 'of', 'downtown', 'and', 'smith', 'hill', 'in', 'providence', '.'], ['in', '1', '9', '3', '3', ',', 'the', 'company', 'operated', '1', '5', '4', 'buses', 'on', 'services', 'throughout', 'northamptonshire', ',', 'with', 'some', 'services', 'terminating', 'just', 'over', 'adjacent', 'county', 'boundaries', ',', 'plus', 'special', 'services', 'to', 'seaside', 'places', 'and', 'whipsnade', 'zoo', 'during', 'the', 'summer', '.'], ['in', '2', '0', '0', '8', ',', 'velilla', 'power', 'plant', 'was', 'equipped', 'with', 'filters', ',', 'so', 'now', 'more', 'than', '9', '5', '%', 'of', 'the', 'detrimental', 'sulfur', 'dioxide', 'are', 'filtered', 'out', 'from', 'smoke', '.'], ['farruko', \"'s\", 'third', 'album', '``', 'imperio', 'nazza', ':', 'farruko', 'edition', \"''\", ',', 'was', 'a', 'better', 'album', 'with', 'daddy', 'yankee', 'collaborating', 'with', 'farruko', 'once', 'again', ',', 'j', 'alvarez', 'also', 'featured', 'on', 'the', 'album', 'along', 'with', 'arcángel', ',', 'de', 'la', 'ghetto', ',', 'reykon', ',', 'and', 'zion', '&', 'amp', ';', 'lennox', '.'], ['although', 'canadian', 'pilots', 'practised', 'air', 'combat', 'tactics', ',', 'aim-', '9', 'sidewinder', 'missiles', 'were', 'never', 'carried', 'operationally', 'by', 'canadian', 'starfighters', '(', 'however', ',', 'examples', 'provided', 'to', 'other', 'air', 'forces', ',', 'such', 'as', 'norway', 'and', 'denmark', ',', 'did', 'carry', 'sidewinders', 'on', 'a', 'twin-rail', 'centreline', 'station', 'and', 'the', 'wingtip', 'rails', ')', '.'], ['the', 'aircraft', 'was', 'designed', 'to', 'comply', 'with', 'the', 'us', 'far', '1', '0', '3', 'ultralight', 'vehicles', 'rules', ',', 'including', 'the', 'category', \"'s\", 'maximum', 'empty', 'weight', 'of', '.'], ['barry', 'allen', 'travels', 'to', 'star', 'city', 'to', 'investigate', 'a', 'superhuman-related', 'crime', 'in', 'hopes', 'that', 'it', 'is', 'related', 'to', 'his', 'mother', \"'s\", 'murder', 'and', 'to', 'meet', 'his', 'vigilante', 'idol', ',', 'the', 'arrow', '(', 'oliver', 'queen', ')', '.'], ['in', '2', '0', '1', '0', ',', 'von', 'westphalen', 'was', 'the', 'first', 'signatory', 'to', 'the', '``', 'aktion', 'linkstrend', 'stoppen', \"''\", ',', 'which', 'opposed', 'the', 'berlin', 'declaration', 'of', 'the', 'christian', 'democratic', 'union', \"'s\", 'leadership', 'to', 'change', 'economic', 'positions', '.'], ['for', 'example', ',', 'formula_', '1', '1', '5', 'equals', 'formula_', '3', '3', 'and', 'also', 'equals', 'formula_', '1', '1', '7', ',', 'which', 'reduces', 'to', 'formula_', '3', '3', '.'], ['during', 'his', '7', '3', '-day', ',', 'journey', ',', 'lecomte', 'was', 'accompanied', 'by', 'a', 'sailboat', 'that', 'had', 'an', 'electromagnetic', 'field', 'for', 'to', 'ward', 'off', 'sharks', '.'], ['united', 'states', 'v.', 'gotcher', ',', '4', '0', '1', 'f.', '2', 'd', '1', '1', '8', '(', '5', 'th', 'cir', '.'], ['another', 'three', 'of', 'the', 'nineteen', 'prominent', 'persons', 'who', 'had', 'voted', 'against', 'mussolini', ',', 'although', 'not', 'captured', ',', 'were', 'also', 'tried', 'and', 'sentenced', 'to', 'death', '``', 'in', 'absentia', \"''\", ',', 'among', 'them', 'dino', 'grandi', ',', 'who', 'had', 'been', 'responsible', 'for', 'the', 'agenda', 'of', 'the', 'meeting', 'of', 'july', '2', '5', '.'], ['so', 'then', 'anesthetics', 'started', 'to', 'be', 'used', 'regularly', 'during', 'surgical', 'operations', '.'], ['the', 'play', 'was', 'first', 'produced', 'at', 'the', 'st', 'james', \"'s\", 'theatre', 'on', 'valentine', \"'s\", 'day', '1', '8', '9', '5', '.'], ['production', 'of', '``', 'damn', 'yankees', \"''\", 'at', 'the', 'ucla', 'freud', 'playhouse', '.'], ['simone', 'then', 'found', 'out', 'she', 'was', 'pregnant', 'again', ',', 'but', 'did', 'not', 'know', 'whether', 'harrison', 'or', 'tom', 'was', 'the', 'father', ',', 'and', 'she', 'had', 'not', 'even', 'told', 'tom', 'about', 'her', 'affair', 'with', 'harrison', '.'], ['mardaites', 'were', 'resettled', 'in', 'cephalonia', 'to', 'serve', 'as', 'marines', ',', 'and', 'political', 'prisoners', 'were', 'sometimes', 'exiled', 'there', '.'], ['the', 'game', 'ends', 'as', 'they', 'emerge', 'from', 'under', 'the', 'water', 'in', 'a', 'vast', 'ocean', 'under', 'an', 'orange', 'sky', '.'], ['the', 'track', 'was', 'sung', 'by', 'mohammed', 'irfan.the', 'fourth', 'track', 'of', 'the', 'album', ',', '``', 'mon', 'haralo', \"''\", 'was', 'released', 'on', '2', '6', 'may', '2', '0', '1', '6', ',', 'and', 'received', 'an', 'overwhelming', 'response', 'upon', 'its', 'release', '.'], ['portsmouth', 'mayor', 'eileen', 'foley', 'toasted', 'the', 'new', 'brewery', 'with', 'sixteen', 'ounces', 'of', 'shoals', 'pale', 'ale', ',', 'the', 'brewery', \"'s\", 'initial', 'offering', '.'], ['he', 'is', 'a', 'professor', 'of', 'old', 'norse', 'language', 'and', 'literature', 'at', 'the', 'university', 'of', 'bonn', ',', 'where', 'he', 'also', 'lectures', 'in', 'germanic', 'studies', '.'], ['kirkpatrick', 'once', 'worked', 'as', 'a', 'postman', ',', 'and', 'also', 'as', 'a', 'disc', 'jockey', 'on', 'washington', 'd.c.', 'radio', 'stations', 'including', 'whfs', 'and', 'wamu', '.'], ['during', 'the', 'summer', 'of', '1', '8', '7', '2', 'gilmour', ',', 'in', 'company', 'with', 'joseph', 'edkins', ',', 'visited', 'the', 'sacred', 'city', 'of', 'wutai', 'shan', ',', 'a', 'famous', 'place', 'of', 'mongol', 'pilgrimage', '.'], ['the', 'station', 'originally', 'operated', 'on', 'two', 'a.m.', 'frequencies', '(', '9', '9', '0', 'khz', '.', '3', '0', '3', 'mtrs', 'and', '9', '1', '8', 'khz', '.', '3', '2', '7', 'mtrs', ')', '.'], ['at', 'one', 'point', ',', 'the', 'song', \"'s\", 'name', 'was', '``', 'i', 'ca', \"n't\", 'go', 'for', 'billie', 'jean', \"''\", ',', 'as', 'a', 'reference', 'to', 'the', 'aforementioned', 'michael', 'jackson', 'song', 'and', 'hall', 'and', 'oates', \"'\", 'song', '.'], ['at', 'the', '2', '0', '0', '6', 'census', ',', 'its', 'population', 'was', '6', '5', '9', ',', 'in', '1', '5', '6', 'families', '.'], ['in', 'january', '1', '5', '3', '7', ',', 'neville', ',', 'his', 'sister', 'margaret', ',', 'and', 'step-mother', 'catherine', 'were', 'held', 'hostage', 'at', 'snape', 'castle', 'during', 'the', 'pilgrimage', 'of', 'grace', '.'], ['nbc', 'programmer', 'kevin', 'reilly', 'originally', 'suggested', 'paul', 'giamatti', 'to', 'producer', 'ben', 'silverman', 'for', 'the', 'role', 'of', 'michael', 'scott', ',', 'but', 'the', 'actor', 'declined', '.'], ['jackson', 'went', 'on', 'to', 'also', 'sculpt', 'the', 'statue', 'of', 'bobby', 'moore', 'unveiled', 'at', 'the', 'new', 'wembley', 'when', 'it', 'opened', 'in', '2', '0', '0', '7', '.'], ['maharaj', 'bhism', 'gi', 'is', 'father', 'of', 'dharm', 'nagri', 'bishan', '.'], ['edmund', 'calvert', 'lynch', 'attended', 'the', 'boys', \"'\", 'latin', 'school', 'of', 'maryland', 'in', 'baltimore', 'and', 'graduated', 'from', 'johns', 'hopkins', 'university', 'in', '1', '9', '0', '7', '.'], ['a', 'series', 'of', 'invasions', 'in', 'the', 'earlier', 'half', 'of', 'the', 'joseon', 'caused', 'a', 'dynamic', 'shift', 'in', 'the', 'culture', 'during', 'the', 'second', 'half', 'of', 'the', 'period', '.'], ['at', 'one', 'moment', ',', 'she', 'was', 'left', 'alone', 'in', 'the', 'room', '.'], ['he', 'won', 'in', 'the', 'byelection', 'but', 'was', 'subsequently', 'defeated', 'in', 'the', 'general', 'election', 'on', 'may', '5', ',', '2', '0', '1', '5', '.'], ['the', 'skoda', 'rapid', 'is', 'offered', 'for', 'sale', 'in', 'india', 'in', 'both', 'petrol', 'and', 'diesel', 'versions', '.'], ['nitshill', 'was', 'originally', 'a', 'coal', 'mining', 'village', ';', 'the', 'victoria', 'colliery', 'in', 'the', 'area', 'was', 'the', 'scene', 'of', 'one', 'of', 'scotland', \"'s\", 'worst', 'mining', 'disasters', 'on', '1', '5', 'march', '1', '8', '5', '1', ',', 'in', 'which', '6', '1', 'men', 'and', 'boys', 'died', '.'], ['akh', 'kand', 'bala', 'castle', '(', ')', 'is', 'a', 'historical', 'castle', 'located', 'in', 'bijar', 'county', 'in', 'kurdistan', 'province', ',', 'the', 'longevity', 'of', 'this', 'fortress', 'dates', 'back', 'to', 'the', 'middle', 'ages', 'historical', 'periods', 'after', 'islam', '.'], ['the', 'spacecraft', 'consisted', 'of', 'a', 'hexagonal', 'aluminium', 'frame', 'base', '1', '.', '5', 'm', 'across', 'on', 'which', 'was', 'mounted', 'the', 'propulsion', 'and', 'power', 'units', ',', 'topped', 'by', 'a', 'truncated', 'conical', 'tower', 'which', 'held', 'the', 'tv', 'cameras', '.'], ['in', '2', '0', '1', '3', ',', 'teams', '4', 'u', 'launched', 'its', 'own', 'national', 'shoebox', 'program', 'bringing', 'christmas', 'gifts', 'to', 'deprived', 'children', 'in', 'eastern', 'europe', '.'], ['theerafter', ',', 'the', 'sieged', 'were', 'allowed', 'to', 'return', 'to', 'their', 'ships', ',', 'keeping', 'a', 'few', 'as', 'hostages', 'to', 'maintain', 'the', 'pact', '.'], ['awards', 'in', 'individual', 'categories', 'are', 'listed', 'below', '(', 'in', 'alphabetical', 'order', ')', 'followed', 'by', 'a', 'list', 'of', 'all', 'prizes', 'in', 'reverse', 'chronological', 'order', ':', 'source', ':'], ['three', 'years', 'later', 'he', 'participated', 'in', 'the', 'next', 'world', 'championship', 'with', 'the', 'same', 'results', '.'], ['however', ',', 'he', 'is', 'caught', 'by', 'his', 'father', 'richard', 'lorgen', ',', 'who', 'decides', 'to', 'punish', 'his', 'son', 'and', 'tells', 'kelgan', 'about', 'it', '.'], ['she', 'managed', 'her', 'school', 'until', '1', '8', '2', '2', 'and', 'trained', 'hundreds', 'of', 'girls', 'overall', '.'], ['crowds', 'turned', 'out', 'to', 'see', 'her', ',', 'and', 'her', 'arrival', 'in', 'montreal', 'produced', 'quite', 'a', 'sensation', 'there', '.'], ['perhaps', 'the', 'largest', 'and', 'most', 'prominent', 'customer', 'of', 'the', 'line', 'was', 'the', 'atlas', 'tack', 'company', ',', 'which', 'had', 'a', 'total', 'of', 'three', 'sidings', 'that', 'ran', 'up', 'to', 'the', 'north', 'side', 'of', 'the', 'building', '(', 'two', 'trailing', 'and', 'one', 'facing', ')', '.'], ['evgeny', 'serafimovich', 'lovchev', '(', ';', 'born', '2', '9', 'january', '1', '9', '4', '9', ')', 'is', 'a', 'russian', 'sports', 'journalist', ',', 'a', 'former', 'footballer', ',', 'soccer', 'and', 'futsal', 'manager', '.'], ['in', '1', '9', '0', '5', 'london', ',', 'priam', 'farll', 'is', 'an', 'artist', ',', 'brilliant', ',', 'unconventional', 'and', 'shy', ',', 'although', 'he', 'can', 'be', 'violently', 'outspoken', '.'], ['developments', 'on', 'both', 'sides', 'of', 'the', 'airport', 'in', 'glenholt', 'and', 'estover', 'on', 'one', 'side', 'and', 'southway', 'on', 'the', 'other', 'see', 'the', 'airport', 'site', 'lie', 'in', 'derriford', 'now', ',', 'directly', 'opposite', 'from', 'the', 'university', 'of', 'st', 'mark', '&', 'amp', ';', 'st', 'john', '.'], ['located', 'in', 'the', 'middle', 'of', 'a', 'rich', 'agricultural', 'region', ',', 'since', 'the', 'beginning', 'of', 'the', '2', '0', 'th', 'plovdiv', 'grew', 'as', 'a', 'major', 'industrial', 'center', '.'], ['it', 'also', 'contained', 'several', 'small', '``', 'family', 'kitchen', \"''\", 'rooms', 'for', 'cooking', 'classes', ',', 'and', 'washing', 'nooks', 'for', 'laundry', '.'], ['the', 'club', 'played', 'some', 'identificatory', 'role', 'in', 'the', 'unofficial', 'opposition', 'against', 'the', 'authorities', 'of', 'the', 'communist', 'system', '.'], ['(', 'dyer', 'scored', '2', '1', 'and', '4', 'in', 'the', 'bat', '.', ')'], ['the', 'fighting', 'continued', 'for', 'three', 'hours', 'until', '1', '0', ':', '0', '0', ',', 'when', 'the', 'weight', 'of', 'japanese', 'machine', 'guns', 'and', 'mortars', 'forced', 'the', 'brigade', 'to', 'retreat', 'in', 'panic', 'and', 'disorder', 'to', 'kota', 'bangoen', '.'], ['on', 'october', '2', '1', ',', '2', '0', '1', '0', ',', 'the', '``', 'folha', 'de', 's.paulo', \"''\", 'newspaper', '(', 'not', 'part', 'of', 'globo', 'organizations', ')', 'published', 'a', 'report', 'revealing', 'that', 'serra', 'was', 'hit', 'by', 'a', 'roll', 'of', 'duct', 'tape', 'after', 'the', 'paper', 'ball', '.'], ['meaning', 'that', 'the', 'ships', 'would', 'have', 'cost', 'nearly', '$', '2', '0', 'million', 'less', 'if', 'they', 'had', 'been', 'built', 'outside', 'the', 'united', 'states', '.'], ['thornton', 'started', 'his', 'career', 'as', 'a', 'communications', 'intern', 'with', 'the', 'maryland', 'republican', 'party', 'in', '2', '0', '1', '0', 'and', 'shortly', 'thereafter', 'interned', 'with', 'the', 'bob', 'ehrlich', 'campaign', 'for', 'governor', 'of', 'maryland', '.'], ['strachan', 'died', 'on', '1', 'may', '1', '9', '8', '2', ',', 'at', 'the', 'age', 'of', '9', '7', 'years', 'and', '1', '7', '5', 'days', ',', 'the', 'record', 'longest-lived', 'recipient', 'of', 'the', 'victoria', 'cross', '.'], ['it', 'is', 'said', 'that', 'fans', 'of', 'union', 'often', 'chanted', '``', 'the', 'wall', 'must', 'go', '!'], ['after', 'the', 'fighting', 'the', 'aleppo', 'sharia', 'committee', ',', 'which', 'the', 'tawhid', 'brigades', 'is', 'affiliated', 'with', 'that', 'attempted', 'to', 'mediate', 'a', 'cease-fire', 'between', 'isil', 'and', 'the', 'northern', 'storm', 'brigade', ',', 'declared', 'the', 'northern', 'storm', 'brigade', 'was', 'a', 'criminal', 'group', 'and', 'was', 'not', 'allowed', 'to', 'carry', 'arms', '.'], ['acanthoscelides', 'margaretae', ',', 'the', 'a.', 'margaretae', 'or', 'near', ',', 'is', 'a', 'species', 'of', 'leaf', 'beetle', 'in', 'the', 'family', 'chrysomelidae', '.'], ['for', 'much', 'of', 'his', 'career', 'blanc', \"'s\", 'office', 'was', 'at', '4', '0', 'frederick', 'street', ',', 'extremely', 'close', 'to', 'his', 'parental', 'home', 'and', 'their', 'shop', '.'], ['note', ':', 'some', 'paved', 'roads', 'have', 'lost', 'their', 'asphalt', 'surface', 'and', 'are', 'in', 'very', 'poor', 'condition', 'or', 'have', 'reverted', 'to', 'being', 'gravel', 'roads', '.'], ['ayr', 'citadel', ',', 'later', 'called', 'the', 'fort', ',', 'was', 'constructed', 'by', 'oliver', 'cromwell', 'in', '1', '6', '5', '2', 'with', 'stones', 'taken', 'from', 'the', 'earl', \"'s\", 'castle', 'at', 'ardrossan', '.'], ['xiang', 'yanmei', '(', ';', 'born', '1', '3', 'june', '1', '9', '9', '2', 'in', 'baojing', ',', 'hunan', ')', 'is', 'a', 'chinese', 'weightlifter', '.'], ['as', 'pontiff', ',', 'benedict', 'xvi', 'carried', 'out', 'numerous', 'apostolic', 'activities', 'including', 'journeys', 'across', 'the', 'world', 'and', 'in', 'the', 'vatican', '.'], ['lead', 'donors', 'to', 'the', 'new', 'building', 'included', 'john', 'moran', ',', 'the', 'alsam', 'foundation', ',', 'the', 'george', 's.', 'and', 'dolores', 'doré', 'eccles', 'foundation', ',', 'and', 'the', 'e.r', '.'], ['acid', 'gas', 'scrubbers', 'are', 'used', 'to', 'remove', 'hydrochloric', 'acid', ',', 'nitric', 'acid', ',', 'hydrofluoric', 'acid', ',', 'mercury', ',', 'lead', 'and', 'other', 'heavy', 'metals', '.'], ['he', 'was', 'unopposed', 'in', 'the', 'primary', 'election', 'and', 'faced', 'carol', 'castagnero', ',', 'an', 'independent', 'candidate', 'who', 'had', 'run', 'for', 'a', 'number', 'of', 'offices', 'unsuccessfully', ',', 'in', 'the', 'general', 'election', '.'], ['the', 'owner', 'of', 'the', 'theatre', 'is', 'stage', 'entertainment', 'of', 'amsterdam', '.'], ['this', 'was', 'the', 'first', 'time', 'that', 'bob', 'weir', ',', 'phil', 'lesh', ',', 'bill', 'kreutzmann', 'and', 'mickey', 'hart', 'all', 'performed', 'together', 'since', 'the', 'disbandment', 'of', 'the', 'grateful', 'dead', 'in', '1', '9', '9', '5', '.'], ['they', 'also', 'engage', 'in', 'professional', 'development', 'workshops', ',', 'including', 'the', 'finance', 'training', 'for', 'students', 'to', 'don', 'bosco', 'technical', 'college', 'and', 'samalani', 'youth', 'center', '.'], ['he', 'was', 'riding', 'with', 'his', 'mechanic', 'when', 'he', 'skidded', 'while', 'attempting', 'to', 'avoid', 'a', 'fiat', 'driving', 'in', 'the', 'opposite', 'direction', '.'], ['``', 'eye', 'candy', \"''\", 'centers', 'on', 'tech', 'genius', 'lindy', '(', 'victoria', 'justice', ')', ',', 'a', '2', '2', '-year-old', 'woman', 'who', 'is', 'persuaded', 'by', 'her', 'roommate', ',', 'sophia', '(', 'kiersey', 'clemons', ')', ',', 'to', 'begin', 'online', 'dating', '.'], ['the', 'route', 'passes', 'through', 'farmland', 'with', 'some', 'homes', 'and', 'curves', 'to', 'the', 'northwest', '.'], ['the', 'road', 'heads', 'into', 'a', 'mix', 'of', 'farms', 'and', 'woods', ',', 'winding', 'north', 'and', 'entering', 'jackson', 'county', '.'], ['douglas', 'reeman', \"'s\", '1', '9', '6', '5', 'novel', '``', 'h.m.s', '.'], ['the', 'names', 'for', 'the', 'two', 'groups', 'are', 'based', 'on', 'their', 'respective', 'words', 'for', \"'come/go\", '.', \"'\"], ['the', 'series', 'comprises', 'four', 'books', 'for', 'children', 'aged', '1', '0', 'and', 'up', '.'], ['gadi', 'pollack', \"'s\", 'grandfather', ',', 'moshe', 'yehuda', 'pollack', ',', 'was', 'a', 'religious', 'jew', 'but', 'was', 'murdered', 'by', 'ukrainian', 'peasants', 'due', 'to', 'rampant', 'ukrainian', 'anti-semitism', ';', 'his', 'wife', 'died', 'of', 'typhus', 'while', 'attempting', 'to', 'flee', '.'], ['after', 'the', 'end', 'of', 'the', 'war', ',', 'ōsako', 'was', 'awarded', 'the', 'order', 'of', 'the', 'golden', 'kite', ',', '2', 'nd', 'class', ',', 'and', 'was', 'reassigned', 'to', 'the', 'inspectorate', 'general', 'of', 'military', 'training', 'from', 'february', '1', '9', '0', '6', '.'], ['timber', 'and', 'farming', 'are', 'the', 'predominant', 'industries', 'in', 'the', 'tiaro', 'area', ',', 'although', 'the', 'town', \"'s\", 'position', 'on', 'queensland', \"'s\", 'main', 'coastal', 'highway', 'also', 'brings', 'economic', 'benefits', '.'], ['called', 'it', '``', 'a', 'bizarre', 'tale', \"''\", 'and', 'said', 'that', 'it', 'is', 'reminiscent', 'of', '``', 'the', 'monkey', \"''\", ',', 'a', 'story', 'collected', 'earlier', 'in', '``', 'skeleton', 'crew', \"''\", '.'], ['just', 'let', 'an', 'artist', 'write', 'from', 'that', 'place', 'of', 'vulnerable', 'honesty', ',', 'and', 'let', 'the', 'listener', 'connect', 'through', 'their', 'own', 'story', '.', \"''\"], ['zang', 'tu', 'then', 'sided', 'with', 'liu', 'bang', ',', 'the', 'lord', 'of', 'sichuan', ',', 'in', 'the', 'war', 'against', 'xiang', 'yu', '.'], ['by', 'late', 'march', '2', '0', '0', '7', ',', 'he', 'was', 'one', 'of', 'the', 'last', 'three', 'known', 'surviving', 'american-born', 'world', 'war', 'i', 'veterans', ',', 'as', 'well', 'as', 'the', 'oldest', 'of', 'them', '.'], ['its', 'headquarters', 'are', 'in', 'the', 'town', 'of', 'gwoza', ',', 'a', 'border', 'town', '``', 'about', '1', '3', '5', 'kilometres', 'south-east', 'of', 'maiduguri', '.', \"''\"], ['joshua', 'brown', 'went', 'on', 'to', 'play', 'in', 'lenola', 'and', 'like', 'a', 'fox', '.'], ['in', 'july', ',', 'she', 'moved', 'north', 'to', 'british', 'columbia', 'to', 'participate', 'in', 'the', 'observance', 'of', 'that', 'province', \"'s\", 'centennial', '.'], ['this', 'is', 'a', 'list', 'of', 'german', 'states', 'by', 'life', 'expectancy', 'at', 'birth', '(', 'average', 'of', '2', '0', '1', '6', 'to', '2', '0', '1', '8', ')', 'according', 'to', 'the', 'federal', 'statistical', 'office', 'of', 'germany', '.'], ['for', 'the', 'next', '2', '0', 'years', 'trades', 'executed', 'on', 'dark', 'pools', 'represented', 'a', 'small', 'fraction', 'of', 'the', 'market', ',', 'between', '3', '-', '5', '%', 'of', 'all', 'trades', '.'], ['kangaroo', 'paw', 'is', 'the', 'common', 'name', 'for', 'a', 'number', 'of', 'species', ',', 'in', 'two', 'genera', 'of', 'the', 'family', 'haemodoraceae', ',', 'that', 'are', 'endemic', 'to', 'the', 'south-west', 'of', 'western', 'australia', '.'], ['at', 'the', 'end', 'of', 'the', 'interview', ',', 'yankovic', 'hung', 'up', 'abruptly', '.'], ['they', 'include', 'as', 'special', 'cases', 'the', 'jacobi', 'triple', 'product', 'identity', ',', 'watson', \"'s\", 'quintuple', 'product', 'identity', ',', 'several', 'identities', 'found', 'by', ',', 'and', 'a', '1', '0', '-fold', 'product', 'identity', 'found', 'by', '.'], ['the', 'term', 'has', 'also', 'applied', 'to', 'other', 'professions', 'and', 'even', 'companies', 'trying', 'to', 'appeal', 'to', 'a', 'gay', 'demographic', '.'], ['he', 'studied', 'at', 'the', 'university', 'of', 'edinburgh', ',', 'where', 'he', 'graduated', 'in', '1', '9', '6', '6', 'with', 'a', 'first', 'class', 'honours', 'm.a', '.'], ['in', '1', '9', '6', '1', ',', 'the', 'site', 'became', 'the', 'fort', 'inge', 'historical', 'site', 'county', 'park', '.'], ['it', 'is', 'dedicated', 'to', 'saint', 'francis', 'xavier', 'and', 'belongs', 'to', 'the', 'parish', 'of', 'draga', '.'], ['the', '2', '0', '0', '9', 'nhl', 'winter', 'classic', 'drew', 'a', '2', '.', '9', 'overnight', 'rating', ',', 'setting', 'a', 'record', 'for', 'the', 'most', 'watched', 'nhl', 'regular', 'season', 'game', 'since', '1', '9', '7', '5', '.'], ['after', 'the', 'release', 'of', 'the', 'album', ',', 'the', 'youngest', 'of', 'the', 'brothers', ',', 'joe', 'loeffler', ',', 'was', 'dismissed', 'from', 'chevelle', '.'], ['thomas', 'supported', 'dan', 'vandal', \"'s\", 'bid', 'to', 'become', 'his', 'successor', 'in', 'the', 'by-election', 'that', 'followed', '.'], ['he', 'and', 'other', 'prisoners', 'revolt', 'and', 'manage', 'to', 'escape', 'with', 'help', 'from', 'eve', '.'], ['during', 'the', 'first', 'few', 'days', 'of', 'active', 'flying', ',', 'the', 'squadron', 'did', 'not', 'encounter', 'any', 'enemy', 'aircraft', '.'], ['the', 'german', 'nazi', 'party', 'protected', 'art', ',', 'gold', 'and', 'other', 'objects', 'that', 'had', 'been', 'either', 'plundered', 'or', 'moved', 'for', 'safekeeping', 'at', 'various', 'storage', 'sites', 'during', 'world', 'war', 'ii', '.'], ['hitchcock', 'arranges', 'for', 'special', 'theater', 'instructions', 'to', 'pique', 'the', 'public', \"'s\", 'interest', 'such', 'as', 'forbidding', 'admittance', 'after', 'the', 'film', 'begins', '.'], ['a', 'beautiful', 'face', 'is', 'at', 'once', 'the', 'most', 'common', 'and', 'most', 'rare', 'among', 'members', 'of', 'the', 'species', '.'], ['it', 'weighs', '1', '4', '.', '5', 'pounds', 'and', 'resides', 'at', 'arizona', 'state', 'university', 'in', 'tempe', '.'], ['in', 'march', '2', '0', '1', '7', ',', 'the', 'company', 'renewed', 'its', 'lease', 'at', 'honey', 'creek', 'corporate', 'center', '.'], ['on', 'july', '3', '0', ',', '1', '9', '9', '0', ',', 'he', 'moved', 'to', 'the', 'cleveland', 'crunch', 'as', 'a', 'free', 'agent', '.'], ['the', 'headquarters', 'are', 'known', 'as', 'joint', 'staff', 'headquarters', 'and', 'act', 'as', 'secretariat', 'of', 'jcsc', '.'], ['following', 'his', 'law', 'apprenticeship', 'under', 'his', 'father', ',', 'white', 'studied', 'jurisprudence', 'under', 'john', 'white', 'brockenbrough', 'at', 'his', 'lexington', 'law', 'school', 'in', 'lexington', '.'], ['lady', 'courtney', 'championed', 'the', '``', 'innocent', 'enemies', \"''\", 'of', 'the', 'first', 'world', 'war', 'and', 'participated', 'in', 'the', 'founding', 'of', 'an', 'emergency', 'committee', 'aimed', 'at', 'helping', 'german', 'civilians', 'living', 'in', 'britain', '.'], ['the', 'local', 'see', 'accordingly', 'came', 'under', 'the', 'latin', 'church', '.'], ['in', '2', '0', '1', '9', ',', 'cinema', 'blend', 'ranked', 'sisko', 'the', 'fourth', 'best', 'star', 'trek', 'starfleet', 'character', 'of', 'all', 'time', '.'], ['the', 'other', 'delegates', 'then', 'declared', 'themselves', 'to', 'be', 'the', 'american', 'federation', 'of', 'labor', '.'], ['first', 'baptist', 'church', 'and', 'beech', 'grove', 'missionary', 'baptist', 'church', 'are', 'the', 'two', 'baptist', 'congregations', 'in', 'town', '.'], ['it', 'is', 'the', 'first', 'team', 'play', 'three', 'days', 'later', ',', 'the', 'copa', 'do', 'brasil', 'replay', 'against', 'vasco', 'da', 'gama', ',', 'and', 'once', 'again', ',', 'marlon', 'starred', 'in', 'a', 'mixed', 'team', '.'], ['shaffer', 'was', 'claimed', 'off', 'waivers', 'by', 'the', 'cleveland', 'indians', 'on', 'january', '2', '6', ',', '2', '0', '1', '7', ',', 'and', 'then', 'designated', 'for', 'assignment', 'by', 'them', 'on', 'january', '3', '0', '.'], ['he', 'also', 'donated', 'his', 'earnings', 'to', 'a', 'fountain', 'in', 'hoxton', 'square', ',', 'shoreditch', ',', 'london', '.'], ['the', 'fourth', 'jersey', 'represented', 'the', 'young', 'rider', 'classification', ',', 'marked', 'by', 'a', 'white', 'jersey', '.'], ['the', 'programme', 'had', 'a', 'very', 'short', 'lifespan', ';', 'it', 'consisted', 'of', '2', '6', 'episodes', ',', 'each', 'attempting', 'to', 'educate', 'children', 'about', 'basic', 'science', ',', 'of', '1', '5', 'minutes', 'each', '.'], ['he', 'served', 'as', 'chief', 'of', 'police', 'in', 'fort', 'pierce', ',', 'florida', 'and', 'port', 'st.', 'lucie', ',', 'florida', '.'], ['the', 'main', 'subclans', 'among', 'jadon', 'or', 'jadhav', 'banjaras', 'are', 'dharawat', ',', 'gughlot', ',', 'badawat', ',', 'boda', ',', 'malod', ',', 'ajmera', ',', 'padya', ',', 'lakhawat', ',', 'and', 'nulawat', '.'], ['feeding', 'on', 'land', 'is', 'a', 'completely', 'different', 'task', 'than', 'feeding', 'in', 'water', '.'], ['here', ',', 'a', 'torrent', 'of', 'water', 'drops', '8', '0', 'feet', '(', '2', '4', 'm', ')', 'over', 'a', 'cliff', 'face', 'of', 'bare', 'rock', '.'], ['the', 'hemp', 'party', 'was', 'founded', 'in', '1', '9', '9', '3', 'and', 'has', 'a', 'constitution', ',', 'which', 'describes', 'an', 'organisation', 'with', 'the', 'aim', 'of', 'endorsing', 'candidates', 'to', 'contest', 'elections', 'to', 'the', 'federal', 'parliament', 'of', 'australia', '.'], ['a', 'reward', 'of', '£', '2', '.', '5', 'million', 'was', 'also', 'offered', ',', 'including', 'from', 'the', '``', 'news', 'of', 'the', 'world', \"''\", ',', 'rowling', ',', 'branson', ',', 'green', ',', 'and', 'a', 'scottish', 'businessman', ',', 'stephen', 'winyard', '.'], ['it', 'is', 'near', 'to', 'rewari-kanina-', 'mahendergarh', 'road', 'on', 'approach', 'road', '.'], ['in', '1', '8', '3', '4', 'the', 'last', 'of', 'the', 'haleri', 'rajas', 'chikka', 'vira', 'raja', 'fell', 'out', 'of', 'favour', 'with', 'the', 'british', 'who', 'then', 'intervened', 'by', 'invading', 'kodagu', '.'], ['on', 'the', 'friday', 'before', 'the', 'switch', 'was', 'made', 'on', 'both', 'series', ',', 'the', 'champion', 'was', 'awarded', 'the', 'shopping', 'prize', 'entitled', 'to', 'based', 'on', 'how', 'much', 'money', 'had', 'been', 'accumulated', 'to', 'that', 'point', '.'], ['the', 'linear', 'and', 'angular', 'momentum', 'of', 'a', 'collection', 'of', 'particles', 'can', 'be', 'simplified', 'by', 'measuring', 'the', 'position', 'and', 'velocity', 'of', 'the', 'particles', 'relative', 'to', 'the', 'center', 'of', 'mass', '.'], ['during', 'the', 'middle', 'ages', ',', 'the', 'normans', 'created', 'one', 'of', 'the', 'most', 'powerful', 'feudal', 'states', 'of', 'western', 'europe', '.'], ['his', 'chair', 'has', 'the', 'sword', 'of', 'state', 'on', 'its', 'right', 'arm', 'and', 'on', 'her', 'left', 'the', 'crowned', 'mace', '.'], ['similarly', ',', '``', 'the', 'wall', 'street', 'journal', \"''\", \"'s\", 'latin', 'america', 'editor', 'joked', 'that', 'the', '``', 'real', 'earthquake', \"''\", 'matched', '``', 'venezuela', \"'s\", 'economic', 'earthquake', \"''\", '.'], ['custom', 'blocks', 'could', 'now', 'be', 'defined', 'within', 'projects', ',', 'along', 'with', 'several', 'other', 'improvements', '.'], ['gemina', \"'s\", 'deformity', 'did', 'not', 'appear', 'until', 'she', 'was', 'three', 'years', 'old', '.'], ['in', 'the', 'cover', 'story', 'february', '1', '9', '9', '3', 'issue', 'of', 'black', 'belt', 'magazine', ',', 'joe', 'lewis', 'states', 'that', 'his', 'proteges', \"'\", 'john', 'and', 'jim', 'graden', 'are', 'his', 'choice', 'to', 'carry', 'the', 'torch', 'of', 'his', 'system', 'after', 'his', 'death', '.'], ['highway', '1', '8', 'leads', 'northeast', 'to', 'jackson', ',', 'the', 'state', 'capital', ',', 'and', 'southwest', 'to', 'port', 'gibson', ',', 'while', 'highway', '2', '7', 'leads', 'northwest', 'to', 'vicksburg', 'and', 'southeast', 'to', 'crystal', 'springs', '.'], ['in', '2', '0', '1', '4', 'the', 'total', 'turnover', 'amounted', 'to', '1', '2', '1', '.', '5', '9', 'mln', 'tons', ',', 'including', '7', '2', '0', ',', '0', '0', '0', 'teu', ',', 'the', 'largest', 'value', 'for', 'the', 'black', 'sea', 'basin', 'and', 'the', 'second-highest', 'in', 'russia', '.'], ['it', 'is', 'defined', 'in', 'the', 'east', ',', 'by', 'the', 'river', 'yamuna', 'and', 'by', 'river', 'tons', 'in', 'the', 'west', ',', 'the', 'northern', 'part', 'comprises', 'uttarkashi', 'district', ',', 'and', 'some', 'parts', 'of', 'himachal', 'pradesh', ',', 'the', 'dehradun', 'tehsil', 'forms', 'its', 'southern', 'periphery', '.'], ['klukowski', 'left', 'the', 'bluebirds', 'on', '1', '7', 'september', '2', '0', '1', '9', '.'], ['in', '1', '9', '9', '5', 'the', 'embassy', 'in', 'paramaribo', '(', 'suriname', ')', 'also', 'suspended', 'operations', '.'], ['i̇yad', 'el-baghdadi', '(', ')', '(', 'born', 'june', '1', '7', ',', '1', '9', '7', '7', ')', 'is', 'a', 'writer', ',', 'entrepreneur', ',', 'and', 'human', 'rights', 'activist', 'who', 'attained', 'international', 'prominence', 'during', 'the', 'arab', 'spring', '.'], ['an', 'internet', 'facility', 'is', 'also', 'available', 'to', 'them', ',', 'and', 'through', 'internet', 'research', 'they', 'can', 'polish', 'their', 'ideas', '.'], ['part', 'xix', 'of', 'the', 'constitution', 'of', 'india', 'is', 'a', 'compilation', 'of', 'laws', 'pertaining', 'to', 'the', 'constitution', 'of', 'india', 'as', 'a', 'country', 'and', 'the', 'union', 'of', 'states', 'that', 'it', 'is', 'made', 'of', '.'], ['``', 'sisters', \"''\", 'is', 'a', 'historical', 'novel', 'set', 'in', 'cheyenne', ',', 'wyoming', 'in', '1', '8', '8', '6', '.'], ['the', 'plight', 'of', 'the', 'yakama', 'native', 'americans', 'had', 'been', 'well', 'established', 'by', 'the', 'time', 'mcwhorter', 'arrived', 'in', 'washington', '.'], ['the', 'kirghiz', 'of', 'xinjiang', 'revolted', 'in', 'the', '1', '9', '3', '2', 'kirghiz', 'rebellion', ',', 'and', 'also', 'participated', 'in', 'the', 'battle', 'of', 'kashgar', '(', '1', '9', '3', '3', ')', 'and', 'again', 'in', '1', '9', '3', '4', '.'], ['in', '2', '0', '1', '1', 'vila', 'lemanu', 'was', 'the', 'most', 'senior', 'killer', 'beez', 'member', 'not', 'in', 'prison', ',', 'he', 'was', 'on', 'the', 'run', 'for', 'several', 'months', 'before', 'having', 'his', 'conviction', 'quashed', 'by', 'the', 'court', 'of', 'appeal', 'and', 'a', 'new', 'trial', 'ordered', '.'], ['eärendil', \"'s\", 'son', 'elrond', 'too', 'chose', 'elvish', 'immortality', ',', 'becoming', 'known', 'as', 'half-elven', ',', 'and', 'in', 'the', 'third', 'age', 'played', 'an', 'important', 'role', 'in', 'the', 'war', 'of', 'the', 'ring', ',', 'as', 'narrated', 'in', '``', 'the', 'lord', 'of', 'the', 'rings', \"''\", '.'], ['she', 'won', 'seven', 'medals', 'in', 'total', 'at', 'the', 'sea', 'games', 'from', '2', '0', '0', '5', 'to', '2', '0', '1', '5', ',', 'including', 'gold', 'in', 'the', 'women', \"'s\", 'singles', 'at', 'the', '2', '0', '1', '1', 'southeast', 'asian', 'games', 'in', 'palembang', '.'], ['she', 'had', 'a', 'number', 'of', 'plays', 'hit', 'broadway', 'in', 'the', '1', '9', '1', '0', 's', 'and', '1', '9', '2', '0', 's', '.'], ['his', 'father', 'was', 'reportedly', 'insane', ',', 'and', 'in', '1', '5', '1', '1', ',', 'he', 'murdered', 'his', 'mother', 'in', 'a', 'fit', 'of', 'insanity', '.'], ['one', 'branch', 'of', 'the', 'road', 'connects', 'pudarci', 'with', 'kamendol', ',', '2', 'km', 'to', 'the', 'east', '.'], ['the', 'northeastern', 'side', 'is', 'named', 'the', 'wharton', 'basin', 'and', 'ceases', 'at', 'the', 'western', 'end', 'of', 'the', 'diamantina', 'fracture', 'zone', 'which', 'passes', 'to', 'the', 'east', 'and', 'almost', 'to', 'the', 'australian', 'continent', '.'], ['several', 'candidates', 'were', 'approached', 'for', 'the', 'liberal', 'nomination', 'and', 'eventually', 'william', 'hildreth', ',', 'a', 'wellington', 'city', 'councillor', 'was', 'selected', 'and', 'endorsed', 'by', 'acting-prime', 'minister', 'james', 'allen', '.'], ['it', 'also', 'encourages', 'the', 'publicizing', 'of', 'cases', 'of', 'censorship', 'and', 'has', 'a', 'place', 'to', 'report', 'instances', 'of', 'censorship', 'on', 'the', 'organization', \"'s\", 'website', '.'], ['the', 'pgi', 'bulletin', ':', 'a', 'quality', 'periodical', 'published', 'five', 'times', 'per', 'year', ',', 'containing', 'guild', 'news', ',', 'pyrotechnic', 'articles', ',', 'historical', 'articles', ',', 'and', 'advertising', '.'], ['on', 'february', '1', '6', ',', 'the', 'sixth', 'day', 'of', 'the', 'trial', 'and', 'the', 'second', 'day', 'of', 'her', 'statement', 'to', 'the', 'court', ',', 'she', 'told', 'the', 'story', 'of', 'her', 'ten-year', 'search', 'for', 'verón', '.'], ['it', 'served', '1', '3', '0', ',', '0', '0', '0', 'people', ',', 'and', 'one', 'third', 'of', 'the', 'geographic', 'area', 'of', 'new', 'south', 'wales', '.'], ['gosberton', 'is', 'a', 'village', 'and', 'civil', 'parish', 'in', 'the', 'south', 'holland', 'district', 'of', 'lincolnshire', ',', 'england', '.'], ['from', 'then', 'on', 'he', 'did', 'not', 'write', 'any', 'fiction', 'until', 'the', 'death', 'of', 'his', 'mother', 'in', '1', '8', '6', '1', '.'], ['he', 'is', 'the', 'son', 'of', 'tamil', 'actor', 'and', 'politician', 'vijayakanth', '.'], ['these', 'directional', 'differences', 'in', 'strength', 'can', 'be', 'quantified', 'with', 'hankinson', \"'s\", 'equation', '.'], ['honor', 'killings', 'in', 'egypt', 'occur', 'due', 'to', 'reasons', 'such', 'as', 'a', 'woman', 'meeting', 'an', 'unrelated', 'man', ',', 'even', 'if', 'this', 'is', 'only', 'an', 'allegation', ';', 'or', 'adultery', '(', 'real', 'or', 'suspected', ')', '.'], ['at', 'the', 'time', ',', 'morgan', 'was', 'still', 'a', 'french', 'citizen', 'writing', 'under', 'the', 'name', 'of', '``', 'sanche', 'de', 'gramont', \"''\", '.'], ['by', 'the', '1', '9', '3', '0', 's', ',', 'the', 'development', 'of', 'animal', 'models', 'in', 'epilepsy', 'research', 'led', 'to', 'the', 'development', 'of', 'phenytoin', 'by', 'tracy', 'putnam', 'and', 'h.', 'houston', 'merritt', ',', 'which', 'had', 'the', 'distinct', 'advantage', 'of', 'treating', 'epileptic', 'seizures', 'with', 'less', 'sedation', '.'], ['survival', 'kids', ',', 'known', 'as', 'stranded', 'kids', 'in', 'europe', 'and', '``', 'survival', 'kids', ':', 'kotou', 'no', 'boukensha', \"''\", '(', '``', 'adventurer', 'of', 'the', 'solitary', 'island', \"''\", ')', 'in', 'japan', ',', 'is', 'a', 'game', 'boy', 'color', 'game', 'developed', 'by', 'konami', 'that', 'was', 'released', 'in', '1', '9', '9', '9', '.'], ['however', ',', 'following', 'presley', \"'s\", 'audition', ',', 'the', 'original', 'group', 'member', 'decided', 'to', 'stay', '.'], ['it', 'may', 'still', 'have', 'fat', 'attached', ',', 'called', 'in', 'spanish', 'in', 'central', 'méxico', '.'], ['the', '``', 'billboard', \"''\", 'music', 'awards', 'are', 'held', 'to', 'honor', 'artists', 'for', 'commercial', 'performance', 'in', 'the', 'u.s.', ',', 'based', 'on', 'record', 'charts', 'published', 'by', '``', 'billboard', \"''\", '.'], ['in', '1', '9', '2', '0', ',', 'the', 'club', 'was', 'forced', 'to', 'move', 'from', 'bainsford', 'when', 'a', 'railway', 'line', 'was', 'built', 'across', 'merchiston', 'park', '.'], ['the', 'union', 'struck', 'deutsche', 'bahn', ',', 'the', 'state-owned', 'company', 'which', 'operates', 'the', 'german', 'rail', 'system', '.'], ['as', 'it', 'completed', 'the', 'loop', 'on', 'december', '9', ',', 'the', 'system', 'further', 'intensified', 'to', 'a', 'mid-level', 'typhoon', 'as', 'it', 'started', 'to', 'rapidly', 'intensify', '.'], ['it', 'was', 'published', 'by', 'lovell', 'reeve', 'and', 'co.', 'of', 'london', '.'], ['the', 'first', 'series', 'began', 'on', '1', '9', 'march', '2', '0', '1', '2', 'with', 'a', 'team', 'of', 'sheriffs', 'from', 'the', 'sheriffs', 'office', ',', 'containing', 'a', 'total', 'of', 'ten', 'episodes', '.'], ['the', 'school', 'had', 'various', 'names', 'over', 'the', 'years', ',', 'including', 'bell', 'tower', 'middle', 'school', '.'], ['high', 'school', 'musical', 'was', 'the', 'first', 'feature-length', 'video', 'content', 'from', 'the', 'itunes', 'store', 'in', 'mid-march', '2', '0', '0', '6', '.'], ['the', '2', '0', '0', '5', 'davidoff', 'swiss', 'indoors', 'was', 'a', 'men', \"'s\", 'tennis', 'tournament', 'played', 'on', 'indoor', 'carpet', 'courts', '.'], ['timothy', 'stonhouse-vigor', '(', '1', '8', 'september', '1', '7', '6', '5', '3', 'january', '1', '8', '3', '1', ')', 'was', 'archdeacon', 'of', 'gloucester', 'from', '1', '8', '0', '4', 'until', '1', '8', '1', '4', '.'], ['ferron', 'started', 'his', 'career', 'with', 'the', 'a.c.', 'milan', 'youth', 'team', '.'], ['oxley', 'found', 'a', 'value', 'of', '3', '5', '7', '°c', 'for', 'the', 'curie', 'temperature', ',', 'below', 'which', 'the', 'compound', 'becomes', 'ferromagnetic', '.'], ['immigration', 'to', 'mexico', 'has', 'been', 'important', 'in', 'shaping', 'the', 'country', \"'s\", 'demographics', '.'], ['there', 'was', 'also', 'a', 'place', 'for', 'lepers', '(', 'considered', 'ritually', 'unclean', ')', ',', 'as', 'well', 'as', 'a', 'ritual', 'barbershop', 'for', 'nazirites', '.'], ['he', 'studied', 'in', 'the', 'yale', 'divinity', 'school', 'from', '1', '8', '4', '1', 'to', '1', '8', '4', '4', ',', 'but', 'during', 'his', 'theological', 'course', ',', 'and', 'afterwards', ',', 'he', 'suffered', 'much', 'from', 'ill-health', '.'], ['schaefer', 'and', 'greengard', 'found', 'that', 'the', 'microrna', 'mir-', '1', '2', '8', 'is', 'involved', 'in', 'modulating', 'neuronal', 'excitability', 'and', 'motor', 'activity', '.'], ['the', 'sociolinguistics', 'of', 'sign', 'languages', 'is', 'the', 'application', 'of', 'sociolinguistic', 'principles', 'to', 'the', 'study', 'of', 'sign', 'languages', '.'], ['the', 'engineer', 'and', 'four', 'other', 'people', 'were', 'injured', '.', \"''\"], ['after', 'spain', 'failed', 'to', 'conquer', 'the', 'area', 'during', 'the', 'war', 'of', 'jenkins', \"'\", 'ear', ',', 'the', 'province', 'legalized', 'slavery', 'in', '1', '7', '4', '9', ',', 'altering', 'the', 'balance', 'of', 'power', 'in', 'the', 'settlements', '.'], ['physiologically', ',', 'micturition', 'involves', 'coordination', 'between', 'the', 'central', ',', 'autonomic', ',', 'and', 'somatic', 'nervous', 'systems', '.'], ['the', 'first', 'few', 'years', 'that', 'alder', 'lived', 'with', 'the', 'indians', 'he', 'was', 'very', 'ill', ',', 'a', 'condition', 'alder', 'attributed', 'to', 'the', 'indians', \"'\", 'diet', '.'], ['the', 'pumps', 'at', 'walton', 'and', 'agbrigg', 'were', 'replaced', 'by', 'a', 'reservoir', 'at', 'cold', 'hiendley', ',', 'which', 'increased', 'the', 'construction', 'costs', 'by', '£', '3', ',', '0', '0', '0', ',', 'but', 'reduced', 'running', 'costs', 'by', '£', '3', '5', '0', 'per', 'year', '.'], ['males', 'had', 'a', 'median', 'income', 'of', '$', '2', '9', ',', '3', '7', '5', 'versus', '$', '1', '7', ',', '0', '0', '0', 'for', 'females', '.'], ['a', 'few', 'years', 'ago', ',', 'before', 'the', 'steyning', 'bypass', 'was', 'built', ',', 'the', 'lamp', 'was', 'smashed', 'by', 'an', 'over-laden', 'timber', 'lorry', 'passing', 'through', 'the', 'high', 'street', '.'], ['he', 'was', 'runner-up', 'at', 'the', 'kosice', 'challenger', 'in', '1', '9', '9', '4', 'and', 'twice', 'appeared', 'in', 'the', 'main', 'draw', 'of', 'atp', 'tour', 'tournaments', ',', 'both', 'times', 'as', 'a', 'qualifier', '.'], ['it', 'occurs', 'in', 'indonesia', ',', 'new', 'guinea', 'and', 'australia', '.'], ['roosevelt', 'elk', 'have', 'been', 'reintroduced', 'into', 'alaska', ',', 'where', 'the', 'largest', 'males', 'are', 'estimated', 'to', 'weigh', 'up', 'to', '.'], ['livingston', 'was', 'laid', 'out', 'about', '1', '9', '0', '4', 'by', 'the', 'heirs', 'of', 'john', 'livingston', '.'], ['some', 'of', 'the', 'art', 'referenced', 'in', 'the', 'play', 'includes', 'salvador', 'dalí', \"'s\", '``', 'two', 'pieces', 'of', 'bread', 'expressing', 'the', 'sentiment', 'of', 'love', \"''\", 'and', 'shakespeare', \"'s\", 'romeo', 'and', 'juliet', '.'], ['the', 'terms', 'derived', 'from', 'the', 'principles', 'of', 'institutionalized', 'marriage', 'represent', 'the', 'interests', 'of', 'the', 'governments', '.'], ['at', 'some', 'point', 'in', '1', '7', '9', '0', ',', 'he', 'moved', 'to', 'london', ',', 'where', 'he', 'exhibited', 'at', 'the', 'royal', 'academy', 'and', 'created', 'works', 'intended', 'for', 'making', 'into', 'prints', '.'], ['the', 'department', 'of', 'justice', 'invariably', 'replied', 'that', 'it', 'regretted', 'exceedingly', 'not', 'to', 'be', 'able', 'to', 'release', 'us', \"'in\", 'the', 'immediate', 'future', '.', \"'\"], ['there', 'was', 'a', 'further', '9', '.', '3', '%', 'reduction', 'in', '2', '0', '0', '9', 'with', 'passenger', 'numbers', 'falling', 'to', 'around', '1', '1', '.', '6', 'million', 'and', 'the', 'number', 'of', 'aircraft', 'movements', 'reducing', 'by', '1', '3', '.', '6', '%', 'to', '1', '0', '3', ',', '5', '3', '6', '.'], ['the', 'hospital', 'plans', 'included', 'a', 'private', 'reservoir', ',', 'a', 'private', 'underground', 'water', 'source', ',', 'and', 'an', 'oxygen', 'manufacturing', 'facility', '.'], ['though', 'brown', 'found', '``', 'tnns', \"''\", 'fun', ',', 'different', ',', 'and', 'addictive', ',', 'it', 'had', '``', 'not', 'quite', 'won', '[', 'him', ']', 'over', \"''\", '.'], ['fixed', 'nets', 'and', 'seines', 'are', 'common', 'methods', 'used', 'to', 'catch', 'mediterranean', 'horse', 'mackerel', '.'], ['although', 'too', 'labor-intensive', 'for', 'widespread', 'industrial', 'application', ',', 'they', 'do', 'provide', 'a', 'versatile', 'research', 'testbed', '.'], ['milliken', 'was', 'also', 'became', 'involved', 'in', 'the', 'acemeline', 'manufacturing', 'company', '.'], ['tsaus', 'mountains', 'is', 'a', 'mountain', 'range', 'within', 'diamond', 'restricted', 'area', 'also', 'called', '``', 'sperrgebiet', \"''\", 'located', 'in', 'the', 'southwestern', 'part', 'of', 'namibia', '.'], ['many', 'engines', 'of', 'this', 'make', 'were', 'sent', 'to', 'south', 'america', 'where', 'they', 'were', 'popular', '.'], ['the', 'allegations', 'began', 'with', 'the', 'circumstances', 'surrounding', 'the', 'death', 'of', 'ira', 'volunteer', 'and', 'fru', 'asset', 'frank', 'hegarty', ',', 'who', 'was', 'encouraged', 'by', 'his', 'handlers', 'to', 'penetrate', 'the', 'ira', '.'], ['the', 'scout', 'ant', 'therefore', 'leads', 'the', 'raid', 'from', 'the', 'front', ',', 'with', 'the', 'other', 'ants', 'following', 'in', 'a', 'column-like', 'formation', '.'], ['``', 'artigas', \"''\", '(', 'de-', '2', ')', 'was', 'finally', 'decommissioned', 'and', 'scrapped', 'in', '1', '9', '8', '8', '.'], ['it', 'is', 'all', 'make-belief', '``', '[', 'sic', ']', \"''\", '.'], ['a', 'year', 'later', ',', 'an', 'article', 'in', '``', 'the', 'new', 'yorker', \"''\", 'praised', 'the', 'store', ',', 'and', 'customers', 'flocked', 'to', 'it', 'in', 'droves', '.'], ['odom', 'ran', 'for', 'an', 'eighth', 'consecutive', 'four-year', 'term', 'in', '2', '0', '0', '7', 'but', 'lost', 'to', 'michael', 'strain', ',', 'a', 'veterinarian', ',', 'a', 'dairy', 'farmer', ',', 'and', 'an', 'outgoing', 'member', 'of', 'the', 'louisiana', 'house', 'of', 'representatives', 'from', 'st.', 'tammany', 'parish', 'in', 'the', 'new', 'orleans', 'suburbs', '.'], ['it', 'is', 'located', 'two', 'miles', '(', '3', 'km', ')', 'south', 'of', 'inverness', ',', 'off', 'of', 'u.s.', 'hwy', '.'], ['born', 'in', 'tårnby', ',', 'denmark', ',', 'zimling', 'started', 'his', 'football', 'career', 'at', 'ab', '7', '4', '0', 'when', 'he', 'was', 'four', 'years', 'old', '.'], ['dean', 'was', 're-elected', 'handily', 'in', '2', '0', '0', '4', ',', 'winning', '6', '3', '%', 'of', 'the', 'vote', 'to', 'democratic', 'nominee', 'mike', 'jarrett', \"'s\", '3', '7', '%', ',', 'and', 'was', 'unopposed', 'for', 're-election', 'in', '2', '0', '0', '6', '.'], ['it', 'makes', 'up', '5', '4', '%', 'of', 'catches', 'in', 'the', 'black', 'sea', 'and', '3', '9', '%', 'in', 'the', 'sea', 'of', 'marmara', '.'], ['using', 'yinoyang', ',', 'many', 'o-glcnac', 'sites', 'have', 'been', 'predicted', '.'], ['from', '1', '8', '1', '1', 'to', '1', '8', '2', '8', ',', 'the', 'hyderabadi', 'talpur', 'state', 'was', 'ruled', 'by', 'mir', 'karam', 'ali', 'talpur', '.'], ['the', 'person', 'should', 'be', 'at', 'least', '3', '5', 'years', 'of', 'age', 'and', '``', 'should', 'have', 'resided', \"''\", 'in', 'mexico', 'for', 'at', 'least', '2', '0', 'years', 'in', 'his', 'entire', 'lifetime', 'and', 'for', 'the', 'entire', 'year', 'before', 'the', 'election', '.'], ['he', 'joined', 'charles', 'august', 'selby', \"'s\", 'and', 'thomas', 'ter', 'broch', \"'s\", 'trading', 'firm', 'selby', '&', 'amp', ';', 'co.', 'which', 'from', 'then', 'on', 'traded', 'first', 'as', 'selby', ',', 'christmas', 'and', 'ter', 'borch', 'and', 'after', 'selby', \"'s\", 'retirement', 'as', 'christmas', '&', 'amp', ';', 'ter', 'borch', '.'], ['in', 'many', 'places', ',', 'the', 'limestone', 'is', 'thousands', 'of', 'feet', 'thick', '.'], ['tugnutt', 'had', 'a', 'sub-par', 'season', 'by', 'his', 'standards', ',', 'and', 'was', 'dealt', 'to', 'the', 'pittsburgh', 'penguins', 'for', 'two-time', 'stanley', 'cup', 'champion', 'goaltender', 'tom', 'barrasso', 'at', 'the', 'trade', 'deadline', '.'], ['the', 'sturgeon', 'volcanic', 'field', 'is', 'a', 'lava', 'field', 'in', 'queensland', ',', 'australia', '.'], ['mechanical', 'units', ',', 'for', 'example', ',', 'are', 'only', 'available', 'in', 'grades', '0', ',', '1', ',', '3', ',', 'and', '5', '.'], ['millar', 'has', 'had', 'numerous', 'solo', 'and', 'group', 'exhibitions', 'in', 'both', 'new', 'zealand', 'and', 'europe', 'and', 'found', 'critical', 'acclaim', 'in', 'the', 'international', 'press', '.'], ['banana', 'was', 'born', 'on', '5', 'march', '1', '9', '3', '6', ',', 'near', 'essexvale', '(', 'now', 'esigodini', ')', ',', 'matabeleland', ',', 'southern', 'rhodesia', '.'], ['in', '2', '0', '1', '1', ',', '4', '6', '.', '9', 'percent', 'of', 'pennsylvania', 'school', 'districts', 'achieved', 'adequate', 'yearly', 'progress', '(', 'ayp', ')', 'based', 'on', 'student', 'performance', '.'], ['daffy', 'enters', 'with', 'his', 'traveling', 'salesman', 'suitcase', 'of', 'novelty', 'joke', 'items', 'and', 'offers', 'to', 'help', 'foghorn', 'get', 'back', 'at', 'the', 'dog', 'by', 'selling', 'him', 'a', 'trick', 'bone', 'that', 'is', 'spring-loaded', '.'], ['his', 'status', 'as', 'a', 'manx', 'poet', 'of', 'importance', 'was', 'confirmed', 'in', '2', '0', '1', '0', 'by', 'his', 'being', 'featured', 'with', 'multiple', 'entries', 'in', 'the', '2', '0', '1', '0', 'anthology', 'of', 'manx', 'literature', 'by', 'robert', 'corteen', 'carswell', ',', '``', 'manannan', \"'s\", 'cloak', \"''\", '.'], ['basic', 'crystal', 'growth', 'methods', 'can', 'be', 'separated', 'into', 'four', 'categories', 'based', 'on', 'what', 'they', 'are', 'artificially', 'grown', 'from', ':', 'melt', ',', 'solid', ',', 'vapor', ',', 'and', 'solution', '.'], ['samuel', 'noah', 'kramer', 'compiled', 'twenty-two', 'different', 'fragments', 'into', 'the', 'first', 'complete', 'edition', 'of', 'the', '``', 'lament', \"''\", ',', 'which', 'was', 'published', 'in', '1', '9', '4', '0', 'by', 'the', 'university', 'of', 'chicago', 'as', '``', 'lamentation', 'over', 'the', 'destruction', 'of', 'ur', \"''\", '(', '``', 'assyriological', 'study', \"''\", 'no', '.'], ['in', '1', '9', '2', '0', ',', 'gondra', 'came', 'out', 'victorious', 'in', 'the', 'presidential', 'election', '.'], ['ibis', 'tells', 'the', 'storyteller', 'that', 'she', 'is', 'far', 'more', 'proficient', 'in', 'battle', '.'], ['as', 'a', 'dual-sport', 'motorcycle', ',', 'it', 'can', 'be', 'used', 'both', 'on', 'roads', 'and', 'in', 'light', 'off-road', 'conditions', '.'], ['baekeland', 'also', 'filed', 'for', 'patent', 'protection', 'in', 'other', 'countries', ',', 'including', 'belgium', ',', 'canada', ',', 'denmark', ',', 'hungary', ',', 'japan', ',', 'mexico', ',', 'russia', ',', 'and', 'spain', '.'], ['local', 'political', 'parties', 'are', 'formed', 'on', 'an', 'ad-hoc', 'basis', ',', 'generally', 'focused', 'on', 'key', 'issues', 'of', 'local', 'concern', ';', 'national', 'political', 'parties', 'do', 'not', 'officially', 'participate', 'in', 'township', 'elections', '.'], ['we', 'did', 'it', 'so', 'the', 'most', 'people', 'possible', 'would', 'see', 'it', '.', \"''\"], ['noura', \"'s\", 'full', 'siblings', 'included', 'faisal', ',', 'abdulaziz', ',', 'bazza', ',', 'haya', 'and', 'saad', '.'], ['in', '1', '8', '0', '3', 'they', 'were', 'compensated', 'with', 'secularized', 'ilbenstadt', 'abbey', '(', 'at', 'niddatal', ')', 'and', 'engelthal', 'abbey', '.'], ['hockey', 'itself', 'established', 'a', 'whole', 'new', 'foothold', 'in', 'southern', 'california', '.'], ['the', 'album', 'reached', '#', '3', '9', 'on', 'the', 'itunes', 'charts', 'upon', 'its', 'release', '.'], ['as', 'a', 'result', ',', 'pashukanis', 'started', 'to', 'revise', 'his', 'theory', 'of', 'state', '.'], ['organization', 'was', 'prolonged', 'and', 'slow', ';', 'however', ',', 'the', 'convergence', 'of', 'a', 'kelvin', 'wave', 'and', 'a', 'gulf', 'of', 'tehuantepec', 'gap', 'wind', 'event', 'on', 'october', '1', '5', 'spurred', 'a', 'significant', 'increase', 'in', 'convection', '.'], ['costa', 'rica', 'a', 'came', 'first', 'in', 'this', 'tournament', ',', 'panama', '2', 'nd', ',', 'guatemala', '3', 'rd', ',', 'and', 'costa', 'rica', 'b', '4', 'th', '.'], ['``', 'hoofbeats', \"''\", 'is', 'the', 'official', 'student', 'newspaper', 'of', 'calhoun', '.'], ['athlone', 'north', 'is', 'located', 'in', 'the', 'centre', 'of', 'county', 'roscommon', ',', 'bounded', 'by', 'the', 'river', 'shannon', 'and', 'lough', 'ree', 'to', 'the', 'east', 'and', 'the', 'river', 'suck', 'to', 'the', 'west', '.'], ['one', 'of', 'only', 'a', 'handful', 'of', 'americans', 'amongst', 'the', 'british', 'and', 'australian', 'inmates', ',', 'he', 'thrives', 'through', 'his', 'conniving', 'and', 'black', 'market', 'enterprises', ';', 'whereas', 'others', ',', 'nearly', 'all', 'of', 'higher', 'rank', ',', 'struggle', 'to', 'survive', 'sickness', 'and', 'starvation', 'while', 'trying', 'to', 'keep', 'their', 'civilised', 'nature', '.'], ['eggan', 'himself', 'is', 'cautious', 'about', 'his', 'team', \"'s\", 'work', ',', 'with', 'an', 'early', 'stage', '2', '0', '0', '5', 'profile', 'in', '``', 'nature', \"''\", 'noting', 'there', 'was', 'still', 'much', 'work', 'to', 'do', ':'], ['she', 'sailed', 'on', 'to', 'jamaica', 'and', 'panama', ',', 'but', 'there', 'was', 'no', 'new', 'cargo', 'to', 'pick', 'up', '.'], ['adrian', 'arrington', 'had', 'his', 'best', 'game', 'to', 'date', ',', 'catching', 'four', 'passes', 'for', '7', '9', 'yards', '.'], ['the', 'plan', 'also', 'seeks', 'to', 'safeguard', 'miners', \"'\", 'healthcare', 'and', 'pensions', '.'], ['idia', 'suffusalis', 'is', 'a', 'species', 'of', 'litter', 'moth', 'of', 'the', 'family', 'erebidae', '.'], ['despite', 'publicly', 'cooperating', ',', 'however', ',', 'tensions', 'began', 'to', 'rise', 'between', 'liwa', 'thuwar', 'al-raqqa', ',', 'isil', ',', 'and', 'ahrar', 'al-sham', '.'], ['he', 'was', 'rewarded', 'by', 'being', 'made', 'director', 'of', 'the', 'institute', 'of', 'soviet', 'construction', 'and', 'law', '(', 'predecessor', 'of', 'the', 'institute', 'of', 'state', 'and', 'law', 'of', 'the', 'soviet', 'academy', 'of', 'sciences', ')', 'in', '1', '9', '3', '1', '.'], ['in', 'june', '2', '0', '1', '9', ',', 'kent', 'signed', 'for', 'peterborough', 'united', '.'], ['memes', 'reproduce', 'by', 'copying', 'from', 'a', 'nervous', 'system', 'to', 'another', 'one', ',', 'either', 'by', 'communication', 'or', 'imitation', '.'], ['other', 'authors', 'include', 'isaac', 'knapp', '(', '1', '8', '3', '8', ',', 'boston', ')', 'and', 's.', 'w', 'benedict', '(', '1', '8', '4', '2', ',', 'boston', ')', '.'], ['in', 'april', '2', '0', '2', '0', ',', 'she', 'gave', 'another', 'acoustic', 'performance', 'of', 'the', 'song', 'for', 'sirius', 'xm', '``', 'the', 'highway', \"''\", \"'s\", '``', 'stagecouch', 'weekend', ',', \"''\", 'on', 'account', 'of', 'stagecoach', 'festival', 'being', 'postponed', 'to', 'october', '.'], ['it', 'is', 'found', 'in', 'indo-australian', 'tropics', 'of', 'india', ',', 'sri', 'lanka', ',', 'east', 'to', 'singapore', ',', 'taiwan', ',', 'the', 'solomon', 'islands', 'and', 'guam', '.'], ['thomas', 'signer', 'born', '1', '9', '6', '4', ',', 'is', 'an', 'independent', 'financial', 'consultant', ',', 'business', 'school', 'lecturer', 'at', 'sbs', 'swiss', 'business', 'school', ',', 'investor', 'and', 'author', '.'], ['when', 'the', 'caf', 'later', 'discontinued', 'the', 'strike/reconnaissance', 'role', 'for', 'conventional', 'attack', ',', 'the', 'm', '6', '1', 'a', '1', 'was', 'refitted', ',', 'along', 'with', 'u.s.', 'snakeye', '``', 'iron', \"''\", 'bombs', ',', 'british', 'bl', '7', '5', '5', 'cluster', 'bombs', 'and', 'canadian-designed', 'crv-', '7', 'rocket', 'pods', '.'], ['kitanglad', 'mountain', 'range', 'is', 'located', 'in', 'the', 'northern', 'central', 'part', 'of', 'bukidnon', 'province', ',', 'directly', 'north', 'of', 'the', 'neighboring', 'kalatungan', 'mountain', 'range', '.'], ['the', 'proximal', 'part', 'of', 'the', 'proboscis', 'bears', 'about', '2', '5', 'longitudinal', 'rows', 'of', 'tiny', 'papillae', ',', 'and', 'the', 'distal', 'part', 'bears', '6', 'longitudinal', 'rows', 'of', 'larger', ',', 'knob-like', 'protuberances', ',', 'and', 'a', 'ring', 'of', 'papillae', 'at', 'the', 'tip', '.'], ['bucklow', 'was', ',', 'from', '1', '9', '4', '5', 'to', '1', '9', '5', '0', ',', 'a', 'county', 'constituency', 'of', 'the', 'house', 'of', 'commons', 'of', 'the', 'parliament', 'of', 'the', 'united', 'kingdom', '.'], ['auction', 'website', 'on', 'june', '2', '5', ',', '2', '0', '1', '0', 'and', 'sold', 'for', '1', ',', '6', '9', '9', ',', '0', '0', '0', 'yen', 'after', 'starting', 'the', 'auction', 'at', '1', 'yen', '.'], ['a', 'subsequent', 'attack', 'on', 'bombarde', 'was', 'more', 'successful', 'with', 'the', 'british', 'capturing', 'the', 'fort', 'and', 'its', 'garrison', ',', 'but', 'then', 'withdrawing', '.'], ['it', 'was', 'also', 'in', '1', '9', '3', '2', ',', 'that', 'he', 'became', 'commander-in-chief', 'of', 'the', 'veterans', 'of', 'foreign', 'wars', '.'], ['karl', 'schmidt', 'married', 'margaret', 'wightman', 'in', '1', '9', '1', '9', ',', 'and', 'they', 'had', 'two', 'sons', ',', 'john', 'and', 'robert', '.'], ['hurezani', 'is', 'a', 'commune', 'in', 'gorj', 'county', ',', 'oltenia', ',', 'romania', '.'], ['by', '1', '7', '7', '6', 'the', 'frankenthal', 'porcelain', 'factory', 'had', 'shops', 'in', 'aachen', ',', 'basle', ',', 'frankfurt', 'am', 'main', ',', 'livorno', ',', 'mainz', ',', 'munich', 'and', 'nancy', '.'], ['in', 'the', 'second', 'world', 'war', ',', '8', '0', '%', 'of', 'hallschlag', 'was', 'destroyed', '.'], ['the', 'college', 'is', 'funded', 'by', 'the', 'university', 'grants', 'commission', ',', 'the', 'state', 'government', ',', 'and', 'the', 'members', 'of', 'parliament', 'local', 'area', 'development', 'scheme', '.'], ['if', 'the', 'cyst', 'has', 'shrunk', 'enough', 'that', 'it', 'is', 'not', 'causing', 'any', 'pain', 'or', 'trouble', 'anymore', ',', 'then', 'a', 'second', 'treatment', 'might', 'not', 'be', 'necessary', '.'], ['bruno', 'shoots', 'and', 'kills', 'charles', 'in', 'cold', 'blood', 'in', 'front', 'of', 'charles', \"'\", 'son', 'edward', '(', 'nick', 'wright', ')', '.'], ['this', 'technique', 'can', 'be', 'applied', 'to', 'a', 'moving', 'limb', 'by', 'rotating', 'a', 'joint', ',', 'or', 'a', 'thrown', 'object', 'moving', 'along', 'a', 'parabolic', 'trajectory', '.'], ['there', 'is', 'no', 'methodist', 'church', 'operating', 'in', 'bradford', 'since', 'the', 'closing', 'of', 'bradford', 'united', 'methodist', 'church', 'in', 'april', '2', '0', '1', '8', '.'], ['justin', 'caruso', 'is', 'an', 'american', 'dj', 'and', 'record', 'producer', 'based', 'in', 'los', 'angeles', ',', 'california', '.'], ['as', 'of', 'the', 'census', 'of', '2', '0', '0', '0', ',', 'there', 'were', '5', '3', '4', 'people', ',', '2', '1', '8', 'households', ',', 'and', '1', '4', '6', 'families', 'residing', 'in', 'the', 'town', '.'], ['reconciling', 'warring', 'groups', 'between', 'the', 'north', 'and', 'south', ',', 'in', 'darfur', 'he', 'was', 'working', 'for', 'reconciliation', 'between', 'darfur', 'and', 'the', 'south', 'and', 'between', 'darfur', 'and', 'the', 'rest', 'of', 'sudan', '.'], ['on', 'april', '2', '8', ',', '2', '0', '1', '7', ',', 'the', 'company', \"'s\", 'board', 'of', 'directors', 'dropped', 'the', 'plan', 'of', 'selling', 'the', 'company', 'and', 'instead', 'focus', 'on', 'growth', 'strategies', '.'], ['manute', 'embodied', 'everything', 'we', 'can', 'think', 'of', 'in', 'sudan', '.'], ['in', 'practice', ',', 'many', 'us', 'helicopters', 'used', 'in', 'emergency', 'services', 'are', 'equipped', 'with', 'radios', 'that', 'allow', 'communications', 'on', 'nearly', 'any', 'conventional', 'two-way', 'radio', 'system', ',', 'so', 'long', 'as', 'the', 'aircrew', 'know', 'the', 'frequency', 'and', 'associated', 'signaling', 'tones', '.'], ['in', '1', '9', '4', '3', 'francis', 'stuart', ',', 'speaking', 'on', 'the', 'german', 'propaganda', 'broadcast', '``', 'redaktion-irland', \"''\", ',', 'urged', 'irish', 'voters', 'to', 'support', 'aiséirghe', 'and', 'córas', 'na', 'poblachta', '.'], ['on', '1', 'august', '1', '8', '3', '8', ',', 'a', 'committee', 'was', 'appointed', 'to', 'inquire', 'into', 'the', 'export', 'of', 'indian', 'labour', '.'], ['meanwhile', ',', 'datner', 'and', 'micki', 'begin', 'to', 'start', 'a', 'secret', 'romance', 'for', 'each', 'other', '.'], ['in', '2', '0', '2', '0', ',', 'the', 'columbus', 'historical', 'society', 'aims', 'to', 'raise', 'funds', 'to', 'purchase', 'engine', 'house', 'no', '.'], ['he', 'returned', 'to', 'brazil', 'in', '1', '9', '8', '8', 'where', 'he', 'composed', 'part', 'of', 'the', 'soundtrack', 'to', '``', 'inconfidência', 'mineira', \"''\", ',', 'which', 'was', 'also', 'for', 'the', 'globo', 'repórter', '.'], ['the', 'new', 'detachable', 'aluminium', 'alloy', 'cylinder', 'head', 'was', 'fitted', 'over', 'inclined', 'side', 'valves', 'and', 'anodised', 'aluminium', 'alloy', 'pistons', '.'], ['in', 'december', '2', '0', '1', '9', ',', 'along', 'with', '4', '2', 'other', 'leading', 'cultural', 'figures', ',', 'he', 'signed', 'a', 'letter', 'endorsing', 'the', 'labour', 'party', 'under', 'corbyn', \"'s\", 'leadership', 'in', 'the', '2', '0', '1', '9', 'general', 'election', '.'], ['before', 'the', 'division', 'of', 'germany', 'the', 'mid-german', 'railway', 'was', 'an', 'important', 'link', 'between', 'the', 'industrial', 'areas', 'of', 'saxony', 'and', 'western', 'germany', '.'], ['he', 'was', 'subsequently', 'named', 'as', 'the', 'alberta', 'progressive', 'conservative', 'party', \"'s\", 'candidate', 'in', 'a', 'by-election', 'in', 'edmonton-whitemud', ',', 'the', 'seat', 'formerly', 'held', 'by', 'dave', 'hancock', ',', 'which', 'was', 'scheduled', 'for', 'october', '2', '7', ',', '2', '0', '1', '4', '.'], ['many', 'people', 'experience', 'little', 'or', 'no', 'pain', 'while', 'others', ',', 'with', 'exactly', 'the', 'same', 'amount', 'of', 'pathology', ',', 'experience', 'chronic', 'pain', '.'], ['the', 'electoral', 'colleges', 'which', 'elect', 'hong', 'kong', 'and', 'macau', 'npc', 'members', 'are', 'largely', 'similar', 'in', 'composition', 'to', 'the', 'bodies', 'which', 'elect', 'the', 'chief', 'executives', 'of', 'those', 'regions', '.'], ['the', 'site', 'of', 'the', 'gold', 'coast', 'hospital', ',', 'also', 'formerly', 'known', 'as', 'the', 'southport', 'maternity', 'hospital', ',', 'was', 'first', 'identified', 'as', 'being', 'a', 'suitable', 'location', 'for', 'a', 'hospital', 'in', '1', '9', '2', '1', 'after', 'a', 'number', 'of', 'other', 'locations', 'had', 'been', 'considered', '.'], ['at', 'the', 'end', 'of', 'the', 'meal', ',', 'gonzalo', 'grabs', 'don', 'juan', 'by', 'the', 'wrist', ',', 'striking', 'him', 'dead', '.'], ['its', 'aim', 'was', 'ostensibly', 'to', 'transform', 'germany', 'into', 'a', 'global', 'power', 'through', 'assertive', 'diplomacy', ',', 'the', 'acquisition', 'of', 'overseas', 'colonies', ',', 'and', 'the', 'development', 'of', 'a', 'large', 'navy', '.'], ['in', 'the', 'united', 'kingdom', ',', 'the', 'film', 'collected', 'across', '2', '3', 'screens', '.'], ['wanting', 'international', 'exposure', 'and', 'education', ',', 'he', 'went', 'to', 'london', ',', 'uk', 'to', 'study', 'advanced', 'techniques', 'in', 'morris', 'school', 'of', 'hairdressing', '.'], ['cooper', 'displays', 'an', 'array', 'of', 'quirky', 'mannerisms', 'such', 'as', 'giving', 'a', \"'thumbs\", 'up', \"'\", 'when', 'satisfied', ',', 'sage-like', 'sayings', ',', 'and', 'distinctive', 'sense', 'of', 'humor', 'along', 'with', 'his', 'love', 'for', 'a', 'good', 'cherry', 'pie', 'and', 'a', '``', 'damn', 'fine', 'cup', 'of', 'coffee', \"''\", 'which', 'he', 'takes', 'black', '.'], ['an', 'election', 'was', 'scheduled', 'for', 'the', 'beginning', 'of', '2', '0', '0', '7', ',', 'however', 'it', 'did', 'not', 'take', 'place', '.'], ['whilst', 'filming', 'the', '``', 'masters', 'of', 'horror', \"''\", 'episode', 'cigarette', 'burns', 'in', '2', '0', '0', '5', ',', 'she', 'was', 'accidentally', 'blinded', '.'], ['the', 'possibility', 'of', 'transfer', 'was', 'noted', 'as', 'a', 'possibility', '.'], ['marcal', 'first', 'received', 'permission', 'to', 'sell', 'kaofin', ',', 'a', 'waste', 'product', 'of', 'its', 'paper', 'manufacturing', 'processes', ',', 'as', 'a', 'result', 'of', 'a', 'bud', 'letter', 'issued', 'by', 'the', 'new', 'jersey', 'department', 'of', 'environmental', 'protection', 'in', '1', '9', '9', '3', '.'], ['in', 'one', 'of', 'the', 'novel', \"'s\", 'most', 'important', 'scenes', ',', 'angela', \"'s\", 'sister', 'is', 'newly', 'arrived', 'at', 'pennsylvania', 'station', 'from', 'philadelphia', '.'], ['these', 'two', 'ideas', 'of', 'self', 'are', 'also', 'called', 'self-construal', 'styles', '.'], ['around', 'the', 'same', 'time', ',', 'hed', 'kandi', 'was', 'bought', 'out', 'by', 'ministry', 'of', 'sound', 'and', 'the', 'album', 'got', 'shelved', '.'], ['on', 'january', '2', '0', ',', '2', '0', '1', '2', ',', 'brown', 'announced', 'that', 'nas', 'will', 'appear', 'as', 'a', 'guest', 'vocalist', 'on', 'the', 'album', '.'], ['some', 'are', 'kept', 'to', 'simplify', 'porting', 'of', 'old', 'programs', 'but', 'may', 'eventually', 'be', 'deleted', '.'], ['he', 'succeeded', 'in', 'constructing', 'a', 'church', 'which', 'was', 'situated', 'approximately', 'where', 'the', 'guildford', 'grammar', 'school', 'chapel', 'now', 'stands', '.'], ['several', 'similar', 'vases', ',', 'probably', 'made', 'in', 'egypt', 'in', 'the', 'name', 'of', 'xerxes', 'i', ',', 'have', 'since', 'been', 'found', ',', 'such', 'as', 'the', 'jar', 'of', 'xerxes', 'i', ',', 'found', 'in', 'the', 'ruins', 'of', 'the', 'mausoleum', 'at', 'halicarnassus', '.'], ['it', 'offers', 'apv-', 'i', 'instrumental', 'approach', 'and', 'aviation', 'fuel', 'station', '.'], ['in', '1', '9', '8', '2', 'the', 'caulfield', 'institute', 'of', 'technology', 'amalgamated', 'with', 'the', 'state', 'college', 'of', 'victoria', 'at', 'frankston', 'to', 'form', 'the', 'chisholm', 'institute', 'of', 'technology', '.'], ['later', ',', 'more', 'affordable', 'models', 'in', '2', '0', 'w', 'and', '4', '0', 'w', 'were', 'added', ',', 'with', 'cheaper', 'pcb', 'technology', '.'], ['if', 'players', 'have', 'too', 'few', 'remaining', 'traps', 'to', 'sufficiently', 'hurt', 'each', 'bandit', ',', 'the', 'game', 'will', 'continue', ',', 'but', 'victory', 'will', 'be', 'impossible', '.'], ['the', 'processor', 'controls', 'how', 'much', 'voltage', 'is', 'applied', ',', 'and', 'for', 'how', 'long', ',', 'depending', 'on', 'the', 'fitting', 'in', 'use', '.'], ['wards', 'in', 'wembley', 'cottage', 'hospital', 'and', 'willesden', 'general', 'were', 'also', 'named', 'after', 'him', '.'], ['the', 'transmit', 'signal', 'will', 'leak', 'into', 'the', 'receiver', 'on', 'practical', 'systems', '.'], ['the', 'current', 'main', 'village', ',', 'bridge', 'of', 'nethy', ',', 'now', 'more', 'well', 'known', 'as', 'nethy', 'bridge', 'was', 'located', 'around', 'the', 'confluence', 'of', 'the', 'river', 'nethy', 'and', 'the', 'duack', 'burn', ',', 'at', ';', 'its', 'earlier', 'growth', 'was', 'mostly', 'upriver', 'along', 'the', 'banks', 'of', 'the', 'nethy', '.'], ['its', 'population', 'is', '8', '2', '8', '(', '2', '0', '1', '1', 'census', ')', '.'], ['a', 'sixth', 'school', ',', 'boundary', 'beach', '(', 'grades', 'k-', '3', ')', ',', 'closed', 'in', 'june', '2', '0', '0', '9', '.'], ['piet', 'is', 'a', 'language', 'designed', 'by', 'david', 'morgan-mar', ',', 'whose', 'programs', 'are', 'bitmaps', 'that', 'look', 'like', 'abstract', 'art', '.'], ['congress', 'feared', 'this', 'decision', 'would', 'have', 'serious', 'ramifications', 'throughout', 'the', 'government', '.'], ['originally', 'named', 'at', 'roborough', ',', 'the', 'villages', 'of', 'roborough', 'and', 'belliver', 'now', 'sit', 'a', 'mile', 'up', 'the', 'a', '3', '8', '6', 'from', 'the', 'site', '.'], ['ana', 'begins', 'to', 'suspect', 'that', 'miranda', 'and', 'salvador', 'are', 'behind', 'gael', \"'s\", 'death', '.'], ['lee-robbins', 'exhibited', 'her', 'work', 'at', 'the', 'palace', 'of', 'fine', 'arts', 'at', 'the', '1', '8', '9', '3', 'world', \"'s\", 'columbian', 'exposition', 'in', 'chicago', ',', 'illinois', '.'], ['ampa', 'generate', 'shorter', 'and', 'larger', 'excitatory', 'postsynaptic', 'currents', 'than', 'other', 'ionotropic', 'glutamate', 'receptors', '.'], ['in', 'the', 'philippines', ',', 'the', 'squadron', 'received', 'a', 'wide', 'variety', 'of', 'second-line', 'hand-me-down', 'aircraft', 'transferred', 'from', 'units', 'in', 'the', 'united', 'states', 'during', 'the', 'austere', 'years', 'of', 'air', 'corps', 'procurement', 'during', 'the', '1', '9', '2', '0', 's', 'and', '1', '9', '3', '0', 's'], ['the', 'earliest', 'record', 'of', 'saint', 'patrick', \"'s\", 'day', 'celebrations', 'in', 'the', 'city', 'is', '1', '8', '0', '9', '.'], ['later', 'cases', 'reported', 'in', 'the', 'early', '1', '9', '9', '0', 's', 'began', 'to', 'show', 'that', 'hypotonia', ',', 'hyporeflexia', ',', 'seizures', ',', 'and', 'a', 'nonprogressive', 'ataxia', 'were', 'frequent', 'clinical', 'features', 'as', 'well', '.'], ['he', 'became', 'educated', 'at', 'shanghai', 'university', 'in', 'his', 'early', 'days', 'and', 'later', 'joined', 'the', 'chinese', 'youth', ',', 'and', 'turned', 'into', 'a', 'ccp', 'member', 'in', '1', '9', '2', '5', '.'], ['on', 'october', '1', '1', ',', '2', '0', '1', '1', ',', 'virtual', 'programming', 'released', 'elven', 'legacy', 'collection', ',', 'which', 'includes', 'the', 'original', 'game', 'and', 'its', 'three', 'expansion', 'packs', ',', 'for', 'mac', 'os', 'x', '.'], ['worcester', 'castle', 'was', 'in', 'place', 'by', '1', '0', '6', '9', ',', 'its', 'outer', 'bailey', 'built', 'on', 'land', 'that', 'had', 'previously', 'been', 'the', 'cemetery', 'for', 'the', 'monks', 'of', 'the', 'worcester', 'cathedral', 'chapter', '.'], ['he', 'joined', 'the', 'law', 'firm', 'of', 'gowling', 'lafleur', 'henderson', 'llp', 'where', 'he', 'practiced', 'corporate', 'law', 'and', 'was', 'a', 'senior', 'partner', '.'], ['the', 'jhajha', '-', 'dibrugarh', 'weekly', 'express', 'is', 'an', 'express', 'train', 'belonging', 'to', 'northeast', 'frontier', 'railway', 'zone', 'that', 'runs', 'between', 'jhajha', 'and', 'dibrugarh', 'in', 'india', ',', 'covering', 'the', 'states', 'of', 'jharkhand', ',', 'bihar', ',', 'west', 'bengal', ',', 'nagaland', 'and', 'assam', '.'], ['the', 'increased', 'activity', 'of', 'these', 'health-promoting', 'bacteria', 'results', 'in', 'a', 'number', 'of', 'effects', ',', 'both', 'directly', 'by', 'the', 'bacteria', 'themselves', 'or', 'indirectly', 'by', 'the', 'organic', 'acids', 'they', 'produce', 'via', 'fermentation', '.'], ['however', ',', 'his', 'father', 'ultimately', 'retained', 'control', 'over', 'state', 'finances', '.'], ['the', 'siding', 'extends', 'around', 'to', 'the', 'insides', 'of', 'the', 'portals', '.'], ['still', ',', 'they', 'continued', 'to', 'pressure', 'her', ',', 'but', 'she', 'continued', 'refusing', '.'], ['the', 'hall', 'is', 'administered', 'by', 'the', 'united', 'states', 'army', 'intelligence', 'center', 'at', 'fort', 'huachuca', ',', 'arizona', '.'], ['it', 'was', 'first', 'published', 'in', 'january', '2', '0', '0', '7', '.'], ['the', 'songs', 'were', 'written', 'and', 'composed', 'by', 'shin', 'sa-dong', 'tiger', 'and', 'lee', 'sang-ho', 'who', 'have', 'also', 'produced', 'songs', 'for', 'their', 'labelmate', ',', '4', 'minute', '.'], ['a', 'member', 'of', 'the', 'national', 'assembly', 'of', 'madagascar', ',', 'he', 'was', 'elected', 'as', 'a', 'member', 'of', 'the', 'tiako', 'i', 'madagasikara', 'party', ';', 'he', 'represents', 'the', 'constituency', 'of', 'ambalavao', '.'], ['they', 'are', 'not', 'articulated', 'relative', 'to', 'other', 'parts', 'of', 'the', 'locomotive', '.'], ['he', 'grew', 'up', 'in', 'poughkeepsie', ',', 'new', 'york', ',', 'nicknamed', '``', 'sarge', ',', \"''\", 'after', 'his', 'father', \"'s\", 'rank', 'in', 'the', 'united', 'states', 'army', 'during', 'world', 'war', 'ii', '.'], ['they', 'later', 'developed', 'the', 'highly', 'dangerous', 'zinger', 'bombs', ',', 'which', 'left', 'half', 'of', 'the', 'hemisphere', 'uninhabitable', '.'], ['this', 'is', 'because', 'it', 'focuses', 'on', 'the', 'acceptance', 'of', 'human', 'rights', ',', 'but', 'also', '``', 'multicultural', 'and', 'multireligious', 'tolerance', '.', \"''\"], ['together', 'with', 'one', 'kilogram', 'of', 'potatoes', ',', 'this', 'then', 'formed', 'the', 'entire', 'weekly', 'ration', '.'], ['on', '2', '9', 'march', '1', '9', '1', '8', ',', '5', '3', 'men', 'dressed', 'as', 'workers', 'boarded', 'the', 'icebreaker', 'and', 'segersven', 'presented', 'a', 'forged', 'written', 'order', 'for', 'the', 'ship', \"'s\", 'political', 'commissar', 'claiming', 'that', 'he', 'and', 'his', 'men', 'were', 'to', 'be', 'transported', 'to', 'kuivasaari', 'for', 'construction', 'work', '.'], ['at', 'the', 'western', 'end', 'of', 'the', 'church', 'is', 'a', 'large', ',', 'square', 'tower', 'of', 'three', 'stages', ',', 'dated', 'to', 'the', '1', '4', 'th', 'century', '.'], ['astronomers', 'have', 'created', 'a', 'rough', 'map', 'of', 'hd', '1', '8', '9', '7', '3', '3', 'b', \"'s\", 'cloud-top', 'features', 'using', 'data', 'from', 'the', 'spitzer', 'infrared', 'space', 'telescope', '.'], ['four', 'bodyguards', 'and', 'a', 'presidential', 'chauffeur', 'were', 'also', 'killed', '.'], ['with', 'a', 'total', 'of', '9', '5', 'shows', 'at', 'the', 'end', 'of', 'this', 'run', ',', '``', 'zsazsa', 'zaturnnah', 'ze', 'muzikal', \"''\", 'is', 'the', 'longest', 'running', 'musical', 'ever', 'staged', 'by', 'tanghalang', 'pilipino', '.'], ['yet', 'at', 'the', 'end', 'of', '1', '8', '7', '4', ',', 'after', 'four', 'years', 'of', 'labor', ',', 'he', 'could', 'not', 'report', 'one', 'convert', ',', 'not', 'even', 'one', 'who', 'could', 'be', 'classed', 'as', 'interested', 'in', 'christianity', '.'], ['(', 'the', 'company', 'later', 'dropped', 'the', 'apostrophe', 'from', 'the', 'name', ')', '.'], ['menken', 'later', 'appeared', 'in', 'such', 'warhol', 'films', 'as', '``', 'screen', 'tests', \"''\", '(', '1', '9', '6', '4', ')', ',', '``', 'the', 'life', 'of', 'juanita', 'castro', \"''\", '(', '1', '9', '6', '5', ')', 'and', '``', 'chelsea', 'girls', \"''\", '(', '1', '9', '6', '6', ')', ',', 'among', 'others', '.'], ['it', 'also', 'included', 'a', 'guest', 'appearance', 'by', 'the', 'legendary', 'guitarist', 'peter', 'moon', '.'], ['in', 'summer', ',', 'they', 'graze', 'on', 'dense', 'swarms', 'of', 'plankton', 'at', 'the', 'edge', 'of', 'the', 'ice', 'shelf', '.'], ['from', 'this', 'point', ',', 'it', 'becomes', 'a', 'normal', 'walk', 'again', ',', 'on', 'easily', 'manageable', 'rocky', 'terrain', ',', 'all', 'the', 'way', 'up', 'to', 'the', 'southern', 'peak', 'with', 'its', 'imposing', 'panorama', '.'], ['the', 'cylinder', 'heads', 'were', 'another', 'fundamental', 'change', 'of', 'the', 'magnum', 'engine', ',', 'being', 'designed', 'to', 'meet', 'stricter', 'requirements', 'in', 'both', 'power', 'and', 'emissions', 'by', 'increasing', 'efficiency', '.'], ['angiotensin', 'ii', 'receptor', 'antagonist', 'therapy', '(', 'also', 'referred', 'to', 'as', 'at', '1', '-antagonists', 'or', 'angiotensin', 'receptor', 'blockers', ')', ',', 'particularly', 'using', 'candesartan', ',', 'is', 'an', 'acceptable', 'alternative', 'if', 'the', 'patient', 'is', 'unable', 'to', 'tolerate', 'acei', 'therapy', '.'], ['the', '``', 'dox', 'castle', \"''\", 'outcropping', 'and', 'the', 'related', 'bright', 'red', 'dox', 'sandstone', 'formation', 'are', 'named', 'for', 'her', ',', 'supposedly', 'in', 'tribute', 'to', 'her', 'bright', 'red', 'hair', '.'], ['this', 'is', 'a', 'so-called', 'old', 'drift', 'landscape', ',', 'in', 'which', 'erosion', 'and', 'soil-forming', 'processes', 'have', 'been', 'around', 'for', 'a', 'very', 'long', 'time', '.'], ['by', 'the', 'end', 'of', 'the', 'onion', 'season', 'in', 'march', '1', '9', '5', '6', ',', 'siegel', 'and', 'kosuga', 'had', 'flooded', 'the', 'markets', 'with', 'their', 'onions', 'and', 'driven', 'the', 'price', 'of', 'of', 'onions', 'down', 'to', '1', '0', 'cents', 'a', 'bag', '.'], ['in', '1', '9', '9', '3', ',', 'morris', 'glasgow', 'was', 'sentenced', 'to', 'jail', 'for', 'seven', 'years', 'once', 'he', 'was', 'identified', 'as', 'the', 'crime', 'boss', 'of', 'a', 'nationwide', 'pimping', 'ring', ',', 'possibly', 'npf', '.'], ['but', 'if', 'the', 'cyst', 'is', 'still', 'causing', 'an', 'issue', 'after', 'the', 'treatment', ',', 'the', 'treatment', 'must', 'be', 'repeated', ',', 'or', 'another', 'method', 'has', 'to', 'be', 'used', '.'], ['these', 'salaries', 'gave', 'the', 'chaucers', 'great', 'financial', 'security', 'and', 'a', 'good', 'lifestyle', '.'], ['in', 'late', '1', '9', '8', '8', ',', '``', 'sinclair', 'user', \"''\", 'gave', 'the', 'game', 'the', '``', \"shoot'em\", 'up', 'of', 'the', 'year', \"''\", 'award', 'for', 'its', 'impressive', 'graphics', 'and', 'hardware', '.'], ['it', 'was', 'built', 'in', '1', '9', '2', '0', 'by', 'the', 'drake', 'realty', '&', 'amp', ';', 'construction', 'co.', ',', 'and', 'designed', 'by', 'architect', 'b.', 'hene', 'in', 'sullivanesque', 'style', '.'], ['it', 'functions', 'by', 'inhibiting', 'photosynthesis', 'and', 'thus', 'is', 'a', 'nonselective', 'herbicide', '.'], ['common', 'law', 'countries', 'that', 'retain', 'the', 'idea', 'of', 'control', 'and', 'emancipation', 'include', 'canada', ',', 'south', 'africa', ',', 'and', 'the', 'united', 'states', '.'], ['the', 'team', 'played', 'their', 'home', 'games', 'at', 'stanford', 'stadium', 'in', 'stanford', ',', 'california', '.'], ['she', 'is', 'also', 'known', 'for', 'her', 'theories', 'on', 'the', 'influence', 'of', 'ice', 'in', 'the', 'geology', 'of', 'mars', '.'], ['echo', 'tv', 'is', 'affiliated', 'with', 'echo', 'of', 'moscow', 'radio', 'station', 'and', 'rtvi', 'satellite', 'television', 'network', '.'], ['two', 'of', 'the', 'three', 'free', 'runners', 'from', '``', 'jump', 'london', \"''\", ',', 'sébastien', 'foucan', 'and', 'jérôme', 'ben', 'aoues', ',', 'appear', 'alongside', 'the', 'members', 'of', 'urban', 'freeflow', ',', 'as', 'they', 'interact', 'with', 'numerous', 'famous', 'landmarks', 'all', 'over', 'britain', '.'], ['the', 'humanoid', 'aliens', 'force', 'robot', '1', '3', '5', '9', 'to', 'take', 'the', 'form', 'of', 'a', 'fire', 'hydrant', '.'], ['since', '2', '0', '1', '0', ',', 'he', 'has', 'been', 'on', 'gute', 'zeiten', ',', 'schlechte', 'zeiten', ',', 'a', 'soap', 'opera', 'on', 'the', 'rtl', 'television', 'network', ',', 'as', 'birol', 'özgül', '.'], ['the', 'newtonian', 'was', 'housed', 'in', 'the', 'observatory', 'with', 'the', 'main', 'telescope', 'in', '1', '9', '7', '7', 'when', 'it', 'was', 'built', '.'], ['``', 'toke', 'chara', \"''\", 'was', 'released', 'on', '1', '9', 'may', '2', '0', '1', '6', '.'], ['this', 'study', 'identified', 'that', 'obese', 'children', 'had', 'an', 'almost', 'twenty', 'times', 'greater', 'risk', 'than', 'thin', 'children', ',', 'with', 'a', \"'dose-response'-\", 'so', 'the', 'greater', 'the', 'weight', 'of', 'the', 'child', ',', 'the', 'greater', 'the', 'risk', 'of', 'scfe', '.'], ['john', 'mcnally', ',', 'formerly', 'assistant', 'pastor', 'at', 'st.', 'matthew', 'the', 'apostle', 'church', ',', 'was', 'appointed', 'the', 'first', 'pastor', 'of', 'the', 'parish', '.'], ['for', 'the', 'seventh', 'series', ',', 'they', 'were', 'also', 'frequently', 'visited', 'by', 'a', 'detective', 'named', 'shelley', 'holmes', '(', 'played', 'by', 'issy', 'van', 'randwyck', ')', '-', 'however', ',', 'this', 'recurring', 'sketch', 'would', 'only', 'go', 'on', 'until', 'the', 'end', 'of', 'that', 'series', '.'], ['the', 'st.', 'croix', 'chippewa', 'indians', 'of', 'wisconsin', 'is', 'a', 'federally', 'recognized', 'tribe', 'governed', 'by', 'a', 'five-member', 'council', 'elected', 'for', 'two-year', 'terms', '.'], ['moves', 'to', 'the', 'program', 'counter', 'are', 'allowed', 'and', 'perform', 'jumps', '.'], ['sibley', 'is', 'perhaps', 'best', 'known', 'as', 'a', 'member', 'of', 'the', 'berkeley', 'school', 'board', 'from', '1', '9', '6', '1', 'to', '1', '9', '7', '1', ',', 'and', 'sometimes', 'its', 'president', ',', 'during', 'a', 'time', 'when', 'berkeley', 'became', 'one', 'of', 'the', 'first', 'cities', 'in', 'the', 'country', 'to', 'racially', 'desegregate', 'its', 'schools', '.'], ['this', 'production', 'was', 'heavily', 'edited', 'by', 'benjamin', 'glazer', 'with', 'significant', 'revisions', 'to', 'the', 'script', '.'], ['grade', '3', 'avms', 'may', 'or', 'may', 'not', 'be', 'amenable', 'to', 'surgery', '.'], ['but', 'for', 'the', 'next', 'race', ',', 'the', 'san', 'marino', 'grand', 'prix', ',', 'eddie', 'jordan', 'brought', 'de', 'cesaris', 'back', 'to', 'the', 'team', '.'], ['it', 'was', 'commissioned', 'by', 'peter', 'pavel', 'glavar', 'and', 'built', 'from', '1', '7', '6', '1', 'to', '1', '7', '6', '6', 'based', 'on', 'plans', 'by', 'the', 'architect', 'lovrenc', 'prager', '.'], ['marc-pierre', 'de', 'voyer', 'de', 'paulmy', ',', 'comte', \"d'argenson\", '(', '1', '6', 'august', '1', '6', '9', '6', ',', 'paris', '2', '2', 'august', '1', '7', '6', '4', ',', 'paris', ')', 'was', 'a', 'french', 'politician'], ['in', '1', '7', '8', '9', ',', 'a', 'hungarian', 'scientist', ',', 'pál', 'kitaibel', ',', 'discovered', 'the', 'element', 'independently', 'in', 'an', 'ore', 'from', 'deutsch-pilsen', 'that', 'had', 'been', 'regarded', 'as', 'argentiferous', 'molybdenite', ',', 'but', 'later', 'he', 'gave', 'the', 'credit', 'to', 'müller', '.'], ['an', 'additional', '3', '7', '.', '8', 'percent', 'of', 'pennsylvania', 'public', 'school', 'districts', 'made', 'ayp', 'based', 'on', 'a', 'calculated', 'method', 'called', 'safe', 'harbor', ',', '8', '.', '2', 'percent', 'on', 'the', 'growth', 'model', 'and', '0', '.', '8', 'percent', 'on', 'a', 'two-year', 'average', 'performance', '.'], ['this', 'resulted', 'in', 'music', 'that', 'reflected', 'mccarthy', \"'s\", 'adolescent', 'persona', 'such', 'as', '``', 'turn', 'the', 'page', \"''\", 'for', 'electric', 'guitar', 'and', 'orchestra', '(', 'based', 'on', 'a', 'guitar', 'solo', 'played', 'by', 'jimmy', 'page', 'from', 'the', 'rock', 'group', 'led', 'zeppelin', ')', ',', 'and', '``', 'chamber', 'symphony', 'no', '.'], ['they', 'also', 'warned', 'the', 'owner', 'of', 'a', 'building', 'in', 'the', 'town', ',', 'who', 'was', 'allegedly', 'renting', 'rooms', 'only', 'to', 'homosexuals', ',', 'to', 'evict', 'them', 'within', 'seven', 'days', 'or', 'face', 'their', 'wrath', '.'], ['there', 'are', 'also', 'two', 'or', 'three', 'silvery-metallic', 'scales', 'before', 'the', 'termen', 'above', 'the', 'middle', '.'], ['fortunately', ',', 'it', 'was', 'found', 'a', 'little', 'more', 'than', 'a', 'month', 'later', ',', 'packaged', 'and', 'ready', 'to', 'ship', 'abroad', '.'], ['the', 'central', 'pacific', 'completed', 'two', 'segments', 'on', 'which', 'the', 'oregon', 'eastern', 'had', 'begun', 'work', ':', 'natron', 'to', 'oakridge', 'and', 'chiloquin', 'to', 'kirk', ',', 'in', 'may', 'and', 'september', '1', '9', '1', '2', 'respectively', '.'], ['although', 'most', 'of', 'brazil', 'lies', 'in', 'the', 'tropics', ',', 'more', 'than', '6', '0', 'percent', 'of', 'the', 'country', \"'s\", 'population', 'live', 'in', 'areas', 'which', 'are', 'cooled', 'either', 'by', 'altitude', ',', 'sea', 'winds', 'or', 'polar', 'fronts', '.'], ['in', '1', '9', '9', '0', 'dudley', 'hill', 'won', 'the', 'national', 'league', 'title', ',', 'and', 'in', '1', '9', '9', '1', 'were', 'beaten', 'in', 'the', 'barla', 'national', 'cup', 'final', 'in', 'salford', '.'], ['the', '``', 'rand', 'daily', 'mail', \"''\", 'was', 'the', 'only', 'newspaper', 'in', 'south', 'africa', 'at', 'that', 'time', 'to', 'report', 'on', 'events', 'in', 'black', 'south', 'african', 'townships', '.'], ['there', 'is', 'no', 'reference', 'to', 'diego', 'between', '9', '5', '8', 'and', 'his', 'donation', 'of', 'his', 'patrimony', 'in', '9', '6', '7', 'save', 'for', 'a', 'single', 'charter', 'confirmation', 'from', 'february', '9', '6', '1', '.'], ['harris', 'eventually', 'made', 'uk', 'chart', 'history', 'by', 'becoming', 'the', 'first', 'artist', 'to', 'attain', 'eight', 'top-', '1', '0', 'singles', 'from', 'one', 'studio', 'album', ',', 'breaking', 'the', 'record', 'previously', 'set', 'by', 'michael', 'jackson', '.'], ['the', 'further', 'thesis', 'of', '2', '.', 'and', '3', '.', 'and', 'their', 'subsidiary', 'propositions', 'is', 'wittgenstein', \"'s\", '``', 'picture', 'theory', \"''\", 'of', 'language', '.'], ['hydrothermal', 'monazites', 'tend', 'to', 'appear', 'in', 'clusters', 'of', 'multiple', 'crystals', ',', 'while', 'igneous', 'monazites', 'tend', 'to', 'appear', 'homogeneously', 'distributed', 'throughout', 'the', 'rock', '.'], ['women', 'receiving', 'government', 'assisted', 'insurance', 'were', 'subjected', 'to', 'the', 'most', 'discrimination', 'from', 'the', 'healthcare', 'professionals', '.'], ['thus', ',', 'to', 'say', '``', 'you', 'know', 'that', ',', \"''\", 'speakers', 'from', 'bachajón', 'may', 'say', '``', 'ya', 'k-a-naʼ', \"''\", ',', 'the', '``', '-k', \"''\", 'occurring', 'as', 'a', 'verbal', 'prefix', 'before', 'person/case', 'marker', '``', 'a-', \"''\", ',', 'whereas', 'other', 'speakers', 'would', 'prefer', '``', 'yak', 'a-naʼ', \"''\", '.'], ['during', 'his', 'term', ',', 'hollande', 'battled', 'with', 'high', 'unemployment', ',', 'poor', 'opinion', 'ratings', 'and', 'a', 'splinter', 'group', 'of', 'left-wing', 'socialist', 'mps', 'known', 'as', '``', 'frondeurs', \"''\", '(', 'rebels', ')', '.'], ['as', 'ammar', 'later', 'told', 'his', 'grandson', ':', '``', 'i', 'met', 'suhayb', 'ibn', 'sinan', 'at', 'the', 'door', 'of', 'the', 'house', 'of', 'al-arqam', 'while', 'the', 'messenger', 'of', 'allah', 'was', 'in', 'it', '.'], ['valve', 'rarely', 'discusses', 'the', 'software', ',', 'as', 'it', 'may', 'help', 'cheaters', 'write', 'new', 'code', 'or', 'conduct', 'social', 'engineering', '.'], ['originally', 'drafted', 'in', 'the', 'second', 'round', ',', '4', '4', 'th', 'overall', ',', 'at', 'the', '2', '0', '0', '2', 'nhl', 'entry', 'draft', 'by', 'the', 'edmonton', 'oilers', ',', 'he', 'most', 'notably', 'served', 'as', 'an', 'alternate', 'captain', 'for', 'the', 'los', 'angeles', 'kings', ',', 'with', 'whom', 'he', 'won', 'the', 'stanley', 'cup', 'twice', '.'], ['grewcica', ',', 'enraged', 'at', 'rasha', \"'s\", 'death', ',', 'manages', 'to', 'deflect', 'one', 'of', 'ido', \"'s\", 'attacks', '.'], ['the', 'company', 'was', 'formed', 'as', 'international', 'power', 'in', '2', '0', '0', '0', 'by', 'the', 'demerger', 'of', 'national', 'power', '.'], ['the', 'disease', 'spread', 'and', 'in', '2', '0', '0', '8', ',', 'infected', 'carcasses', 'were', 'found', 'in', 'norway', ',', 'sweden', 'and', 'finland', 'and', 'a', 'year', 'later', 'in', 'germany', '.'], ['he', 'raced', 'in', 'numerous', 'types', 'of', 'motorcycle', 'racing', ':', 'cross', 'country', ',', 'drag', 'racing', ',', 'hare', 'scramble', ',', 'motocross', ',', 'road', 'racing', ',', 'and', 'short', 'track', '.'], ['the', 'maritime', 'administration', 'subsidized', 'the', 'cost', 'of', 'construction', 'by', 'paying', '$', '1', '9', ',', '5', '2', '8', ',', '3', '6', '2', '(', '$', 'today', ')', 'to', 'support', 'the', 'us', 'shipbuilding', 'industry', '.'], ['hmas', '``', 'stalwart', \"''\", '(', 'a', '2', '1', '5', '/d', '2', '1', '5', ')', 'was', 'an', 'australian-designed', 'and', 'constructed', 'escort', 'maintenance', 'ship', 'of', 'the', 'royal', 'australian', 'navy', '(', 'ran', ')', '.'], ['the', 'fact', 'that', ',', 'on', 'top', 'of', 'that', ',', 'he', 'is', 'a', 'policeman', ',', 'is', 'no', 'complication', ',', 'he', 'knows', 'about', 'the', 'theft', ',', 'but', 'will', 'not', 'report', 'it', '.'], ['the', 'school', 'is', 'well', 'known', 'for', 'hosting', 'the', 'ready', 'set', 'and', 'carly', 'rae', 'jepsen', 'as', 'a', 'school', 'spirit', 'competition', 'win', 'from', 'kelly', '9', '5', '.', '3', '.'], ['the', 'risk', 'of', 'car', 'crash', 'after', 'these', 'shifts', 'increased', 'by', '1', '6', '8', '%', ',', 'and', 'the', 'risk', 'of', 'near', 'miss', 'by', '4', '6', '0', '%', '.'], ['the', 'city', 'of', 'san', 'pedro', 'de', 'atacama', 'lies', 'northwest', 'of', 'lejía', 'lake', '.'], ['it', 'remained', 'unscathed', 'during', 'the', 'exeter', 'blitz', ',', 'being', 'protected', 'by', 'sand', 'bags', '.'], ['``', 'bronstein', \"''\", 'departed', 'new', 'york', 'on', '3', 'november', 'and', 'proceeded', 'to', 'green', 'cove', 'springs', ',', 'florida', ',', 'where', 'she', 'was', 'decommissioned', 'on', '1', '7', 'june', '1', '9', '4', '6', 'and', 'berthed', 'with', 'the', 'st.', 'johns', 'river', 'group', '.'], ['7', '3', '5', '4', ',', 'the', 'charter', 'of', 'the', 'philippine', 'postal', 'corporation', '.'], ['mac', 'returned', 'to', 'genoa', 'city', 'after', 'spending', 'time', 'in', 'the', 'southwestern', 'u.s.', 'helping', 'out', 'teaching', 'kindergarten', 'and', 'preschool', 'children', 'on', 'an', 'indian', 'reservation', '.'], ['the', 'past', 'itv', 'franchises', 'which', 'originally', 'served', 'london', 'were', 'associated-rediffusion', '(', 'weekdays', ')', 'and', 'associated', 'television', '(', 'weekends', ')', 'began', 'transmitting', 'on', 'vhf', '9', 'on', '2', '2', 'september', '1', '9', '5', '5', ',', 'and', 'were', 'the', 'first', 'itv', 'services', '.'], ['cranley', 'resigned', 'as', 'chancellor', 'in', '1', '4', '1', '0', ',', 'but', 'in', '1', '4', '1', '3', 'the', 'new', 'king', 'henry', 'v', 'reappointed', 'him', 'to', 'that', 'office', '.'], ['since', 'the', 'introduction', 'of', 'standard', 'basque', 'and', 'a', 'common', 'written', 'standard', ',', 'the', 'number', 'of', 'non-indigenous', 'spelling', 'variants', 'has', 'begun', 'to', 'decrease', ',', 'especially', 'in', 'spain', ',', 'taking', 'on', 'a', 'form', 'in', 'accordance', 'with', 'the', 'meaning', 'of', 'the', 'surname', 'in', 'basque', ',', 'which', 'remains', 'irrelevant', 'in', 'other', 'language', 'spellings', '.'], ['it', 'is', 'a', 'part', 'of', 'the', 'roman', 'catholic', 'archdiocese', 'of', 'galveston-houston', '.'], ['the', 'name', '``', 'ing', \"''\", 'itself', 'means', '``', 'wet', 'field', \"''\", ',', 'and', 'alludes', 'to', 'its', 'previous', 'habitat', 'before', 'human', 'intervention', '.'], ['in', 'its', 'early', 'days', 'channel', '2', 'broadcast', 'at', 'an', 'erp', 'of', 'just', 'one', 'kilowatt', ';', 'this', 'was', 'upgraded', 'to', 'five', 'kilowatts', 'in', '1', '9', '6', '9', '.'], ['she', 'features', 'on', 'mads', 'langer', \"'s\", 'song', '``', 'in', 'these', 'waters', \"''\", '.'], ['the', 'lake', 'is', 'classified', 'as', 'a', 'cold-', 'and', 'warmwater', 'fishery', ',', 'with', 'observed', 'species', 'including', 'rainbow', 'trout', ',', 'lake', 'trout', ',', 'land-locked', 'salmon', ',', 'smallmouth', 'and', 'largemouth', 'bass', ',', 'chain', 'pickerel', ',', 'yellow', 'perch', ',', 'white', 'perch', ',', 'sunfish', ',', 'and', 'brown', 'bullhead', '.'], ['the', 'current', 'property', 'was', 'listed', 'on', 'the', 'national', 'register', 'of', 'historic', 'places', 'in', '1', '9', '7', '2', '.'], ['with', 'a', 'population', 'of', '6', '1', '8', ',', '3', '7', '5', 'according', 'to', 'the', '2', '0', '1', '0', 'census', ',', 'it', 'is', 'also', 'the', '7', 'th', 'most-populous', 'city', 'in', 'argentina', '.'], ['to', 'relieve', 'congestion', 'on', 'the', 'single', 'track', 'north', 'coast', 'line', 'north', 'of', 'beerburrum', ',', 'the', 'rail', 'service', 'is', 'supplemented', 'by', 'a', 'bus', 'service', 'operated', 'by', 'kangaroo', 'bus', 'lines', 'on', 'weekdays', 'between', 'caboolture', 'and', 'nambour', 'as', 'route', '6', '4', '9', '.'], ['upon', 'leaving', 'college', ',', 'bush', 'took', 'a', 'position', 'with', 'chase', 'manhattan', 'bank', ',', 'where', 'he', 'worked', 'for', 'the', 'next', 'fifteen', 'years', '.'], ['in', '1', '9', '8', '3', 'he', 'starred', 'in', '``', 'les', 'bancals', \"''\", '.'], ['in', 'experiments', 'in', 'ophthalmology', 'or', 'cognitive', 'science', ',', 'scleral', 'lenses', 'with', 'embedded', 'mirrors', 'or', 'with', 'embedded', 'magnetic', 'field', 'sensors', 'in', 'form', 'of', 'wire', 'coils', '(', 'called', 'scleral', 'coils', ')', 'are', 'commonly', 'used', 'for', 'measuring', 'eye', 'movements', '.'], ['``', '1', '8', 'months', \"''\", 'received', 'a', 'nomination', 'for', 'best', 'dance/electronica', 'album', 'at', 'the', '5', '6', 'th', 'grammy', 'awards', '.'], ['like', 'ponyville', 'and', 'canterlot', ',', 'manehattan', 'is', 'depicted', 'as', 'the', 'location', 'of', 'one', 'of', 'rarity', \"'s\", 'boutiques', ',', 'known', 'as', '``', 'rarity', 'for', 'you', \"''\", '.'], ['he', 'taught', 'and', 'practised', 'medicine', 'at', 'the', 'hospital', '(', '``', 'al-māristān', \"''\", ')', 'al-ʿaḍudī', 'in', 'baghdad', '.'], ['at', 'the', '2', '0', '0', '6', 'census', ',', 'its', 'population', 'was', '4', '7', '6', ',', 'in', '9', '4', 'families', '.'], ['this', 'proposed', 'summit', 'crossing', 'offered', 'a', 'severe', 'test', 'of', '1', '8', 'th-century', 'engineering', 'skills', ',', 'materials', 'and', 'construction', 'techniques', '.'], ['he', 'supported', 'the', 'british', 'during', 'the', 'invasions', 'in', 'the', 'río', 'de', 'la', 'plata', ',', 'taking', 'refuge', 'in', '1', '8', '0', '8', 'in', 'rio', 'de', 'janeiro', ',', 'where', 'he', 'was', 'appointed', 'secretary', 'of', 'the', 'infanta', 'carlota', ',', 'daughter', 'of', 'charles', 'iv', 'of', 'spain', '.'], ['the', 'first', 'norman', 'sheriff', 'of', 'worcestershire', ',', 'urse', \"d'abetot\", 'oversaw', 'the', 'construction', 'of', 'a', 'new', 'castle', 'at', 'worcester', ',', 'although', 'nothing', 'now', 'remains', 'of', 'the', 'castle', '.'], ['the', 'tram', 'was', 'turning', 'right', 'to', 'the', 'entry', 'of', 'the', 'gläserne', 'manufaktur', '(', '``', 'transparent', 'factory', \"''\", ')', 'as', 'the', 'car', 'probably', 'passed', 'a', 'red', 'traffic', 'light', 'and', 'collided', 'with', 'the', 'tram', '.'], ['in', 'addition', 'to', 'recording', ',', 'it', 'was', 'revealed', 'later', 'that', 'month', 'that', 'brown', 'was', 'in', 'the', 'studio', 'working', 'on', 'the', 'album', 'with', 'asher', 'roth', ',', 'nas', ',', 'wiz', 'khalifa', ',', 'will.i.am', ',', 'and', 'kid', 'sister', '.'], ['the', 'ilia', 'vekua', 'sukhumi', 'institute', 'of', 'physics', 'and', 'technology', 'is', 'a', 'university', 'in', 'tbilisi', ',', 'georgia', '.'], ['several', 'former', 'derg', 'members', 'have', 'been', 'sentenced', 'to', 'death', '.'], ['but', 'this', 'may', 'not', 'be', 'considered', 'direct', 'as', 'one', 'must', 'first', 'argue', 'about', 'why', 'the', 'other', 'factor', 'can', 'not', 'be', '0', '.'], ['additionally', ',', 'a', 'new', 'residence', 'for', 'men', ',', 'dunne', 'hall', ',', 'began', 'accepting', 'residents', 'in', 'fall', '2', '0', '1', '6', '.'], ['she', 'performed', 'a', 'solo', 'concert', 'as', 'part', 'of', 'the', 'american', 'songbook', 'series', 'at', 'lincoln', 'center', 'in', '2', '0', '0', '5', ',', 'featuring', '2', '0', 'songs', 'composed', 'by', 'a', 'group', 'of', 'younger', 'songwriters', 'including', 'paul', 'loesel', ',', 'scott', 'burkell', ',', 'jeff', 'blumenkranz', ',', 'barry', 'kleinbort', ',', 'and', 'joseph', 'thalken', '.'], ['wieden', '(', ';', 'central', 'bavarian', ':', '``', 'wiedn', \"''\", ')', 'is', 'the', '4', 'th', 'municipal', 'district', 'of', 'vienna', ',', 'austria', '(', ')', '.'], ['construction', 'began', 'in', 'june', '2', '0', '1', '7', ',', 'and', 'was', 'completed', 'on', '2', '3', 'april', '2', '0', '2', '0', '.'], ['while', 'a', '2', '×', '2', 'matrix', 'having', 'linearly', 'independent', 'rows', 'and', 'columns', 'usually', 'means', 'it', 'has', 'rank', '2', ',', 'in', 'this', 'case', 'we', 'require', 'linear', 'independence', 'over', 'a', 'smaller', 'field', 'so', 'the', 'rank', 'is', \"n't\", 'forced', 'to', 'be', '2', '.'], ['it', 'is', 'situated', 'at', 'the', 'end', 'of', 'a', 'valley', 'named', 'puncuhuaico', '(', 'possibly', 'from', 'quechua', 'for', '``', \"p'unqu\", \"''\", 'pond', ',', 'dam', ',', '``', 'wayq', \"'\", 'u', \"''\", 'valley', 'or', 'stream', ')', '.'], ['on', 'january', '1', '6', ',', 'mayor', 'muriel', 'bowser', 'signed', 'the', 'ban', 'into', 'law', ',', 'and', 'it', 'went', 'into', 'effect', 'on', 'march', '1', '3', ',', '2', '0', '1', '9', '.'], ['sharma', 'fails', 'to', 'maintain', 'the', 'zing', 'till', 'the', 'very', 'end', 'though', '.'], ['for', 'the', 'final', 'season', 'in', '1', '9', '9', '0', ',', 'a', 'new', 'version', 'of', 'the', 'prelude', 'theme', 'was', 'recorded', ',', 'and', 'the', 'opening', 'theme', 'was', 'slightly', 'edited', '.'], ['geddel', 'served', 'as', 'vice', 'president', 'of', 'corporate', 'affairs', 'at', 'caixa', 'econômica', 'federal', 'between', '2', '0', '1', '1', 'and', '2', '0', '1', '3', ',', 'a', 'period', 'investigated', 'by', 'the', 'federal', 'police', '.'], ['disheveled', ',', 'the', 'woman', 'cries', 'in', 'the', 'street', 'after', 'an', 'implied', 'sexual', 'assault', ',', 'and', 'the', 'video', 'ends', 'as', 'she', 'runs', 'home', 'to', 'grab', 'a', 'gun', 'hidden', 'in', 'a', 'dresser', 'drawer', '.'], ['network', 'and', 'universal', 'serial', 'bus', '(', 'usb', ')', 'functionality', 'were', 'under', 'heavy', 'development', ',', 'but', 'the', 'media_server', 'lagged', 'behind', 'the', 'other', 'components', '.'], ['both', 'he', 'and', 'his', 'wife', 'escaped', 'the', 'event', 'unharmed', '.'], ['the', 'district', 'originally', 'included', '2', '4', 'contributing', 'buildings', ',', 'the', 'oakland', 'cemetery', ',', 'and', 'a', 'survey', 'marker', ';', 'the', 'smoot', 'hotel', 'was', 'later', 'added', 'to', 'the', 'district', '.'], ['on', 'april', '1', ',', '2', '0', '2', '1', ',', 'mcmahon', 'announced', 'that', 'she', 'would', 'be', 'taking', 'senior', 'status', 'effective', 'april', '1', '0', ',', '2', '0', '2', '1', '.'], ['finally', ',', 'in', '1', '9', '1', '6', ',', 'without', 'further', 'adjustment', 'of', 'boundaries', ',', 'the', 'territory', 'was', 'raised', 'to', 'the', 'status', 'of', 'an', 'archdiocese', ',', 'and', 'given', 'the', 'title', '``', 'archdiocese', 'of', 'cardiff', \"''\", '.'], ['the', 'cioccolato', 'di', 'modica', '(', 'modica', 'chocolate', 'or', '``', 'chocolate', 'of', 'modica', \"''\", ',', 'also', 'known', 'as', 'cioccolata', 'modicana', ')', 'is', 'an', 'italian', 'p.g.i', '.'], ['the', 'game', 'picks', 'up', 'right', 'after', 'the', 'events', 'of', '``', 'duke', 'nukem', 'ii', \"''\", ',', 'with', 'duke', 'returning', 'to', 'earth', 'in', 'his', 'space', 'cruiser', '.'], ['daley', 'attended', 'saint', 'michael', \"'s\", 'college', 'for', 'a', 'year', ',', 'and', 'then', 'began', 'the', 'study', 'of', 'law', 'in', 'the', 'office', 'of', 'attorney', 'raymond', 'l.', 'miles', 'of', 'newport', '.'], ['the', 'main', 'highway', 'runs', 'from', 'the', 'chinese', 'border', 'at', 'torugart', 'pass', 'north', 'to', 'balykchy', 'on', 'issyk', 'kul', 'lake', '.'], ['jobs', 'such', 'as', 'judges', ',', 'and', 'positions', 'of', 'high', 'public', 'office', 'were', 'forbidden', 'for', 'women', '.'], ['the', 'lavra', 'is', 'not', 'only', 'located', 'in', 'another', 'part', 'of', 'the', 'city', ',', 'but', 'is', 'part', 'of', 'a', 'different', 'national', 'sanctuary', 'than', 'saint', 'sophia', 'cathedral', '.'], ['in', 'july', '2', '0', '0', '5', ',', 'dr', 'stephen', 'j.', 'kopp', 'took', 'over', 'as', 'marshall', 'university', \"'s\", 'president', 'and', 'dr', 'gayle', 'ormiston', 'served', 'as', 'the', 'provost', 'and', 'senior', 'vice', 'president', 'for', 'academic', 'affairs', '.'], ['he', 'was', 'educated', 'at', 'the', 'local', 'high', 'school', 'and', 'attended', 'medical', 'school', 'of', 'the', 'university', 'of', 'pennsylvania', '.'], ['it', 'consists', 'of', 'a', 'benzene', 'ring', 'substituted', 'with', 'an', 'amino', 'group', 'and', 'a', 'carboxylic', 'acid', '.'], ['rapreviews', 'rated', 'it', 'three', 'and', 'a', 'half', 'out', 'of', 'ten', '.'], ['this', 'triumph', 'of', 'emotion', 'over', 'logic', 'is', 'a', 'tenet', 'of', 'romanticism', 'and', 'causes', 'some', 'scholars', 'to', 'consider', 'him', 'so', '.'], ['the', 'posluns', 'and', 'kay', 'had', 'never', 'met', 'each', 'other', 'prior', 'to', 'the', 'meeting', '(', 'an', 'auditor', 'who', 'worked', 'for', 'both', 'kay', 'and', 'the', 'posluns', 'had', 'arranged', 'the', 'meeting', ')', 'but', 'they', 'were', 'both', 'interested', 'in', 'acquiring', 'the', 'same', 'company', ',', 'tip', 'top', 'tailors', '.'], ['the', 'project', 'would', 'generate', 'about', '4', '0', '0', ',', '0', '0', '0', 'mw-hr', 'of', 'electricity', '-', 'enough', 'electricity', 'to', 'power', 'over', '7', '5', ',', '0', '0', '0', 'average', 'queensland', 'homes', '.'], ['one', 'of', 'their', 'efforts', 'to', 'buy', 'back', 'their', 'parents', \"'\", 'house', 'leads', 'them', 'to', 'realise', 'what', 'makes', 'a', 'house', 'a', 'home', '.'], ['on', 'august', '2', '4', ',', '2', '0', '0', '7', ',', 'it', 'announced', 'success', 'in', 'its', 'effort', 'to', 'get', 'starbucks', 'coffee', 'to', 'stop', 'using', 'milk', 'originating', 'from', 'rbgh-treated', 'cows'], ['since', 'the', '1', '8', '5', '0', 's', 'the', 'hill', 'was', 'also', 'nicknamed', '``', 'monte', 'cruce', \"''\", 'or', '``', 'monte', 'croce', \"''\", '.'], ['he', 'added', 'a', 'heavy', 'dose', 'of', 'fundamentalist', 'christianity', 'to', 'c.', 'h.', 'douglas', \"'\", 'monetary', 'theories', ';', 'as', 'a', 'result', ',', 'the', 'social', 'credit', 'movement', 'in', 'canada', 'has', 'had', 'a', 'strong', 'social', 'conservative', 'tint', '.'], ['they', 'are', 'credited', 'for', 'fostering', 'the', 'growth', 'of', 'a', 'fashion', 'industry', 'in', 'malawi', '.'], ['he', 'argued', 'that', 'much', 'of', 'the', 'jewish', 'community', 'views', 'the', 'world', 'through', 'an', 'outdated', '``', 'holocaust', 'lens', \"''\", ',', 'in', 'which', 'a', 'sovereign', 'jewish', 'state', 'is', 'required', 'to', 'prevent', 'a', 'second', 'holocaust', ',', 'and', 'that', 'this', 'causes', 'both', 'israelis', 'and', 'palestinians', 'to', 'suffer', '.'], ['it', 'is', 'the', 'most', 'successful', 'club', 'in', 'the', 'history', 'of', 'the', 'sri', 'lankan', 'premier', 'league', ',', 'with', '1', '2', 'league', 'titles', 'and', 'has', 'also', 'won', 'the', 'sri', 'lankan', 'fa', 'cup', '1', '6', 'times', '.'], ['as', 'etsu', \"'s\", 'enrollment', 'declined', 'in', 'the', 'late', '1', '9', '7', '0', 's', 'and', 'early', '1', '9', '8', '0', 's', ',', 'however', ',', 'its', 'student', 'body', 'became', 'increasingly', 'diverse', ':', 'older', 'non-traditional', 'students', ',', 'ethnic', 'and', 'racial', 'minority', 'students', ',', 'and', 'international', 'students', 'all', 'grew', 'in', 'numbers', '.'], ['its', 'originates', 'in', 'cuchilla', 'grande', 'inferior', ',', 'near', 'the', 'limit', 'with', 'the', 'departments', 'of', 'san', 'josé', ',', 'flores', ',', 'and', 'soriano', ',', 'and', 'flows', 'into', 'the', 'río', 'de', 'la', 'plata', '.'], ['initially', 'the', 'normans', 'controlled', 'large', 'swathes', 'of', 'ireland', ',', 'securing', 'the', 'entire', 'east', 'coast', ',', 'from', 'waterford', 'up', 'to', 'eastern', 'ulster', 'and', 'penetrating', 'as', 'far', 'west', 'as', 'gaillimh', '(', 'galway', ')', 'and', 'maigh', 'eo', '(', 'mayo', ')', '.'], ['then', 'i', 'asked', 'friends', 'if', 'they', 'watched', 'the', 'show', ',', 'and', 'people', 'who', 'said', 'they', 'did', 'were', 'pretty', 'cool', ',', 'so', 'that', 'was', 'my', 'research', '.', \"''\"], ['located', 'on', 'the', 'island', 'is', 'most', 'of', 'the', 'city', 'of', 'alameda', ',', 'a', 'city', 'in', 'alameda', 'county', '.'], ['her', 'contract', 'has', 'been', 'expanded', 'expires', 'on', 'june', '3', '0', ',', '2', '0', '2', '1', '.'], ['the', 'lakeward', 'end', 'of', 'the', 'channel', 'may', 'then', 'by', 'sealed', 'by', 'ice', ',', 'but', 'the', 'volcano', 'may', 'continue', 'to', 'erupt', '.'], ['this', 'inspired', 'him', 'to', 'continue', 'shooting', 'everyday', 'women', 'as', 'photographic', 'subjects', '.'], ['eventually', ',', 'the', 'kaiser', 'told', 'moltke', ',', '``', 'now', 'you', 'can', 'do', 'what', 'you', 'want', '.', \"''\"], ['it', 'opened', '1', '4', 'august', '1', '9', '1', '1', 'and', 'closed', '7', 'september', '1', '9', '6', '4', '.'], ['he', 'played', 'at', 'club', 'level', 'for', 'parramatta', 'eels', '(', 'heritage', 'no', '.'], ['things', 'turned', 'upon', 'the', 'advent', 'of', 'the', 'republican', 'revolution', '.'], ['in', '1', '9', '3', '6', 'tway', 'purchased', 'kentucky', 'wagon', 'manufacturing', 'company', '.'], ['the', 'stal', 'company', 'had', 'been', 'designing', 'gas', 'turbine', 'engines', 'since', '1', '9', '3', '5', '.'], ['payne', 'was', 'inducted', 'into', 'the', 'chico', 'state', 'athletic', 'hall', 'of', 'fame', 'in', '1', '9', '9', '9', '.'], ['mifflin', 'county', 'high', 'school', ',', 'is', 'a', 'mid', 'sized', ',', 'rural', 'public', 'high', 'school', '.'], ['he', 'represented', 'westmeath', 'at', 'hurling', 'up', 'to', 'under-', '1', '6', 'level', ',', 'and', 'represented', 'westmeath', 'in', 'gaelic', 'football', 'all', 'the', 'way', 'to', 'minor', 'level', '.'], ['sex-mark', 'a', 'large', 'dark', 'brown', 'patch', 'of', 'specialized', 'scales', 'on', 'basal', 'half', 'of', 'forewing', ','], ['sun', 'parakeets', 'mainly', 'feed', 'on', 'fruits', ',', 'flowers', ',', 'berries', ',', 'blossoms', ',', 'seeds', ',', 'nuts', ',', 'and', 'insects', '.'], ['the', 'swiss', 'secured', 'the', 'tie', 'by', 'winning', 'the', 'doubles', ',', 'so', 'mohr', 'was', 'given', 'a', 'run', 'in', 'the', 'reverse', 'singles', ',', 'which', 'he', 'lost', 'to', 'benny', 'wijaya', '.'], ['along', 'with', '``', 'engraulis', 'encrasicolus', \"''\", ',', 'it', 'makes', 'up', '5', '9', '%', 'of', 'seafood', 'production', 'in', 'turkey', '.'], ['he', 'received', 'the', 'joannes', 'marcus', 'marci', 'award', 'in', '1', '9', '9', '2', '.'], ['following', 'the', 'ban', 'in', 'poland', ',', 'med', 'tv', 'rented', 'satellites', 'from', 'usa', 'based', 'intelsat', 'to', 'broadcast', 'its', 'programs', '.'], ['mahon', 'disagreed', 'and', 'proposed', 'that', '5', '0', '0', 'shares', 'be', 'created', 'with', 'no', 'member', 'carrying', 'more', 'than', '1', '0', 'shares', 'with', 'board', 'members', 'given', '``', '7', 'or', '8', '``', 'shares', '.'], ['the', 'third', 'series', ',', 'again', 'reducing', 'to', 'ten', 'episodes', ',', 'aired', 'daily', '(', 'on', 'weekdays', ')', 'from', '1', '3', 'to', '2', '4', 'january', '2', '0', '1', '4', '.'], ['all', 'three', 'papers', 'continued', 'to', 'publish', ',', 'despite', 'the', 'strike', '.'], ['feminist', 'approaches', 'to', 'bioethics', '(', 'international', 'network', 'on', 'feminist', 'approaches', 'to', 'bioethics', ')', ',', 'or', 'fab', ',', 'is', 'a', 'network', 'of', 'feminists', 'in', 'bioethics', ',', 'adding', 'feminist', 'perspectives', 'to', 'ethical', 'issues', 'in', 'health', 'care', 'and', 'the', 'biosciences', '.'], ['this', 'anthology', 'prompted', 'two', 'lecturers', 'at', 'the', 'university', 'of', 'newcastle', ',', 'christopher', 'pollnitz', 'and', 'paul', 'kavanagh', ',', 'to', 'seek', 'funding', 'for', 'a', 'poetry', 'competition', 'which', 'paved', 'the', 'way', 'for', 'the', 'first', 'official', 'mattara', 'poetry', 'prize', 'in', '1', '9', '8', '1', '.'], ['holly', 'returns', 'from', 'the', 'holiday', 'break', 'in', '``', 'ultimatum', \"''\", 'without', 'an', 'engagement', 'ring', '.'], ['on', 'february', '2', '8', ',', '2', '0', '1', '8', ',', 'a', 'portrait', 'of', 'ferguson', 'painted', 'by', 'joshua', 'adam', 'risner', 'was', 'unveiled', 'at', 'the', 'michigan', 'state', 'capitol', 'by', 'the', 'michigan', 'legislative', 'black', 'caucus', 'due', 'to', 'a', 'bill', 'introduced', 'by', 'state', 'representative', 'sheldon', 'neeley', '.'], ['giuseppe', 'morello', 'became', 'the', 'capo', 'di', 'tutti', 'capi', '(', 'or', '``', 'boss', 'of', 'bosses', \"''\", ')', ',', 'but', 'before', 'long', 'he', 'and', 'ignazio', 'saietta', 'were', 'arrested', 'and', 'charged', 'with', 'counterfeiting', 'in', '1', '9', '1', '0', '.'], ['some', 'historians', 'note', 'that', 'hart', 'never', 'described', 'himself', 'as', 'transsexual', ',', 'but', 'the', 'term', 'was', 'not', 'published', 'until', 'the', '1', '9', '2', '0', 's', ',', 'and', 'not', 'widely', 'used', 'until', 'the', '1', '9', '6', '0', 's', ',', 'near', 'hart', \"'s\", 'death', '.'], ['in', '1', '9', '2', '3', ',', 'wis', '5', '8', 'extended', 'northward', 'to', 'wis', '1', '2', '/wis', '2', '9', '(', 'now', 'us', '1', '2', '/wis', '1', '6', ')', 'in', 'mauston', '.'], ['he', 'was', 'succeeded', 'by', 'the', 'son', 'of', 'chongde', ',', 'hu', '.'], ['the', 'subject', 'of', 'the', 'song', 'is', 'close', 'to', 'the', 'one', 'of', '``', 'vietnam', \"''\", ',', 'the', '1', '9', '6', '9', 'jimmy', 'cliff', 'standard', 'covered', 'by', 'new', 'order', 'in', '2', '0', '0', '3', 'for', 'war', 'child', \"'s\", '``', 'hope', \"''\", 'album', '.'], ['army', 'corps', 'in', 'mid-september', '1', '9', '4', '2', 'talks', 'about', '4', '2', '6', '9', 'people', 'armed', 'with', '4', '1', '9', '7', 'rifles', ',', '3', '5', 'light', 'machine', 'guns', 'and', '7', 'machine', 'guns', '.'], ['he', 'owned', 'over', 'of', 'land', 'in', 'the', 'area', 'that', 'he', 'was', 'able', 'to', 'purchase', 'as', 'part', 'of', 'the', 'settlement', 'program', 'given', 'to', 'veterans', 'of', 'the', 'american', 'revolutionary', 'war', '.'], ['the', 'club', 'set', 'about', 'looking', 'for', 'a', 'new', 'site', 'to', 'play', 'its', 'home', 'games', 'and', 'a', 'derelict', 'factory', 'site', 'on', 'firs', 'street', 'in', 'falkirk', 'was', 'chosen', '.'], ['in', 'november', '2', '0', '1', '8', ',', 'cubitts', 'launched', 'an', 'exhibition', 'charting', 'london', \"'s\", 'six', 'hundred-year', 'history', 'of', 'spectacles', 'at', 'the', 'st', 'james', \"'s\", 'market', 'pavilion', '.'], ['the', 'expressions', 'of', 'emotion', 'that', 'ekman', 'noted', 'as', 'most', 'universal', 'based', 'on', 'research', 'are', ':', 'anger', ',', 'fear', ',', 'disgust', ',', 'sadness', ',', 'and', 'enjoyment', '.'], ['he', 'left', 'school', 'at', '1', '5', 'and', 'joined', 'larkins', 'studio', 'when', 'he', 'was', '1', '8', '/', '1', '9', '.'], ['cuban', 'coach', 'rigoberto', 'medina', 'has', 'worked', 'with', 'her', 'since', '2', '0', '1', '0', '.'], ['none', 'of', 'the', '1', '1', 'occupants', ',', 'who', 'were', 'all', 'crew', 'members', ',', 'survived', '.'], ['by', 'this', ',', 'she', 'became', 'the', 'first', 'woman', 'to', 'become', 'prime', 'minister', 'of', 'lithuania', 'and', 'first', 'prime', 'minister', 'after', '1', '1', 'th', 'of', 'march', ',', '1', '9', '9', '0', '.'], ['in', '1', '9', '5', '5', 'he', 'served', 'as', 'new', 'jersey', 'delegate', 'to', 'the', 'white', 'house', 'conference', 'on', 'education', '.'], ['†first-time', 'pga', 'tour', 'member', 'in', '2', '0', '1', '9', ',', 'but', 'ineligible', 'for', 'rookie', 'status', 'due', 'to', 'having', 'played', 'eight', 'or', 'more', 'pga', 'tour', 'events', 'in', 'a', 'previous', 'season'], ['in', '2', '0', '1', '3', ',', 'the', 'bank', 'rebranded', 'its', 'operations', 'as', '``', 'postbank', \"''\", '.'], ['villoresi', 'sustained', 'a', 'number', 'of', 'deep', 'head', 'wounds', ',', 'facial', 'lacerations', ',', 'and', 'bruises', 'all', 'over', 'his', 'body', '.'], ['the', 'next', 'year', ',', 'it', 'became', 'a', 'three-year', 'high', 'school', '.'], ['fishtown', 'was', 'an', 'informal', 'artists', \"'\", 'community', 'housed', 'in', 'a', 'cluster', 'of', 'old', 'cabins', 'and', 'fishing', 'shacks', 'on', 'the', 'skagit', 'river', 'delta', 'in', 'skagit', 'county', ',', 'washington', ',', 'usa', ',', 'from', 'the', 'late', '1', '9', '6', '0', 's', 'to', 'the', 'mid', '1', '9', '8', '0', 's', '.'], ['they', 'worked', 'together', 'on', 'several', 'projects', ',', 'and', 'the', 'first', 'diagram', 'of', 'suburban', 'chaos', 'album', ',', '``', 'status', 'negatives', \"''\", ',', 'was', 'released', 'by', 'imputor', '?'], ['the', 'side', 'panels', 'show', 'scenes', 'from', 'the', 'life', 'of', 'jesus', ',', 'the', 'annunciation', ',', 'nativity', ',', 'jesus', \"'\", 'baptism', 'and', 'prayer', 'in', 'gethsemane', '.'], ['indeed', ',', 'in', '1', '9', '6', '0', 'hand', 'of', 'the', 'cause', 'rúhíyyih', 'khánum', 'asked', 'for', 'forgiveness', 'for', 'the', 'injustices', 'her', 'race', 'had', 'done', 'and', 'praised', 'the', 'great', 'past', 'of', 'the', 'native', 'peoples', '.'], ['from', '1', '9', '6', '7', 'to', 'june', '1', '9', '7', '7', ',', 'geißler', 'was', 'minister', 'of', 'the', 'state', 'government', 'of', 'rhineland-palatine', ',', 'serving', 'prime', 'ministers', 'peter', 'altmeier', ',', 'helmut', 'kohl', 'and', 'bernhard', 'vogel', '.'], ['mice', 'contain', 'an', 'ortholog', 'of', 'the', 'gene', 'called', 'slitrk', '1', '.'], ['in', 'season', '2', 'he', 'fought', 'in', 'the', 'royal', 'thumble', ',', 'beating', 'the', 'visitor', 'and', 'being', 'taken', 'out', 'by', 'the', 'scorchion', '.'], ['after', 'transition', 'training', ',', 'graduates', 'were', 'sent', 'to', 'newly-forming', 'units', 'for', 'combat', 'training', '.'], ['after', 'a', 'heated', 'city', 'council', 'debate', ',', 'henry', 'voted', 'with', 'the', 'prevailing', 'side', 'in', 'rejecting', 'calls', 'for', 'the', 'establishment', 'of', 'a', 'separate', 'city', 'human', 'relations', 'commission', '.'], ['he', 'ended', 'his', 'speech', 'with', 'the', 'statement', '``', 'sir', ',', 'i', 'salute', 'your', 'courage', ',', 'your', 'strength', ',', 'your', 'indefatigability', '.', \"''\"], ['stippling', 'used', 'to', 'be', 'thought', 'to', 'indicate', 'health', ',', 'but', 'it', 'has', 'since', 'been', 'shown', 'that', 'smooth', 'gingiva', 'is', 'not', 'an', 'indication', 'of', 'disease', ',', 'unless', 'it', 'is', 'smooth', '``', 'due', 'to', 'a', 'loss', \"''\", 'of', 'previously', 'existing', 'stippling', '.'], ['also', 'known', 'as', 'a', 'beverage', 'opener', ',', 'these', 'usually', 'includes', 'a', 'bottle', 'opener', 'of', 'the', 'simple', 'bottle', 'opener', 'style', 'but', 'includes', 'various', 'other', 'openers', 'such', 'as', 'for', 'plastic', 'bottles', 'or', 'metal', 'beverage', 'cans', '.'], ['in', '1', '9', '5', '2', ',', 'st', 'bernadette', \"'s\", 'convent', 'school', 'was', 'built', 'in', 'pusing', 'road', ',', 'batu', 'gajah', 'perak', 'with', 'land', 'donated', 'and', 'funds', 'raised', 'from', 'communities', '.'], ['whereas', 'the', 'church', 'and', 'temple', 'bells', 'called', 'to', 'mass', 'or', 'religious', 'service', ',', 'bells', 'were', 'used', 'on', 'farms', 'for', 'more', 'secular', 'signalling', '.'], ['the', 'rebels', 'ransacked', 'the', 'house', 'and', 'sent', 'word', 'to', 'the', '3', 'rd', 'baron', ',', 'who', 'was', 'returning', 'from', 'london', ',', 'that', 'if', 'he', 'did', 'not', 'return', 'immediately', 'they', 'would', 'kill', 'his', 'family', '.'], ['falsely', 'representing', 'oneself', 'as', 'bhutanese', 'to', 'receive', 'benefits', 'is', 'a', 'misdemeanor', ',', 'as', 'are', 'misrepresentations', 'in', 'pursuit', 'of', 'a', 'visa', 'and', 'concealing', 'the', 'presence', 'of', 'unauthorized', 'persons', '.'], ['on', 'the', 'panda', 'hydrogen', ',', 'the', 'fuel', 'cell', 'system', 'is', 'housed', 'beneath', 'the', 'floorpan', '.'], ['``', 'ultimate', \"''\", 'was', 'followed', 'by', '``', 'dead', 'or', 'alive', '5', 'last', 'round', \"''\", 'in', '2', '0', '1', '5', '.'], ['in', 'the', 'first', 'two', 'rounds', ',', 'each', 'team', 'is', 'assigned', 'one', 'of', 'the', 'celebrities', ',', 'who', 'then', 'will', 'switch', 'teams', 'for', 'the', 'second', 'round', '.'], ['godfrey', 'wedgwood', '(', '2', '2', 'january', '1', '8', '3', '3', '-', '9', 'october', '1', '9', '0', '5', ')', 'was', 'a', 'partner', 'in', 'the', 'wedgwood', 'pottery', 'firm', 'from', '1', '8', '5', '9', 'to', '1', '8', '9', '1', '.'], ['it', 'is', 'based', 'on', 'the', '1', '9', '7', '8', 'horror', 'film', 'of', 'the', 'same', 'name', '.'], ['comet', 'was', 'repainted', 'the', 'same', 'color', 'white', ',', 'and', 'the', 'station', 'was', 'redone', ',', 'during', 'the', '2', '0', '1', '2', 'off-season', '.'], ['the', 'series', 'was', 'broadcast', 'in', 'taiwan', 'in', '2', '0', '0', '4', 'on', 'free-to-air', 'chinese', 'television', 'system', '(', 'cts', ')', 'and', 'cable', 'tv', 'gala', 'television', '(', 'gtv', ')', 'variety', 'show/ch', '2', '8', '.'], ['starting', 'acceleration', 'has', 'also', 'increased', '-', 'especially', 'at', 'higher', 'speeds', ',', 'which', 'is', 'realized', 'with', 'less', 'weakening', 'of', 'the', 'excitation', '(', 'and', 'thus', 'higher', 'motor', 'power', ')', '.'], ['he', 'tells', 'her', 'that', 'freddy', 'has', 'given', 'birth', 'to', 'a', 'daughter', 'in', 'england', '.'], ['atherton', \"'s\", 'brother', 'was', 'working', 'for', 'larkin', 'on', 'a', 'gold', 'project', 'in', 'mazatlán', '.'], ['as', 'a', 'result', ',', 'the', 'band', 'hired', 'swiss', 'keyboardist', 'patrick', 'moraz', ',', 'formerly', 'of', 'yes', ',', 'in', 'his', 'place', '.'], ['dromard', 'left', 'the', 'cast', 'on', 'june', '2', '6', ',', '2', '0', '1', '0', ',', 'to', 'play', 'bert', 'in', '``', 'mary', 'poppins', \"''\", 'on', 'broadway', '.'], ['this', 'is', 'especially', 'useful', 'for', 'training', 'to', 'stay', 'tight', 'while', 'pressing', '.'], ['one', 'modern', 'scholar', 'calls', 'morrison', \"'s\", 'dictionary', '``', 'the', 'greatest', 'achievement', 'of', 'any', 'researcher', 'of', 'chinese', \"''\", '.'], ['throughout', '2', '0', '0', '6', ',', 'he', 'worked', 'for', 'pro', 'wrestling', 'zero', '1', '-max', 'and', 'king', \"'s\", 'road', ',', 'where', 'he', 'reformed', 'turmeric', 'storm', 'with', 'kazushi', 'miyamoto', '.'], ['the', 'site', 'of', 'selcë', 'was', 'in', 'antiquity', 'a', 'flourishing', 'economical', 'centre', 'more', 'developed', 'than', 'the', 'surroundings', 'because', 'it', 'occupied', 'a', 'predominant', 'position', 'inside', 'the', 'region', 'currently', 'called', 'mokër', ',', 'and', 'because', 'it', 'controlled', 'the', 'road', 'which', 'led', 'from', 'the', 'adriatic', 'coasts', 'of', 'illyria', 'to', 'macedonia', '.'], ['for', 'one', ',', 'the', 'poems', 'do', 'not', 'primarily', 'deal', 'with', 'worldly', 'love', 'but', 'with', 'the', 'mystical', 'love', 'for', 'god', '.'], ['there', 'were', '1', '1', '1', ',', '7', '6', '2', 'housing', 'units', 'at', 'an', 'average', 'density', 'of', '2', '6', '9', 'per', 'square', 'mile', '(', '1', '0', '4', '/km', '2', ')', '.'], ['``', 'mercedes', 'simplex', \"''\", 'framework', 'was', 'long', ',', 'wide', 'and', 'with', 'a', 'low', 'center', 'of', 'gravity', ',', 'giving', 'an', 'improved', 'stability', 'at', 'high', 'speeds', '.'], ['on', '1', 'february', ',', 'blackpool', 'faced', 'oxford', 'united', 'at', 'the', 'kassam', 'stadium', ',', 'their', 'fifth-consecutive', 'away', 'league', 'match', '.'], ['a', 'blank', 'indicates', 'the', 'value', 'is', 'specifiable', ',', 'but', 'context', 'is', 'required', '(', 'even', 'though', 'any', 'value', 'could', 'be', 'inserted', 'because', 'the', 'post-cyclical', 'rules', 'would', 'change', 'the', 'value', 'to', 'the', 'correct', 'one', ')', '.'], ['he', 'was', 'a', 'member', 'of', 'the', 'assembly', 'in', '1', '8', '5', '0', 'before', 'representing', 'the', '4', 'th', 'district', 'of', 'the', 'senate', 'in', '1', '8', '5', '2', 'and', 'the', '2', '0', 'th', 'district', 'in', '1', '8', '5', '3', '.'], ['the', 'number', 'of', 'district', 'courts', 'in', 'a', 'court', 'of', 'appeals', \"'\", 'circuit', 'varies', 'between', 'one', 'and', 'thirteen', ',', 'depending', 'on', 'the', 'number', 'of', 'states', 'in', 'the', 'region', 'and', 'the', 'number', 'of', 'districts', 'in', 'each', 'state', '.'], ['in', '2', '0', '1', '8', ',', 'doergelo', 'played', 'a', 'leading', 'role', 'in', 'the', 'new', 'television', 'series', '``', 'milk', '&', 'amp', ';', 'honey', \"''\", '.'], ['native', 'americans', 'did', 'not', 'have', 'immunities', 'to', 'the', 'diseases', 'that', 'european', 'settlers', 'unknowingly', 'brought', 'with', 'them', 'to', 'the', 'new', 'world', '.'], ['the', 'assembly', 'is', 'then', 'left', 'to', 'cool', 'for', 'a', 'specified', 'time', '.'], ['however', ',', 'he', 'was', 'only', 'given', 'small', 'parts', 'in', 'the', 'academy', \"'s\", 'productions', ',', 'and', 'feeling', 'isolated', 'and', 'directionless', ',', 'almost', 'dropped', 'out', 'several', 'times', '.'], ['the', 'jetour', 'x', '7', '0', 'is', 'powered', 'by', 'a', '1', '.', '5', 'liter', 'turbo', 'inline-four', 'petrol', 'engine', 'producing', '1', '5', '6', 'hp', 'and', '2', '3', '0', 'n·m', ',', 'with', 'transmission', 'options', 'including', 'a', '6', '-speed', 'manual', 'transmission', 'or', 'a', '6', '-speed', 'dual-clutch', 'transmission', '.'], ['an', 'ordered', 'pair', 'is', 'a', '2', '-tuple', 'or', 'couple', '.'], ['the', 'psychological', 'aid', 'was', 'launched', 'in', 'clinic', 'psychiatric', 'hospital', '#', '2', ',', 'neuropsychic', 'hospital', 'and', 'children', \"'s\", 'neuropsychic', 'hospital', '.'], ['after', 'years', 'of', 'relative', 'anonymity', ',', 'downes', 'competed', 'in', 'and', 'won', 'the', 'new', 'zealand', 'version', 'of', '``', 'dancing', 'with', 'the', 'stars', \"''\", 'in', '2', '0', '0', '6', 'with', 'dance', 'partner', ',', 'aaron', 'gilmore', '.'], ['beck', 'was', 'a', 'member', 'of', 'the', 'polish', 'academy', 'of', 'learning', 'in', 'kraków', '.'], ['producer', 'damon', 'thomas', ',', 'the', 'other', 'half', 'of', 'the', 'duo', ',', 'added', '``', 'the', 'only', 'way', 'i', 'can', 'describe', 'chris', 'and', 'what', 'he', \"'s\", 'doin', \"'\", 'with', 'this', 'record', 'that', 'he', \"'s\", 'making', 'is', 'that', 'he', \"'s\", 'this', 'generation', \"'s\", 'michael', '[', 'jackson', ']', \"''\", '.'], ['in', '2', '0', '1', '6', ',', 'bridson', 'became', 'only', 'the', 'second', 'manxman', 'to', 'ever', 'be', 'elected', 'to', 'the', 'royal', 'society', ',', 'after', 'edward', 'forbes', '.'], ['it', 'is', 'located', 'in', 'the', 'north', 'of', 'the', 'oblast', '.'], ['in', '1', '9', '9', '1', ',', 'a', 'six-player', 'arcade', 'game', 'and', 'a', 'four-player', 'version', 'were', 'based', 'upon', 'the', 'pilot', 'starring', 'cyclops', ',', 'colossus', ',', 'wolverine', ',', 'storm', ',', 'nightcrawler', ',', 'and', 'dazzler', 'as', 'the', 'playable', 'characters', '.'], ['thus', 'it', 'is', 'anticipated', 'that', 'substantial', 'materials', 'research', 'and', 'development', 'will', 'be', 'required', 'to', 'open', 'the', 'door', 'to', 'this', 'new', 'class', 'of', 'nuclear', 'power', 'reactors', '.'], ['irrigated', 'agriculture', 'is', 'restricted', 'to', 'the', 'areas', 'surrounding', 'rivers', 'and', 'wherever', 'sufficient', 'underground', 'water', 'is', 'available', '.'], ['official', 'registration', 'for', 'the', 'candidates', 'began', 'on', 'october', '1', '2', ',', '2', '0', '0', '5', '.'], ['with', 'his', 'death', ',', 'the', 'male', 'line', 'of', 'masovian', 'piasts', ',', 'originating', 'with', 'siemowit', 'iii', 'became', 'extinct', '.'], ['as', 'of', 'august', '1', 'the', 'division', 'was', 'assigned', 'to', '4', '5', 'th', 'army', 'in', 'transcaucasus', 'front', '.'], ['an', 'analysis', 'of', 'the', 'project', 'pointed', 'towards', 'failure', 'in', 'communication', 'between', 'mclaren', 'and', 'honda', ',', 'honda', 'under-estimating', 'the', 'technology', 'required', 'for', 'the', 'engine', ',', 'and', 'critical', 'faults', 'in', 'the', 'engine', \"'s\", 'design', ',', 'as', 'the', 'cause', 'of', 'the', 'team', \"'s\", 'problems', '.'], ['pool', 'a', 'was', 'left', 'with', 'the', 'three', 'remaining', 'teams', '.'], ['his', 'tutor', 'pierre', 'gilliard', 'described', 'the', '1', '8', '-month-old', 'alexei', 'as', '``', 'one', 'of', 'the', 'handsomest', 'babies', 'one', 'could', 'imagine', ',', 'with', 'his', 'lovely', 'fair', 'curls', 'and', 'his', 'great', 'blue-grey', 'eyes', 'under', 'their', 'fringe', 'of', 'long', 'curling', 'lashes', '.', \"''\"], ['the', 'holiday', 'commemorates', 'the', 'day', 'the', 'constitution', 'of', 'puerto', 'rico', ',', 'approved', 'on', 'july', '3', ',', '1', '9', '5', '2', ',', 'was', 'signed', 'into', 'law', 'by', 'governor', 'luis', 'muñoz', 'marín', 'the', 'same', 'year', '.'], ['the', 'queen', 'was', 'on', 'a', 'ceremonial', 'visit', 'to', 'the', 'nearby', 'catterick', 'military', 'complex', '.'], ['similarly', ',', 'in', 'yorkshire', ',', '(', 'sprotborough', 'flash', ')', 'is', 'the', 'result', 'of', 'magnesian', 'limestone', 'extraction', '.'], ['they', 'were', 'converted', 'to', 'christianity', 'and', 'migrated', 'to', 'kuthiathode', '.'], ['in', '1', '9', '3', '2', 'he', 'was', 'one', 'of', 'a', 'six-man', 'british', 'expedition', 'to', 'fort', 'rae', 'in', 'northwest', 'canada', ',', 'where', 'he', 'carried', 'out', 'observations', 'of', 'atmospheric', 'electricity', '.'], ['npf', 'members', 'have', 'criminal', 'tattoos', 'to', 'signal', 'their', 'membership', 'in', 'the', 'gang', ',', 'with', 'the', 'neck', 'being', 'the', 'standard', 'location', 'for', 'these', 'tattoos', '.'], ['abigail', \"'s\", 'storylines', 'often', 'focus', 'on', 'young', 'love', 'and', 'budding', 'romances', '.'], ['the', 'gene', 'is', 'expressed', 'only', 'in', 'the', 'brain', 'of', 'humans', '.'], ['therefore', ',', 'each', 'of', 'schwaigern', ',', 'stetten', 'am', 'heuchelberg', 'and', 'niederhofen', 'is', 'a', 'protestant', 'parish', '.'], ['had', 'the', 'schuylkill', 'and', 'susquehanna', 'navigation', 'company', 'been', 'successful', 'in', 'completing', 'the', 'canal', 'in', '1', '7', '9', '4', '-', '9', '5', ',', 'it', 'probably', 'would', 'have', 'succumbed', 'to', 'the', 'same', 'poor', 'planning', 'and', 'summit', 'geology', 'as', 'its', 'successor', 'did', '.'], ['throughout', '1', '9', '0', '1', ',', 'she', 'visited', 'south', 'africa', 'to', 'report', 'on', 'conditions', 'inside', 'the', 'concentration', 'camps', 'built', 'for', 'boer', 'civilians', '.'], ['anton', 'kicha', '(', ';', 'born', '1', 'may', '1', '9', '9', '0', ')', 'is', 'a', 'ukrainian', 'football', 'midfielder', 'who', 'plays', 'for', 'vpk-ahro', 'shevchenkivka', '.'], ['construction', 'finally', 'commenced', 'on', '2', 'july', '2', '0', '0', '5', '.'], ['at', 'the', 'time', ',', 'almodóvar', 'was', 'working', 'for', 'telefónica', ',', 'spain', \"'s\", 'national', 'telephone', 'company', ',', 'as', 'an', 'administrative', 'employee', 'therefore', 'the', 'shooting', 'took', 'place', 'on', 'weekends', 'with', 'a', 'group', 'of', 'volunteers', '.'], ['liahona', 'high', 'school', 'is', 'a', 'high', 'school', 'in', 'tonga', 'owned', 'and', 'operated', 'by', 'the', 'church', 'of', 'jesus', 'christ', 'of', 'latter-day', 'saints', '(', 'lds', 'church', ')', '.'], ['sergio', 'has', 'a', 'relationship', 'with', 'tamara', ',', 'an', 'irresponsible', 'young', 'mother', 'unscrupulous', 'just', 'like', 'him', ',', 'who', 'helps', 'him', 'in', 'his', 'trafficking', '.'], ['in', 'march', '2', '0', '1', '7', ',', 'the', 'california', 'institute', 'of', 'technology', 'announced', 'that', 'they', 'were', 'changing', 'the', 'name', 'of', 'its', 'medical', 'engineering', 'department', 'to', 'the', 'andrew', 'and', 'peggy', 'cherng', 'department', 'of', 'medical', 'engineering', 'after', 'receiving', 'a', '$', '3', '0', 'million', 'gift', 'from', 'andrew', 'and', 'peggy', 'cherng', '.'], ['this', 'design', 'helped', 'to', 'make', 'sure', 'that', 'the', 'engine', 'did', 'not', 'rollover', '.'], ['the', 'state', \"'s\", 'territory', 'was', 'situated', 'in', 'the', 'low', 'countries', 'between', 'the', 'river', 'meuse', '(', 'maas', ')', 'in', 'the', 'west', 'and', 'the', 'imperial', 'city', 'of', 'aachen', 'in', 'the', 'east', '.'], ['the', 'surviving', 'nave', ',', 'which', 'is', 'listed', 'grade', 'ii', '*', ',', 'is', 'aisleless', ',', 'of', 'two', 'bays', 'and', 'measures', 'c.', '1', '4', 'm', 'in', 'length', 'by', 'c.', '7', '.', '5', 'm', 'in', 'width', 'and', ',', 'being', 'still', 'in', 'use', ',', 'is', 'not', 'included', 'in', 'the', 'scheduling', '.'], ['that', 'is', ',', 'a', 'differential', 'form', 'formula_', '2', '4', 'is', 'harmonic', 'if', 'and', 'only', 'if', 'each', 'of', 'its', '(', '``', 'p', \"''\", ',', \"''\", 'q', \"''\", ')', '-components', 'is', 'harmonic', '.'], ['the', 'temple', 'is', 'situated', 'on', 'the', 'kattappana', '-', 'kuttikkanam', 'state', 'highway', ',', 'about', '3', 'km', 'from', 'kattappana', '.'], ['he', 'helps', 'oliver', 'and', 'his', 'team', 'to', 'begin', 'uncover', 'the', 'mirakuru', 'plot', 'orchestrated', 'by', 'slade', 'wilson', '.'], ['co-workers', 'at', 'the', 'debt', 'recovery', 'business', 'described', 'tim', 'as', '``', '...', 'bright', 'and', '...', '[', 'that', ']', 'it', 'seemed', 'like', 'he', 'had', 'his', 'mind', 'on', 'something', 'else', '.', \"''\"], ['josep', 'borrell', 'fontelles', '(', ';', 'born', '2', '4', 'april', '1', '9', '4', '7', ')', 'is', 'a', 'spanish', 'politician', 'serving', 'as', 'high', 'representative', 'of', 'the', 'european', 'union', 'since', '1', 'december', '2', '0', '1', '9', '.'], ['the', 'cgp', 'also', 'highlighted', 'the', 'case', 'of', 'the', 'anarchist', 'salvador', 'puig', 'antich', ',', 'who', 'was', 'blamed', 'for', 'the', 'murder', 'of', 'a', 'police', 'inspector', 'and', 'who', 'ended', 'up', 'being', 'executed', 'by', 'the', 'garrote', '.'], ['this', 'theory', 'describes', 'space', 'as', 'an', 'extremely', 'fine', 'fabric', '``', 'woven', \"''\", 'of', 'finite', 'loops', 'called', 'spin', 'networks', '.'], ['their', 'only', 'daughter', ',', 'violante', ',', 'was', 'born', 'in', '1', '9', '4', '7', '.'], ['it', 'was', 'released', 'on', '1', '9', 'august', '2', '0', '1', '3', 'on', 'infectious', 'music', '.'], ['he', 'also', 'won', 'geelong', \"'s\", '``', 'best', 'clubman', \"''\", 'award', ',', 'in', '2', '0', '0', '3', '.'], ['the', 'first', 'track', ',', '``', 'i', \"'ll\", 'be', 'your', 'magician', \"''\", ',', 'in', 'which', 'the', '1', '3', '-year-old', 'bonaduce', 'seduces', 'a', 'woman', 'into', 'having', 'sexual', 'intercourse', 'with', 'him', ',', 'has', 'developed', 'a', 'cult', 'following', 'for', 'its', 'campy', 'entertainment', 'value', '.'], ['bradford', 'cumberland', 'presbyterian', 'church', 'is', 'located', 'on', 'the', 'old', 'highway', '4', '5', 'across', 'from', 'the', 'school', '.'], ['in', '1', '9', '9', '8', ',', 'he', 'was', 'awarded', 'the', 'phd', 'degree', 'and', ',', 'in', '2', '0', '1', '0', ',', 'he', 'became', 'a', 'professor', 'in', 'sports', 'science', 'and', 'ergonomics', '.'], ['fewer', 'than', '3', '0', '0', 'pixar', 'image', 'computers', 'were', 'ever', 'sold', '.'], ['an', 'honorary', 'doctorate', 'degree', 'in', 'diplomacy', 'was', 'conferred', 'on', 'the', 'president', 'by', 'the', 'moscow', 'state', 'institute', 'of', 'international', 'relations', 'university', '(', 'mgimo', ')', '.'], ['cait', 'tells', 'will', 'that', 'he', 'was', 'institutionalized', 'following', 'abby', 'leaving', ',', 'pushing', 'him', 'to', 'remember', 'what', 'happened', '``', 'that', 'day', \"''\", '.'], ['despite', 'its', 'height', 'it', 'has', 'a', 'relatively', 'easy', 'normal', 'route', 'to', 'the', 'summit', '.'], ['from', 'january', '8', ',', '1', '9', '4', '4', 'to', 'may', '1', '5', ',', '1', '9', '4', '8', ',', 'the', 'only', 'country', 'music', 'chart', 'was', 'the', 'juke', 'box', 'chart', '.'], ['larfleeze', 'demands', 'his', 'own', 'guardian', 'after', 'learning', 'that', 'the', 'green', ',', 'blue', ',', 'and', 'black', 'lantern', 'corps', 'each', 'have', 'one', '.'], ['schaub', 'died', 'on', '2', '7', 'december', '1', '9', '6', '7', 'in', 'his', 'hometown', 'munich', '.'], ['according', 'to', 'the', '2', '0', '1', '1', 'census', ',', 'the', 'town', 'has', 'a', 'population', 'of', '1', '9', '5', 'people', '.'], ['harold', 'carl', 'everson', 'was', 'born', 'in', 'alexandria', ',', 'virginia', ',', 'the', 'son', 'of', 'justin', 'and', 'hilary', '.'], ['morrison', 'was', 'selected', 'to', 'train', 'with', 'the', 'senior', 'men', \"'s\", 'team', 'in', 'preparation', 'for', 'the', '2', '0', '0', '6', 'fiba', 'world', 'championship', 'but', 'was', 'cut', 'prior', 'to', 'the', 'tournament', '.'], ['members', 'of', 'the', 'ministry', 'are', 'not', 'salaried', ',', 'but', 'most', 'churches', 'support', 'their', 'ministry', 'team', 'financially', 'through', 'free-will', 'offerings', '.'], ['in', '2', '0', '0', '3', ',', 'vico', 'c', 'released', 'an', 'album', 'titled', '``', 'en', 'honor', 'a', 'la', 'verdad', \"''\", '.'], ['german', 'socialism', 'must', 'effect', 'a', '``', 'total', 'ordering', 'of', 'life', \"''\", 'with', 'a', '``', 'planned', 'economy', 'in', 'accordance', 'with', 'state', 'regulations', \"''\", '.'], ['despite', 'the', 'penalty', ',', 'the', 'return', 'to', 'division', '2', 'finally', 'saw', 'some', 'signs', 'of', 'recovery', 'from', 'capital', ',', 'with', 'the', 'team', 'winning', '1', '7', 'of', 'their', '2', '2', 'games', 'to', 'make', 'the', 'playoffs', 'in', 'their', 'first', 'season', ',', 'finishing', 'the', 'league', 'in', '6', 'th', 'place', '.'], ['the', 'championship', 'has', 'been', 'declared', 'vacant', 'twice', ',', 'first', 'when', 'then-champion', 'bestia', '6', '6', '6', 'was', 'unable', 'to', 'defend', 'the', 'championship', 'in', '2', '0', '1', '6', ',', 'and', 'again', 'in', 'early', '2', '0', '1', '8', 'when', 'fénix', 'vacated', 'the', 'championship', 'as', 'he', 'moved', 'into', 'the', 'heavyweight', 'division', '.'], ['the', 'school', 'housed', 'around', '9', '0', '0', 'boys', 'at', 'any', 'one', 'time', 'and', 'they', 'stayed', 'there', 'until', 'they', 'were', '1', '6', 'years', 'of', 'age', '.'], ['the', 'dutch', 'abel', 'tasman', 'made', 'the', 'first', 'european', 'discovery', 'of', 'the', 'island', 'on', '2', '4', 'january', '1', '6', '4', '3', '.'], ['the', '3', '0', '-minute', 'weekday', 'shows', 'were', 'broadcast', 'live', 'and', 'the', 'hour-long', 'saturday', 'show', 'was', 'taped', 'early', 'in', 'the', 'day', 'and', 'aired', 'at', '3', ':', '0', '0', 'pm', '.'], ['however', ',', 'in', '1', '9', '3', '0', ',', 'nikolai', 'bukharin', 'was', 'attacked', 'by', 'stalin', ',', 'because', 'he', 'insisted', 'that', 'the', 'state', 'must', 'wither', 'away', 'to', 'bring', 'forth', 'communism', ',', 'as', 'marx', 'had', 'advocated', '.'], ['the', 'industrial', 'sector', 'is', 'small', ',', 'and', 'agriculture', 'is', 'now', 'severely', 'limited', 'by', 'a', 'lack', 'of', 'suitable', 'land', '.'], ['it', 'was', 'here', 'that', 'white', 'advised', 'his', 'first', 'two', 'graduate', 'students', 'joel', 'h.', 'levine', 'and', 'morris', 'friedell', ',', 'both', 'who', 'went', 'on', 'to', 'make', 'contributions', 'to', 'social', 'network', 'analysis', 'in', 'sociology', '.'], ['in', 'september', '2', '0', '0', '7', ',', 'reddy', 'was', 'the', 'victim', 'of', 'an', 'assassination', 'attempt', 'near', 'nellore', 'by', 'naxal', 'groups', '.'], ['merembra', 'homestead', 'was', 'listed', 'on', 'the', 'new', 'south', 'wales', 'state', 'heritage', 'register', 'on', '1', '4', 'july', '2', '0', '0', '0', 'having', 'satisfied', 'the', 'following', 'criteria', '.'], ['over', 'the', 'past', 'decades', ',', 'a', 'number', 'of', 'factors', 'have', 'created', 'a', 'rapidly', 'changing', 'environment', 'for', 'today', \"'s\", 'government', 'financial', 'managers', '.'], ['moving', 'to', 'taiwan', 'in', 'the', 'middle', 'of', 'the', 'decade', ',', 'permadi', 'played', 'perhaps', 'his', 'best', 'badminton', 'in', 'the', 'late', '1', '9', '9', '0', 's', ',', 'after', 'his', 'thirtieth', 'birthday', '.'], ['this', 'was', 'the', 'second', 'latest', 'any', 'major', 'league', 'game', 'has', 'ever', 'ended', '.'], ['the', 'crew', 'derived', 'its', 'name', 'from', 'mr.', 'magic', \"'s\", 'alias', ',', '``', 'sir', 'juice', \"''\", '.'], ['the', 'university', 'gives', 'offers', 'of', 'admission', 'to', '2', '0', '%', 'of', 'its', '1', '8', 'year', 'old', 'applicants', ',', 'the', '5', 'th', 'lowest', 'amongst', 'the', 'russell', 'group', '.'], ['the', \"'black\", 'question', \"'\", 'on', 'the', 'streets', 'and', 'in', 'institutions', ',', 'was', 'drowned', 'out', 'by', 'the', 'cries', 'of', '``', 'racial', 'democracy', '``', 'reinforced', 'by', 'the', 'then', 'military', 'dictatorship', '.'], ['harris', \"'s\", 'band', ',', 'maven', ',', 'is', 'on', 'hold', 'as', 'he', 'works', 'on', 'other', 'projects', '.'], ['the', 'imperial', 'court', 'in', 'kyoto', 'posthumously', 'granted', 'him', 'the', 'title', 'of', 'bosatsu', 'in', '7', '5', '1', ',', 'so', 'in', 'japan', 'he', 'is', 'often', 'referred', 'to', 'as', '``', 'gyōki', 'bosatsu', \"''\", '.'], ['a', 'man', 'named', 'oswald', 'leicester', 'was', 'a', 'successful', 'grocer', 'in', 'the', 'time', 'when', 'grocers', 'were', 'becoming', 'rich', 'from', 'exotic', 'foods', 'from', 'colonies', '.'], ['mary', 'hutcheson', 'page', 'was', 'born', 'in', 'columbus', ',', 'ohio', ',', 'in', '1', '8', '6', '0', '.'], ['he', 'accumulated', 'a', 'strongly', 'conservative', 'record', 'on', 'the', 'budget', ',', 'judiciary', ',', 'and', 'energy', 'and', 'commerce', 'committees', ',', 'supporting', 'legislation', 'to', 'suppress', 'illegal', 'immigration', ',', 'restrict', 'telephone', 'sex', 'lines', ',', 'and', 'criminalize', 'flag', 'desecration', '.'], ['a', 'member', 'of', 'the', 'lithuanian', 'christian', 'democratic', 'party', ',', 'in', '1', '9', '2', '0', 'she', 'was', 'elected', 'to', 'the', 'constituent', 'assembly', 'from', 'constituency', 'v', ',', 'panevėžys', '.'], ['she', 'starred', 'as', 'hannah', 'rivera', 'in', 'the', 'nbc', 'series', '``', 'the', 'brave', \"''\", 'from', '2', '0', '1', '7', 'to', '2', '0', '1', '8', ',', 'and', 'since', '2', '0', '1', '9', 'has', 'played', 'lexi', 'vaziri', 'on', 'the', 'cbs', 'series', '``', 'blood', '&', 'amp', ';', 'treasure', \"''\", '.'], ['in', 'the', 'same', 'issue', ',', 'cannonball', 'and', 'karma', 'also', 'leave', 'the', 'team', '.'], ['wooded', 'areas', 'are', 'confined', 'to', 'the', 'northwest', 'and', 'northeast', 'of', 'the', 'plateau', '.'], ['small', 'businesses', 'to', 'save', 'money', 'and', 'reduce', 'their', 'energy', 'consumption', ',', \"''\", 'yap', 'said', '.'], ['the', 'octopus', 'grabs', 'the', 'little', 'mallards', 'and', 'takes', 'them', 'below', 'the', 'surface', '.'], ['dechert', 'was', 'born', 'in', 'brampton', ',', 'ontario', 'and', 'graduated', 'from', 'mcmaster', 'university', 'in', 'hamilton', 'with', 'a', 'bachelor', 'of', 'arts', 'in', 'economics', '.'], ['marcus', \"o'dair\", 'is', 'an', 'english', 'writer', ',', 'musician/manager', ',', 'broadcaster', 'and', 'lecturer', '.'], ['bengali', 'is', 'the', 'only', 'medium', 'of', 'education', 'of', 'khotta', 'people', '.'], ['the', 'crew', 'members', 'with', 'most', 'award', 'nominations', 'are', 'producer', 'and', 'director', 'bill', \"d'elia\", ',', 'with', 'six', 'nominations', 'and', 'zero', 'wins', ',', 'and', 'show', 'creator', 'david', 'e.', 'kelley', ',', 'with', 'five', 'nominations', 'and', 'one', 'win', '.'], ['the', 'stone', 'center', 'expanded', 'and', 'replaced', 'the', 'luxembourg', 'income', 'study', '(', 'lis', ')', 'center', ',', 'which', 'opened', 'its', 'doors', 'at', 'the', 'graduate', 'center', 'in', '2', '0', '0', '9', '.'], ['an', 'exemplary', 'work', 'of', 'this', 'period', 'is', 'the', 'universal', 'pictures', 'building', 'of', '1', '9', '4', '7', 'which', 'was', 'used', 'by', 'reyner', 'banham', 'to', 'illustrate', 'air', 'conditioning', '.'], ['in', 'total', '``', 'boston', 'legal', \"''\", 'has', 'been', 'nominated', 'for', '6', '2', 'awards', ',', 'and', 'won', '1', '4', '.'], ['his', 'girlfriend', 'is', 'the', 'bulgarian', 'pop-folk', 'singer', 'sonya', 'nemska', ',', 'who', 'was', 'in', 'the', 'house', 'for', 'a', 'few', 'minutes', 'during', 'one', 'of', 'the', 'housemates', \"'\", 'week', 'task', '.'], ['he', 'also', 'piloted', 'through', 'the', 'house', 'of', 'lords', 'heath', \"'s\", 'controversial', 'industrial', 'relations', 'act', '1', '9', '7', '1', ',', 'which', 'established', 'the', 'short-lived', 'national', 'industrial', 'relations', 'court', '.'], ['cadets', 'are', 'not', 'referred', 'to', 'as', 'freshmen', ',', 'sophomores', ',', 'juniors', ',', 'or', 'seniors', '.'], ['rancho', 'soulajule', 'was', 'a', 'mexican', 'land', 'grant', 'in', 'present', 'day', 'marin', 'county', ',', 'california', 'given', 'in', '1', '8', '4', '4', 'by', 'governor', 'manuel', 'micheltorena', 'to', 'josé', 'ramón', 'mesa', '.'], ['the', 'ability', 'to', 'monitor', 'patients', 'using', 'ai', 'may', 'allow', 'for', 'the', 'communication', 'of', 'information', 'to', 'physicians', 'if', 'possible', 'disease', 'activity', 'may', 'have', 'occurred', '.'], ['for', 'most', 'of', 'the', '1', '9', '6', '0', 's/', '7', '0', 's', ',', 'kourkoulos', \"'\", 'success', 'was', 'unparalleled', 'by', 'any', 'other', 'greek', 'actor', ',', 'except', 'dimitris', 'papamichael', ',', 'but', 'kourkoulos', \"'\", 'choice', 'of', 'material', 'was', 'more', 'challenging', 'than', 'the', 'latter', \"'s\", '.'], ['beginning', 'in', '1', '8', '8', '3', ',', 'the', 'northeast', 'corner', 'was', 'the', 'site', 'of', 'the', 'first', 'branch', 'of', 'the', 'joseph', 'r.', 'peebles', \"'\", 'sons', 'co.', 'grocery', 'store', '.'], ['in', 'principle', ',', 'it', 'could', 'be', 'harnessed', 'by', 'open-flow', 'turbines', ';', 'sea', 'bed', 'systems', 'are', 'available', ',', 'but', 'limited', 'to', 'a', 'depth', 'of', 'about', '.'], ['ko', \"'s\", 'musical', 'style', 'borrows', 'elements', 'from', 'hip', 'hop', ',', 'folk', ',', 'rock', ',', 'r', '&', 'amp', ';', 'b', 'and', 'reggae', '.'], ['these', 'practices', 'increase', 'the', 'risk', 'of', 'gangs', 'and', 'organized', 'criminal', 'groups', 'preying', 'upon', 'the', 'newly', 'arrived', 'migrants', '.'], ['when', 'octavius', 'took', 'control', 'of', 'britain', 'from', 'rome', ',', 'constantine', 'sent', 'three', 'roman', 'legions', 'to', 'britain', 'under', 'the', 'command', 'of', 'trahern', '.'], ['on', '3', 'may', '1', '9', '5', '2', ',', '``', 'bronstein', \"''\", 'was', 'sold', 'to', 'uruguay', 'and', 'recommissioned', 'as', 'rou', '``', 'artigas', \"''\", '(', 'de-', '2', ')', '.'], ['the', 'game', 'was', 'referred', 'to', 'as', '``', 'wiffle', 'ball', 'advance', \"''\", 'prior', 'to', 'its', 'release', '.'], ['it', 'brings', 'together', 'the', 'western', 'cut', 'with', 'indian', 'hand-embroidery', 'escorted', 'by', 'the', 'waist', 'coat', '.'], ['the', 'following', 'table', 'lists', 'all', 'the', 'games', 'played', 'by', 'the', 'brazil', 'national', 'football', 'team', 'in', 'official', 'competitions', 'and', 'friendly', 'matches', 'during', '2', '0', '0', '5', '.'], ['barton', 'w.', 'stone', 'and', 'alexander', 'campbell', 'each', 'independently', 'developed', 'similar', 'approaches', 'to', 'the', 'christian', 'faith', ',', 'seeking', 'to', 'restore', 'the', 'whole', 'christian', 'church', ',', 'on', 'the', 'pattern', 'set', 'forth', 'in', 'the', 'new', 'testament', '.'], ['he', 'became', 'a', 'character', 'actor', 'and', 'made', 'some', 'guest', 'appearances', 'in', 'top', 'tv', 'shows', ',', 'playing', 'the', 'heavy', 'in', 'episodes', 'of', '``', 'the', 'untouchables', \"''\", ',', '``', 'alfred', 'hitchcock', 'presents', \"''\", 'and', '``', 'ben', 'casey', \"''\", '.'], ['he', 'described', 'coming', 'out', 'at', 'a', 'young', 'age', 'by', 'saying', ',', '``', 'i', 'was', 'sure', 'of', 'myself', 'and', 'my', 'sexuality', 'and', 'i', \"'ve\", 'got', 'nothing', 'to', 'hide', '.'], ['i', 'really', 'wanted', 'to', 'do', 'a', 'good', 'job', 'for', 'them', 'and', 'i', \"'m\", 'delighted', 'it', 'all', 'came', 'together', \"''\"], ['late', 'in', 'the', 'war', 'the', 'hl', '2', '3', '4', 'upgrade', 'with', 'fuel', 'injection', 'was', 'recommended', 'by', 'the', 'entwicklungskommission', 'panzer', 'for', 'use', 'in', 'the', 'underpowered', 'tiger', 'ii', 'tank', '.'], ['from', '1', '9', '2', '0', 'breeding', 'came', 'under', 'bavarian', 'state', 'control', 'at', 'the', 'former', 'state', 'stud', 'of', 'schwaiganger', 'at', 'ohlstadt', ';', 'the', 'stud', 'book', 'was', 'closed', ',', 'and', 'an', 'edelweiss', 'symbol', 'was', 'adopted', 'as', 'a', 'brand', '.'], ['as', 'her', 'career', 'as', 'a', 'journalist', 'progresses', ',', 'dolly', 'decides', 'that', 'it', 'is', 'time', 'to', 'drop', 'out', 'of', 'school', 'to', 'focus', 'fully', 'on', 'her', 'job', ',', 'leading', 'to', 'conflict', 'between', 'her', 'mother', 'and', 'father', 'who', 'disagree', 'as', 'to', 'whether', 'she', 'is', 'making', 'the', 'right', 'choice', '.'], ['furthermore', ',', 'blood', 'and', 'vomitus', 'in', 'the', 'airway', 'may', 'prove', 'visualization', 'of', 'the', 'vocal', 'cords', 'difficult', 'rendering', 'direct', 'and', 'video', 'laryngoscopy', ',', 'as', 'well', 'as', 'fiberoptic', 'bronchoscopy', 'challenging', '.'], ['in', '1', '9', '8', '7', ',', 'a', 'nationwide', 'recall', 'system', 'was', 'put', 'into', 'place', ',', 'and', 'in', 'december', 'of', 'that', 'year', ',', 'the', 'government', 'prohibited', 'all', 'imports', 'of', 'these', 'chemicals', 'into', 'australia', 'without', 'express', 'ministerial', 'approval', '.'], ['the', 'basis', 'for', 'the', 'raid', 'was', 'an', 'accusation', 'by', 'a', 'city', 'inspector', 'claiming', 'that', 'chadd', 'mckeen', 'hoped', 'to', 'profit', 'from', 'his', 'business', '.'], ['a', 'new', 'set', 'of', 'much', 'more', 'extensive', 'restrictions', 'were', 'added', 'to', 'lsc', 'grantees', '.'], ['the', 'shorncliffe', 'railway', 'line', '(', 'part', 'of', 'the', 'queensland', 'rail', 'city', 'network', ')', 'enters', 'the', 'suburb', 'from', 'the', 'south-west', '(', 'deagon', ')', 'and', 'exits', 'to', 'the', 'south', '(', 'shorncliffe', ')', 'with', 'sandgate', 'railway', 'station', 'in', 'chubb', 'street', 'off', 'rainbow', 'street', '(', ')', 'serving', 'the', 'suburb', '.'], ['livingston', 'had', 'its', 'start', 'by', 'the', 'building', 'of', 'the', 'railroad', 'and', 'the', 'opening', 'of', 'a', 'mine', 'in', 'the', 'neighborhood', '.'], ['in', 'september', '1', '8', '5', '2', ',', 'the', 'congregation', 'sent', 'four', 'sisters', 'to', 'penang', ',', 'with', 'mother', 'mathilde', 'raclot', 'in', 'charge', ',', 'to', 'guide', 'and', 'support', 'the', 'group', 'of', 'sisters', 'who', 'had', 'arrived', 'earlier', '.'], ['big', 'springs', 'is', 'an', 'unincorporated', 'community', 'in', 'marion', 'township', ',', 'boone', 'county', ',', 'in', 'the', 'u.s.', 'state', 'of', 'indiana', '.'], ['cadwaladr', 'was', 'born', 'in', '1', '8', '5', '7', 'in', 'ruabon', ',', 'denbighshire', ',', 'the', 'son', 'of', 'robert', 'cadwaladr', ',', 'a', 'mining', 'engineer', ',', 'and', 'his', 'wife', 'pamela', '.'], ['the', 'students', \"'\", 'union', 'organises', 'annual', 'sports', 'and', 'the', 'literary', 'and', 'cultural', 'week', 'of', 'the', 'college', 'annually', '.'], ['he', 'made', 'his', 'odi', 'debut', 'for', 'bangladesh', 'against', 'zimbabwe', 'on', '2', '1', 'october', '2', '0', '1', '8', '.'], ['the', 'females', 'of', 'many', 'species', 'have', 'a', 'conspicuously', 'long', 'ovipositor', 'for', 'hiding', 'away', 'the', 'typical', 'soft-shelled', 'eggs', '.'], ['smith', 'later', 'attributed', 'her', 'negotiating', 'skills', 'to', 'the', 'experience', 'she', 'had', 'during', 'the', 'struggle', 'for', 'integration', '.'], ['through', 'an', 'intimate', 'relationship', 'with', 'jeanne', 'de', 'saint-rémy', 'de', 'valois', ',', 'the', 'pair', 'staged', 'a', 'scandal', 'involving', 'a', 'diamond', 'necklace', '.'], ['long', 'tentacle-like', 'cirri', 'are', 'borne', 'on', 'the', 'first', '7', 'body', 'segments', ',', 'and', 'fleshy', 'paddle-like', 'parapodia', 'are', 'borne', 'on', 'the', 'remainder', '.'], ['she', 'pursued', 'an', 'entertainment', 'career', 'and', 'worked', 'as', 'a', 'radio', 'announcer', 'oforz', 'radio', '.'], ['epsilon', 'tauri', 'is', 'a', 'major', 'feature', 'of', 'the', 'book', 'starsong', 'chronicles', ':', 'exodus', ',', 'by', 'american', 'author', 'jj', 'clayborn', '.'], ['he', 'is', 'head', 'of', 'a', 'research', 'interest', 'group', 'on', 'physical', 'activity', 'and', 'human', 'performance', '.'], ['the', 'lineup', 'led', 'the', 'finnish', 'team', 'in', 'points', 'and', 'played', 'well', 'during', 'the', 'tournament', 'but', 'finland', 'was', 'not', 'able', 'to', 'advance', 'to', 'the', 'medal', 'round', '.'], ['the', 'company', 'continued', 'to', 'expand', ',', 'by', 'buying', 'out', 'smaller', 'bus', 'and', 'coach', 'operators', '.'], ['in', 'may', ',', 'presley', 'auditioned', 'at', 'the', 'hi-hat', 'in', 'memphis', 'as', 'a', 'vocalist', 'for', 'a', 'band', '.'], ['more', 'recent', 'studies', 'have', 'suggested', 'that', 'the', 'species', 'may', 'be', 'a', 'regular', 'winter', 'visitor', 'in', 'the', 'eastern', 'part', 'of', 'peninsular', 'india', ',', 'and', 'not', 'just', 'a', 'passage', 'migrant', '.'], ['it', 'currently', 'contains', 'an', 'approximate', '1', ',', '9', '0', '0', 'of', 'students', 'and', 'staff', '.'], ['in', 'january', '2', '0', '0', '6', ',', 'project', 'developer', 'stephan', 'aßmus', 'suggested', 'that', 'at', 'the', 'current', 'level', 'of', 'development', ',', 'r', '1', 'was', 'at', 'least', 'a', 'year', 'away', ',', 'maybe', 'two', '.'], ['in', 'reality', ',', 'not', 'all', 'the', 'specifications', 'can', 'be', 'delivered', 'on', 'time', 'for', 'the', 'build-up', 'of', 'the', 'first', 'prototype', 'boards', 'so', 'all', 'the', 'tests', 'defined', 'in', 'the', 'document', 'usually', 'are', 'given', 'in', 'phases', '.'], ['general', 'relativity', ',', 'however', ',', 'incorporates', 'non-euclidean', 'geometry', 'in', 'order', 'to', 'represent', 'gravitational', 'effects', 'as', 'the', 'geometric', 'curvature', 'of', 'spacetime', '.'], ['a', 'well-dressed', 'mama', \"'s\", 'boy', ',', 'george', 'is', 'in', 'good', 'standing', 'with', 'barker', ',', 'even', 'gaining', 'a', 'promotion', ',', 'until', 'an', 'incident', 'that', 'costs', 'the', 'mob', 'a', 'million', 'dollars', '.'], ['she', 'learned', 'music', 'from', 'allathuru', 'subbayya', 'and', 'lent', 'her', 'voice', 'for', 'the', 'first', 'solo', 'gramophone', 'by', 'hmv', 'recording', 'company', 'at', 'the', 'age', 'of', 'six', '.'], ['he', 'then', 'led', 'the', 'international', 'negotiations', 'division', 'of', 'the', 'joint', 'chiefs', 'of', 'staff', 'from', '1', '9', '7', '1', 'to', '1', '9', '7', '4', ','], ['the', 'success', 'of', 'the', 'conversion', 'of', 'the', 'bulgarians', 'facilitated', 'the', 'conversion', 'of', 'other', 'east', 'slavic', 'peoples', ',', 'most', 'notably', 'the', 'rus', \"'\", ',', 'predecessors', 'of', 'belarusians', ',', 'russians', ',', 'and', 'ukrainians', '.'], ['he', 'has', 'performed', 'in', 'the', 'broadway', 'and', 'touring', 'companies', 'of', '``', 'the', 'who', \"'s\", 'tommy', \"''\", 'as', 'the', 'lover', 'with', 'alice', 'ripley', ',', 'and', '``', 'miss', 'saigon', \"''\", '.'], ['maeda', 'kiyomasa', 'was', 'a', 'senior', 'student', 'of', 'kishaba', 'chogi', 'and', 'was', 'promoted', 'to', '9', 'th', 'dan', 'in', 'yamane-ryu', 'by', 'kishaba', '.'], ['she', 'likes', 'hurling', ',', 'and', 'is', 'part', 'of', 'the', 'team', '.'], ['the', 'latest', 'video', \"'s\", 'appear', 'on', 'the', 'front', 'page', 'and', 'can', 'be', 'accessed', 'there', '.'], ['the', 'primary', 'explosion', 'was', 'heard', 'at', 'least', '4', '0', 'miles', 'away', 'and', 'one', 'of', 'the', 'witnesses', 'in', 'holbrook', ',', 'then', '1', '7', '-year-old', 'pauline', 'mccleve', ',', 'described', 'the', 'event', 'as', 'the', 'loudest', 'sound', 'she', 'ever', 'heard', '.'], ['marion', 'g.', 'romney', 'gave', 'an', 'example', 'of', 'a', '1', '4', '-year-old', 'boy', 'who', 'was', 'invited', 'to', 'four', 'swimming', 'parties', 'in', 'the', 'same', 'week', ',', 'each', 'organized', 'by', 'an', 'independent', 'church', 'organization', '.'], ['the', 'small', 'blue', 'forget-me-not', 'flower', 'was', 'first', 'used', 'by', 'the', 'grand', 'lodge', '``', 'zur', 'sonne', \"''\", 'in', '1', '9', '2', '6', ',', 'as', 'a', 'masonic', 'emblem', 'at', 'the', 'annual', 'convention', 'in', 'bremen', ',', 'germany', '.'], ['in', '1', '9', '0', '3', ',', 'the', 'french', 'government', 'appointed', 'him', 'as', 'a', 'chevalier', 'of', 'the', 'legion', 'of', 'honour', '.'], ['the', 'bridge', 'feeds', 'into', 'highway', '1', '1', '1', ',', 'the', 'circumferential', 'highway', '.'], ['radkovka', '(', ')', 'is', 'a', 'rural', 'locality', '(', 'a', 'selo', ')', 'and', 'the', 'administrative', 'center', 'of', 'radkovskoye', 'rural', 'settlement', ',', 'prokhorovsky', 'district', ',', 'belgorod', 'oblast', ',', 'russia', '.'], ['rachel', 'de', 'azevedo', 'coleman', '(', 'born', 'october', '9', ',', '1', '9', '7', '4', ')', 'is', 'an', 'american', 'producer', 'and', 'actress', '.'], ['in', '2', '0', '0', '3', ',', 'amrita', 'vishwa', 'vidapeetham', 'became', 'one', 'of', 'the', 'youngest', 'universities', 'to', 'be', 'conferred', 'the', 'status', 'of', 'a', 'deemed', 'university', '.'], ['chionodes', 'nubis', 'is', 'a', 'moth', 'in', 'the', 'family', 'gelechiidae', '.'], ['on', '2', '0', 'september', ',', 'chinese', 'troops', 'threw', 'grenades', 'at', 'indian', 'troops', 'and', 'a', 'firefight', 'developed', ',', 'triggering', 'a', 'long', 'series', 'of', 'skirmishes', 'for', 'the', 'rest', 'of', 'september', '.'], ['this', 'is', 'equivalent', 'to', 'the', 'above', 'notion', ',', 'as', 'every', 'dense', 'morphism', 'between', 'two', 'abelian', 'varieties', 'of', 'the', 'same', 'dimension', 'is', 'automatically', 'surjective', 'with', 'finite', 'fibres', ',', 'and', 'if', 'it', 'preserves', 'identities', 'then', 'it', 'is', 'a', 'homomorphism', 'of', 'groups', '.'], ['another', 'common', 'type', 'of', 'vegetation', 'are', 'thorn', 'thickets', ',', 'consisting', 'of', 'sea', 'buckthorn', ',', 'elderberry', 'and', 'blackthorn', '.'], ['leg', 'spination', 'is', 'the', 'most', 'reliable', 'way', 'to', 'differentiate', 'between', 'sexes', 'among', '``', 'l', '.'], ['the', 'dog', \"'s\", 'prank', 'prompts', 'foghorn', 'to', 'contemplate', '``', 'massive', 'retaliation', \"''\", 'against', 'him', ')', '.'], ['four', 'weeks', 'later', ',', 'dortmund', 'started', '4', '/', '5', 'favorite', 'for', 'the', 'grade', 'ii', 'san', 'felipe', 'stakes', 'at', 'the', 'same', 'track', '.'], ['from', '1', '9', '3', '3', 'onward', ',', 'after', 'the', 'nazi', 'seizure', 'of', 'power', ',', 'the', '``', 'gaue', \"''\", 'increasingly', 'replaced', 'the', 'german', 'states', 'as', 'administrative', 'subdivisions', 'in', 'germany', '.'], ['hms', '``', 'elgin', \"''\", 'was', 'a', 'hunt-class', 'minesweeper', 'of', 'the', '``', 'aberdare', \"''\", 'sub-class', 'built', 'for', 'the', 'royal', 'navy', 'during', 'world', 'war', 'i', '.'], ['it', 'is', 'found', 'in', 'the', 'brazilian', 'state', 'of', 'paraná', '.'], ['the', 'result', 'was', 'kept', 'secret', 'from', 'the', 'caucus', 'and', 'several', 'cabinet', 'ministers', 'privately', 'speculated', 'that', 'watts', 'had', 'actually', 'won', ',', 'but', 'holyoake', 'overturned', 'the', 'result', ',', 'concerned', 'with', 'watts', \"'\", 'health', '.'], ['in', '1', '9', '7', '8', ',', 'the', 'second', 'plant', 'was', 'converted', 'to', 'roof', 'tile', 'production', '.'], ['the', 'ward', 'strays', 'outside', 'the', 'town', 'boundaries', 'a', 'little', 'and', 'the', 'total', '2', '0', '1', '1', 'census', 'figure', 'is', '1', '1', ',', '5', '0', '9', '.'], ['whence', 'these', 'leagues', 'arrived', 'in', 'tuscany', ',', 'a', 'concerned', 'ferdinand', 'requisitioned', 'an', 'austrian', 'garrison', ',', 'from', 'his', 'brother', 'emperor', 'francis', 'of', 'austria', ',', 'for', 'the', 'defence', 'of', 'the', 'state', '.'], ['residents', 'do', \"n't\", 'have', 'a', 'library', 'in', 'the', 'community', 'and', 'use', 'the', 'port', 'richmond', ',', 'todt', 'hill-westerleigh', ',', 'and', 'mariners', 'harbor', 'branches', 'of', 'the', 'new', 'york', 'public', 'library', '.'], ['he', 'continues', 'to', 'write', 'and', 'publish', 'music', 'reviews', 'on', 'a', 'blog', 'that', 'he', 'co-directs', '.'], ['a.', 'n.', 'prahlada', 'rao', '(', 'born', '2', '4', 'july', '1', '9', '5', '3', ')', 'is', 'an', 'indian', 'author', 'and', 'kannada-language', 'crossword', 'compiler/', 'constructor', '.'], ['upon', 'reading', 'john', 'passmore', 'edward', \"'s\", 'plaque', ',', 'the', 'community', 'believe', 'he', 'would', 'smile', 'on', 'and', 'embrace', 'knowing', 'that', 'what', 'he', 'left', 'behind', 'was', 'being', 'used', 'for', 'the', 'enjoyment', 'of', 'like', 'minded', 'individuals', '.'], ['the', 'first', 'sighting', 'of', 'the', 'bremer', 'river', 'by', 'europeans', 'was', 'made', 'by', 'john', 'oxley', 'and', 'allan', 'cunningham', 'on', '1', '9', 'september', '1', '8', '2', '4', 'as', 'they', 'explored', 'the', 'brisbane', 'river', '.'], ['the', 'unofficial', 'mobile', 'version', 'had', 'to', 'be', 'downloaded', 'from', 'the', 'scratch', 'forums', '.'], ['the', 'prefix', 'and', 'suffix', '``', 'kina-', \"''\", 'and', '``', '-an', \"''\", 'can', 'also', 'be', 'used', 'together', '.'], ['contributions', 'are', 'paid', 'only', 'on', 'earnings', 'up', 'to', 'the', 'social', 'security', 'ceiling', '(', '2', '0', '2', '1', ':', '7', ',', '1', '0', '0', 'eur', 'in', 'western', 'germany', 'and', '6', ',', '7', '0', '0', 'eur', 'in', 'the', 'former', 'gdr', ')', '.'], ['children', 'of', 'elite', 'nubian', 'families', 'were', 'sent', 'to', 'be', 'educated', 'in', 'egypt', 'then', 'returned', 'to', 'kush', 'to', 'be', 'appointed', 'in', 'bureaucratic', 'positions', 'to', 'ensure', 'their', 'loyalty', '.'], ['he', 'and', 'andreas', 'georgoulias', 'published', 'a', 'book', 'in', '2', '0', '1', '3', 'entitled', 'interdisciplinary', 'design', ':', 'new', 'lessons', 'from', 'architecture', 'and', 'engineering', ',', 'actar', 'publishing', '.'], ['the', 'very', 'best', 'panchari', 'for', 'annual', 'festivals', 'is', 'tripunithura', 'vrishchikolsavam', 'melams', 'followed', 'by', 'koodalmanikyam', 'ulsavam', 'panchari', '.'], ['styled', 'as', 'raja', 'di-baroh', 'before', 'his', 'accession', ',', 'he', 'is', 'the', 'second', 'son', 'of', 'the', '1', '2', 'th', 'sultan', 'of', 'johor', ',', 'sulaiman', 'badrul', 'alam', 'shah', '.'], ['in', '2', '0', '1', '1', ',', 'he', 'interned', 'for', 'congressman', 'roscoe', 'bartlett', 'and', 'served', 'as', 'a', 'page', 'in', 'the', 'maryland', 'general', 'assembly', '.'], ['in', 'a', 'further', 'report', ',', 'the', '``', 'associated', 'press', \"''\", 'noted', ':', '``', 'the', 'award', 'for', 'best', 'actress', ',', 'musical', 'was', 'eliminated', 'this', 'season', 'because', 'there', 'was', 'only', 'one', 'eligible', 'candidate', '.'], ['fida', 'hassnain', ',', 'a', 'kashmiri', 'writer', ',', 'has', 'stated', ':', 'notovitch', 'responded', 'publicly', 'by', 'announcing', 'his', 'existence', ',', 'along', 'with', 'the', 'names', 'of', 'people', 'he', 'met', 'on', 'his', 'travels', 'in', 'kashmir', 'and', 'ladakh', '.'], ['chimbote', 'is', 'surrounded', 'by', 'two', 'natural', 'bays', ',', 'the', 'bay', 'of', 'chimbote', '(', 'or', 'ferrol', ')', 'and', 'the', 'bay', 'of', 'samanco', ',', 'both', 'with', 'excellent', 'harbor', 'conditions', '.'], ['bolton', 'paid', '£', '6', ',', '3', '0', '0', 'for', 'mcclelland', \"'s\", 'transfer', 'from', 'middlesbrough', 'in', 'march', '1', '9', '2', '8', ',', 'at', 'the', 'same', 'time', 'allowing', 'john', 'smith', 'to', 'move', 'to', 'bury', '.'], ['grand', 'duke', 'kirill', 'was', 'six', 'months', 'old', 'when', 'his', 'eldest', 'brother', ',', 'alexander', ',', 'died', 'in', 'childhood', '.'], ['after', 'finding', 'no', 'evidence', 'to', 'support', 'it', ',', 'the', 'organization', 'issued', 'a', 'retraction', '.'], ['in', '1', '8', '6', '2', ',', 'pease', 'moved', 'to', 'montello', ',', 'wisconsin', '.'], ['on', 'february', '6', ',', 'the', 'sichuan', 'provincial', 'health', 'and', 'health', 'commission', 'reported', 'that', '2', '0', 'new', 'cases', 'were', 'confirmed', 'in', 'sichuan', 'and', '4', 'new', 'cases', 'recovered', 'and', 'discharged', '.'], ['the', 'engines', 'were', 'produced', 'from', '1', '8', '8', '6', 'to', '1', '9', '1', '7', 'when', 'they', 'were', 'superseded', 'by', 'larger', ',', 'standard', 'farm', 'engines', '.'], ['he', 'went', 'to', 'melbourne', 'grammar', 'school', 'then', 'melbourne', 'university', ',', 'achieving', 'a', 'bsc', 'with', 'first', 'class', 'honours', 'in', 'chemistry', 'in', '1', '9', '0', '8', '.'], ['the', '``', 'bulletin', 'of', 'the', 'center', 'for', 'children', \"'s\", 'books', \"''\", 'says', 'that', 'perry', 'creates', 'a', '``', 'rare', \"''\", 'portrait', 'of', 'the', '``', 'way', 'compassionate', ',', 'functional', 'families', 'work', 'and', 'the', 'good', 'effects', 'they', 'can', 'produce', '.', \"''\"], ['it', 'is', 'found', 'in', 'south', 'africa', ',', 'where', 'it', 'has', 'been', 'recorded', 'from', 'the', 'western', 'cape', '.'], ['he', 'was', 'elected', 'to', 'the', 'mineralogical', 'section', 'of', 'the', 'french', 'académie', 'des', 'sciences', 'on', '5', 'may', '1', '9', '0', '3', '.'], ['the', 'paper', 'has', 'described', 'itself', 'as', 'the', 'flagship', 'of', 'the', 'traditional', 'catholic', 'movement', 'in', 'the', 'united', 'states', '.'], ['while', 'in', 'active', 'service', ',', \"o'callahan\", 'reported', 'aboard', 'uss', '``', 'franklin', \"''\", 'on', 'march', '2', ',', '1', '9', '4', '5', '.'], ['on', 'april', '3', ',', '2', '0', '1', '7', ',', 'the', 'washington', 'redskins', 'signed', 'brown', 'to', 'a', 'one-year', ',', '$', '2', '.', '3', '0', 'million', 'contract', 'that', 'includes', '$', '7', '0', '0', ',', '0', '0', '0', 'guaranteed', 'and', 'a', 'signing', 'bonus', 'of', '$', '5', '0', '0', ',', '0', '0', '0', '.'], ['the', 'parameter', 'that', 'describes', 'to', 'what', 'degree', 'a', 'material', 'is', 'a', 'conductor', 'or', 'insulator', 'is', 'known', 'as', 'formula_', '1', ',', 'or', 'the', '``', 'loss', 'tangent', \"''\", ',', 'given', 'by'], ['he', 'was', 'confused', 'about', 'this', 'but', 'help', 'came', 'from', 'his', 'senior', 'itocha', 'singh', 'who', 'was', 'playing', 'at', 'churchill', 'brothers', 's.c.', 'during', 'that', 'time', 'and', 'singh', \"'s\", 'name', 'was', 'referred', 'to', 'the', 'club', 'by', 'itocha', '.'], ['inspirit', 'is', 'a', 'national', 'grant-making', 'organization', 'that', 'supports', 'canadians', ',', 'particularly', 'young', 'adults', ',', 'in', 'building', 'a', 'more', 'inclusive', 'and', 'pluralistic', 'society', '.'], ['electrical', 'energy', 'is', 'generated', 'with', 'very', 'high', 'efficiency', 'and', 'zero', 'emissions', 'from', 'the', 'vehicle', 'itself', '.'], ['the', 'name', '``', 'bulawayo', \"''\", 'comes', 'from', 'the', 'ndebele', 'word', '``', 'bulala', \"''\", 'and', 'it', 'translates', 'to', '``', 'the', 'one', 'to', 'be', 'killed', \"''\", '.'], ['the', 'huangshi/daye', 'area', ',', 'south-east', 'of', 'wuhan', ',', 'became', 'an', 'important', 'center', 'of', 'mining', 'and', 'metallurgy', '.'], ['in', '2', '0', '0', '2', 'david', 'evans', 'et', 'al', '.'], ['prison', 'outstations', 'were', 'established', 'as', 'part', 'of', 'the', 'reforms', 'in', 'the', '2', '0', 'th', 'century', ',', 'and', 'to', 'reduce', 'the', 'overcrowding', 'at', 'fremantle', '.'], ['the', 'first', 'european', 'to', 'travel', 'along', 'the', 'river', 'was', 'captain', 'patrick', 'logan', 'who', 'in', 'either', 'late', '1', '8', '2', '6', 'or', 'early', '1', '8', '2', '7', 'investigated', 'the', 'bremer', '.'], ['width=', '2', '0', '0', 'height=', '8', '0', '0', 'zoom=', '1', '2', 'latitude=', '3', '7', '.', '4', '4', 'longitude=-', '7', '7', '.', '4', '3', '/', '&', 'gt', ';'], ['turner', 'classic', 'movies', 'and', 'the', 'dvd', 'feature', 'the', 'ending', 'with', 'christian', '.'], ['colons', 'within', 'a', 'selector', 'indicate', 'that', 'it', 'accepts', 'one', 'or', 'more', 'arguments', ',', 'one', 'for', 'each', 'colon', '.'], ['the', 'cupola', 'house', 'is', 'one', 'of', 'several', 'sites', 'of', 'historic', 'edenton', '.'], ['the', 'population', 'was', '2', '2', ',', '6', '7', '8', 'at', 'the', '2', '0', '1', '0', 'census', ',', 'up', 'from', '1', '5', ',', '8', '2', '6', 'at', 'the', '2', '0', '0', '0', 'census', '.'], ['the', 'need', 'for', 'and', 'value', 'of', 'financial', 'managers', 'has', 'increased', '.'], ['the', 'top', 'two', 'teams', 'in', 'groups', 'a', 'and', 'b', 'qualified', 'for', 'the', 'championship', 'bracket', ',', 'while', 'the', 'remaining', 'teams', 'from', 'groups', 'a', 'and', 'b', 'were', 'placed', 'in', 'the', 'bracket', 'to', 'determine', 'places', '5', 'through', '9', '.'], ['the', 'song', 'won', 'the', 'grammy', 'award', 'for', 'song', 'of', 'the', 'year', 'at', 'the', '5', '1', 'st', 'annual', 'grammy', 'awards', 'in', '2', '0', '0', '9', 'and', 'has', 'sold', 'over', '9', '.', '4', '4', 'million', 'copies', 'worldwide', '.'], ['it', 'was', 'nominated', 'for', 'a', 'genie', 'award', 'for', 'best', 'motion', 'picture', ',', 'but', 'did'], ['following', 'this', 'event', ',', 'at', 'about', '9', ':', '0', '0', 'that', 'evening', 'they', 'gathered', 'at', 'the', 'masonic', 'hall', 'for', 'a', 'celebratory', 'feast', 'which', 'was', 'enjoyed', 'by', 'all', '8', '0', 'of', 'her', 'ranks', '.'], ['this', 'is', 'a', 'tribute', 'to', 'the', 'high', 'regard', 'in', 'which', 'the', 'lord', 'lieutenant', 'of', 'ireland', ',', 'the', 'earl', 'of', 'shrewsbury', ',', 'held', 'him', '.'], ['her', 'older', 'sister', 'mary', '(', 'rochelle', 'hudson', ')', 'works', 'in', 'the', 'kitchen', ',', 'laundry', ',', 'and', 'dormitory', '.'], ['mohammed', 'worked', 'for', 'a', 'private', 'company', ',', 'then', 'was', 'appointed', 'first', 'assistant', 'general', 'manager', 'and', 'then', 'general', 'manager', 'of', 'the', 'rima', 'river', 'basin', 'and', 'rural', 'development', 'authority', ',', 'a', 'federal', 'ministry', 'of', 'water', 'resources', 'agency', '.'], ['she', 'writes', 'about', 'how', 'she', 'was', 'inspired', 'to', 'take', 'on', 'this', 'adventure', 'by', 'scott', 'fischer', ',', 'and', 'how', 'she', 'mentally', 'prepared', 'for', 'the', 'climb', 'as', 'part', 'of', 'the', 'sargarmantha', 'environmental', 'expedition', '.'], ['a', 'self-styled', '``', 'islamic', 'libertarian', ',', \"''\", 'he', 'is', 'an', 'outspoken', 'critic', 'of', 'both', 'islamic', 'movements', 'and', 'secular', 'dictatorships', ',', 'and', 'has', 'set', 'himself', 'apart', 'from', 'many', 'other', 'activists', 'through', 'his', 'use', 'of', 'humor', 'and', 'sarcasm', '.'], ['however', ',', 'after', 'the', 'acidic', 'content', 'of', 'the', 'lake', 'changed', 'in', '1', '9', '4', '0', ',', 'the', 'only', 'surviving', 'fish', 'is', 'the', 'dace', ',', 'while', 'most', 'of', 'the', 'other', 'species', ',', 'including', 'the', '``', 'kunimasu', \"''\", ',', 'are', 'thought', 'to', 'have', 'gone', 'extinct', '.'], ['he', 'also', 'worked', 'together', 'with', 'hans', 'guenter', 'dosch', 'and', 'others', 'on', 'the', 'physics', 'and', 'neurophysiology', 'of', 'the', 'early', 'processing', 'of', 'central', 'musical', 'quantities', 'in', 'the', 'brain', ',', 'like', 'tone', 'pitch', 'and', 'tone', 'spectrum', '(', 'he', 'plays', 'piano', 'since', 'childhood', ')', '.'], ['shapkarev', 'buttress', 'is', 'located', 'at', ',', 'which', 'is', '1', '2', '.', '7', 'km', 'south', 'of', 'hayduta', 'buttress', ',', '1', '8', '.', '2', 'km', 'north-northeast', 'of', 'bunovo', 'peak', 'and', '1', '1', '.', '4', 'km', 'east-northeast', 'of', 'glavinitsa', 'peak', '.'], ['as', 'a', 'result', 'of', 'this', 'marriage', ',', 'queen', 'philippa', 'and', 'king', 'edward', 'iii', 'granted', 'a', 'lifetime', 'annuity', 'to', 'the', 'couple', 'in', '1', '3', '6', '6', '.'], ['the', 'village', 'of', 'ziéna', ',', 'the', 'administrative', 'centre', '(', '``', 'chef-lieu', \"''\", ')', 'of', 'the', 'commune', ',', 'is', '4', '5', 'km', 'southwest', 'of', 'koutiala', '.'], ['on', 'the', 'island', 'of', 'aitutaki', ',', 'he', 'is', 'also', 'known', 'as', 'a', 'brother', 'of', 'ruatapu', ',', 'but', 'is', 'not', 'as', 'famous', 'as', 'him', '.'], ['the', 'alignment', 'would', 'be', 'up', 'to', 'wide', 'for', 'traffic', 'outside', 'of', 'ossining', '.'], ['in', 'july', '2', '0', '1', '5', 'turkcell', 'completed', 'the', 'acquisition', 'of', 'a', '4', '4', '.', '9', '6', '%', 'stake', 'in', 'the', 'company', 'owned', 'by', 'rinat', 'akhmetov', \"'s\", 'scm', 'holdings', '.'], ['friedrich', 'continued', 'through', '#', '8', '3', '(', 'jan.', '1', '9', '7', '1', ')', ',', 'with', 'the', 'late', 'part', 'of', 'this', 'run', 'having', 'reprint', 'issues', 'alternating', 'with', 'new', 'stories', '.'], ['participants', 'and', 'vendors', 'at', 'the', 'flower', 'mart', 'offer', 'gardening', 'tips', ',', 'sell', 'plants', 'and', 'seedlings', ',', 'and', 'other', 'gardening-related', 'goods', '.'], ['they', 'gave', 'him', 'a', 'display', 'of', 'spear', 'throwing', 'for', 'a', 'shilling', ',', 'and', 'he', 'reflected', 'sadly', 'on', 'how', 'their', 'numbers', 'were', 'rapidly', 'decreasing', '.'], ['currently', ',', 'it', 'is', 'estimated', 'that', '1', '0', '-', '2', '0', '%', 'of', 'its', 'mollusk', 'species', 'are', 'extinct', '.'], ['pierre', 'bourdin', '(', 'born', '8', 'january', '1', '9', '9', '4', ')', 'is', 'a', 'french', 'footballer', 'who', 'plays', 'with', 'belgian', 'football', 'association', 'club', 'beerschot', 'wilrijk', 'as', 'a', 'center', 'back', '.'], ['they', 'constructed', 'the', 'music', 'video', 'and', 'the', 'film', 'around', 'ms.', 'lavonne', \"'s\", 'on-stage', 'persona', '.'], ['it', 'is', 'used', 'in', 'contrast', 'to', '``', 'alphafux', \"''\", ',', 'which', 'refers', 'to', 'alpha', 'male', 'men', 'who', 'do', 'not', 'give', 'money', 'to', 'women', 'but', 'nonetheless', 'engage', 'with', 'them', 'sexually', '.'], ['joe', 'malone', 'made', 'a', 'try', 'for', 'frank', 'mcgee', \"'s\", 'record', ',', 'but', 'fell', 'short', 'at', '9', 'goals', '.'], ['after', 'lü', \"'s\", 'death', ',', 'an', 'official', 'named', 'zeng', 'jing', 'was', 'inspired', 'by', 'his', 'anti-qing', 'writing', 'to', 'attempt', 'to', 'overthrow', 'the', 'yongzheng', 'emperor', '.'], ['during', 'his', 'involvement', 'in', 'the', 'underground', 'party', 'work', 'in', '1', '9', '7', '9', '-', '9', '0', ',', 'he', 'worked', 'as', 'gulmi', 'district', 'committee', 'member', 'of', 'the', 'party', 'from', '1', '9', '7', '9', 'to', '1', '9', '8', '9', '.'], ['following', 'the', 'single', '``', 'gim', 'me', 'dat', '!', ',', \"''\", 'the', 'chop', 'chop', 'has', 'been', 'called', '``', 'a', 'project', 'that', 'fires', 'on', 'all', 'cylinders', '.', \"''\"], ['the', 'tubular', 'flowers', 'are', 'coated', 'with', 'dense', 'hairs', 'and', 'open', 'at', 'the', 'apex', 'with', 'six', 'claw-like', 'structures', ',', 'and', 'it', 'is', 'from', 'this', 'paw-like', 'formation', 'that', 'the', 'common', 'name', '``', 'kangaroo', 'paw', \"''\", 'is', 'derived', '.'], ['the', 'demo', 'resulted', 'in', 'a', 'production', 'deal', 'for', 'the', 'dr.', 'jeckyll', '&', 'amp', ';', 'mr.', 'hyde', 'with', 'profile', 'records', '.'], ['in', 'late', '2', '0', '1', '5', ',', 'members', 'hiroomi', 'tosaka', ',', 'naoki', 'kobayashi', 'and', 'takanori', 'iwata', 'were', 'endorsed', 'in', 'a', 'promotional', 'campaign', 'with', 'glico', \"'s\", 'pocky', 'product', 'line', '.'], ['the', 'company', 'also', 'created', 'subsidiaries', 'in', 'denmark', ',', 'belgium', 'and', 'the', 'netherlands', '.'], ['the', 'carthage', 'film', 'festival', 'is', 'held', 'in', 'october', 'and', 'november', 'of', 'every', 'other', 'year', ',', 'alternating', 'with', 'the', 'carthage', 'theatre', 'festival', '.'], ['bienvenido', '``', 'ben', \"''\", 'rivera', 'santana', '(', 'born', 'january', '1', '1', ',', '1', '9', '6', '8', 'in', 'san', 'pedro', 'de', 'macoris', ',', 'dominican', 'republic', ')', 'is', 'a', 'retired', 'professional', 'baseball', 'pitcher', '.'], ['brown', ',', 'whose', 'background', 'was', 'in', 'classical', 'studies', ',', 'became', 'interested', 'in', 'psychoanalysis', 'because', 'of', 'herbert', 'marcuse', ',', 'a', 'philosopher', 'associated', 'with', 'the', 'institute', 'for', 'social', 'research', 'based', 'in', 'frankfurt', '.'], ['greene', 'worked', 'in', 'the', 'kings', \"'\", 'organization', 'as', 'a', 'professional', 'scout', 'after', 'retiring', 'from', 'playing', '.'], ['conures', 'are', 'commonly', 'bred', 'and', 'kept', 'in', 'aviculture', 'and', 'may', 'live', 'up', 'to', '3', '0', 'years', '.'], ['italy', 'entered', 'the', 'war', 'in', '1', '9', '1', '5', 'with', 'thirty', 'regiments', 'of', 'line', 'cavalry', ',', 'lancers', 'and', 'light', 'horse', '.'], ['as', 'brown', \"'s\", 'single', 'was', 'released', 'in', 'the', '1', '9', '7', '0', 's', ',', 'the', 'charts', 'only', 'made', 'reference', 'to', 'radio', 'airplay', 'and', 'sales', '.'], ['the', 'return', 'migration', 'takes', 'place', 'in', 'september', 'to', 'november', '.'], ['it', 'was', 'not', 'until', 'the', '1', '9', '9', '0', 's', 'that', 'nantucket', \"'s\", 'population', 'surpassed', 'its', '1', '8', '4', '0', 'peak', 'of', '9', ',', '0', '0', '0', '.'], ['having', 'represented', 'england', 'at', 'u', '1', '8', 'and', 'u', '1', '9', 'level', ',', 'thomas', 'made', 'his', 'u', '2', '0', 'debut', 'during', 'a', '2', '-', '0', 'victory', 'over', 'wales', 'at', 'st.', 'george', \"'s\", 'park', 'on', '1', '3', 'october', '2', '0', '2', '0', '.'], ['together', 'with', 'a', 'growing', 'workforce', 'of', 'public', 'servants', ',', 'these', 'politicians', 'required', 'accommodation', 'when', 'in', 'brisbane', '.'], ['``', 'wineglassesful', \"''\", ',', 'or', '``', 'cyathus', 'vinarius', \"''\", 'in', 'pharmaceutical', 'latin', ')', 'was', 'defined', 'as', 'of', 'a', 'pint', ',', 'or', '2', 'fluid', 'ounces', '(', '2', 'fluid', 'ounces', 'in', 'the', 'imperial', 'system', ')', '.'], ['described', 'as', '``', 'a', 'neat', 'edifice', 'open', 'to', 'visitors', \"''\", '.'], ['it', 'requires', 'the', 'fda', ',', 'at', 'the', 'request', 'of', 'a', 'drug', 'sponsor', ',', 'to', 'expedite', 'the', 'review', 'of', 'a', 'drug', 'if', 'the', 'drug', 'treats', 'a', 'serious', 'or', 'life-threatening', 'disease', 'or', 'condition', 'and', 'the', 'drug', 'demonstrates', 'substantial', 'improvement', 'over', 'existing', 'therapies', '.'], ['he', 'was', 'named', 'the', 'best', 'young', 'player', 'of', 'the', 'tournament', 'and', 'won', 'the', 'golden', 'boot', 'as', 'the', 'tournament', \"'s\", 'top', 'scorer', ',', 'with', 'five', 'goals', 'and', 'three', 'assists', '.'], ['this', 'does', 'not', 'require', 'the', 'speaker', 'to', 'have', 'explicitly', 'said', 'that', 'they', 'are', 'taking', 'a', 'stance', '.'], ['most', 'are', 'fly-pollinated', ',', 'and', 'attract', 'hordes', 'of', 'flies', '.'], ['it', 'is', 'a', 'full', 'service', 'library', 'and', 'is', 'ada', 'compliant', '.'], ['by', 'this', 'time', 'he', 'was', 'working', 'in', 'the', 'social', 'welfare', 'service', 'as', 'a', 'civil', 'servant', '.'], ['(', 'although', 'the', 'title', '``', 'magistral', \"''\", 'was', 'originally', 'granted', 'by', 'cardinal', 'cisneros', ',', 'the', 'building', 'was', 'still', 'technically', 'only', 'a', 'collegiate', 'church', ',', 'and', 'not', 'yet', 'a', 'cathedral', 'within', 'the', 'ecclesiastical', 'meaning', 'of', 'the', 'term', '.', ')'], ['humans', 'appear', 'to', 'have', 'long', 'expressed', 'a', 'desire', 'to', 'know', 'which', 'horse', 'or', 'horses', 'were', 'the', 'fastest', ',', 'and', 'horse', 'racing', 'has', 'ancient', 'roots', '.'], ['the', 'worldwide', 'release', 'was', 'on', '2', 'march', '1', '9', '9', '8', '.'], ['the', 'next', 'day', ',', 'tom', 'came', 'to', 'simone', 'and', 'they', 'reconnected', 'and', 'made', 'love', '.'], ['the', 'set', 'of', 'equivalence', 'classes', 'of', 'primitive', 'binary', 'quadratic', 'forms', 'having', 'a', 'given', 'discriminant', '``', 'd', \"''\", 'is', 'a', 'group', 'under', 'the', 'composition', 'law', 'described', 'above', '.'], ['the', 'pan', 'claimed', 'she', 'left', 'the', 'party', 'since', 'she', 'was', 'not', 'guaranteed', 'a', 'federal', 'deputy', 'spot', 'through', 'the', 'proportional', 'representation', 'process', '.'], ['the', 'union', 'is', 'governed', 'by', 'a', 'national', 'executive', ',', 'made', 'up', 'of', 'elected', 'representatives', 'from', 'each', 'of', 'the', 'divisions', '.'], ['the', 'bourse', 'can', 'now', 'handle', '7', '0', '0', 'transactions', 'per', 'second', 'and', '1', '5', '0', ',', '0', '0', '0', 'transactions', 'per', 'day', '.'], ['then', 'the', 'coordinate', 'ring', '``', 'k', \"''\", '[', '``', 'c', \"''\", ']', 'of', 'regular', 'functions', 'on', '``', 'c', \"''\", 'is', 'a', 'dedekind', 'domain', '.'], ['in', 'response', 'to', 'the', 'issues', 'that', 'surround', 'big', 'cats', ',', 'the', 'fcf', 'board', 'of', 'directors', 'approved', 'a', '``', 'policy', 'on', 'big', 'cats', \"''\", 'that', 'discourages', 'ownership', 'by', 'novices', 'and', 'those', 'lacking', 'proper', 'facilities', ',', 'knowledge', 'and', 'resources', '.'], ['the', 'ones', 'that', 'can', 'still', 'talk', '(', 'as', 'in', 'the', 'case', 'of', 'one', 'named', 'alexander', ')', 'are', 'imprisoned', 'in', 'a', 'pen', 'either', 'until', 'the', 'transformation', 'finishes', 'or', 'to', 'make', 'sure', 'they', 'do', \"n't\", 'gain', 'the', 'attention', 'of', 'the', 'law', '.'], ['until', '1', '9', '9', '6', ',', 'the', 'guide', 'michelin', 'awarded', 'the', 'restaurant', 'three', 'stars', '.'], ['in', 'papua', 'new', 'guinea', 'whereas', 'christian', 'missionaries', 'openly', 'opposed', 'traditional', 'funerary', 'art', 'and', 'performances', ',', 'the', 'baháʼís', 'encouraged', 'their', 'production', 'as', 'a', 'form', 'of', 'worship', '.'], ['zuckerberg', 'initiated', 'quiet', 'title', 'and', 'adverse', 'possession', 'lawsuits', 'against', 'a', 'number', 'of', 'native', 'hawaiian', 'families', 'who', 'held', '``', 'kuleana', \"''\", 'land', 'rights', 'within', 'his', '7', '0', '0', '-acre', 'kauai', 'property', '.'], ['``', 'jump', 'britain', \"''\", 'is', 'a', '2', '0', '0', '5', 'documentary', 'about', 'free', 'running', '.'], ['the', 'first', 'new', 'sets', 'were', 'built', 'with', '1', '1', 'cars', 'and', 'delivered', 'via', 'the', 'channel', 'tunnel', 'to', 'edge', 'hill', '.'], ['ahmadinejad', 'received', 'a', 'hero', \"'s\", 'welcome', 'upon', 'his', 'return', 'to', 'tehran', 'on', '2', '1', 'april', ',', 'where', 'he', 'was', 'greeted', 'by', 'supporters', 'at', 'the', 'airport', 'with', '``', 'death', 'to', 'israel', \"''\", 'slogans', '.'], ['majority', 'of', 'tumours', 'were', 'found', 'to', 'have', 'ill-defined', 'margins', 'radiographically', '.'], ['it', 'was', 'started', 'constructing', 'in', '2', '0', '0', '9', 'and', 'completed', 'in', '2', '0', '1', '2', '.'], ['both', 'villoresi', 'and', 'his', 'mechanic', 'were', 'pinned', 'beneath', 'the', 'lancia', '.'], ['he', 'produced', 'his', 'fourth', 'album', ',', '``', 'spark', \"''\", ',', 'in', '2', '0', '0', '4', 'and', 'went', 'completely', 'indie', ',', 'selling', 'the', 'cds', 'from', 'his', 'website', '.'], ['he', 'was', 'selected', 'to', 'represent', 'namibia', 'at', 'under-', '1', '6', 'and', 'under-', '1', '8', 'level', 'between', '2', '0', '1', '0', 'and', '2', '0', '1', '2', ',', 'and', 'made', 'his', 'test', 'debut', 'for', 'in', '2', '0', '1', '4', 'against', '.'], ['the', 'haigh', 'branch', 'would', 'have', 'required', 'a', 'fourth', 'engine', ',', 'but', 'the', 'haigh', 'furnace', 'closed', 'and', 'the', 'branch', 'was', 'never', 'built', '.'], ['the', 'second', 'type', 'of', 'names', 'that', 'were', 'given', 'to', 'peaks', 'are', 'after', 'european', 'climbers', 'and', 'explorers', '.'], ['eventually', ',', 'a', 'friend', ',', 'sandra', 'nagtzaam', '(', 'borsato', \"'s\", 'first', 'manager', ')', 'wrote', 'a', 'fitting', 'story', '.'], ['to', 'help', 'counter', 'the', 'perceived', 'male', 'bias', 'of', 'its', 'superfan', 'target', 'group', ',', 'the', 'company', 'expanded', 'the', 'definition', 'in', 'early', '2', '0', '1', '0', 'to', 'cover', 'individuals', 'of', 'both', 'sexes', ',', 'all', 'ages', ',', 'and', 'households', 'who', 'frequent', 'fast', 'food', 'within', 'the', 'stated', 'time', 'frame', '.'], ['anti-sleep', 'pilot', 'is', 'a', 'danish', 'device', 'that', 'can', 'be', 'fitted', 'to', 'any', 'vehicle', 'that', 'uses', 'a', 'combination', 'of', 'accelerometers', 'and', 'reaction', 'tests', '.'], ['san', 'francisco', 'won', 'the', 'series', ',', 'however', ',', 'in', 'game', '3', '.'], ['in', 'mathematics', ',', 'function', 'composition', 'is', 'an', 'operation', 'that', 'takes', 'two', 'functions', 'and', 'and', 'produces', 'a', 'function', 'such', 'that', '.'], ['the', '``', 'little', 'italy', \"''\", 'in', 'lower', 'manhattan', 'was', 'under', 'the', 'control', 'of', 'ignazio', '``', 'lupo', 'the', 'wolf', \"''\", 'saietta', ',', 'before', 'a', 'gang', 'war', 'erupted', ',', 'the', 'two', 'sides', 'decided', 'on', 'joining', 'forces', '.'], ['the', 'concert', 'arena', '(', 'at', 'the', 'ferrari', 'world', 'theme', 'park', ')', 'was', 'erected', 'as', 'a', 'temporary', 'venue', 'for', 'the', 'event', 'and', 'was', 'torn', 'down', 'the', 'following', 'week', '.'], ['there', 'are', 'claims', 'that', 'sometimes', 'the', 'perineum', 'is', 'excessively', 'repaired', 'after', 'childbirth', ',', 'using', 'a', 'so-called', '``', 'husband', 'stitch', \"''\", 'and', 'that', 'this', 'can', 'increase', 'vaginal', 'tightness', 'or', 'result', 'in', 'pain', 'during', 'intercourse', '.'], ['``', 'protesters', 'were', 'hurt', ',', 'policemen', 'were', 'hurt', 'and', 'the', 'power', 'station', 'carried', 'on', 'producing', 'energy', 'regardless', '.'], ['which', 'means', '``', 'bravo', ',', 'an', 'excellent', 'competition', '!', \"''\"], ['the', 'top', 'two', 'teams', 'from', 'groups', 'c', 'and', 'd', 'were', 'placed', 'in', 'the', 'bracket', 'to', 'determine', 'places', '9', 'through', '1', '2', ',', 'and', 'the', 'remaining', 'teams', 'were', 'placed', 'in', 'the', 'bracket', 'to', 'determine', 'places', '1', '3', 'through', '1', '6', '.'], ['the', 'audience', ',', 'according', 'to', 'one', 'report', ',', '``', 'included', 'many', 'members', 'of', 'the', 'great', 'and', 'good', ',', 'former', 'cabinet', 'ministers', 'and', 'privy', 'councillors', ',', 'as', 'well', 'as', 'actors', ',', 'writers', ',', 'academics', ',', 'and', 'enthusiasts', \"''\", '.'], ['all', 'the', 'aagpbl', 'teams', 'stayed', 'at', 'the', 'seville', 'biltmore', 'hotel', 'and', 'were', 'filmed', 'for', 'fox', 'movietone', 'news', 'going', 'down', 'the', 'steps', 'at', 'the', 'university', 'of', 'havana', ',', 'while', 'their', 'exhibition', 'games', 'were', 'played', 'at', 'estadio', 'latinoamericano', '.'], ['while', 'his', 'full-length', 'book', '``', 'goliath', \"''\", 'is', 'based', 'on', 'the', 'eponymous', 'biblical', 'figure', ',', 'gauld', 'is', 'not', 'religious', '.'], ['kincardine', 'has', 'a', 'humid', 'continental', 'climate', '(', 'köppen', '``', 'dfb', \"''\", ')', 'with', 'cold', ',', 'snowy', 'winters', 'and', 'warm', 'summers', '.'], ['the', 'band', 'have', 'also', 'played', 'shows', 'across', 'canada', 'and', ',', 'on', 'one', 'occasion', ',', 'as', 'part', 'of', 'the', 'line-up', 'in', 'a', 'surf', 'rock', 'showcase', 'in', 'new', 'york', 'city', '.'], ['after', 'the', 'line', \"'s\", 'closure', ',', 'the', 'new', 'zealand', 'railways', 'corporation', 'retained', 'ownership', 'over', 'the', 'trackbed', 'in', 'the', 'hopes', 'that', 'forestry', 'proposals', 'would', 'come', 'to', 'fruition', ',', 'and', 'some', 'rails', 'were', 'still', 'in', 'place', 'during', 'the', '1', '9', '9', '0', 's', '.'], ['the', 'baron', 'reproaches', 'his', 'erring', 'son', 'when', 'the', 'latter', \"'s\", 'affairs', 'are', 'revealed', ',', 'but', 'gaston', 'successfully', 'bids', 'his', 'father', 'remember', 'his', 'own', 'misspent', 'youth', ',', 'and', 'all', 'is', 'forgiven', '.'], ['he', 'was', 'born', 'on', '1', '7', 'march', '1', '9', '0', '3', 'in', 'jorhat', ',', 'assam', ',', 'british', 'india', '.'], ['the', 'population', 'was', '3', '1', '1', 'as', 'of', '2', '0', '1', '0', '.'], ['on', '2', '9', 'may', '1', '8', '3', '9', ',', 'overseas', 'manual', 'labour', 'was', 'prohibited', 'and', 'any', 'person', 'effecting', 'such', 'emigration', 'was', 'liable', 'to', 'a', '2', '0', '0', 'rupee', 'fine', 'or', 'three', 'months', 'in', 'jail', '.'], ['in', '1', '9', '2', '4', 'the', 'fisherton', 'house', 'asylum', 'suffered', 'financial', 'difficulties', 'and', 'a', 'limited', 'company', 'was', 'formed', 'called', 'old', 'manor', '(', 'salisbury', ')', 'ltd.', 'sir', 'cecil', 'chubb', 'was', 'appointed', 'managing', 'director', 'and', 'left', 'his', 'law', 'practice', 'to', 'concentrate', 'wholly', 'on', 'the', 'management', 'of', 'the', 'business', '.'], ['her', 'literary', 'influences', 'derive', 'fundamentally', 'from', 'the', 'celtic', 'world', ',', 'from', 'diverse', 'mythologies', ',', 'and', 'from', 'the', 'principal', 'epics', 'of', 'ancient', 'peoples', '.'], ['a', 'switch', 'between', 'third-rail', 'and', 'overhead', 'collection', 'was', 'performed', 'while', 'running', 'at', 'speed', ',', 'initially', 'at', 'continental', 'junction', 'near', 'folkestone', ',', 'and', 'later', 'on', 'at', 'fawkham', 'junction', 'after', 'the', 'opening', 'of', 'the', 'first', 'section', 'of', 'the', 'channel', 'tunnel', 'rail', 'link', '.'], ['a', 'biography', 'of', 'joyce', ',', '``', 'the', 'hidden', 'boy', \"''\", ',', 'by', 'richard', 'heron', 'ward', ',', 'was', 'published', 'in', '1', '9', '6', '2', '.'], ['other', 'than', 'isolated', 'singularities', ',', 'complex', 'functions', 'of', 'one', 'variable', 'may', 'exhibit', 'other', 'singular', 'behaviour', '.'], ['the', 'first', 'post', 'office', 'was', 'established', 'in', 'aurora', 'in', '1', '8', '8', '6', ',', 'but', 'from', '1', '8', '8', '6', 'until', '1', '8', '8', '8', ',', 'the', 'post', 'office', 'was', 'called', 'st.', 'peter', '.'], ['the', 'syndicate', 'is', 'the', 'most', 'prolific', 'supplier', 'of', 'technology', 'and', 'owns', 'a', 'good', 'portion', 'of', 'the', 'american', 'landmass', '.'], ['on', '8', 'november', '2', '0', '0', '7', ',', 'the', 'house', 'committee', 'on', 'science', 'and', 'technology', \"'s\", 'subcommittee', 'on', 'space', 'and', 'aeronautics', 'held', 'a', 'hearing', 'to', 'examine', 'the', 'status', 'of', 'nasa', \"'s\", 'near-earth', 'object', '(', 'neo', ')', 'survey', 'program', '.'], ['the', 'whmo', 'is', 'headed', 'by', 'a', 'director', 'who', 'oversees', 'the', 'policies', 'involving', 'department', 'of', 'defense', 'assets', '.'], ['in', 'march', '2', '0', '0', '8', 'the', 'express', 'group', 'paid', 'the', 'fund', '£', '5', '5', '0', ',', '0', '0', '0', 'and', '£', '3', '7', '5', ',', '0', '0', '0', 'in', 'libel', 'damages', 'arising', 'out', 'of', 'articles', 'about', 'the', 'mccanns', 'and', 'tapas', 'seven', 'respectively', '.'], ['during', 'the', 'late', '2', '0', 'th', 'century', ',', 'fagging', 'became', 'unfashionable', 'in', 'british', 'public', 'schools', ',', 'as', 'attitudes', 'to', 'boarding', 'education', 'and', 'child', 'development', 'changed', '.'], ['he', 'moved', 'to', 'copenhagen', 'in', '1', '7', '9', '0', 'where', 'he', 'the', 'same', 'year', 'was', 'licensed', 'as', 'a', 'merchant', '(', '``', 'grosserer', \"''\", ')', '.'], ['in', 'austria', 'they', 'emerged', 'later', 'than', 'in', 'germany', ',', 'because', 'the', 'railway', 'companies', 'shied', 'away', 'from', 'their', 'higher', 'running', 'costs', '.'], ['at', 'first', ',', 'coalition', 'spokesperson', 'ahmed', 'asiri', 'admitted', 'that', 'schools', 'and', 'hospitals', 'were', 'targeted', 'but', 'claimed', 'that', 'these', 'were', 'used', 'as', 'weapon', 'storage', 'sites', '.'], ['the', 'origins', 'of', 'the', 'internet', 'date', 'back', 'to', 'the', 'development', 'of', 'packet', 'switching', 'and', 'research', 'commissioned', 'by', 'the', 'united', 'states', 'department', 'of', 'defense', 'in', 'the', '1', '9', '6', '0', 's', 'to', 'enable', 'time-sharing', 'of', 'computers', '.'], ['the', 'ritterman', 'building', 'is', 'one', 'of', 'middlesex', 'university', \"'s\", 'newest', 'development', ',', 'and', 'was', 'opened', 'in', 'february', '2', '0', '1', '7', '.'], ['the', 'font', 'was', 'named', 'by', 'norton', 'and', ',', 'according', 'to', 'microsoft', ',', 'received', 'its', 'name', 'from', 'the', 'westminster', 'bank', 'limited', '(', 'now', 'natwest', ')', 'from', 'the', 'united', 'kingdom', ')', 'because', 'it', 'helped', 'fund', 'the', 'font', \"'s\", 'production', '.'], ['two', 'light', 'guns', 'can', 'be', 'used', 'simultaneously', 'to', 'provide', 'co-operative', 'play', 'in', 'two', 'player', 'mode', '.'], ['winchip', '2', ',', 'an', 'update', 'of', 'c', '6', ',', 'retained', 'the', 'simple', 'in-order', 'execution', 'pipeline', 'of', 'its', 'predecessor', ',', 'but', 'added', 'dual', 'mmx/', '3', 'dnow', '!'], ['so', ',', 'skew', 'turned', 'around', 'and', 'sold', 'both', 'to', 'producers', 'eddie', 'mccarty', 'and', 'vern', 'elliot', '.'], ['in', '2', '0', '0', '6', ',', 'the', 'band', 'played', 'at', 'the', 'hultsfred', 'festival', ',', 'becoming', 'first', 'dansband', 'since', 'sven-ingvars', 'in', '1', '9', '9', '1', 'to', 'do', 'so', '.'], ['he', 'is', 'also', 'a', 'solo', 'artist', ',', 'and', 'tours', 'with', 'his', 'backing', 'band', ',', 'the', 'way', '.'], ['he', 'competed', 'in', 'the', 'men', \"'s\", '8', '0', '0', 'metres', 'at', 'the', '1', '9', '7', '2', 'summer', 'olympics', '.'], ['minamata', 'bay', 'is', 'a', 'bay', 'on', 'the', 'west', 'coast', 'of', 'kyūshū', 'island', ',', 'located', 'in', 'kumamoto', 'prefecture', ',', 'japan', '.'], ['typically', ',', 'they', 'are', 'cryptically', 'colored', 'and', 'rather', 'dark', ',', 'with', 'brownish-grey', 'hues', 'predominating', ';', 'in', 'many', ',', 'there', 'are', 'two', 'or', 'three', 'weak', 'wavy', 'bands', 'extending', 'across', 'the', 'wings', 'and', 'forming', 'a', 'rough', 'semicircle', 'when', 'the', 'moths', 'are', 'at', 'rest', '.'], ['neutron', 'diffraction', 'and', 'other', 'techniques', 'have', 'shown', 'that', 'a', 'magnetic', 'moment', 'of', 'around', '3', '.', '7', 'bohr', 'magnetons', 'resides', 'almost', 'solely', 'on', 'the', 'manganese', 'atoms', '.'], ['the', 'book', 'was', 'eventually', 'published', 'under', 'the', 'title', '``', 'the', 'bad', 'and', 'the', 'beautiful', ':', 'my', 'life', 'in', 'a', 'golden', 'age', 'of', 'film', 'music', \"''\", '.'], ['cremo', 'company', 'ice', 'cream', ',', 'caimans', ',', 'and', 'molasses', 'factory', 'operated', 'in', 'the', 'area', '.'], ['the', 'recipients', 'of', 'honours', 'are', 'displayed', 'here', 'as', 'they', 'were', 'styled', 'before', 'their', 'new', 'honour', ',', 'and', 'arranged', 'by', 'honour', ',', 'with', 'classes', '(', 'knight', ',', 'knight', 'grand', 'cross', ',', '``', 'etc', '.', \"''\", ')'], ['``', 'sminthurus', 'viridis', \"''\", ',', 'the', 'lucerne', 'flea', ',', 'has', 'been', 'shown', 'to', 'cause', 'severe', 'damage', 'to', 'agricultural', 'crops', ',', 'and', 'is', 'considered', 'as', 'a', 'pest', 'in', 'australia', '.'], ['with', 'barnett', \"'s\", 'relocation', 'to', 'los', 'angeles', ',', 'gretzky', \"'s\", 'arrival', 'in', 'a', 'major', 'us', 'market', 'took', 'his', 'profile', 'to', 'another', 'level', '.'], ['on', 'july', '1', '0', ',', '2', '0', '1', '9', ',', 'ting', 'mobile', 'announced', 'that', 'it', 'will', 'not', 'renew', 'its', 'network', 'agreement', 'with', 't-mobile', 'after', 'december', '1', '9', ',', '2', '0', '1', '9', ',', 'citing', 'uncertainties', 'over', 'its', 'proposed', 'merger', 'with', 'sprint', 'and', 'will', 'partner', 'with', 'verizon', '.'], ['in', 'songjiang', ',', 'communists', 'in', 'harbin', 'uncovered', 'a', 'nationalist', 'underground', 'intelligence', 'directly', 'controlled', 'by', 'the', 'bandits', 'and', 'the', 'bandit', 'chiefs', 'including', 'jiang', 'pengfei', '(', '姜朋飞', ')', ',', 'li', 'mingxin', '(', '李明信', ')', 'and', 'cui', 'dagang', '(', '崔大刚', ')', 'were', 'all', 'arrested', '.'], ['the', 'rest', 'of', 'the', 'canvas', 'consists', 'of', 'colorful', 'strings', 'stretched', 'vertically', 'from', 'top', 'to', 'bottom', ',', 'without', 'overlapping', 'the', 'pentagon', 'located', 'on', 'the', 'top', 'middle', 'portion', '.'], ['on', 'the', 'other', 'side', 'sat', 'representatives', 'of', 'the', 'posluns', 'family', ',', 'who', 'for', 'three', 'generations', 'had', 'been', 'involved', 'in', 'the', 'toronto', 'garment', 'industry', '.'], ['the', 'members', 'formed', 'the', 'sub', 'unit', 'called', 'the', 'sharehappi', 'from', 'sandaime', 'j', 'soul', 'brothers', 'and', 'released', 'the', 'digital', 'single', \"'share\", 'the', 'love', \"'\", 'as', 'a', 'commercial', 'song', 'for', 'the', 'endorsement', '.'], ['the', 'control', 'system', 'is', 'further', 'divided', 'into', 'two', 'service', 'brake', 'circuits', ',', 'the', 'parking', 'brake', 'circuit', ',', 'and', 'the', 'trailer', 'brake', 'circuit', '.'], ['this', 'species', 'can', 'be', 'distinguished', 'by', 'its', 'absence', 'of', 'a', 'pad', 'of', 'densely', 'distributed', 'setae', 'on', 'its', 'first', 'pereopod', ',', 'the', 'anterior', 'branchial', 'margin', 'which', 'bears', 'two', 'spines', ',', 'and', 'the', 'carpus', 'of', 'its', 'first', 'pereopod', 'carrying', 'only', 'two', 'spines', '.'], ['both', 'miniseries', 'were', 'written', 'by', 'television', 'series', 'executive', 'producer', 'and', 'writer', 'david', 'a.', 'goodman', ',', 'illustrated', 'by', 'david', 'cabeza', ',', 'and', 'colored', 'by', 'michael', 'atiyeh', '.'], ['intended', 'to', 'improve', 'code', 'readability', ',', 'colons', 'are', 'placed', 'within', 'the', 'selector', 'such', 'that', 'when', 'the', 'required', 'arguments', 'are', 'in', 'place', ',', 'the', 'expression', \"'s\", 'intent', 'is', 'unambiguous', ':'], ['it', 'was', 'consecrated', 'before', '1', '7', '4', '0', ',', 'but', 'the', 'building', \"'s\", 'current', 'architecture', 'dates', 'from', 'circa', '1', '9', '0', '0', '.'], ['ana', 'produced', 'a', 'small', 'storm', 'surge', 'along', 'the', 'coasts', 'of', 'northeastern', 'florida', ',', 'georgia', ',', 'and', 'the', 'carolinas', ',', 'peaking', 'at', 'near', 'south', 'of', 'myrtle', 'beach', ',', 'south', 'carolina', '.'], ['in', 'the', 'same', 'program', 'was', '[', '[', 'franz', 'schubert|schubert', ']', ']', \"'s\", '[', '[', 'symphony', 'no', '.'], ['military', 'service', 'members', 'receive', 'a', 'basic', 'allowance', 'where', 'they', 'can', 'choose', 'to', 'live', 'in', 'private', 'sector', 'housing', ',', 'or', 'privatized', 'housing', '.'], ['smith', 'also', 'was', 'runner', 'up', 'in', 'the', '2', '0', '2', '0', 'masters', '.'], ['the', 'original', 'estimated', 'cost', 'for', 'building', 'fallingwater', 'was', '$', '3', '5', ',', '0', '0', '0', '.'], ['on', 'his', 'three-year-old', 'debut', ',', 'dortmund', 'contested', 'the', 'grade', 'iii', 'robert', 'b.', 'lewis', 'stakes', 'at', 'santa', 'anita', 'on', 'february', '7', 'in', 'which', 'he', 'conceded', 'five', 'pounds', 'to', 'firing', 'line', '.'], ['hanlon', 'was', 'proprietor', 'and', 'owner', 'of', 'gordon', 'b.', 'hanlon', '&', 'amp', ';', 'company', ',', 'a', 'securities', 'broker', 'dealer', '.'], ['in', 'response', 'to', 'the', 'september', '1', '1', 'attacks', ',', 'president', 'george', 'w.', 'bush', 'created', 'a', 'war', 'cabinet', '.'], ['note', 'that', 'the', 'weak', 'conjecture', 'would', 'be', 'a', 'corollary', 'of', 'the', 'strong', 'conjecture', ':', 'if', 'is', 'a', 'sum', 'of', 'two', 'primes', ',', 'then', 'is', 'a', 'sum', 'of', 'three', 'primes', '.'], ['the', 'jtm', 'is', 'based', 'on', 'the', 'hayford', 'ellipsoid', 'adopted', 'by', 'the', 'iugg', 'in', '1', '9', '2', '4', '.'], ['the', 'marchers', 'were', 'finally', 'assisted', 'by', 'citizens', \"'\", 'groups', 'and', 'eventually', 'the', 'cavalry', '.'], ['in', '1', '9', '8', '3', ',', 'the', 'chicago', 'sting', 'of', 'the', 'north', 'american', 'soccer', 'league', 'drafted', 'fernandez', 'but', 'he', 'did', 'not', 'sign', 'with', 'them', '.'], ['thyagaraja', 'is', 'known', 'as', 'sundara', 'vitankar', 'ang', 'believed', 'to', 'perform', 'paarava', 'tharanga', 'natanam', '.'], ['after', 'ovulation', ',', 'during', 'the', 'luteal', 'phase', ',', 'the', 'egg', 'will', 'be', 'available', 'to', 'be', 'fertilized', 'by', 'sperm', '.'], ['in', '1', '7', '9', '6', 'the', 'ironworks', 'had', 'an', 'advertisement', 'for', 'a', 'new', 'teacher', 'and', 'in', 'it', ',', 'it', 'was', 'written', 'that', 'he', 'should', ':', '``', 'show', 'good', 'references', 'regarding', 'his', 'competence', 'and', 'knowledge', 'in', 'teaching', 'children', 'in', 'reading', ',', 'writing', 'and', 'math', '.', \"''\"], ['the', 'characteristic', 'length', 'scale', 'of', 'a', 'spin', 'foam', 'is', 'the', 'planck', 'length', ',', 'approximately', '1', '.', '6', '1', '6', '×', '1', '0', '−', '3', '5', 'm', ',', 'and', 'so', 'lengths', 'shorter', 'than', 'the', 'planck', 'length', 'are', 'not', 'physically', 'meaningful', 'in', 'lqg', '.'], ['in', '2', '0', '1', '6', ',', 'she', 'received', 'the', 'costume', 'designers', 'guild', 'lacoste', 'spotlight', 'award', ',', 'in', 'honour', 'of', 'an', '``', 'enduring', 'commitment', 'to', 'excellence', \"''\", 'and', 'her', '``', 'appreciation', 'for', 'the', 'artistry', 'of', 'costume', 'design', 'and', 'collaboration', 'with', 'the', 'costume', 'designers', '.', \"''\"], ['he', 'follows', 'her', '(', 'his', 'sister', ',', 'defying', 'the', 'warnings', ')', 'to', 'the', 'south', ',', 'where', 'they', 'spend', 'the', 'winter', '.'], ['when', 'bahram', 'goes', 'towards', 'the', 'mountain', 'to', 'check', 'upon', 'them', ',', 'firoud', 'seems', 'to', 'have', 'been', 'angered', 'towards', 'the', 'opposing', 'army', 'for', 'thinking', 'less', 'of', 'him', '.'], ['dela', 'peña', 'is', 'the', 'youngest', 'son', 'of', 'susan', 'chicote-dela', 'peña', 'and', 'of', 'former', 'mapuan', '/', 'san', 'miguel', 'pba', 'athlete', 'ricardo', 'dela', 'peña', '.'], ['king', 'dragutin', 'also', 'expanded', 'proceeds', 'to', 'the', 'monastery', 'and', 'land', 'or', 'metochion', 'income', '.'], ['the', 'idea', 'for', 'the', 'album', 'came', 'from', 'the', 'popular', 'closing', 'sequence', 'of', 'doonican', \"'s\", 'tv', 'show', ',', 'in', 'which', 'he', 'sang', 'a', 'song', 'while', 'seated', 'in', 'a', 'rocking', 'chair', '.'], ['these', 'companies', 'have', 'developed', 'hardware', 'like', 'the', 'anti', 'sleep', 'pilot', 'and', 'vigo', '.'], ['notable', 'is', 'the', 'ounce', 'scale', \"'s\", 'focus', 'on', 'the', 'social', 'and', 'emotional', 'development', 'of', 'infants', 'and', 'toddlers', 'and', 'the', 'involvement', 'of', 'families', 'in', 'this', 'assessment', '.'], ['when', 'johnson', 'first', 'ran', 'for', 'the', 'senate', 'in', '1', '9', '4', '1', ',', 'he', 'paid', 'a', 'large', 'sum', 'of', 'money', 'to', 'parr', 'to', 'obtain', 'the', 'valley', 'vote', '.'], ['the', 'classification', 'system', 'allows', 'shooters', 'to', 'compete', 'against', 'others', 'with', 'a', 'similar', 'level', 'of', 'function', '.'], ['i', 'do', \"n't\", 'mean', 'that', 'she', 'was', 'intending', 'to', '.'], ['generally', 'smartas', 'worship', 'the', 'supreme', 'in', 'one', 'of', 'six', 'forms', ':', 'ganesha', ',', 'shiva', ',', 'shakti', ',', 'vishnu', ',', 'surya', 'and', 'skanda', '.'], ['in', '2', '0', '0', '3', ',', 'he', 'moved', 'to', 'lead', 'on', 'the', 'team', 'where', 'they', 'won', 'the', 'silver', 'medal', 'at', 'the', '2', '0', '0', '3', 'ford', 'world', 'men', \"'s\", 'curling', 'championship', '.'], ['the', 'government', 'issued', 'decrees', 'preventing', 'court', 'cases', 'on', 'the', 'annulled', 'election', '.'], ['in', '2', '0', '0', '3', ',', 'he', 'became', 'the', 'honourable', 'sir', 'mark', 'thatcher', 'when', 'he', 'succeeded', 'to', 'the', 'hereditary', 'thatcher', 'baronetcy', 'awarded', 'to', 'his', 'father', 'in', '1', '9', '9', '0', '.'], ['carl', 'monk', ',', 'its', 'former', 'executive', 'director', ',', 'once', 'went', 'so', 'far', 'as', 'to', 'say', '``', 'these', 'rankings', 'are', 'a', 'misleading', 'and', 'deceptive', ',', 'profit-generating', 'commercial', 'enterprise', 'that', 'compromises', '``', 'u.s.', 'news', 'and', 'world', 'report', \"''\", \"'s\", 'journalistic', 'integrity', '.', \"''\"], ['in', 'the', 'lead', 'up', 'to', 'her', 'exit', ',', 'jasmine', 'bonds', 'with', 'jac', 'and', 'dryzek', 'described', 'their', 'relationship', 'as', '``', 'a', 'bit', 'up', 'and', 'down', '.', \"''\"], ['launched', 'on', '3', 'september', '1', '8', '0', '3', ',', 'she', 'was', 'completed', 'at', 'woolwich', '.'], ['the', 'stock-market', 'crash', 'of', '1', '9', 'october', '1', '9', '8', '7', 'damaged', 'confidence', 'in', 'the', 'new', 'zealand', 'economy', ',', 'which', 'went', 'into', 'a', 'prolonged', 'recession', 'from', 'december', 'of', 'that', 'year', ',', 'and', 'remained', 'so', 'until', 'june', '1', '9', '9', '1', '.'], ['this', 'placed', 'them', 'in', 'the', 'horatio', 'alger', 'rags-to-riches', 'american', 'cultural', 'mythos', '.'], ['reinforcing', 'rock', 'with', 'glue', 'is', 'the', 'most', 'widely', 'accepted', 'modification', 'to', 'natural', 'features', 'in', 'the', 'sport', 'climbing', 'world', '.'], ['ervin', 'was', 'also', 'a', 'staunch', 'opponent', 'of', 'the', 'immigration', 'and', 'nationality', 'act', 'of', '1', '9', '6', '5', 'which', 'abolished', 'nationality', 'quotas', 'beginning', 'in', '1', '9', '6', '8', '.'], ['it', 'received', '6', '%', 'of', 'the', 'vote', ',', 'winning', 'fifteen', 'seats', 'in', 'the', 'chamber', 'of', 'deputies', 'and', 'one', 'in', 'the', 'senate', ',', 'emerging', 'as', 'the', 'third-largest', 'bloc', 'in', 'parliament', '.'], ['``', 'absolute', 'loser', \"''\", 'received', 'generally', 'favorable', 'reviews', 'from', 'critics', '.'], ['the', 'software', 'can', 'be', 'licensed', 'or', 'subscribed', 'to', 'as', 'a', 'software', 'as', 'a', 'service', '(', 'saas', ')', 'solution', '.'], ['they', 'often', 'reviewed', 'other', 'vendor', \"'s\", 'products', 'or', 'services', 'which', 'was', 'in', 'their', 'area', 'of', 'expertise', '.'], ['with', 'its', 'oldest', 'coal-fired', 'unit', 'dating', 'back', 'to', '1', '9', '5', '8', ',', 'the', 'plant', 'was', 'ranked', '1', '2', 'th', 'on', 'the', 'united', 'states', 'list', 'of', 'dirtiest', 'power', 'plants', 'in', 'terms', 'of', 'sulphur', 'dioxide', 'emissions', 'per', 'megawatt-hour', 'of', 'electrical', 'energy', 'produced', 'from', 'coal', 'in', '2', '0', '0', '6', '.'], ['line', '7', '9', 'crosses', 'through', 'the', 'southern', 'parts', 'of', 'nordstrand', ',', 'providing', 'connections', 'with', 'the', 'ekeberg', 'line', ',', 'the', 'lambertseter', 'line', 'and', 'the', 'østensjø', 'line', ',', 'and', 'also', 'connects', 'holmlia', 'station', 'to', 'the', 'åsbråten', 'area', 'southwest', 'of', 'the', 'station', '.'], ['in', '1', '8', '1', '4', ',', 'danish', 'was', 'still', 'the', 'universal', 'written', 'language', 'in', 'norway', '.'], ['a', 'ten-episode', 'second', 'season', ',', 'or', '``', 'book', '2', '``', ',', 'titled', '``', 'the', 'last', 'kids', 'on', 'earth', 'and', 'the', 'zombie', 'parade', \"''\", ',', 'premiered', 'on', 'april', '1', '7', ',', '2', '0', '2', '0', '.'], ['although', 'type', 'c', 'and', 'c', '1', 'roundels', 'were', 'meant', 'to', 'be', 'in', 'use', 'by', 'july', '1', '9', '4', '2', 'some', 'spitfires', 'displayed', 'type', 'a', 'and', 'a', '1', 'roundels', 'as', 'late', 'as', 'october', ':'], ['it', 'is', 'also', 'planned', 'that', 'a', 'new', 'transfer', 'deck', 'will', 'be', 'built', ';', 'this', 'will', 'allow', 'passengers', 'to', 'change', 'between', 'the', 'proposed', 'new', 'manchester', 'independent', 'lines', 'platform', 'and', 'the', 'existing', 'crewe', 'station', '.'], ['the', 'last', 'time', 'she', 'performed', 'on', 'that', 'stage', 'was', '5', '0', 'years', 'ago', '.'], ['owing', 'variously', 'to', 'its', 'length', ',', 'its', 'labyrinthine', 'route', ',', 'and', 'the', 'difficulty', 'of', 'driving', 'through', 'a', 'bustling', 'city', ',', 'the', 'drive', 'remains', 'relatively', 'unpopular', 'with', 'tourists', 'and', 'locals', 'alike', '.'], ['the', 'transfer', 'was', 'finally', 'agreed', 'on', '1', '9', 'december', '2', '0', '0', '6', 'for', '€', '2', '0', '.', '4', 'million', '.'], ['``', 'hemispherica', 'is', 'a', 'perennial', 'tree', 'native', 'to', 'pakistan', '.'], ['the', 'term', 'presupposes', 'a', 'sexual', 'strategy', 'among', 'women', 'whereby', 'they', 'prefer', 'and', 'have', 'sex', 'with', 'alpha', 'males', ',', 'but', 'settle', 'for', 'less', 'attractive', 'beta', 'males', 'primarily', 'for', 'financial', 'purposes', 'as', 'a', 'secondary', 'option', '.'], ['the', 'original', 'concessionaire', 'was', 'impulsora', 'de', 'televisión', 'de', 'chihuahua', ',', 's.a.', 'at', 'the', 'time', ',', 'chihuahua', 'had', 'just', 'one', 'television', 'station', ',', 'xhfi-tv', 'channel', '5', ',', 'operated', 'by', 'telesistema', 'mexicano', '.'], ['humans', 'have', 'a', 'far', 'faster', 'and', 'more', 'accurate', 'throw', 'than', 'other', 'animals', '.'], ['he', 'returned', 'to', 'frankfurt', 'in', '1', '9', '9', '5', 'as', 'a', 'full', 'professor', 'for', 'instrumental', 'analytical', 'chemistry', '.'], ['while', 'the', 'traditional', 'resolution', 'uses', 'particle/anti-particle', 'pair', 'production', 'in', 'the', 'context', 'of', 'quantum', 'field', 'theory', '(', 'hansen', '1', '9', '8', '1', ')', ',', 'a', 'simpler', 'resolution', 'exists', 'that', 'substitutes', 'physical', 'pair', 'production', 'for', 'the', 'scattering', 'of', 'negative', 'energy', 'solutions', 'under', 'the', 'barrier', '(', 'alhaidari', '2', '0', '0', '9', ')', '.'], ['in', 'this', 'formula', ',', 'the', 'general', 'price', 'level', 'is', 'related', 'to', 'the', 'level', 'of', 'real', 'economic', 'activity', '(', '``', 'q', \"''\", ')', ',', 'the', 'quantity', 'of', 'money', '(', '``', 'm', \"''\", ')', 'and', 'the', 'velocity', 'of', 'money', '(', '``', 'v', \"''\", ')', '.'], ['he', 'was', 'elected', 'deputy', 'house', 'minority', 'leader', 'in', '1', '9', '9', '6', ',', 'and', 'served', 'in', 'that', 'capacity', 'until', '2', '0', '0', '7', '.'], ['the', 'equipment', 'and', 'tracks', 'of', 'the', 'system', 'was', 'severely', 'damaged', 'during', 'the', 'war', 'and', 'had', 'to', 'be', 'removed', '.'], ['the', 'cabinet', 'is', 'led', 'by', 'katrín', 'jakobsdóttir', 'of', 'the', 'left-green', 'movement', ',', 'who', 'serves', 'as', 'prime', 'minister', 'of', 'iceland', '.'], ['in', '2', '0', '0', '8', ',', 'she', 'received', 'the', 'santa', 'barbara', 'international', 'film', 'festival', 'modern', 'master', 'award', 'in', 'recognition', 'of', 'her', 'accomplishments', 'in', 'the', 'film', 'industry', '.'], ['it', 'first', 'appears', 'in', 'the', 'datable', 'epigraphic', 'record', 'in', 'germania', 'superior', '(', 'pfalz/alsace', ')', 'in', '8', '2', 'ad', '.'], ['there', 'are', 'many', 'cities', 'that', 'do', \"n't\", 'have', 'a', 'defined', 'livery', '.'], ['the', 'meredith', 'corporation', 'acquired', 'nearly', 'the', 'whole', 'us-based', 'products', 'of', 'gruner', '+', 'jahr', 'group', 'in', '2', '0', '0', '5', ',', 'except', 'of', 'some', 'youth-publications', '.'], ['they', 'compete', 'in', 'the', 'iii', 'liga', ',', 'the', 'fourth', 'division', 'of', 'polish', 'football', ',', 'and', 'play', 'their', 'home', 'matches', 'at', 'the', 'legia', 'training', 'center', 'in', 'książenice', ',', 'grodzisk', 'mazowiecki', 'commune', ',', 'masovian', 'voivodeship', '.'], ['the', 'poem', \"'s\", 'local', 'connection', 'was', 'recognised', 'with', 'the', 'creation', 'of', 'the', 'mulga', 'bill', 'bicycle', 'trail', ',', 'taking', 'in', 'many', 'of', 'the', 'mining', 'attractions', ',', 'historic', 'sites', 'and', 'modern', 'day', 'amenities', 'of', 'eaglehawk', '.'], ['next', 'to', 'the', 'tenchynska', 'tower', 'stood', 'the', '``', 'rurmush', \"''\", 'which', 'served', 'as', 'a', 'water', 'storage', 'tank', 'for', 'the', 'castle', '.'], ['the', 'swiss', 'lost', 'marc', 'rosset', 'to', 'a', 'broken', 'foot', 'in', 'the', 'opening', 'match', 'and', 'had', 'to', 'call', 'on', 'reserve', 'lorenzo', 'manta', 'to', 'replace', 'him', 'in', 'the', 'reverse', 'singles', '.'], ['the', 'new', 'law', 'was', 'passed', 'by', 'both', 'houses', 'and', 'signed', 'into', 'law', 'by', 'president', 'ronald', 'reagan', 'in', 'november', '1', '9', '8', '8', '.'], ['there', \"'s\", 'also', 'an', 'indoor', 'water', 'park', 'called', 'paradisbadet', ',', 'with', 'one', 'of', 'the', 'longest', 'water', 'slides', 'in', 'europe', '.'], ['kuryakin', 'also', 'inspired', 'the', 'surname', 'and', 'character', 'of', 'simon', 'illyan', 'in', 'lois', 'mcmaster', 'bujold', \"'s\", 'award-winning', 'vorkosigan', 'saga', 'science', 'fiction', 'series', '.'], ['the', 'tv', 'movie', 'will', 'air', 'on', 'december', '1', '7', ',', '2', '0', '1', '7', 'on', 'ard', '.'], ['george', 'w.', 'schmidt', 'was', 'a', 'german', 'professor', ',', 'who', ',', 'at', 'the', 'time', 'of', 'karl', 'schmidt', \"'s\", 'birth', ',', 'was', 'teaching', 'in', 'lake', 'forest', ',', 'illinois', '.'], ['the', 'chikkamagaluru', 'inscription', 'of', '5', '0', '0', 'ce', 'is', 'another', 'example', '.'], ['meanwhile', ',', 'he', 'traveled', 'throughout', 'the', 'eastern', 'united', 'states', 'preaching', 'and', 'seeking', 'funding', 'for', 'his', 'schools', '.'], ['jimmie', 'johnson', 'had', 'a', 'dominant', 'run', 'during', 'the', 'closing', 'laps', 'until', 'he', 'ran', 'out', 'of', 'fuel', '.'], ['this', 'timescale', 'is', 'derived', 'from', 'five', 'atomic', 'clocks', 'maintained', 'by', 'sirim', 'and', 'is', 'always', 'within', '0', '.', '9', 'seconds', 'of', 'the', 'legal', 'time', '.'], ['even', 'though', 'the', 'team', 'exited', 'the', 'playoffs', 'at', 'the', 'quarter-final', 'stage', ',', 'there', 'should', 'have', 'been', 'cause', 'for', 'optimism', 'for', 'the', 'upcoming', 'season', '.'], ['ormancık', 'is', 'a', 'village', 'in', 'anamur', 'district', 'of', 'mersin', 'province', ',', 'turkey', '.'], ['there', 'is', 'intensive', 'cooperation', 'between', 'the', 'united', 'nations', ',', 'unesco', 'and', 'blue', 'shield', 'international', 'on', 'the', 'protection', 'of', 'cultural', 'goods', '.'], ['the', 'akrofi-christaller', 'institute', 'of', 'theology', ',', 'mission', 'and', 'culture', 'is', 'a', 'postgraduate', 'research', 'and', 'training', 'institute', 'located', 'at', 'akropong', 'which', 'awards', 'its', 'own', 'degrees', '.'], ['there', 'were', 'seven', 'cautions', 'for', '3', '6', 'laps', 'and', 'the', 'race', 'lasted', 'three', 'hours', 'and', 'two', 'minutes', '.'], ['sumilao', 'had', 'the', 'lowest', 'population', 'in', 'the', 'census', 'year', '1', '9', '9', '0', 'and', 'second', 'lowest', 'in', '1', '9', '9', '5', ',', 'among', 'the', '2', '1', 'municipalities', '.'], ['there', ',', 'winter', 'met', 'pianist', 'and', 'organist', 'paul', 'halley', ',', 'who', 'would', 'become', 'a', 'performer', 'and', 'composer', 'for', 'the', 'paul', 'winter', 'consort', 'for', '2', '0', 'years', '.'], ['however', ',', 'the', 'first', 'store', 'eventually', 'closed', 'and', 'is', 'currently', 'the', 'site', 'of', 'another', 'supermarket', ',', 'as', 'of', '2', '0', '1', '4', '.'], ['the', 'achenes', 'germinate', 'only', 'under', 'light', ',', 'and', 'with', 'or', 'without', 'available', 'fluid', ',', 'but', 'the', 'period', 'of', 'their', 'germination', 'is', 'shorter', 'when', 'they', 'are', 'submersed', 'in', 'water', '.'], ['it', 'was', 'first', 'described', 'by', 'pekka', 't.', 'lehtinen', 'in', '1', '9', '8', '1', ',', 'and', 'is', 'found', 'on', 'sumatra', '.'], ['he', 'did', 'not', 'perform', 'well', 'in', 'elementary', 'school', ',', 'earning', 'poor', 'grades', 'in', 'math', 'and', 'physics', '.'], ['koufax', 'was', 'pitching', 'better', 'than', 'ever', ',', 'however', ',', 'so', 'he', 'ignored', 'the', 'problem', ',', 'hoping', 'that', 'the', 'condition', 'would', 'clear', 'up', '.'], ['on', 'return', 'from', 'cuba', 'she', 'had', 'a', 'full', 'passenger', 'list', 'and', 'cargo', 'manifest', ',', 'though', 'hampered', 'by', 'repair', 'problems', ',', 'controversies', 'amidst', 'the', 'officers', 'and', 'a', 'crew', 'shortchanged', 'on', 'wages', '.'], ['silhouette', 'seemed', 'to', 'be', 'wearing', 'a', 'variant', 'of', 'nightshade', \"'s\", 'old', 'costume', '(', 'or', 'perhaps', 'the', 'shadow', 'thief', \"'s\", ')', 'and', 'had', 'similar', 'powers', '.'], ['she', 'was', 'engaged', 'in', 'the', 'famous', 'theatre', 'company', '``', 'i', 'confidenti', \"''\", 'of', 'flaminio', 'scala', ',', 'which', 'toured', 'in', 'lucca', 'and', 'florence', 'under', 'the', 'patronage', 'of', 'giovanni', 'de', \"'\", 'medici', '.'], ['three', 'ambulances', 'were', 'trialed', 'at', 'stamford', ',', 'woodhall', 'spa', 'and', 'long', 'sutton', 'fire', 'stations', '.'], ['she', 'later', 'served', 'as', 'editor', 'of', '``', 'environment', 'probe', \"''\", ',', 'and', 'served', 'on', 'an', 'advisory', 'committee', 'to', 'the', 'canadian', 'broadcasting', 'corporation', 'on', 'its', 'coverage', 'of', 'agriculture', 'and', 'farming', 'issues', '.'], ['a', 'long-running', 'gag', 'on', 'the', 'show', 'was', 'never', 'to', 'reveal', 'the', 'character', \"'s\", 'name', ',', 'with', 'other', 'characters', 'referring', 'to', 'him', 'as', '``', 'comic', 'book', 'guy', \"''\", '.'], ['the', 'origin', 'of', 'the', 'modern', 'diocese', 'can', 'be', 'traced', 'to', '1', '8', '4', '0', 'when', 'the', '``', 'apostolic', 'vicariate', 'of', 'the', 'welsh', 'district', \"''\", 'was', 'created', 'out', 'the', '``', 'western', 'district', 'of', 'england', 'and', 'wales', \"''\", '.'], ['some', 'cleavage', 'products', 'that', 'result', 'from', 'vwf', 'production', 'are', 'also', 'secreted', 'but', 'probably', 'serve', 'no', 'function', '.'], ['a', 'party', 'went', 'ashore', 'to', 'get', 'water', ',', 'and', 'the', 'description', 'of', 'the', 'huge', 'lake', 'they', 'brought', 'back', 'afterwards', 'leaves', 'little', 'doubt', 'about', 'the', 'identification', '.'], ['horrocks', 'is', 'especially', 'known', 'for', 'her', 'documentaries', 'about', 'new', 'zealand', 'artists', 'and', 'writers', ',', 'including', 'artist', 'len', 'lye', ',', 'writer', 'albert', 'wendt', ',', 'poet', 'allen', 'curnow', ',', 'artist', 'john', 'reynolds', ',', 'playwright', 'roger', 'hall', ',', 'artist', 'tom', 'kreisler', ',', 'photographer', 'marti', 'friedlander', 'and', 'photographer', 'peter', 'peryer', '.'], ['in', '1', '9', '3', '5', ',', 'he', 'tied', 'for', '1', 'st-', '2', 'nd', 'with', 'erich', 'eliskases', 'in', 'vienna', '(', 'the', '1', '8', 'th', 'trebitsch', 'memorial', ')', '.'], ['panni', ',', 'founded', 'in', '2', '0', '1', '3', ',', 'has', 'been', 'playing', 'for', 'a', 'year', 'in', 'the', 'third', 'campania', 'category', '.'], ['in', 'the', 'united', 'states', ',', 'including', 'colorado', ',', 'most', 'civil', 'aviation', 'incidents', 'are', 'investigated', 'by', 'the', 'national', 'transportation', 'safety', 'board', '(', 'ntsb', ')', ',', 'as', 'well', 'as', 'the', 'colorado', 'bureau', 'of', 'investigation', '(', 'cbi', ')', '.'], ['in', '2', '0', '1', '9', ',', 'she', 'finished', 'in', '3', 'rd', 'place', 'in', 'the', 'london', 'marathon', '.'], ['tarlach', 'ó', 'huid', ',', 'editor', 'of', 'ira', 'newspaper', '``', 'war', 'news', \"''\", 'and', 'co-founder', 'of', 'the', 'irish', 'republican', 'radio', 'station', 'became', 'an', 'active', 'member', 'of', 'the', 'party', 'as', 'did', 'gearóid', 'ó', 'broin', ',', 'a', 'member', 'of', 'the', 'ira', 'army', 'council', '.'], ['and', 'very', 'importantly', ',', 'develop', 'a', 'business', 'model', 'and', 'deploy', 'a', 'visionary', 'commercial', 'team', 'that', 'helps', 'make', 'our', 'work', 'sustainable', '.', \"''\"], ['miss', 'world', 'philippines', 'is', 'the', 'annual', 'pageant', 'that', 'selects', 'representative', 'of', 'the', 'philippines', 'to', 'miss', 'world', 'pageant', '.'], ['this', 'prompts', 'hermione', 'to', 'suggest', 'founding', 'a', 'student', 'group', 'where', 'harry', 'would', 'teach', 'practical', 'defence', 'against', 'the', 'dark', 'arts', '.'], ['singer', 'kate', 'ceberano', 'and', 'her', 'partner', 'john-paul', 'collins', 'won', 'the', 'series', ',', 'defeating', 'radio', 'personality', 'fifi', 'box', 'and', 'her', 'partner', '.'], ['mackell', 'died', 'on', 'october', '1', '9', ',', '2', '0', '1', '5', '.'], ['the', 'telescope', 'equilibrium', 'temperature', 'was', 'then', 'around', ',', 'and', 'irac', 'continued', 'to', 'produce', 'valuable', 'images', 'at', 'those', 'wavelengths', 'as', 'the', '``', 'spitzer', 'warm', 'mission', \"''\", '.'], ['so', 'many', 'onions', 'were', 'shipped', 'to', 'chicago', 'in', 'order', 'to', 'depress', 'prices', 'that', 'there', 'were', 'onion', 'shortages', 'in', 'other', 'parts', 'of', 'the', 'united', 'states', '.'], ['the', 'cemetery', 'is', 'located', 'at', 'the', 'western', 'edge', 'of', 'the', 'city', 'of', 'göttingen', '.'], ['following', 'this', 'original', 'issuance', ',', 'the', 'afem', 'was', 'made', 'retroactive', 'to', '1', '9', '5', '8', 'and', 'issued', 'for', 'actions', 'in', 'lebanon', ',', 'taiwan', ',', 'republic', 'of', 'the', 'congo', ',', 'quemoy', 'and', 'matsu', ',', 'and', 'for', 'duty', 'in', 'berlin', 'between', '1', '9', '6', '1', 'and', '1', '9', '6', '3', '.'], ['after', '1', '8', '6', '7', ',', 'colonization', 'of', 'hungarians', 'was', 'intensified', ',', 'and', 'until', 'the', 'beginning', 'of', 'the', '2', '0', 'th', 'century', 'they', 'replaced', 'serbs', 'as', 'largest', 'ethnic', 'group', 'in', 'kula', '.'], ['orton', \"'s\", 'experiences', 'waging', 'environmental', 'campaigns', 'in', 'nova', 'scotia', 'may', 'also', 'have', 'led', 'him', 'to', 'adopt', 'the', 'central', 'principles', 'of', 'deep', 'ecology', '.'], ['for', 'example', ',', 'a', 'losing', 'quarter-finalist', 'would', 'be', 'seeded', 'below', 'a', 'losing', 'semi-finalist', ',', 'even', 'if', 'they', 'finished', 'above', 'them', 'in', 'the', 'regular', 'season', '.'], ['historically', ',', 'mullett', 'lake', 'has', 'been', 'recorded', 'as', 'mullet', 'lake', ',', 'mullet', \"'s\", 'lake', ',', 'and', 'mullett', \"'s\", 'lake', 'on', 'maps', 'and', 'documents', '.'], [')', ',', 'ranks', 'with', 'quite', 'different', 'names', 'are', 'attested', ',', 'seemingly', 'modelled', 'on', 'the', 'titles', 'of', 'local', 'authority', 'bureaucrats', '.'], ['since', 'the', '1', '9', '5', '0', 's', ',', 'the', 'tradition', 'has', 'mostly', 'disappeared', 'even', 'in', 'catholic', 'families', '.'], ['the', 'school', ',', 'convent', 'light', 'street', '(', 'malay', ':', 'smk', 'convent', 'lebuh', 'light', ')', ',', 'is', 'penang', \"'s\", 'oldest', 'girls', \"'\", 'school', 'and', 'has', 'occupied', 'its', 'current', 'site', 'along', 'light', 'street', 'near', 'historic', 'george', 'town', 'for', 'over', '1', '5', '0', 'years', '.'], ['the', 'by-election', 'in', 'east', 'toxteth', 'was', 'caused', 'by', 'the', 'resignation', 'on', '2', '7', 'october', '1', '9', '0', '2', 'of', 'the', 'sitting', 'conservative', 'mp', ',', 'augustus', 'frederick', 'warr', '.'], ['villoresi', 'was', 'critically', 'injured', 'while', 'testing', 'a', 'lancia', 'aurelia', 'near', 'rimini', ',', 'italy', 'in', 'april', '1', '9', '5', '4', '.'], ['here', 'a', 'new', 'town', 'has', 'grown', 'up', ',', 'well', 'built', 'and', 'paved', ',', 'with', 'a', 'convenient', 'harbour', '.'], ['he', 'is', 'buried', 'in', 'the', 'church', 'of', 'santa', 'croce', 'in', 'florence', '.'], ['in', '2', '0', '0', '7', ',', 'montgomery', 'county', ',', 'maryland', ',', 'approved', 'a', 'ban', 'on', 'partially', 'hydrogenated', 'oils', ',', 'becoming', 'the', 'first', 'county', 'in', 'the', 'nation', 'to', 'restrict', 'trans', 'fats', '.'], ['the', 'herbier', 'national', 'de', 'guinée', ',', 'the', 'national', 'herbarium', 'of', 'guinea', ',', 'is', 'also', 'housed', 'within', 'the', 'university', '.'], ['the', 'practice', 'is', 'believed', 'to', 'have', 'become', 'obsolete', 'in', 'great', 'britain', '.'], ['he', 'also', 'had', 'three', 'younger', 'siblings', ':', 'boris', ',', 'andrei', ',', 'and', 'elena', '.'], ['mycotoxins', 'in', 'general', 'can', 'either', 'stimulate', 'or', 'suppress', 'immune', 'responses', '.'], ['the', 'film', 'was', 'originally', 'released', 'by', 'universal', 'pictures', 'on', 'november', '2', '6', ',', '1', '9', '3', '4', ',', 'and', 'later', 're-issued', 'in', '1', '9', '3', '6', '.'], ['palestinians', 'deeply', 'resented', 'paying', 'taxes', 'on', 'their', 'business', 'and', 'commercial', 'activities', 'to', 'the', 'occupation', 'authority', 'without', 'receiving', 'the', 'same', 'benefits', 'israeli', 'taxpayers', 'had', 'in', 'return', '.'], ['a', 'few', 'years', 'later', ',', 'gilliard', 'described', 'alexei', 'as', 'tall', 'for', 'his', 'age', ',', 'with', '``', 'a', 'long', ',', 'finely', 'chiseled', 'face', ',', 'delicate', 'features', ',', 'auburn', 'hair', 'with', 'a', 'coppery', 'glint', ',', 'and', 'large', 'grey-blue', 'eyes', 'like', 'his', 'mother', '.', \"''\"], ['other', 'musicians', 'who', 'have', 'engaged', 'pérez', 'in', 'long-time', 'artistic', 'relationships', 'include', 'johnny', 'polanco', 'and', 'hector', 'cuevas', '.'], ['octavius', 'met', 'trahern', 'in', 'a', 'field', 'outside', 'winchester', 'where', 'they', 'fought', 'and', 'octavius', 'won', '.'], ['sutcliffe', 'also', 'produced', 'many', 'arrangements', 'of', 'folk', 'songs', 'and', 'christmas', 'carols', 'for', 'several', 'instruments', 'and', 'voices', '.'], ['the', 'bay', 'is', 'part', 'of', 'the', 'larger', 'shiranui', 'sea', 'which', 'is', 'sandwiched', 'between', 'the', 'coast', 'of', 'the', 'kyūshū', 'mainland', 'and', 'the', 'off-lying', 'islands', 'of', 'kumamoto', 'and', 'nagasaki', 'prefectures', '.'], ['``', 'sicut', 'dudum', \"''\", 'was', 'meant', 'to', 'reinforce', '``', 'creator', 'omnium', \"''\", ',', 'issued', 'the', 'previous', 'year', ',', 'condemning', 'portuguese', 'slave', 'raids', 'in', 'the', 'canary', 'islands', '.'], ['his', 'debut', 'ep', ',', '``', 'the', 'lighthouse', \"''\", ',', 'was', 'released', 'in', '2', '0', '1', '1', '.'], ['all', 'of', 'the', 'six', 'captured', 'defendants', 'were', 'found', 'guilty', ',', 'and', 'all', ',', 'except', 'cianetti', ',', 'were', 'sentenced', 'to', 'death', '.'], ['following', 'jishikou', 'east', 'road', 'north', 'for', 'a', 'block', ',', 'then', 'turning', 'west', 'on', 'panjiapao', 'hutong', ',', 'a', 'brief', 'northward', 'turn', 'at', 'dongzhong', 'street', 'brings', 'it', 'back', 'to', 'the', 'second', 'ring', 'road', 'via', 'fuhua', 'dasha', 'south', 'street', '.'], ['in', '1', '9', '4', '8', ',', '1', '3', 'field', 'survey', 'squadron', 'was', 'posted', 'to', 'egypt', 'and', 'its', 'personnel', 'were', 'absorbed', 'into', 'the', 'regiment', '.'], ['lawrence', 'manson', ',', 'arguing', 'for', 'the', 'hospital', 'and', 'other', 'original', 'defendants', 'as', 'petitioners', ',', 'was', 'joined', 'by', 'assistant', 'solicitor', 'general', 'richard', 'seamon', '.'], ['was', 'built', 'by', 'randall', '&', 'amp', ';', 'brent', 'at', 'rotherhithe', 'where', 'her', 'keel', 'was', 'laid', 'in', 'february', '1', '8', '0', '1', '.'], ['mcphee', 'also', 'worked', 'as', 'columnist', 'and', 'correspondent', 'to', 'the', '``', 'boston', 'herald', \"''\", ',', 'was', 'the', 'new', 'england', 'reporter', 'for', 'abc', 'news', ',', 'and', 'was', 'a', 'general', 'assignment', 'reporter', 'with', 'the', 'television', 'station', 'wcvb', '.'], ['lake', 'carmel', 'is', 'a', 'small', 'manmade', 'lake', 'located', 'in', 'the', 'town', 'of', 'kent', ',', 'in', 'putnam', 'county', ',', 'new', 'york', '.'], ['during', '2', '0', '0', '4', ',', 'india', 'imported', 'of', 'liquefied', 'natural', 'gas', '(', 'lng', ')', 'from', 'qatar', '.'], ['in', 'the', '1', '3', 'th', 'century', 'the', 'lords', 'of', 'riet', 'built', 'a', 'castle', 'in', 'the', 'area', 'of', 'the', 'present', 'protestant', 'churchyard', '.'], ['on', 'april', '4', ',', 'dortmund', 'was', 'stepped', 'up', 'in', 'class', 'and', 'distance', 'for', 'the', 'grade', '1', 'santa', 'anita', 'derby', 'over', 'nine', 'furlongs', 'and', 'started', '3', '/', '5', 'favorite', 'ahead', 'of', 'prospect', 'park', 'and', 'four', 'others', '.'], ['riding', ',', 'oil-wrestling', ',', 'aba-wrestling', 'and', 'other', 'traditional', 'sports', 'were', 'assembled', 'in', 'the', 'same', 'federation', 'under', 'alper', 'yazoğlu', '.'], ['in', 'july', '2', '0', '1', '3', ',', 'stafford', 'appeared', 'on', 'the', 'cover', 'of', '``', 'soap', 'opera', 'digest', \"''\", 'which', 'was', 'dubbed', '``', 'her', 'final', 'interview', '.', \"''\"], ['since', 'construction', 'of', 'the', 'dam', ',', 'the', 'lake', 'has', 'been', 'nearly', 'empty', 'at', 'least', '2', '0', 'times', ',', 'and', 'has', 'been', 'full', 'only', 'three', 'times', '.'], ['after', 'the', 'french', 'revolution', ',', 'the', 'left', 'bank', 'of', 'the', 'rhine', 'was', 'conquered', 'during', 'the', 'war', 'of', 'the', 'first', 'coalition', 'and', 'annexed', 'by', 'france', 'in', '1', '7', '9', '3', '.'], ['schools', 'are', 'also', 'awarded', 'for', 'receiving', 'the', 'highest', 'point-average', 'in', 'each', 'grade', 'level', 'as', 'long', 'as', 'at', 'least', '1', '0', 'students', 'had', 'participated', 'from', 'that', 'school', '.'], ['the', 'iww', 'assumed', 'a', 'prominent', 'role', 'in', '1', '9', '0', '6', 'and', '1', '9', '0', '7', ',', 'in', 'the', 'gold-mining', 'boom', 'town', 'of', 'goldfield', ',', 'nevada', '.'], ['he', 'joined', 'the', 'army', 'in', '1', '9', '1', '2', 'and', 'served', 'as', 'an', 'officer', 'in', 'the', 'second', 'battalion', 'of', 'the', 'grenadier', 'guards', '.'], ['``', 'we', 'ask', 'that', 'the', 'government', 'shut', 'it', 'down', 'with', 'immediate', 'effect', 'or', 'we', 'will', 'descend', 'on', 'its', 'officials', \"''\", '.'], ['only', 'the', 'irac', 'instrument', 'remained', 'in', 'use', ',', 'and', 'only', 'at', 'the', 'two', 'shorter', 'wavelength', 'bands', '(', '3', '.', '6', 'μm', 'and', '4', '.', '5', 'μm', ')', '.'], ['as', 'international', 'consultant', 'he', 'has', 'undertaken', 'numerous', 'consultancies', 'in', 'more', 'than', '5', '0', 'countries', 'and', 'has', 'worked', 'with', 'organizations', 'such', 'as', 'unesco', ',', 'world', 'health', 'organization', ',', 'undp', ',', 'ilo', ',', 'gtz/dse', 'of', 'germany', 'and', 'the', 'british', 'council', '.'], ['inter-national', 'tour', 'that', 'took', 'the', 'troupe', 'across', 'the', 'us', ',', 'canada', 'and', 'mexico', '.'], ['café', 'landtmann', 'is', 'a', 'traditional', 'viennese', 'café', 'located', 'on', 'the', 'ringstraße', 'at', 'the', 'corner', 'of', 'lowelstraße', '2', '2', 'in', 'the', 'innere', 'stadt', 'first', 'district', 'in', 'vienna', ',', 'austria', '.'], ['carhartt', 'had', 'total', 'sales', 'of', '$', '9', '2', 'million', 'in', '1', '9', '9', '0', '.'], ['particular', 'care', 'to', 'maintain', 'coordinated', 'flight', 'is', 'required', 'by', 'the', 'pilot', 'when', 'entering', 'and', 'leaving', 'turns', '.'], ['bruynseels', 'has', 'set', 'her', 'platform', 'on', 'taking', 'on', 'the', 'broken', 'political', 'system', 'in', 'romania', 'that', 'she', 'argues', 'is', 'working', 'against', 'the', 'interests', 'of', 'citizens', '.'], ['the', 'station', 'is', 'currently', 'owned', 'by', 'power', 'radio', 'corporation', '.'], ['however', ',', 'the', 'color', 'field', 'lines', 'do', 'not', 'arc', 'outwards', 'from', 'one', 'charge', 'to', 'another', 'as', 'much', ',', 'because', 'they', 'are', 'pulled', 'together', 'tightly', 'by', 'gluons', '(', 'within', '1', 'fm', ')', '.'], ['the', 'decision', 'is', 'significant', 'because', 'it', 'demonstrated', 'that', '``', 'agencies', 'can', 'not', 'use', 'cost', 'as', 'an', 'excuse', \"''\", 'for', 'not', 'complying', 'with', 'section', '7', '(', 'a', ')', '(', '2', ')', '.'], ['the', 'matter', 'is', 'not', 'helped', 'by', 'the', 'fact', 'al-maqrizi', 'says', 'the', 'emperor', 'who', 'ruled', 'at', 'the', 'time', 'of', 'haqq', 'ad-din', \"'s\", 'death', 'was', 'dawit', 'i', ',', 'while', 'ethiopian', 'sources', 'state', 'that', 'the', 'sultan', \"'s\", 'reign', 'began', 'in', 'the', 'reign', 'of', 'emperor', 'newaya', 'krestos', '.'], ['the', 'ninth', ',', '1', '6', '7', 'years', 'after', 'methuselah', ',', 'was', 'that', 'of', 'lamech', 'begotten', 'of', 'methuselah', '.'], ['the', 'tour', 'became', 'an', 'international', 'success', ',', 'with', 'tickets', 'selling', 'out', 'and', 'ranking', '1', '6', 'th', 'in', 'pollstar', \"'s\", '``', '2', '0', '1', '1', 'top', '2', '5', 'worldwide', 'tours', \"''\", ',', 'earning', 'over', '$', '5', '9', '.', '5', 'million', '.'], ['fulton', ',', 'wounded', 'in', 'the', 'stomach', 'and', 'taken', 'prisoner', ',', 'would', 'die', 'in', 'captivity', 'two', 'months', 'later', '.'], ['in', '1', '9', '0', '5', ',', 'he', 'acted', 'as', 'a', 'clerk', 'for', 'akàrígbò', 'oyebajo', 'torungbuwa', '.'], ['they', 'can', 'be', 'differentiated', 'from', 'other', 'species', 'of', '``', 'scylla', \"''\", 'by', 'having', 'blunted', 'spines', 'on', 'the', 'dorsal', 'distal', 'corner', 'of', 'the', 'palm', '(', 'propodus', ')', 'of', 'the', 'claw', ',', 'and', 'by', 'the', 'rounded', 'frontal', 'lobe', 'spines', 'with', 'shallow', 'separations', 'in', 'between', 'the', 'eyes', '.'], ['it', 'also', 'made', 'its', 'scheduled', 'route', 'network', 'complementary', 'to', 'air', 'france', 'and', 'air', 'inter', '.'], ['the', 'party', 'who', 'did', 'so', ',', 'however', ',', 'whether', 'litigant', 'or', 'champion', ',', 'was', 'punished', 'with', 'outlawry', '.'], ['in', 'these', 'states', ',', '2', '2', ',', 'it', 'is', 'possible', 'to', 'face', 'felony', 'charges', 'despite', 'not', 'knowing', 'the', 'age', 'of', 'the', 'other', 'person', ',', 'or', 'even', 'if', 'the', 'minor', 'presented', 'identification', 'showing', 'an', 'age', 'of', 'eighteen', 'or', 'higher', '.'], ['this', 'squadron', 'deployed', 'to', 'northern', 'ireland', 'in', '1', '9', '7', '3', 'as', 'an', 'infantry', 'unit', 'and', 'in', '1', '9', '9', '5', ',', 'the', 'squadron', 'moved', 'to', 'ayrshire', 'barracks', ',', 'mönchengladbach', 'before', 'it', 'was', 'eventually', 'reunited', 'with', 'the', 'regiment', 'in', 'july', '2', '0', '1', '3', '.'], ['yuko', 'gordon', '(', 'née', 'hasegawa', ';', ';', 'born', '2', '3', 'february', '1', '9', '5', '1', ')', 'is', 'a', 'japan-born', 'hong', 'kong', 'long-distance', 'runner', 'who', 'competed', 'mainly', 'in', 'the', 'marathon', '.'], ['is', 'a', 'japanese', 'koryū', 'martial', 'art', 'founded', 'in', 'the', 'late', 'muromachi', 'period', 'c.', '1', '5', '5', '0', 'by', 'yamamoto', 'hisaya', 'masakatsu', '.'], ['the', 'tunnel', 'hit', 'problems', 'during', 'construction', 'which', 'were', 'never', 'satisfactorily', 'resolved', 'throughout', 'its', 'life', '.'], ['follow-up', 'can', 'be', 'provided', 'up', 'to', 'magnitude', '2', '1', ',', 'occasionally', 'to', '2', '2', 'on', 'the', 'best', 'nights', '.'], ['the', 'k', '4', 'use', 'subtractive', 'synthesis', 'based', 'on', 'sampled', 'waveforms', ',', 'the', 'k', '1', 'and', 'k', '5', 'are', 'additive', 'synthesizers', '.'], ['kew', ',', 'jointly', 'with', 'the', 'forestry', 'commission', ',', 'founded', 'bedgebury', 'national', 'pinetum', 'in', 'kent', 'in', '1', '9', '2', '3', ',', 'specialising', 'in', 'growing', 'conifers', '.'], ['it', 'was', 'a', 'short-lived', 'recovery', ';', 'he', 'died', 'of', 'tuberculosis', 'not', 'long', 'afterwards', '.'], ['shiner', 'acknowledged', 'that', 'he', 'knew', 'both', 'alexander', 'shepherd', 'and', 'his', 'father', 'and', 'that', 'he', 'believed', 'them', 'to', 'be', 'honest', 'men', '.'], ['the', 'grey', 'petrel', '(', '``', 'procellaria', 'cinerea', \"''\", ')', ',', 'also', 'called', 'the', 'brown', 'petrel', ',', 'pediunker', 'or', 'grey', 'shearwater', 'is', 'a', 'species', 'of', 'seabird', 'in', 'the', 'procellariidae', ',', 'or', 'petrel', 'family', '.'], ['almendárez', 'began', 'working', 'in', 'radio', 'at', 'age', '1', '5', '.'], ['this', 'was', 'the', 'customary', 'national', 'racing', 'colour', 'of', 'italy', 'as', 'recommended', 'between', 'the', 'world', 'wars', 'by', 'the', 'organisations', 'that', 'later', 'became', 'the', 'fia', '.'], ['the', 'first', 'signals', 'from', 'the', 'satellite', 'were', 'received', 'one', 'hour', 'later', ',', 'at', '0', '0', ':', '4', '6', 'utc', 'on', '1', '5', 'august', '2', '0', '0', '7', '.'], ['yugh', '(', 'yug', ')', 'is', 'a', 'yeniseian', 'language', ',', 'closely', 'related', 'to', 'ket', ',', 'formerly', 'spoken', 'by', 'the', 'yugh', 'people', ',', 'one', 'of', 'the', 'southern', 'groups', 'along', 'the', 'yenisei', 'river', 'in', 'central', 'siberia', '.'], ['the', 'pole', 'position', 'was', 'awarded', 'to', 'the', 'defending', 'winston', 'cup', 'champion', 'while', 'the', 'rest', 'of', 'the', 'field', 'was', 'determined', 'by', 'the', 'total', 'number', 'of', 'wins', 'from', 'last', 'season', ',', 'with', 'driver', \"'s\", 'points', 'used', 'as', 'the', 'tiebreaker', '.'], ['brohm', 'was', 'also', 'voted', 'the', 'mvp', 'of', 'his', 'baseball', 'team', 'his', 'senior', 'year', '.'], ['many', 'churches', 'and', 'monasteries', 'were', 'founded', 'in', 'this', 'era', ',', 'particularly', 'in', 'saxony-anhalt', '.'], ['the', 'existing', 'capacity', 'was', 'insufficient', ',', 'therefore', 'a', 'second', 'plant', 'was', 'constructed', 'and', 'opened', 'in', '1', '9', '4', '1', 'in', 'thondorf', ',', 'graz', '.'], ['in', 'the', '1', '8', '5', '6', 'session', 'of', 'parliament', ',', 'the', 'north', 'western', 'railway', '(', 'a', 'small', 'company', 'unconnected', 'with', 'the', 'london', 'and', 'north', 'western', 'railway', ')', 'was', 'applying', 'for', 'running', 'powers', 'over', 'part', 'of', 'the', 'lnwr', '.'], ['after', 'returning', 'to', 'central', 'city', ',', 'he', 'gets', 'struck', 'by', 'lightning', 'which', 'puts', 'him', 'in', 'a', 'nine-month', 'coma', 'and', 'becomes', 'the', 'flash', '.'], ['the', 'transmitter', \"'s\", 'power', 'was', 'originally', '6', '0', 'kw', 'but', 'after', 'the', 'new', 'tower', 'was', 'built', 'in', '1', '9', '6', '2', 'this', 'was', 'increased', 'to', '4', '0', '0', 'kw', '.'], ['from', '2', '0', '1', '1', '-', '2', '0', '1', '2', 'he', 'was', 'a', 'political/coalitions', 'intern', 'with', 'the', 'mitt', 'romney', '2', '0', '1', '2', 'presidential', 'campaign', 'and', 'then', 'served', 'as', 'director', 'of', 'the', 'kennedy', 'political', 'union', 'lecture', 'series', 'until', '2', '0', '1', '4', '.'], ['after', 'winning', 'against', 'izviđač', 'ljubuški', 'ciudad', 'completed', 'their', 'group', 'stage', 'undefeated', 'with', 'a', 'win', 'against', 'kif', 'kolding', 'entering', 'the', 'quarter-finals', 'of', 'the', 'ehf', 'champions', 'league', '.'], ['alder', 'was', 'living', 'in', 'the', 'indian', 'village', 'of', 'mack-a-chack', 'when', 'it', 'was', 'destroyed', 'by', 'benjamin', 'logan', 'during', 'his', 'raid', 'into', 'ohio', 'country', 'in', '1', '7', '8', '6', ',', 'and', 'he', 'accompanied', 'the', 'indians', 'on', 'raids', 'into', 'kentucky', 'to', 'steal', 'horses', 'from', 'white', 'settlers', '.'], ['after', 'winning', 'the', '1', '9', '9', '3', 'ka', 'hīmeni', \"'ana\", 'competition', ',', 'lee', 'recorded', 'his', 'first', 'cd', ',', '``', 'nahenahe', \"''\", 'with', 'the', 'kanile', \"'\", 'a', 'collection', ',', 'which', 'included', 'guitarist', 'brian', 'mersberg', 'and', 'jay', 'kauka', 'on', 'upright', 'bass', '.'], ['el', 'zapotal', 'is', 'an', 'archeological', 'site', 'which', 'was', 'discovered', 'in', '1', '9', '7', '1', 'in', 'a', 'region', 'known', 'at', 'mixtequlla', '(', 'between', 'the', 'blanco', 'and', 'papaloapan', 'rivers', ')', '.'], ['allen', 'blickle', 'and', 'matt', 'maggioni', 'each', 'suffered', 'fractured', 'vertebrae', '.'], ['the', 'rectangular', 'structure', 'of', 'a', 'block', 'element', 'is', 'often', 'referred', 'to', 'as', 'the', ',', 'and', 'is', 'made', 'up', 'of', 'several', 'parts', '.'], ['varying', 'reports', 'indicate', 'that', 'the', 'firm', 'is', 'based', 'in', 'either', 'nevada', 'or', 'orlando', ',', 'florida', '.'], ['the', 'following', 'year', 'he', 'was', 'posted', 'to', 'the', 'chemical', 'warfare', 'experimental', 'station', 'at', 'porton', 'down', 'in', 'wiltshire', ',', 'where', 'he', 'spent', 'five', 'years', 'studying', 'air', 'motion', 'in', 'the', 'boundary', 'layer', '(', 'the', 'first', 'few', '1', '0', '0', 'metres', 'above', 'the', 'earth', \"'s\", 'surface', ')', '.'], ['this', 'was', 'shown', 'on', 'the', '1', '9', '1', '4', 'edition', 'of', 'the', 'six-inch', 'ordnance', 'survey', 'map', 'and', 'was', 'still', 'shown', 'on', 'later', 'six-inch', 'maps', 'up', 'to', 'the', '1', '9', '7', '0', 's', '.'], ['from', '8', 'august', '2', '0', '1', '2', 'to', '1', '6', 'february', '2', '0', '1', '5', ',', 'soares', 'was', 'vice', 'minister', 'of', 'basic/primary', 'education', 'under', 'prime', 'minister', 'xanana', 'gusmão', 'in', 'the', 'v', 'constitutional', 'government', 'of', 'east', 'timor', '.'], ['park', 'was', 'well', 'known', 'for', 'her', 'strict', 'adherence', 'to', 'political', 'promises', '.'], ['scouts', 'from', 'all', 'over', 'derbyshire', 'marked', 'the', 'centenary', 'of', 'scouting', 'in', 'august', '2', '0', '0', '7', 'at', 'sunrise', 'ceremonies', 'renewing', 'their', 'scout', 'promise', '.'], ['in', '2', '0', '0', '5', ',', 'tantulidae', 'was', 'classified', 'as', 'the', 'only', 'family', 'within', 'the', 'superfamily', 'hedylopsoidea', 'in', 'the', 'taxonomy', 'of', 'bouchet', '&', 'amp', ';', 'rocroi', '.'], ['it', 'was', 'also', 'the', 'first', 'ufc', 'event', 'to', 'be', 'held', 'outdoors', 'in', 'an', 'open-air', 'arena', '.'], ['his', 'mother', 'ran', 'her', 'own', 'dressmaking', 'shop', ',', 'and', 'his', 'brother', 'charles', 'sold', 'newspapers', '.'], ['the', 'person', 'on', 'the', 'telephone', 'hears', 'all', 'relevant', 'feeds', ',', 'usually', 'an', 'identical', 'mix', 'to', 'that', 'of', 'the', 'master', 'bus', ',', 'including', 'the', 'dj', \"'s\", 'mic', 'feed', ',', 'except', 'that', 'the', 'caller', 'does', 'not', 'hear', 'their', 'own', 'voice', '.'], ['for', 'this', 'reason', ',', 'folivorous', 'animals', 'tend', 'to', 'have', 'long', 'digestive', 'tracts', 'and', 'slow', 'metabolisms', '.'], ['in', '1', '9', '9', '3', ',', 'stop-motion', 'animators', 'working', 'on', 'the', 'realistic', 'dinosaurs', 'of', 'steven', 'spielberg', \"'s\", '``', 'jurassic', 'park', \"''\", 'were', 'retrained', 'in', 'the', 'use', 'of', 'computer', 'input', 'devices', '.'], ['some', 'modern', 'authors', 'also', 'make', 'him', 'a', 'student', 'of', 'abū', 'ʿalī', 'ʿīsā', 'ibn', 'zurʿa', '.'], ['in', 'attempts', 'to', 'grow', 'the', 'industry', ',', 'they', 'also', 'support', 'and', 'sponsor', 'events', 'by', 'fashion', 'organizations', 'in', 'malawi', '.'], ['pact', 'has', 'produced', 'a', 'documentary', 'entitled', '``', 'victims', 'of', 'another', 'war', \"''\", 'that', 'examines', 'the', 'damaging', 'impact', 'on', 'three', 'adults', 'of', 'their', 'abduction', 'as', 'children', '.'], ['note', 'that', 'the', 'species/subspecies', 'status', 'of', 'some', 'of', 'the', 'above', 'taxa', 'is', 'unclear', 'and', 'differs', 'between', 'sources', '.'], ['in', '2', '0', '1', '5', ',', 'he', 'authored', 'a', 'report', 'about', 'the', 'future', 'of', 'the', 'école', 'polytechnique', 'for', 'the', 'french', 'government', '.'], ['the', 'individualistic', 'view', 'of', 'self', 'involves', 'people', \"'s\", 'perception', 'of', 'themselves', 'as', 'a', 'stand-alone', 'individual', '.'], ['he', 'also', 'became', 'a', 'member', 'of', 'the', 'sdap', 'in', '1', '9', '1', '4', '.'], ['the', 'incident', 'is', 'often', 'referred', 'to', 'as', '``', '1', '0', '.', '2', '6', '``', 'or', 'the', '``', '1', '0', '.', '2', '6', 'incident', \"''\", 'in', 'south', 'korea', '.'], ['death', 'of', 'the', 'husband', ')', 'for', 'inclusion', 'by', 'the', 'other', 'state', 'parties', '.'], ['the', 'following', 'day', 'the', 'union', 'forces', 'were', 'pulled', 'off', 'the', 'island', '.'], ['at', 'fox', 'that', 'same', 'year', ',', 'she', 'appeared', 'in', 'director', 'allan', 'dwan', \"'s\", 'now', 'lost', 'romantic', 'adventure', '``', 'the', 'far', 'call', \"''\", 'opposite', 'charles', 'morton', '.'], ['the', 'clips', 'includes', 'some', 'of', 'the', 'major', 'parts', 'from', 'the', 'walt', 'disney', 'pictures', 'film', '``', 'ice', 'princess', \"''\", ',', 'intertwined', 'with', 'parts', 'containing', 'aly', '&', 'amp', ';', 'aj', '.'], ['in', '2', '0', '0', '8', ',', 'after', 'an', 'extensive', 'national', 'search', 'the', 'district', 'appointed', 'its', 'current', 'superintendent', 'dr.', 'anna', 'hunderfund', 'beginning', 'july', '1', '.'], ['he', 'is', 'also', 'notable', 'for', 'his', '2', '0', '1', '5', 'biography', 'of', 'musician', 'robert', 'wyatt', ',', 'a', 'book', 'described', 'in', 'the', '``', 'london', 'review', 'of', 'books', \"''\", 'as', '``', 'fascinating', \"''\", '.'], ['chlorites', 'tend', 'to', 'decompose', 'rapidly', ',', 'some', 'even', 'explosively', ',', 'upon', 'heating', '.'], ['thomas', 'bradshaw', 'collection', 'and', 'the', 'state', 'library', 'of', 'south', 'australia', 'in', 'the', 'vernon', 'smith', 'collection', '(', 'this', 'collection', 'holds', 'copies', 'that', 'taylor', 'purchased', 'from', 'bradshaw', 'and', 'were', 'later', 'donated', 'by', 'her', 'nephew', ')', '.'], ['at', 'the', 'southern', 'walls', 'closer', 'to', 'the', 'white', 'tower', '(', 'between', 'tenchynska', 'and', 'white', 'towers', ')', 'were', 'a', 'kitchen', 'and', 'a', 'bakery', '.'], ['martin', 'and', 'son', 'started', 'collaborating', 'with', 'educators', 'at', 'west', 'de', 'pere', 'high', 'school', 'to', 'offer', 'educational', 'opportunities', 'for', 'high', 'schoolers', 'interested', 'in', 'exploring', 'the', 'flooring', 'trades', '.'], ['more', 'precise', ',', 'let', '``', 'm', \"''\", ',', '``', 'n', \"''\", 'be', 'left', '``', 'r', \"''\", '-modules', '.'], ['billionaire', 'virgin', 'group', 'founder', 'richard', 'branson', 'praised', 'waititi', \"'s\", 'actions', ',', 'describing', 'the', 'rule', 'around', 'neckties', 'as', '``', 'archaic', '.', \"''\"], ['this', 'was', 'due', 'to', 'his', 'attendance', 'as', 'an', 'honorary', 'pallbearer', 'at', 'the', 'funeral', 'of', 'group', 'member', 'proof', '.'], ['the', 'siting', 'of', 'parliament', 'house', 'had', 'a', 'pronounced', 'effect', 'on', 'the', 'built', 'environment', 'around', 'lower', 'george', 'street', '.'], ['in', 'february', '1', '9', '4', '6', ',', 'the', 'unit', 'returned', 'to', 'the', 'united', 'states', 'where', 'it', 'was', 'disbanded', 'at', 'fort', 'dix', ',', 'new', 'jersey', '.'], ['the', 'basement', 'membrane', 'is', 'important', 'for', 'maintaining', 'tissue', 'organization', ',', 'providing', 'structural', 'support', 'for', 'cells', ',', 'and', 'influencing', 'cell', 'signaling', 'and', 'polarity', '.'], ['the', 'company', \"'s\", 'website', 'was', 'taken', 'down', 'after', 'the', 'incident', ',', 'but', 'before', 'its', 'removal', 'the', 'website', 'described', 'the', 'firm', 'as', 'specializing', 'in', '``', 'loss', 'and', 'risk', 'management', '.', \"''\"], ['in', '2', '0', '0', '8', ',', 'the', 'mine', 'accounted', 'for', '6', '%', 'of', 'the', 'company', \"'s\", 'overall', 'annual', 'gold', 'production', 'and', 'employed', 'close', 'to', '3', ',', '2', '0', '0', 'staff', '.'], ['the', 'common', 'grass', 'blue', 'is', 'often', 'misidentified', 'as', 'the', 'lesser', 'grass', 'blue', ',', '``', 'zizina', 'otis', \"''\", '.'], ['hannigan', 'said', 'in', '2', '0', '1', '1', 'that', 'population', 'growth', 'during', 'the', 'celtic', 'tiger', 'years', 'was', 'more', 'dramatic', 'in', 'meath', 'than', 'elsewhere', 'in', 'ireland', 'and', 'that', 'this', 'was', 'having', 'a', 'profound', 'effect', 'on', 'the', 'county', \"'s\", 'education', 'system', '.'], ['electrofusion', 'is', 'a', 'method', 'of', 'joining', 'hdpe', 'and', 'other', 'plastic', 'pipes', 'with', 'special', 'fittings', 'that', 'have', 'built-in', 'resistive', 'wire', 'which', 'is', 'used', 'to', 'weld', 'the', 'joint', 'together', '.'], ['for', 'someone', 'who', 'held', 'high', 'rank', ',', 'cope', \"'s\", 'background', 'is', 'unusually', 'obscure', ',', 'and', 'for', 'many', 'years', 'biographies', 'referred', 'to', 'his', 'parentage', 'as', 'unknown', '.'], ['its', 'focus', 'is', 'wildlife', 'and', 'habitat', 'conservation', 'within', 'and', 'outside', 'of', 'protected', 'areas', ',', 'adopting', 'an', 'integrated', 'approach', 'which', 'includes', 'community', 'development', 'and', 'environmental', 'education', '.'], ['the', 'camp', 'receives', 'a', 'large', 'group', 'of', 'jewish', 'prisoners', ',', 'including', 'several', 'children', '.'], ['it', 'was', 'created', 'in', '1', '9', '6', '6', 'by', 'the', 'tunisian', 'minister', 'of', 'culture', 'to', 'showcase', 'films', 'from', 'the', 'maghreb', ',', 'africa', 'and', 'the', 'middle', 'east', '.'], ['victory', 'in', 'a', 'by-election', 'in', 'may', '2', '0', '0', '6', 'saw', 'the', 'liberal', 'democrat', 'party', 'gain', 'control', 'of', 'the', 'council', '.'], ['the', 'main', 'terminal', 'building', 'is', 'now', 'used', 'for', 'office', 'space', 'while', 'the', 'express', 'depot', 'is', 'used', 'as', 'a', 'meeting', 'venue', 'by', 'a', 'local', 'caterer', '.'], ['he', 'was', 'born', 'in', 'rognan', 'in', 'the', 'municipality', 'of', 'saltdal', 'in', 'norway', '.'], ['in', '1', '9', '7', '2', 'he', 'played', 'six', 'games', 'and', 'scored', '1', '4', 'goals', 'on', 'the', 'olympic', 'games', ',', 'helping', 'his', 'team', 'to', 'reach', 'again', 'the', 'eighth', 'place', '.'], ['gilvey', ',', 'john', 'anthony', ',', '``', 'before', 'the', 'parade', 'passes', 'by', ':', 'gower', 'champion', 'and', 'the', 'glorious', 'american', 'musical', \"''\", '.'], ['this', 'goal', 'soon', 'proved', 'to', 'be', 'an', 'elusive', 'one', ':', 'even', 'if', 'the', 'results', 'could', ',', 'on', 'occasion', ',', 'approximate', 'a', 'universally', 'intelligible', 'form', ',', 'at', 'the', 'same', 'time', 'the', 'process', 'prevented', 'the', 'transmission', 'of', 'a', 'familiar', ',', 'intimate', ',', 'or', 'everyday', 'tone', '.'], ['in', 'june', '1', '9', '9', '2', ',', 'trailing', 'george', 'h.w', '.'], ['cliff', 'reappeared', 'in', 'the', '2', '0', '1', '2', 'continuation', 'of', 'the', 'series', ',', 'which', 'picks', 'up', '2', '0', 'years', 'after', 'the', 'original', 'series', 'concluded', 'and', 'ignores', 'the', 'events', 'of', 'the', 'two', '1', '9', '9', '0', 's', 'tv', 'movies', '.'], ['a', 'very', 'small', 'western', 'tip', 'of', 'the', 'island', \"'s\", 'territory', 'is', 'technically', 'part', 'of', 'san', 'francisco', ',', 'however', ',', 'this', 'is', 'uninhabited', 'and', 'is', 'not', 'separately', 'managed', '.'], ['she', 'then', 'went', 'on', 'to', 'be', 'a', 'host', 'and', 'judge', 'on', 'the', 'reality', 'show', '``', 'gusto', 'ko', 'maging', 'beauty', 'queen', \"''\", '(', 'i', 'want', 'to', 'be', 'a', 'beauty', 'queen', ')', 'and', 'continued', 'with', 'various', 'stints', 'on', 'tv', 'shows', 'and', 'movies', '.'], ['after', 'that', ',', 'he', 'was', 'a', 'teacher', 'of', 'philosophy', 'at', 'the', 'gymnasium', 'of', 'karlovci', 'for', 'some', 'time', '.'], ['some', 'versions', 'have', 'stated', 'this', 'more', 'clearly', 'than', 'others', ',', 'but', 'this', 'intention', 'of', 'the', 'laws', 'has', 'never', 'changed', '.'], ['it', 'aired', 'until', 'june', '2', '0', '2', '0', 'with', 'special', 'episodes', 'shown', 'in', 'december', '.'], ['personal', 'activities', 'such', 'as', '``', 'hiking', ',', 'canoeing', ',', 'photography', 'and', 'bird', 'watching', 'can', 'be', 'carried', 'out', 'without', 'a', 'permit', 'in', 'most', 'areas', \"''\", '.'], ['freiberg', 'am', 'neckar', 'is', 'a', 'town', 'in', 'the', 'district', 'of', 'ludwigsburg', ',', 'baden-württemberg', ',', 'germany', '.'], ['the', 'election', 'process', 'ran', 'in', 'the', 'three', 'stages', 'from', 'november', '7', 'to', 'december', '9', ',', '2', '0', '0', '5', 'using', 'single', 'member', 'plurality', ',', 'with', 'over', '3', '2', 'million', 'registered', 'voters', 'in', 'the', '2', '2', '2', 'constituencies', '.'], ['after', 'retirement', ',', 'myra', 'keen', 'was', 'still', 'actively', 'involved', 'in', 'the', 'lives', 'of', 'her', 'students', 'and', 'colleagues', '.'], ['he', 'also', 'worked', 'in', 'corporate', 'finance', 'and', 'project', 'finance', 'roles', 'in', 'new', 'york', 'and', 'in', 'washington', ',', 'd.c.', ',', 'eventually', 'rising', 'to', 'being', 'managing', 'director', 'in', 'the', 'project', 'finance', 'group', '.'], ['later', ',', 'in', 'the', 'debate', 'tebbit', 'asked', 'foot', 'whether', 'he', 'would', '``', 'put', 'a', 'bridle', 'on', 'his', 'foul-mouthed', 'tongue', \"''\", '.'], ['after', 'initially', 'being', 'uninterested', ',', 'ramsey', 'joined', 'dreamworks', 'as', 'a', 'story', 'artist', 'for', '``', 'shrek', 'the', 'third', \"''\", 'and', '``', 'shrek', 'the', 'halls', \"''\", '.'], ['zimling', 'then', 'joined', 'tårnby', 'boldklub', ',', 'fremad', 'amager', 'and', 'kjøbenhavns', 'boldklub', 'before', 'he', 'moved', 'on', 'to', 'join', 'the', 'youth', 'team', 'of', 'brøndby', '.'], ['amidst', 'these', 'discouragements', 'he', 'comforted', 'himself', 'as', 'he', 'once', 'wrote', ',', '``', 'all', 'our', 'good', 'work', 'will', 'be', 'found', ',', 'there', 'is', 'no', 'doubt', 'of', 'that', '.'], ['vocally', ',', 'he', 'sounds', 'amazing', ';', 'he', \"'s\", 'really', ',', 'really', 'coming', 'into', 'his', 'own', 'as', 'a', 'singer', \"''\", '.'], ['albarn', 'and', 'russell', 'had', 'also', 'produced', 'womack', \"'s\", 'comeback', 'album', '``', 'the', 'bravest', 'man', 'in', 'the', 'universe', \"''\", ',', 'prior', 'to', 'womack', \"'s\", 'death', 'in', 'june', '2', '0', '1', '4', '.'], ['the', 'mass', 'spectrometer', '(', 'ms', ')', 'and', 'the', 'main', 'electronics', 'of', 'moma', 'are', 'provided', 'by', 'nasa', \"'s\", 'goddard', 'space', 'flight', 'center', ',', 'while', 'the', 'gas', 'chromatography', '(', 'gc', ')', 'is', 'provided', 'by', 'the', 'two', 'french', 'institutes', 'lisa', 'and', 'latmos', '.'], ['a', 'touchless', 'smart', 'card', 'system', 'is', 'used', 'for', 'single', 'journey', 'tickets', '.'], ['in', 'aaa', ',', 'he', 'was', 'a', 'member', 'of', 'the', 'mad', 'and', '``', 'la', 'facción', 'ingobernable', \"''\", 'stables', '.'], ['the', 'temple', 'was', 'also', 'known', 'by', 'many', 'other', 'names', ',', 'including', 'guanyin', 'temple', '(', '觀音宮', ')', 'and', 'potangxia', 'yuqing', 'temple', '(', '坡塘下玉清宮', ')', '.'], ['while', 'looping', ',', 'the', 'system', 'intensified', 'to', 'a', 'typhoon', 'with', 'an', 'evidence', 'of', 'a', 'ragged', ',', 'but', 'small', 'eye', 'and', 'estimates', 'of', '7', '5', 'knots', ',', 'early', 'on', 'the', 'next', 'day', '.'], ['mathew', 'street', 'is', 'visited', 'by', 'thousands', 'of', 'tourists', 'a', 'year', ',', 'who', 'visit', 'the', 'cavern', 'club', 'and', 'many', 'surrounding', 'attractions', 'including', 'a', 'statue', 'of', 'john', 'lennon', ',', 'a', 'beatles', 'store', ',', 'the', 'liverpool', 'beatles', 'museum', 'and', 'several', 'pubs', 'formerly', 'frequented', 'by', 'the', 'band', '.'], ['he', 'graduated', 'from', 'the', 'university', 'of', 'belgrade', 'faculty', 'of', 'philosophy', 'in', '1', '9', '8', '7', '.'], ['netviewer', 'ag', 'is', 'a', 'german', 'it', 'company', 'headquartered', 'in', 'karlsruhe', '.'], ['during', 'one', 'of', 'these', 'periods', 'of', 'detention', 'he', 'wrote', '``', 'sālon-e', 'šomāre-ye', 'šeš', \"''\", '(', 'سالن', 'شماره', '۶', ';', '``', 'corridor', 'no', '6', '``', ')', ',', 'translated', 'into', 'french', 'as', '``', 'couloir', 'n°', '6', ':', 'carnets', 'de', 'prison', \"''\", '(', ')', '.'], ['slavko', 'šakić', ',', 'member', 'of', 'the', 'special', 'purpose', 'unit', '``', 'garavi', \"''\", 'of', 'the', 'hvo', ',', 'pleaded', 'guilty', 'to', 'plunder', ',', 'torture', 'of', 'bosniak', 'prisoners', 'and', 'the', 'killing', 'of', 'one', 'prisoner', '.'], ['the', '2', '0', '1', '8', 'polish', 'basketball', 'cup', '(', ')', 'was', 'the', '5', '4', 'th', 'edition', 'of', 'poland', \"'s\", 'national', 'cup', 'competition', 'for', 'men', 'basketball', 'teams', '.'], ['reverend', 'barry', 'w.', 'lynn', ',', 'executive', 'director', 'of', 'americans', 'united', 'for', 'separation', 'of', 'church', 'and', 'state', ',', 'said', 'the', 'frc', \"'s\", 'statement', '``', 'reeks', 'of', 'religious', 'bigotry', '...', '[', 'showing', 'a', ']', 'remarkable', 'lack', 'of', 'respect', 'for', 'religious', 'diversity', \"''\", '.'], ['it', 'is', 'located', 'approximately', 'east', 'of', 'the', 'town', 'centre', '.'], ['it', 'is', 'now', 'included', 'with', 'the', 'rest', 'of', 'the', 'municipality', 'in', 'the', 'central', 'sava', 'statistical', 'region', '.'], ['from', 'march', ',', '1', '8', '4', '5', ',', 'to', 'august', ',', '1', '8', '4', '7', ',', 'he', 'was', 'the', 'principal', 'assistant', 'of', 'professor', 'goodrich', 'in', 'the', 'revision', 'of', '``', 'webster', \"'s\", 'dictionary', \"''\", '.'], ['other', 'deleted', 'material', 'included', '``', 'prelude', 'in', 'g', 'minor', \"''\", 'and', '``', 'troika', \"''\", 'by', 'sergei', 'rachmaninoff', ',', 'and', 'a', 'rendition', 'of', '``', 'the', 'song', 'of', 'the', 'flea', \"''\", 'by', 'mussorgsky', ',', 'which', 'was', 'to', 'be', 'sung', 'by', 'lawrence', 'tibbett', '.'], ['growing', 'up', 'in', 'westmeath', ',', \"o'brien\", 'played', 'more', 'gaelic', 'sports', 'than', 'rugby', 'union', 'until', 'well', 'into', 'his', 'teens', '.'], ['millet', 'flour', ',', 'chilli', 'pepper', 'and', 'ginger', 'are', 'then', 'added', ',', 'and', 'the', 'mixture', 'is', 'stirred', 'to', 'a', 'smooth', 'consistency', '.'], ['the', 'island', 'with', 'a', 'diameter', 'of', 'about', 'seventy', 'meters', 'is', 'densely', 'populated', 'with', 'birds', ':', 'jackdaws', ',', 'grey', 'herons', ',', 'silver', 'gulls', ',', 'kestrels', '.'], ['the', 'site', 'is', 'one', 'of', 'several', 'submitted', 'for', 'inscription', 'on', 'the', 'unesco', 'world', 'heritage', 'list', 'as', 'one', 'of', 'the', 'jōmon', 'archaeological', 'sites', 'in', 'hokkaidō', ',', 'northern', 'tōhoku', ',', 'and', 'other', 'regions', '.'], ['he', 'led', 'from', 'the', 'start', ',', 'went', 'clear', 'of', 'the', 'field', 'in', 'the', 'straight', ',', 'and', 'won', 'by', 'four', 'and', 'a', 'quarter', 'lengths', 'from', 'his', 'stablemate', 'one', 'lucky', 'dane', '.'], ['langston', 'golf', 'course', 'is', 'an', '1', '8', '-hole', ',', 'par', '7', '2', 'course', '.'], ['gauruncus', 'simplicissimus', 'is', 'a', 'species', 'of', 'moth', 'of', 'the', 'family', 'tortricidae', '.'], ['st.', 'paul', \"'s\", 'episcopal', 'church', 'is', 'an', 'historic', 'episcopal', 'church', 'in', 'richmond', ',', 'virginia', ',', 'united', 'states', '.'], ['another', 'biography', 'was', 'written', 'by', 'the', 'nun', 'baudovinia', 'following', 'a', 'rebellion', 'at', 'the', 'abbey', 'described', 'by', 'gregory', 'of', 'tours', '.'], ['argued', 'in', 'january', '2', '0', '1', '0', 'by', 'solicitor', 'general', 'elena', 'kagan', ',', 'the', 'position', 'of', 'the', 'united', 'states', 'was', 'that', 'the', 'necessary', 'and', 'proper', 'clause', 'gave', 'congress', 'the', 'power', 'to', 'enact', 'the', 'law', '.'], ['he', 'attended', 'law', 'school', 'at', 'the', 'university', 'of', 'toronto', 'and', 'was', 'called', 'to', 'the', 'bar', 'in', 'ontario', 'in', '1', '9', '8', '5', '.'], ['located', 'outside', 'of', 'the', 'northern', 'walls', 'were', 'the', 'castle', 'stables', ',', 'which', 'could', 'house', 'up', 'to', '3', '0', 'horses', '.'], ['when', 'she', 'returns', 'to', 'the', 'house', 'where', 'cookie', 'and', 'jed', 'are', 'hiding', ',', 'she', 'is', 'attacked', 'by', 'cookie', \"'s\", 'doppelganger', 'who', 'has', 'yet', 'to', 'possess', 'the', 'real', 'one', ',', 'and', 'manages', 'to', 'get', 'rid', 'of', 'her', 'by', 'electrocuting', 'her', 'with', 'a', 'toaster', '.'], ['in', '2', '0', '1', '1', ',', 'kw', 'was', 'moved', 'to', 'schwabbach', ',', 'a', 'suburb', 'of', 'bretzfeld', '.'], ['in', '2', '0', '1', '0', ',', 'customized', 'employment', ',', 'state', 'employment', 'first', 'policies', ',', 'and', '``', 'revisiting', 'key', 'federal', 'policies', \"''\", 'are', 'recommended', 'as', 'leadership', 'in', '``', 'employment', 'of', 'persons', 'with', 'severe', 'disabilities', \"''\", ';', 'however', ',', 'with', 'a', 'newer', 'movement', 'toward', 'the', 'development', 'of', '``', 'non-work', 'supports', \"''\", '.'], ['it', 'is', 'usually', 'wrapped', 'in', 'banana', 'leaves', 'and', 'served', 'with', 'various', 'side', 'dishes', '.'], ['at', 'daylight', 'on', 'the', '1', '8', 'th', 'the', '3', 'rd', 'battalion', 'crossed', 'the', 'ford', 'in', 'hwangju', 'and', 'began', 'the', 'advance', '.'], ['in', 'general', ',', 'python', 'convention', 'encourages', 'the', 'use', 'of', 'named', 'functions', 'defined', 'in', 'the', 'same', 'scope', 'as', 'one', 'might', 'typically', 'use', 'an', 'anonymous', 'functions', 'in', 'other', 'languages', '.'], ['it', 'is', 'one', 'of', 'the', 'co-equal', 'arms', 'of', 'the', 'abia', 'state', 'government', 'vested', 'with', 'constitutional', 'power', 'to', 'interpret', 'and', 'make', 'laws', '.'], ['from', '1', '9', '9', '6', ',', 'the', 'route', 'was', 'taken', 'over', 'by', 'teddy', 'air', '.'], ['they', 'separated', 'in', '1', '9', '5', '8', 'with', 'the', 'junior', 'school', 'absorbed', 'by', 'other', 'technical', 'schools', 'in', 'the', 'area', 'and', 'the', 'senior', 'school', 'became', 'caulfield', 'technical', 'college', '.'], ['the', 'younger', 'lewis', 'was', 'knighted', 'by', 'king', 'james', 'i', 'when', 'on', 'his', 'way', 'to', 'london', 'in', '1', '6', '0', '3', '.'], ['a', 'significant', 'feature', 'of', 'south', 'london', \"'s\", 'economic', 'geography', 'is', 'that', 'while', 'there', 'are', 'more', 'than', 'thirty', 'bridges', 'linking', 'the', 'area', 'with', 'west', 'london', 'and', 'the', 'city', ',', 'there', 'is', 'only', 'one', ',', 'tower', 'bridge', ',', 'linking', 'the', 'area', 'with', 'east', 'london', '.'], ['šenov', 'u', 'nového', 'jičína', '(', ')', 'is', 'a', 'municipality', 'and', 'village', 'in', 'the', 'nový', 'jičín', 'district', 'in', 'the', 'moravian-silesian', 'region', 'of', 'the', 'czech', 'republic', '.'], ['``', 'hold', 'me', \"''\", 'was', 'the', 'song', 'that', 'represented', 'azerbaijan', 'in', 'the', 'eurovision', 'song', 'contest', '2', '0', '1', '3', '.'], ['many', 'of', 'queensland', \"'s\", 'early', 'politicians', 'were', 'pastoralists', ',', 'a', 'reflection', 'of', 'their', 'economic', 'dominance', 'in', 'the', 'colony', '.'], ['the', 'event', 'premiered', 'paul', \"'s\", 'campaign', 'to', 'refocus', 'the', 'suffrage', 'movement', 'on', 'obtaining', 'a', 'national', 'constitutional', 'amendment', 'for', 'woman', \"'s\", 'suffrage', '.'], ['even', 'as', 'the', 'threats', 'to', 'judge', 'rosales', \"'s\", 'life', 'became', 'more', 'ominous', ',', 'he', 'refused', 'to', 'follow', 'up', 'his', 'transfer', 'to', 'a', 'safer', 'jurisdiction', '.'], ['managers', 'often', 'use', 'organizational', 'behavior', 'to', 'better', 'lead', 'their', 'employees', '.'], ['in', 'the', 'late', 'summer', 'of', '1', '9', '4', '4', 'dinara', 'division', 'has', 'about', '6', '5', '0', '0', 'of', 'chetniks', '.'], ['the', 'indians', 'continued', 'taking', 'cattle', 'from', 'farms', 'in', 'the', 'buenos', 'aires', 'province', 'and', 'south', 'of', 'the', 'mendoza', 'province', ',', 'but', 'found', 'it', 'difficult', 'to', 'escape', 'as', 'the', 'animals', 'slowed', 'their', 'march', '.'], ['he', 'served', 'as', 'a', 'counselor', 'to', 'princess', 'isabella', 'clara', 'eugenia', 'of', 'spain', ',', 'regent', 'of', 'the', 'spanish', 'netherlands', '.'], ['but', 'when', 'that', 'became', 'difficult', ',', 'they', 'began', 'counting', 'each', 'murder', 'as', 'a', '``', 'day', ',', \"''\", 'as', 'in', 'the', 'phrase', ',', '``', 'i', 'will', 'love', 'you', 'for', 'forever', 'and', 'a', 'day', '.', \"''\"], ['``', 'xobc', \"''\", 'totals', 'approximately', 'fifteen', 'minutes', 'in', 'length', 'and', 'contains', 'five', 'tracks', ',', 'including', 'cover', 'versions', 'of', 'the', 'beatles', \"'\", '``', 'all', 'you', 'need', 'is', 'love', \"''\", 'and', 'bryan', 'adams', \"'\", '``', 'heaven', \"''\", 'and', 'three', 'original', 'tracks', '.'], ['after', 'prohibition', ',', 'a', 'few', 'indian', 'labourers', 'continued', 'to', 'be', 'sent', 'mauritius', 'via', 'pondicherry', '(', 'a', 'french', 'enclave', 'in', 'south', 'india', ')', '.'], ['kaziranga', 'has', 'a', 'good', 'conservation', 'history', ',', 'especially', 'due', 'to', 'its', 'efficient', 'management', 'policies', '.'], ['on', 'august', '3', '1', ',', '2', '0', '0', '5', ',', 'the', 'band', 'posted', 'an', 'update', 'on', 'their', 'website', ',', 'reporting', 'that', 'they', 'would', 'begin', 'to', 'work', 'on', 'a', 'new', 'record', 'at', 'the', 'end', 'of', '2', '0', '0', '5', ',', 'label', 'to', 'be', 'announced', '.'], ['in', 'the', 'last', 'few', 'decades', 'various', 'new', 'names', 'have', 'been', 'formally', 'published', ',', 'numbers', 'of', 'them', 'subsequently', 'corrected', 'to', 'synonyms', 'of', 'earlier', 'names', 'and', 'a', 'few', 'remaining', 'recognised', 'as', 'genuine', 'new', 'species', 'or', 'varieties', '.'], ['a', 'wall', 'in', 'mathew', 'street', 'is', 'adorned', 'by', 'a', 'sculpture', 'by', 'arthur', 'dooley', 'entitled', '``', 'four', 'lads', 'who', 'shook', 'the', 'world', \"''\", '.'], ['the', 'left', 'engine', 'was', 'torn', 'from', 'the', 'aircraft', 'as', 'it', 'rolled', 'over', 'and', 'a', 'fire', 'broke', 'out', '.'], ['manohla', 'dargis', 'of', '``', 'the', 'new', 'york', 'times', \"''\", 'affirmed', ',', '``', 'you', 'can', 'see', 'the', 'melville', 'touch', 'in', 'the', 'impenetrable', 'shadows', 'that', 'spill', 'across', 'mr.', 'madsen', \"'s\", 'carefully', 'composed', 'mise-en-scène', 'and', 'in', 'the', 'fedoras', 'and', 'trench', 'coats', 'worn', 'by', 'his', 'two', 'heroes', '.', \"''\"], ['the', 'house', ',', 'grounds', 'and', 'a', 'number', 'of', 'exhibits', 'are', 'open', 'to', 'the', 'public', '.'], ['megachile', 'neoxanthoptera', 'is', 'a', 'species', 'of', 'bee', 'in', 'the', 'family', 'megachilidae', '.'], ['tabaristan', 'and', 'gurgan', ',', 'however', ',', 'soon', 'revolted', 'against', 'samanid', 'authority', 'as', 'well', ',', 'and', 'ahmad', 'was', 'killed', 'before', 'he', 'could', 'deal', 'with', 'them', '.'], ['in', '1', '9', '3', '7', '/', '3', '8', ',', 'he', 'won', 'in', 'vienna', '(', 'the', '2', '0', 'th', 'trebitsch', 'memorial', ')', '.'], ['according', 'to', 'the', 'national', 'register', 'nomination', 'about', 'one', 'of', 'his', 'works', ',', '``', 'research', 'has', 'not', 'revealed', 'much', 'information', 'about', 'king', ',', 'and', 'few', 'of', 'his', 'buildings', 'remain', '.', \"''\"], ['instead', 'of', 'a', 'ball', ',', 'it', 'had', 'two', 'wheels', 'rotating', 'at', 'off', 'axes', '.'], ['(', 'or', 'possibly', '``', 'fandango', \"''\", 'or', '``', 'hobocamp', \"''\", ')', ',', 'but', 'mr.', 'noblet', 'helped', 'her', 'learn', 'to', 'read', '.'], ['after', 'he', 'woke', 'up', ',', 'he', 'thought', 'it', 'was', 'just', 'a', 'vague', 'memory', 'of', 'some', 'song', 'he', 'heard', 'when', 'he', 'was', 'younger', '.'], ['head', 'coach', 'jim', 'schwartz', 'named', 'quin', 'the', 'starting', 'strong', 'safety', 'to', 'begin', 'the', 'regular', 'season', ',', 'alongside', 'free', 'safety', 'louis', 'delmas', '.'], ['where', 'conditions', 'permitted', ',', 'the', 'emphasis', 'would', 'be', 'placed', 'on', 'organizing', 'technical', 'schools', 'and', 'short-term', 'training', 'classes', '.'], ['since', 'örnsköldsvik', 'is', 'a', 'coastal', 'town', ',', 'there', 'are', 'also', 'beaches', 'near', 'town', ',', 'as', 'well', 'as', 'campsites', '.'], ['kent', 'progressed', 'through', 'the', 'arsenal', 'academy', 'prior', 'to', 'joining', 'colchester', 'united', \"'s\", 'academy', 'for', 'his', 'two-year', 'scholarship', 'in', '2', '0', '1', '2', '.'], ['the', 'campus', 'grounds', 'cover', '6', '2', 'hectares', ',', '3', 'hectares', 'of', 'which', 'are', 'sports', 'fields', 'and', 'spaces', 'for', 'outdoor', 'activities', '.'], ['they', 'had', 'previously', 'approached', 'the', 'dunkleman', 'family', 'about', 'buying', 'the', 'building', 'alone', ',', 'but', 'the', 'dunkleman', 'family', 'declined', 'the', 'offer', ',', 'wishing', 'to', 'sell', 'the', 'entire', 'business', 'if', 'they', 'sold', 'it', 'at', 'all', '.'], ['one', 'of', 'the', 'institution', \"'s\", 'first', 'rescues', 'was', 'of', 'the', 'packet', '``', 'st', 'george', \"''\", ',', 'which', 'had', 'foundered', 'on', 'conister', 'rock', 'at', 'the', 'entrance', 'to', 'douglas', 'harbour', '.'], ['halloween', 'is', 'a', 'horror', 'video', 'game', 'for', 'the', 'atari', '2', '6', '0', '0', ',', 'released', 'in', 'october', '1', '9', '8', '3', 'by', 'wizard', 'video', '.'], ['knighton', 'was', 'born', 'in', 'alexandria', ',', 'virginia', 'and', ',', 'in', '1', '9', '9', '6', ',', 'graduated', 'from', 'frank', 'w.', 'cox', 'high', 'school', 'in', 'virginia', 'beach', ',', 'virginia', 'and', 'the', 'governor', \"'s\", 'school', 'for', 'the', 'arts', '.'], ['on', '1', '7', 'october', '2', '0', '2', '0', ',', 'doyle', 'became', 'the', 'first', 'female', 'jockey', 'to', 'ride', 'a', 'winner', 'on', 'champions', 'day', 'at', 'ascot', ',', 'when', 'she', 'steered', 'trueshan', 'to', 'victory', 'in', 'the', 'long', 'distance', 'cup', '.'], ['jack', 'r.', 'meredith', '(', 'born', '1', '9', '3', '9', ')', 'is', 'an', 'american', 'engineer', ',', 'organizational', 'theorist', ',', 'management', 'consultant', 'and', 'professor', 'of', 'management', 'at', 'wake', 'forest', 'university', ',', 'known', 'for', 'his', 'work', 'on', 'project', 'management', '.'], ['in', '1', '9', '8', '6', ',', 'instinet', 'started', 'the', 'first', 'dark', 'pool', 'trading', 'venue', 'known', 'as', '``', 'after', 'hours', 'cross', \"''\", '.'], ['these', 'are', 'offices', 'and', 'departments', 'which', 'support', 'the', 'prime', 'minister', 'in', 'general', 'political', 'co-ordination', 'and', 'direction', ',', 'as', 'well', 'as', 'providing', 'technical', 'support', '.'], ['the', 'japanese', 'people', 'loved', 'the', 'brutality', 'and', 'aggression', 'of', 'lethwei', ',', 'and', 'more', 'events', 'were', 'announced', 'to', 'be', 'held', 'in', 'tokyo', '.'], ['milliken', 'then', 'went', 'on', 'to', 'serve', 'as', 'mayor', 'of', 'traverse', 'city', 'from', '1', '9', '2', '2', 'to', '1', '9', '2', '8', 'as', 'a', 'republican', '.'], ['jean-françois', 'dutertre', '(', '3', '1', 'march', '1', '9', '4', '8', '-', '1', '0', 'march', '2', '0', '1', '7', ')', 'was', 'a', 'french', 'singer-songwriter', 'and', 'player', 'of', 'the', 'hurdy-gurdy', ',', 'épinette', 'des', 'vosges', ',', 'and', 'traditional', 'french', 'music', '.'], ['although', 'the', 'trusts', 'were', 'abolished', 'in', 'the', 'late-', '1', '9', 'th', 'century', ',', 'the', 'roads', 'themselves', 'broadly', 'remain', 'as', 'modern', 'routes', ',', 'and', 'some', 'of', 'the', 'original', 'toll', 'houses', 'and', 'roadside', 'milestones', 'have', 'survived', '.'], ['ilias', 'chouzouris', '(', ';', 'born', '2', '6', 'february', '1', '9', '7', '5', ')', 'is', 'a', 'greek', 'football', 'defender', 'currently', 'playing', 'for', 'filoti', '.'], ['by', '2', '0', '2', '0', 'the', 'figure', 'should', 'be', '1', '0', '%', '.'], ['her', 'work', 'has', 'been', 'selected', 'for', 'several', 'juried', 'exhibitions', 'including', 'the', 'center', 'on', 'contemporary', 'art', 'annual', 'in', 'seattle', 'and', 'more', 'recently', 'the', '1', '0', 'th', 'international', 'shoebox', 'sculpture', 'exhibition', 'at', 'the', 'university', 'of', 'hawaii', '.'], ['no', 'attempt', 'to', 'explore', 'the', 'bremer', 'was', 'made', 'at', 'this', 'time', '.'], ['in', 'mechanical-shaker', 'baghouses', ',', 'tubular', 'filter', 'bags', 'are', 'fastened', 'onto', 'a', 'cell', 'plate', 'at', 'the', 'bottom', 'of', 'the', 'baghouse', 'and', 'suspended', 'from', 'horizontal', 'beams', 'at', 'the', 'top', '.'], ['towards', 'the', 'end', 'of', 'world', 'war', 'ii', ',', 'however', ',', 'the', 'town', 'was', 'taken', 'back', 'from', 'hungarian', 'and', 'german', 'troops', 'by', 'romanian', 'and', 'soviet', 'forces', 'in', 'october', '1', '9', '4', '4', '.'], ['rebecca', 'silverman', 'from', '``', 'anime', 'news', 'network', \"''\", 'praised', 'mitsuki', \"'s\", 'character', 'and', 'the', 'overall', 'story', 'composition', '.'], ['this', 'marriage', 'was', 'to', 'another', 'poet', ',', 'surnamed', 'zong', '(', '宗', ')', ',', 'with', 'whom', 'he', 'both', 'had', 'children', 'and', 'exchanges', 'of', 'poems', ',', 'including', 'many', 'expressions', 'of', 'love', 'for', 'her', 'and', 'their', 'children', '.'], ['it', 'rotates', 'around', 'a', 'center', 'star', 'pin', ',', 'its', 'day-night', 'cycle', 'simulated', 'by', 'a', 'ring', 'of', 'shadow', 'blocks', 'rotating', 'between', 'pendor', 'and', 'pin', ',', 'creating', '2', '9', '2', 'day/night', 'cycles', 'per', 'earth', 'year', '.'], ['it', 'is', 'a', 'village', 'with', 'a', 'view', 'of', 'the', 'wallace', 'monument', 'in', 'stirling', ',', 'almost', '2', '5', 'miles', 'away', '.'], ['hitchcock', 'then', 'waits', 'in', 'the', 'lobby', 'for', 'the', 'audience', \"'s\", 'reaction', ',', 'conducting', 'slashing', 'motions', 'to', 'their', 'reactions', 'as', 'they', 'scream', 'on', 'cue', '.'], ['there', 'was', 'no', 'public', 'recognition', 'for', 'their', 'service', 'at', 'the', 'time', '.'], ['the', '``', 'lites', \"''\", 'is', 'an', 'acronym', 'of', ':', '``', 'l', \"''\", 'earning', ',', '``', 'i', \"''\", 'nformation', ',', '``', 't', \"''\", 'echnology', ',', '``', 'e', \"''\", 'mpowerment', 'and', '``', 's', \"''\", 'upport', 'to', 'street', 'children', 'in', 'africa', 'and', 'india', '.'], ['he', 'was', 'a', 'member', 'of', 'the', 'national', 'press', 'association', ',', 'directed', 'in', '1', '9', '1', '6', 'by', 'arturo', 'j.', 'pellerano', 'alfau', 'which', 'also', 'included', 'américo', 'lugo', ',', 'conrado', 'sanchez', ',', 'juan', 'durán', ',', 'manuel', 'a.', 'machado', ',', 'and', 'félix', 'evaristo', 'mejía', ',', 'among', 'others', '.'], ['it', 'is', 'sometimes', 'considered', 'a', 'type', 'of', 'hydroponics', ',', 'since', 'water', 'is', 'used', 'in', 'aeroponics', 'to', 'transmit', 'nutrients', '.'], ['also', ',', 'the', 'islamic', 'historian', 'al-maqrizi', 'reports', 'that', 'al-adil', 'kitbugha', 'oversaw', 'construction', 'of', 'the', 'building', 'up', 'to', 'the', 'top', 'of', 'the', 'inscription', 'band', ',', 'and', 'al-nasir', 'muhammad', 'carried', 'out', 'the', 'rest', 'of', 'its', 'construction', '.'], ['the', 'mutiny', 'on', 'the', 'bounty', 'occurred', 'the', 'day', 'after', 'they', 'left', '.'], ['the', 'materials', 'simulation', 'laboratory', 'of', 'the', 'department', 'of', 'physics', ',', 'university', 'of', 'south', 'florida', ',', '(', 'msl', ')', 'was', 'established', 'in', '2', '0', '0', '2', 'by', 'prof.', 'ivan', 'oleynik', 'of', 'that', 'university', '.'], ['``', 'bruce', 'was', 'very', 'clever', ':', 'he', 'did', \"n't\", 'issue', 'me', 'with', 'an', 'ultimatum', ',', 'he', 'did', \"n't\", 'rant', 'and', 'rave', 'or', 'threaten', 'me', '.'], ['previously', ',', 'magic', 'had', 'created', 'an', '``', 'original', \"''\", 'juice', 'crew', 'consisting', 'of', 'himself', ',', 'record', 'executive', 'sal', 'abbatiello', ',', 'and', 'artists', 'sweet', 'gee', ',', 'dj', 'june', 'bug', ',', 'and', 'kurtis', 'blow', '.'], ['its', 'popularity', 'led', 'to', 'a', 'resurgence', 'in', '``', 'arma', '2', '``', 's', 'sales', ',', 'with', 'registered', 'players', 'count', 'being', 'raised', 'from', '5', '0', '0', ',', '0', '0', '0', 'to', 'one', 'million', '.'], ['the', 'company', 'published', 'it', 'until', '1', '9', '9', '5', 'along', 'with', 'its', 'other', 'women', \"'s\", 'magazines', ',', 'including', '``', 'family', 'circle', \"''\", ',', 'before', 'selling', 'the', 'titles', 'to', 'gruner', '+', 'jahr', '.'], ['the', 'single', 'was', 'the', 'last', 'of', 'the', 'midnighters', \"'\", 'three', 'number-one', 'singles', 'on', 'the', 'r', '&', 'amp', ';', 'b', 'chart', ',', 'staying', 'there', 'for', 'three', 'non-consecutive', 'weeks', '.'], ['after', 'the', 'battle', 'is', 'over', ',', 'the', 'students', 'have', 'a', 'bonfire', 'to', 'try', 'to', 'relax', '.'], ['stychkin', \"'s\", 'mother', 'is', 'actress', 'and', 'ballet', 'dancer', 'kseniya', 'ryabinkina', ',', 'a', 'former', 'soloist', 'of', 'the', 'bolshoi', 'theater', '.'], [')', ',', 'along', 'with', 'a', '5', '0', '-word', 'list', 'from', 'a', 'more', 'specialised', 'subset', 'of', 'that', 'general', 'field', ',', 'to', 'make', 'a', 'basic', '1', '0', '0', '0', '-word', 'vocabulary', 'for', 'everyday', 'work', 'and', 'life', '.'], ['for', 'every', '1', '0', '0', 'females', ',', 'there', 'were', '9', '5', '.', '4', 'males', '.'], ['the', 'decision', 'received', 'a', 'mixed', 'reception', 'from', 'the', 'international', 'community', ',', 'with', 'one', 'scholar', 'expressing', 'concern', 'that', 'it', 'threatened', '``', 'to', 'undermine', 'international', 'law', \"'s\", 'protection', 'of', 'civilians', 'in', 'armed', 'conflict', 'by', 'shifting', 'the', 'balance', 'toward', 'military', 'advantage', 'and', 'increasing', 'the', 'likelihood', 'of', 'collateral', 'damage', \"''\", '.'], ['in', '1', '9', '2', '8', ',', 'hoover', 'was', 'considered', 'the', 'leading', 'candidate', 'for', 'president', 'by', 'the', 'republican', 'party', '.'], ['when', 'the', 'results', 'were', 'announced', ',', 'duncan', 'won', 'by', 'a', 'nearly', '2', '-', '1', 'margin', 'in', 'one', 'of', 'the', 'first', 'elections', 'in', 'which', 'the', 'vietnam', 'war', 'was', 'a', 'central', 'issue', '.'], ['at', 'the', 'chateau', 'paul', 'learns', 'of', 'bruno', \"'s\", 'champagne', 'trading', 'business', 'and', 'orders', 'him', 'to', 'leave', 'the', 'country', '.'], ['loyalists', 'during', 'the', 'revolutionary', 'war', ',', 'the', 'family', 'had', 'its', 'lands', 'seized', 'in', '1', '7', '7', '9', 'by', 'the', 'revolutionary', 'government', 'of', 'the', 'province', 'of', 'new', 'york', 'and', 'sold', 'by', 'its', 'commissioners', 'of', 'forfeitures', '.'], ['born', 'in', 'benevento', ',', 'pedicini', 'and', 'his', 'family', 'moved', 'to', 'pescara', 'when', 'he', 'was', 'young', 'and', 'eventually', ',', 'they', 'moved', 'to', 'rome', '.'], ['the', 'mbn', 'dmb', 'radio', 'stations', 'were', 'shut', 'down', 'in', 'september', '2', '0', '1', '1', '.'], ['production', 'was', 'shared', 'between', 'fairey', \"'s\", 'factories', 'at', 'hayes', ',', 'middlesex', 'and', 'heaton', 'chapel', ',', 'stockport', '/', 'manchester', '(', 'ringway', ')', 'airport', '.'], ['however', ',', 'on', '1', '6', 'july', '1', '9', '8', '6', ',', 'the', 'first', 'cheetah', 'd', 'was', 'officially', 'unveiled', ';', 'by', 'this', 'point', ',', 'a', 'number', 'of', 'cheetah', 'ds', 'had', 'already', 'entered', 'service', 'with', '8', '9', 'combat', 'flying', 'school', 'at', 'afb', 'pietersburg', '.'], ['in', '1', '9', '2', '1', ',', 'van', 'eysinga', 'served', 'on', 'an', 'arbitral', 'panel', 'led', 'by', 'max', 'huber', ',', 'tasked', 'with', 'settling', 'a', 'dispute', 'between', 'germany', 'and', 'certain', 'dutch', 'banks', '.'], ['drenge', 'is', 'the', 'self-titled', 'debut', 'album', 'by', 'british', 'band', 'drenge', '.'], ['following', 'the', '1', '9', '1', '0', 'season', ',', 'tinker', 'threatened', 'to', 'quit', 'the', 'cubs', 'and', 'play', 'baseball', 'in', 'australia', 'over', 'a', 'salary', 'dispute', '.'], ['martha', 'had', 'been', 'regularly', 'drugging', 'sally', 'at', 'night', 'so', 'that', 'she', 'would', 'oversleep', ',', 'be', 'discredited', ',', 'and', 'eventually', 'dismissed', '.'], ['on', 'march', '2', '9', ',', '2', '0', '1', '9', ',', 'former', 'morrow', 'priest', 'michael', 'guirdy', 'plead', 'to', 'committing', 'acts', 'of', 'child', 'molestation', 'while', 'served', 'in', 'the', 'diocese', 'of', 'lafayette', '.'], ['several', 'samples', 'of', '5', '5', 'mm', 'sound', 'prints', 'can', 'be', 'found', 'in', 'the', 'sponable', 'collection', 'at', 'the', 'film', 'and', 'television', 'archives', 'at', 'columbia', 'university', '.'], ['after', 'rufus', 'putnam', \"'s\", 'mother', 'married', 'john', 'sadler', ',', 'rufus', 'lived', 'with', 'his', 'mother', 'and', 'stepfather', 'in', 'sutton', ',', 'where', 'the', 'family', 'ran', 'an', 'inn', '.'], ['ann', 'putnam', ',', 'accuser', 'of', 'the', 'salem', 'witch', 'trials', ',', 'was', 'a', 'first', 'cousin', 'once', 'removed', '.'], ['as', 'yet', ',', 'no', 'single', 'disc', 'compilation', 'standalone', 'dvds', 'have', 'been', 'released', 'as', 'they', 'have', 'with', '``', 'the', 'simpsons', \"''\", ',', '``', 'futurama', \"''\", 'and', '``', 'family', 'guy', \"''\", '.'], ['azteca', 'uno', 'is', 'the', 'home', 'of', 'most', 'of', 'tv', 'azteca', \"'s\", 'domestic', 'output', ',', 'especially', 'telenovelas', ',', 'entertainment', 'programs', ',', 'and', 'news', '.'], ['newman', 'graduated', 'from', 'the', 'united', 'states', 'military', 'academy', 'at', 'west', 'point', 'in', '1', '9', '9', '8', 'with', 'a', 'b.s', '.'], ['it', 'is', 'the', 'sole', 'high', 'school', 'operated', 'by', 'the', 'mifflin', 'county', 'school', 'district', '.'], ['and', 'as', 'noted', 'above', 'under', '``', 'notable', 'recipients', \"''\", ',', 'top', 'american', 'world', 'war', 'i', 'ace', 'pilot', 'eddie', 'rickenbacker', 'originally', 'received', 'eight', 'dscs', ',', 'but', 'one', 'was', 'upgraded', 'in', '1', '9', '3', '0', 'to', 'the', 'medal', 'of', 'honor', '.'], ['it', 'spans', 'the', 'connecticut', 'river', 'in', 'a', 'roughly', 'northwest-southeast', 'orientation', '.'], ['in', '1', '9', '8', '0', ',', 'secon', 'moved', 'back', 'to', 'the', 'united', 'states', 'and', 'settled', 'in', 'manhattan', 'before', 'relocating', 'to', 'rochester', 'in', '1', '9', '9', '7', ',', 'where', 'he', 'died', 'at', 'his', 'home', 'at', 'the', 'age', 'of', '9', '0', '.'], ['this', 'crater', 'was', 'formerly', 'designated', 'gilbert', 'd', 'before', 'being', 'assigned', 'a', 'unique', 'name', 'by', 'the', 'iau', 'in', '1', '9', '7', '6', '.'], ['it', 'also', 'patrolled', 'the', 'york', ',', 'rappahannock', ',', 'nansemond', ',', 'and', 'james', 'rivers', 'in', 'addition', 'to', 'chuckatuck', 'creek', 'in', 'hampton', 'roads', ',', 'virginia', '.'], ['in', '2', '0', '1', '0', ',', 'the', 'aycc', 'held', 'three', 'regional', 'power', 'shift', 'conferences', 'in', 'adelaide', ',', 'canberra', 'and', 'geelong', '.'], ['she', 'was', ',', 'however', ',', 'salvaged', ',', 'and', 'is', 'now', 'maintained', 'by', 'the', 'caroline', 'support', 'group', ',', 'a', 'group', 'of', 'supporters', 'and', 'enthusiasts', '.'], ['the', 'second', 'island', 'looks', 'like', 'a', 'rounded', 'and', 'green', 'hill', '.'], ['the', 'bryon', 'bay', 'train', 'is', 'passenger', 'service', 'in', 'byron', 'bay', 'using', 'a', '6', '2', '0', 'class', 'railcar', 'converted', 'for', 'solar', 'operation', '.'], ['the', 'new', 'zealand', 'ministry', 'for', 'culture', 'and', 'heritage', 'gives', 'a', 'translation', 'of', '``', 'the', 'shags', \"''\", 'for', '``', 'ngākawau', \"''\", '.'], ['it', 'was', 'the', 'first', 'time', 'smetona', 'visited', 'the', 'city', ',', 'the', 'historical', 'capital', 'of', 'the', 'grand', 'duchy', 'of', 'lithuania', ',', 'and', 'it', 'left', 'a', 'deep', 'impression', 'on', 'him', '.'], ['the', 'silgar', 'beach', 'is', 'a', 'galician', 'beach', 'located', 'on', 'the', 'urban', 'coastline', 'of', 'the', 'municipality', 'of', 'sanxenxo', 'in', 'the', 'province', 'of', 'pontevedra', ',', 'spain', '.'], ['later', ',', 'the', '``', 'castle', 'neuenriet', \"''\", 'was', 'built', 'outside', 'the', 'village', ',', 'the', '``', 'castle', 'altenriet', \"''\", 'fell', 'into', 'disrepair', 'already', 'in', 'the', '1', '5', 'th', 'century', '.'], ['work', 'undertaken', 'included', 'tree', 'work', ',', 'debris', 'removal', 'and', 'residential', 'flood', 'cleanup', '.'], ['george', 's.', 'harden', ',', 'an', 'early', 'postmaster', ',', 'gave', 'the', 'community', 'his', 'last', 'name', '.'], ['controversy', 'ensued', 'over', 'the', 'raid', ',', 'as', 'city', 'officials', 'had', 'secretly', 'authorized', 'a', 'letter', 'seeking', 'federal', 'law', 'enforcement', 'assistance', 'in', 'shutting', 'down', 'the', 'collective', ',', 'which', 'an', 'expert', 'claimed', 'was', 'illegal', '.'], ['it', 'is', 'located', 'in', 'the', 'arequipa', 'region', ',', 'castilla', 'province', ',', 'chachas', 'district', '.'], ['the', 'ball', 'is', 'mostly', 'steel', ',', 'with', 'a', 'precision', 'spherical', 'rubber', 'surface', '.'], ['``', 'yo', 'soy', 'betty', 'la', 'fea', \"''\", 'is', 'a', 'great', 'example', 'of', 'contra-flow', 'media', 'because', 'of', 'the', 'increasing', 'exportation', 'of', 'telenovelas', 'to', 'the', 'united', 'states', 'and', 'other', 'countries', 'not', 'familiar', 'or', 'culturally', 'similar', 'to', 'latin', 'america', '.'], ['meisels', 'and', 'colleagues', 'also', 'published', 'the', '``', 'ounce', 'scale', ':', 'an', 'observational', 'assessment', 'for', 'infants', ',', 'toddlers', ',', 'and', 'families', \"''\", ',', 'an', 'authentic', 'performance', 'assessment', 'that', 'is', 'used', 'with', 'children', 'from', 'infancy', 'through', 'age', 'three', '.'], ['public', 'perception', 'is', 'that', 'renewable', 'energies', 'such', 'as', 'wind', ',', 'solar', ',', 'biomass', 'and', 'geothermal', 'are', 'significantly', 'affecting', 'global', 'warming', '.'], ['nevertheless', ',', 'when', 'wegman', 'found', 'out', 'she', 'would', 'train', 'in', 'havana', ',', 'cuba', 'and', 'that', 'the', 'pay', 'was', 'more', 'than', 'she', 'was', 'making', 'in', 'a', 'factory', ',', 'she', 'reconsidered', '.'], ['he', 'continued', 'by', 'affirming', ',', 'that', 'he', 'had', 'received', 'the', 'road', 'contract', 'on', 'his', 'own', 'merits', ',', 'and', 'that', 'he', 'had', 'made', 'application', 'in', 'the', 'same', 'manner', 'as', 'all', 'the', 'other', 'bidders', 'and', 'that', 'he', 'also', 'still', 'owned', 'the', 'contract', '.'], ['it', 'premiered', 'at', 'pitchfork', 'media', 'on', 'february', '1', '0', ',', '2', '0', '0', '9', '.'], ['honor', 'killings', 'are', 'illegal', 'in', 'egypt', 'and', 'five', 'of', 'the', 'ten', 'men', 'were', 'arrested', '.'], ['the', 'main', 'campus', 'is', 'located', 'at', '3', '0', '3', 'lowe', 'street', ',', 'in', 'valdez', '.'], ['browhead', 'houses', 'girl', 'boarders', 'from', 'the', 'ages', 'of', 'eight', 'to', '1', '6', '.'], ['williams-sonoma', 'opened', 'four', 'locations', 'in', 'california', 'before', 'selling', 'the', 'business', 'to', 'private', 'investors', 'in', '1', '9', '8', '3', '.'], ['the', 'engineers', 'lived', 'in', 'denison', 'barracks', 'in', 'hermitage', 'for', 'many', 'years', 'until', 'july', '2', '0', '1', '4', 'when', 'the', 'regiment', 'in', 'moved', 'to', 'raf', 'wyton', 'as', 'part', 'of', 'the', 'joint', 'forces', 'intelligence', 'group', '.'], ['after', 'a', 'number', 'of', 'regional', 'tours', 'and', 'increasing', 'popularity', 'in', 'the', 'online', 'djent', 'community', ',', 'the', 'band', 'was', 'signed', 'up', 'by', 'tragic', 'hero', 'records', 'in', 'february', '2', '0', '1', '4', '.'], ['the', '5', '4', 'th', 'suffered', '4', '3', 'casualties', ',', 'with', '1', '4', 'killed', ',', '1', '7', 'wounded', ',', 'and', '1', '2', 'others', 'lost', 'to', 'capture', ',', 'but', 'the', '1', '0', 'th', 'connecticut', 'was', 'saved', '.'], ['``', 'sangokushi', 'online', \"''\", 'is', 'set', 'in', 'the', 'warring', 'and', 'chaotic', 'times', 'of', 'the', 'end', 'of', 'the', 'eastern', 'han', 'dynasty', 'in', 'ancient', 'china', '.'], ['board-to-board', '(', 'btb', ')', 'connectors', 'are', 'used', 'to', 'connect', 'printed', 'circuit', 'boards', '(', 'pcb', ')', ',', 'electronic', 'components', 'that', 'contain', 'a', 'conductive', 'pattern', 'printed', 'on', 'the', 'surface', 'of', 'the', 'insulating', 'base', 'in', 'an', 'accurate', 'and', 'repeatable', 'manner', '.'], ['the', 'rotational', 'partition', 'function', 'relates', 'the', 'rotational', 'degrees', 'of', 'freedom', 'to', 'the', 'rotational', 'part', 'of', 'the', 'energy', '.'], ['the', 'song', \"'s\", 'setting', 'takes', 'place', 'at', 'a', 'correctional', 'facility', '.'], ['knight', 'ridder', 'washington', 'reporters', 'warren', 'strobel', 'and', 'jonathan', 'landay', 'received', 'the', 'raymond', 'clapper', 'memorial', 'award', 'from', 'the', 'senate', 'press', 'gallery', 'on', 'february', '5', ',', '2', '0', '0', '4', ',', 'for', 'their', 'coverage', 'of', 'the', 'questionable', 'intelligence', 'used', 'to', 'justify', 'war', 'with', 'iraq', '.'], ['on', 'december', '2', '0', ',', '2', '0', '1', '7', ',', 'kwan', 'came', 'out', 'of', 'retirement', 'to', 'race', 'in', 'the', 'dubai', '2', '4', 'hour', 'race', ',', 'alongside', 'other', 'hong', 'kong', 'drivers', 'marchy', 'lee', ',', 'adderly', 'fong', ',', 'darryl', \"o'young\", 'and', 'shaun', 'thong', '.'], ['the', 'capell', 'family', 'finally', 'sold', 'hadham', 'in', '1', '9', '0', '0', 'and', 'it', 'is', 'now', 'a', 'private', 'residence', ';', 'cassiobury', 'remained', 'in', 'the', 'family', 'until', '1', '9', '2', '7', 'when', ',', 'like', 'many', 'other', 'british', 'country', 'houses', ',', 'it', 'was', 'demolished', '.'], ['siri', 'graff', 'leknes', 'is', 'a', 'norwegian', 'neuroscientist', 'and', 'professor', '(', 'chair', ')', 'of', 'neuroscience', 'at', 'the', 'university', 'of', 'oslo', ',', 'where', 'she', 'directs', 'the', 'leknes', 'affective', 'brain', 'lab', ',', 'which', 'is', 'funded', 'by', 'a', 'european', 'research', 'council', 'grant', '.'], ['the', 'local', 'school', 'was', 'closed', 'following', 'the', 'oil', 'spill', 'due', 'to', 'concerns', 'about', 'the', 'effects', 'of', 'fumes', '.'], ['of', 'primary', 'concern', 'is', 'the', 'condition', 'and', 'patency', 'of', 'the', 'maxillofacial', 'structures', ',', 'larynx', ',', 'trachea', ',', 'and', 'bronchi', 'as', 'these', 'are', 'all', 'components', 'of', 'the', 'respiratory', 'tract', 'and', 'failure', 'anywhere', 'along', 'this', 'path', 'may', 'impede', 'ventilation', '.'], ['the', 'following', 'season', ',', 'he', 'won', '1', '7', 'of', '2', '4', 'decisions', 'in', 'the', 'triple-a', 'american', 'association', 'and', 'was', 'named', 'the', 'league', \"'s\", 'most', 'valuable', 'player', '.'], ['stevens', 'added', '$', '4', '0', ',', '0', '0', '0', 'to', 'his', 'trust', 'for', 'the', 'high', 'school', '.'], ['a', 'letter', 'from', 'rudyard', 'kipling', 'to', 'lady', 'edward', 'cecil', 'records', 'a', 'conversation', 'at', 'gatcombe', 'house', 'in', 'december', '1', '9', '1', '4', 'with', 'the', 'convalescent', 'private', 'walter', 'titcombe', ',', 'who', 'had', 'served', 'in', 'manners', \"'\", 'platoon', 'and', 'claimed', 'that', 'manners', 'was', 'shot', 'through', 'the', 'head', 'and', 'died', 'instantly', '.'], ['he', 'later', 'joined', 'halas', 'and', 'batchelor', \"'s\", 'animation', 'company', 'where', 'he', 'started', 'directing', '.'], ['objects', 'that', 'could', 'indicate', 'possible', 'evidence', 'of', 'past', 'civilizations', 'include', 'plastics', 'and', 'nuclear', 'wastes', 'residues', 'buried', 'deep', 'underground', 'or', 'on', 'the', 'ocean', 'floor', '.'], ['following', 'the', 'extension', 'of', 'universal', 'suffrage', 'and', 'the', 'subsequent', 'election', 'of', 'the', 'first', 'anc', 'government', ',', 'parliament', 'developed', 'a', 'new', 'constitution', 'and', 'bill', 'of', 'rights', '.'], ['after', 'the', 'dissolution', 'of', 'nazi', 'germany', 'in', '1', '9', '4', '5', 'the', 'ministry', 'was', 'reestablished', 'into', 'its', 'current', 'form', '.'], ['in', '1', '9', '6', '7', ',', 'she', 'appeared', 'on', 'the', 'nbc', 'radio', 'program', '``', 'toscanini', ':', 'the', 'man', 'behind', 'the', 'legend', \"''\", ',', 'paying', 'tribute', 'to', 'the', 'legendary', 'italian', 'conductor', 'arturo', 'toscanini', '.'], ['the', 'treffry', 'tramways', 'were', 'eventually', 'built', 'from', 'newquay', 'to', 'st.', 'dennis', 'with', 'the', 'branch', 'line', 'to', 'east', 'wheal', 'rose', ',', 'and', 'the', 'first', 'load', 'of', 'ore', 'left', 'east', 'wheal', 'rose', 'on', '2', '6', 'february', '1', '8', '4', '9', 'in', 'horse-drawn', 'tubs', '.'], ['tom', 'was', 'my', 'youth', 'team', 'manager', 'at', 'watford', 'and', 'absolutely', 'hated', 'people', 'being', 'out', 'of', 'shape', '...'], ['benedictine', 'monks', 'from', 'st.', 'vincent', \"'s\", 'archabbey', 'arrived', 'in', 'the', 'western', 'part', 'of', 'north', 'carolina', 'acquired', 'land', ',', 'and', 'started', 'a', 'new', 'foundation', 'in', '1', '8', '7', '6', '.'], ['if', 'the', 'fort', 'needed', 'to', 'be', 'fully', 'garrisoned', 'due', 'to', 'an', 'impending', 'attack', ',', 'the', 'difference', 'in', 'the', 'actual', 'garrison', 'and', 'the', 'plan', 'would', 'be', 'made', 'good', 'from', 'washington', \"'s\", 'reserve', 'force', '.'], ['``', 'it', 'was', 'only', 'recently', 'that', 'the', 'full', 'significance', 'came', 'home', 'to', 'me', 'when', 'i', 'suddenly', 'realised', 'that', 'the', 'effect', 'of', 'the', 'decision', 'to', 'ban', 'the', 'ordination', 'of', 'women', 'is', 'that', 'my', 'daughter', 'can', 'not', 'become', 'a', 'minister', 'of', 'the', 'presbyterian', 'church', 'of', 'australia', '.'], ['tyr', '2', '0', '2', 'and', 'asn', '3', '5', '0', ',', 'while', 'not', 'directly', 'involved', 'in', 'the', 'β', '1', '→', '4', 'linkage', 'cleavage', ',', 'were', 'identified', 'to', 'be', 'important', 'to', 'hyal', '1', 'function', '.'], ['when', 'that', 'did', 'not', 'work', ',', 'he', 'decided', 'to', 'let', 'the', 'feather', 'river', 'express', 'passenger', 'train', 'do', 'the', 'heavy', 'work', 'of', 'cracking', 'the', 'concrete', 'chunk', 'and', 'he', 'laid', 'it', 'across', 'a', 'rail', 'near', 'his', 'decoto', ',', 'california', 'home', '.'], ['it', 'is', 'headed', 'by', 'the', 'chief', 'judge', 'of', 'abia', 'state', ',', 'who', 'is', 'appointed', 'by', 'the', 'abia', 'state', 'governor', 'through', 'the', 'approval', 'of', 'the', 'abia', 'state', 'house', 'of', 'assembly', '.'], ['he', 'sailed', 'with', 'ken', 'read', ',', 'daryl', 'wislang', ',', 'kelvin', 'harrap', 'and', 'james', 'spithill', 'on', 'board', '``', 'comanche', \"''\", 'in', 'the', '2', '0', '1', '5', 'sydney', 'to', 'hobart', 'yacht', 'race', '.'], ['schoenke', 'and', 'his', 'wife', 'of', '5', '3', 'years', ',', 'nancy', ',', 'reside', 'in', 'rural', 'montgomery', 'county', '.'], ['the', 'cutter', 'was', 'in', 'draft', 'and', 'in', 'length', 'with', 'a', 'beam', '.'], ['a', 'time', 'table', 'was', 'also', 'released', 'revealing', 'that', 'from', 'june', '1', '2', 'to', 'june', '2', '1', 'teasers', 'would', 'be', 'released', ',', 'ending', 'with', 'a', 'showcase', 'on', 'june', '2', '4', 'and', 'the', 'cd', 'release', 'a', 'day', 'later', '.'], ['he', 'went', 'on', 'to', 'receive', 'a', 'degree', 'from', 'the', 'university', 'of', 'tennessee', 'where', 'he', 'played', 'four', 'years', 'of', 'football', 'for', 'the', 'vols', '.'], ['he', 'won', 'a', 'gold', 'medal', 'at', 'the', '1', '9', '8', '0', 'world', 'rowing', 'championships', 'in', 'hazewinkel', 'with', 'the', 'lightweight', 'men', \"'s\", 'double', 'scull', '.'], ['he', 'is', 'the', 'father', 'of', 'actress', 'francia', 'raisa', 'and', 'cynthia', 'benson', '.'], ['wanting', 'to', 'return', 'to', 'the', 'no-holds-barred', 'yet', 'musically', 'challenging', 'sounds', 'of', 'works', 'past', ',', 'the', 'gggarth', 'teaming', 'proved', 'to', 'be', 'the', 'perfect', 'fodder', 'necessary', 'for', 'testament', 'to', 'regain', 'their', 'confidence', '.', \"''\"], ['during', 'world', 'war', 'ii', ',', 'velasco', 'conducted', 'research', 'on', 'the', 'photoperiodism', 'of', 'the', 'rice', 'plant', '.'], ['cathalistis', 'secularis', 'is', 'a', 'moth', 'in', 'the', 'family', 'eriocottidae', '.'], ['he', 'also', 'serves', 'as', 'deputy', 'director', 'of', 'russian', 'state', 'tv', 'holding', 'company', 'vgtrk', '.'], ['white', 'tells', 'russell', 'that', 'case', 'will', 'pay', 'him', 'a', 'substantial', 'sum', 'if', 'he', 'destroys', 'the', 'contents', 'of', 'the', 'box', '.'], ['parade', 'of', 'personalities', \"''\", ';', 'however', ',', 'he', 'praised', 'mondale', 'for', 'his', 'choice', '.'], ['two', 'years', 'after', 'its', 'founding', ',', 'healthsouth', 'became', 'a', 'publicly', 'traded', 'company', '.'], ['the', 'school', 'roll', 'is', '8', '3', '5', 'male', 'students', '.'], ['urination', 'is', 'the', 'ejection', 'of', 'urine', 'from', 'the', 'urinary', 'bladder', 'through', 'the', 'urethra', 'to', 'the', 'outside', 'of', 'the', 'body', '.'], ['the', 'procedure', 'includes', 'selection', 'of', 'low', 'cost', 'and', 'climate', 'friendly', 'electric', 'rate', 'plans', '.'], ['the', 'cyprus', 'dispute', 'weakened', 'the', 'greek', 'government', 'of', 'george', 'papandreou', 'and', 'triggered', ',', 'in', 'april', '1', '9', '6', '7', ',', 'a', 'military', 'coup', 'in', 'greece', '.'], ['he', 'tells', 'her', 'she', 'never', 'made', 'him', 'happy', ',', 'but', 'still', 'she', 'persists', 'and', 'tries', 'to', 'bring', 'his', 'demon', 'out', '.'], ['his', 'talent', 'included', 'locating', 'and', 'winning', 'state', 'funds', 'available', 'for', 'the', 'construction', 'of', 'schools', 'for', 'blacks', 'and', 'contributions', 'from', 'wealthy', 'individuals', ',', 'white', 'and', 'black', '.'], ['the', 'hachiko', 'line', 'derailment', 'in', '1', '9', '4', '7', 'is', 'japan', \"'s\", 'worst', 'rail', 'accident', 'since', 'world', 'war', 'ii', 'in', 'terms', 'of', 'fatalities', '.'], ['elros', 'chose', 'mortality', ',', 'the', 'gift', 'of', 'men', ',', 'founding', 'the', 'line', 'of', 'the', 'kings', 'of', 'númenor', ';', 'his', 'descendant', 'at', 'the', 'time', 'of', 'the', 'war', 'of', 'the', 'ring', 'was', 'aragorn', ',', 'one', 'of', 'the', 'fellowship', 'of', 'the', 'ring', ',', 'who', 'married', 'elrond', \"'s\", 'daughter', ',', 'arwen', '.'], ['one', 'of', 'the', 'spare', 'satellites', 'is', 'now', 'displayed', 'in', 'the', 'us', 'national', 'air', 'and', 'space', 'museum', '.'], ['many', 'of', 'these', 'album', 'releases', 'have', 'made', 'it', 'to', 'the', 'top', 'of', 'the', 'danish', 'albums', 'chart', '.'], ['it', 'was', 'the', 'richest', 'tournament', 'in', 'women', \"'s\", 'golf', 'in', '1', '9', '8', '3', ';', 'the', '$', '4', '0', '0', ',', '0', '0', '0', 'purse', 'was', 'double', 'that', 'of', 'the', '1', '9', '8', '3', 'u.s.', 'women', \"'s\", 'open', '.'], ['in', 'the', 'qualifier', ',', 'each', 'shooter', 'fires', '6', '0', 'shots', 'with', 'a', 'rifle', 'at', '5', '0', 'metres', 'distance', 'from', 'the', 'prone', 'position', '.'], ['after', 'retirement', 'from', 'the', 'jamaat', 'he', 'is', 'engaged', 'in', 'translation', 'of', 'rare', 'islamic', 'manuscripts', 'into', 'the', 'hindi', 'language', '.'], ['samson', \"'s\", 'collection', 'of', 'stories', ',', '``', 'perfect', 'lives', \"''\", ',', 'was', 'published', 'in', 'november', '2', '0', '1', '0', 'by', 'virago', 'press', '.'], ['it', 'stars', 'paul', 'muni', '(', 'in', 'his', 'last', 'film', 'appearance', ')', ',', 'david', 'wayne', ',', 'betsy', 'palmer', ',', 'billy', 'dee', 'williams', '(', 'in', 'his', 'film', 'debut', ')', ',', 'and', 'godfrey', 'cambridge', '.'], ['potassium', ',', 'sodium', ',', 'calcium', ',', 'magnesium', ',', 'aluminium', ',', 'zinc', ',', 'iron', ',', 'lead', ',', 'hydrogen', ',', 'copper', ',', 'mercury', ',', 'silver', 'gold'], ['marvin', 'nathan', 'kaye', '(', 'born', '1', '0', 'march', '1', '9', '3', '8', ')', 'is', 'an', 'american', 'mystery', ',', 'fantasy', ',', 'science', 'fiction', ',', 'and', 'horror', 'author', 'and', 'editor', '.'], ['he', 'also', 'regularly', 'dubs', 'woody', 'harrelson', ',', 'javier', 'bardem', ',', 'ralph', 'fiennes', ',', 'temuera', 'morrison', 'and', 'ricky', 'gervais', 'in', 'most', 'of', 'their', 'movies', '.'], ['a', 'federal', 'court', 'found', 'that', 'the', 'facility', 'had', 'violated', 'the', 'constitutional', 'rights', 'of', 'the', 'children', 'there', 'by', 'housing', 'an', 'average', 'of', '7', '1', 'individuals', 'a', 'night', 'at', 'the', 'receiving', 'home', '.'], ['after', 'working', 'as', 'a', 'town', 'planner', 'for', 'several', 'years', ',', 'anne', 'marie', 'turned', 'her', 'attention', 'to', 'fiction', 'writing', '.'], ['the', 'prefectural', 'government', ',', 'niigata', 'university', ',', 'citizen', \"'s\", 'organisations', ',', 'and', 'local', 'people', 'all', 'worked', 'together', 'to', 'uncover', 'the', 'cause', '.'], ['williams', 'used', '3', 'ampeg', 'svt-', '8', '1', '0', 'e', 'cabinets', 'with', '2', 'svt-', '4', 'pro', 'heads', ',', 'but', 'if', 'there', 'was', 'any', 'interference', 'with', 'the', 'wireless', 'systems', ',', 'he', 'used', 'cables', 'in', 'his', 'live', 'performances', '.'], ['the', 'first', 'railway', 'in', 'the', 'city', 'was', 'built', 'in', '1', '8', '7', '4', 'connecting', 'it', 'with', 'the', 'ottoman', 'capital', ',', 'and', 'in', '1', '8', '8', '8', ',', 'it', 'was', 'linked', 'with', 'sofia', '.'], ['he', 'argued', 'that', '``', 'fifty', 'years', 'ago', 'one', 'would', 'not', 'have', 'dreamed', 'that', 'science', 'would', 'defend', 'the', 'fact', 'that', 'asia', 'was', 'the', 'home', 'of', 'the', 'black', 'races', 'as', 'well', 'as', 'africa', ',', 'yet', 'it', 'has', 'done', 'just', 'that', 'thing', '.', \"''\"], ['the', 'current', 'structure', 'sits', 'on', 'the', 'site', 'of', 'a', 'former', 'motte-and-bailey', 'castle', '.'], ['the', 'game', 'supports', 'use', 'of', 'the', 'sega', 'light', 'phaser', '.'], ['thachil', 'variyath', 'is', 'the', 'patriarch', 'of', 'the', 'family', 'who', 'migrated', 'to', 'kuthiathode', '.'], ['this', 'search', 'led', 'to', 'the', 'isolation', 'and', 'identification', 'of', 'three', 'distinct', 'classes', 'of', 'bovine', 'retroviruses', '.'], ['after', 'her', 'move', ',', 'creelman', ',', 'then', '5', '7', ',', 'brought', 'a', 'suit', 'against', 'the', 'pennsylvania', 'railroad', 'company', 'after', 'a', 'fall', 'going', 'down', 'the', 'stairs', 'of', 'penn', 'station', '.'], ['the', 'spread', 'of', 'the', 'disease', 'is', 'believed', 'to', 'have', 'been', 'mediated', 'by', 'common', 'chaffinches', ',', 'as', 'large', 'numbers', 'of', 'the', 'birds', 'breed', 'in', 'northern', 'europe', 'and', 'winter', 'in', 'great', 'britain', '.'], ['he', 'was', 'selected', 'by', 'the', 'los', 'angeles', 'kings', 'in', 'the', '7', 'th', 'round', '(', '2', '0', '6', 'th', 'overall', ')', 'of', 'the', '2', '0', '0', '5', 'nhl', 'entry', 'draft', '.'], ['many', 'of', 'the', 'protesters', 'held', 'photographs', 'of', 'their', 'missing', 'relatives', ',', 'containing', 'captions', 'with', 'names', 'and', 'the', 'dates', 'they', 'disappeared', '.'], ['following', 'various', 'medical', 'uses', 'and', 'renovations', ',', 'the', 'structure', 'is', 'now', 'the', 'peter', 'držaj', 'hospital', '(', ')', '.'], ['the', 'immaculate', 'heart', 'of', 'mary', 'seminary', 'high', 'school', '(', 'now', 'phased', 'out', ')', 'and', 'college', 'departments', 'in', 'tagbilaran', 'city', ',', 'bohol', ',', 'philippines', 'have', 'produced', 'people', 'that', 'have', 'found', 'their', 'niches', 'in', 'society', ',', 'occupying', 'positions', 'locally', 'as', 'well', 'as', 'internationally', '.'], ['using', 'the', 'first', 'person', 'plural', ',', 'it', 'includes', 'everyone', 'in', 'singing', 'praises', 'with', 'the', 'angels', 'because', 'the', 'long-awaited', 'guest', 'has', 'finally', 'appeared', '.'], ['it', 'ran', 'from', '1', '9', '9', '0', 'to', '1', '9', '9', '5', '.'], ['he', 'was', 'a', 'recipient', 'of', 'the', '2', '0', '1', '9', '``', 'taiwan', 'fellowship', \"''\", 'grant', 'awarded', 'by', 'the', 'ministry', 'of', 'foreign', 'affairs', 'of', 'the', 'r.o.c', '.'], ['she', 'was', 'offered', 'a', 'contract', ',', 'but', 'turned', 'it', 'down', '.'], ['jasmine', 'investigates', 'the', 'care', 'home', 'where', 'jac', 'and', 'fran', 'grew', 'up', ',', 'as', 'she', 'feels', 'that', 'jac', \"'s\", 'childhood', 'is', 'to', 'blame', 'for', 'their', 'poor', 'relationship', '.'], ['it', 'was', 'not', 'until', 'frank', 'stranahan', 'arrived', 'in', 'the', 'area', 'in', '1', '8', '9', '3', 'to', 'operate', 'a', 'ferry', 'across', 'the', 'new', 'river', ',', 'and', 'the', 'florida', 'east', 'coast', 'railroad', \"'s\", 'completion', 'of', 'a', 'route', 'through', 'the', 'area', 'in', '1', '8', '9', '6', ',', 'that', 'any', 'organized', 'development', 'began', '.'], ['menden', 'also', 'has', 'clubs', 'for', 'basketball', ',', 'tennis', ',', 'swimming', ',', 'dancing', ',', 'volleyball', ',', 'boxing', 'and', 'contests', ',', 'matches', 'and', 'demonstrations', 'can', 'be', 'attended', 'nearly', 'every', 'weekend', '.'], ['lead', 'vocalist', 'dawn', 'michele', 'said', 'that', 'the', 'recording', 'process', 'was', '``', 'one', 'of', 'the', 'most', 'hectic', 'times', 'in', 'our', 'lives', 'because', 'we', 'had', 'about', 'six', 'years', 'to', 'write', 'the', 'first', 'album', 'and', 'about', 'six', 'months', 'to', 'write', 'the', 'second', 'one', \"''\", '.'], ['in', '2', '0', '0', '5', ',', '``', 'the', 'journal', 'news', \"''\", 'expanded', 'its', 'custom', 'publishing', 'division', 'and', 'began', 'publishing', 'a', 'series', 'of', 'suburban', 'lifestyle', 'magazines', 'about', 'the', 'lower', 'hudson', 'valley', 'region', '.'], ['the', 'first', 'monograph', 'on', 'her', 'work', 'was', 'in', 'its', 'third', 'printing', 'as', 'of', '2', '0', '1', '3', '.'], ['it', 'was', 'at', 'this', 'time', 'that', 'many', 'handsome', 'stone', 'villas', 'were', 'built', 'on', 'wide', 'thoroughfares', ',', 'with', 'practically', 'every', 'second', 'house', 'becoming', 'a', 'lodging', 'house', 'as', 'bridge', 'of', 'allan', 'became', 'a', 'renowned', 'spa', 'town', ',', 'especially', 'during', 'the', 'boom', 'years', 'of', 'hydropathic', 'establishments', '.'], ['krue-on', 'has', 'created', 'a', 'number', 'of', 'solo', 'works', ',', 'in', 'addition', 'to', 'collaborating', 'with', 'other', 'artists', 'and', 'presenting', 'exhibitions', 'at', 'galleries', 'and', 'institutions', '.'], ['following', 'his', 'military', 'service', ',', 'he', 'collaborated', 'with', 'joseph', 'fields', 'to', 'write', 'the', 'screenplay', 'for', 'the', 'marx', 'brothers', '1', '9', '4', '6', 'film', '``', 'a', 'night', 'in', 'casablanca', \"''\", '.'], ['the', 'town', 'shares', 'its', 'name', 'with', 'the', 'wangdue', 'phodrang', 'dzong', 'built', 'in', '1', '6', '3', '8', 'that', 'dominates', 'the', 'district', '.'], ['it', 'was', 'produced', 'by', 'frequent', 'collaborator', 'mike', 'will', 'made', 'it', ',', 'and', 'featured', 'a', 'guest', 'appearance', 'by', 'cap', '.', '1', '.'], ['according', 'to', 'chimaera', 'mythology', ',', 'after', 'her', 'sister', 'ellai', 'was', 'raped', 'by', 'the', 'sun', ',', 'she', 'shed', 'tears', 'that', 'became', 'the', 'chimaera', '.'], ['due', 'to', 'equipment', 'failure', 'in', '2', '0', '0', '8', ',', 'the', 'station', \"'s\", 'analog', 'signal', 'operated', 'at', 'reduced', 'power', '(', '1', ',', '5', '0', '0', 'kw', ',', '3', '0', '%', 'of', 'normal', ')', 'until', 'it', 'switched', 'entirely', 'to', 'digital', '.'], ['the', '5', '-inch', 'forward', 'firing', 'aircraft', 'rocket', 'or', 'ffar', 'was', 'an', 'american', 'rocket', 'developed', 'during', 'world', 'war', 'ii', 'for', 'attack', 'from', 'airplanes', 'against', 'ground', 'and', 'ship', 'targets', '.'], ['capel', 'subsequently', 'was', 'a', 'lector', 'of', 'theoretical', 'physics', 'at', 'same', 'the', 'university', 'in', '1', '9', '7', '0', ',', 'and', 'served', 'as', 'professor', 'between', '1', '9', '7', '9', 'and', '1', '9', '8', '3', '.'], ['keen', \"'s\", 'collection', 'of', 'fossils', 'and', 'mollusks', 'she', 'curated', 'were', 'transferred', 'to', 'the', 'california', 'academy', 'of', 'sciences', ',', 'and', 'her', 'publications', 'can', 'still', 'be', 'found', 'at', 'stanford', 'university', '.'], ['the', 'seventh', ',', '1', '6', '2', 'years', 'after', 'jared', ',', 'was', 'that', 'of', 'enoch', 'begotten', 'of', 'jared', '.'], ['in', '1', '9', '0', '7', 'smith', 'and', 'teammates', 'harry', 'smith', 'and', 'charles', 'spittal', 'were', 'charged', 'with', 'assault', 'after', 'beating', 'montreal', 'wanderers', 'players', 'hod', 'stuart', ',', 'ernie', '``', 'moose', \"''\", 'johnson', 'and', 'cecil', 'blachford', 'with', 'their', 'sticks', '.'], ['this', 'approach', 'has', 'greatly', 'simplified', 'the', 'formulation', 'of', 'reagents', '.'], ['a', 'stabbing', 'victim', 'had', 'to', 'be', 'transported', 'in', 'the', 'cab', 'of', 'a', 'fire', 'truck', 'because', 'of', 'the', 'lack', 'of', 'an', 'ambulance', '.'], ['this', 'company', 'surveyed', 'a', 'route', 'from', 'a', 'line', 'of', 'sp', 'lessor', 'oregon', 'and', 'california', 'railroad', 'at', 'natron', ',', 'near', 'springfield', ',', 'over', 'the', 'cascades', 'in', 'the', 'direction', 'of', 'the', 'up', 'near', 'ontario', ',', 'oregon', '.'], ['the', 'population', 'was', '2', '7', '7', 'as', 'of', '2', '0', '0', '2', '.'], ['this', 'was', 'enacted', 'in', 'the', '2', '0', '1', '7', 'finance', 'budget', ',', 'but', 'only', 'for', 'new', 'caia', 'beps', 'schemes', '(', 'e.g', '.'], ['this', 'was', 'vetoed', 'on', 'the', 'grounds', 'that', 'dull', 'uniforms', 'might', 'be', 'confused', 'with', 'those', 'of', 'the', 'enemy', 'and', 'might', 'turn', 'the', 'army', 'into', 'a', 'citizen', 'militia', 'like', 'the', 'boers', '.'], ['she', 'conducted', 'the', 'strings', 'of', 'the', 'royal', 'liverpool', 'philharmonic', 'orchestra', 'at', 'the', '``', 'royal', 'liverpool', 'philharmonic', 'hall', \"''\", 'where', 'julie', 'had', 'orchestrated', 'the', 'scores', '.'], ['lauvøya', 'is', 'an', 'island', 'in', 'the', 'municipality', 'of', 'åfjord', 'in', 'trøndelag', 'county', ',', 'norway', '.'], ['the', 'engine', 'jumped', 'the', 'rails', ',', 'tore', 'up', '3', '0', '0', 'feet', 'of', 'track', ',', 'hit', 'a', 'switch', 'and', 'turned', 'over', '.'], ['in', '1', '9', '5', '0', 'a', 'report', 'on', 'the', 'state', 'of', 'townsville', 'cricket', 'noted', 'that', 'the', 'league', 'was', 'missing', 'players', 'who', 'thrilled', 'spectators', ',', 'and', 'mentioned', 'tait', 'as', 'a', 'former', 'player', 'who', 'had', 'done', 'so', '.'], ['during', 'the', 'second', 'half', 'of', 'the', \"'\", '8', '0', 's', ',', 'kawai', 'developed', 'and', 'released', 'a', 'number', 'of', 'digital', 'synthesizers', '.'], ['the', 'word', 'gluteomics', 'describes', 'the', 'systematic', 'study', 'on', 'the', 't', 'cell', 'stimulatory', 'peptides', 'in', 'celiac', 'disease', '.'], ['the', 'act', 'of', '2', '0', '0', '7', 'criminalizes', 'refusal', 'to', 'register', ',', 'deception', ',', 'and', 'obstruction', 'of', 'immigration', 'authorities', 'by', 'anyone', '.'], ['the', 'competition', 'programme', 'features', 'a', 'total', 'of', '3', '8', 'individual', 'belarusian', 'championship', 'athletics', 'events', ',', '1', '9', 'for', 'men', 'and', '1', '9', 'for', 'women', '.'], ['in', 'december', '2', '0', '0', '5', 'the', 'european', 'union', 'classified', 'the', 'khalistan', 'zindabad', 'force', 'as', 'a', 'terrorist', 'organisation', ',', 'freezing', 'its', 'monetary', 'assets', 'throughout', 'its', '2', '5', 'member', 'countries', '.'], ['appeals', 'from', 'the', 'district', 'courts', 'are', 'made', 'to', 'one', 'of', 'the', '1', '3', 'courts', 'of', 'appeals', ',', 'organized', 'geographically', '.'], ['in', 'its', 'beginnings', 'the', 'carrier', 'operated', 'cargo', 'flights', 'only', ';', 'regular', 'scheduled', 'passenger', 'services', 'commenced', 'in', '2', '0', '0', '0', '.'], ['the', 'average', 'household', 'size', 'was', '2', '.', '6', '7', 'and', 'the', 'average', 'family', 'size', 'was', '2', '.', '5', '0', '.'], ['from', '1', '9', '8', '3', 'to', '1', '9', '8', '7', '``', 'tortuga', \"''\", 'was', 'used', 'as', 'a', 'target', 'ship', 'and', 'based', 'at', 'port', 'hueneme', ',', 'california', '.'], ['equating', 'two', 'of', 'these', 'expressions', 'and', 'algebraically', 'manipulating', 'the', 'equation', 'results', 'in', 'a', 'product', 'of', 'two', 'factors', 'which', 'equal', '0', ',', 'but', 'only', 'one', 'of', 'them', '(', '``', 'a', \"''\", '−', \"''\", 'b', \"''\", ')', 'can', 'equal', '0', 'and', 'the', 'other', 'must', 'be', 'positive', '.'], ['2', '0', '0', 'laps', 'were', 'run', 'on', 'a', 'paved', 'oval', 'track', 'spanning', '.'], ['in', 'fi', '2', '2', 'a', 'maximal', 'set', 'of', '3', '-transpositions', 'all', 'commuting', 'with', 'one', 'another', 'has', 'size', '2', '2', 'and', 'is', 'called', 'a', '``', 'basic', \"''\", 'set', '.'], ['each', 'paralympic', 'sport', 'then', 'has', 'its', 'own', 'classifications', ',', 'dependent', 'upon', 'the', 'specific', 'physical', 'demands', 'of', 'competition', '.'], ['when', 'douglas', 'arrived', 'he', 'did', 'not', 'have', 'much', 'success', 'in', 'trading', ',', 'due', 'to', 'the', 'poor', 'quality', 'iron', 'his', 'ship', 'was', 'carrying', '.'], ['whcu', '(', '8', '7', '0', 'khz', ')', 'is', 'a', 'radio', 'station', 'in', 'ithaca', ',', 'new', 'york', ',', 'that', 'programs', 'a', 'news/talk', 'radio', 'format', '.'], ['according', 'to', 'the', 'united', 'states', 'census', 'bureau', ',', 'the', 'cdp', 'has', 'a', 'total', 'area', 'of', ',', 'of', 'which', 'is', 'land', 'and', ',', 'or', '2', '4', '.', '2', '5', '%', ',', 'is', 'water', '.'], ['as', 'horsham', 'secondary', 'school', 'for', 'girls', 'in', '1', '9', '5', '1', ',', 'it', 'received', 'pupils', 'from', 'broadbridge', 'heath', ',', 'slinfold', ',', 'southwater', ',', 'and', 'colgate', '.'], ['it', 'took', 'place', 'at', 'the', 'st.', 'jakobshalle', 'in', 'basel', ',', 'switzerland', ',', 'from', '2', '4', 'october', 'through', '3', '0', 'october', '2', '0', '0', '5', '.'], ['the', 'rv-', '8', 'incorporated', 'changes', 'as', 'a', 'result', 'of', 'lessons', 'learned', 'in', 'producing', 'the', 'popular', 'rv-', '4', 'design', '.'], ['the', 'westminster', 'senior', 'high', 'school', 'drama', 'program', 'performs', 'three', 'shows', 'a', 'year', '.'], ['obugs', 'has', 'also', 'established', 'mentoring', 'relationships', 'with', 'oakland', 'youth', '.'], ['the', 'supermarket', 'was', 'also', 'expanded', ',', 'extending', 'to', 'what', 'was', 'once', 'the', 'supermarket', \"'s\", 'stock', 'room', '.'], ['the', 'beginning', 'of', 'a', 'more', 'scientific', 'investigation', 'of', 'beauty', 'in', 'general', 'is', 'connected', 'with', 'the', 'name', 'of', 'pere', 'buffier', '(', 'see', '``', 'first', 'truths', \"''\", ')', ',', 'form', ',', 'and', 'illustrates', 'his', 'theory', 'by', 'the', 'human', 'face', '.'], ['in', 'most', 'cases', ',', 'the', 'elevation', 'differences', 'between', 'single', 'array', 'sites', 'are', 'so', 'small', 'that', 'travel-time', 'differences', 'due', 'to', 'elevation', 'differences', 'are', 'negligible', '.'], ['strains', 'b', '(', 'aka', 'top', 'cat', ')', ',', 'c', ',', 'and', 'd', 'were', 'discovered', 'in', 'august', '1', '9', '9', '0', ',', 'october', '1', '9', '9', '0', ',', 'and', 'january', '1', '9', '9', '1', ',', 'respectively', '.'], ['irvine', 'published', '1', '1', 'books', 'for', 'adults', 'before', 'he', 'began', 'his', 'first', 'children', \"'s\", 'series', ',', '``', 'runcible', 'jones', \"''\", ',', 'in', '2', '0', '0', '6', '.'], ['at', 'the', 'top', 'of', 'sveta', 'gera', ',', 'at', 'an', 'altitude', 'of', '1', '1', '7', '8', 'meters', ',', 'there', 'are', 'a', 'telecommunication', 'tower', 'and', 'a', 'military', 'barracks', 'whose', 'location', 'is', 'strategically', 'important', 'to', 'croatia', '.'], ['the', 'most', 'successful', 'retailing', 'area', 'of', 'solihull', ',', 'mell', 'square', 'and', 'solihull', 'high', 'street', 'both', 'now', 'hosting', 'empty', 'units', '.'], ['in', '1', '5', '5', '6', 'he', 'was', 'proctor', 'of', 'the', 'germans', 'in', 'the', 'university', 'of', 'paris', ',', 'and', 'in', 'may', '1', '5', '5', '7', 'was', 'chosen', 'by', 'them', 'to', 'negotiate', 'with', 'the', 'king', 'concerning', 'a', 'tax', 'which', 'he', 'desired', 'to', 'impose', 'on', 'the', 'university', '.'], ['the', 'mission', 'of', 'the', 'stone', 'center', 'is', 'to', 'build', 'and', 'disseminate', 'knowledge', 'related', 'to', 'the', 'causes', ',', 'nature', ',', 'and', 'consequences', 'of', 'multiple', 'forms', 'of', 'socio-economic', 'inequality', '.'], ['jointly', 'commissioned', 'by', 'newham', 'council', 'and', 'west', 'ham', 'united', ',', 'the', 'statue', 'stands', 'at', 'the', 'junction', 'of', 'barking', 'road', 'and', 'green', 'street', ',', 'near', 'the', 'former', 'location', 'of', 'the', 'boleyn', 'ground', '.'], ['clarkson', 'was', 'transferred', 'to', 'the', 'mackay', 'pacific', 'islander', 'hospital', 'in', 'april', '1', '8', '8', '4', 'and', 'replaced', 'at', 'maryborough', 'by', 'dr', 'j', 'raphael', 'joseph', '.'], ['during', 'the', '2', '0', '1', '2', 'sabha', 'clashes', 'a', 'free', 'libyan', 'air', 'force', 'mig-', '2', '1', 'bis', 'and', 'mig-', '2', '1', 'um', 'were', 'deployed', 'to', 'the', 'area', '.'], ['federal', 'reserve', 'governor', 'roger', 'w.', 'ferguson', 'jr.', 'has', 'described', 'in', 'detail', 'this', 'and', 'the', 'other', 'actions', 'that', 'the', 'fed', 'undertook', 'to', 'maintain', 'a', 'stable', 'economy', 'and', 'offset', 'potential', 'disruptions', 'arising', 'in', 'the', 'financial', 'system', '.'], ['the', 'student', 'body', 'is', 'served', 'by', 'south', 'dining', 'hall', 'and', 'north', 'dining', 'hall', '.'], ['local', 'resident', 'alan', 'rogerson', 'refurbished', 'the', 'lamp', 'and', 'it', 'was', 'restored', 'to', 'its', 'rightful', 'place', '.'], ['he', 'became', 'stepfather', 'to', 'her', 'children', ',', 'edward', 'rader', 'and', 'teresa', 'warner', '.'], ['the', 'abdomen', 'is', 'also', 'dark', 'fuscous', ',', 'but', 'the', 'segmental', 'margins', 'are', 'partially', 'white', '.'], ['some', 'iast', 'products', 'require', 'the', 'application', 'to', 'be', 'attacked', ',', 'while', 'others', 'can', 'be', 'used', 'during', 'normal', 'quality', 'assurance', 'testing', '.'], ['from', '2', '0', '1', '2', 'to', '2', '0', '1', '3', ',', 'field', 'played', 'lacey', 'on', '``', 'the', 'client', 'list', \"''\", 'starring', 'jennifer', 'love', 'hewitt', ',', 'on', 'lifetime', '.'], ['``', 'chiloglottis', 'sphaerula', \"''\", 'was', 'first', 'formally', 'described', 'in', '2', '0', '0', '6', 'by', 'david', 'jones', 'from', 'a', 'specimen', 'collected', 'in', 'the', 'barrington', 'tops', 'national', 'park', 'and', 'the', 'description', 'was', 'published', 'in', '``', 'australian', 'orchid', 'research', \"''\", '.'], ['horler', 'takes', 'her', 'boyfriend', 'to', 'another', 'room', ',', 'where', 'she', 'pushes', 'him', 'on', 'the', 'bed', ',', 'takes', 'off', 'his', 'jacket', 'and', 'kisses', 'him', '.'], ['he', 'also', 'left', 'bequests', 'to', 'the', 'institute', 'of', 'electrical', 'engineers', ',', 'the', 'société', 'internationale', 'des', 'electriciens', ',', 'the', 'royal', 'society', ',', 'the', 'académie', 'des', 'sciences', 'de', \"l'institut\", ',', 'and', 'to', 'the', 'royal', 'institution', 'of', 'great', 'britain', '.'], ['fyvel', 'remained', 'in', 'this', 'post', 'until', '1', '9', '4', '9', '.'], ['it', 'turned', 'its', 'attention', 'in', 'this', 'direction', 'shortly', 'after', 'the', 'turn', 'of', 'the', 'twentieth', 'century', '.'], ['in', '1', '9', '6', '6', ',', 'united', 'nations', 'general', 'assembly', 'resolution', '2', '2', '/', '2', '9', 'affirmed', 'for', 'the', 'first', 'time', 'the', 'sahrawi', 'right', 'on', 'self-determination', '.'], ['transcultural', 'exchange', 'is', 'funded', 'through', 'individual', 'and', 'corporate', 'donations', 'as', 'well', 'as', 'organizational', 'grants', '.'], ['directv', 'began', 'carrying', 'the', 'channel', 'on', 'january', '2', '1', ',', '2', '0', '0', '9', '.'], ['schell', \"'s\", 'gradual', 'ascendency', 'into', 'the', 'public', \"'s\", 'attention', 'earned', 'him', 'the', 'title', '``', 'america', \"'s\", 'slowest', 'rising', 'comedian', \"''\", '.'], ['however', ',', 'by', 'the', 'beginning', 'of', 'the', '2', '0', 'th', 'century', ',', 'dessalines', 'began', 'to', 'be', 'reassessed', 'as', 'an', 'icon', 'of', 'haitian', 'nationalism', '.'], ['in', 'enzymology', ',', 'a', 'sulfolactate', 'sulfo-lyase', '(', ',', '``', 'suy', \"''\", ',', '``', 'suyab', \"''\", ',', '``', '3', '-sulfolactate', 'bisulfite-lyase', \"''\", ',', '``', 'sulfolactate', 'sulfo-lyase', \"''\", ')', 'is', 'an', 'enzyme', 'that', 'catalyzes', 'the', 'chemical', 'reaction'], ['they', 'form', 'monogamous', 'pairs', 'for', 'reproduction', ',', 'and', 'nest', 'in', 'palm', 'cavities', 'in', 'the', 'tropics', '.'], ['the', 'police', 'were', 'subjected', 'to', 'a', 'congressional', 'inquiry', 'due', 'to', 'security', 'failures', '.'], ['according', 'to', 'an', 'old', 'tradition', ',', 'the', 'church', 'stands', 'on', 'his', 'grave', '.'], ['parr', 'believed', 'that', 'johnson', \"'s\", 'lobbying', 'had', 'ensured', 'his', 'pardon', ',', 'which', 'cemented', 'their', 'friendship', '.'], ['new', 'products', 'containing', 'cbd', 'after', 'this', 'deadline', 'will', 'require', 'a', 'fully', 'approved', 'application', '.'], ['often', ',', 'this', 'happens', 'through', 'non-point', 'sources', 'including', 'many', 'diffuse', 'sources', '.'], ['active', 'galaxies', 'typically', 'have', 'strong', 'emission', 'over', 'a', 'large', 'portion', 'of', 'the', 'electromagnetic', 'spectrum', 'making', 'them', 'prime', 'targets', 'for', 'multiwavelength', 'observations', '.'], ['mount', 'graham', 'high', 'school', '(', 'mghs', ')', 'is', 'an', 'alternative', 'high', 'school', 'located', 'in', 'safford', ',', 'arizona', '.'], ['in', '1', '4', '3', '2', 'all', 'the', 'island', 'of', 'wieringen', 'officially', 'was', 'designated', 'as', 'one', 'township', 'and', 'received', 'city', 'rights', '.'], ['parker', 'founded', 'the', 'hamitic', 'league', 'of', 'the', 'world', 'in', '1', '9', '1', '7', 'to', '``', 'inspire', 'the', 'negro', 'with', 'new', 'hopes', ';', 'to', 'make', 'him', 'openly', 'proud', 'of', 'his', 'race', 'and', 'of', 'its', 'great', 'contributions', 'to', 'the', 'religious', 'development', 'and', 'civilization', 'of', 'mankind', '.', \"''\"], ['guwange', 'dx', 'is', 'a', 'version', 'for', 'mobile', 'platforms', 'in', 'which', 'the', 'two-part', 'mobile', 'game', 'was', 'merged', 'into', 'a', 'single', 'game', ',', 'with', 'enhanced', 'graphics', '.'], ['in', '2', '0', '1', '1', ',', '``', 'la', 'presse', \"''\", 'rebranded', 'its', 'new-media', 'operations', 'from', 'cyberpresse.ca', 'to', 'lapresse.ca', '.'], ['he', 'opens', 'the', 'door', 'and', 'finds', 'the', 'curtains', 'fluttering', 'in', 'the', 'wind', '.'], ['he', 'was', 'sent', 'to', 'belgium', 'with', 'the', 'british', 'expeditionary', 'force', 'in', 'august', '1', '9', '1', '4', ',', 'but', 'was', 'killed', 'in', 'the', 'rear-guard', 'actions', 'in', 'the', 'forests', 'around', 'villers-cotterêts', 'on', '1', 'september', '1', '9', '1', '4', '.'], ['other', 'people', 'who', 'were', 'considered', 'or', 'auditioned', 'for', 'the', 'role', 'included', 'ben', 'falcone', ',', 'alan', 'tudyk', ',', 'jim', 'zulevic', ',', 'and', 'paul', 'f.', 'tompkins', '.'], ['the', 'partners', 'have', 'presented', 'the', 'museum', 'with', 'a', 'variety', 'of', 'resources', ',', 'including', 'equipment', ',', 'material', 'sources', 'and', 'art', 'works', 'contributing', 'to', 'the', 'development', 'of', 'its', 'collection'], ['it', 'was', 'opened', 'on', '3', 'october', '1', '9', '6', '7', 'in', 'kaluga', ',', 'and', 'is', 'named', 'after', 'konstantin', 'tsiolkovsky', ',', 'a', 'school', 'master', 'and', 'rocket', 'science', 'pioneer', 'who', 'lived', 'most', 'of', 'his', 'life', 'in', 'this', 'city', '.'], ['on', '1', '3', 'june', '2', '0', '0', '8', 'spanish', 'police', 'arrested', '2', '0', 'members', 'of', 'the', 'organisation', \"'s\", 'spanish', 'branch', '.'], ['he', 'gives', 'shirakawa', 'drugged', 'candy', 'and', 'instructs', 'him', 'to', 'deliver', 'them', 'to', 'shizune', ',', 'both', 'knowing', 'that', 'kabamaru', 'is', 'certain', 'to', 'devour', 'them', 'first', '.'], ['after', 'studying', 'at', 'goldsmith', \"'s\", 'college', 'and', 'camberwell', 'school', 'of', 'art', 'he', 'spent', 'time', 'at', 'edinburgh', 'college', 'of', 'art', 'before', 'returning', 'to', 'london', 'to', 'build', 'his', 'reputation', '.'], ['it', 'is', 'the', 'main', 'reserve', 'of', 'the', 'chippewas', 'of', 'rama', 'first', 'nation', '.'], ['jayathirtha', 'was', 'born', 'and', 'brought', 'up', 'in', 'bangalore', ',', 'karnataka', '.'], ['it', 'is', 'revealed', 'when', 'datner', 'dumps', 'two', 'cakes', 'on', 'the', 'faces', 'of', 'doron', 'and', 'moni', 'and', 'run', 'off', 'with', 'her', '.'], ['starting', 'in', '1', '9', '9', '2', ',', 'hamad', \"'s\", 'father', 'handed', 'over', 'responsibility', 'for', 'the', 'day-to-day', 'running', 'of', 'the', 'country', ',', 'including', 'the', 'development', 'of', 'qatar', \"'s\", 'oil', 'and', 'natural', 'gas', 'resources', ',', 'rendering', 'him', 'the', 'effective', 'ruler', '.'], ['the', 'event', 'was', 'held', 'for', 'the', 'first', 'time', 'in', 'july', '2', '0', '1', '0', ',', 'and', 'is', 'held', 'bi-annually', '.'], ['they', 'described', 'joy', 'as', '``', 'suitably', 'self-effacing', 'without', 'being', 'ostentatious', '.', \"''\"], ['these', 'barracks', 'are', 'restored', 'and', 'holds', 'the', 'exhibition', 'space', 'displaying', 'the', 'history', 'of', 'the', 'castle', '.'], ['males', 'had', 'a', 'median', 'income', 'of', '$', '3', '4', ',', '6', '0', '6', 'versus', '$', '2', '7', ',', '0', '8', '6', 'for', 'females', '.'], ['digitalized', 'works', 'include', 'many', 'of', 'the', 'library', \"'s\", 'oldest', 'documents', ',', 'a', 'collection', 'of', 'mexican', 'marriage', 'licenses', ',', 'baptism', 'and', 'criminal', 'records', 'for', 'genealogy', 'purposes', 'and', 'many', 'of', 'the', 'holdings', 'in', 'or', 'related', 'to', 'mexico', \"'s\", 'indigenous', 'languages', '.'], ['in', 'accordance', 'with', 'the', 'treaty', 'of', 'guadalupe', 'hidalgo', ',', 'the', 'park', \"'s\", 'territory', 'extends', 'only', 'to', 'the', 'center', 'of', 'the', 'deepest', 'river', 'channel', 'as', 'the', 'river', 'flowed', 'in', '1', '8', '4', '8', '.'], ['this', 'allowed', 'for', 'the', 'carbon', 'monoxide', 'to', 'be', 'recirculated', 'into', 'the', 'furnaces', 'for', 'heating', 'the', 'retorts', '.'], ['abbott', 'recovered', 'by', 'november', '1', '8', '6', '2', 'and', 'returned', 'to', 'the', 'regiment', 'camped', 'at', 'falmouth', ',', 'virginia', 'across', 'the', 'rappahannock', 'river', 'from', 'fredericksburg', ',', 'virginia', '.'], ['the', 'first', 'school', 'building', 'was', 'replaced', 'in', '1', '9', '3', '7', ',', 'and', 'the', 'second', 'school', 'closed', 'in', '1', '9', '4', '4', '.'], ['she', 'trained', 'with', 'swimming', 'coach', 'george', 'haines', ',', 'who', 'was', 'noted', 'for', 'training', 'future', 'olympic', 'medalists', 'during', 'the', '1', '9', '6', '0', 's', 'and', '1', '9', '7', '0', 's', '.'], ['once', 'the', 'three', 'germ', 'layers', 'have', 'been', 'established', ',', 'cellular', 'differentiation', 'can', 'occur', '.'], ['a', 'parking', 'violation', 'on', 'streets', 'is', 'a', 'traffic', 'crime', ',', 'resulting', 'in', 'fines', '.'], ['another', 'small', 'field', 'contested', 'this', 'race', 'run', 'before', 'a', 'bumper', 'crown', 'at', 'ascot', '.'], ['let', 'the', 'system', 'of', 'particles', '``', 'pi', \"''\", ',', '``', 'i', \"''\", '=', '1', '...', ',', \"''\", 'n', \"''\", 'of', 'masses', '``', 'mi', \"''\", 'be', 'located', 'at', 'the', 'coordinates', 'r', \"''\", 'i', \"''\", 'with', 'velocities', 'v', \"''\", 'i', \"''\", '.'], ['the', 'authors', 'explain', 'the', 'possibility', 'that', 'the', 'german', 'crimes', 'might', 'have', 'been', 'committed', 'by', 'paul', 'mueller', ',', 'the', 'titular', 'serial', 'killer', 'the', 'authors', 'believe', 'killed', 'several', 'families', 'in', 'the', 'united', 'states', 'under', 'similar', 'circumstances', 'between', '1', '8', '9', '8', 'and', '1', '9', '1', '2', '.'], ['to', 'divide', 'a', 'fraction', 'by', 'a', 'whole', 'number', ',', 'you', 'may', 'either', 'divide', 'the', 'numerator', 'by', 'the', 'number', ',', 'if', 'it', 'goes', 'evenly', 'into', 'the', 'numerator', ',', 'or', 'multiply', 'the', 'denominator', 'by', 'the', 'number', '.'], ['the', 'latter', 'is', 'one', 'of', 'two', 'which', 'provided', 'access', 'to', 'the', 'church', 'from', 'the', 'monastic', 'cloister', ';', 'the', 'outline', 'of', 'the', 'second', ',', 'which', 'is', 'plastered', 'over', ',', 'can', 'be', 'seen', 'towards', 'the', 'eastern', 'end', 'of', 'the', 'nave', '.'], ['it', 'is', 'proposed', 'to', 'be', 'extended', 'upto', 'koderma', 'till', '2', '0', '2', '2', '.'], ['evans', 'made', 'a', 'concerted', 'effort', 'to', 'seal', 'the', 'streets', 'of', 'rockhampton', 'with', 'bitumen', ',', 'securing', 'substantial', 'loans', 'to', 'make', 'it', 'happen', '.'], ['nevertheless', ',', 'the', 'ruling', 'family', 'would', 'divide', 'the', 'county', 'when', 'this', 'was', 'considered', 'convenient', 'politically', ',', 'for', 'example', 'in', '1', '4', '5', '6', 'and', 'in', '1', '6', '8', '5', '.'], ['this', 'decision', 'was', 'the', 'catalyst', 'for', 'pixar', 'to', 'lay', 'off', 'its', 'hardware', 'engineers', 'and', 'sell', 'the', 'imaging', 'business', '.'], ['in', '2', '0', '1', '2', ',', 'its', 'shutdown', 'for', 'end', 'of', 'the', '2', '0', '1', '3', 'was', 'announced', '.'], ['he', 'introduced', 'a', 'street', 'grid', ',', 'water', 'sources', 'and', 'a', 'reconstructed', 'convent', '.'], ['hits', 'and', 'exit', 'wounds', 'is', 'a', 'retrospective', 'album', 'by', 'alabama', '3', ',', 'featuring', 'several', 'different', 'versions', 'of', 'well-known', 'tracks', 'taken', 'from', 'all', 'of', 'their', 'albums', ',', 'and', 'two', 'previously', 'unreleased', 'tracks', '.'], ['earl', 'balmer', \"'s\", 'ride', 'with', 'the', 'guardrail', 'would', 'result', 'in', 'his', 'unfortunate', 'accident', 'on', 'lap', '1', '8', '5', ';', 'where', 'he', 'would', 'end', 'up', 'with', 'a', '3', '0', 'th-place', 'finish', '.'], ['milan', 'has', 'earned', 'the', 'right', 'to', 'place', 'a', 'star', 'on', 'its', 'jersey', 'in', 'recognition', 'of', 'the', 'fact', 'that', 'it', 'has', 'won', 'at', 'least', 'ten', '``', 'scudetti', \"''\", '.'], ['he', 'ended', 'up', 'winning', 'his', 'first', 'term', 'in', 'the', 'legislature', 'in', 'a', 'landslide', ',', 'receiving', '6', '4', '%', 'of', 'the', 'vote', 'to', 'carr', \"'s\", '3', '3', '%', 'and', 'polimeni', \"'s\", '3', '%', '.'], ['``', 'the', 'front', 'runner', \"''\", 'had', 'its', 'world', 'premiere', 'at', 'the', 'telluride', 'film', 'festival', 'on', 'august', '3', '1', ',', '2', '0', '1', '8', '.'], ['it', 'was', 'during', 'one', 'of', 'these', 'performances', 'that', 'the', 'song', 'caught', 'the', 'attention', 'of', 'president', 'lyndon', 'b.', 'johnson', 'who', 'had', 'one', 'of', 'his', 'senior', 'military', 'aides', 'write', 'a', 'letter', 'to', 'her', 'thanking', 'her', 'for', 'the', 'contribution', 'of', 'the', 'song', 'and', 'of', 'her', 'performance', '.'], ['the', 'areas', 'affected', 'were', 'home', 'to', '4', '.', '5', 'million', 'people', '.'], ['the', 'traditional', 'residents', 'are', 'of', 'the', 'baoulé', 'tribe', ';', 'however', ',', 'there', 'is', 'also', 'a', 'large', 'dyula', 'population', '.'], ['in', '1', '9', '8', '8', ',', 'he', 'received', 'the', 'distinguished', 'career', 'in', 'science', 'award', 'from', 'the', 'national', 'academy', 'of', 'sciences', '.'], ['she', 'was', 'born', 'to', 'rufino', 'pimentel', 'and', 'manuela', 'fernandez', '.'], ['``', 'sheltering', 'sky', \"''\", 'was', 'cristiani', \"'s\", 'final', 'film', 'with', 'bertolucci', '.'], ['high', 'representative', 'for', 'bosnia', 'and', 'herzegovina', 'miroslav', 'lajčák', 'asked', 'republika', 'srpska', 'authorities', 'not', 'to', 'allow', 'the', 'construction', 'of', 'the', 'cross', '.'], ['on', 'may', '7', ',', 'heightened', 'swells', 'in', 'the', 'charleston', 'harbor', 'drove', 'a', 'sailboat', 'aground', ',', 'forcing', 'the', 'coast', 'guard', 'to', 'rescue', 'the', 'stricken', 'vessel', \"'s\", 'two', 'occupants', '.'], ['her', 'parents', 'were', 'einar', 'þorkelsson', ',', 'secretary', 'general', 'of', 'the', 'althing', ',', 'and', 'ólafía', 'guðmundsdóttir', '.'], ['other', 'tablets', 'from', 'the', 'istanbul', 'collection', ',', 'numbers', 'ni', '2', '5', '1', '0', 'and', '2', '5', '1', '8', 'were', 'translated', 'by', 'edward', 'chiera', 'in', '1', '9', '2', '4', 'in', '``', 'sumerian', 'religious', 'texts', \"''\", '.'], ['all', 'of', 'these', 'sources', 'combined', 'only', 'supplied', '1', '.', '3', '%', 'of', 'global', 'energy', 'in', '2', '0', '1', '3', 'as', 'of', 'coal', 'was', 'burned', 'annually', '.'], ['on', '3', '0', 'august', 'his', 'creditors', 'went', 'to', 'court', ';', 'de', 'neufville', 'was', 'not', 'granted', 'an', 'extension', 'till', '2', '5', 'october', '1', '7', '6', '3', '?'], ['he', 'then', 'fights', 'gally', ',', 'who', 'slices', 'off', 'his', 'right', 'arm', 'with', 'a', 'kick', 'before', 'knocking', 'him', 'into', 'the', 'sewers', '.'], ['from', '2', '0', '1', '3', 'to', '2', '0', '1', '5', 'he', 'toured', 'extensively', 'with', 'the', 'royal', 'national', 'theatre', \"'s\", '``', 'war', 'horse', \"''\", ',', 'which', 'played', 'to', 'audiences', 'at', 'venues', 'throughout', 'the', 'united', 'kingdom', ',', 'dublin', 'and', 'south', 'africa', '.'], ['when', 'mlb', 'rosters', 'expanded', 'on', 'september', '1', ',', '1', '9', '6', '2', ',', 'smith', 'was', 'added', 'to', 'the', 'dodgers', \"'\", 'pitching', 'staff', 'for', 'the', 'stretch', 'run', 'as', 'they', 'fought', 'furiously', 'for', 'the', 'national', 'league', 'pennant', 'with', 'the', 'san', 'francisco', 'giants', '.'], ['the', 'basic', 'idea', 'is', 'that', 'a', 'dielectric', ',', 'which', 'is', 'normally', 'insulating', ',', 'can', 'be', 'made', 'to', 'conduct', 'through', 'a', 'filament', 'or', 'conduction', 'path', 'formed', 'after', 'application', 'of', 'a', 'sufficiently', 'high', 'voltage', '.'], ['the', 'site', 'now', 'known', 'as', 'toowoomba', 'was', 'eventually', 'considered', 'to', 'be', 'in', 'a', 'more', 'suitable', 'location', 'for', 'access', 'down', 'the', 'range', 'and', 'in', '1', '8', '5', '2', ',', 'a', 'town', 'survey', 'was', 'secured', '.'], ['the', 'pass', ',', 'lying', 'on', 'the', 'madera-mono', 'county', 'border', ',', 'is', 'within', 'the', 'mammoth', 'ranger', 'district', 'of', 'the', 'inyo', 'national', 'forest', 'and', 'located', 'near', 'devils', 'postpile', 'national', 'monument', ',', 'mammoth', 'lakes', ',', 'and', 'mammoth', 'mountain', '.'], ['the', 'moors', 'have', 'been', 'a', 'water', 'catchment', 'area', 'since', 'the', 'victorian', 'era', 'when', 'several', 'reservoirs', 'were', 'built', ',', 'along', 'with', 'their', 'associated', 'catchwaters', 'in', 'the', 'wessenden', 'valley', '.'], ['jung', \"'s\", 'definition', 'of', 'attitude', 'is', 'a', '``', 'readiness', 'of', 'the', 'psyche', 'to', 'act', 'or', 'react', 'in', 'a', 'certain', 'way', \"''\", '.'], ['during', 'that', 'tenure', 'he', 'also', 'acted', 'as', 'managing', 'editor', 'of', 'twentieth', 'century', 'catholicism', ',', 'a', 'short-lived', 'periodical', '.'], ['afterwards', ',', 'it', 'passes', 'through', 'the', 'north', 'side', 'of', 'shawnee', '.'], ['amendola', 'was', 'signed', 'off', 'the', 'eagles', \"'\", 'practice', 'squad', 'by', 'the', 'st.', 'louis', 'rams', 'on', 'september', '2', '2', ',', '2', '0', '0', '9', '.'], ['goldmark', 'was', 'largely', 'self-taught', 'as', 'a', 'composer', ',', 'and', 'he', 'supported', 'himself', 'in', 'vienna', 'playing', 'the', 'violin', 'in', 'theatre', 'orchestras', ',', 'at', 'the', 'carlstheater', 'and', 'the', 'privately', 'supported', 'viennese', 'institution', ',', 'the', 'theater', 'in', 'der', 'josefstadt', '.'], ['he', 'graduated', 'with', 'a', 'bachelor', \"'s\", 'degree', 'in', 'accounting', 'in', '1', '9', '8', '2', '.'], ['robert', 'also', 'drops', 'in', 'on', 'his', 'elderly', 'father', 'to', 'berate', 'him', 'for', 'disrespecting', 'robert', \"'s\", 'mother', '.'], ['the', 'array', 'is', 'capable', 'of', 'providing', '1', '.', '4', 'kw', 'at', 'peak', 'sunlight', ',', 'which', 'can', 'drive', 'the', 'motor', 'directly', 'or', 'feed', 'excess', 'power', 'into', 'the', 'lithium', 'iron', 'phosphate', 'battery', 'pack', '.'], ['he', 'was', 'a', 'member', 'of', 'the', 'wisconsin', 'state', 'assembly', 'and', 'the', 'wisconsin', 'state', 'senate', '.'], ['in', '1', '9', '7', '7', ',', 'in', 'light', 'of', 'the', 'different', 'policies', 'and', 'widening', 'standards', 'of', 'economic', 'development', 'in', 'its', 'participating', 'countries', ',', 'the', 'east', 'african', 'union', 'broke', 'up', ',', 'and', 'all', 'of', 'its', 'joint', 'structures', 'were', 'also', 'dissolved', '.'], ['it', 'was', 'their', 'last', 'studio', 'album', 'for', 'warner', 'bros.', 'records', '.'], ['it', 'is', 'soluble', 'in', 'acetone', ',', 'boiling', 'water', ',', 'hot', 'alcohol', ',', 'hot', 'chloroform', 'and', 'ether', '.'], ['the', 'nhl', \"'s\", 'washington', 'capitals', 'and', 'the', 'nba', \"'s\", 'washington', 'wizards', '(', 'formerly', 'the', 'baltimore', 'bullets', ',', 'then', 'washington', 'bullets', ')', 'used', 'to', 'play', 'in', 'maryland', 'before', 'moving', 'in', '1', '9', '9', '7', 'to', 'a', 'newly', 'constructed', 'verizon', 'center', 'arena', 'in', 'downtown', 'washington', 'in', 'the', 'district', 'of', 'columbia', '.'], ['returning', 'to', 'sea', 'duty', ',', 'he', 'commanded', 'the', 'uss', 'spiegel', 'grove', ',', 'the', 'south', 'atlantic', 'recovery', 'vessel', 'for', 'the', 'apollo', '1', '3', 'lunar', 'mission', '.'], ['they', 'are', 'the', 'bridge', 'that', 'connects', 'past', 'to', 'present', ',', 'matter', 'to', 'spirit', ',', 'tradition', 'to', 'progress', '.'], ['hong', 'kong', 'has', 'had', 'a', 'separate', 'delegation', 'since', 'the', '9', 'th', 'npc', 'in', '1', '9', '9', '8', ',', 'and', 'macau', 'since', 'the', '1', '0', 'th', 'npc', 'in', '2', '0', '0', '3', '.'], ['in', 'the', 'attempt', 'to', 'please', 'flora', ',', 'with', 'whom', 'he', 'has', 'long', 'been', 'enamored', ',', 'nick', 'copies', 'the', 'data', 'onto', 'a', 'service', 'droid', 'and', 'sends', 'it', 'to', 'flora', \"'s\", 'house', '.'], ['in', '1', '9', '9', '4', ',', 'he', 'became', 'the', 'head', 'coach', 'of', 'the', 'anaheim', 'splash', 'in', 'the', 'continental', 'indoor', 'soccer', 'league', '.'], ['preferring', 'canadians', 'over', 'americans', 'if', 'one', 'is', 'canadian', ',', 'and', 'vice', 'versa', 'if', 'one', 'is', 'american', ')', '.'], ['many', 'rhynes', 'in', 'england', 'and', 'wales', 'are', 'maintained', 'as', 'part', 'of', 'the', 'water', 'resource', 'management', 'operations', 'of', 'internal', 'drainage', 'boards', '.'], ['independence', 'high', 'school', 'had', 'their', 'first', 'class', 'in', '2', '0', '0', '8', ',', 'with', 'the', 'first', 'graduating', 'class', 'in', '2', '0', '1', '1', '.'], ['it', 'occupies', 'a', 'position', 'overlooking', 'the', 'village', 'in', 'a', 'curve', 'of', 'the', 'river', 'wenning', '.'], ['the', 'airport', 'project', 'was', 'implemented', 'by', 'the', 'philippine', 'government', 'through', 'the', 'department', 'of', 'transportation', 'and', 'communications', '.'], ['his', 'works', 'were', 'published', 'by', 'boosey', 'and', 'hawkes', 'in', 'london', '.'], ['farruko', 'released', 'his', 'first', 'song', '``', 'sexo', 'fuera', 'del', 'planeta', \"''\", 'in', '2', '0', '0', '9', 'through', 'the', 'internet', 'and', 'gained', 'fame', 'in', 'puerto', 'rico', '.'], ['``', 'merlin', \"''\", 'set', 'and', 'held', 'the', 'course', 'record', 'between', '1', '9', '7', '7', 'and', '1', '9', '9', '7', ',', 'making', 'the', '1', '9', '7', '7', 'crossing', 'in', 'only', '8', 'days', ',', '1', '1', 'hours', 'and', '1', 'minute', '.'], ['holme', '(', '1', '6', '8', '8', ')', 'wrote', ':', '``', '...', 'i', 'have', 'several', 'times', 'put', '[', 'salamander', 'hair', ']', 'in', 'the', 'fire', 'and', 'made', 'it', 'red', 'hot', 'and', 'after', 'taken', 'it', 'out', ',', 'which', 'being', 'cold', ',', 'yet', 'remained', 'perfect', 'wool', '.', \"''\"], ['another', 'method', 'used', 'is', 'referred', 'to', 'as', '``', 'electrofusion', \"''\", '.'], ['the', 'texarkana', 'open', 'was', 'a', 'golf', 'tournament', 'on', 'the', 'nike', 'tour', '.'], ['barry', 'then', 'went', 'on', 'an', 'impressive', 'run', 'in', 'doubles', ',', 'winning', 'three', 'consecutive', 'tournaments', '.'], ['1', ',', '2', 'and', '3', 'positions', 'on', 'the', 'u.s', '.'], ['in', '2', '0', '1', '0', ',', 'she', 'co-edited', 'with', 'theologian', 'anthony', 'b.', 'pinn', '``', 'liberation', 'theologies', 'in', 'the', 'united', 'states', ':', 'an', 'introduction', '.', \"''\"], ['the', 'village', 'has', 'schedule', 'caste', '(', 'sc', ')', 'constitutes', '5', '0', '.', '9', '5', '%', 'of', 'total', 'population', 'of', 'the', 'village', 'and', 'it', 'does', \"n't\", 'have', 'any', 'schedule', 'tribe', '(', 'st', ')', 'population', '.'], ['however', ',', 'there', 'is', 'another', 'pentagon', 'reflecting', 'the', 'top', 'pentagon', 'on', 'the', 'center', 'of', 'the', 'canvas', '.'], ['a', 'total', 'of', '9', ',', '8', '1', '0', 'were', 'under', 'the', 'age', 'of', 'six', ',', 'constituting', '4', ',', '8', '8', '9', 'males', 'and', '4', ',', '9', '2', '1', 'females', '.'], ['george', 'cole', 'replaced', 'robertson', 'hare', 'in', 'the', 'leading', 'role', '.'], ['liz', 'does', 'have', 'some', 'knowledge', 'of', 'cooking', ',', 'though', 'she', 'admits', 'to', 'only', 'using', 'her', 'oven', 'to', 'warm', 'her', 'jeans', 'in', 'the', 'morning', '.'], ['this', 'was', 'followed', 'by', 'numerous', 'angry', 'calls', 'from', 'both', 'concerned', 'listeners', 'and', 'al', \"'s\", 'publicist', ',', 'during', 'which', 'rover', 'defended', 'his', 'line', 'of', 'questioning', '.'], ['the', 'average', 'household', 'size', 'was', '2', '.', '5', '8', 'and', 'the', 'average', 'family', 'size', 'was', '2', '.', '8', '8', '.'], ['though', 'rwanda', 'had', 'formally', 'requested', 'the', 'security', 'council', 'to', 'set', 'up', 'an', 'international', 'tribunal', ',', 'the', 'rwandan', 'government', 'opposed', 'resolution', '9', '5', '5', '.'], ['taddesse', 'tamrat', 'argues', 'that', 'al-maqrizi', 'was', 'right', 'about', 'haqq', \"'s\", 'year', 'of', 'death', ',', 'but', 'confused', 'emperor', 'newaya', 'maryam', 'with', 'his', 'more', 'famous', 'successor', 'dawit', 'i', ';', 'richard', 'pankhurst', ',', 'on', 'the', 'other', 'hand', ',', 'accepts', 'the', 'chronicle', \"'s\", 'date', 'and', 'al-makrizi', \"'s\", 'identification', 'of', 'dawit', 'i', '.'], ['by', 'virtue', 'of', 'his', 'marriage', 'into', 'the', 'kleinwort', 'dynasty', '(', 'of', 'which', 'more', 'presently', ')', ',', 'bennett', 'had', 'acquired', 'a', 'significant', 'german', 'dimension', 'to', 'his', 'family', '.'], ['at', 'the', 'age', 'of', '1', '8', ',', 'fidalgo', 'moved', 'to', 'rio', 'de', 'janeiro', 'and', 'two', 'years', 'later', '(', 'in', '1', '9', '7', '0', ')', 'founded', 'the', 'black', 'professional', 'theater', '.'], ['the', 'core', 'premise', 'behind', 'sa', 'is', 'to', 'give', 'users', 'the', 'ability', 'to', 'spread', 'payments', 'over', 'several', 'years', ',', 'while', 'offering', '``', 'free', \"''\", 'upgrades', 'to', 'newer', 'versions', 'during', 'that', 'time', 'period', '.'], ['other', 'subjects', 'with', 'hay', 'fever', 'reported', 'more', 'significant', 'effects', ',', 'including', 'throat', 'irritation', ',', 'upset', 'stomach', ',', 'and', 'difficulty', 'sleeping', '.'], ['for', 'the', 'next', 'twenty', 'years', 'alan', 'remained', 'a', 'central', 'figure', 'in', 'country', 'gazette', ',', 'playing', 'with', 'notable', 'musicians', 'such', 'as', 'roland', 'white', ',', 'clarence', 'white', ',', 'joe', 'carr', 'and', 'gene', 'wooten', '.'], ['marie', 'johnston', 'died', 'may', '2', '0', ',', '2', '0', '0', '5', 'at', 'the', 'age', 'of', '8', '7', '.'], ['it', 'reached', 'number', '9', 'on', 'the', 'japanese', 'oricon', 'charts', '.'], ['the', 'beermen', 'had', 'an', 'unconventional', 'starting', 'lineup', ',', 'with', 'olsen', 'racela', 'sitting', 'on', 'the', 'bench', 'being', 'replaced', 'by', 'la', 'tenorio', ',', 'which', 'caused', 'jayjay', 'helterbrand', \"'s\", 'offensive', 'game', 'to', 'start', 'badly', 'as', 'tenorio', 'kept', 'tight', 'defense', '.'], ['on', '2', '9', 'march', '1', '9', '9', '9', ',', 'at', 'the', 'outbreak', 'of', 'the', 'nato', 'intervention', 'in', 'the', 'kosovo', 'war', ',', 'dervishi', 'was', 'reported', 'to', 'have', 'been', 'assassinated', '.'], ['the', 'tower', ',', 'a', 'concrete', 'structure', 'square', 'and', 'tall', ',', 'was', 'built', 'by', 'spanish', 'jesuits', 'brought', 'in', 'by', 'the', 'japanese', 'south', 'pacific', 'mandate', 'administration', ',', 'and', 'stood', 'next', 'to', 'an', '1', '8', '6', '0', 'wood-frame', 'church', '.'], ['like', '``', 'tower', 'of', 'evil', \"''\", ',', 'this', 'film', 'also', 'featured', 'nudity', 'and', 'a', 'great', 'deal', 'of', 'violence', '.'], ['these', 'tanks', 'faced', 'the', 'more', 'than', '1', '0', '0', '0', 'soviet', 'tanks', 'in', 'the', 'anglo-soviet', 'invasion', 'in', 'august', '1', '9', '4', '1', '.'], ['its', 'first', 'incarnation', 'was', 'as', 'one', 'of', 'original', 'sixteen', 'electorates', 'created', 'in', '1', '8', '5', '9', ',', 'when', 'queensland', 'became', 'an', 'independent', 'colony', '.'], ['a', 'typical', 'comment', 'was', 'that', 'they', 'were', 'of', '``', 'most', 'objectionable', 'construction', \"''\", 'and', '``', 'usually', 'wet', 'and', 'very', 'foul', \"''\", '.'], ['the', 'channel', 'would', 'timeshare', 'between', '4', 'pm', 'and', '1', '2', 'am', '.'], ['it', 'is', 'near', 'the', 'centre', 'of', 'vienna', 'and', 'was', 'established', 'as', 'a', 'district', 'in', '1', '8', '5', '0', ',', 'but', 'its', 'borders', 'were', 'changed', 'later', '.'], ['the', 'per', 'capita', 'income', 'for', 'the', 'city', 'was', '$', '1', '2', ',', '8', '9', '9', '.'], ['for', 'the', '2', '0', '1', '3', 'holiday', 'season', ',', 'epic', 'has', 'adopted', 'a', 'family', 'from', 'burma', '.'], ['ramesuan', 'came', 'from', 'lop', 'buri', 'and', 'succeeded', 'to', 'the', 'throne', 'of', 'ayutthaya', '.'], ['hayate', ',', 'who', 'has', 'been', 'ordered', 'to', 'put', 'kabamaru', 'out', 'of', 'commission', ',', 'is', 'unwilling', 'to', 'harm', 'him', 'directly', ',', 'so', 'he', 'anonymously', 'contacts', 'shirakawa', 'and', 'manipulates', 'his', 'dislike', 'for', 'kabamaru', '.'], ['under', 'common', 'law', 'practised', 'in', 'the', 'uk', ',', 'evidence', 'is', 'not', 'necessarily', 'automatically', 'inadmissible', 'if', 'obtained', 'unlawfully', '.'], ['farther', 'south', 'lie', 'two', 'other', 'lakes', ',', 'laguna', 'miscanti', 'and', 'laguna', 'miniques', '.'], ['as', 'of', '2', '0', '1', '7', ',', '``', 'home', 'and', 'away', \"''\", 'is', 'the', 'most', 'successful', 'program', 'in', 'logies', 'history', ',', 'having', 'won', '4', '6', 'awards', 'since', 'it', 'premiered', 'in', '1', '9', '8', '8', '.'], ['``', 'the', 'prayer', \"''\", ',', 'his', 'duet', 'with', 'celine', 'dion', 'for', 'the', 'animated', 'film', ',', 'the', 'quest', 'for', 'camelot', ',', 'won', 'the', 'golden', 'globe', 'for', 'best', 'original', 'song', 'and', 'was', 'nominated', 'for', 'an', 'academy', 'award', 'in', 'the', 'same', 'category', '.'], ['the', 'formula_', '1', '0', 'form', 'factor', 'formula_', '1', '1', 'is', 'the', 'electron', \"'s\", 'charge', ',', 'formula_', '1', '2', 'is', 'its', 'static', 'magnetic', 'dipole', 'moment', ',', 'and', 'formula_', '1', '3', 'provides', 'the', 'formal', 'definion', 'of', 'the', 'electron', \"'s\", 'electric', 'dipole', 'moment', '.'], ['born', 'in', 'buffalo', ',', 'new', 'york', ',', 'wirth', 'owned', 'a', 'real', 'estate', 'business', '.'], ['while', 'at', 'sangala', ',', 'bauer', 'is', 'subpoenaed', 'to', 'appear', 'before', 'the', 'senate', 'hearing', ',', 'but', 'he', 'does', \"n't\", 'want', 'to', 'go', '.'], ['after', 'nine', 'months', 'in', 'office', ',', 'prunskienė', 'resigned', 'and', 'later', 'headed', 'the', 'department', 'of', 'agriculture', 'in', 'lithuania', '.'], ['the', 'specific', 'epithet', '(', '``', 'sphaerula', \"''\", ')', 'is', 'a', 'latin', 'word', 'meaning', '``', 'ball', \"''\", 'referring', 'to', 'the', 'shape', 'of', 'the', '``', 'head', \"''\", 'of', 'the', 'insect-like', 'callus', '.'], ['the', 'state', 'of', 'iowa', 'moved', 'the', 'post', 'office', 'in', '1', '8', '8', '0', ',', 'to', 'its', 'present-day', 'location', 'in', 'the', 'northeast', 'corner', '.'], ['for', 'example', ',', 'there', 'exist', 'simple', 'algebraic', 'expressions', 'for', 'angle', 'bisectors', 'in', 'terms', 'of', 'the', 'sides', 'of', 'the', 'triangle', '.'], ['subsequently', ',', 'many', 'allegations', 'of', 'abuse', 'of', 'boys', 'at', 'the', 'school', 'emerged', '.'], ['for', '``', 'roubikia', \"''\", ',', '``', 'coelioxoides', \"''\", 'bees', 'may', 'serve', 'as', 'transport', ',', 'dispersing', 'the', 'mites', 'to', 'different', 'nests', 'of', '``', 'tetrapedia', '.', \"''\"], ['simon', 'left', 'the', 'chorus', 'to', 'join', 'stable', 'mates', 'the', 'sinister', 'cleaners', 'in', '1', '9', '8', '5', ',', 'replacing', 'the', 'drum', 'machine', 'that', 'had', 'featured', 'on', 'their', 'earlier', 'releases', '.'], ['he', 'can', 'also', 'be', 'seen', 'in', 'full', 'flow', 'providing', 'the', 'narration', 'for', 'the', 'silent', 'film', 'fragment', 'in', 'kaizo', 'hayashi', \"'s\", 'homage', 'to', 'this', 'golden', 'age', ',', 'to', 'sleep', 'so', 'as', 'to', 'dream', '(', '``', 'yume', 'miruyoni', 'nemuritai', \"''\", ',', '1', '9', '8', '6', ')', '.'], ['blessings', 'ii', 'sold', 'on', 'april', '2', '9', ',', '2', '0', '0', '7', 'at', 'sothebys', 'singapore', 'and', 'eight', 'horses', 'sold', 'on', 'oct', '2', '2', ',', '2', '0', '0', '6', 'at', 'sothebys', 'singapore', '.'], ['procedures', 'are', 'carried', 'through', 'when', 'the', 'pointer', 'exits', 'a', 'region', '.'], ['orange-crowned', 'warblers', 'are', 'distinguished', 'by', 'their', 'lack', 'of', 'wing', 'bars', ',', 'streaking', 'on', 'the', 'underparts', ',', 'strong', 'face', 'marking', 'or', 'bright', 'colouring', ',', 'resembling', 'a', 'fall', 'tennessee', 'warbler', 'and', 'a', 'black-throated', 'blue', 'warbler', ',', 'both', 'of', 'which', 'are', 'also', 'members', 'of', 'the', 'new', 'world', 'warbler', 'family', '.'], ['it', 'was', 'decided', 'that', 'technical', 'and', 'vocational', 'education', 'in', 'rural', 'areas', 'should', 'accommodate', 'local', 'conditions', 'and', 'be', 'conducted', 'on', 'a', 'short-term', 'basis', '.'], ['pereyra', 'was', 'a', 'member', 'of', 'the', 'argentine', 'national', 'team', 'that', 'took', 'part', 'at', 'the', '2', '0', '1', '5', 'copa', 'américa', ',', 'winning', 'a', 'runners-up', 'medal', '.'], ['it', 'was', 'the', 'first', 'czech', 'bible', 'in', 'which', 'the', 'verses', 'were', 'numbered', '.'], ['he', 'left', 'office', 'in', '1', '9', '4', '1', 'and', 'accepted', 'the', 'position', 'of', 'chancellor', 'of', 'the', 'university', 'of', 'british', 'columbia', 'in', '1', '9', '4', '4', ',', 'a', 'position', 'he', 'held', 'for', 'seven', 'years', '.'], ['because', 'of', 'irrigation', 'needs', ',', 'the', 'water', 'level', 'at', 'the', 'lake', 'sometimes', 'is', 'low', 'enough', 'to', 'kill', 'its', 'self-sustaining', 'fish', ',', 'but', 'during', 'wet', 'years', ',', 'the', 'water', 'can', 'overtop', 'coolidge', 'dam', '.'], ['2', '3', 'april', 'is', 'also', 'one', 'of', 'only', 'three', 'days', 'a', 'year', 'when', 'the', 'palau', 'de', 'la', 'generalitat', ',', 'barcelona', \"'s\", 'principal', 'government', 'building', ',', 'is', 'open', 'to', 'the', 'public', '.'], ['1', '2', '6', 'in', 'the', 'united', 'states', 'and', 'no', '.'], ['he', 'did', '``', 'the', 'youngest', 'profession', \"''\", '(', '1', '9', '4', '3', ')', 'at', 'mgm', '.'], ['tisch', 'is', 'the', 'chairperson', 'of', 'the', 'metropolitan', 'council', 'on', 'jewish', 'poverty', '.'], ['gadi', 'pollack', 'was', 'born', 'in', 'odessa', ',', 'ussr', '(', 'now', 'part', 'of', 'ukraine', ')', 'to', 'a', 'secular', 'jewish', 'family', '.'], ['in', 'addition', ',', 'the', 'group', 'announced', 'its', 'plans', 'to', 'develop', 'the', 'company', 'into', 'a', 'chain', '.'], ['the', 'engine', 'was', 'installed', 'underneath', 'in', 'a', 'nacelle', 'faired-in', 'to', 'the', 'lancaster', \"'s\", 'bomb', 'bay', '.'], ['random', 'encounter', 'is', 'an', 'independent', 'american', 'video', 'game', 'music', 'cover/inspired', 'band', 'from', 'orlando', ',', 'florida', 'that', 'features', 'an', 'accordion', 'as', 'the', 'lead', 'instrument', '.'], ['ghost', 'of', 'mae', 'nak', '(', ')', 'is', 'a', '2', '0', '0', '5', 'thai', 'horror', 'film', 'thriller', 'about', 'a', 'protecting', 'ghost', 'directed', 'and', 'written', 'by', 'british', 'director', 'mark', 'duffield', '.'], ['he', 'also', 'studied', 'jazz', 'with', 'kenny', 'burrell', 'and', 'gary', 'pratt', ',', 'and', 'the', 'sitar', 'with', 'harihar', 'rao', '.'], ['effloresce', 'is', 'the', 'debut', 'studio', 'album', 'by', 'british', 'progressive', 'rock', 'band', 'oceansize', '.'], ['the', 'philosophy', 'of', 'tepron', 'was', 'to', 'address', 'the', '``', 'questao', 'negra', '(', 'black', 'question', ')', \"''\", 'on', 'brazilian', 'stages', '.'], ['a', 'man', 'is', 'serving', 'his', 'prison', 'sentence', 'for', 'armed', 'robbery', '.'], ['the', 'most', 'known', 'of', 'these', 'are', 'the', 'k', 'series', ':', 'kawai', 'k', '1', ',', 'k', '1', 'm', ',', 'k', '1', 'mkii', ',', 'k', '3', '(', 'ssm', '2', '0', '4', '4', '-based', 'filters', ')', ',', 'k', '4', 'and', 'k', '5', '.'], ['his', 'son', ',', 'heir', 'and', 'second', '``', 'conde', 'de', 'cabarrus', \"''\", ',', 'domingo', 'cabarrús', 'galabert', ',', 'held', 'several', 'positions', 'in', 'government', 'and', 'was', 'governor', 'of', 'the', 'provinces', 'of', 'palencia', 'and', 'valladolid', 'among', 'other', 'official', 'posts', '.'], ['an', 'interim', 'director', ',', 'kirk', 'smith', ',', 'led', 'the', 'orchestra', 'for', 'one', 'season', 'following', 'glaihengauz', \"'s\", 'departure', '.'], ['it', 'is', 'the', 'state', 'dog', 'of', 'new', 'hampshire', 'and', 'was', 'recognized', 'by', 'the', 'american', 'kennel', 'club', 'in', 'the', 'working', 'group', 'in', '2', '0', '1', '3', '.'], ['the', 'australian', 'defence', 'force', 'investigative', 'service', '(', 'adfis', ')', 'is', 'the', 'agency', 'responsible', 'for', 'complex', 'and', 'major', 'investigations', 'involving', 'the', 'australian', 'defence', 'force', '.'], ['in', '1', '9', '8', '6', ',', 'at', 'the', 'invitation', 'of', 'pablo', 'milanés', ',', 'manduka', 'traveled', 'to', 'cuba', ',', 'where', 'he', 'recorded', 'the', 'lp', '``', 'sétima', 'vida', \"''\", '.'], ['it', 'is', 'clear', ',', 'however', ',', 'that', 'the', 'speechless', 'donkeys', 'still', 'retain', 'human', 'minds', 'and', 'intelligence', ',', 'as', 'are', 'apparently', 'able', 'to', 'understand', 'the', 'coachman', \"'s\", 'commands', '.'], ['the', 'a.', 'murray', 'mackay', 'bridge', ',', 'known', 'locally', 'as', 'the', 'mackay', 'bridge', 'or', 'the', '``', 'new', 'bridge', \"''\", ',', 'was', 'opened', 'on', 'july', '1', '0', ',', '1', '9', '7', '0', '.'], ['it', 'has', 'always', 'been', 'the', 'intention', 'of', 'every', 'official', 'set', 'of', 'laws', 'of', 'contract', 'bridge', 'to', 'forbid', 'contracts', 'for', 'more', 'than', 'seven', 'tricks', '.'], ['she', 'is', 'known', 'to', 'frequently', 'accompany', 'herself', 'on', 'the', 'harp', ',', 'vielle', 'or', 'portative', 'organ', '(', 'for', 'example', 'in', 'her', 'cd', \"'cantigas\", 'de', 'santa', 'maria', \"'\", ')', '.'], ['however', ',', 'the', 'passive', 'future', 'infinitive', '(', ')', 'is', 'made', 'using', 'the', 'supine', 'of', 'the', 'verb', '.'], ['by-elections', 'are', 'held', 'for', 'any', 'vacancies', 'that', 'arise', 'between', 'the', 'yearly', 'elections', 'on', 'the', 'first', 'thursday', 'of', 'may', '.']]\n" ] } ], "source": [ "print('\\033[1m' + 'Number of sentences in dev set:' + '\\033[0m' + ' {}'.format(len(dev_sentences)))\n", "print('\\033[1m' + 'The dev set contains the following sentences:' + '\\033[0m' + ' {}'.format(dev_sentences))\n", "print('\\033[1m' + 'Number of sentences in train set:' + '\\033[0m' + ' {}'.format(len(train_sentences)))\n", "print('\\033[1m' + 'The train set contains the following sentences:' + '\\033[0m' + ' {}'.format(train_sentences))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "1.2) Extract a vocabulary consisting of the tokens that occur at least 3 times in the train set and output the size of your vocabulary.\n", "Also output the most frequent vocabulary token in the train set, which should be 'the'.\n", "Include the edge token, unknown token, and pad token in the vocabulary." ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "# The following constants were created to store the respective token values:\n", "EDGE_TOKEN = ''\n", "UNKNOWN_TOKEN = ''\n", "PADDING_TOKEN = ''" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [], "source": [ "def extract_vocabulary(sentences):\n", " \"\"\"Extracts the vocabulary from the given sentences, for tokens that occur at least 3 times.\n", " \n", " Args:\n", " sentences (list): A list of sentences, where each sentence is a list of words.\n", " \n", " Returns:\n", " vocabulary (set): The vocabulary, containing tokens that occur at least 3 times.\n", " size: The size of the vocabulary.\n", " most_freq_token: The most frequent token in the vocabulary.\n", " \"\"\"\n", " # Adding the edge, unknown and pad tokens to the vocabulary\n", " vocabulary = [EDGE_TOKEN, UNKNOWN_TOKEN, PADDING_TOKEN]\n", "\n", " # Counting the number of times each token occurs in the sentences\n", " counter = collections.Counter([token for sentence in sentences for token in sentence])\n", "\n", " # Adding all tokens that occur at least 3 times to the vocabulary\n", " vocabulary += [token for token, count in counter.items() if count >= 3]\n", "\n", " # Sorting the vocabulary\n", " vocabulary.sort()\n", "\n", " # Creating a set of the vocabulary\n", " vocabulary = set(vocabulary)\n", " \n", " # Retrieving the most frequent token\n", " most_freq_token = max(counter, key=counter.get)\n", "\n", " # Returning the vocabulary, its size and the most frequent token\n", " return vocabulary, len(vocabulary), most_freq_token" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [], "source": [ "# Extracting the vocabulary from the train set sentences\n", "train_vocab, train_vocab_size, train_most_freq_token = extract_vocabulary(train_sentences)" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[1mSize of vocabulary in train set:\u001b[0m 7874\n", "\u001b[1mMost frequent token in train set:\u001b[0m the\n", "\u001b[1mThe vocabulary of the train set:\u001b[0m {'copyright', 'aspect', 'clothing', 'requires', 'archdiocese', 'eighth', 'pushed', 'disabled', 'antennae', 'hire', 'indicating', 'thought', 'total', '#', 'dawit', 'il-', 'obtain', 'exceptions', 'raped', 'slogan', 'surrounding', 'dover', 'compound', 'falling', 'nd', 'walk', 'shades', 'dela', 'brunswick', 'runway', 'beaches', 'arsenal', 'deployment', 'complicated', 'breeding', 'worn', 'vectors', 'hamburg', 'grains', 'recurring', 'triggering', 'widely', 'architecture', 'opened', 'sands', 'assurance', 'major', 'peer-reviewed', 'virus', 'voiced', 'allegedly', 'controlled', 'filmmakers', 'submission', 'southwest', 'proceedings', 'staircase', 'telephone', 'gameplay', 'subjected', 'boy', 'lying', 'dawn', 'thorax', 'deutsche', 'hull', 'et', 'elephant', 'inverness', 'partially', 'depending', 'recognizes', 'compensation', 'theatre', 'salt', 'shoes', 'wire', 'plan', 'vocals', 'reformed', 'photographs', 'galaxy', 'replace', 'ii', 'holds', 'rented', 'tom', 'technique', 'testimony', 'study', 'something', 'opportunities', 'kids', 'causing', 'newspapers', 'collapse', 'delicate', 'frederick', 'nevada', 'need', 'bills', 'episodes', 'train', 'sometimes', 'finnish', 'magnetic', 'consent', 'shore', 'considered', 'located', 'compete', 'nurse', 'giuseppe', 'berth', 'explain', 'pharmaceutical', 'churchyard', 'resentment', 'commanded', 'art', 'proof', 'slalom', 'geelong', 'driven', 'focus', 'desired', 'depend', 'recording', 'danny', 'rio', 'portuguese', 'sociolinguistic', '', 'athletics', 'banking', 'good', 'br', 'calculated', 'dictionary', 'dominant', 'ali', 'inc.', 'bedroom', 'emergency', 'greek', 'amp', 'dealing', 'gay', 'accident', 'germany', 'handle', 'line-up', 'versions', 'warned', 'celebrity', 'seen', 'refused', 'curve', 'situated', 'usage', 'drawing', 'ahmadinejad', 'cui', 'down', 'conservatory', 'arches', 'explained', 'prior', 'rat', 'spot', 'piece', 'random', 'established', 'irish', 'normandy', 'dolphins', 'else', 'week', 'azerbaijan', 'bird', 'enhanced', 'decision', 'winters', 'initiative', 'candidacy', 'correctly', 'feed', 'tragic', 'fiba', 'deported', 'dr', 'fiction', 'ascot', 'ambassador', 'changed', 'fielding', 'tenure', 'elf', 'mr.', 'ohio', 'tribune', 'lightning', 'any', 'mollusk', 'acts', 'plunder', 'colombian', 'attractions', 'geometry', 'franklin', 'gt', 'possessing', 'attack', 'elk', 'links', 'restricted', 'lady', 'pope', 'illustrations', 'frost', 'bluff', 'wax', 'cords', 'halliday', 'kiss', 'urine', 'revealed', 'dora', 'live', 'boyfriend', 'chain', 'seeks', 'funding', 'lie', 'calculus', 'periods', 'universal', 'published', '(', 'marlins', 'mohr', 'turning', 'influences', 'consisting', 'take', 'informally', 'sullivan', 'cuttlefish', 'kansas', 'struggle', 'public', 'representatives', 'florence', 'proved', 'bright', 'finish', 'rotational', 'hydrogen', 'developments', 'return', 'creature', 'mazarin', 'pollack', 'aβ', 'going', 'incorporates', 'couples', 'snail', 'toscanini', 'horror', 'did', 'breaking', 'rd', 'replied', 'marathon', 'slowly', 'franchises', 'challenge', 'emancipation', 'abia', 'advice', 'romney', 'weight', 'basic', 'fifteen', 'quite', 'nazi', 'valves', 'producer', 'paintings', 'super', 'approaches', 'med', 'simply', 'lydia', 'killer', 'bearings', 'ultrasound', 'version', 'women', 'parks', 'impact', 'refusing', 'accessing', 'filed', 'certificate', 'under', 'whereby', 'al', 'particularly', 'pools', 'dallas', 'qatar', 'institutes', 'naval', 'divorced', 'vacant', 'hutcheson', 'raghu', 'spans', 'outgoing', 'revolution', 'rail', 'josh', 'migrated', 'architectural', 'best', 'affair', 'fowler', 'siggins', 'aria', 'dub', 'soeurs', 'brutality', 'honda', 'mover', 'kate', 'army', 'collection', 'fired', 'discovered', 'automotive', 'agencies', 'whether', 'costa', 'electoral', 'glass', 'france', 'rotterdam', 'rice', 'al-raqqa', 'investment', 'patricia', 'even', 'studio', 'europeans', 'passive', 'ido', 'nh', 'balance', 'cap', 'drummer', 'violence', 'caused', 'zip', 'lithuania', 'fraction', 'shields', 'designer', 'hall', 'apparent', 'hemisphere', 'examined', 'believed', 'framework', 'profound', 'advisor', 'recover', 'trump', 'caribbean', 'craig', 'writes', 'integrated', 'conservation', 'songs', 'honor', 'disappeared', 'diameter', 'told', 'branch', 'cyst', 'object', 'vacated', 'mlb', 'ahmadi', 'g.', 'question', 'rehabilitation', 'sheridan', 'inherited', 'matt', 'less', 'workshops', 'onion', 'active', 'close', 'specialist', 'civil', 'hardware', 'letter', 'prime', 'trinidad', 'dean', 'underlying', 'continuously', 'deputies', 'apollo', 'stakes', 'her', 'heritage', 'viewer', 'photograph', 'scratch', 'severity', 'achievements', 'follows', 'distinguish', 'dark', 'darfur', 'grow', 'tin', 'fixed', 'make', 'sixteen', 'iron', 'convicted', 'knights', 'butterflies', 'she', 'downtown', 'fantasy', 'atom', 'receives', 'portfolio', 'failed', 'temperatures', 'halfway', 'cuts', 'fundamental', 'breed', 'cavalry', 'madagascar', 'separate', 'cbs', 'lubmin', 'nile', 'rectangular', 'ha', 'paradise', 'cartwright', 'yearly', 'video', 'legia', 'society', 'alzheimer', 'consider', 'say', 'sub', 'enzyme', 'cup', 'weapons', 'handling', 'speak', 'complex', 'positions', 'gradual', 'siding', 're-election', 'than', 'winds', 'max', 'retreat', 'limestone', 'activity', 'mccarthy', 'intention', 'christ', 'confused', 'cuba', 'hyderabad', 'conversation', 'presented', 'perhaps', 'sculptures', 'array', 'coup', 'mcphee', 'fit', 'standalone', 'energy', 'brigade', 'grace', 'likely', 'workshop', 'mosque', 'downloaded', 'anteaters', 'eight', 'labor', 'mad', 'vessels', 'territory', 'preceding', 'rhode', 'symbol', 'canal', 'hitchcock', 'pastor', 'sanitary', 'positive', 'forthcoming', 'woman', 'velocity', 'cutting', 'arcus', 'industry', 'changing', 'testament', 'retiring', 'the', 'stop', 'sánchez', 'myself', 'colony', 'effect', 'myra', 'herefordshire', 'supposedly', 'ounces', 'housed', 'joining', 'seminary', 'wear', 'olympics', 'student', 'covers', 'shows', 'regional', 'names', 'statement', 'stands', 'applicants', 'rotary', 'chiang', 'scheduling', 'albany', 'colima', 'providence', 'alabama', 'moran', 'thirteenth', 'fell', 'valuable', 'magic', 'brazil', 'sony', 'yugoslavia', 'aka', 'matthew', 'familiar', 'print', 'manny', 'years', 'styled', 'entrance', 'entire', 'convenient', 'urban', 'prague', 'susanna', 'bounded', 'sergio', 'sothebys', 'custom', 'urged', 'added', 'walked', '0', 'data', 'zealand', 'growth', 'nominated', 'expressions', 'cycle', 'pig', 'ninth', 'currie', 'galaxies', 'reviewed', 'centuries', 'mob', 'merger', 'shop', 'an', 'bremer', 'eddie', 'bbc', 'filmed', 'practiced', 'festivals', 'courthouse', 'planned', 'patron', 'indeed', 'link', 'gupta', 'occasions', 'russell', 'generate', 'outstanding', 'rugby', 'resignation', 'occupies', 'skin', 'arm', 'currently', 'gear', '-', 'happens', 'secret', 'upon', 'free', 'pension', 'engaged', 'bothwell', 'circuit', 'desert', 'jr.', 'stress', 'mayor', 'eating', 'plane', 'bringing', 'literature', 'settlement', 'dublin', 'residents', 'approximately', 'aachen', 'deeper', 'eur', 'nordic', 'lawyer', 'creelman', 'south-east', 'catalogue', 'feudal', 'smooth', 'metal', 'sizes', 'layers', 'victories', 'safety', 'moved', 'threatened', 'mumbai', 'fly', 'wellington', 'desk', 'helen', 'graphic', 'alliance', 'amnesty', 'respect', 'murder', 'monastic', 'kenny', 'pitching', 'jacob', 'avms', 'zimbabwe', 'cinema', 'airports', 'mortally', 'sri', 'storyline', 'but', 'advantage', 'bruce', 'crab', 'personally', 'i', 'arrive', 'bradley', 'donkeys', 'scandinavia', 'complete', 'vulnerable', 'romantic', 'forty', 'parr', 'melam', 'deaths', 'humanities', 'profile', 'rhodes', 'satt', 'democrats', 'herself', 'montgomery', 'danish', 'few', 'tomb', 'nursing', 'topics', 'emigrated', 'equipped', 'fountain', 'pre-sale', 'johannesburg', 'section', 'primary', 'throughout', 'affect', 'onions', 'extent', 'numbered', 'nicolai', 'distinguished', 'temporarily', 'jennifer', 'narrative', 'periodical', 'recruited', 'oswald', 'six', 'departing', 'man', 'mobility', 'law', 'parts', 'driving', 'develop', 'barnes', 'rebecca', 'funds', 'inner', 'theme', 'trailing', 'yet', 'leaf', 'indicated', 'archbishop', 'belong', 'forces', 'baptist', 'attended', 'logic', 'investigated', 'bullets', 'variant', 'northward', 'about', 'low', 'soccer', 'cavan', 'adam', 'regime', 'transportation', 'white', 'science', 'aside', 'comprises', 'craft', 'pick', 'radio', 'completely', 'conjecture', 'was', 'betty', 'drove', 'gauge', 'daniel', 'educational', 'reflect', 'ncac', 'gmina', 'margaret', 'caia', 'writing', 'fire', 'glacier', 'elderly', 'rejection', 'willis', 'coordinated', 'miss', 'channels', 'elizabeth', 'serbia', 'qualified', 'monte', 'planet', 'institut', 'blue', 'lesbian', 'affirmed', 'discarded', 'octopus', 'governance', 'philadelphia', 'knowledge', 'sokółka', 'experiences', 'blank', 'contents', 'continuity', 'anglican', 'arrested', 'local', 'pertaining', 'stayed', 'minimum', 'missiles', 'product', 'jefferson', 'rabbi', 'documentaries', 'leading', 'cattle', 'real', 'eleventh', 'wide', 'professor', 'jurisdiction', 'asian', 'surname', 'wright', 'wyoming', 'peter', 'auditioned', 'carr', 'east-central', 'notification', 'second', 'droid', 'formats', 'fundamentally', 'measures', 'trouble', 'successors', 'wwe', 'chennai', 'march', 'honours', 'ice', 'magical', 'deactivated', 'options', 'enough', 'kingsley', 'movements', 'sitting', 'union', 'downs', 'retail', 'frame', 'grande', 'casting', 'normally', 'healthsouth', 'part-time', 'partnerships', 'raj', 'towers', 'kelvin', 'everyday', 'basis', 'infrastructure', 'th', 'improvements', 'kitchen', 'rats', 'sheltering', 'licensed', 'ya', 'iww', 'base', 'russian', 'large', 'warns', 'big', 'stalin', 'los', 'streak', 'rv-', 'followed', 'unveiled', 'family', 'dissertation', 'britain', 'publication', 'reduction', 'hotel', 'syrian', 'coaches', 'afterwards', 'pittsburgh', 'sum', 'welfare', 'sheffield', 'pack', 'updated', 'average', 'families', 'international', 'alonso', 'since', 'participated', 'drug', 'killed', 'petersburg', 'communes', 'jumping', 'gemina', 'reliance', 'informed', 'sculpture', 'gonzález', 'gómez', 'north-west', 'lake', 'varieties', 'madame', 'susquehanna', 'behavior', 'tactics', 'transition', 'military', 'carter', 'collieries', 'embarked', 'stake', 'isil', 'protest', 'soundtrack', 'camera', 'cells', 'amendment', 'forward', 'dedicated', 'maluku', 'welcome', 'service', 'recalled', 'fans', 'vietnam', 'realizes', 'century', 'bad', 'scouts', 'straight', 'postmaster', 'arkansas', 'ratings', 'recast', 'gentle', 'establish', 'feeding', 'short-lived', 'bulletin', 'relatively', 'subspecies', 'refers', 'enacted', 'forced', 'looked', 'brethren', 'singing', 'crittenton', 'process', 'marker', 'promise', 'jason', 'joseph', 'viewed', 'salmon', 'edited', 'dialects', 'marques', 'stock', 'consumption', 'style', 'varying', 'validity', 'efforts', 'populated', 'jeremy', 'placed', 'dropped', 'sight', 'berlin', 'championship', 'trails', 'diversity', 'bachelor', 'renewed', 'underwent', 'monastery', 'execution', 'candidate', 'blog', 'n', 'square', 'practised', 'florida', 'eligible', 'front', 'upgrade', 'disasters', 'clay', 'rhodesia', 'carbon', 'christians', 'tanu', 'serves', 'seventh', 'tabitha', 'cardiff', 'script', 'worst', 'hospitals', 'mechanical', 'visitor', 'beyond', 'struck', 'bath', 'grammar', 'distant', 'song', 'elevated', 'tested', 'bruynseels', 'queensland', 'recreation', 'dreams', 'gally', 'articles', 'mine', 'lehigh', 'tennessee', 'net', 'license', 'entering', 'adventures', 'diverse', 'thousands', 'wizards', 'node', 'j.', 'poland', 'triumph', 'opens', 'comedian', 'chico', 'newcastle', 'youtube', 'memoir', 'systems', 'greene', 'occupied', 'charge', 'conditions', 'made', 'orange', 'therapy', 'westport', 'sharing', 'initiate', 'improved', 'crisis', 'simple', 'records', 'inn', 'roof', 'cop', 'chair', 'leonard', 'kent', 'controlling', 'refurbished', 'tests', 'confederates', 'priest', 'traveling', 'pregnancy', 'espn', 'north-east', 'muscat', 'after', 'pictures', 'consistent', 'debts', 'stand', 'lab', 'fields', 'generations', '!', 'devoted', 'prop', 'tehran', 'ph', 'alike', 'artistic', 'iranian', 'counted', 'region', 'creates', 'runners', 'wildcat', 'assassination', 'storyteller', 'piano', 'stopped', 'photography', 'democrat', 'electrical', 'no', 'alice', 'view', 'recipients', 'van', 'cnn', 'around', 'liberated', 'sensor', 'suburb', 'evaluate', 'arrangement', 'later', 'fifty', 'brain', 'andrew', 'hamilton', 'volcanic', 'newspaper', 'peaking', 'displayed', 'pan', 'decade', 'lawson', 'platform', 'magazine', 'wait', 'led', 'brotherhood', 'hanau', 'majority', 'referred', 'authority', 'plug-in', 'note', 'johann', 'change', 'disbanded', 'jung', 'alpine', 'include', 'backgrounds', 'solar', 'forcing', 'limburg', 'properties', 'boarding', 'croatian', 'crime', 'imagination', 'forest', 'adams', 'solutions', 'looks', 'outside', 'defensive', 'empire', 'quantum', 'clash', 'orchestrated', 'ridge', 'masonic', 'detailing', 'daho', 'childish', 'southeast', 'eugene', 'prepared', 'illinois', 'engineers', 'apart', 'subsequent', 'encouraged', 'computers', 'memes', 'treasury', 'flowers', 'charlotte', 'unesco', 'baltimore', 'height', 'flattened', 'r', 'bread', 'bryennios', 'income', 'porter', 'puerto', 'gray', 'compared', 'simultaneously', 'showing', 'northwest', 'mathematical', 'single', \"'m\", 'exhibit', 'tories', 'theories', 'well-known', 'manx', 'fox', 'emotional', 'ms.', 'targets', 'potential', 'native', 'sponsor', 'dragons', 'alignment', 'interactive', 'adverse', 'clerk', 'gone', 'new', 'rising', 'b.', 'hansen', 'christmas', 'statue', 'personalities', 'slaves', 'parade', 'content', '×', 'commented', 'ray', 'wharf', 'providing', 'renowned', 'sport', 'jade', 'calling', 'warring', 'committee', 'consistently', 'software', 'scattering', 'gary', 'detail', 'jungle', 'lengths', 'elvis', 'featuring', 'falcons', 'baker', 'bonaduce', 'beans', 'grades', 'navigation', 'instrumental', 'sociolinguistics', 'disguised', 'alberta', 'laundry', 'koufax', 'mps', 'slide', 'operations', 'test', 'northeast', 'conical', 'nationalism', 'uphold', 'brother', 'absence', 'jazz', 'pakistan', 'relevant', 'fun', 'fabric', 'transport', 'concerts', 'atlantic', 'boats', 'ambulance', 'roth', 'attained', 'travelling', 'patriots', 'completion', 'rain', 'manufactured', 'greece', 'step', 'programming', 'steele', 'neural', 'anxiety', 'merely', 'range', 'wetland', 'egypt', 'barker', 'gulf', 'famous', 'lt.', 'minute', 'animal', 'branson', 'mads', 'pass', 'penguin', 'hostile', 'nests', 'pairs', 'politically', 'archaeological', 'council', 'cellular', 'suffer', 'creativity', 'member', 'nine', 'threatens', 'morgan', 'delighted', 'upheld', 'ancient', 'miyamoto', 'prisoner', 'douglas', 'segersven', 'lives', 'inaugural', 'th-century', 'walking', 'government', 'editor', 'occupation', 'formula', 'making', 'ferry', 'compulsory', 'all', 'guernsey', 'concerning', 'likes', 'owners', 'criticized', 'naming', 'col.', 'tackle', 'strength', 'germanic', 'bikini', 'jetboats', 'charter', 'method', 'ministry', 'egg', 'record', 'movie', 'scylla', 'rita', 'commanders', 'utc', 'negative', 'event', 'hero', 'schedule', 'scrapped', 'noriker', 'dissolution', 'augmented', 'f.', 'f', 'alexei', 'results', 'crossed', 'football', 'rome', 'humans', 'monks', 'kuryakin', 'mask', 'taught', 'zero', 'accompanied', 'salvador', 'manuel', 'withdrawals', 'h.', 'involvement', 'biological', 'co.', 'lobby', 'w', 'rich', 'inducted', 'is', 'stating', 'nilsen', 'norfolk', 'łódź', 'flat', 'touring', 'cole', 'true', '=', 'sree', 'upcoming', 'louis', 'leaving', 'gospel', 'tool', 'imprisonment', 'certain', 'comparable', 'san', 'gomes', 'sun', 'exterior', 'housing', 'crops', 'faces', 'pretty', 'recognised', 'every', 'awards', 'abduction', 'rahman', 'ready', 'sought', 'call', 'rocket', 'duchy', 'elevation', 'to', 'grant', 'module', 'held', 'resolution', 'indonesian', 'philosopher', 'noah', 'der', 'ceiling', 'defence', 'will', 'congress', 'belfast', 'most', 'ms', 'himself', 'jews', 'labour', 'tickets', 'get', 'races', 'reassigned', 'night', 'helping', 'paid', 'sunday', 'classic', 'mammoth', 'church', 'residing', 'choir', 'distal', 'defining', 'bridges', 'luxury', 'moisture', 'respectively', 'unlike', 'theory', 'finances', 'court', 'charities', 'lap', 'zhen', 'retire', 'dealership', 'combined', 'produced', 'socio-economic', 'tailor', 'algorithm', 'expected', 'dioxide', 'tribute', 'acclaim', 'installed', 'rodríguez', 'thachil', 'i.e', 'treatment', 'harbor', 'items', 'structure', 'finally', 'by', 'tall', 'regardless', 'deformity', 'customers', 'greatest', 'appropriate', 'latitude', 'least', 'driver', 'sixth', 'industries', 'spiritual', 'hunting', 'index', 'allowed', 'slave', 'videos', 'having', 'marcus', 'banning', 'swiss', 'endorsement', 'cm', 'yorkshire', 'romanized', 'their', 'required', 'austria', 'or', 'repaired', 'armies', 'immediate', 'america', 'sleeping', 'example', 'livingston', 'off-broadway', 'columbus', 'understanding', 'j', 'kičevo', 'conti', 'kid', 'task', 'dc', 'administration', 'reservoir', 'operating', 'provincial', 'discount', 'orleans', 'until', 'higher', 'ant', 'contributing', 'merit', 'brings', 'insufficient', 'donated', 'private', 'connected', 'garrisoned', 'notably', 'abdullah', 'necessarily', 'rather', 'nest', 'he', 'update', 'raise', 'governor', 'surgery', 'spectrum', 'continued', 'minds', 'suggested', 'steps', 'full', 'kick', 'colonizers', 'nationwide', 'one', 'violations', 'escape', 'original', 'january', 'senators', 'measure', 'liga', 'renamed', 'globo', 'chapel', 'missed', 'healthy', 'closest', 'certified', 'declaration', 'possessed', 'protests', 'exhibitions', 'approved', 'standard', 'village', 'narrow', 'croatia', 'threat', 'values', 'interviewed', 'avoiding', 'crystal', 'allmusic', 'speaking', 'metaphor', 'granddaughter', 'vegetables', 'samuel', 'telescope', 'forms', 'ruth', 'harris', 'foster', 'posed', 'smile', 'chemistry', 'tissue', 'needle', 'consisted', 'discrimination', 'tons', 'mit', 'yield', 'born', 'composite', 'implications', '-week', 'trailers', 'buster', 'eaglehawk', 'novel', 'discrete', 'jakarta', 'sibley', 'scholarship', 'occurred', 'role', 'airfield', 'needed', 'sporting', 'simone', 'list', 'pilgrimage', 'arusha', 'plays', 'send', 'pga', 'lewis', 'site', 'bombing', 'incarnation', 'invention', 'fort', 'airlines', 'coffee', 'horrific', 'founding', 'honour', 'pads', 'extensions', 'hosted', 'state-owned', 'reception', 'f-', 'praise', 'tallon', 'historically', 'inmates', 'iraq', 'implied', 'keliher', 'case', 'mt', 'printing', 'campaigns', 'ferguson', 'spelled', 'mill', 'english', 'acanthostega', 'delayed', 'million', 'four', 'forums', 'next', 'lankan', 'leader', 'openly', 'mining', 'texts', 'receiving', 'beetle', 'two-year', 'ball', 'dave', 'duties', 'lanka', 'institute', 'petrel', 'trip', 'restored', 'election', 'violin', 'ill', 'beauty', 'watts', 'threats', 'babies', 'mechanic', 'mrs', 'benson', 'thoughts', 'seemed', 'advertising', 'lexical', 'picked', 'asks', 'wartime', 'none', 'instantly', 'flight', 'concerned', 'rookie', 'chile', 'vocal', 'flights', 'references', 'regarded', 'access', 'plant', 'programs', 'comparative', 'strip', 'increase', 'icebreaker', 'mixed', 'responsibility', 'writers', 'superman', 'agreed', 'dan', 'ski', 'implemented', 'macdonald', 'obregón', '-year-old', 'tripunithura', 'artists', 'humour', 'instance', 'nationale', 'senior', 'length', 'threshold', 'editions', 'itself', 'other', 'difficult', 'spots', 'mixture', 'resented', 'singles', 'balloon', 'spelling', 'sharpe', 'approximate', 'culpeper', 'languages', 'secretariat', 'cash', 'aim', 'application', 'addition', 'string', 'rails', 'investigators', 'kept', 'medley', 'highway', 'courses', 'philip', 'contracted', 'december', 'lords', '−', 'efficiency', 'player', 'gentleman', 'siblings', 'artwork', 'blues', 'lasting', 'club', 'volumes', 'billy', 'coverage', 'partly', 'skye', 'colombia', 'services', 'coronavirus', 'jobs', 'modern', 'somewhat', 'eyes', 'nazis', 'magnum', 'deployed', 'nashville', 'selected', 'fourth', 'diamond', 'descendants', 'differences', 'additional', 'strategies', 'printed', 'musical', 'beside', 'enter', 'designed', 'passenger', 'harvey', 'turner', 'allow', 'pursue', 'open-air', 'tailors', 'benefit', 'gondra', 'mounted', 'asthma', 'concrete', 'island', 'observed', 'incident', 'tie', 'hectares', 'extensively', 'brisbane', 'quantities', 'seas', 'ballast', 'guided', 'communism', 'broadway', 'liberation', 'zang', 'latest', 'rosalynn', 'rhine', 'alan', 'jeff', 'citizens', 'relieve', 'rapidly', 'rescued', 'pitcher', 'formed', 'novels', 'afb', 'harry', 'daughter', 'belgium', 'investigative', 'son', 'penetrating', 'ford', 'produces', 'helps', 'understand', 'carriage', 'previously', 'consecutive', 'anti-tank', 'finance', 'coming', 'bass', 'oxford', 'roy', 'got', 'sentence', 'goals', 'makes', 'complained', 'championships', 'offset', 'payment', '-year', 'communications', 'table', 'cha', 'engines', 'cancelled', 'orbit', 'persons', 'planes', 'gifts', 'brick', 'struggled', 'managing', 'adding', 'gives', 'innovative', 'businesses', 'louise', 'like', 'documentation', 'φ', 'relocated', 'tubular', 'tanks', 'pounds', 'decisions', 'stream', 'yours', 'sales', 'direct', 'remaining', 'larger', '°', 'tube', 'learn', 't', 'shelter', 'e.g.', 'nfl', 'underwater', 'long-distance', 'establishing', 'month', 'field', 'hiatus', 'inscriptions', 'champu', 'roger', 'holding', 'posluns', 'cricket', 'repeatedly', 'texarkana', 'commons', 'fighters', 'processes', 'through', 'build', 'norton', 'once', 'watford', 'optimal', 'electromagnetic', 'besieged', 'grass', 'detailed', 'defending', 'patrons', 'sex', 'rose', 'transmit', 'motor', 'closer', 'c.', 'schools', 'monotypic', 'recently', 'conflicts', 'ribs', 'responsible', 'logical', 'prisoners', 'campuses', 'rare', 'u-', 'artificial', 'fossils', 'earliest', 'poor', 'graphics', 'fe', 'willow', 'force', 'questions', 'gastropod', 'mistaken', 'veitch', 'set', 'angela', 'armstrong', 'depth', 'beatles', 'break', 'inquiry', 'protestant', 'contrast', 'defense', 'ffa', 'departure', 'boutiques', 'founder', 'remainder', 'andre', 'late', 'rise', 'cities', 'date', 'elections', 'coliseum', 'stance', 'gold', 'swimmer', 'seized', 'buddy', 'ralph', 'based', 'penrith', 'kilometers', 'manner', 'hospital', 'enrolled', 'demanding', 'punches', 'accused', 'hereward', 'socialism', 'stewart', 'bags', 'within', 'legs', 'congressional', 'excellence', 'intellect', 'ep', 'supported', 'malaysia', 'na', 'colorado', 'easy', 'trade', 'instructs', 'spent', 'gap', 'block', 'cream', 'norms', 'prospective', 'wilson', 'nielsen', 'iwata', 'attributed', 'gretzky', 'images', 'overseas', 'premiered', 'cemetery', 'patton', 'jim', 'roughly', 'affected', 'lifeboat', 'debut', 'robbins', 'imperial', 'sweet', 'paigc', 'easier', 'regarding', 'infantry', 'item', 'gardens', 'kw', 'watson', '/km', 'eldest', 'participating', 'roots', 'wealthy', 'baroque', 'serbs', 'zone', 'penned', 'owned', 'met', 'yorker', 'harlem', 'those', 'hands', 'regard', 'enterprises', 'pardon', 'integration', 'river', 'influence', 'hogan', 'mate', 'wrestler', 'water', 'accountability', 'felony', 'natives', 'mall', 'typically', 'accept', 'age', 'datner', 'cars', 'terrestrial', 'calcium', 'prevailing', 'king', 'meanwhile', 'mexican', 'thrown', 'weekends', 'jan', 'unopposed', 'drought', 'stages', 'scientific', 'abc', 'penang', 'indycar', 'car', 'xi', 'demonstrations', 'isis', 'petén', 'fish', 'meters', 'carrier', 'become', 'patent', 'interests', 'ukraine', 'eaten', 'calls', 'apostolic', 'future', 'delta', 'en', 'jail', 'scottish', 'if', 'leafie', 'del', 'locations', 'evacuated', 'versus', 'terror', 'accepting', 'pattern', 'hydrothermal', 'finale', 'counties', 'addressed', 'meetings', 'prolonged', 'fellowship', 'cottage', 'peer', 'regulation', 'laidlaw', 'freight', 'hometown', 'stanley', 'row', 'bought', 'camping', 'neutral', 'gin', 'malawi', 'chase', 'japan', 'wheels', 'lament', 'cleaners', 'hub', 'tenth', 'travel', 'keith', 'halt', 'treated', 'heavy', 'participation', 'sound', 'surviving', 'patriotism', 'connection', 'raymond', 'ub-', 'replacement', 'charles', 'miles', 'torque', 'current', 'yu', 'procurement', 'conventional', 'citizen', 'electorate', 'arrived', 'féin', 'dry', ',', 'consequences', 'speculated', 'castle', 'conference', 'hollywood', 'fingers', 'yacht', 'young', 'uncommon', 'medication', 'temperature', 'highlights', 'criticism', 'cecil', 'sports', 'bonus', 'conflict', 'missile', 'guitarist', 'howard', 'marx', 'prove', 'abstract', 'rihanna', 'sociology', 'indiana', 'inhabitants', 'collaborating', 'history', 'mills', 'ear', 'resistant', 'write', 'hip-hop', 'debt', 'two', 'thirty', 'cuban', 'immigration', 'world', 'lover', 'elite', 'objective', 'yuan', 'domain', 'passion', 'bay', 'consultant', 'dramatic', 'provider', 'better', 'arms', 'elsewhere', 'physics', 'secretary', 'bells', 'hajong', 'progression', 'hotels', 'remarkable', 'warbler', 'performs', 'debuted', 'seth', 'operation', 'initiated', 'dead', 'technical', 'suffering', 'yap', 'requested', 'floor', 'disc', 'contracts', 'membership', 'forum', 'teams', 'shannon', 'switzerland', 'films', 'governments', 'nearby', 'medicine', 'counter', 'melville', 'byzantine', 'environmental', 'probation', 'commercially', 'expedition', 'possibility', 'maintains', 'highly', 'jean', 'concentrations', 'successor', 'genres', 'consulting', 'commissioner', 'networking', 'price', 'zizina', 'xiang', 'intake', 'p', 'organized', 'ricky', 'arrival', 'brief', 'obama', 'have', 'attempted', 'exposition', 'possibly', 'gloria', 'excess', 'somewhere', 'comyn', 'cruttwell', 'significance', 'bandit', 'perkins', 'dominican', 'fewer', 'facing', 'kennedy', 'indigenous', 'independently', 'light', 'intermediate', 'mix', 'gets', 'islands', 'lancaster', 'r.', 'scrushy', 'gardener', 'days', 'acceptable', 'act', 'necessary', 'thailand', 'canadians', 'follow', 'map', 'regions', 'economic', 'enterprise', 'outreach', 'francesco', 'mystical', 'context', 'gene', 'regimental', 'audience', 'adequate', 'migrate', 'denied', 'atop', 'exception', 'this', 'hydroponics', 'facilitate', 'launched', 'uk', 'father', 'received', 'possession', 'singapore', 'includes', 'workers', 'sudanese', 'failures', 'proton', 'scenario', 'le', 'edmund', 'reliable', 'introduced', 'resort', 'sold', 'verse', 'barrier', 'hope', 'conviction', 'wrestling', 'called', 'competitions', 's.', 'western', 'temporary', 'sudden', 'national', 'think', 'lt', 'literary', 'elmo', 'communication', 'ex', 'transactions', 'polish', 'lost', 'cristiani', 'reverse', '7', 'autonomous', 'leo', 'female', 'nasa', 'nova', 'merging', 'asia', 'senate', 'allows', 'liu', 'book', 'cawfe', 'older', 'motivated', 'a.m.', 'aftermath', 'recovered', 'connections', 'now', 'warden', 'probability', 'tied', 'gazette', 'usually', 'pirate', 'however', 'red', 'thoroughbred', 'angels', 'buses', 'della', 'therefore', 'sure', 'victorious', 'linear', 'punjabi', 'polls', 'brake', 'shock', 'slow', 'decline', 'culture', 'commands', 'fever', 'unsuccessful', 'serious', 'knee', 'mines', 'colonial', 'wife', 'performing', 'covering', 'defeat', 'fiber', 'surfaces', 'banjaras', 'mohammed', 'jay', 'wofford', 'macedonia', 'among', 'gibson', 'ranges', 'canadian', 'aeronautics', 'enrichment', 'neufville', 'sale', 'run', 'defines', 'killing', 'techniques', 'mr', 'phillips', 'geographical', 'baron', 'obsolete', 'catholic', 'cpu', 'mario', 'meal', 'parish', 'peaceful', 'americans', 'central', 'federation', 'naturally', 'forbidden', 'arabic', '-pounders', 'earned', 'hopes', 'variants', 'unknowingly', 'news', 'vigo', 'manual', 'line', 'holes', 'abraham', 'landmark', 'opening', 'continental', 'dependent', 'kentucky', 'ireland', 'vast', 'rates', 'acres', 'ce', 'accurate', 'inspector', 'peoples', 'champion', 'intensive', 'agenda', 'firm', 'motion', 'chance', 'orchard', 'scandal', 'issued', 'threads', 'f.c', 'time', 'times', 'academy', 'silver', 'antiquity', 'gmats', 'user', 'pride', 'offer', 'sections', 'promising', 'research', 'fresh', 'rows', 'revival', 'starred', 'function', 'measured', 'skagit', 'space', 'archive', 'teens', 'film', 'various', 'beginnings', 'faith', 'nbc', 'sewage', 'gravity', 'impacts', 'racing', 'harrison', 'bomb', 'aware', 'qing', 'clashes', 'font', 'ordinance', 'modica', 'exists', 'cameras', 'oblique', 'released', 'deprived', 'armed', 'cromwell', 'joined', 'penguins', 'character', 'consequence', 'multiple', 'noting', 'segments', 'introduce', 'protestants', 'element', 'acquiring', 'window', 'battled', 'interested', 'revenue', 'moths', 'ownership', 'influenced', 'unable', 'georgian', 'open', 'experiments', 'seem', 'minorenti', 'religious', 'resumed', 'universe', 'messages', 'starts', 'difficulties', 'fully', 'ter', 'dating', 'members', 'province', 'continuing', 'attacked', 'voting', 'ipswich', 'adventure', 'fashion', 'sr', 'v', 'visiting', 'treasure', 'invasions', 'using', 'restore', 'plaster', 'ethical', 'tang', 'treat', 'planck', 'mature', 'yellow', 'classical', 'louisiana', 'whitmire', 'nevertheless', 'focuses', 'reconnaissance', 'huge', 'buddha', 'unstable', 'transmitted', 'galway', 'grassroots', 'shawn', 'campaign', 'horse', 'creation', 'possible', 'voivodeship', 'organize', 'centers', 'reform', 'offerings', 'present', 'wound', 'bullet', 'communist', 'adoption', 'st', 'processing', 'suffrage', 'losses', 'burnt', 'saratoga', 'functional', 'timber', 'pilot', \"'ll\", 'duet', 'conception', 'committed', 'victor', 'grew', 'board', 'ruling', 'vehicle', 'brush', 'prefectural', 'challenges', 'enjoy', 'encountered', 'aid', 'turret', 'br-', 'selena', 'sultan', 'weapon', 'conquered', 'servants', 'bollinger', 'algebraic', 'incorporated', 'peggy', 'unless', 'malta', 'coloured', 'mm', 'opposite', 'consists', 'purchased', 'entitled', 'freeway', 'summer', 'trent', 'insects', 'closely', 'companies', 'habits', 'cyber', 'green', 'aunt', 'bombed', 'prevented', 'ceo', 'toured', 'basin', 'capita', 'austin', 'chicago', 'returned', 'palestinians', 'denotes', 'pages', 'mortality', 'studies', 'vessel', 'entry', 'queen', 'khz', 'globe', 'worker', 'duty', 'pale', 'refusal', 'posted', 'settlers', 'climbers', 'standing', 'sustainable', 'deer', 'actors', 'lifetime', 'epilepsy', 'men', 'depression', 'shifting', 'tortricidae', 'unifying', 'shell', 'alphabet', 'hispanic', 'digital', 'excellent', 'rao', 'portland', 'amount', 'releasing', 'mann', 'prohibited', 'greensboro', 'tank', 'tourism', 'ira', 'liverpool', 'comes', 'arrondissement', 'shops', 'daughters', 'growing', 'registration', 'habitat', 'mph', 'often', 'child', 'dagenham', 'sign', 'heads', 'promoting', 'salad', 'scheduled', 'fiscal', 'fletcher', 'railway', 'love', 'aluminium', 'studying', 'davis', 'males', 'larvae', 'publicity', 'boss', 'fight', 'grapes', 'floors', 'dodge', 'borders', 'surgical', 'poll', 'alaska', 'confederation', 'warsaw', 'siberia', \"''\", 'heart', 'officers', 'address', 'historians', 'variations', 'games', 'increasingly', 'chris', 'levels', 'aircraft', 'monkey', 'cockpit', 'suburban', 'herald', 'chimbote', 'oldest', 'echo', 'doyle', 'degradation', 'districts', 'executed', 'pease', 'according', 'gift', 'bertolucci', 'says', 'beverly', 'holdings', 'knows', 'dated', 'quantity', 'raja', 'compilation', 'feels', 'tanja', 'move', 'hosts', 'spangler', 'negotiations', 'starring', 'approach', 'vaccine', 'garden', 'selo', 'fact', 'inability', 'keeper', 'irrigated', 'prolific', 'accommodation', 'symphony', 'saxony', 'built', 'ensemble', 'dragon', 'dvd', 'lockheed', 'connect', 'hill', 'plans', 'israel', 'palace', 'rick', 'here', 'converted', 'rebranded', 'agency', 'motorcycle', 'holy', 'lovely', 'known', 'fireworks', 'argued', 'crowd', 'contain', 'theater', 'box', 'park', 'patrols', 'crowned', 'findings', 'resulted', 'woods', 'global', 'prevention', 'coat', 'hanina', 'leslie', 'volcano', 'legitimate', 'attending', 'prinsen', 'shooter', 'visit', 'moth', 'gymnastics', 'transmissions', 'bearing', 'decades', 'gates', 'equivalent', 'expose', 'liwa', 'gerard', 'bridge', 'deportations', 'present-day', 'bradford', 'wars', 'rings', 'wayne', 'soldier', 'walker', 'entries', 'beaux-arts', 'metropolitan', 're-elected', 'throne', 'gauley', 'promotions', 'gun', 'hired', 'organs', 'concussions', 'electricity', 'relationship', 'building', 'mark', 'gross', 'espedal', 'assets', 'latin', 'georgians', 'aroma', 'mainland', 'peaked', 'primarily', 'mallard', 'ventilation', 'shirakawa', 'mathematics', 'inserted', 'jones', 'company', 'way', 'janeiro', 'acted', 'coils', 'interned', 'dam', 'twenty', 'presence', 'comparisons', 'facilities', 'ritual', 'technologies', 'input', 'zong', 'thames', 'ultimately', 'receptors', 'efficient', 'hal', 'assigned', 'belonging', 'retain', 'consort', 'individuals', 'diego', 'supplied', 'normans', 'ny', 'small', 'rasha', 'transmembrane', 'alameda', 'aquatic', 'including', 'unearthed', 'refugees', 'scripps', 'martial', 'prosecuted', 'route', 'walpole', 'steady', 'sophie', 'notion', 'south-west', 'ai', 'perspective', 'nas', 'collaborated', 'endangered', 'argentine', 'engine', 'conduct', 'electrons', 'invasion', 'für', 'maintain', 'freud', 'smetona', 'barcelona', 'gabriel', 'mercedes', 'passes', 'considerable', 'darkness', 'devices', 'homer', 'country', 'quality', 'ayp', 'wanted', 'scientists', 'amsterdam', 'rapid', 'harold', 'aerial', 'describe', 'salary', 'totals', 'october', '', 'takes', 'stripped', 'words', 'earlier', 'background', 'london', 'spines', 'recognized', 'extensive', 'measuring', 'venue', 'up', 'warner', 'statistical', 'austrian', 'sprint', 'stud', 'talk', 'description', 'accounts', 'experienced', 'fischer', 'knight', 'story', 'arturo', 'haqq', 'should', 'day', 'burned', 'conjunction', 'patient', 'ag', 'fleet', 'pay', 'particles', 'linguistic', 'jump', 'comprehensive', 'several', 'pressure', 'episcopal', 'giovanni', 'commander', 'emergence', 'recognition', 'charged', 'suitable', 'confusion', 'distinct', 'joel', 'francis', 'concern', 'termen', 'expectations', 'bangladesh', 'cave', 'privy', 'accepted', 'tv', 'nominee', 'interpret', 'independence', 'battles', 'nucleus', 'commentary', 'morrison', 'athlete', 'rounded', 'quickly', 'competition', 'wind', 'farruko', 'mud', 'cj', 'same', 'winners', 'developer', 'suicide', 'corn', 'burning', 'designers', 'thousand', 'took', 'fitting', 'guests', 'appearance', 'trailer', 'kochi', 'reading', 'soluble', 'variety', 'mean', 'identified', 'journalist', 'capable', 'voice', 'imposed', 'advent', 'succession', 'thunder', 'laws', 'corruption', 'ranking', 'medical', 'bequeathed', 'mgm', 'hits', 'defender', 'protection', 'adopted', 'mazda', 'inappropriate', 'favour', 'thin', 'triggered', 'these', 'value', 'document', 'violent', 'clothes', 'graduating', 'ndebele', 'sexes', 'mega', 'females', 'neighbourhood', 'poetry', 'invitation', 'team', 'l', 'scenes', 'studios', 'roland', 'notable', 'of', 'merchant', 'unrelated', 'them', 'aged', 'korea', 'henry', 'resigned', '+', 'accusations', 'jesse', 'parasite', 'supporting', 'financially', 'communists', 'despite', 'stationed', 'provides', 'graduation', 'el', 'successful', 'always', 'gonzalo', 'appearing', 'locomotive', 'disorder', 'so-called', 'profits', 'computer', 'das', 'constituencies', 'mile', 'singer-songwriter', 'remote', 'josé', 'missing', 'minamata', 'anthology', 'between', 'blood', 'against', 'incumbent', 'tribes', 'collections', 'johnson', 'airline', 'massmutual', 'obtaining', 'protested', 'insurance', 'charges', 'missions', 'alcohol', 'cairns', 'race', 'donald', 'congregational', 'design', 'hoped', 'morello', 'glasgow', 'approval', 'key', 'tale', 'archaic', 'distributed', 'learned', 'neighbours', 'reductions', 'drive', 'inefficient', 'series', 'john', 'josef', 'amir', 'office', 'bee', 'tower', 'coleman', 'metazoan', 'fortunately', 'nippon', 'room', 'shipments', 'funded', 'procedure', 'bill', 'isolated', 'lacking', 'maintained', 'situations', 'jacobs', 'therapies', 'circle', 'plains', 'comparison', 'richard', 'neck', 'traveled', 'another', 'capell', 'landing', 'status', 'may', 'forts', 'excessive', 'sets', 'abbot', 'proportion', 'class', 'employees', 'variables', 'out', 'imposing', '``', 'nethy', 'broadcasts', 'disagreed', 'rogers', 'instructions', 'containing', 'municipalities', 'guitar', 'electronic', 'bound', 'raised', 'jpeg', 'it', 'composer', 'fatalities', 'grain', 'develops', 'largest', 'cumberland', 'partial', 'banned', 'assistance', 'purpose', 'spark', 'persistent', 'arc', 'festival', 'warblers', 'mitchell', 'mobile', 'mae', 'condition', 'destroy', 'lectures', 'junior', 'devi', 'e.', 'endorsed', 'subtitles', 'troops', 'travelled', '£', 'secon', 'eliminated', 'campi', 'battery', 'black', 'suggests', 'romania', 'paper', 'horn', 'pacific', 'download', 'designs', 'avenue', 'manager', 'split', 'whose', 'mangrove', 'require', 'romantsev', 'costume', 'accessed', 'cultures', 'platoon', 'ends', 'steel', 'moment', 'raids', 'massive', 'paint', 'decorated', 'aaa', 'pasadena', 'divorce', 'khoza', 'malay', 'resemblance', 'lived', 'kaziranga', 'grandfather', 'sister', 'goats', 'virtual', 'weld', 'discussed', 'gibran', 'grouped', 'connects', 'mouth', 'variation', 'ngr', 'employers', 'pair', '3', 'irvine', 'mount', 'colleagues', 'products', 'dso', 'bit', 'ordered', 'joint', 'liquidity', 'balkan', 'conversations', 'mercury', 'julie', 'shooting', 'glutamate', 'saw', 'actually', 'brighton', 'critic', 'stability', 'contained', 'summoned', 'spacetime', 'purple', 'credited', 'knots', 'non-profit', 'analysis', 'colleges', 'lithuanian', 'ward', 'reaction', 'hilux', 'affordable', 'modernism', 'revision', 'reforms', 'american-born', 'shifted', 'salford', 'stated', 'experiment', 'seat', 'carmel', 'dox', 'exhibition', 'mentioned', 'streams', 'publisher', 'guest', 'glee', 'fan', 'kg', 'manufacturer', 'mullett', 'together', 'individually', 'combine', 'inception', 'saint', 'vinyl', 'what', 'booth', 'guild', 'speed', 'separation', 'investigate', 'victoria', 'phoenix', 'snails', 'crowley', 'smaller', 'response', 'crabs', '&', 'resides', 'issues', 'hallschlag', 'chaffinches', 'dr.', 'injury', 'uefa', 'via', 'collect', 'economy', 'etc', 'climbing', 'component', 'nations', 'defined', 'allegations', 'winning', 'johnston', 'shared', 'experience', 'power', 'rated', 'house', 'defeated', 'joy', 'everything', 'quarter', 'chinese', 'exclusively', 'very', 'commenced', 'supposed', 'twitter', 'attitude', 'stranger', 'elegant', 'abu', 'airport', 'buffalo', 'croix', 'arguably', 'giant', 'aspects', 'scales', 'unprecedented', 'referendum', 'montreal', 'emeritus', 'lantern', 'bent', 'likelihood', 'inland', 'defeating', 'erebidae', 'lunch', 'above', 'competitive', 'over', 'go', 'muscle', 'partners', 'ricardo', 'identity', 'bioethics', 'rapids', 'passing', 'abroad', 'candidates', 'beneath', 'catalog', 'clark', 'lqg', 'competed', 'maneuvering', 'hurricane', 'married', 'goods', 'broke', 'jencks', 'convent', 'haigh', 'mode', 'germans', 'premiership', 'ontario', 'towns', 'wider', 'broad', 'calder', 'lime', 'camels', 'flåm', 'controls', 'cornwall', 'murdered', 'picture', 'constituency', 'arctic', 'state', 'order', 'kannada', 'chart', 'producing', 'fed', 'occasionally', 'foot', 'tetrapedia', 'conducting', 'see', 'interest', 'generation', 'abd', 'patients', 'caulfield', 'yards', 'operators', 'rifle', 'dialogue', 'astronomers', 'marry', 'leadership', 'vintage', 'lavonne', 'yard', 'barriers', 'winner', 'reach', 'cruz', 'northeastern', 'mongol', 'anti-semitism', 'loves', 'carcasses', 'imag', 'in', 'rca', 'result', 'remained', 'les', 'smashed', 'denmark', 'serial', 'algeria', 'occurs', 'kirill', 'atp', 'talent', 'concept', 'effects', 'subsequently', 'papal', 'safe', 'tim', 'copy', 'hidden', 'contains', 'bonds', 'system', 'machine', 'p.m.', 'yen', 'exactly', 'notes', 'clayton', 'p.', 'membrane', 'harvard', 'lincoln', 'reality', 'proceeds', 'signs', 'inc', 'attacks', 'distinction', 'political', 'resided', 'jamaica', 'cause', 'creedon', 'instrument', 'plate', 'movies', 'dismissed', 'school', 'escort', 'chief', 'northampton', 'depicting', 'returning', 'nato', 'substantial', 'shut', 'roark', 'bin', 'bulgarian', 'fortification', 'conservative', 'grants', 'genre', '€', 'ahmed', 'scholar', 'ties', 'ross', 'written', 'ministers', 'shown', 'streets', 'security', 'work', 'tell', 'crazy', 'jared', 'paralympic', 'passengers', 'easily', 'isaac', 'management', 'aravena', 'harrelson', 'scout', 'delivery', 'crossing', 'todd', 'rocky', 'buddhism', 'features', 'inter', 'justin', 'votes', 'behaviour', 'moral', 'important', 'joshua', 'norse', 'add', 'war', 'brought', 'contact', 'activated', 'traffic', 'factories', 'boot', 'form', 'market', 'rai', 'npf', 'gamma', 'organochlorines', 'lynn', 'perceived', 'hula', 'friends', 'seventeen', 'there', 'rejected', 'lift', 'score', 'language', 'india', 'prices', 'bob', 'genus', 'relief', 'hundred', 'knighted', 'markets', 'category', 'prominence', 'give', 'rochester', 'aro', 'socket', 'organizational', 'cylinder', 'buried', 'mike', 'editing', 'organisation', 'heroes', 'masses', 'ltd', 'past', 'westminster', 'exercise', 'specializes', 'trainer', 'managers', 'extinct', 'moving', 'seems', 'spread', 'suffered', 'fortune', 'anything', 'early', 'km', 'publications', 'idols', 'leave', 'areas', 'stable', 'sailboat', 'scale', 'been', 'rule', 'thereafter', 'staff', 'organisations', 'flora', 'statutory', 'assumes', 'farms', 'redskins', 'attire', 'hashtag', 'duke', 'surprise', 'cousin', 'shopping', 'wagon', 'friend', 'myth', 'bury', 'appointed', 'accounted', 'whitby', 'homosexuality', 'main', 'undergraduate', 'xbox', 'reinforced', 'franconia', 'friedman', 'channel', 'husband', 'materials', 'handsome', 'you', 'constitution', 'minang', 'philharmonic', 'lisa', 'scoring', 'year', 'plastic', 'conferences', 'criteria', 'then', 'formally', 'ang', 'charts', 'inscription', 'arianna', 'versailles', 'drafted', 'superstar', 'serving', 'tembe', 'qualifier', 'portrait', 'prosperous', 'scholars', 'municipality', 'assembly', 'loan', 'albarn', 'waste', 'increasing', 'text', 'gathering', 'birth', 'ian', 'brigades', 'curated', 'expert', 'denver', 'male', 'populations', 'air', 'putnam', 'first', 'argentina', '4', 'conquer', 'lane', 'doubles', 'passage', 'whole', 'fear', 'nominations', 'protect', 'reviews', 'neighborhood', 'longest', 'ladies', 'explains', 'shorter', 'georgia', 'plovdiv', 'birmingham', 'parents', 'basement', 'stage', 'depicted', 'rounds', 'termed', 'essex', 'seated', 'thriller', 'happened', 'privately', 'alongside', 'president', 'ecology', 'discussion', 'gujarat', 'enjoyed', 'supper', 'distinctive', 'costs', 'migration', 'pennsylvania', 'rebels', 'oil', 'a.', 'appeal', 'organizations', 'november', 'activities', 'whitney', 'demonstrated', 'tenchynska', 'observe', 'formerly', 'historic', 'preparation', 'guitars', 'administrative', 'asset', 'enclosed', 'ethnic', 'gambling', 'terminus', 'posthumously', 'mind', 'mistakenly', 'indians', 'incorrectly', 'origin', 'extremely', 'armor', 'injuries', 'solution', 'and', 'episode', 'attempting', 'summers', '-atpase', 'severe', 'athletes', 'und', 'borough', 'control', 'vermont', 'eye', 'brazilian', 'sbba', 'cook', 'lines', 'terms', 'hurt', 'transfer', 'division', 'underwood', 'assists', 'camp', 'explore', 'evil', 'atmosphere', 'page', 'flows', 'avm', 'league', 'due', 'request', 'satellites', 'searching', 'fictional', 'wholly', 'peasants', 'permission', 'bees', 'vehicles', 'ways', 'intensified', 'lease', 'grounded', 'involving', 'far', 'destroyed', 'underparts', 'reporting', 'garrison', 'meant', 'critics', 'described', 'helicopter', 'ambitious', 'undertook', 'zappa', 'tilottama', 'cardinal', 'savvy', 'midst', 'cd', 'argument', 'covid-', 'engages', 'researching', 'confirmed', 'my', 'individual', 'advocate', 'sequel', 'ltd.', 'lama', 'politics', 'everton', 'expression', 'enforcement', 'bengali', 'television', 'eroded', 'mineral', 'advisors', 'signal', 'marketing', 'launch', 'barnard', 'natural', 'relativity', 'khotta', 'preserves', 'voices', 'interim', 'hillary', 'escaped', 'nhl', 'phil', 'mother', 'extends', 'am', 'mass-produced', 'goal', 'tie-', 'industrial', 'felt', 'middle-class', 'regent', 'portugal', 'lagos', 'manufacturing', 'resembles', 'orozco', 'can', 'samson', 'rock', 'organic', 'dynasty', 'assault', 'still', 'mac', 'groundwater', 'innovation', 'condemned', 'supplemental', 'leoncavallo', 'sample', 'differentiation', 'superior', 'aba', 'philosophy', 'predicted', 'courtyard', 'others', 'reserve', 'pottery', '2', 'strains', 'honorary', 'deteriorated', 'agent', 'vatican', 'elephants', 'monasteries', 'hoover', 'eighteen', 'twins', 'offensive', 'wrong', 'solicitor', 'pradesh', 'coached', 'discussions', 'sierra', 'jumps', 'prototype', 'limits', 'kind', 'rainbow', 'traps', 'fia', 'ironman', 'gentoo', 'romance', 'does', 'invested', 'triangle', 'morning', 'ottoman', '..', 'holdt', 'reno', 'who', 'hollow', 'under-', 'offers', 'mcmahon', 'claiming', 'search', 'material', 'mandarin', 'née', 'pilots', 'departments', 'happy', 'allan', 'ever', 'exclusive', 'voters', 'compute', 'steve', 'diseases', 'censorship', 'aired', 'press', 'sensory', 'activists', 'brian', 'occurring', 'deposits', 'fungi', 'reduce', 'crucial', 'employment', 'broadcast', 'noctuidae', 'gender', 'math', 'reunion', 'larva', 'puts', 'define', 'wooded', 'chest', 'vocational', 'rainfall', 'hot', 'removed', 'reached', 'guatemala', 'tips', 'implementation', 'aviation', 'property', 'reporter', 'guildford', 'such', 'tops', 'taylor', 'tiger', 'distance', 'display', 'united', 'lunar', 'ana', 'derived', 'represented', 'illegal', 'spend', 'landlord', 'clinton', 'england', 'latif', 'railroad', 'choices', 'millions', 'enlisted', 'waititi', 'confidence', 'congo', 'named', 'museum', 'personal', 'shed', 'emerging', 'africa', 'understood', 'commanding', 'displaying', 'relationships', 'civilians', 'whig', 'kishaba', 'firs', 'principles', 'massachusetts', 'horses', 'long', 'laugh', 'immortality', 'point', 'contributions', 'dzong', 'sealed', 'indoor', 'colorful', 'prince', 'sky', 'inspiration', 'agreement', 'pro', 'platforms', 'miller', 'vienna', 'joe', 'voltage', 'following', 'related', 'underground', 'collective', 'advised', 'afghanistan', 'imports', 'commitment', 'rival', 'schmidt', 'actively', 'weather', 'bruno', 'freedom', 'plural', 'census', 'share', 'faced', 'appearances', 'general', 'said', 'contract', 'inaugurated', 'panel', 'shoots', 'fran', 'entertainment', 'boom', 'push', 'developers', 'lebanese', 'automobile', 'recent', 'though', 'organisms', 'proteins', 'opponents', 'segment', 'shortened', 'saturday', 'trial', 'helicopters', 'canyon', 'away', 'farming', 'publish', 'tone', 'ruled', 'department', 'gaelic', 'linux', 'feedback', 'maybe', 'commune', 'oliver', 'independent', 'daily', 'camped', 'critical', 'anna', 'bar', 'label', 'amrita', 'prison', 'wanting', 'painted', 'ensure', 'infectious', 'colour', 'trustee', 'investigations', 'veronica', 'running', 'threatening', 'wu', 'decreased', 'cool', 'interdisciplinary', 'works', 'australian', 'gradually', 'repeated', 'represents', 'titled', 'maternal', 'wilton', 'west', 'wickrematunge', 'offline', 'components', 'deal', 'muscular', 'leads', 'drainage', 'pelee', 'damage', 'wheat', 'monash', 'shortly', 'goes', 'cooking', 'dorsal', 'solely', 'bishop', 'heath', 'tend', 'scattered', 'wolverine', 'thesis', 'exceptional', 'kuala', 'watched', 'breaks', 'romanians', 'restrictions', 'contested', 'oversight', 'institutions', 'nestlé', 'indonesia', 'obtained', 'pepé', 'exit', 'endean', 'hampshire', 'dancing', 'combination', 'museums', 'prompted', 'kudankulam', 'nba', 'viscount', 'round', 'skill', 'sexuality', 'revised', 'undertaken', 'outbreak', 'adjutant', 'posts', 'diplomatic', 'monarchy', 'catalyst', 'alleged', 'barrio', 'july', 'many', 'southeastern', 'vice', 'touched', 'dennis', 'friedrich', 'webster', 'adrian', '-pounder', 'strings', 'isolation', 'whom', 'vertebrae', 'phd', 'sea', 'shots', 'mcdonald', 'ky', 'hunter', 'canberra', 'account', 'nationally', 'grand', 'money', 'laid', 'kings', 'peaks', 'focusing', 'gain', 'deserted', 'policy', 'hat', 'full-time', 'settlements', 'guinea', 'plumage', 'outlets', 'perception', 'constant', 'moderate', 'proper', 'limit', 'center', 'backing', 'we', 'mariners', 'affiliate', 'doctrine', 'continuous', 'lesser', 'job', 'performer', 'annually', 'accompaniment', 'completed', 'fragment', 'thing', 'platinum', 'italian', 'genocide', 'jr', 'basket', 'level', 'per', 'enabled', 'broken', 'collaborator', 'anne', 'shadows', 'translator', 'match', 'problems', 'create', 'intent', 'christie', 'punt', 'walter', 'eagles', 'classes', 'farmers', 'girl', 'interior', 'conditioning', 'rican', 'fame', 'edition', 'shaw', 'bankruptcy', 'trench', 'densely', 'fuller', 'clinical', 'kenya', 'author', 'continue', 'type', 'burns', 'alpha', 'elected', 'users', 'slavery', 'feeling', 'commerce', 'w.', 'emerged', 'reads', 'be', 'population', 'encounter', 'partisan', 'adapted', 'konstantin', 'nodes', 'peña', 'care', 'atlanta', 'organizing', 'boxer', 'mir-', 'aerospace', 'designation', 'largely', 'sisters', 'e', 'opie', 'reshuffle', 'congressman', 'flew', 'tiny', 'venezuela', 'device', 'letters', 'earthquake', 'miguel', 'bond', 'hour', 'cotton', 'granite', 'ability', 'acclaimed', 'canvas', 'rachel', 'household', 'predecessor', 'journal', 'muslim', 'especially', 'landed', 'commonwealth', 'looking', 'fastest', 'wooden', 'presidency', 'anyway', 'physician', 'tension', 'colors', 'noura', 'carnegie', 'kay', 'its', 'bears', 'nothing', 'singaporean', 'cables', 'marine', 'alloy', 'ethiopia', 'library', 'polar', 'destinations', 'consequently', 'guide', 'robot', 'chemical', 'gaston', 'rays', 'secure', 'attempt', 'tropical', 'comedy', 'kazakhstan', 'curriculum', 'e.g', 'friendly', 'lieutenant', 'units', 'as', 'jon', 'philippine', 'demonstration', 'prospect', 'aims', 'resting', 'brothers', 'perform', 'warm', 'soft', 'concert', 'functions', 'port', 'phase', 'association', 'immediately', 'noted', 'neighbors', 'cooper', 'manchester', 'interview', 'guardian', 'emerge', 'pursuit', 'sixteenth', 'maria', 'wild', 'victim', 'spectators', 'cardinals', 'orphanage', 'q', 'daniels', 'boarded', 'demographic', 'jharkhand', 'colchester', 'seriously', 'reynolds', 'chapter', 'challenging', 'calendar', 'leaked', 'rides', 'parma', 'hadham', 'operational', 'capturing', 'city', 'militia', 'secretly', 'jersey', 'berkeley', 'home', 'european', 'blocks', 'connecting', 'knowing', 'reportedly', 'actor', 'arenas', 'blocked', 'minister', 'makeup', 'outer', 'brown', 'verbs', 'turkish', 'lower', 'granted', 'magnitude', 'volume', 'heat', 'divisions', 'manu', 'promote', 'parent', 'poem', 'lists', 'congregation', 'back', 'municipal', 'mir', 'aground', 'notice', 'join', 'tea', 'distribution', 'practical', 'eu', 'libraries', 'estates', 'architect', 'capitals', 'historian', 'nelson', 'trust', 'truth', 'developed', 'ashes', 'grounds', 'citing', 'upgraded', 'mention', 'progress', 'sydney', 'malden', 'learns', 'respond', 'working', 'carrying', 'trades', 'bacteria', 'wentworth', 'battle', 'wilde', 'helped', 'halls', 'meanings', 'postal', 'las', 'flesh', 'monazite', 'sokoto', 'lowest', 'protective', 'bari', 'fuscous', 'owner', 'residence', 'tna', 'kangaroo', 'not', 'hong', 'specialized', 'putting', 'embassy', 'alsace', 'lynch', 'tubes', 'midfielder', 'determines', 'uniforms', 'finding', 'sp', 'laps', 'runner', 'recognize', 'subway', 'transparency', 'stay', 'party', 'discusses', 'sessions', 'currency', 'examples', 'frank', 'al-nusra', 'trains', 'broadcaster', 'abandoned', 'costly', 'trinity', 'alkyl', 'butterfly', 'strategy', 'raising', 'three-year', 'scheme', 'erected', 'generally', 'internationally', 'reference', 'liberec', 'little', 'aimed', 'elder', 'arise', 'delegates', 'during', 'significant', 'code', 'controversial', 'attract', 'recommended', 'promotion', 'chocolate', 'steal', 'texture', 'composition', 'linking', 'article', 'face', 'blades', 'barkley', 'jac', 'marsh', 'bring', 'audit', 'cane', 'permanently', 'gilbert', 'argue', 'argues', 'begins', 'lay', 'subsidiary', 'ultimate', 'skills', 'bodies', 'turns', 'used', 'transitional', 'philipps', 'scored', 'expansion', 'living', 'racism', 'candy', 'patsey', 'donations', 'operator', 'kill', 'airfields', 'sat', 'deeply', 'apple', 'warriors', 'professionals', 'almost', 'sides', 'signing', 'vice-president', 'photographer', 'exiled', 'cardassia', 'iv', 'milan', 'difference', 'sixty', 'bosnian', 'spoke', 'acid', 'farmer', 'subclans', 'anymore', 'evaluation', 'iii', 'provided', 'damages', 'namesake', 'spin', 'lawrence', 'equity', 'ibn', 'supports', 'concacaf', 'hindi', 'boards', 'transformation', 'environment', 'eponymous', 'robinson', 'retains', 'chose', 'speculative', 'regiments', 'street', 'applications', 'dodgers', 'spreading', 'furby', 'alexandria', 'queens', 'settling', 'huerta', 'precursor', 'presided', 'a', 'mice', 'ask', 'classification', 'trained', 'slopes', 'primes', 'overthrow', '-acre', 'normal', 'croats', 'destined', 'legacy', 'grave', 'effectiveness', 'fuel', 'modest', 'masovian', 'slate', 'becomes', 'vision', 'madison', 'tributary', 'hip', 'typhoon', 'season', 'sophia', 'genetics', 'exhibited', 'balls', 'navy', 'forming', 'premier', 'visa', 'favorable', 'detachment', 'presenting', 'eclipse', 'lessons', 'flank', 'format', 'manuscripts', 'name', 'vardhi', 'archives', 'stockade', 'thereby', 'railways', 'secular', 'turned', 'whilst', 'shoulder', 'doctoral', 'amateur', 'oxley', 'engineer', 'participate', 'duncan', 'clubs', 'gang', 'han', 'sent', 'tony', 'urination', 'editor-in-chief', 'legislative', 'offices', 'sinister', 'eat', 'mass', 'tuberculosis', 'talking', 'decide', 'june', 'bone', 'initially', 'jerzy', 'sugar', 'switched', 'jesus', 'different', 'bark', 'flash', 'crack', 'china', 'oval', 'started', 'describes', 'waterloo', 'intact', 'characteristic', 'judge', 'types', 'ceremony', 'refuge', 'returns', 'justice', 'marion', 'heir', 'titles', 'wounds', 'refuses', 'infants', 'relatives', 'indian', 'houses', 'special', 'senator', 'necklace', 'medium', 'trustees', 'directly', 'booker', 'pentagon', 'arguments', 'fought', 'prix', 'roads', 'moscow', 'woodson', 'prominent', 'dubbed', 'franchise', 'musicians', 'production', 'landscape', 'anderson', 'simulation', 'boston', 'covered', 'separately', 'affiliated', 'skull', 'cohen', 'painter', 'shall', 'withdrew', 'pageant', 'bucharest', 'spoken', 'storage', 'spafford', 'degree', 'popularity', 'supporters', 'tropics', 'mutual', 'beat', 'maximum', 'assisted', 'regulations', 'occupying', 'mary', 'interaction', 'plantation', '-day', 'clinic', 'rowson', 'trees', 'report', 'weekly', 'architects', 'dissected', 'bonfire', 'creator', 'hearing', 'ammunition', 'horizontal', 'bermuda', 'signed', 'orchid', 'recordings', 'ride', 'rolfe', 'rubber', 'minnesota', 'topic', 'whatever', 'altitude', 'done', 'desire', 'recreational', 'ban', 'businessman', 'finished', 'more', 'unit', 'eve', 'revived', 'draw', 'pivotal', 'marking', 'theological', 'differs', 'teach', 'conflicting', 'scotia', 'guaranteed', 'survey', 'gong', 'divides', 'captain', 'harbour', 'operas', 'suburbs', 'fishery', 'quartet', 'hindu', 'toll', 'endured', 'hosting', 'similarly', 'human', 'nearly', '1', 'accommodate', 'risk', 'removal', 'demands', 'importance', 'kingdom', 'retirement', 'buildings', 'generated', 'harm', 'negro', 'whitworth', 'adults', 'assessment', 'branches', 'decommissioned', 'deep', 'previous', 'inverse', 'him', 'identical', 'practically', 'medals', 'von', 'alternative', 'eng', 'claims', 'places', 'principle', 'ptolemy', 'subject', 'matter', 'parties', 'compact', 'controller', 'lyon', 'rica', 'washington', 'couture', 'reduced', 'neil', 'exposing', 'twin', 'simpsons', 'norman', 'taste', 'extreme', 'billion', 'let', 'conversion', 'ship', 'piloted', 'nomura', 'lviv', 'protected', 'ella', 'pupils', 'don', 'influential', 'usa', 'threw', 'damaging', 'achieved', 'weigh', 'guns', 'for', 'stirling', 'remain', 'atomic', 'frankfurt', 'also', 'biography', 'scores', 'operates', 'opener', 'kevin', 'scrubbers', 'attend', 'seek', 'curling', 'rivera', 'krissy', 'ca', 'memory', 'person', 'bag', 'fellow', 'bernardo', 'fairly', 'celebrated', 'klaipėda', 'registered', 'area', 'would', 'birthday', 'humid', 'pérez', 'encourage', 'eastern', 'views', 'marshall', 'technological', 'bordered', 'referenced', 'with', 'specific', 'territorial', 'palestinian', 'copenhagen', 'bare', 'ba', 'audio', 'admitted', 'spaces', 'sources', 'how', 'pole', 'corporation', 'farm', 'settled', 'pierre', 'katz', 'mendoza', 'commercial', ':', 'ben', 'mission', 'peers', 'shanghai', 'u', 'cable', 'fabricated', 'being', 'actual', 'ordering', 'supervised', 'capability', 'powered', 'collegiate', 'consideration', 'petrol', 'israeli', 'eggs', 'identify', 'county', 'permitted', 'chorus', 'populous', 'frames', 'o', 'reservoirs', 'configuration', 'seizures', 'referring', 'career', 'munich', 'side', 'sharp', 'trying', 'picks', 'variable', 'briefly', 'nicol', 'students', 'plants', 'judiciary', 'admits', 'spacecraft', 'favor', 'inspired', 'immigrant', 'collins', 'imported', 'david', 'lough', 'sickness', 'fourteen', 'jet', 'which', 'loops', 'entered', 'flagship', 'anthony', 'earnings', 'adult', 'knew', 'coolant', 'finger', 'idea', 'speaker', 'intervention', 'variance', 'singer', 'focused', 'royal', 'coachman', 'involves', 'manor', 'door', 'vii', 'post', 'mental', 'belgian', 'trademark', 'customer', 'engineering', 'improving', '[', 'arrest', 'prize', 'traded', 'ubu', 'atlas', 'hybrid', 'developing', 'gut', 'effort', 'emailed', 'adaptation', 'dream', 'promoted', 'ma', 'cell', 'us', 'statements', 'operate', 'vote', 'variously', 'riding', \"n't\", 'principal', 'institutional', 'squadron', 'sirens', 'lima', 'warrington', 'command', 'intellectual', 'transporting', 'warren', 'cliff', 'figure', 'singled', 'specifically', 'won', 'pedro', 'confederate', 'technology', 'improve', 'félix', 'states', 'teenager', 'amd', 'martha', 'drivers', 'internal', 'vault', 'feeds', 'establishment', 'immune', 'quebec', 'rewarded', 'shakespeare', 'rigid', 'comply', 'zoo', 'amongst', 'transgender', 'traditionally', 'survives', 'juice', 'financial', 'pulled', 'egyptian', 'francisco', 'propaganda', 'exaggerated', 'figures', 'declared', 'sequence', 'lp', 'lyttelton', 'keeping', 'riders', 'missionaries', 'claimed', 'hollande', 'momentum', 'permanent', 'occasion', 'serve', 'trans', 'left', 'composed', 'found', 'lennon', 'tour', 'zenon', 'indie', 'officer', 'rathod', 'dish', 'directed', 'romanesque', 'township', 'ivan', 'greens', 'solomon', 'iran', 'structures', 'merged', 'strategic', 'churchill', 'translations', 'spotted', 'god', 'cabinet', 'species', 'religion', 'choose', 'freeman', 'lee', 'lloyd', 'demolition', 'secured', 'strengthened', 'fishes', 'throw', 'promotional', 'never', 'wake', 'filled', 'game', 'where', 'respective', 'tram', 'arbitration', 'similar', 'molecular', 'teeth', 'bars', 'tasman', 'tried', 'witnesses', 'wisconsin', 'identifies', 'long-term', 'option', 'protein', 'acoustic', 'characters', 'nicknamed', 'fled', 'soviet', 'elementary', 'italy', 'rbi', 'profit', 'involved', 'defend', 'contest', 'grove', 'disorders', '', 'felipe', 'restaurant', '%', 'springs', 'ed', 'era', 'acquired', 'beaufort', 'selling', 'lü', 'casualties', 'want', 'i-', 'slavic', 'parabolic', 'lyrics', 'although', 'erosion', 'republican', 'part', 'meets', 'twice', 'heaven', 'directing', 'drake', 'passport', 'aforementioned', 'methodist', 'layer', 'origins', 'octavius', 'lifestyle', 'nation', 'commander-in-chief', 'cousins', 'dhaka', 'naples', 'federal', 'elements', 'khan', 'evolved', 'showed', 'asked', \"'\", 'beautiful', 'precise', 'islanders', 'folk', 'newport', 'croit', 'botanical', 'photo', 'keep', 'shield', 'expressed', 'anti-slavery', 'saddam', 'guards', 'snow', 'causes', 'parliamentary', 'vancouver', 'source', 'anime', 'winter', 'inside', 'bulgaria', 'presley', 'existence', 'taken', 'infected', 'chuck', 'unknown', 'czech', 'manhattan', 'sabha', 'footballer', 'guides', 'drop', 'visited', 'equation', 'are', 'estimated', 'boer', 'originally', 'monuments', 'icon', 'surrender', 'islam', 'laying', 'reported', 'youth', 'bush', 'cheap', 'creek', 'welsh', 'damaged', 'arose', 'increases', 'geneva', 'wing', 'lexie', 'peru', 'x', 'contribute', 'mpla', 'prestigious', 'ghost', 'investigation', 'prevailed', 'find', 'connecticut', 'tamar', 'descendant', 'robert', 'defendants', 'bottle', 'delegation', 'practicing', 'dimensions', 'aboard', 'annexed', 'monitor', 'activist', 'artery', 'giving', 'food', 'suspect', 'worcester', 'orchestra', 'goldsmith', 'hence', 'cargo', 'accepts', 'painting', 'loughborough', 'succeeded', 'geographic', 'meadow', 'categories', 'carthage', 'flourishing', 'width', 'lightweight', 'remake', 'beast', 'heights', 'bloglines', 'meat', 'essence', 'landslide', 'tu', 'convention', 'cape', 'drama', 'itunes', 'some', 'die', 'course', 'common', 'hawaii', 'by-election', 'archipelago', '@', 'available', 'people', 'cheese', 'sally', 'onto', 'thomas', 'deals', 'fluid', 'eventually', 'hungarian', 'rest', 'settings', 'binary', 'prefer', 'pipeline', 'paris', 'intercourse', 'cross', 'victory', 'shomrim', 'bombers', 'translation', 'liberal', 'model', 'initial', 'frequented', 'trail', 'guidance', 'fall', 'philippines', 'tyres', 'ears', 'ayam', 'mainstream', 'meals', 'tournament', 'expensive', 'successes', 'induces', 'hears', 'trafficking', 'école', 'cast', 'bohemia', 'frequency', 'passed', 'documentary', 'supply', 'review', 'when', 'widespread', 'sustained', 'wings', 'journals', 'emperor', 'resolved', 'fourteenth', 'lighting', 'essay', 'kingdoms', 'so', 'path', 'vernon', 'poverty', 'convert', 'arabs', 'that', 'indicates', 'adjacent', 'were', 'progressive', 'comeback', 'facebook', 'tamil', 'arizona', 'animals', 'pop', 'liquid', 'pixar', 'pupkewitz', 'regularly', 'labels', 'arguing', 'fernandez', 'penalty', 'well', 'silk', 'norwegian', 'interviews', 'actress', 'hard', 'suspended', 'ideal', 'walcott', 'pleaded', 'duo', 'corporate', 'hilton', 'auction', 'freestyle', 'valley', 'three', 'captured', 'mostly', 'sees', 'christian', 'programme', 'listed', 'hungary', 'weekdays', 'autumn', 'editorial', 'bronze', 'flower', 'charlie', 'friendship', 'homes', 'install', 'melody', 'reflected', 'budget', 'belongs', 'contribution', 'maharashtra', 'sustainability', 'younger', '6', 'proletarian', 'hay', 'five', 'k', 'managed', 'university', 'conquest', 'monetary', 'stores', 'spain', 'sagamu', 'began', 'olive', 'earth', 'kpa', 'trading', 'experts', 'folded', 'jakob', 'prefecture', 'musician', 'separated', 'sectors', 'speech', 'friday', 'last', 'retired', 'outspoken', 'theft', 'metres', 'divided', 'factory', 'auxiliary', 'discovers', 'cox', 'odessa', 'slot', 'mcmanus', 'scott', 'speakers', 'surrendered', 'ratio', 'vieira', 'achieving', 'included', 'dock', 'road', 'wearing', 'sunlight', 'doctors', 'santa', 'napoleon', 'cluster', 'reports', 'wave', 'rendering', 'investors', 'riemann', 'characterized', 'thatcher', 'essays', 'heavily', 'honest', 'mulga', 'emigration', 'discharge', 'stretch', 'ramsay', 'angry', 'daley', 'carried', 'barrett', 'panels', 'admiral', 'retaliation', 'store', 'commissioned', 'pose', 'ranger', 'warehouse', 'nietzsche', 'jerome', 'might', 'decides', 'telling', 'humanitarian', 'rush', 'otherwise', 'uses', 'opinion', 'intern', 'preserve', 'bowl', 'npc', 'intense', 'codes', 'mas', 'went', 'des', 'fund', 'classified', 'sitcom', 'cold', 'protagonist', 'rotating', 'look', 'aip', 'resistance', 'permutations', 'tradition', 'correspondent', 'hermitage', 'residential', 'twenty-seven', 'corner', 'studied', 'lodge', 'too', 'favorite', 'shift', 'cancer', 'doors', 'own', 'north-eastern', 'declined', 'teacher', 'manages', 'mollusks', 'newman', 'brewery', 'expanded', 'louisville', 'frequent', 'your', 'bays', 'mountain', 'institution', 'purchase', '-square-foot', 'miniseries', 'jointly', 'paying', 'exist', 'district', 'upper', 'surf', 'action', 'iraqi', 'cats', 'evolution', 'physically', 'mississippi', 'governing', 'wet', 'apartments', 'toy', 'secondary', 'cleavage', 'scotland', 'top', 'rocks', 'leg', 'accordance', 'packet', 'bombardment', 'browhead', 'republic', 'ongoing', 'flying', 'bids', 'divide', 'internet', 'm.', 'concepts', 'stressed', 'begun', 'responded', 'korean', 'climate', 'arab', 'bom', 'evening', 'towards', 'idol', 'instead', 'colored', 'ducks', 'greatly', 'stadium', 'encourages', 'd', 'centre', 'jordan', 'mackay', 'palestine', 'refer', 'hampton', 'pamela', 'opera', 'taiwan', 'barbara', 'anticonvulsant', 'streaming', 'impressed', 'capacity', 'hygiene', 'survive', 'julian', 'rules', 'nomination', '5', 'dangerous', 'pin', 'caucus', 'speeches', 'dates', 'homology', 'canada', 'stephen', 'truck', 'mouse', 'feet', 'decrease', 'lasted', 'valve', 'prints', 'dominated', 'poldark', 'vegetation', 'emmy', 'terminal', 'interpreted', 'wallace', 'veterans', 'woody', 'problem', 'ad', 'exposed', 'judah', '8', 'pianist', 'children', 'testing', 'banks', 'resident', 'supplementary', 'provision', 'pit', 'nutrients', 'proceeded', 'holder', 'withdrawal', 'satellite', 'reside', 'niagara', 'valencia', 'iowa', 'ting', 'athlone', 'coastal', 'racial', 'useful', 'observations', 'means', 'requirements', 'sichuan', 'identities', 'submitted', 'claim', 'democracy', 'median', 'prefix', 'wall', 'rating', 'authorized', 'prepare', 'cerebral', 'afterward', 'stations', 'journalists', 'estate', 'treaties', 'behalf', 'sark', 'became', 'contributor', 'songwriter', 'chronic', 'planning', 'solo', 'committees', 'depot', 'roman', 'succeed', 'taking', 'talpur', 'exodus', 'michael', 'ages', 'de', 'taxes', 'orientation', 'ceased', 'microsoft', 'nancy', 'murray', 'administered', 'tehsil', 'rebel', 'announced', 'weekend', 'mid', 'dissolved', 'kerry', 'seasons', 'te', 'grade', 'patrol', 'abel', 'longer', 'potatoes', 'finals', 'they', 'legislature', 'southwestern', 'jerry', 'shipped', 'target', 'waugh', 'maritime', 'forever', 'suppress', 'commonly', 'read', 'artillery', 'believing', 'jack', 'bionicle', 'ago', 'stems', 'allegiance', 'immigrants', 'writer', 'end', 'coontz', 'genie', 'preferred', 'humor', 'deleted', 'b', 'rolled', 'runs', 'superintendent', 'surrounded', 'setting', 'installation', 'entity', 'brand', 'acquire', 'blitz', 'sudan', 'leaves', 'rainwater', 'play', 'bottom', 'collaborative', 'shoot', 'spring', 'vocalist', 'oral', 'malaria', 'explosive', 'cards', 'answered', 'arts', 'relative', 'os', 'and/or', 'bandits', 'middlesex', 'books', 'begin', 'everybody', 'compounds', 'gave', 'becoming', 'college', 'mirror', \"'s\", 'york', 'assignment', 'jonathan', 'widow', 'nepal', 'music', 'term', 'fronts', 'turkmenistan', 'stevens', 'rico', 'bank', 'al-maqrizi', 'socialist', 'macarthur', 'lance', 'closing', 'weak', 'agrees', 'legal', 'filming', 'must', 'muhammad', 'american', 'equals', 'marines', 'continent', 'loans', 'russia', 'sexual', 'unified', 'color', 'plateau', 'elena', 'grammy', 'di', 'lejía', 'fulton', 're-establish', 'richmond', 'seals', 'starting', 'organ', 'represent', 'situation', 'tells', 'played', 'fees', 'award', 'webb', 'recovery', 'creative', 'volcanoes', 'byron', 'norm', 'ranging', 'gordon', 'systematic', 'complaint', 'kmart', 'enrollment', 'applies', 'cleveland', 'audiences', 'supporter', 'french', 'quick', 'interesting', 'champions', 'publicly', 'long-time', 'gowdy', 'doug', 'track', 'sings', 'mason', 'wuhan', 'crashed', 'marshal', 'produce', 'loss', 'capitol', 'roll', 'british', 'christopher', 'location', 'owns', 'allowing', 'shiner', 'saints', 'death', 'web', 'file', 'giants', 'camps', 'podcast', 'factors', 'pipe', 'nuclear', 'policies', 'evans', 'shelters', 'errors', 'flores', 'tree', 'employee', 'bobby', 'holiday', 'overall', 'caf', 'please', 'productions', 'educators', 'domestic', 'development', 'conducts', 'assignments', 'just', 'serbian', 'suspension', 'mystery', 'battalions', '/', 'constituent', 'staten', 'official', 'partner', 'cut', 'stars', 'great', 'mickey', 'minority', 'automatically', 'subscription', 'ground', 'pietro', 'delhi', 'seeing', 'crop', 'introduction', 'crimes', 's', 'ramps', 'traditions', 'subdivided', 'kud', 'cost', 'kim', 'describing', 'disney', 'ahead', 'baseball', 'beijing', 'difficulty', 'perfect', 'flooding', 'today', 'edward', 'manners', 'contributed', 'democratic', 'forth', 'ó', 'schaefer', 'albert', 'savage', 'batted', 'hague', 'macau', 'oversaw', 'popularly', 'norway', 'prelude', 'ural', 'logan', 'opposition', 'pace', 'animation', 'chemicals', 'wadden', 'came', 'weeks', 'graduated', 'sandstone', 'lgbt', 'switch', 'peace', 'double', 'basketball', 'rma', 'skies', 'intended', 'funeral', 'karl', 'madrid', 'across', 'shot', 'travels', 'cited', 'accompany', 'mentally', 'survival', 'lose', 'stepped', 'custody', 'viewers', 'suction', 'boat', 'h', 'august', 'anyone', 'seeking', 'losing', 'coalition', 'presbyterian', 'degrees', 'first-person', 'administering', 'civic', 'appeared', 'qin', 'newly', 'exhaust', 'crystals', 'social', 'debate', 'believe', 'whereas', 'mediterranean', 'holland', 'personality', 'cambridge', 'arising', 'bell', 'midden', 'panchari', 'bundle', 'equal', 'sphere', 'batteries', 'oregon', 'resources', 'win', 'entirely', 'du', 'earning', 'voter', 'gods', 'bavarian', 'anniversary', 'assam', 'subdivisions', 'creating', 'ken', 'italians', 'edinburgh', 'stamford', 'database', 'sinn', 'codice_', 'arthur', 'dense', 'threaten', 'shark', 'reaper', 'iast', 'recipient', 'founded', 'kerala', 'greenhouse', 'maryland', 'childhood', 'use', 'spill', 'panama', 'territories', 'papers', 'renovation', 'old', 'except', 'fogle', 'rescue', 'networks', 'designing', 'definition', 'agricultural', 'practice', 'talks', 'invited', 'till', 'literally', 'alternate', 'iajuddin', 'westmeath', 'foghorn', 'chan', 'americas', 'suspected', 'lord', 'accumulated', 'tribal', 'details', 'kelso', 'prayer', 'getting', 'do', 'nationality', 'decided', 'quest', 'has', 'only', 'taluk', 'screened', 'portions', '.', 'hudson', 'cookie', 'ji', 'capture', 'elimination', 'swedish', 'bonn', 'bc', 'danger', 'nephew', 'genes', 'belgrade', 'achievement', 'remarks', 'paths', 'firing', 'sense', 'dialect', 'sung', 'tourists', 'determined', 'hoping', 'jasmine', 'wants', 'provide', 'uncover', 'brands', 'finland', 'dj', 'absorbed', 'beverage', 'locality', 'runners-up', 'windsor', 'injured', 'popular', 'impressive', 'baronet', 'subjects', 'yakama', 'addresses', 'fm', 'modified', 'awarded', 'alive', 'enemies', 'performance', 'grown', 'projects', 'ideas', 'medieval', 'tools', 'hours', 'honolulu', 'youngest', 'miners', 'crash', 'sheriff', 'stuart', 'columbia', 'instruments', 'orders', 'colonists', 'strongly', 'soil', 'cruise', 'utilizing', 'stables', 'minton', 'dismantled', 'suit', 'tomatoes', 'demon', 'weighed', 'acm', 'competing', 'masuku', 'selsoviet', 'styles', 'lakes', 'soon', 'pepper', 'delaware', 'months', 'pneumonia', 'laboratory', 'successfully', 'realised', 'both', 'effectively', 'māori', 'unofficial', 'grateful', 'roses', 'awareness', 'raid', 'regain', 'walls', 'grid', 'allen', 'correlate', 'ncaa', 'rear', 'powerful', 'fernando', 'typical', 'construction', 'lens', 'allied', 'education', 'heirs', 'conducted', 'neighboring', 'luxembourg', 'parker', 'gifted', 'receive', 'carry', 'worldwide', 'presidential', 'regiment', 'co', 'foundation', 'princess', 'two-time', 'borch', 'dhamaal', 'amyloid', 'director', 'our', 'stanford', 'estimate', 'browning', 'rider', 'selection', 'ran', 'image', 'appear', '9', 'clear', 'groups', 'société', 'count', 'cadets', 'neurological', 'electric', 'epic', 'thinking', 'california', '...', 'hp', 'dearborn', 'instruction', 'lamp', 'diploma', 'virginia', 'solid', 'me', 'factor', 'hart', '-speed', 'stories', 'surgeries', 'civilian', 'exact', 'stan', 'campus', 'opportunity', 'oppression', 'copies', 'temple', 'yale', 'guy', 'wrote', ';', 'johnny', 'collected', 'ronald', 'spa', 'facility', 'button', 'performances', 'probably', 'formula_', 'butler', 'tragedy', 'thick', ')', 'nationalist', 'farther', 'lincolnshire', 'dee', 'minutes', 'east', 'meaningful', 'ocean', 'portion', 'tip', 'angiotensin', 'throwing', 'worth', 'captive', 'indicate', 'william', 'angle', 'heating', 'visitors', 'atherton', 'niemöller', 'mountains', 'realized', 'criminal', 'middle', 'sharon', 'masters', 'angeles', 'expresses', 'tramway', 'airway', 'cruel', 'evacuate', 'earthquakes', 'reinforcing', 'comics', 'magazines', 'traditional', 'tourist', 'netherlands', 'nz', 'crews', 'actions', 'wards', 'exploiting', 'comet', 'media', 'high', 'show', 'jewish', 'hockey', 'scene', 'feature', 'gangs', 'spitzer', 'tommy', 'upright', 'writings', 'pioneer', 'goodrich', 'warning', 'defended', 'swimming', 'uniform', 'households', 'rancho', 'uncle', 'parking', 'fitted', 'iceland', 'provinces', 'evidence', 'walks', 'reunited', 'seats', 'replacing', 'former', 'intersection', 'methods', 'modern-day', 'handled', 'someone', 'poems', 'invented', 'sexy', 'from', 'medal', 't.', 'madeleine', 'unity', 'pembrokeshire', 'constructed', 'earl', 'frontier', 'holocaust', 'originated', 'devon', 'sacred', 'answer', 'plain', 'website', 'german', 'gregory', 'isle', 'st.', 'wildlife', 'collar', 'spe', 'saves', 'third', 'pact', 'kabamaru', 'phases', 'able', 'shepherd', 'dress', 'fifth', 'habitats', 'discontinued', 'release', 'eastwood', 'dylan', 'formation', 'bracket', 'summit', 'reservation', 'emma', 'burial', 'twentieth', 'keen', 'choreography', 'steward', 'logies', 'texas', 'unsuccessfully', 'deputy', 'sam', 'unusual', 'load', 'behind', 'crown', 'matches', 'nicholas', 'yakovlev', 'mexico', 'attacking', 'payments', 'columns', 'offered', 'façade', 'worship', 'escadrille', 'replaced', 'failure', 'mp', 'carlin', 'come', 'tennis', 'matters', 'authors', 'unincorporated', 'life', 'could', 'communities', 'karnataka', 'tianjin', 'artist', 'quilt', 'roles', 'rough', 'reaching', 'numbers', 'nave', 'williams', 'barry', 'ussr', 'photographed', 'sounds', 'arrests', 'representation', 'final', 'maintaining', 'severely', 'gas', 'uruguay', 'bolivia', 'had', 'chosen', 'darla', 'guang', 'rhythm', 'created', 'receptor', 'ordinary', 'business', 'rural', 'attached', 'diplomacy', 'put', 'drew', 'deadline', 'eleven', 'relics', 'body', 'dalai', 'conscience', 'shares', 'closed', 'card', 'annual', 'beta', 'churches', 'paul', 'rankings', 'tata', 'mid-', 'revolutionary', 'latino', 'autobiography', 'lieutenants', 'occur', 'winston', 'nervous', 'beginner', 'spanish', 'licking', 'african-american', 'arranged', 'fine', 're-released', 'windows', 'dollars', 'aaron', 'playoffs', 'answers', 'designated', 'authorities', 'interstate', 'supplies', 'ranked', 'draft', 'caroline', 'physical', 'macedonian', 'seven', 'duct', 'hughes', 'boundary', 'derby', 'turnout', 'bid', 'capital', 'bases', 'screen', 'pool', 'concerns', 'ships', 'lebanon', 'featured', 'wanderer', 'operated', 'wrigley', 'asking', 'sleep', 'brooks', 'villages', 'ming', 'collector', 'paved', 'silhouette', 'nickelodeon', 'headed', 'february', 'survived', 'yan', 'boys', 'wounded', 'vaughan', 'tight', 'host', 'core', 'express', 'couple', 'identification', 'rangers', 'storm', 'opry', 'portrayed', 'representing', 'prevalent', 'guilty', 'health', 'on', 'chamber', 'pink', 'textile', 'themselves', 'sufficiently', 'henderson', 'officially', 'li', 'benedictine', 'colonel', 'heard', 'boundaries', 'star', 'thermal', 'movement', 'bailiwick', 'deaf', 'off', 'pontevedra', 'hemorrhage', 'strike', 'petition', 'fat', 'educated', 'concluded', 'meaning', 'councillors', 'jackson', 'occasional', 'why', 'detroit', 'europe', 'session', 'unclear', 'failing', 'levine', 'nature', 'glen', 'locally', 'g', 'comic', 'at', 'considering', 'barracks', 'combat', 'pays', 'half', 'geometridae', 'telegraph', 'stafford', 'characteristics', 'paulus', 'outcome', 'dies', 'fearing', 'belonged', 'bed', 'headquarters', 'personnel', 'directors', 'assumed', 'his', 'cat', 'hoffman', 'airing', 'beliefs', 'runner-up', 'ryan', 'dimension', 'coucy', 'northern', 'silent', 'direction', 'premiere', 'ventures', 'percent', 'singh', 'baden-württemberg', 'hand', 'falls', 'ruined', 'automatic', 'rolling', 'animated', 'modules', 'semi', 'bands', 'wafter', 'squad', 'mccanns', 'abolished', 'kattappana', 'baby', 'staged', 'brakes', 'latter', 'tax', 'ferdinand', 'wrecked', 'size', 'gaining', 'remove', 'left-wing', 'palm', 'clearly', 'lowe', 'additionally', 'dollar', 'april', 'victims', 'events', 'treaty', 'ware', 'bloody', 'crater', 'prey', 'oslo', 'historical', 'plus', 'land', 'toward', 'nickname', 'grey', 'cylinders', 'journey', 'vladimir', 'sole', 'dominance', 'laurent', 'berkshire', 'buy', 'assembled', 'alone', 'tokyo', 'transit', 'matrix', 'volunteer', 'rate', 'verification', 'allah', 'gathered', 'impossible', 'cheetah', 'gallery', 'roosevelt', 'town', 'arriving', 'below', 'moore', 'orthodox', 'strong', 'transported', 'unpopular', 'thus', 'online', 'sites', 'flood', 'corresponding', 'pbr', 'fails', 'punk', 'monazites', 'charity', 'instructor', 'locals', 'flow', 'memorial', 'faster', 'leased', 'león', 'margin', 'package', 'colin', 'retained', 'rap', 'sit', 'sir', 'density', 'boxes', 'shortage', 'athletic', 'premises', 'buddhist', 'rockhampton', 'peptides', 'peak', 'spirit', 'strategically', 'carl', 'engraved', 'lin', 'attorney', 'samshvilde', 'chloride', 'careers', 'illustrated', 'synthesis', 'interact', 'advance', 'restrict', 'fighting', 'bremen', 'executive', 'integrity', 'tablets', 'customary', 'locomotives', 'dispute', 'issue', 'fair', 'attention', 'lone', 'north', 'riot', 'unfortunately', 'academic', 'classrooms', 'trucks', 'column', 'veterinary', 'terminology', 'facts', 'governed', 'prohibition', 'herzegovina', 'varied', 'fires', 'given', 'because', 'officials', 'oblast', '-word', 'adelphia', 'classics', 'remember', 'wine', 'word', 'bosnia', 'cathedral', 'kong', ']', 'reaches', 'apartment', 'uss', 'presently', 'carhartt', 'gygax', 'speedway', 'attracted', 'opposed', 'resource', 'conferred', 'missouri', 'doubt', 'callot', 'dogs', 'teammate', 'samples', 'murders', 'marriage', 'parliament', 'alien', 'september', 'conductor', 'elect', 'four-year', 'buying', 'abbey', 'lumpur', 'particular', 'while', 'converting', 'near', 'carries', 'professional', 'girls', 'nigeria', 'extra', 'sang', 'measurement', 'tours', 'electron', 'master', 'matthews', 'dual', 'labradus', 'discharged', 'charleston', 'further', 'lot', 'advanced', 'dmytryk', 'maxillofacial', 'group', 'representative', 'llc', 'pointing', 'dino', 'fighter', 'director-general', 'lead', 'mail', 'sector', 'dump', 'nebraska', 'intimate', 'chairman', 'hear', 'start', 'circumstances', 'meet', 'birds', 'fruits', 'network', 'maps', 'fred', 'przebendowski', 'toronto', 'coast', 'annapolis', 'ensued', 'republicans', 'steadily', 'wis', 'boxing', 'dropping', 'inclined', 'beet', 'employed', 'merits', 'destruction', 'furniture', 'coal', 'juan', 'robson', 'showcase', 'cover', 'organised', 'chancellor', 'raf', 'reducing', 'finds', 'pm', 'comanches', 'mainz', 'advisory', 'miami', 'wales', 'pronounced', '$', 'maine', 'lineup', 'tournaments', 'gothic', 'mart', 'armored', 'tunnel', 'constraints', 'sciences', 'southern', 'waters', 'ann', 'right', 'ended', 'program', 'finite', 'madsen', 'without', 'marked', 'boulevard', 'anita', 'literacy', 'pere', 'enemy', 'appeals', 'fruit', 'psychological', 'choral', 'rae', 'deck', 'minor', 'emphasis', 'essential', 'selby', 'extension', 'foreign', 'cooperation', 'uniting', 'short', 'melbourne', 'begotten', 'customs', 'credit', 'legendary', 'faculty', 'protecting', 'oakland', 'rope', 'imprisoned', 'raphael', 'bug', 'determine', 'regular', 'support', 'revealing', 'tries', 'signals', 'continues', 'reign', 'doctor', 'number', 'ruins', 'on-line', 'pertwee', 'trusted', 'adelaide', 'comment', 'hit', 'sanctuary', 'politicians', 'viaduct', 'darker', 'parallel', 'presents', 'orlando', 'deities', 'dyer', 'relay', 'bogdanov', 'african', 'lies', 'collaboration', 'rossiya', 'reputation', 'waves', 'u.s.', 'releases', 'alder', 'ending', 'albums', 'bomber', 'eton', 'producers', 'existing', 'either', 'surface', 'changes', '?', 'information', 'turkey', 'rebuilt', 'suspend', 'cdp', 'graduates', 'christianity', 'experimental', 'gained', 'highest', 'monitored', 'broadcasting', 'lands', 'drinking', 'publishing', 'ones', 'abilities', 'models', 'johns', 'rs', 'beginning', 'scope', 'golden', 'legislation', 'jühlke', 'george', 'flag', 'bernard', 'worlds', 'l.', 'place', 'scouting', 'stood', 'formal', 'mi', 'phone', 'prevent', '-ton', 'theorem', 'announcement', 'served', 'loses', 'disability', 'editors', 'avoid', 'rank', 'specialised', 'appears', 'sweden', 'cyclist', 'objects', 'rivers', 'taxa', 'agriculture', 'battalion', 'exits', 'alarm', 'graduate', 'poet', 'altarpiece', 'associate', 'commission', 'collaborations', 'agree', 'practices', 'james', 'attitudes', 'soap', 'guard', 'sentenced', 'cartesian', 'suddenly', 'sailed', 'morris', 'gambino', 'offensives', 'already', 'trips', 'embrace', 'dust', 'vrishchikolsavam', 'universities', 'sand', 'kelly', 'pain', 'before', 'marks', 'title', 'wins', 'apply', 'traced', 'greater', 'transform', 'extended', 'proposed', 'chronicles', 'hd', 'bear', 'crew', 'xavier', 'ibis', 'priesthood', 'qualification', 'endemic', 'kara', 'c', 'finishing', 'expertise', 'oils', 'atmospheric', 'circa', 'bible', 'securing', 'outdoor', 'rebellion', 'houston', 'existed', 'chassis', 'drunk', 'controversy', 'valid', 'dutch', 'emissions', 'seconds', 'turn', 'full-length', 'seed', 'saying', 'charm', 'maintenance', 'promises', 'nun', 'empty', 'shadow', 'ten', 'handed', 'mythology', 'anger', 'possess', 'triple', 'ur', 'frequently', 'journalism', 'kilometres', 'varies', 'beaten', 'coordinator', 'demolished', 'flanders', 'morale', 'terrain', 'bus', 'modification', 'external', 'jordaan', 'filters', 'roadway', 'dairy', 'effective', 'players', 'zhang', 'qualify', 'reason', 'save', 'inequality', 'partnership', 'futures', 'foreigners', 'border', 'punjab', 'tanzania', 'goaltender', 'restaurants', 'cultural', 'contractor', 'responding', 'resulting', 'wonderful', 'acquisition', 'translated', 'thompson', 'monument', 'specification', 'head', 'flint', 'fierce', 'junction', 'doctorate', 'achieve', 'sons', 'hop', 'combustion', 'cassiobury', 'nonetheless', 'help', 'bombs', 'delivered', 'interchange', 'moroccan', 'teachers', 'thinks', 'currents', 'jimmy', 'thai', 'perennial', 'kraków', 'abby', 'alfred', 'powers', 'broadsheet', 'predominant', 'discoveries', 'constitutional', 'japanese', 'descent', 'enters', 'blight', 'loop', 'pollution', 'pump', 'reconstruction', 'arthritis', 'assistant', 'oak', 'blocking', 'anonymous', 'stone', 'leaders', 'abdul', 'structural', 'budapest', 'affairs', 'false', 'intelligence', 'differing', 'visible', 'relation', 'catch', 'condé', 'simon', 'transmission', 'well-defined', 'observatory', 'sarah', 'meredith', 'administrator', 'into', 'hills', 'd.c.', 'needs', 'self-titled', '-game', 'oxygen', 'absent', 'graham', 'band', 'ukrainian', 'utah', 'australia', 'steam', 'pakistanis', 'creditors', 'pieces', 'valleys', 'visual', 'ring', 'angel', 'message', 'inclusion', 'visits', 'dealer', 'corps', 'hold', 'theology', 'inspection', 'wealth', 'vantage', 'instances', 'much', 'girlfriend', 'significantly', 'laguna', 'numerous', 'enormous', 'villoresi', 'happen', 'standards', 'neuron', 'remains', 'portsmouth', 'tide', 'la', 'positively', 'racist', 'hubei', 'hair', 'hafer', 'increased', 'period', 'da', 'tribe', 'station', 'diocese', 'self', 'attempts', 'd.', 'hide', 'each', 'performed', 'wood', 'wore', 'tracks', 'cannon', 'album', 'unemployment', 'politician', 'installment', 'salem', 'routes', 'approached', 'voted', 'caught', 'carol', 'howe', 'patterns', 'detective', 'initiatives', 'scrub', 'biblical', 'completing', 'cadoret', 'kingston', 'michigan', 'blamed', 'colonies', 'organization', 'renovations', 'concentration', 'receiver', 'again', 'valued', 'tape', 'benefits', 'forestry', 'shape', 'appointment', 'disruption', 'dog', 'contestants', 'sell', 'countries', 'bacon', 'cases', 'thirteen', 'supermarket', 'meeting', 'all-ireland', 'really', 'dortmund', 'galloway', 'mentions', 'interactions', 'milliken', 'chaired', 'ports', 'abundant', \"'ve\", 'speicher', 'seal', 'quarterly', 'bristol', 'tollesbury', 'roesbrugge', 'owing', 'tobacco', 'limited', 'doing', 'mccartney', 'restoration', 'porsche', 'alexander', 'shelved', 'mechanism', 'aging', 'perry', 'honey', 'flooded', 'pandemic', 'fast', 'exchange', 'torn', 'garratt', 'peninsula', 'coach', 'police', 'training', 'pioneering', 'aliens', 'things', 'bureau', 'know', 'flee', 'victorian', 'i.', 'bengal', 'worked', 'economics', 'java', 'nick', 'martin', 'intervened', 'm', 'offering', 'community', 'courts', 'striking', 'arena', 'jacques', 'plot', 'fortress', 'billboard', 'patrick', 'rosales', 'teaching', 'expelled', 'documents', 'footage', 'borne', 'characterised', 'carrott', 'educate', 'fishing', 'seattle', 'romanian', 'supreme', 'catherine', 'beach', 'try', 'ionotropic', 'mackenzie', 'trials', 'slightly', 'volunteers', 'project', 'topped', 'reasons', 'discovery', 'everyone', 'golf', 'mahendragarh', 'south-western', 'explored', 'hyde', 'achenes', 'machines', 'dolly', 'acting', 'moves', 'simplified', 'extending', 'lack', 'excluded', 'soul', 'robots', 'rooms', 'stem', 'wedding', 'relations', 'müller', 'south', 'soldiers', 'citation', 'installations', 'lecturer', 'slug', 'carefully', 'along', 'lifemark', 'manage', 'contemporary', 'psychology', 'illiterate', 'abbott', 'v.', 'died', 'mccormick', 'backbone', 'feel', 'belief', 'olympic', 'associated', 'output', 'chettleburgh', 'oklahoma', 'register', 'rights', 'yields', 'biggest', 'myers', 'feminist', 'snh', 'massa', 'noticed', 'applied', 'playing', 'disease', 'points', 'smith', 'unita', 'recorded', 'choice', 'dance', 'subfamily', 'persian', 'debris', 'praised', 'mainly', 'citizenship', 'hundreds', 'purposes', 'adonis', 'equipment', 'unique', 'moon', 'cyprus', 'muslims', 'position', 'marie', 'oncom', 'lighthouse', 'beating', 'carolina', 'learning', 'voluntary', 'preceded', 'transferred', 'success', 'edge', 'legend', 'ranks', 'islamic', 'celebrate', 'engage'}\n" ] } ], "source": [ "print('\\033[1m' + 'Size of vocabulary in train set:' + '\\033[0m' + ' {}'.format(train_vocab_size))\n", "print('\\033[1m' + 'Most frequent token in train set:' + '\\033[0m' + ' {}'.format(train_most_freq_token))\n", "print('\\033[1m' + 'The vocabulary of the train set:' + '\\033[0m' + ' {}'.format(train_vocab))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "1.3) Process the loaded token sequences for the train set and dev set using the vocabulary created above in a way that is suitable for a language model, making use of edge tokens, unknown tokens, and pad tokens.\n", "Do not do this for the test set as well." ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[1mThe maximum length of a sentence in the train set, excluding EDGE Token is:\u001b[0m 50\n" ] } ], "source": [ "# Creating a constant to set as the normalized length, assuming that the max length is the length of the longest sentence in the train set\n", "MAX_LENGTH = max([len(sentence) for sentence in train_sentences])\n", "print('\\033[1m' + 'The maximum length of a sentence in the train set, excluding EDGE Token is:' + '\\033[0m' + ' {}'.format(MAX_LENGTH))" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [], "source": [ "def match_tokens(token, vocabulary):\n", " \"\"\"Matches the given token to the corresponding token in the vocabulary.\n", " \n", " Args:\n", " token (str): The token to process.\n", " vocabulary (set): The vocabulary to match the token to.\n", " \n", " Returns:\n", " str: The processed token.\n", " \"\"\"\n", " # If the token is in the vocabulary, return it\n", " if token in vocabulary:\n", " return token\n", " # If the token is not in the vocabulary, return the unknown token\n", " else:\n", " return UNKNOWN_TOKEN" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [], "source": [ "def process_sentences(sentences, index_flag=\"x_indexes\"):\n", " \"\"\"Processes the given sentences through the use of the respective functions.\n", " \n", " Args:\n", " sentences (list): A list of sentences, where each sentence is a list of words.\n", " index_flag (str): A flag to determine whether to return the x_indexes or y_indexes.\n", " \n", " Returns:\n", " list: A list of sentences, where each sentence is a list of words.\n", " \"\"\"\n", " # Processing each sentence\n", " processed_sentences = []\n", "\n", " # Processing each sentence\n", " for sentence in sentences:\n", " # Processing each token in the sentence\n", " processed_sentence = [match_tokens(token, train_vocab) for token in sentence]\n", " \n", " # Adding the processed sentence to the list of processed sentences, with the edge tokens and padding tokens, depending on the index_flag\n", " if index_flag == \"y_indexes\":\n", " processed_sentences.append(processed_sentence + [EDGE_TOKEN] + [PADDING_TOKEN]*(MAX_LENGTH-len(processed_sentence)))\n", " else:\n", " processed_sentences.append([EDGE_TOKEN] + processed_sentence + [PADDING_TOKEN]*(MAX_LENGTH-len(processed_sentence)))\n", " \n", " # Returning the list of processed sentences\n", " return processed_sentences" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [], "source": [ "# Processing the dev and train set sentences\n", "dev_sentences_x_indexes = process_sentences(dev_sentences)\n", "dev_sentences_y_indexes = process_sentences(dev_sentences, index_flag=\"y_indexes\")\n", "train_sentences_x_indexes = process_sentences(train_sentences)\n", "train_sentences_y_indexes = process_sentences(train_sentences, index_flag=\"y_indexes\")" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[1mThe processed dev set contains the following sentences:\u001b[0m\n", "['', 'jones', 'viewed', 'the', 'resolution', 'as', 'the', 'framework', ',', 'and', 'not', 'the', 'final', 'solution', ',', 'for', '', '', 'to', '', 'issues', 'that', '', '``', 'human', 'freedom', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'lives', 'in', '', ',', 'where', 'he', '', 'full-time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'natural', 'gas', '', '', 'the', 'country', \"'s\", 'territory', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'until', 'recently', ',', 'the', 'study', 'of', 'sign', 'language', 'and', 'sociolinguistics', 'has', 'existed', 'in', 'two', 'separate', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'house', 'of', 'commons', 'she', 'sat', 'on', 'the', 'commons', 'reference', 'group', 'on', 'representation', 'and', 'inclusion', 'and', 'previously', 'sat', 'on', 'the', '', 'bills', '(', 'joint', 'committee', ')', 'and', 'women', 'and', '', 'committee', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'won', 'a', 'number', 'of', 'significant', 'international', 'titles', '(', 'as', 'shown', 'by', 'the', 'chart', 'below', ')', ',', 'and', 'at', '', 'was', 'runner-up', 'to', 'china', \"'s\", 'sun', '', 'at', 'the', '1', '9', '9', '9', '', 'world', 'championships', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'province', 'is', 'divided', 'into', '1', '0', 'districts', '(', '``', '', \"''\", ')', ',', 'which', 'are', 'further', 'divided', 'into', '3', '2', '``', 'communes', \"''\", 'or', 'municipalities', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'australia', ',', 'it', 'earned', 'and', 'in', 'malaysia', ',', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'next', '', 'years', 'followed', 'with', '', 'holding', 'permanent', '', 'at', 'the', 'no', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'girls', 'sleep', 'in', '', 'until', 'year', '9', '(', 'ages', '1', '4', '/', '1', '5', ')', ',', 'after', 'which', 'they', 'transfer', 'to', 'double', 'or', 'single', 'study', '', 'for', 'their', 'two', '', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'visits', 'to', 'the', '', 'have', 'to', 'be', 'arranged', 'together', 'with', 'the', 'tourist', 'office', 'in', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'its', 'construction', ',', 'the', 'stadium', 'had', 'no', 'official', 'name', ',', 'though', 'it', 'was', 'generally', 'referred', 'to', 'as', '``', 'the', 'east', 'bank', 'stadium', \"''\", ',', 'a', 'reference', 'to', 'the', 'stadium', \"'s\", 'location', 'on', 'the', 'eastern', 'bank', 'of', 'the', 'cumberland', 'river', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '5', 'september', '1', '9', '9', '2', 'the', 'constitution', 'of', 'the', 'nepal', '', 'academy', 'was', 'formally', 'approved', 'and', 'an', 'academic', 'council', 'with', 'a', 'maximum', 'number', 'of', '7', '5', 'members', 'was', 'formed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'remained', 'small', 'and', 'did', 'not', 'hold', 'its', 'first', 'national', 'party', 'congress', 'until', '1', '9', '5', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'study', '', 'were', 'then', 'asked', 'to', 'respond', 'as', 'quickly', 'as', 'possible', 'once', 'the', '', 'were', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'second', 'committee', ',', 'from', '1', '9', '8', '6', 'to', '1', '9', '8', '8', ',', 'was', 'gordon', '', ',', '', '', ',', 'carol', 'rhodes', ',', 'peter', 'thompson', ',', 'simon', 'brown', 'and', 'douglas', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'october', '9', ',', '1', '9', '8', '6', ',', '', 'and', 'cox', \"'s\", 'other', 'two', 'independent', 'stations', ',', '', 'in', 'oakland', 'and', '', 'in', 'detroit', ',', 'joined', 'the', 'fox', 'broadcasting', 'company', 'as', 'charter', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'club', ',', 'whose', 'new', 'president', 'is', 'called', '', '', ',', 'is', 'this', 'time', 'quite', '', 'in', '[', 'division', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'their', 'broadcast', ',', 'each', 'episode', 'would', 'be', 'repeated', 'the', 'following', 'morning', 'at', '7', ':', '0', '0', 'am', 'on', 'bbc', 'two', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '5', ',', 'he', 'returned', 'to', 'the', '', 'when', 'he', 'signed', 'with', 'the', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'started', 'seeing', 'minorenti', 'without', 'her', 'husband', 'being', 'present', 'and', '', '', ',', 'learning', 'of', 'this', ',', 'became', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'census', 'reported', 'that', '9', '8', '.', '3', '%', 'of', 'the', 'population', 'lived', 'in', 'households', 'and', '1', '.', '7', '%', 'were', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'call', 'sign', 'was', 'moved', 'to', '9', '2', '.', '1', 'fm', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'such', 'powers', 'are', ',', 'however', ',', 'in', 'each', 'case', 'subject', 'to', '', ',', 'or', '', ',', 'by', 'the', 'chief', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '4', '6', ',', 'he', 'was', 'made', 'a', '', 'of', 'the', 'order', 'of', 'st', 'michael', 'and', 'st', 'george', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'chiang', '', 'himself', 'intervened', ',', 'perhaps', 'at', 'the', '', 'of', 'his', 'wife', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'faced', '', 'white', 'and', 'nancy', '', 'in', 'the', 'republican', 'primary', ',', 'and', 'was', 'attacked', 'by', 'white', 'over', 'his', 'previous', 'registration', 'as', 'a', 'democrat', 'and', 'for', 'being', 'a', '``', 'career', 'politician', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'uss', '``', '', \"''\", '(', '1', '8', '6', '2', ')', 'was', 'a', '', 'captured', 'by', 'the', 'union', 'navy', 'during', 'the', 'american', 'civil', 'war', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', 'obtained', 'many', 'other', 'minor', 'achievements', ',', 'awards', 'and', '', ',', 'by', 'the', 'major', 'sport', 'magazines', 'and', 'newspapers', ',', 'which', 'are', 'not', 'reported', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'captain', 'allan', 'himself', 'commanded', 'the', '``', 'canada', \"''\", 'while', 'his', 'son', 'james', 'succeeded', 'him', 'in', 'the', 'command', 'of', 'the', '``', 'favorite', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'species', 'of', 'bee', 'in', 'the', 'family', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'the', 'last', 'horror', 'movie', \"''\", 'was', 'released', 'onto', 'dvd', 'through', '', \"'s\", '``', '', 'zone', \"''\", 'label', 'on', '7', 'december', '2', '0', '0', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'district', 'health', 'boards', '', 'of', 'a', 'mixture', 'of', 'appointed', 'and', 'elected', 'members', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '5', '8', '8', ',', 'when', 'the', 'fleet', 'of', 'the', 'spanish', '', 'in', 'ireland', 'were', 'returning', 'to', 'spain', 'during', '', 'weather', ',', 'many', 'of', 'its', 'ships', 'sought', 'shelter', 'at', 'the', '', 'islands', 'and', 'some', 'were', 'wrecked', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'met', 'at', 'camp', 'david', 'on', 'the', 'weekend', 'of', '1', '5', 'september', 'to', 'shape', 'what', 'became', 'the', 'war', 'on', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'military', 'achievements', 'allowed', 'him', 'to', 'be', 'promoted', 'to', 'the', 'position', 'of', 'captain', 'of', 'the', 'region', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', 'its', 'foundation', 'as', 'the', 'cave', 'monastery', 'in', '1', '0', '5', '1', ',', 'the', '', 'has', 'been', 'a', '', 'center', 'of', 'eastern', 'orthodox', 'christianity', 'in', 'eastern', 'europe', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', '1', '9', '9', '4', 'he', 'has', '', 'twenty', 'books', '(', 'as', 'of', '2', '0', '0', '9', ')', 'covering', 'a', 'broad', 'range', 'of', 'topics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'intended', 'the', '', 'to', 'run', 'the', '', '1', 'ad', 'distributed', 'operating', 'system', 'on', 'all', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'also', 'played', 'the', 'role', 'of', '', '', 'in', 'the', '', 'tv', 'show', ',', '``', '', \"''\", ',', 'opposite', '', 'anderson', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'park', ',', 'boundary', 'waters', '', 'area', '', 'and', '', '', 'have', 'famous', '', 'routes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'had', 'been', 'cited', 'as', 'being', 'the', '``', '', \"''\", 'of', 'the', 'hospital', 'in', '1', '9', '1', '8', 'other', 'members', 'of', 'the', 'board', 'were', 'lady', 'mary', '', '(', 'wife', 'of', 'sir', 'cecil', 'and', 'daughter', 'of', 'dr', 'william', '', '', '', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'thus', ',', 'p', 'became', 'the', 'first', 'clearly', 'defined', 'metazoan', 'example', 'of', 'this', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', '', 'cold', 'but', 'wilde', 'arrived', '', 'in', '``', '', '', \"''\", ',', 'wearing', 'a', 'green', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'continued', 'playing', 'for', 'past', '', 'in', '', 'cricket', 'through', 'the', 'late', '1', '9', '3', '0', \"'s\", ',', 'and', 'in', '1', '9', '4', '0', 'he', 'began', 'opening', 'the', '', 'for', 'past', '', 'again', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'north', 'queensland', 'tin', 'mining', 'corporation', 'was', 'registered', 'on', '2', '0', 'september', '1', '8', '9', '9', 'with', '', 'phillips', 'as', 'chairman', 'and', 's', '', 'as', 'queensland', 'director', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'nelson', ',', 'the', 'primary', 'effect', '', '', 'have', 'is', 'the', 'promotion', 'of', '', '(', 'and', 'sometimes', '', ')', '', 'within', 'student', 'bodies', ',', 'faculty', ',', 'and', 'academic', 'departments', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'has', 'had', 'a', 'career', 'in', 'both', 'business', 'and', 'politics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'let', '``', 'r', \"''\", 'be', 'the', '', 'of', 'the', 'earth', 'and', '``', 'h', \"''\", 'be', 'the', 'altitude', 'of', 'a', '', 'station', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'minor', 'move', 'is', 'an', 'album', 'by', 'american', 'hard', '', '', '', 'brooks', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'distinctive', 'feature', 'is', 'that', 'the', 'leaf', '', 'and', '', 'are', '', '', ',', 'when', 'held', 'up', 'to', 'the', 'light', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'received', 'his', '', ',', 'alpha', '', 'alpha', ',', 'from', '', 'university', 'school', 'of', 'medicine', 'in', '1', '9', '8', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'studied', 'mining', 'and', '', 'at', 'the', 'university', 'of', 'edinburgh', 'graduating', 'with', 'a', '', 'in', '1', '9', '2', '9', 'and', 'gaining', 'a', 'doctorate', '(', 'phd', ')', 'in', '1', '9', '3', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'a', 'great', 'time', '', ',', 'the', '', 'concluded', ',', 'contemporary', 'humans', 'would', 'be', 'more', 'likely', 'to', 'find', '', 'evidence', 'such', 'as', '', 'in', 'the', 'chemical', 'composition', 'or', '', '', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'reached', 'the', 'rank', 'of', 'captain', 'in', '1', '8', '7', '0', 'and', 'retired', 'from', 'the', 'army', 'in', '1', '8', '8', '6', 'with', 'rank', 'of', 'lieutenant', 'colonel', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'company', 'also', 'owned', 'the', 'new', 'york', ',', 'mobile', ',', 'and', 'mexican', '', 'company', ',', 'as', 'well', 'as', 'a', 'small', 'line', 'in', 'alabama', 'called', 'the', '', 'railway', 'company', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'sixth', ',', '1', '6', '5', 'years', 'after', '', ',', 'was', 'that', 'of', 'jared', 'begotten', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'this', 'feature', 'is', 'found', 'in', 'females', ',', 'it', 'will', 'only', 'be', 'seen', 'on', 'a', 'maximum', 'of', '4', 'legs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '1', '9', '5', '9', 'remake', 'with', 'the', 'same', 'title', 'was', 'directed', 'by', 'douglas', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'december', '1', '9', '2', '5', ',', 'while', 'traveling', 'from', 'beijing', 'to', 'shanghai', 'by', 'train', ',', '', 'was', '', 'by', 'zhang', '', ',', 'a', 'member', 'of', '', '', \"'s\", 'forces', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'comparison', 'of', '', '', '', 'from', '2', '3', 'museum', '', 'of', '', 'and', '', '', 'with', 'other', 'living', 'tiger', 'subspecies', 'revealed', 'a', 'close', '', 'resemblance', 'of', 'the', '', 'in', 'the', '', 'islands', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'graduated', 'in', '2', '0', '0', '3', 'with', 'a', 'bachelor', 'of', 'fine', 'arts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'to', 'polish', '', \"'s\", 'weapons', 'and', '', 'has', 'to', 'choose', 'the', 'next', 'day', \"'s\", 'victim', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'civil', 'and', 'community', 'organizations', 'in', 'darfur', 'are', 'also', 'supported', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'barriers', 'have', 'been', 'erected', 'at', '', '', '', 'and', '', '', '', 'stations', 'in', '', 'of', 'higher', '', 'traffic', 'with', 'the', 'opening', 'of', 'downtown', 'line', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'receptors', 'carry', 'a', 'current', 'by', 'ca', '2', '+', '', 'and', 'can', 'be', 'blocked', 'by', '', '', '2', '+', '', 'depending', 'on', 'voltage', 'and', 'membrane', 'potential', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'continued', ',', '``', '', 'mark', '', 'has', 'a', 'great', 'line', 'in', '', ',', 'but', 'his', 'interview', 'skills', 'leave', 'something', 'to', 'be', 'desired', ',', 'as', 'do', 'his', 'powers', 'as', 'an', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'leaving', 'the', 'band', ',', '', '', 'performed', 'as', '', 'comedian', 'and', 'later', 'worked', 'as', 'a', 'traffic', 'reporter', 'with', 'the', 'team', 'that', 'replaced', 'howard', '', 'at', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'park', 'was', 'shot', 'in', 'the', 'chest', 'and', 'the', 'head', ',', 'and', 'died', 'almost', 'immediately', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '3', '4', ',', 'he', 'tied', 'for', '1', '', '2', 'nd', 'with', '', '', 'in', '', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'estimated', '1', '6', ',', '0', '0', '0', 'or', 'more', 'minor', '', '', 'down', 'over', '', 'county', 'in', 'an', 'area', 'about', '6', 'miles', 'east', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'khan', '', 'its', 'chief', 'cities', 'and', '', 'its', '', ',', 'such', 'as', 'the', 'famous', 'temple', 'of', '', 'which', 'had', 'been', 'rebuilt', 'in', 'the', '', 'century', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'couple', 'lived', 'in', 'nearby', '', '', ',', 'and', 'had', 'three', 'sons', 'there', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', '', 'engineering', 'initiatives', ',', 'harris', 'led', 'the', 'company', \"'s\", 'development', 'and', '', 'of', 'offset', 'printing', 'using', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', '', \"''\", 'ranked', '', '3', '0', 'th', 'on', 'its', '``', 'top', '5', '0', 'developers', 'of', '2', '0', '1', '2', '``', 'list', ',', 'calling', '', 'games', 'a', '``', 'genre', 'in', 'their', 'own', 'right', \"''\", 'but', 'noting', 'that', 'they', 'still', 'were', 'mostly', 'a', '', 'in', 'the', 'market', '.', '', '']\n", "['', 'a', 'night', 'bomber', 'is', 'a', 'bomber', 'aircraft', 'intended', 'specifically', 'for', 'carrying', 'out', 'bombing', 'missions', 'at', 'night', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'producers', 'would', 'ask', 'the', 'actors', 'several', 'questions', 'and', 'they', 'would', 'respond', 'as', 'the', 'characters', 'they', 'were', '', 'for', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'cavan', '', '', 'their', 'throne', 'as', 'cavan', '', ',', 'defeating', '', '0', '-', '1', '3', 'to', '0', '-', '8', 'in', 'the', 'final', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'told', 'international', '', 'magazine', ',', '``', 'for', 'every', 'competition', ',', 'i', 'just', 'went', 'in', 'there', 'with', 'confidence', 'in', 'myself', 'and', 'in', 'my', 'team', ',', 'and', 'each', 'day', 'it', 'felt', 'like', 'i', 'gained', 'more', 'and', 'more', 'experience', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', 'april', '2', '0', '1', '3', ',', 'liwa', '', 'al-raqqa', '', 'with', 'al-nusra', 'front', ',', '', '', ',', 'the', 'islamic', 'state', 'of', 'iraq', 'and', 'the', '', '(', 'isil', ')', ',', 'and', 'other', 'rebel', 'groups', 'in', 'the', 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'as', 'the', 'city', \"'s\", 'most', 'important', 'founding', 'father', ',', 'hart', 'is', '', 'with', 'the', '', 'd.', 'hart', 'bridge', 'over', 'the', 'st.', 'johns', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'studying', '', 'archaeological', 'sites', 'in', 'hawaii', ',', '', 'have', 'found', 'the', 'concentration', 'of', 'the', 'remains', 'of', 'rats', 'associated', 'with', '', 'households', 'accounted', 'for', 'three', 'times', 'the', 'animal', 'remains', 'associated', 'with', 'elite', 'households', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', '', ',', '', 'wrote', '``', 'the', 'big', 'street', \"''\", '(', '1', '9', '4', '2', ')', ',', 'based', 'on', 'a', '', 'story', ',', 'and', '``', 'they', 'got', 'me', 'covered', \"''\", '(', '1', '9', '4', '2', ')', 'for', 'bob', 'hope', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'founded', 'by', '', '', ',', '', 'ahmed', ',', '', '', ',', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'side', 'with', 'the', 'old', 'ones', '(', 'or', 'the', '', ')', 'wins', 'if', 'they', 'have', 'scored', 'at', 'least', '6', '1', 'points', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'third', 'series', 'received', 'increased', 'acclaim', 'and', 'popularity', 'amongst', 'children', 'and', 'adults', 'alike', 'during', 'the', '2', '0', '2', '0', 'pandemic', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'in', 'italy', ',', 'he', 'contracted', '', '', 'by', '', 'of', 'stone', 'dust', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '', 'was', '', 'by', 'schmidt', \"'s\", 'for', 'a', '&', 'amp', ';', 'p', 'in', 'the', 'mid-', '1', '9', '7', '0', 's', 'and', 'was', 'attributed', 'to', 'valley', '', '', 'co.', 'other', '', 'produced', '', 'for', 'a', '&', 'amp', ';', 'p', 'at', 'other', 'times', '.', '', '', '', '', '', '']\n", "['', 'however', ',', '', 'later', 'limited', 'the', 'top', 'speed', 'to', ',', 'since', 'test', 'runs', 'require', '1', '0', '%', 'faster', 'speed', 'than', 'the', '', 'commercial', 'speed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'like', 'the', 'majority', 'of', 'games', 'that', 'have', 'been', '', '', ',', 'violence', 'in', 'the', 'game', 'that', 'is', 'applied', 'to', 'the', 'character', 'rather', 'than', 'that', 'the', 'character', 'applies', 'is', 'not', 'considered', 'to', 'make', 'the', 'game', 'a', 'violent', 'game', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'billboard', 'charts', '', 'the', 'popularity', 'of', 'songs', 'and', 'albums', 'in', 'a', 'weekly', 'publication', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'printed', 'in', 'a', '', '', 'house', 'in', '', '', '', ',', 'therefore', 'it', 'is', 'called', 'the', '', 'bible', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'due', 'to', 'the', '', '', ',', '', 'and', '', 'the', '', 'of', 'the', 'high', 'coast', 'is', 'popular', 'in', 'the', 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'caused', 'hungary', 'to', 'be', 'moved', 'to', 'pool', 'b', ',', 'replacing', '', 'in', 'all', 'the', 'games', 'against', 'the', 'other', 'teams', 'in', 'pool', 'b', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'that', 'justice', 'be', 'done', 'was', 'a', '', 'american', 'propaganda', 'film', 'directed', 'by', 'george', 'stevens', 'and', 'made', 'in', '1', '9', '4', '5', 'by', 'the', 'office', 'of', 'war', 'information', 'for', 'the', 'us', 'chief', 'of', '', 'at', '', 'and', 'the', 'war', 'crimes', 'office', 'of', 'the', 'judge', 'advocate', 'general', \"'s\", 'corps', '.', '', '']\n", "['', '', 'of', 'deputy', ',', 'he', 'was', 'twin', 'brother', 'of', 'alfred', '', ',', 'who', 'was', 'also', 'appointed', '', 'but', 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'system', '', 'in', '1', '8', '1', '4', ',', 'and', 'the', 'following', 'territorial', 'settlement', ',', 'the', 'congress', 'of', 'vienna', ',', '', 'the', 'state', 'of', '', 'to', 'a', 'restored', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'despite', 'the', 'advice', 'of', 'her', 'lawyer', ',', 'she', 'pleaded', 'not', 'guilty', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'and', '', '', 'did', 'a', 'study', 'to', 'see', 'if', 'there', 'are', 'specific', '', 'that', 'make', 'a', 'person', 'more', 'or', 'less', '', 'to', '', 'or', '', 'musical', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'the', 'redskins', ',', 'phillips', 'worked', 'with', 'notable', 'tight', 'ends', 'like', 'vernon', 'davis', 'and', 'jordan', '', ',', 'the', 'latter', 'of', 'whom', 'made', 'the', 'pro', 'bowl', 'following', 'the', '2', '0', '1', '6', 'season', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'quickly', '', 'the', 'boy', 'in', 'the', 'practical', 'aspects', 'of', '', 'and', 'also', 'succeeded', 'in', '', 'in', 'his', 'nephew', 'a', '', 'with', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'first', 'film', ',', '``', 'virginia', \"''\", '(', '1', '9', '4', '1', ')', ',', 'directed', 'by', 'edward', 'h.', '', ',', 'starred', 'madeleine', '', 'whom', 'he', 'married', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', '1', '8', '8', '6', '', 'of', '', 'created', 'the', 'village', 'of', 'st.', 'louis', 'park', ',', 'and', 'a', 'later', 'division', 'approved', 'april', '5', ',', '1', '8', '8', '9', ',', 'produced', 'the', 'village', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'given', '``', 'where', 'love', 'has', 'gone', \"''\", '(', '1', '9', '6', '4', ')', ',', 'another', 'robbins', 'adaptation', 'by', 'levine', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'each', 'terminal', 'on', 'a', '', '', 'is', 'connected', 'to', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'is', 'only', 'the', 'second', 'time', 'which', 'a', '', 'site', 'selection', 'vote', 'has', 'been', 'held', 'at', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'jones', \"''\", ',', 'will', '', 'as', 'principal', '', ',', '', '', 'as', '', '``', 'cookie', \"''\", 'brown', ',', 'craig', 'robinson', 'as', '', '``', 'freight', 'train', \"''\", 'brown', 'and', 'david', 'lynch', 'as', '', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'more', 'that', 'the', 'head', 'is', 'exposed', 'to', 'these', 'hits', ',', 'makes', 'these', 'athletes', 'more', '', 'to', 'these', 'head', 'injuries', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'went', 'on', 'leave', 'from', '9', 'january', '1', '9', '1', '7', 'to', '3', 'february', '1', '9', '1', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'the', 'united', 'states', 'census', 'bureau', ',', 'the', 'township', 'has', 'a', 'total', 'area', 'of', ',', 'of', 'which', 'is', 'land', 'and', '(', '1', '0', '.', '4', '3', '%', ')', 'is', 'water', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'population', 'growth', 'rate', 'in', '2', '0', '0', '1', 'was', '4', '.', '2', '%', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'system', 'also', 'includes', 'a', 'planet', 'called', '', ',', 'its', 'moon', '', 'and', 'a', 'space', 'station', 'called', 'parma', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'component', 'maintenance', 'department', 'consists', 'of', 'seven', 'workshops', ',', 'engineering', 'production', 'bureau', 'and', 'support', 'unit', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'eggs', ',', 'salt', 'and', '', 'are', 'added', 'as', 'the', '', 'continues', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'reaction', 'to', 'the', '', 'conference', 'on', 'the', 'jewish', 'holocaust', ',', 'held', 'in', 'late', 'january', '2', '0', '0', '0', ',', '', 'issued', 'a', 'press', 'release', 'that', 'it', 'published', 'on', 'its', 'official', 'website', ',', 'containing', 'the', 'following', 'statements', 'from', 'a', 'senior', 'leader', ':', '', '', '', '', '', '', '', '']\n", "['', 'she', 'argued', ',', '``', 'the', 'spirit', 'of', 'the', '', 'on', 'racism', 'and', '', 'awareness', \"'\", 'is', 'not', '', 'with', '', ';', 'it', 'is', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'posluns', 'were', 'primarily', 'interested', 'in', 'acquiring', 'the', 'company', \"'s\", '5', '', 'head', 'office', 'building', 'on', 'lake', 'shore', 'boulevard', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'elected', 'to', 'the', 'municipal', 'council', 'in', '1', '9', '1', '2', ',', 'and', 'became', 'mayor', 'in', '1', '9', '1', '9', ',', 'a', 'post', 'he', 'retained', 'until', 'his', 'death', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'switzerland', 'is', 'one', 'of', 'the', 'last', '', 'nations', 'to', 'provide', 'for', '', ',', 'because', 'the', 'swiss', 'federal', 'supreme', 'court', 'held', 'in', '2', '0', '0', '1', 'that', 'the', '1', '9', '9', '6', 'swiss', '', 'act', 'did', 'not', 'require', 'it', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'moved', 'to', 'seattle', 'in', '1', '9', '9', '7', ',', 'where', 'he', 'met', '', '', ',', 'the', '', 'of', '', '?', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'journal', 'covers', 'a', 'wide', 'range', 'of', 'topics', ',', 'including', 'the', 'sources', 'and', 'nature', 'of', 'ethnic', 'identity', ',', 'minority', 'rights', ',', 'migration', 'and', 'identity', 'politics', '-', 'topics', 'which', 'remain', 'central', 'to', 'the', 'modern', 'world', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'advantage', 'of', '', 'navigation', 'would', 'be', 'more', 'available', 'signals', 'than', 'from', '', '', ',', 'being', '', ',', 'with', 'the', 'broad', 'range', 'of', '', 'available', ',', 'and', 'security', 'of', 'signal', 'sources', 'from', 'destruction', 'by', '', 'weapons', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ang', 'chan', 'ii', 'was', 'not', 'allowed', 'to', 'go', 'to', '', 'until', '', 'died', 'in', '1', '8', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', 'result', ',', '', \"'s\", '', 'expressed', 'no', 'further', 'concerns', 'about', 'the', 'charity', \"'s\", 'going', 'concern', 'status', 'in', 'the', 'accounts', 'signed', 'in', 'november', '2', '0', '1', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'climbing', 'on', 'the', 'big', 'stage', 'began', 'for', 'the', 'singer', 'later', '-', 'after', 'the', 'transition', 'to', 'the', '', 'philharmonic', 'and', 'receiving', 'first', 'prize', 'at', 'the', '', 'competition', 'for', 'the', 'best', 'performance', 'of', 'songs', 'of', 'the', 'socialist', 'countries', 'in', '1', '9', '7', '9', '.', '', '', '', '', '', '', '', '']\n", "['', 'by', 'the', 'end', 'of', 'the', 'decade', ',', 'mas', 'was', 'flying', 'to', '4', '7', 'overseas', 'destinations', ',', 'including', 'eight', 'european', 'destinations', ',', 'seven', '', 'destinations', ',', 'and', 'united', 'states', 'destinations', 'of', 'los', 'angeles', 'and', 'honolulu', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '', 'inc.', 'is', 'an', 'investment', 'management', 'firm', '', 'to', 'the', 'canadian', 'retail', 'market', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'a', 'world', 'fantasy', 'award', 'winner', 'and', 'served', 'as', 'editor', 'of', '``', '', '', \"''\", 'magazine', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', 'january', '1', '9', '9', '0', ',', 'the', '', 'cabinet', 'appointed', 'the', 'national', '', 'laboratory', '(', '', ')', 'as', 'the', 'official', '', 'of', 'malaysia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'trade', 'between', 'qing', 'and', 'russia', 'was', 'very', 'important', 'to', 'russia', 'as', 'one', 'of', 'its', 'main', 'sources', 'of', 'income', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'previously', 'lived', 'in', 'little', 'rock', ',', '', ',', '', ',', 'and', '', ',', 'arkansas', ',', 'dates', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '6', 'has', 'one', 'that', 'only', '', 'u', '3', '1', 'of', '', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'both', '2', '0', '3', '(', 'r', ')', 'squadron', 'and', 'the', '', 'force', '', 'moved', 'to', 'raf', 'valley', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', '', 'were', 'subjected', 'to', '', 'from', 'spectators', ',', 'though', 'there', 'were', 'also', 'many', 'supporters', 'present', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'admiral', '', '', '(', 'born', '', ',', '2', '2', 'july', '1', '9', '5', '5', ')', 'is', 'a', 'retired', 'italian', 'naval', 'officer', 'who', 'served', 'as', 'chief', 'of', 'the', 'italian', 'navy', 'from', '2', '0', '1', '6', 'to', '2', '0', '1', '9', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'corps', 'was', 'disbanded', 'in', '1', '9', '8', '9', 'was', 'a', 'result', 'of', 'soviet', '', 'reductions', 'at', 'the', 'end', 'of', 'the', 'cold', 'war', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'under', 'the', '', 'authorities', ',', '', 'works', 'with', 'the', 'private', 'sector', 'to', '', 'military', 'family', 'housing', 'through', 'a', 'variety', 'of', 'financial', '', 'loans', ',', 'loan', '', ',', 'equity', '', ',', '', 'or', '', 'of', 'land', 'and/or', '', 'other', 'facilities', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'home', 'entertainment', 'division', 'was', 'a', 'home', 'video', 'distribution', 'company', 'which', 'was', 'sold', 'to', 'live', 'entertainment', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'the', '2', '0', '0', '6', 'film', 'documentary', '``', 'notes', 'on', 'marie', '', \"''\", 'produced', 'by', '', '', ',', 'it', 'was', 'marie', 'who', '', '', 'on', 'using', 'the', '1', '6', 'mm', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', '[', 'johnson', ']', 'did', \"n't\", 'make', 'public', '', '[', 'of', 'trips', 'to', 'alice', ']', 'like', 'some', 'of', 'the', 'politicians', 'did', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'areas', 'of', 'national', 'competition', 'policy', 'require', 'structural', 'reform', 'of', 'public', '', 'and', 'require', 'owners', 'of', '', 'facilities', 'to', '', '', 'access', '', 'with', 'other', 'users', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '9', '4', '1', 'to', '1', '9', '4', '3', ',', 'he', 'lived', 'in', '', ',', 'where', 'he', 'taught', 'mathematical', 'analysis', ',', 'and', 'from', '1', '9', '4', '3', 'in', 'moscow', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'made', 'up', 'of', 'a', 'base', 'of', '', '', 'with', 'other', '', 'including', 'iron', 'compounds', ',', 'which', 'are', 'especially', 'prominent', 'in', 'some', 'species', 'of', '``', '', \"''\", 'and', '``', '', \"''\", 'and', 'is', 'not', 'soluble', 'in', 'an', '', 'solution', 'of', '', '', '.', '', '', '', '', '', '']\n", "['', 'white', 'obtained', 'his', 'primary', 'education', 'in', 'local', 'common', 'schools', ',', 'including', 'the', 'romney', 'classical', 'institute', ',', 'which', 'was', 'presided', 'over', 'by', 'dr.', 'william', 'henry', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'differs', 'from', 'physical', 'sex', 'ratio', 'which', 'simply', 'includes', 'all', 'individuals', ',', 'including', 'those', 'that', 'are', '', '', 'or', 'do', 'not', 'compete', 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'uniform', '', 'will', 'occur', 'between', '2', '0', '0', '9', 'and', '2', '0', '1', '1', 'to', '', 'the', 'cost', 'of', 'the', 'conversion', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'elevation', 'of', 'the', 'stream', \"'s\", 'source', 'is', 'between', 'and', 'above', 'sea', 'level', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'qin', 'general', '', '', 'conquered', 'ji', 'in', '2', '2', '6', 'bc', 'and', 'the', 'first', 'emperor', 'completed', 'his', '', 'of', 'china', 'in', '2', '2', '1', 'bc', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'has', 'published', 'five', 'further', 'novels', 'and', 'her', 'work', 'has', 'been', 'translated', 'into', 'french', ',', 'german', ',', 'spanish', ',', '', 'and', 'norwegian', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'the', 'process', 'by', 'which', 'a', '', '', '', 'a', '', 'atom', ',', 'creating', 'a', '3', 'he', 'and', 'a', '4', 'he', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'original', 'parish', 'church', 'was', 'constructed', 'on', 'the', 'site', 'of', 'a', 'previous', ',', 'probably', 'romanesque', 'chapel', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'metropolitan', 'police', 'officer', \"'s\", 'version', ',', 'entitled', '``', 'the', 'law', \"'s\", 'prayer', \"''\", ',', 'has', 'also', 'been', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'delegation', 'gave', 'several', 'reasons', 'for', 'the', 'rejection', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'around', '1', '9', '1', '0', '', \"'\", 'hearing', 'became', '', 'and', 'in', '1', '9', '1', '6', 'he', '', 'from', 'his', 'teaching', 'career', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'building', 'has', 'been', '', 'and', 'refurbished', 'many', 'times', 'over', 'the', 'centuries', ',', 'the', 'most', 'recent', 'times', 'were', 'in', '1', '9', '1', '3', '-', '1', '9', '1', '4', 'and', 'in', '1', '9', '5', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'games', 'by', 'apollo', 'went', 'broke', ',', 'martin', 'and', 'another', 'former', 'employee', ',', 'robert', '', ',', 'developed', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", 'was', 'bombed', 'and', '', 'on', '2', '3', 'may', '1', '9', '4', '1', 'by', 'german', '', '', 'bombers', 'belonging', 'to', '', '2', 'and', 'led', 'by', '', '', ',', 'south', 'of', '', 'in', 'position', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'of', 'the', '2', '3', 'muslim', 'mps', 'elected', 'in', '2', '0', '1', '4', ',', '1', '8', 'or', '1', '9', 'were', 'from', 'constituencies', 'with', '3', '0', '%', 'muslim', 'voters', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'has', 'four', 'elementary', 'schools', ',', 'one', 'middle', 'school', ',', 'one', 'high', 'school', ',', 'and', 'one', 'alternative', 'high', 'school', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'following', 'fire', 'and', 'an', 'earthquake', 'in', '1', '4', '4', '3', 'heavily', 'damaged', 'the', 'church', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'an', 'entry', 'in', 'his', 'account', 'book', ',', 'he', 'purchased', 'two', 'copies', 'of', 'william', 'shakespeare', \"'s\", 'first', '', 'on', '5', 'december', '1', '6', '2', '3', ':', 'this', 'is', 'the', 'earliest', 'recorded', 'retail', 'purchase', 'of', 'this', 'famous', 'book', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'general', 'the', 'high', '', '', 'of', 'the', 'jet', 'could', 'not', 'be', 'used', 'in', 'an', 'effective', 'way', 'without', 'significantly', 'reducing', '', 'maneuvering', 'potential', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'attitude', 'of', 'raj', 'gets', 'apparent', 'when', 'he', '', 'a', 'man', 'on', 'the', 'road', 'who', 'is', 'lying', 'in', 'a', 'pool', 'of', 'blood', 'because', 'of', 'an', 'accident', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'suburban', 'chicago', 'counties', 'such', 'as', '', ',', '', ',', '', 'and', '', 'counties', 'were', 'also', 'very', '', 'republican', 'until', 'recently', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'certain', 'physical', '', 'also', 'have', 'the', 'capacity', 'to', 'temporarily', '', 'blood', 'pressure', ',', '', '', 'of', '', 'like', '', 'by', '', 'blood', 'flow', 'to', 'the', 'brain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'sites', 'are', 'unique', 'natural', 'features', 'composed', 'not', 'only', 'of', 'springs', ',', 'but', 'also', '', ',', 'streams', 'and', '', ';', 'with', 'names', 'with', 'biblical', '', ',', 'and', '', 'erected', 'in', ',', 'on', 'or', 'around', 'them', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'several', '', 'factors', 'provide', 'some', 'resistance', 'to', '``', '', \"''\", '', ',', 'including', '', 'cell', '', ',', '', '', ',', '', '6', '', '', '', ',', 'and', 'the', 'absence', 'of', '', '', 'on', 'red', 'blood', 'cells', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'election', 'saw', '', 'incumbent', 'republican', 'park', 'livingston', ',', 'second', 'term', 'republican', 'incumbent', '', '', '', 'and', '', 'incumbent', 'republican', '', 'b.', '', 'lose', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'june', 'of', 'the', 'same', 'year', ',', '', 'soldiers', 'entered', 'barracks', 'on', 'the', 'basis', 'of', 'an', 'oral', 'agreement', 'between', '', 'of', '', 'and', 'croatia', ',', 'milan', '', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'are', 'best', 'known', 'for', 'their', '', 'instrument', ',', 'the', '``', '', \"''\", ',', 'designed', 'with', 'industrial', 'cable', 'and', 'guitar', 'pieces', 'that', 'creates', 'a', 'unique', 'bass', 'sound', ',', 'and', 'painting', 'themselves', 'in', 'a', 'tribal', 'style', 'body', 'paint', 'for', 'live', 'concerts', '.', '', '', '', '', '', '', '', '', '']\n", "['', '', 'joined', 'the', 'houston', '', 'junior', 'academy', 'at', 'the', 'age', 'of', '1', '3', ',', 'eventually', '', 'to', 'the', '', 'u-', '1', '8', 'squad', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'ends', 'at', 'sand', 'gap', ',', 'with', 'highway', '7', 'continuing', 'south', 'to', '', ',', 'and', 'highway', '1', '2', '3', 'running', 'south', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'richard', 'burns', '', 'is', 'a', '', 'racing', 'game', ',', 'published', 'by', '', 'and', 'developed', 'by', '', 'with', 'advice', 'of', '', 'champion', 'richard', 'burns', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'created', 'further', 'history', 'in', '2', '0', '1', '8', 'capturing', 'the', 'minor', 'and', 'under', '2', '1', 'a', 'county', 'titles', 'becoming', 'only', 'the', '6', 'th', '', 'club', 'to', 'complete', 'this', 'remarkable', 'double', ',', 'and', 'also', '', 'a', 'parish', 'gap', 'of', '4', '5', 'years', 'since', 'a', 'last', 'a', 'county', 'title', '.']\n", "['', 'boys', 'tend', 'to', 'play', 'in', 'larger', 'groups', 'than', 'girls', ',', 'and', 'friends', 'of', 'boys', 'are', 'more', 'likely', 'to', 'become', 'friends', 'with', 'each', 'other', 'which', ',', 'in', 'turn', 'leads', 'to', 'more', 'density', 'in', 'social', 'networks', 'among', 'boys', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'device', 'may', 'allow', 'for', 'constant', '', 'of', 'a', 'patient', 'and', 'also', 'allow', 'for', 'the', 'ability', 'to', 'notice', 'changes', 'that', 'may', 'be', 'less', '', 'by', 'humans', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'legal', '', 'that', '', 'was', 'over', 'money', 'that', 'the', '', 'businesses', 'claim', 'to', 'have', 'lost', 'in', '', 'orders', 'and', '', 'from', 'pupkewitz', ':', 'the', 'amount', 'of', 'money', 'in', 'discussion', 'was', 'n', '$', '4', '9', '4', '7', '2', '5', '0', '.', '6', '0', '.', '', '', '', '', '', '']\n", "['', 'as', 'of', 'october', '2', '5', 'the', 'army', 'was', 'continuing', 'to', 'hold', 'along', 'the', '', 'as', 'army', 'group', 'a', 'began', 'what', 'became', 'its', 'final', 'effort', 'to', 'break', 'through', 'to', '', 'and', ',', 'ultimately', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'roger', \"'s\", '', 'of', 'angela', ',', 'the', '', ',', 'to', 'angela', ',', 'of', 'his', 'solely', 'sexual', '', ',', 'and', 'the', '', 'of', 'miss', '', ',', 'a', 'young', 'artist', 'of', 'african-american', 'heritage', ',', 'lead', 'angela', 'to', '', 'her', 'racial', 'heritage', 'and', 'lose', 'her', 'standing', 'with', 'several', 'of', 'her', '', '.', '']\n", "['', 'in', 'the', '', 'and', 'mediterranean', 'seas', ',', 'it', 'only', 'totals', '3', '-', '4', '%', 'of', 'annual', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'failure', 'happens', 'as', 'the', 'result', 'of', 'tension', '', 'in', 'the', '', ',', 'and', 'occurs', 'only', 'when', 'the', 'lower', 'part', 'of', 'an', '', 'block', 'fails', 'along', 'an', 'almost', 'horizontal', 'failure', 'surface', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', 'originated', 'in', '', 'county', ',', 'kentucky', ',', 'in', 'the', '1', '8', '6', '0', 's', ',', 'when', 'fox', 'hunting', '', 'colonel', '', 'c.', '', 'wanted', 'to', 'develop', 'a', 'faster', '', 'than', 'those', 'available', 'in', 'his', 'area', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'afterward', ',', 'gordon', '', 'a', '', 'on', 'top', 'of', '', '', 'the', 'attention', 'of', 'the', '', ',', 'whom', 'jim', 'calls', 'a', '``', 'friend', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'all', 'these', 'served', 'as', 'the', 'basis', 'for', 'the', 'establishment', 'of', 'shanghai', 'film', 'studio', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'formed', 'by', 'steve', '', 'and', 'paul', '', 'in', '1', '9', '8', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'environmental', '', 'program', '(', '', ')', 'is', 'a', 'national', 'program', 'that', 'seeks', 'to', '', 'the', 'environmental', 'and', 'conservation', '', 'field', 'through', '1', '2', '-week', 'paid', 'summer', '', 'for', 'graduate', 'students', 'at', 'partner', '', 'and', '', 'organizations', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'state', 'council', 'decided', 'to', 'improve', 'training', 'for', 'workers', 'who', 'had', 'passed', 'technical', '', '(', 'as', 'opposed', 'to', '', 'workers', ')', 'was', 'intended', 'to', '', 'the', 'development', 'of', 'vocational', 'and', 'technical', 'schools', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'of', '', 'and', 'secondary', '', 'cover', 'the', 'terrain', 'that', '', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'she', '', 'all', 'the', 'contestants', ',', '', 'shows', 'up', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'movement', 'sought', 'to', 'reform', 'the', 'church', 'and', '', 'christians', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'family', 'was', '', 'of', 'this', 'and', '', 'she', 'had', 'died', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '9', ',', '``', '', \"''\", 'commissioned', 'american', 'journalist', 'and', 'editor', 'of', '``', 'the', '', \"''\", '', '', 'to', 'cover', '', 'festival', 'on', 'their', 'behalf', 'with', 'a', 'series', 'of', 'exclusive', 'articles', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'part', 'of', 'it', 'is', 'in', 'the', 'most', 'northern', 'section', 'of', 'the', 'peak', 'district', 'national', 'park', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', '', 'father', 'was', 'a', 'successful', '', '', 'at', 'the', 'chicago', 'board', 'of', 'trade', ',', 'his', 'mother', '', 'from', 'a', '', 'chicago', 'family', ';', 'together', 'they', 'raised', '7', 'children', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'started', 'in', 'all', 'three', 'games', 'and', 'scored', 'two', 'tries', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'september', '1', '9', '1', '5', 'general', '', 'complained', 'that', 'too', 'few', 'of', 'the', 'recovered', '', 'or', 'wounded', 'casualties', 'from', '', 'were', 'being', 'returned', 'from', 'egypt', ',', 'and', 'general', '', 'replied', 'that', '``', 'the', '', 'of', 'the', '', 'for', 'men', 'has', 'been', '', 'and', '', \"''\", '.', '', '', '']\n", "['', 'it', 'also', '', 'weather', '', 'provided', 'by', '', ',', 'new', 'york', 'nbc', 'affiliate', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'october', '1', '3', '4', '9', ',', 'he', 'assumed', 'the', 'crown', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'called', 'to', 'the', 'bar', 'by', 'the', 'inner', 'temple', 'in', '1', '8', '4', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'center', 'of', '', ',', 'the', 'route', 'forms', 'a', 'brief', '', 'with', 'ky', '5', '7', '8', 'and', '', 'northeast', 'as', 'it', 'comes', 'to', 'the', 'junction', 'with', 'ky', '3', '4', '4', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '2', ')', ',', '2', '0', '1', '4', '(', '5', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'best', 'known', 'for', 'his', 'musical', 'collaborations', 'with', 'canadian', '', 'drake', 'and', 'has', 'produced', 'all', 'of', 'his', 'albums', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'team', 'finished', 'in', 'seventh', 'place', 'with', 'a', '3', '8', '-', '7', '4', 'record', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'throughout', 'the', 'war', ',', 'the', 'british', 'military', 'formed', 'over', '1', '0', '0', '', 'line', 'regiments', 'whose', 'strength', '', '1', '9', ',', '0', '0', '0', 'of', 'which', '9', ',', '7', '0', '0', 'served', 'most', 'at', 'one', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'another', 'was', 'dr.', 'juan', '', '', 'of', 'the', 'liberal', 'party', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'temple', 'annual', 'festival', 'is', 'also', 'another', 'best', 'venue', 'for', '', '', '', ',', '', '', ',', '', '', ',', '', '', '', ',', '', '', '', 'temple', '', 'temple', 'are', 'the', 'other', 'good', '', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'yet', ',', '', 'speaking', ',', 'this', 'is', 'still', 'secular', '', ',', 'as', 'opposed', 'to', ',', 'say', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '1', '9', '6', '6', 'constitution', ',', 'we', 'hold', ',', 'is', 'a', 'new', 'legal', 'order', 'and', 'has', 'been', 'effective', 'since', 'april', '1', '4', ',', '1', '9', '6', '6', ',', 'when', 'it', 'first', 'came', 'into', '', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', '', 'a', 'united', 'methodist', 'minister', 'in', '1', '9', '6', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'this', 'respect', 'there', 'would', 'be', 'men', 'with', '', 'as', 'well', 'as', 'men', 'with', 'a', '', 'disorder', '.', \"'\", \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'worked', 'with', '', '', ',', 'performing', 'in', '1', 'st', 'us', 'national', 'tour', 'of', '``', 'the', 'who', \"'s\", 'tommy', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'new', 'zealand', '', 'association', 'and', 'tourism', 'industry', 'association', '', 'the', 'formation', 'of', 'the', 'game', 'animal', 'council', 'but', 'forest', 'and', 'bird', ',', 'a', 'large', 'nationwide', 'conservation', 'organisation', ',', 'sees', 'it', 'as', 'an', '', 'to', 'recreational', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'even', 'clubs', 'from', 'japan', 'or', 'switzerland', 'took', 'part', 'in', '2', '0', '0', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', ',', 'general', '', '', 'is', 'serving', 'as', 'chairman', 'joint', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", 'gave', 'it', 'a', 'score', 'of', 'seven', 'out', 'of', 'ten', ',', 'saying', 'that', 'players', 'will', '``', 'spend', 'more', 'time', '', 'the', '', 'out', 'of', 'people', 'than', '', 'the', '', 'out', 'of', 'people', ',', 'which', '', 'down', 'the', 'action', '.', \"''\", '', '', '', '', '', '', '', '']\n", "['', 'the', 'term', 'generally', 'applies', 'only', 'to', 'the', 'immediate', '', ',', 'or', 'the', 'organization', 'that', 'is', 'paid', 'for', 'the', 'goods', ',', 'rather', 'than', 'to', 'the', 'original', 'manufacturer', 'or', 'the', 'organization', 'performing', 'the', 'service', 'if', 'it', 'is', 'different', 'from', 'the', 'immediate', '', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'i', 'mean', 'that', 'up', 'to', 'that', 'point', 'it', 'was', 'only', 'the', '', 'of', 'the', 'position', 'that', 'had', 'struck', 'me', '...', 'after', 'that', 'i', 'began', 'to', 'get', 'angry', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'the', 'human', 'form', 'of', 'the', 'major', '', 'complex', '(', '', ')', ',', 'is', 'located', 'on', '', '6', 'at', '6', 'p', '2', '1', '.', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'did', '', 'painting', 'in', '', ',', 'including', 'at', '', '6', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'under', '', \"'s\", 'leadership', 'in', 'the', 'early', 'raids', 'this', 'squadron', 'developed', 'techniques', 'for', '', 'bombing', 'of', 'the', '', 'and', 'relatively', 'small', 'targets', 'in', '', 'and', 'thailand', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'additionally', ',', 'the', 'court', \"'s\", 'ruling', 'of', 'the', 'case', 'falls', 'under', 'the', '``', 'secretary', \"'s\", 'definition', 'of', '', \"'\", 'within', 'the', 'section', '9', 'taking', 'provision', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'madison', 'has', 'stated', 'that', 'this', 'achievement', 'was', 'one', 'of', 'his', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '', ',', 'countries', 'are', 'given', 'a', 'score', 'from', '1', 'to', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', 'is', 'fixed', 'as', 'per', 'the', 'section', '1', '3', 'of', 'the', 'kerala', '', 'raj', '(', 'public', 'and', 'private', 'market', ')', 'rules', 'and', 'section', '4', '5', '8', '(', '2', ')', '(', 'e', ')', 'of', 'the', 'kerala', 'municipality', 'act', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'a', 'party', 'official', 'from', '', ',', 'was', 'soon', 'appointed', 'to', 'the', 'central', 'committee', ',', 'along', 'with', 'other', '', 'communist', 'politicians', ',', 'where', 'he', 'was', 'a', 'voice', 'for', 'increased', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'before', 'that', 'time', 'the', 'children', 'had', 'attended', 'school', 'in', 'the', 'city', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '2', '0', '1', '7', 'to', '2', '0', '1', '9', ',', 'she', 'played', 'a', 'supporting', 'character', 'in', '', '', \"'s\", 'series', '``', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", 'had', 'an', 'overall', 'length', 'of', ',', 'a', '', 'of', ',', 'and', 'a', 'normal', '', 'of', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'serving', 'in', '', 'he', 'tried', 'to', '', 'king', 'philip', 'iv', 'of', 'spain', 'to', 'transfer', 'the', 'general', 'management', 'of', 'affairs', 'in', 'his', 'netherlands', '', 'to', '', 'and', 'remove', 'any', 'responsibility', 'for', 'such', 'matters', 'from', 'the', 'government', 'in', 'madrid', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'international', 'monetary', 'fund', 'issued', 'an', 'update', 'report', 'on', 'the', 'economy', 'of', 'portugal', 'in', '', '2', '0', '1', '7', 'with', 'a', 'strong', '', '', 'and', 'an', 'increase', 'in', '', 'and', '', 'over', 'previous', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'of', 'the', 'largest', 'category', 'of', 'texts', 'that', 'were', '', '', ',', '', '', '', 'includes', 'various', 'collections', 'of', 'stories', 'such', 'as', 'the', '', '', 'and', 'the', '', '(', '', ':', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'that', 'episode', ',', 'she', 'was', 'also', 'the', '', 'for', 'the', 'school', \"'s\", 'orchestra', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '3', '8', ',', 'he', 'tied', 'for', '3', '', '4', 'th', 'in', '', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'both', 'designing', 'and', 'operating', 'a', '', 'transportation', 'system', 'through', 'an', 'area', 'where', '', 'are', 'common', ',', 'and', 'surface', 'water', 'is', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'local', '', 'also', 'has', 'community', 'police', 'stations', 'located', 'in', 'city', 'centre', ',', 'south', 'arm', ',', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'teams', 'in', '', 'qualified', 'for', 'the', '', 'phase', '(', '2', '0', '0', '4', '-', '2', '0', '0', '8', 'for', 'final', ',', '2', '0', '0', '9', '-', '2', '0', '1', '6', 'for', '', ',', 'since', '2', '0', '1', '7', 'for', '', ')', '.', '&', 'lt', ';', 'br', '&', 'gt', ';', '']\n", "['', 'after', 'college', ',', 'he', 'worked', 'as', 'a', '', 'with', 'the', 'white', 'house', 'press', 'corps', ',', 'and', 'worked', 'his', 'way', 'up', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'wofford', \"'s\", 'men', 'drove', 'union', 'troops', 'out', 'of', 'the', '', 'but', 'had', 'to', 'stop', 'short', 'of', 'the', 'new', 'union', 'line', 'near', 'little', 'round', 'top', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'julie', '', '', '(', 'born', 'june', '3', '0', ',', '1', '9', '9', '0', ')', 'is', 'a', 'retired', 'elite', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '3', '0', ',', 'spring', 'creek', 'park', 'and', 'the', 'shore', '', 'portion', 'of', 'the', '', '', 'were', 'proposed', 'by', 'robert', '', ',', 'along', 'with', 'several', 'other', 'parks', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'started', 'in', 'six', 'games', 'in', '2', '0', '1', '0', ',', 'an', 'increase', 'from', 'his', 'two', 'starts', 'in', '2', '0', '0', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'tried', 'to', '', 'with', 'his', 'cavalry', 'but', 'was', 'defeated', 'and', 'ordered', 'to', '', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '3', '5', '8', ',', 'the', 'county', 'of', '', 'was', 'purchased', 'by', 'the', 'descendants', 'of', '', ',', 'who', 'had', 'been', 'elevated', 'to', '', 'of', '', 'in', '1', '3', '4', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'are', 'black', ',', 'the', 'dorsal', 'margin', 'to', 'the', '', 'white', 'from', 'the', 'base', 'to', 'the', '', ',', 'the', 'black', 'color', '', 'across', 'the', '', 'into', 'the', 'white', ',', 'but', 'not', 'far', 'enough', 'to', '', 'the', 'margin', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'the', 'son', 'of', 'abdul', '', ',', 'the', 'first', 'muslim', 'who', 'served', 'as', 'a', 'justice', 'in', 'the', 'bengal', 'high', 'court', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'body', 'is', '', 'and', 'of', 'even', 'width', ',', 'apart', 'from', 'a', '', 'tip', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'currently', ',', 'the', 'winner', 'of', 'the', 'competition', 'receives', '$', '2', ',', '5', '0', '0', 'and', 'is', 'invited', 'to', 'compete', 'in', 'the', '', 'in', 'may', '', '', 'in', '', ',', 'tennessee', ',', 'as', 'well', 'as', 'the', '', '', 'network', 'championship', ',', 'which', 'is', 'held', 'in', 'different', 'cities', 'each', 'year', '.', '']\n", "['', 'the', 'town', 'of', '', 'itself', 'has', 'a', 'population', 'of', '1', '0', ',', '2', '3', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'has', 'stated', ':', '``', 'we', 'can', 'learn', 'a', 'lot', 'from', 'the', '', 'made', 'by', 'the', 'first', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '2', 'she', 'performed', 'the', 'world', '', 'of', '', '', \"'s\", '``', 'les', '', \"''\", 'and', 'william', '', \"'s\", '``', '', \"''\", 'with', 'pianist', '', '', 'at', 'town', 'hall', 'in', 'new', 'york', 'city', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'end', 'of', 'the', 'wing', 'is', 'a', 'south', 'block', 'of', 'roughly', 'the', 'same', 'shape', 'and', 'size', 'as', 'the', 'main', 'block', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'quickly', 'found', 'out', 'where', 'they', 'were', 'and', '', 'herself', 'into', 'a', 'very', 'beautiful', 'young', 'woman', ',', 'more', 'beautiful', 'than', 'any', 'of', 'the', '', 'sisters', ';', 'then', 'she', 'went', 'to', 'the', 'city', 'of', 'the', 'king', 'and', 'asked', 'to', 'meet', 'him', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'except', 'for', 'certain', '``', 'vintage', \"''\", 'products', ',', '', '', 'have', 'largely', '', 'the', 'more', 'expensive', '', '', 'in', 'these', 'applications', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'appeared', 'in', 'a', 'friendly', 'on', '2', '8', 'june', '2', '0', '1', '7', 'as', 'a', '', '', ',', 'wearing', 'number', '6', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'the', 'ceo', 'and', '', ',', 'along', 'with', '', '', ',', 'of', '', 'law', ',', 'a', 'legal', 'technology', 'company', 'that', 'provides', 'a', 'software', 'platform', 'for', '', 'management', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '1', 'march', ',', 'us', 'president', 'donald', 'trump', 'gave', 'a', 'public', 'address', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'dropping', 'the', 'block', 'pieces', 'on', 'top', 'of', 'another', 'group', 'placed', 'in', 'the', '', ',', 'one', 'of', 'the', 'pieces', 'is', '', 'and', 'players', 'can', '', 'this', 'sole', 'piece', 'to', '', 'spaces', 'and', 'aim', 'for', 'a', 'chain', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'simone', 'and', 'tom', 'struggled', 'to', 'get', 'their', 'marriage', 'back', 'on', 'track', 'and', 'simone', 'turned', 'to', 'harrison', ',', 'and', 'they', 'made', 'love', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '2', ',', 'dean', 'hall', ',', 'an', 'employee', 'at', 'bohemia', 'working', 'on', '``', '', '3', '``', ',', 'released', 'a', '', 'popular', '', 'for', '``', '', '2', '``', 'named', '``', '', \"''\", ',', 'which', 'includes', '', 'as', 'the', 'game', \"'s\", 'main', 'enemies', '.', '', '', '', '', '']\n", "['', 'it', 'is', 'found', 'in', 'china', '(', 'hubei', ',', '', ',', 'sichuan', ',', '', ')', ',', 'taiwan', ',', 'japan', 'and', 'thailand', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'only', 'presents', 'on', 'the', 'attached', '', 'bound', 'to', 'underlying', '', 'bone', ',', 'not', 'the', '', '', '', '', 'free', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'last', 'played', 'for', 'the', '', '', 'in', 'the', 'deutsche', '', 'liga', '(', 'del', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'momentum', 'of', 'the', '', 'in', 'the', '', 'gas', 'nevertheless', '', 'pressure', ',', 'termed', '``', '', 'pressure', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'brought', 'before', '', '', 'and', 'explains', 'she', 'has', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'time', 'of', 'the', '2', '0', '1', '1', 'nepal', 'census', 'it', 'had', 'a', 'population', 'of', '3', '3', '3', '4', 'people', 'living', 'in', '6', '8', '6', 'individual', 'households', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'head', 'of', 'the', 'maritime', 'reserve', 'is', 'commander', 'maritime', '', '(', '', ')', 'and', 'holds', 'the', 'rank', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'wrote', 'and', 'sent', 'a', '', 'to', 'vladimir', '', 'of', 'the', 'russian', 'social', 'democratic', 'workers', 'party', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'history', ',', '', ',', 'political', 'science', ',', 'and', '', ',', 'a', '', 'science', 'course', '(', '+', '2', 'level', ')', ',', 'and', 'courses', 'in', 'computer', 'education', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'died', 'when', 'one', 'day', \"'s\", '', 'from', '', ',', 'and', 'his', 'body', 'was', '', 'to', 'the', 'ocean', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'eighteen', 'top', 'players', 'were', 'selected', 'to', 'compete', 'in', 'these', 'tournaments', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'next', 'played', 'in', 'the', '1', '9', '9', '7', '', '', 'in', 'kuala', 'lumpur', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'supreme', 'authority', 'of', 'the', 'church', 'of', 'denmark', ',', 'the', '', 'must', 'be', 'a', 'member', '(', 'article', '6', 'of', 'the', 'constitution', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'training', 'units', 'are', 'not', '', 'for', 'military', 'service', ',', 'rather', ',', 'they', 'provide', '', 'and', 'military', 'training', 'for', 'undergraduate', 'students', 'at', 'uk', 'universities', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'sat', 'on', 'the', 'board', 'of', 'arbitration', 'and', 'the', 'montreal', 'board', 'of', 'trade', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', '1', '``', '', 'all', 'these', 'safety', 'features', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'having', 'been', '', ',', 'he', 'resumed', 'his', 'command', 'and', 'held', 'it', 'until', 'the', 'close', 'of', 'the', 'war', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'family', 'planned', 'to', 'spend', 'the', 'summer', 'of', '1', '9', '4', '1', 'in', 'the', '', ',', 'but', 'the', '', 'invasion', 'of', 'the', 'soviet', 'union', 'on', '2', '2', 'june', '', 'their', 'plans', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'elsewhere', 'in', '', 'iron', 'city', ',', 'a', 'lone', 'woman', 'on', 'her', 'way', 'home', 'runs', 'into', 'the', '', 'rasha', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'wife', 'being', 'subject', 'to', 'sale', 'was', 'a', 'consequence', 'of', 'her', 'being', 'a', 'man', \"'s\", 'property', ',', 'according', 'to', '', '', 'john', 'schmidt', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '4', '0', 'a', 'version', 'of', 'the', 'play', 'was', 'produced', 'on', 'broadway', 'by', 'the', 'theater', 'guild', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'an', 'mit', 'phd', 'in', 'mechanical', 'engineering', 'and', '', 'a', 'harvard', 'business', 'school', 'graduate', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'went', 'to', 'see', 'them', 'and', 'to', 'encourage', 'them', 'to', 'continue', 'their', 'struggle', 'for', 'their', 'rights', ',', 'for', 'their', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'the', '', ',', 'thomas', 'goes', 'to', 'simon', \"'s\", 'apartment', 'and', 'finds', 'an', '', 'for', 'a', 'recently', '', 'korean', 'war', '', ',', 'colonel', '', '', ',', '', 'from', 'a', 'newspaper', 'in', '', 'rock', ',', 'arizona', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', '', 'include', '', '', ',', 'and', 'use', '', 'i', 'and', 'ii', 'in', 'order', 'to', 'carry', 'out', '', 'which', 'produces', 'oxygen', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'album', 'was', 'originally', 'released', 'by', '', 'records', 'in', '1', '9', '8', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'number', 'of', 'kw', \"'s\", 'employees', 'rose', 'to', '8', '5', 'after', 'the', 'entry', 'of', '', '', 'in', '2', '0', '0', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'term', '``', '', \"''\", 'was', '', 'in', '1', '9', '9', '9', ',', 'three', 'years', 'before', 'the', 'term', '', 'came', 'about', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'believed', 'that', 'if', 'he', 'should', 'be', 'killed', 'in', 'the', 'line', 'of', 'duty', ',', 'it', 'only', 'meant', 'that', 'god', 'had', 'decided', 'to', 'call', 'him', 'and', 'he', 'was', 'ready', 'to', 'meet', 'his', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'within', 'a', 'running', 'program', 'they', 'are', '', 'in', 'the', 'data', 'control', 'block', '(', '', ')', ',', 'which', 'is', 'a', 'data', 'structure', 'used', 'to', 'access', 'data', 'sets', ',', 'for', 'example', 'using', 'access', 'methods', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'imprisonment', 'for', 'tax', '', 'is', 'uncommon', 'in', 'israel', 'but', ',', 'according', 'to', '', ',', '``', 'in', 'the', 'territories', 'it', 'is', 'used', 'on', 'a', 'massive', 'scale', 'and', 'for', 'extensive', 'periods', 'of', 'time', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'is', 'a', 'song', 'by', 'american', '', '2', '', 'from', 'his', 'second', 'studio', 'album', '``', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'a', '', 'dialect', 'in', '', 'valencia', 'and', 'the', '', 'islands', 'before', 'the', '1', '4', '9', '2', '', 'of', 'the', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'clash', 'called', '``', 'elmo', \"'s\", 'world', \"''\", '``', 'a', 'colorful', ',', '', '', 'of', 'creativity', \"''\", 'and', '``', 'one', 'of', 'the', 'most', '', '', 'i', \"'ve\", 'ever', 'been', 'involved', 'in', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'a', '', 'to', 'a', 'group', 'of', 'law', 'students', 'shortly', 'before', 'the', 'decision', 'was', 'released', ',', '', 'commented', 'that', 'the', 'chinese', 'had', 'long', 'been', 'excluded', 'from', 'american', 'society', '``', 'upon', 'the', 'idea', 'that', 'this', 'is', 'a', 'race', '', 'foreign', 'to', 'us', 'and', 'never', 'will', '', 'with', 'us', '.', \"''\", '']\n", "['', 'freight', 'service', 'is', 'provided', 'by', 'the', 'florida', 'gulf', '&', 'amp', ';', 'atlantic', 'railroad', ',', 'which', 'acquired', 'most', 'of', 'the', 'former', '', 'main', 'line', 'from', '', 'to', '', 'on', 'june', '1', ',', '2', '0', '1', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'germany', ',', 'a', 'physical', '2', '', 'cd', 'single', 'was', 'released', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'episode', \"'s\", 'story', 'had', 'been', '', ',', 'chase', 'wrote', 'the', 'first', 'draft', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'before', 'the', 'donkeys', 'leave', '', 'island', ',', 'the', 'coachman', '', 'them', 'by', 'asking', 'their', 'names', 'to', 'make', 'sure', 'they', 'have', 'lost', 'their', 'ability', 'to', '', ',', 'which', '', 'they', 'are', 'fully', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'all', 'this', '', 'society', 'is', '', 'of', 'each', 'other', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'began', 'to', 'play', 'pool', 'at', 'age', '1', '2', ',', 'drawing', 'inspiration', 'from', 'his', 'favorite', 'singer', 'and', 'actor', ',', 'dean', 'martin', ',', 'whom', 'he', '', 'in', 'various', 'parts', 'of', 'his', 'life', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'in', 'getting', '', ',', 'or', '``', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'remained', 'as', 'music', 'director', 'until', '1', '9', '8', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '1', '', '', 'the', 'expression', 'of', '', '1', 'by', 'increasing', '', '1', '', 'stability', 'and', '', 'additional', '', '1', 'through', 'a', '', '', 'mechanism', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'a', '7', 'seat', 'majority', ',', 'conservative', 'group', 'leader', 'jeremy', '', '(', '', ')', 'became', 'the', 'new', 'council', 'leader', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'virginia', 'then', 'continued', 'to', 'move', 'north', 'and', 'then', 'northeast', 'until', 'its', '', 'on', 'june', '2', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'early', 'in', 'the', 'battle', 'of', '', ',', '``', 'new', 'orleans', \"''\", 'took', 'a', '', 'hit', 'in', 'its', 'port', '', 'which', '', 'two', 'magazines', 'and', '', 'off', 'the', 'forward', 'part', 'of', 'the', 'ship', 'back', 'to', 'no', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bermuda', 'now', 'has', 'one', 'of', 'the', 'highest', 'per', 'capita', '', 'in', 'the', 'world', ',', 'which', 'is', 'mainly', '', 'by', '', 'financial', 'services', 'for', '', '', ',', 'especially', '', 'insurance', 'and', '', ',', 'and', 'tourism', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'time', 'of', 'its', 'creation', ',', 'the', 'lab', 'was', 'one', 'of', 'the', 'most', 'advanced', 'in', 'the', 'world', 'for', 'this', 'purpose', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'eu', '0', '7', '-', '3', '3', '0', 'locomotive', 'became', 'the', 'ep', '0', '7', '-', '3', '3', '0', 'locomotive', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'launched', 'an', '', 'campaign', 'and', 'an', 'infrastructure', 'plan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', 'been', 'criticized', 'for', 'killing', 'other', '``', '', \"''\", 'and', 'attacking', 'civilian', 'populations', ',', 'including', '', '', 'with', '', 'weapons', ',', 'causing', '2', ',', '0', '0', '0', 'casualties', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '0', ',', 'penrith', 'reached', 'their', 'first', 'grand', 'final', 'against', 'the', 'canberra', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'in', 'turn', 'leads', 'to', 'increased', '', 'concentrations', 'of', '', 'and', '', 'therefore', 'an', 'increase', 'in', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'album', 'was', 'included', 'in', 'the', 'book', '``', '1', '0', '0', '1', 'albums', 'you', 'must', 'hear', 'before', 'you', 'die', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'acting', 'under', 'chapter', 'vii', 'of', 'the', 'united', 'nations', 'charter', ',', 'the', '', 'programme', ',', 'in', 'its', 'thirteenth', 'stage', ',', 'was', 'extended', 'for', 'a', 'further', '1', '8', '0', 'days', 'beginning', 'at', '0', '0', ':', '0', '1', '', 'on', '5', 'december', '2', '0', '0', '2', '.', '', '', '', '', '', '']\n", "['', 'in', 'new', 'zealand', ',', 'the', 'record', 'also', 'debuted', 'at', 'the', 'top', 'spot', 'on', 'the', 'official', 'new', 'zealand', 'music', 'chart', ',', 'and', 'became', 'pink', \"'s\", 'third', 'number', 'one', 'album', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'april', '2', '7', ',', '2', '0', '0', '6', 'the', 'station', 'was', 'granted', 'a', 'construction', '', 'by', 'the', 'federal', 'communications', 'commission', 'to', 'change', 'its', 'community', 'of', 'license', 'from', '', 'to', '', ',', 'alabama', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '3', '8', ',', 'johnson', 'attended', 'infantry', 'school', 'at', 'fort', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', '2', '0', '0', '6', 'census', ',', 'its', 'population', 'was', '2', '3', '1', ',', 'in', '5', '0', 'families', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'noah', 'james', '', '(', 'born', 'march', '3', '1', ',', '1', '9', '8', '3', ')', ',', 'better', 'known', 'as', '4', '0', ',', 'is', 'a', 'canadian', 'record', 'producer', ',', 'songwriter', ',', 'record', 'executive', ',', 'and', 'former', 'child', 'actor', 'from', 'toronto', ',', 'ontario', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'mexico', 'is', 'one', 'of', 'the', 'world', \"'s\", 'largest', 'producers', 'and', '', 'of', '', '', ',', 'known', 'as', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'recent', 'years', ',', 'average', 'temperatures', 'in', '', 'have', '', 'from', 'a', 'low', 'of', 'in', 'january', 'to', 'a', 'high', 'of', 'in', 'july', ',', 'although', 'a', 'record', 'low', 'of', 'was', 'recorded', 'in', 'january', '1', '9', '8', '5', 'and', 'a', 'record', 'high', 'of', 'was', 'recorded', 'in', 'june', '1', '9', '8', '8', '.']\n", "['', '', '', 'is', 'a', 'town', 'and', 'commune', 'in', '', 'province', ',', 'algeria', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'same', 'scholars', '', 'that', 'the', 'romanians', 'directly', 'inherited', 'the', 'basic', 'christian', 'terminology', 'from', 'latin', ',', 'which', 'also', '', 'the', 'connection', 'between', 'christian', 'objects', 'and', 'the', 'romanians', \"'\", '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'first', 'elected', 'to', 'the', '', 'legislature', 'in', 'the', '1', '9', '8', '6', 'provincial', 'election', ',', 'in', 'the', 'safe', '', 'seat', 'of', '', 'la', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'sets', 'are', 'formed', 'as', 'shown', 'below', 'with', 'four', '', '(', '``', 'm', \"''\", ')', 'intermediate', 'cars', 'and', '', 'driving', 'trailer', '(', '``', '', \"''\", ')', 'cars', ',', 'with', 'car', '1', 'at', 'the', '', 'end', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'retired', 'on', '2', 'january', '1', '9', '5', '7', '(', 'his', '6', '3', 'rd', 'birthday', ')', 'and', 'joined', 'the', 'board', 'of', '', ',', 'serving', 'as', 'chairman', 'from', '1', '9', '6', '0', 'to', '1', '9', '7', '3', ',', 'when', 'he', 'became', 'honorary', 'president', '.', '', '', '', '', '', '', '']\n", "['', 'it', 'used', 'radio', 'link', 'time', 'out', 'technology', 'without', 'which', 'the', 'call', 'drop', 'rates', 'will', 'be', 'significantly', 'higher', 'and', 'many', 'customers', 'reported', 'this', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'son', '', 'served', 'as', 'a', 'member', 'of', 'the', 'legislative', 'council', 'for', 'the', 'province', 'of', 'canada', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '2', '1', 'she', 'helped', 'found', 'the', 'australian', 'federation', 'of', 'women', 'voters', 'and', '', 'the', 'league', 'of', 'nations', '(', 'now', 'the', 'united', 'nations', ')', 'on', 'behalf', 'of', 'australian', 'women', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'successful', '', 'of', 'the', '', 'and', '', 'kingdoms', ',', '', '', '', 'divided', 'the', 'region', 'into', 'three', '', 'and', 'placed', 'each', 'of', 'them', 'under', 'a', '', 'or', '', '-', '', ',', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '1', '2', 'th-century', 'shell', 'keep', 'is', 'the', 'earliest', 'part', 'of', 'the', 'structure', ',', 'with', 'this', 'form', 'of', 'keep', 'being', 'common', 'in', 'england', ',', 'but', 'rare', 'in', 'ireland', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'earliest', 'building', 'in', 'the', 'district', 'was', 'built', 'in', '1', '8', '2', '6', ',', 'while', 'the', 'latest', 'were', 'built', 'in', 'the', '1', '8', '9', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'film', 'was', '', 'into', '', 'as', '``', '', '', \"''\", ',', 'starring', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'joy', 'senior', 'secondary', 'school', ',', '', ',', 'india', ',', 'was', 'established', 'in', '1', '9', '8', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'her', '', ',', 'she', 'was', 'purchased', 'by', 'radio', 'caroline', 'and', '', 'as', 'a', 'radio', 'ship', ',', 'complete', 'with', '', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'williams', ',', 'a', 'pioneer', '', 'lawyer', ',', 'introduced', '', 'to', 'many', 'lagos', '', 'and', 'the', 'influence', 'of', 'williams', 'in', 'his', 'life', 'led', 'him', 'to', '', 'the', 'name', 'christopher', 'william', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'is', 'because', 'the', 'athletes', 'are', 'playing', 'with', 'full', 'effort', ',', 'and', 'the', 'hits', 'are', 'more', 'severe', 'therefore', 'the', '', 'of', '', 'rise', 'significantly', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'average', 'household', 'size', 'was', '3', '.', '0', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', '', 'she', 'saw', 'a', '', 'being', 'attacked', 'by', 'a', '', 'in', 'her', 'vision', ',', 'and', 'a', 'crowd', '', ',', '', 'her', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'paper', '', 'family', 'was', 'posed', 'dancing', '', ',', '', 'in', '', 'clothing', ',', 'and', 'the', 'box', 'was', '', '``', 'before', 'the', '', 'was', 'sold', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'construction', 'of', 'the', '4', '0', '0', 'bed', 'facility', 'began', 'in', '2', '0', '0', '4', ',', 'with', 'the', 'first', 'patients', 'admitted', 'in', '2', '0', '0', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'speech', 'is', 'on', 'the', 'memory', 'of', 'the', 'world', 'register', 'of', 'unesco', ',', 'a', 'list', 'of', 'world', \"'s\", 'important', 'documentary', 'heritage', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'play', 'was', \"n't\", '', 'produced', 'with', '', \"'s\", 'original', 'script', 'until', '2', '0', '0', '8', 'when', '', 'theater', 'company', 'staged', 'the', 'play', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'louis', 'post', 'at', 'the', 'department', 'of', 'labor', ',', 'which', 'had', 'ultimate', 'authority', 'over', '', 'decisions', ',', 'determined', 'that', 'the', '', 'of', 'her', 'husband', '', \"'s\", 'american', 'citizenship', 'in', '1', '9', '0', '8', 'after', 'his', 'conviction', 'had', '', '', 'as', 'well', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'was', 'repeated', 'several', 'times', 'by', 'later', '', ',', 'for', 'example', 'in', '1', '3', '4', '3', 'and', 'in', '1', '3', '7', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'march', '2', '0', '1', '6', 'the', 'school', 'was', 'placed', 'in', 'special', 'measures', 'after', 'an', '', 'report', 'found', 'it', 'to', 'be', '', 'in', 'every', 'area', 'except', 'its', 'sixth', 'form', ',', 'which', 'followed', 'a', 'serious', 'decline', 'in', '', 'results', 'over', 'the', 'previous', 'two', 'years', '.', '', '', '', '', '', '']\n", "['', 'here', 'formula_', '6', 'and', 'formula_', '7', 'are', '4', '', 'solution', 'of', 'the', '', 'equation', '', 'so', 'that', 'formula_', '8', ',', 'and', 'formula_', '9', 'is', 'the', 'momentum', 'transfer', 'from', 'the', 'current', 'to', 'the', 'electron', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'version', 'of', 'd.', 'h.', 'lawrence', \"'s\", 'novel', '``', 'sons', 'and', '', \"''\", '(', '1', '9', '6', '0', ')', ',', 'starring', '', 'howard', ',', '', '', 'and', 'dean', '', ',', 'was', 'a', 'hit', ',', '', 'and', 'at', 'the', '', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'acquired', 'by', 'joseph', '', 'and', '', 'llc', 'in', '2', '0', '0', '4', 'and', 'completed', 'a', 'major', '', 'in', '2', '0', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'quartet', ',', '', '', ',', '', 'university', ',', 'joseph', '', ',', 'michigan', 'state', 'university', ',', 'michael', '', ',', 'the', '', 'school', 'of', 'music', ',', 'among', 'others', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'fighter', '', 'francis', 's.', '``', '', \"''\", '', 'flew', 'his', 'first', 'combat', 'missions', 'attached', 'to', 'a', 'polish', 'raf', 'squadron', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'rooms', 'were', 'once', 'used', 'to', 'house', 'italian', '', 'who', 'were', '', 'buildings', 'and', '', 'in', 'the', 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'also', 'the', 'publisher', 'of', 'the', 'magazine', '``', 'scientific', 'notes', 'university', '', \"''\", 'and', 'the', 'newspaper', '``', '', \"''\", '(', '``', 'for', 'physical', 'training', '', \"''\", ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'october', '1', '9', '9', '3', ',', 'was', 'assigned', 'photographer', 'for', '', 'television', \"'s\", '``', 'iron', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '=', '', 'average', ';', '', '=', 'home', 'runs', ';', 'rbi', '=', 'runs', 'batted', 'in', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'april', '2', '5', ',', '2', '0', '2', '0', ',', 'the', 'first', 'new', 'testing', 'site', 'was', 'launched', 'in', 'des', '', 'under', 'the', 'new', 'initiative', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'central', 'swedish', 'dialect', 'of', '', ',', '', '1', 'is', 'an', '', '', 'and', '', '2', 'is', 'an', '', '', ',', 'with', 'the', 'second', 'peak', 'in', 'the', 'second', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'administration', 'successfully', 'raised', '', 'on', 'public', 'education', ',', 'formed', 'a', 'commission', 'on', 'aging', ',', 'and', 'joined', 'a', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'born', 'on', 'march', '2', '1', ',', '1', '9', '0', '2', ',', 'in', '', ',', '', '', ',', 'brazil', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'reached', 'the', '1', '9', '1', '0', 'world', 'series', ',', 'and', 'though', '', 'batted', '.', '3', '3', '3', 'in', 'the', 'series', ',', 'the', '', 'lost', 'to', 'the', 'philadelphia', 'athletics', 'in', 'five', 'games', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'late', '1', '9', '5', '0', 's', ',', 'one', 'of', 'the', 'units', 'was', 'stationed', 'as', '', 'station', 'for', '', 'duty', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', 'here', ',', 'the', 'route', 'is', 'not', '', 'anymore', ',', 'but', 'the', 'peak', 'can', 'be', 'reached', 'relatively', 'easily', ',', 'by', '', 'towards', 'the', 'abandoned', '', '', ',', 'then', 'climbing', 'up', 'on', 'the', 'right', 'hand', 'side', 'on', 'the', '', 'above', 'them', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'within', '5', 'km', 'to', '1', '0', 'km', '', ',', 'early', '', 'sites', 'are', '', '', '1', ',', '', '', '2', 'and', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', '', 'that', 'the', 'recording', 'finished', 'ahead', 'of', 'schedule', ':', '``', 'i', 'think', 'it', 'was', 'because', 'everything', 'was', 'so', '', 'this', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'honor', 'of', 'the', 'renovation', ',', 'central', 'university', 'decided', 'to', '', 'the', 'school', 'as', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '``', '', 'date', 'with', 'nature', \"''\", 'site', 'at', '', '', 'aimed', 'to', 'introduce', 'people', 'to', 'the', 'wildlife', 'in', 'the', 'area', ',', '', 'the', 'public', 'on', 'conservation', 'projects', 'done', 'by', 'the', '', 'and', 'ensure', '2', '4', '', 'protection', 'of', 'the', 'eggs', 'in', 'the', 'nest', '.', '', '', '', '', '']\n", "['', '', '', ',', 'commonly', 'known', 'as', 'the', 'common', 'oval', '', ',', 'is', 'a', '', 'species', 'of', '', 'in', 'the', 'family', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'three', '', '', ',', '', '', ',', 'his', 'brother', 'angel', ',', 'and', 'their', 'friend', '', '', 'were', 'involved', 'in', 'these', 'finds', ',', 'and', 'were', 'convicted', 'in', '1', '9', '9', '4', 'in', 'court', 'for', 'illegal', 'antiquity', 'trade', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'town', 'played', 'a', 'key', 'role', 'in', 'the', 'first', 'and', 'second', '', ',', 'with', 'local', 'activists', 'pioneering', '', 'resistance', 'techniques', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'green', 'turned', 'pro', 'in', '1', '9', '7', '9', 'and', 'joined', 'the', 'pga', 'tour', 'in', '1', '9', '8', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '3', 'mario', '', 'paintings', 'have', 'been', 'sold', 'at', 'sothebys', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'nearby', 'railway', 'stations', 'are', '', 'railway', 'station', '(', '2', 'km', ')', ',', 'tripunithura', 'railway', 'station', '(', '5', 'km', ')', 'and', '', 'junction', 'railway', 'station', '(', '5', 'km', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'aircraft', 'was', 'received', 'in', '', 'with', 'at', 'least', '5', '0', ',', '0', '0', '0', 'testing', '', ',', 'large', 'number', 'of', 'face', '', ',', '', ',', 'and', 'personal', 'protective', 'equipment', '(', '', ')', ',', 'which', 'were', 'combined', 'around', 'two', '', 'of', 'supplies', 'worth', 'rs', '6', '7', 'million', '.', '', '']\n", "['', 'available', 'also', 'for', 'any', 'commonwealth', 'country', 'citizen', 'who', 'has', 'lived', 'in', '', 'for', 'a', 'year', 'without', 'leaving', 'and', 'been', 'at', 'least', '2', 'months', 'in', 'an', 'area', 'where', 'the', 'person', 'has', 'been', 'registered', 'in', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'school', 'was', 'founded', 'in', '2', '0', '1', '0', 'with', 'the', 'purpose', 'of', 'developing', 'creative', 'leaders', 'to', '``', 'turn', 'global', 'challenges', 'and', '', 'into', 'opportunities', ',', 'the', 'ultimate', 'goal', 'being', 'to', 'achieve', 'a', 'more', 'meaningful', 'and', 'sustainable', 'way', 'of', 'life', '.', \"''\", '', '', '', '', '', '', '', '']\n", "['', 'in', 'september', '2', '0', '1', '7', ',', 'the', 'company', 'launched', 'its', '', 'go', '', '', 'concept', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', '2', '0', '0', '1', ',', 'he', '', 'made', 'a', 'surprise', 'return', 'to', 'the', 'british', 'championship', 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'elmo', ',', 'who', 'represented', 'the', '', 'to', '', 'child', ',', 'was', 'chosen', 'as', 'host', 'of', '``', 'elmo', \"'s\", 'world', \"''\", 'because', 'he', 'had', 'always', 'tested', 'well', 'with', '``', '', 'street', \"''\", 's', 'younger', 'viewers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'school', 'district', 'currently', 'runs', 'four', 'schools', ',', 'and', 'serves', 'students', 'from', '', 'age', 'to', 'senior', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'early', '2', '0', '1', '9', ',', '', 'announced', 'that', 'it', 'would', 'be', 'releasing', 'a', 'beta', 'version', 'of', 'the', 'game', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'order', 'to', 'generate', 'some', 'revenue', ',', 'the', 'company', 'opened', 'the', 'line', 'to', 'goods', 'traffic', '(', 'which', 'did', 'not', 'require', 'board', 'of', 'trade', 'approval', ')', 'on', '2', '1', 'april', '1', '8', '8', '9', ',', 'and', 'rich', 'approved', 'the', 'line', 'on', 'his', 'third', 'visit', 'on', '1', '5', 'may', '.', '', '']\n", "['', 'as', 'of', 'january', '2', '0', '1', '1', 'nearly', '4', ',', '0', '0', '0', 'hectares', '(', '9', ',', '8', '7', '0', 'acres', ')', 'are', 'in', 'various', 'stages', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '(', 'group', ')', 'co.', ',', 'ltd.', '(', ')', 'is', 'a', 'major', 'chinese', 'coal', 'mining', 'company', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'activities', 'of', '', '', 'have', 'a', 'pronounced', 'effect', 'on', '', 'properties', 'and', '', 'processes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'belongs', 'to', 'the', 'famous', '', 'muslim', 'family', 'of', '', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'day', ',', 'when', '', 'was', 'going', 'over', 'to', 'his', 'house', 'for', '', 'with', 'him', 'and', 'his', 'childish', 'older', 'sister', ',', '', ',', 'she', 'is', 'attacked', 'by', 'someone', 'looking', 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'the', 'completion', 'of', 'the', '2', '0', '2', '0', '', 'track', '', 'world', 'championships', ',', 'portugal', 'entered', 'one', 'rider', 'to', 'compete', 'in', 'the', 'women', \"'s\", '', 'based', 'on', 'her', 'final', 'individual', '', 'olympic', 'rankings', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'also', '', 'and', '', 'master', 'for', 'the', 'école', '', 'de', '', 'du', '', ',', 'the', 'school', 'established', 'by', 'madame', '', 'in', '1', '9', '6', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'concert', 'series', 'is', 'a', 'series', 'of', 'eight', '', 'concerts', 'per', 'year', ',', 'that', 'takes', 'place', 'in', '', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'the', 'founder', 'and', 'editor-in-chief', 'of', 'the', 'magazine', 'nova', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', '1', '0', '3', '0', '0', '0', 'strong', 'and', 'brian', '', '(', 'driving', 'a', '', '', ')', 'won', 'the', 'race', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'january', '1', '9', '9', '4', ',', 'galloway', 'faced', 'some', 'of', 'his', '', 'criticism', 'on', 'his', 'return', 'from', 'a', 'middle', 'eastern', 'visit', 'during', 'which', 'he', 'had', 'met', 'saddam', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'descendants', 'include', 'first', 'lords', 'of', 'the', '', ',', '', 'of', 'state', ',', '', 'of', 'the', 'privy', 'seal', ',', 'first', 'lords', 'of', 'the', 'treasury', 'and', 'prime', 'minister', 'lord', '', ',', 'whose', 'name', 'came', 'from', 'the', 'family', 'estate', 'that', 'is', 'now', 'a', 'dublin', 'village', '.', '', '', '', '', '', '']\n", "['', 'like', 'before', ',', 'the', 'board', 'consisted', 'of', 'four', 'lines', 'and', 'fourteen', 'letters', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'a', 'former', '', 'fortress', 'holding', 'a', 'junction', 'of', 'the', 'two', 'rivers', ',', 'built', 'in', 'the', '1', '9', 'th', 'century', ',', 'and', 'last', 'used', 'during', 'world', 'war', 'ii', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '', 'to', 'the', 'november', '2', '0', '1', '5', 'general', 'election', ',', 'various', 'organisations', 'carried', 'out', 'opinion', '', 'to', 'gauge', 'voting', 'intention', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'born', 'in', 'israel', ',', 'and', 'is', 'jewish', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'north', 'of', 'lebanon', 'and', 'southwest', 'of', 'berlin', ',', 'new', 'hampshire', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'province', \"'s\", 'economy', 'is', 'heavily', 'dependent', 'on', 'the', '', 'of', 'natural', 'resources', ',', 'and', 'it', '', 'heavily', 'on', 'industrial', 'forestry', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'also', 'the', 'leader', 'of', 'the', 'national', 'farmer', \"'s\", 'party', ',', 'before', 'leaving', 'in', '2', '0', '0', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'families', 'in', 'those', 'cities', 'prepare', 'a', '``', 'st.', 'joseph', \"'s\", 'day', 'table', \"''\", ',', 'at', 'which', 'relatives', 'or', 'neighbors', '', 'jesus', ',', 'joseph', 'and', 'mary', 'and', '', 'the', 'serving', 'of', '', '', 'meals', 'to', 'the', 'poor', 'of', 'the', 'community', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '8', '5', ',', '', '', 'from', 'a', '', 'to', 'a', '', ',', '', '2', '3', 'games', 'and', 'playing', '', 'in', '6', '5', 'games', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'such', 'stars', 'can', '', 'as', 'type', '', '', ',', 'still', 'with', 'hydrogen', 'in', 'their', '', 'but', 'not', 'with', '', 'hydrogen', 'to', 'cause', 'an', 'extended', '', 'plateau', 'in', 'their', 'light', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'may', '2', '0', '0', '9', ',', 'mackay', 'transferred', 'from', 'livingston', 'to', 'st', '', ',', 'who', 'had', 'won', 'promotion', 'to', 'the', 'scottish', 'premier', 'league', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'event', 'is', 'not', 'a', 'contest', 'in', 'any', 'way', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'directed', 'psychological', 'thriller', '``', '', \"''\", 'and', 'the', 'tv', '', 'of', '', '', \"'s\", 'novel', 'about', 'the', 'last', 'days', 'of', 'slavery', 'in', 'jamaica', ',', '``', 'the', 'long', 'song', \"''\", ',', 'both', 'of', 'which', 'were', 'broadcast', 'in', '2', '0', '1', '8', '.', '', '', '', '', '', '', '', '']\n", "['', 'this', '', 'has', 'since', 'been', 'confirmed', 'and', 'extended', 'to', '', 'e', ',', '', 'c', 'and', '', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'highway', '1', '6', 'winds', 'east', ',', 'briefly', '', '', 'county', ',', 'returning', 'to', 'pope', 'county', ',', 'and', '', '', 'county', 'to', 'pass', 'through', 'ben', '', ',', 'before', 'returning', 'to', 'pope', 'county', 'and', 'running', 'toward', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'newspaper', 'has', 'won', 'numerous', 'awards', ',', 'and', 'five', 'editions', 'are', 'produced', 'each', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'first', 'marriage', ',', 'in', '7', '2', '7', ',', 'in', '', ',', 'hubei', ',', 'was', 'to', 'the', 'granddaughter', 'of', 'a', 'former', 'government', 'minister', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'name', '', \"'\", 'corner', 'caught', 'on', 'with', 'the', 'public', 'when', 'the', 'store', 'owners', '', '', 'to', '', 'their', 'store', 'as', 'a', 'stop', 'on', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'has', 'a', '', 'body', 'that', 'is', 'brown', 'in', 'colour', ',', 'with', '', 'dark', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '1', 'the', 'new', 'zealand', 'government', 'established', 'the', 'game', 'animal', 'council', 'to', 'manage', 'game', 'animals', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', ')', 'is', 'a', 'rural', 'locality', '(', 'a', 'settlement', ')', 'in', '', 'rural', 'settlement', ',', '', 'district', ',', '', 'oblast', ',', 'russia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'bank', 'and', 'rails', 'under', 'a', '', '', 'exist', 'in', '', ',', 'and', 'in', '', ',', 'the', 'flat', 'area', 'of', 'the', 'yard', ',', 'the', 'tunnel', 'leading', 'to', '', 'and', 'the', 'platform', 'are', 'very', 'apparent', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'landscape', 'and', 'portrait', 'pieces', 'were', 'displayed', 'at', 'the', '', 'artists', 'association', 'museum', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'also', 'manufactured', '', 'versions', 'of', 'most', 'of', 'these', 'instruments', ',', '', '', '8', '0', '', '', '(', '1', '9', '8', '8', ')', ',', 'and', 'an', 'external', '', 'programming', 'device', ',', '', '1', '6', '', '', '(', '', '', 'with', '', '', ')', '.', '', '', '', '', '', '']\n", "['', 'he', 'grew', 'up', 'in', 'staten', 'island', 'in', 'new', 'york', 'city', ',', 'and', 'attended', '', '', 'high', 'school', ',', 'where', 'he', 'graduated', 'in', '1', '9', '8', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'born', 'in', '1', '9', '6', '7', 'in', 'cleveland', ',', 'ohio', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', '', 'at', '', 'included', 'anthony', '', ',', '', '', ',', '', '', ',', '', '', ',', 'ali', '', '', ',', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'finishing', 'school', ',', 'she', 'trained', 'and', 'worked', 'as', 'a', '', 'nurse', 'until', 'she', 'married', 'at', 'age', 'twenty', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'early', '1', '9', '8', '0', 's', ',', '', 'led', 'the', 'supreme', 'planning', 'council', ',', 'which', 'sets', 'qatar', \"'s\", 'basic', 'economic', 'and', 'social', 'policies', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'nevertheless', ',', 'when', 'hanina', 'died', ',', 'due', 'to', 'his', '', 'a', '', 'of', 'fire', 'appeared', 'to', 'separate', 'his', 'body', 'from', 'the', 'living', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'enjoyed', 'a', 'long', 'military', 'career', ',', 'having', 'served', 'in', 'the', 'soviet', 'army', 'as', 'a', 'simple', 'soldier', 'long', 'before', 'world', 'war', 'ii', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'year', '2', '0', '0', '5', 'the', 'number', 'of', 'deportations', 'reached', '2', '0', '8', ',', '5', '2', '1', 'with', 'less', 'than', 'half', 'being', 'deported', 'under', 'criminal', 'grounds', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'average', 'household', 'size', 'was', '1', '.', '9', '1', 'and', 'the', 'average', 'family', 'size', 'was', '2', '.', '4', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'spoke', 'in', 'favour', 'of', 'a', '', 'analysis', 'of', 'the', 'proposed', '', '', 'in', 'february', '2', '0', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'instead', 'of', 'focusing', 'on', 'racial', 'differences', 'and', 'looking', 'at', 'groups', \"'\", 'needs', 'separately', ',', 'the', 'military', 'government', 'wanted', 'to', 'view', 'brazilian', 'society', 'as', 'one', 'where', 'everyone', 'was', 'equal', ',', '', 'of', 'ethnic', 'background', 'whether', 'this', 'was', '', 'or', 'not', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', '2', '5', '.', '6', '%', 'of', 'households', 'were', 'one', 'person', 'and', '9', '.', '3', '%', 'were', 'one', 'person', 'aged', '6', '5', 'or', 'older', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'installation', '', 'ball', '', 'appeared', 'in', 'the', '9', 'th', 'northwest', '', '2', '0', '0', '9', 'at', 'the', '', 'art', 'museum', 'in', '', ',', 'washington', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'experiment', 'in', 'political', 'science', 'is', 'regarded', 'to', 'be', 'harold', '', \"'s\", '1', '9', '2', '4', 'study', 'on', 'voter', 'turnout', 'in', 'chicago', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'because', 'of', 'a', '', 'in', '2', '0', '1', '6', ',', 'the', 'country', 'was', 'no', 'longer', 'bound', 'by', 'the', 'excessive', '', 'procedure', 'which', 'had', 'been', 'implemented', 'during', 'an', 'earlier', 'financial', 'crisis', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'estimated', 'economic', 'impact', 'of', 'that', 'year', \"'s\", 'convention', 'was', '$', '1', '8', '0', 'million', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'average', 'household', 'size', 'was', '2', '.', '9', '3', 'and', 'the', 'average', 'family', 'size', 'was', '3', '.', '2', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'a', 'part', 'of', 'the', 'larger', '', 'cinema', ',', 'known', 'as', '', ',', 'which', 'includes', 'other', 'production', '', 'producing', 'films', 'in', 'many', 'other', '', 'languages', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '(', '2', '0', 'pupils', 'enrolled', ')', '&', 'lt', ';', 'br', '&', 'gt', ';', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'double', 'live', 'album', 'by', 'the', 'british', 'hard', 'rock', 'band', 'deep', '', 'was', 'recorded', 'in', 'the', '', '', 'on', '1', '2', 'november', '1', '9', '7', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'brothers', 'have', 'links', 'to', 'a', '', '', 'asian', 'street', 'gang', '', 'for', 'their', 'involvement', 'in', 'the', '2', '0', '1', '3', '', 'of', 'a', '', 'bar', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'new', 'police', 'station', 'was', 'built', 'in', '1', '9', '7', '4', ',', 'which', 'underwent', 'a', 'major', '', 'in', '2', '0', '1', '1', ',', 'to', 'become', 'a', 'police', 'force', 'hub', 'for', 'mid', 'devon', ',', 'with', '7', '2', 'staff', 'members', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'now', 'presents', 'festivals', ',', '', ',', 'and', '', 'programs', 'at', 'these', 'two', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'creek', '', 'covers', 'an', 'area', 'of', 'at', 'an', 'elevation', 'of', '8', '2', '3', 'feet', '(', '2', '5', '1', 'm', ')', 'above', 'mean', 'sea', 'level', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'doing', 'so', ',', 'sister', '', 'is', 'left', 'to', 'prevent', '', 'from', '', 'with', 'his', 'crystal', '', '', ',', 'while', '', 'her', 'own', 'past', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'station', 'has', 'been', 'owned', 'by', 'the', '', 'radio', 'group', 'subsidiary', 'of', '', 'communications', 'since', '2', '0', '0', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'assigned', 'to', 'the', 'forward', 'battle', '', 'party', ',', '', 'was', '', 'injured', 'by', 'the', '', 'and', 'fires', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'such', 'the', 'system', 'is', 'of', 'high', 'significance', 'to', 'the', 'general', 'community', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'open', 'source', '', '', 'and', 'commercial', '', 'were', 'both', 'based', 'on', 'the', '', 'object', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'scripps', 'grew', 'up', 'on', 'a', '', ',', 'illinois', ',', 'farm', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'thought', '', \"'s\", 'stance', '``', '', '', \"''\", ',', 'although', '', 'had', 'a', 'point', 'that', 'control', 'of', '', 'by', 'a', 'committee', 'was', 'not', 'necessarily', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'measured', 'traffic', 'before', 'and', 'after', 'the', 'start', 'of', '', 'and', 'reported', 'a', '2', '6', 'percent', 'decline', 'in', 'average', '', 'volumes', 'in', 'the', 'tunnel', ',', 'with', 'no', '', '', 'on', 'nearby', 'i-', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'carnegie', 'was', 'one', 'of', 'many', 'leaders', 'in', 'african-american', 'rural', 'communities', 'across', 'the', 'south', 'who', 'raised', 'millions', 'of', 'dollars', 'to', 'fund', 'better', 'education', 'for', 'their', 'children', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'on', 'by', 'the', 'threats', 'of', 'carter', \"'s\", 'manager', ',', 'she', 'decides', 'to', 'publish', 'the', 'story', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'presently', 'he', 'is', 'director', ',', '', 'scientific', 'instruments', 'organisation', '(', '', ')', '', 'since', 'july', '2', ',', '2', '0', '1', '5', 'to', 'till', 'date', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'moore', 'was', 'a', '', ',', 'known', 'for', '', 'creation', 'of', '', ',', 'sometimes', '', 'the', 'same', 'species', 'in', 'more', 'than', 'one', 'genus', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'attended', 'the', 'royal', 'army', 'academy', 'in', '1', '8', '5', '4', '-', '5', '7', 'and', 'was', 'then', 'appointed', 'a', 'second', 'lieutenant', 'in', 'the', 'artillery', 'and', 'reached', 'the', 'rank', 'of', 'first', 'lieutenant', 'in', '1', '8', '6', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '9', '3', '7', 'to', '1', '9', '4', '1', ',', '', 'worked', 'as', 'an', '', 'and', 'report', 'writer', 'for', 'the', 'civil', '', '', 'of', 'the', 'senate', 'committee', 'on', 'education', 'and', 'labor', 'chaired', 'by', 'senator', 'robert', 'm.', 'la', '', ',', 'jr.', ',', 'and', 'the', 'foreign', 'economic', 'administration', '.', '', '']\n", "['', 'the', '', 'of', '', 'is', 'a', '', 'roman', '', '', 'in', '', ',', 'located', 'in', 'present-day', '', ',', '', 'province', ',', 'algeria', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'brother', '', 'was', '', '', 'and', 'both', 'were', 'from', 'the', 'same', 'mother', ',', 'rachel', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'fifth', ',', '1', '7', '0', 'years', 'after', '', ',', 'was', 'that', 'of', '', 'begotten', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'over', 'eight', 'years', ',', '', \"'s\", 'subscription', 'audience', 'increased', 'from', '4', ',', '3', '0', '0', 'to', '1', '0', ',', '0', '0', '0', 'patrons', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'they', 'beat', 'the', 'indiana', '', 'in', 'five', 'games', 'to', 'secure', 'the', 'title', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'their', 'owners', ',', 'mostly', 'south', 'carolina', '', ',', 'were', '', 'than', 'the', 'early', 'settlers', 'and', 'soon', 'gained', 'most', 'of', 'the', 'official', 'political', '', 'in', 'the', 'crown', 'colony', 'that', 'replaced', 'the', '', 'in', '1', '7', '5', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'a', 'member', 'of', 'the', 'santa', '', '', 'club', ',', 'notable', 'for', 'producing', 'olympic', '', 'such', 'as', '', 'de', '', 'and', 'mark', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'present', 'the', 'language', 'has', 'only', 'a', '', 'community', '', 'status', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'formed', 'on', 'july', '8', ',', '2', '0', '0', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'praised', 'evans', \"'s\", '', 'display', 'in', 'his', '', 'attempts', 'as', 'the', 'fastest', 'and', 'best', 'he', 'had', 'seen', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'could', 'however', '``', 'box', \"''\", 'as', 'well', 'as', 'slug', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '4', '8', 'the', 'present', 'name', ',', '', '', ',', 'was', 'adopted', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'anthology', 'was', 'produced', 'by', 'mike', '', 'and', 'a', 'concert', 'anthology', 'dvd', 'was', 'also', 'released', 'featuring', 'concert', 'performances', 'between', '1', '9', '8', '7', 'and', '1', '9', '9', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'on', 'location', 'working', 'on', 'the', 'film', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'public', 'services', 'commenced', 'on', '4', 'may', '1', '8', '5', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'few', 'years', 'later', ',', 'in', 'august', '1', '9', '7', '6', ',', 'the', 'altarpiece', 'was', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'and/or', 'individually', 'affected', 'young', 'people', 'are', 'supported', 'by', '', 'via', 'the', '``', '', 'project', \"''\", 'education', 'initiative', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'december', '1', '9', '9', '8', ',', 'it', 'opened', 'its', 'own', 'permanent', 'home', 'at', 'the', 'egyptian', 'in', 'hollywood', ',', 'and', 'in', '2', '0', '0', '4', 'added', 'a', 'second', 'theater', ',', 'the', '', 'theatre', ',', 'in', 'santa', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'catholic', 'parish', '``', 'st.', '', \"''\", '', 'is', 'responsible', 'for', '', ',', '', ',', '', 'and', '', '(', 'part', 'of', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '6', ',', 'it', 'was', 'announced', 'that', 'the', 'premises', 'of', 'the', '', 'high', 'court', 'would', 'be', 'shifting', 'to', '', '', 'complex', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'smith', '(', 'born', '1', '8', 'august', '1', '9', '9', '3', ')', 'is', 'an', 'australian', 'professional', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'time', 'though', ',', 'the', '', 'column', 'of', '', 'were', 'facing', 'away', 'from', 'the', '', 'japanese', ',', 'and', '', \"'s\", 'tanks', 'caught', 'them', 'from', 'behind', ':', 'the', 'death', 'toll', 'was', 'even', 'higher', 'than', 'that', 'of', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'had', 'eleven', 'children', ',', 'four', 'daughters', 'and', 'seven', 'sons', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '4', ',', '1', '.', '2', 'million', '', 'account', '', '(', '', 'and', '', ')', 'were', 'published', 'on', 'a', 'public', '', 'forum', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'weapons', ',', 'ammunition', ',', '', ',', 'health', 'batteries', ',', 'etc', '.', ')', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'june', '2', '0', '2', '0', ',', '', ',', '', 'software', 'developer', '', 'acquired', '', 'james', 'from', 'parent', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'other', 'hand', ',', 'family', 'rights', 'and', '', 'usually', 'fell', 'under', 'the', 'jurisdiction', 'of', 'the', 'church', 'courts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'goal', 'was', 'to', '', 'black', 'artists', 'into', 'the', 'performing', 'arts', 'field', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'makes', 'china', 'the', 'world', \"'s\", '', 'study', 'abroad', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'are', '3', '0', '%', 'of', 'the', 'city', \"'s\", 'population', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'despite', 'this', ',', '', 'did', 'not', 'include', 'any', '', '', 'in', 'his', 'original', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'are', 'the', '', 'of', 'a', '', 'legend', 'which', 'states', 'that', 'farmers', '', 'to', 'st.', 'joseph', ',', 'promising', 'that', 'if', 'he', '', 'in', 'a', 'drought', ',', 'they', 'would', 'share', 'their', '', 'with', 'the', 'poor', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', '', ',', '', ',', '', 'and', '', 'are', 'published', 'from', 'parts', 'of', 'the', 'district', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'would', 'be', 'equivalent', 'to', 'taking', '8', '5', ',', '0', '0', '0', 'cars', 'off', 'the', 'road', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'december', '1', '9', '7', '5', 'large', 'numbers', 'of', '', 'were', 'expelled', 'from', 'algeria', ',', 'and', 'algeria', 'began', 'to', '', 'troops', 'into', 'western', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'exact', 'number', 'of', 'honor', '', 'is', 'not', 'known', ',', 'but', 'a', 'report', 'in', '1', '9', '9', '5', 'estimated', 'about', '5', '2', 'honor', '', 'that', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'company', 'also', 'purchased', '9', '9', '.', '1', 'in', 'san', '', 'from', '', ',', 'and', 'began', '', '', \"'s\", 'programming', 'in', 'the', 'south', 'bay', ',', 'in', 'order', 'to', 'help', '', '1', '0', '7', '.', '7', \"'s\", 'signal', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '1', '9', '9', '0', '', '', 'was', 'a', 'women', \"'s\", 'tennis', 'tournament', 'played', 'on', 'outdoor', 'clay', 'courts', 'in', '', ',', 'greece', 'that', 'was', 'part', 'of', '', 'v', 'of', 'the', '1', '9', '9', '0', '', 'tour', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'area', 'on', 'its', 'southwest', 'has', 'been', '', 'off', 'for', 'use', 'as', 'a', 'dog', 'run', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'pole', 'speed', 'was', 'while', 'the', 'average', 'speed', 'was', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'trinidad', 'and', '', ',', 'she', 'worked', 'as', 'a', 'domestic', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'kelly', 'plays', 'mr.', '', ',', 'the', '', 'insurance', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'committed', 'to', 'working', 'together', 'with', 'others', '-', 'regardless', 'of', 'race', ',', 'culture', 'or', '', '-', 'to', 'improve', 'their', 'living', 'conditions', 'and', 'build', 'up', 'a', 'society', 'without', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'began', 'medical', 'studies', ',', 'but', '', 'to', 'chemistry', 'and', 'in', '1', '9', '1', '0', 'took', 'up', 'a', 'scholarship', 'in', 'the', 'subject', 'at', 'university', 'college', 'london', 'joining', 'the', 'staff', 'in', '1', '9', '1', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '2', '0', '0', '5', 'to', '2', '0', '0', '6', '', 'was', 'deputy', 'minister', 'for', 'the', 'greater', '', 'region', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'lived', 'in', 'boston', 'until', 'dr.', 'hall', 'died', 'in', '1', '8', '8', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ms.', '', '', 'together', 'with', 'her', 'fellow', 'coaches', 'were', 'even', '', 'on', 'twitter', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'georgia', 'would', 'use', 'a', 'billy', '', '3', '2', 'yard', 'field', 'goal', 'to', 'beat', 'alabama', 'in', 'the', 'first', 'meeting', 'between', 'teams', 'since', '1', '9', '9', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'robert', 'norton', ',', 'founder', 'of', 'the', '', 'ltd', '', 'company', ',', 'decided', 'to', 'produce', 'westminster', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'formed', 'finland', \"'s\", 'top', 'line', 'along', 'with', '', 'players', '', '', 'of', '', 'and', '', '', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'received', 'many', 'awards', 'for', 'his', 'film', 'scores', ',', 'but', 'never', 'an', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'grateful', 'dead', 'concert', 'from', 'the', 'same', 'set', 'of', 'shows', 'as', '``', 'vintage', '', \"''\", 'was', 'released', 'as', 'the', 'album', '``', 'three', 'from', 'the', 'vault', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '2', 'in', 'the', 'uk', 'and', 'us', 'in', '1', '9', '6', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'an', 'important', 'market', 'place', 'in', 'the', 'middle', 'ages', 'particularly', 'following', 'the', 'construction', 'of', '', 'castle', 'and', 'the', 'establishment', 'of', 'the', '', 'church', 'of', 'st', 'george', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'returned', 'for', 'the', '', 'issues', 'from', '#', '9', '4', '-', '1', '1', '4', '(', '', '1', '9', '7', '2', '-', '', '1', '9', '7', '3', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'unable', 'to', 'present', 'his', 'idea', 'to', 'the', 'assembly', 'and', 'in', 'a', 'private', 'conversation', ',', '', '', 'told', 'israel', 'that', 'he', 'was', 'much', 'too', 'young', 'to', 'succeed', 'in', 'achieving', 'the', 'goal', 'of', 'a', 'national', 'defence', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'may', '2', '0', '1', '1', ',', '', 'acquired', 'news', '', '', ',', 'a', 'social', 'car', 'shopping', 'platform', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'from', 'asia', 'transported', 'along', 'the', 'silk', 'road', 'included', '', ',', '', ',', '', ',', 'weapons', ',', '', ',', '', ',', 'farm', 'produce', ',', '', 'and', 'slaves', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'through', 'the', '', ',', '', 'users', 'can', 'download', 'any', 'of', 'a', 'vast', 'number', 'of', '', 'modules', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'latest', 'film', ',', '``', '', '', \"''\", ',', 'is', 'a', '', 'language', 'drama', ',', 'about', '', '', 'in', 'the', '1', '9', '4', '0', 's', 'and', '1', '9', '5', '0', 'trying', 'to', 'create', 'a', '', 'state', 'from', 'parts', 'of', 'iran', 'and', 'iraq', '.', '', '', '', '', '', '', '']\n", "['', 'these', 'practices', 'may', '', 'a', 'supported', 'employment', 'service', 'provider', '(', 'professionals', ')', 'to', 'understand', 'how', 'to', '', 'employment', 'and', 'provide', 'supports', ',', 'school', 'personnel', 'in', 'transition', ',', 'or', 'it', 'may', '', 'an', 'approach', 'similar', 'to', '', 'and', '', 'community', 'development', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'highway', 'begins', 'at', '', '1', '5', '0', 'in', 'downtown', '', 'and', 'ends', 'at', '', '1', '4', '3', 'in', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '1', 'there', 'were', '3', '5', '5', 'immigrants', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'french', 'ministry', 'of', 'education', 'formally', 'recognized', '', 'as', 'an', 'institute', 'of', 'higher', 'education', 'in', '2', '0', '0', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'northern', 'half', 'has', 'the', '6', '0', '2', '/', '6', '2', '3', 'border', 'running', '', 'through', 'its', 'middle', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'some', 'point', ',', 'cole', 'may', 'have', 'been', 'a', 'part', 'of', 'the', 'army', \"'s\", 'special', 'forces', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'ultimately', 'dropped', 'the', '', 'and', 'offered', 'an', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'u.s.', 'government', 'has', 'been', 'criticized', 'for', 'allowing', 'pakistan', 'to', 'channel', 'a', '', 'amount', 'of', 'its', 'funding', 'to', 'the', 'controversial', '', ',', 'whom', '', 'officials', 'believed', 'was', '``', 'their', 'man', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'banjaras', 'are', 'the', 'main', 'tribal', 'group', 'of', '', '', ',', 'among', 'them', ',', 'rathod', 'and', '', 'banjaras', 'are', 'most', 'numerous', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'parish', 'includes', 'the', 'villages', 'of', '', '', 'and', '', ',', 'and', 'the', '', 'of', '', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '9', '7', '3', 'to', '1', '9', '8', '3', ',', 'he', 'was', 'literary', 'editor', 'of', '``', 'the', 'jewish', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'soon', 'he', 'developed', 'a', 'talent', 'for', '', 'towards', 'enemy', '', 'and', '', 'them', 'with', 'hand', '', '(', 'as', 'part', 'of', 'the', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '``', 'illinois', 'register', \"'s\", \"''\", 'website', 'includes', 'references', 'to', 'page', 'numbers', 'to', 'make', 'it', 'easier', 'to', 'find', 'the', '', 'issue', ',', 'which', 'in', 'this', 'example', 'would', 'be', 'the', '2', '2', 'june', '2', '0', '1', '8', 'issue', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", '', 'in', 'the', '``', 'british', 'journal', 'of', 'psychology', \"''\", 'stated', 'that', '``', 'the', 'success', 'of', 'her', 'work', 'is', 'demonstrated', 'by', 'the', 'success', 'of', 'her', 'students', 'in', 'many', 'widely', 'differing', 'fields', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'part', 'of', 'the', 'main', 'cast', 'of', '``', '', \"''\", 'in', 'the', 'role', 'of', 'john', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'the', 'station', 'was', 'still', '', 'as', 'an', 'independent', ',', 'as', 'fox', 'would', 'not', 'air', 'a', 'full', 'week', \"'s\", 'worth', 'of', 'programming', 'until', 'september', '1', '9', '9', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'california', 'dreams', 'tour', 'was', 'the', 'second', 'concert', 'tour', 'by', 'american', 'singer', '', 'perry', ',', 'in', 'support', 'of', 'her', 'third', 'studio', 'album', '``', '', 'dream', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'critical', '', 'reads', ':', '``', 'with', 'its', '', 'focus', 'on', 'special', 'effects', 'and', '', '', ',', '``', '', \"''\", '', 'the', '', 'talent', 'of', 'its', 'cast', 'and', 'crew', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'salad', 'fingers', 'is', 'then', 'outside', 'in', 'his', '', 'with', '', 'in', 'a', '', ',', 'looking', '', 'once', 'again', ',', 'telling', 'her', 'that', '``', 'good', 'old', '', '', \"''\", 'has', 'agreed', 'to', 'look', 'after', 'her', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'iranian', 'central', 'bank', '', 'tried', 'to', 'keep', 'the', 'value', 'of', 'the', '', '', 'in', 'the', 'midst', 'of', 'the', 'late', '2', '0', '1', '2', 'decline', 'by', '', '', 'into', 'the', 'system', 'to', 'allow', 'the', '', 'to', 'compete', 'against', 'the', 'us', 'dollar', '.', '', '', '', '', '', '', '', '']\n", "['', 'clayton', 'recorded', 'his', 'version', 'of', '``', 'i', 'ca', \"n't\", 'stand', 'the', 'rain', \"''\", 'on', 'his', '2', '0', '0', '8', 'album', '``', 'soul', '&', 'amp', ';', 'blues', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'despite', 'that', ',', 'the', 'older', 'name', 'is', 'still', 'in', 'use', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'his', 'service', ',', 'he', 'received', 'the', 'army', 'distinguished', 'service', 'medal', ',', 'the', 'silver', 'star', 'and', 'the', '', 'of', 'merit', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'shipped', 'them', 'outside', 'of', 'chicago', 'to', 'have', 'them', '', 'and', 'then', '', 'and', '', 'back', 'to', 'chicago', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'germany', 'name', 'days', '(', 'in', 'german', ':', '', ')', 'used', 'to', 'be', 'widely', 'popular', 'in', 'traditionally', 'catholic', 'southern', 'and', 'western', 'regions', ',', 'where', 'historically', 'they', 'were', 'more', 'important', 'than', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'by', 'the', 'moroccan', 'magazine', '``', '', \"''\", 'in', 'november', '2', '0', '1', '2', ',', 'she', 'said', 'that', 'her', '', 'project', 'is', 'the', '', 'of', 'the', 'left', 'forces', 'into', 'a', 'progressive', 'democratic', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'argued', 'that', 'the', 'legal', '', '', 'attempted', 'to', 'use', 'were', '', 'by', 'nature', 'as', 'they', 'have', 'been', 'used', 'historically', 'to', '``', '', 'native', '', 'from', 'their', '', 'lands', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ultimately', ',', '', 'was', 'classified', 'by', '', 'investigators', 'as', 'being', 'only', 'a', '``', 'fellow', '', \"''\", 'and', 'was', 'not', 'accused', 'or', 'associated', 'with', 'any', 'war', 'crimes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'begins', 'a', 'romantic', 'relationship', 'with', 'roger', ',', 'a', 'young', 'white', 'man', 'who', 'seems', 'to', 'move', 'among', 'new', 'york', \"'s\", '``', 'four', 'hundred', \"''\", ',', 'the', 'social', 'elite', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'thousand', '', 'are', 'planned', 'to', 'light', 'in', 'front', 'of', 'the', 'university', 'building', 'in', 'memory', 'of', 'the', 'victims', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'songs', 'that', 'appear', 'on', 'the', 'dvd', 'were', 'recorded', 'live', 'at', 'club', '', ',', 'england', ',', 'in', 'september', '2', '0', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'center', 'of', 'this', 'production', 'is', 'considered', 'to', 'be', 'the', 'poet', '', '', ',', 'so', 'its', 'periods', 'are', '', 'divided', 'as', 'follows', ':', '', '', '(', '', '', ')', ',', '', '', ',', '', '', ',', '', 'and', 'descendants', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'design', 'of', '``', '', \"''\", 'was', 'a', 'modified', 'version', 'of', 'the', 's', 'of', 'the', 'royal', 'navy', 'with', 'two', 'additional', 'guns', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'party', 'is', 'a', 'member', 'of', 'the', 'european', 'people', \"'s\", 'party', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'chettleburgh', ',', '', 'motorcycle', 'gangs', 'in', 'the', 'regional', 'municipality', 'of', 'niagara', 'frequently', '', 'with', 'npf', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'species', 'of', 'beetle', 'in', 'the', 'family', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'park', 'was', 'inaugurated', '', '3', ',', '1', '9', '0', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', '', 'to', 'his', 'people', ',', 'i', 'was', '', 'and', 'touched', 'because', 'this', '', '', 'account', 'was', 'an', 'artistic', 'success', 'and', 'considerable', 'resources', 'in', 'talent', 'and', '', 'had', 'been', 'applied', 'in', 'making', 'it', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'an', 'interview', ',', '', 'stated', 'that', 'political', 'parties', 'should', 'not', '', 'officially', 'for', 'one', 'opinion', 'or', 'the', 'other', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', 'born', '2', '1', 'october', '1', '9', '7', '7', 'in', '', ')', 'is', 'a', 'former', 'hungarian', 'international', '', 'player', 'and', 'afterwards', '', 'coach', 'of', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'performed', 'as', 'a', 'concert', '', 'with', 'symphony', '', 'around', 'the', 'world', 'and', 'in', 'intimate', 'solo', 'settings', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'each', '', 'letter', '(', 'with', 'the', 'possible', 'exception', 'of', '``', '', \"''\", ')', 'represents', 'at', 'least', 'two', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'legislature', ',', 'known', 'as', 'the', 'parliament', '(', 'parliament', ')', ',', 'has', 'two', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'to', 'cover', 'these', 'high', 'costs', ',', 'they', 'needed', 'to', 'fish', 'for', 'longer', 'seasons', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'board', 'members', 'of', 'the', 'non-profit', 'were', '', ',', 'his', 'wife', '', ',', 'and', '', \"'\", '', ',', '', 'and', 'robert', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'severe', 'knee', 'injury', 'led', 'to', 'the', '', 'not', '', '', 'a', 'contract', 'for', 'the', '2', '0', '1', '1', 'season', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'best', 'practices', '', 'that', 'an', '', 'support', 'approach', 'to', 'supported', 'employment', ',', 'funded', 'as', 'a', 'professional', 'vocational', 'rehabilitation', 'service', '(', 'now', 'changing', 'to', '', 'of', 'risk', 'and', 'protective', 'health', 'factors', ')', ',', 'is', 'used', 'to', '', 'individuals', 'with', 'gaining', 'and', 'maintaining', 'employment', '(', 'later', ',', 'termed', 'job', '', ')', '.']\n", "['', 'she', 'is', '', 'by', 'her', 'father', \"'s\", 'life', 'as', 'a', '', ',', 'and', 'generally', 'has', 'a', 'good', 'relationship', 'with', 'her', 'father', \"'s\", 'colleagues', ';', 'when', 'she', 'was', 'younger', ',', 'she', 'even', 'called', 'tony', '', '``', 'uncle', 'tony', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'lee', 'was', 'under', 'contract', 'to', 'play', 'with', 'the', '', 'giants', 'for', 'the', '2', '0', '0', '6', 'season', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'study', 'of', 'sociolinguistics', 'in', 'the', 'american', 'deaf', 'community', 'did', 'not', 'start', 'until', 'the', '1', '9', '6', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thereafter', ',', 'the', '', 'were', 'passed', 'down', 'to', ',', '', ',', 'and', '', ',', 'who', 'put', 'them', 'to', 'good', 'use', 'in', 'the', 'former', 'nine', 'years', \"'\", 'war', 'and', 'the', 'later', 'three', 'years', \"'\", 'war', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'prevented', 'the', '', 'of', '', 'who', 'was', 'instead', 'represented', 'by', 'his', 'chief', 'assistant', 'robert', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'the', 'largest', 'oil', 'spill', 'in', 'alberta', 'in', '3', '6', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '0', 'glen', 'perry', ',', 'a', '', 'engineer', 'for', '', 'energy', ',', 'warned', 'that', 'including', 'the', 'alberta', '', 'pipeline', 'owned', 'by', '', \"'s\", '', '', ',', 'there', 'is', 'an', 'extensive', '', 'of', 'oil', '', 'from', 'canada', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'played', 'college', 'baseball', 'for', 'the', 'georgia', '', 'yellow', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'was', 'born', 'in', 'budapest', ',', 'hungary', 'on', 'september', '1', '3', ',', '1', '9', '3', '8', 'and', 'died', 'on', 'december', '2', '0', ',', '2', '0', '1', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'web', '', 'adaptation', 'launched', 'on', 'june', '2', ',', '2', '0', '1', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'ryan', '', ',', 'where', 'the', '', 'had', 'played', 'their', 'home', 'games', 'since', 'the', '1', '9', '1', '4', '-', '1', '5', 'season', ',', 'had', 'no', '', ',', '', 'fans', 'on', 'a', '', '', 'on', 'an', 'indoor', 'track', 'above', 'the', 'court', '.', '', '', '', '', '', '', '', '', '']\n", "['', '', 'took', 'two', 'gold', 'medals', 'in', 'the', '1', '0', '0', 'm', '(', 't', '5', '4', ')', 'and', '4', 'x', '1', '0', '0', 'm', 'relay', '(', 't', '5', '3', '/', '5', '4', ')', 'events', 'at', 'the', '2', '0', '1', '6', 'summer', '', 'in', 'rio', '.', '', '', '', '', '', '']\n", "['', 'paul', 'and', '', 'asked', 'dutch', 'film', 'producer', 'chris', '', 'to', 'produce', 'the', 'film', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '6', ',', 'the', 'government', 'of', 'zimbabwe', 'announced', 'a', 'new', 'initiative', 'for', 'automobile', 'production', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'all', '', 'leaving', 'or', 'entering', 'the', '', 'are', 'sent', 'from', 'or', 'to', 'the', '', 'address', 'of', 'the', 'external', '', 'on', 'the', '', 'host', 'computer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'derived', 'the', 'company', 'name', 'from', 'the', '', 'of', 'the', 'magazine', 'and', 'their', 'own', 'last', 'names', ':', 't', '[', 'he', ']', 'o', '[', '', ']', 'r', '[', '', ']', 'b', '[', '', ']', 'e', '[', '', ']', 'l', '[', '', ']', 'l', '[', '', ']', '.', '', '', '', '']\n", "['', 'at', 'one', 'point', 'during', 'filming', ',', 'wayne', 'attempted', 'to', '', 'himself', 'as', 'director', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'december', '``', 'earl', '', \"''\", 'and', 'thompson', '', 'two', '', ':', '``', 'mary', 'ann', \"''\", 'and', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', '', 'density', 'is', 'increased', ',', 'electrons', '', '', 'the', 'lower', 'energy', 'states', 'and', 'additional', 'electrons', 'are', 'forced', 'to', '', 'states', 'of', 'higher', 'energy', 'even', 'at', 'low', 'temperatures', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'natural', '', 'skills', 'and', 'grace', 'in', 'her', 'slow', ',', '', '', ',', 'which', 'the', '', '', 'is', 'how', 'she', 'landed', 'her', 'husband', 'john', ',', 'the', '``', 'world', \"'s\", 'greatest', 'lover', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'called', '9', '-', '1', '-', '1', 'on', 'his', '', 'and', 'reported', 'that', '', 'was', 'being', 'beaten', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'nominated', 'for', 'a', '', 'award', 'in', '2', '0', '0', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mountains', 'make', 'up', '4', '0', '.', '5', '%', 'of', '', \"'s\", 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'is', 'required', 'from', 'the', 'state', 'of', 'maine', 'for', '', 'along', 'any', '', 'river', 'beaches', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'teammate', '', 'gordon', 'was', 'at', 'this', 'stage', 'just', 'five', 'minutes', 'behind', '', 'with', 'a', 'win', 'on', 'the', 'ninth', 'stage', ',', 'but', 'the', 'gap', 'increased', 'to', '2', '0', 'minutes', 'when', 'the', 'american', 'hit', 'a', 'rock', 'on', 'the', 'tenth', 'stage', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'musical', 'changed', 'its', 'title', 'to', '``', '', '', '...', '', 'with', 'a', '', '!', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'instance', ',', '', '', '', 'and', '', '', 'argue', 'that', 'the', 'latin', 'words', 'for', 'natural', 'oil', ',', 'gold', 'and', '', 'could', 'only', 'be', '', 'in', 'the', 'lands', 'to', 'the', 'north', 'of', 'the', 'river', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'records', 'from', 'the', 'islands', 'in', 'the', 'tasman', 'sea', 'are', 'probably', '', 'for', '``', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'former', 'is', 'a', '', 'of', 'information', 'concerning', '', 'conflicts', 'of', 'the', 'past', ',', 'and', 'is', 'marked', 'throughout', 'by', 'an', '', 'tone', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'originally', 'published', 'by', 'the', '', 'company', ',', '2', '4', '8', '', 'st.', 'in', 'boston', ',', 'massachusetts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'de', 'macau', ',', 'an', 'agreement', 'was', 'reached', 'between', 'all', 'parties', 'on', 'august', '1', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'recognized', 'this', 'growing', 'popularity', ',', 'along', 'with', 'an', 'absence', 'of', 'ice', 'arenas', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'class', 'i', '', ',', '', ',', '', ',', '', ',', 'are', 'present', 'on', 'all', '', 'cells', 'and', 'are', 'responsible', 'for', '', 'to', 'an', 'immune', 'cell', 'that', 'an', '', 'is', 'inside', 'the', 'cell', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'louisiana', 'highway', '9', '4', '1', '(', 'la', '9', '4', '1', ')', 'runs', 'in', 'a', 'general', 'southwest', 'to', 'northeast', 'direction', 'from', 'la', '4', '4', 'south', 'of', '', 'to', 'la', '3', '0', 'east', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'the', '2', '0', '1', '4', 'world', 'values', 'survey', ',', 'over', '9', '0', 'per', '', 'of', '', 'are', 'either', '``', 'very', '', \"''\", 'or', '``', 'quite', '', \"''\", 'of', 'their', 'nation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'emissions', 'from', '', \"'s\", 'base', 'metal', '', ',', 'closed', 'in', '1', '9', '8', '4', ',', 'resulted', 'in', '', '', 'with', 'concentrations', 'of', '', ',', '', 'and', '', 'above', 'the', 'ontario', 'ministry', 'of', 'the', 'environment', \"'s\", '``', 'soil', '', 'criteria', '.', \"''\", '', '', '', '', '', '', '', '', '']\n", "['', 'croatia', '', ',', 'was', 'the', 'tenth', 'round', 'of', 'the', '2', '0', '1', '3', 'european', '', 'championship', 'season', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'the', '2', '0', '1', '1', '', 'earthquake', 'and', '', ',', 'hamilton', 'was', 'allowed', 'to', 'return', 'to', 'the', 'united', 'states', 'while', 'the', '', '', 'out', 'the', '', 'of', 'the', 'season', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'found', 'in', '', ',', '', ',', '', ',', 'malawi', ',', '', ',', '', ',', '', ',', 'south', 'africa', ',', '', ',', 'tanzania', ',', '', ',', '', ',', 'and', 'zimbabwe', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ibn', '', ',', '', 'ibn', '', '', 'and', '', '', '', 'were', 'among', 'his', 'pupils', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '', '', \"'s\", 'novel', '``', '', \"''\", ',', 'one', 'of', 'the', 'main', 'characters', 'has', 'this', 'painting', 'on', 'their', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '7', '3', '1', 'le', '(', '1', '9', '1', '2', 'be', ',', '1', '3', '6', '9', '/', '7', '0', 'ce', ')', ',', '', 'i', 'died', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'african', 'conservation', 'foundation', ',', 'also', 'known', 'as', '', ',', 'is', 'an', 'international', '', 'organisation', 'established', 'in', '1', '9', '9', '9', 'and', 'registered', 'in', '2', '0', '0', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'general', 'joseph', '', '', 'is', 'a', 'retired', '', 'military', 'officer', 'who', 'served', 'as', 'general', 'officer', 'commanding', 'of', 'the', '4', 'artillery', 'brigade', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'remaining', 'ep', 'tracks', 'from', 'the', 'same', 'four', 'movies', 'were', '', 'into', 'another', 'budget', 'rca', '', 'album', ',', '``', 'i', 'got', '', \"''\", ',', 'released', 'three', 'months', 'later', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'progressive', 'party', 'on', 'the', '', 'chose', 'him', 'as', 'its', 'leader', 'shortly', 'after', 'his', 'election', 'but', 'he', 'stood', 'down', 'after', 'the', '1', '8', '9', '2', 'council', 'election', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'newspaper', 'helped', 'her', 'find', 'her', 'mother', ',', 'and', 'they', 'were', 'able', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'city', 'of', 'richmond', '', 'the', 'royal', 'canadian', 'mounted', 'police', 'as', 'its', 'primary', 'form', 'of', 'municipal', 'law', 'enforcement', 'with', 'their', 'main', 'detachment', 'located', 'on', 'no', '5', 'road', 'near', 'the', '', 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'following', '', '', 'standards', 'support', 'for', 'some', 'notable', '', 'engines', 'used', 'in', 'web', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ministry', 'of', 'environment', ',', 'forestry', 'and', 'tourism', '(', 'met', ')', 'is', 'a', 'government', 'ministry', 'of', '', ',', '', 'in', 'the', '', '', 'building', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '4', 'she', 'starred', 'alongside', 'alan', 'williams', 'in', '``', 'the', '', 'family', \"''\", ',', 'alan', '', \"'s\", 'film', 'adaptation', 'of', 'her', 'own', '', 'play', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'were', 'borne', 'from', 'military', '', 'and', '', 'physical', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'said', 'to', 'be', 'friendly', 'with', '', 'bin', '', ',', 'founder', 'of', '', ',', 'who', 'was', 'running', 'an', 'operation', 'for', '', '``', '', 'arab', \"''\", 'volunteers', 'fighting', 'in', 'afghanistan', ',', 'called', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'area', 'comprises', 'the', 'area', 'surrounding', 'the', 'silver', 'bay', 'and', 'including', 'green', 'island', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', 'screen', 'now', 'displayed', 'in', '', \"'s\", 'baroque', 'parish', 'church', 'is', 'considered', 'one', 'of', 'luxembourg', \"'s\", 'most', '', 'art', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'koufax', 'finally', 'was', 'able', 'to', '', 'again', 'in', 'september', ',', 'when', 'the', 'team', 'was', '', 'in', 'a', 'tight', '', 'race', 'with', 'the', 'giants', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', '6', '4', '0', '0', '0', 'inhabitants', ')', 'located', 'in', 'a', 'very', 'densely', 'populated', 'western', 'part', 'of', '', 'and', 'eastern', '', 'and', '', '(', 'an', '', '', '', '', '', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'attempts', 'were', 'made', 'to', 'find', 'an', 'acceptable', 'alternative', 'site', 'for', 'stations', 'at', 'both', 'the', 'towns', 'which', 'would', '', 'the', 'operation', 'of', 'a', 'through', 'main', 'line', ',', 'but', 'in', 'both', 'cases', 'this', 'proved', 'impossible', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'not', 'yet', 'known', 'if', 'he', 'will', 'be', 'able', 'to', 'conquer', 'this', '', 'with', 'practice', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'together', 'with', 'the', 'saint', 'sophia', 'cathedral', ',', 'it', 'is', '', 'as', 'a', 'unesco', 'world', 'heritage', 'site', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'received', 'two', 'prolonged', 'standing', '', 'at', 'the', 'film', \"'s\", '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'reported', 'in', 'september', '2', '0', '1', '9', 'that', '', 'resigned', 'three', 'days', 'after', 'an', '', '', 'wrote', 'a', 'letter', '', ',', 'among', 'other', 'things', ',', '', \"'s\", '', 'of', '``', 'leaving', '', \"''\", ',', 'arguing', 'that', 'it', 'opened', 'the', 'company', 'to', '', '.', '', '', '', '', '']\n", "['', '', \"'s\", 'first', 'concert', 'in', 'vienna', '(', '1', '8', '5', '8', ')', 'met', 'with', '', ',', 'and', 'he', 'returned', 'to', 'budapest', ',', 'returning', 'to', 'vienna', 'in', '1', '8', '6', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'aaron', 'said', 'that', 'inspiration', 'for', 'the', 'latter', 'came', 'from', 'novels', 'they', 'both', 'read', 'together', 'when', 'they', 'were', 'younger', ',', 'and', 'that', 'during', 'their', '', 'education', 'they', 'read', 'and', '', 'the', 'literature', ',', 'biography', ',', 'historical', 'fiction', ',', 'and', 'culture', 'that', 'inspired', 'their', 'work', 'in', 'the', 'film', '.', '', '', '']\n", "['', 'in', '1', '8', '4', '3', ',', 'joseph', '', 'suggested', 'building', 'a', 'tramway', 'between', '', 'and', '', ',', 'with', 'a', 'branch', 'line', 'to', 'the', 'east', '', 'rose', 'silver', 'lead', 'mine', ',', 'which', 'at', 'the', 'time', 'was', 'entering', 'its', 'most', 'prosperous', 'period', '.', '', '', '', '', '', '', '', '', '']\n", "['', '', 'air', 'is', 'a', 'musical', 'composition', 'for', 'chamber', 'ensemble', 'by', 'the', 'english', 'composer', 'sir', 'harrison', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', '', 'to', 'have', '', 'under', 'the', 'leadership', 'of', 'john', '', ',', '', \"'s\", 'new', 'chief', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'the', 'plant', '', ',', 'a', 'crystal', 'structure', 'of', 'the', '', '2', 'pm', '-atpase', 'from', '``', '', '', \"''\", 'has', 'been', 'obtained', 'from', '3', 'd', 'crystals', 'with', 'a', 'resolution', 'of', '3', '.', '6', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'park', 'in', 'california', '', '', 'national', 'awards', '', 'professional', 'category', '', 'award', 'of', 'honor', '-', 'general', 'design', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ncac', 'is', 'a', 'new', '', 'organization', 'with', 'official', '5', '0', '1', '(', 'c', ')', '(', '3', ')', 'status', 'in', 'the', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'turned', 'professional', 'in', '2', '0', '0', '3', 'and', 'would', 'lose', 'his', 'first', 'fight', 'to', 'adrian', '', 'by', 'second', 'round', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'all', 'three', '', ',', 'a', 'man', '(', 'or', 'men', ')', 'is', '', 'of', 'his', '', 'death', 'and', 'makes', 'offerings', 'to', 'the', '``', '', \"''\", ',', 'the', 'gods', 'of', 'death', 'who', 'kill', 'those', 'whose', 'time', 'is', 'due', 'and', 'take', 'away', 'their', '', 'to', 'the', '', '.', '', '', '', '']\n", "['', 'he', ',', 'along', 'with', '', ',', 'also', 'often', 'kept', '', 'or', '', 'of', 'cash', 'in', 'a', 'secret', '', 'in', 'that', 'same', 'chest', 'of', '', ',', 'which', 'would', 'open', 'after', 'a', 'series', 'of', '', 'on', 'the', '', 'and/or', 'foot', '', 'on', 'the', 'floor', '.', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', 'to', 'this', ',', 'each', 'man', 'had', 'to', 'carry', 'over', 'the', 'long', '', 'and', 'this', 'severely', '', 'down', 'the', 'reaction', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'most', 'living', 'groups', 'have', 'regular', 'group', 'meetings', 'and', 'some', 'take', '', 'together', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bush', 'and', 'ross', '', 'in', 'the', 'polls', ',', 'clinton', '', 'toward', 'the', 'national', 'convention', ',', 'while', 'the', 'los', 'angeles', '', '', 'him', 'out', 'of', 'news', 'coverage', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hence', ',', 'muslims', 'must', 'develop', 'their', 'own', 'political', 'force', ',', 'similar', 'to', '', ',', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '1', ',', 'when', '', 'ended', ',', '', 'joined', '``', '', 'rocks', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '1', '9', '8', '8', 'comic', '``', '', '', \"''\", ',', 'made', 'as', 'a', 'sequel', 'to', 'the', '', 'show', '``', 'the', 'prisoner', \"''\", ',', 'kuryakin', 'and', 'solo', 'both', 'make', '', 'at', 'the', 'funeral', 'of', 'a', '', ',', 'along', 'with', 'john', '', 'and', 'emma', '', '.', '', '', '', '']\n", "['', 'one', 'single', ',', '``', 'seasons', \"''\", ',', 'was', 'released', 'in', 'the', 'united', 'states', 'to', 'promote', 'the', 'record', ';', 'in', 'the', 'united', 'kingdom', ',', 'the', 'track', '``', 'dreams', \"''\", 'was', 'issued', 'as', 'a', 'single', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '2', '0', '0', '9', 'aaa', '4', '0', '0', 'was', 'the', '', 'stock', 'car', 'race', 'of', 'the', '2', '0', '0', '9', '', 'sprint', 'cup', 'series', 'and', 'the', 'second', 'in', 'the', '', '', 'chase', 'for', 'the', 'sprint', 'cup', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', '2', '0', '1', '5', ',', '``', '', \"''\", 'and', '``', 'argentina', \"''\", 'were', 'among', 'the', 'last', 'luxury', '', 'built', 'in', 'the', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'small', '', 'sites', 'of', '', ',', '', 'and', '', 'have', 'material', 'from', 'both', 'mature', 'and', 'late', '', 'period', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'deployed', 'to', 'iraq', 'in', '2', '0', '0', '3', 'as', 'a', 'part', 'of', 'operation', 'iraqi', 'freedom', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', '', 'used', 'include', 'the', '', '', 'bass', ',', 'a', 'gibson', '', '', ',', '', 'jazz', 'bass', ',', 'the', '', '', ',', 'a', 'gibson', '', '3', 'and', 'at', 'least', 'two', '', 'custom', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'given', 'that', '', 'is', 'a', '', 'medication', ',', 'a', 'common', 'adverse', 'effect', 'is', '', ',', 'which', 'can', 'be', 'life', 'threatening', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thomas', ',', 'however', ',', '', 'the', 'much', 'older', ',', '', '', '', ',', 'a', 'castle', 'owner', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '4', '4', ',', 'after', 'the', 'genocide', 'and', '', 'of', 'the', '', 'and', '', 'people', 'and', 'the', '', '', 'was', 'abolished', ',', 'the', 'village', 'of', '', 'was', 'renamed', 'to', '', ',', 'and', 'settled', 'by', 'people', 'from', 'other', 'ethnic', 'groups', '.', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'located', 'in', 'the', '', 'department', ',', 'in', 'the', '', 'region', ',', 'southern', 'france', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'the', 'coach', 'of', 'the', '', '', 'from', '1', '9', '8', '0', 'to', '1', '9', '8', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'first', 'round', ',', 'one', 'team', 'is', 'chosen', 'to', 'play', 'first', ',', 'and', '', 'one', 'of', 'two', 'categories', 'presented', ',', 'leaving', 'the', 'second', 'team', 'to', 'play', 'the', 'remaining', 'category', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'with', 'the', '', 'knee', 'step', ',', 'the', '', 'is', 'the', 'last', 'part', 'of', 'the', 'foot', 'to', 'leave', 'the', 'ground', 'and', 'the', 'first', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'preceding', 'the', '', 'is', 'a', 'series', 'of', '``', '', '', \"''\", ',', 'a', 'product', 'of', 'a', 'somewhat', 'dated', 'notion', 'in', 'gender', 'studies', 'that', 'women', 'can', 'be', 'grouped', 'into', 'categories', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', '', 'included', '', ',', 'scientific', 'research', 'and', 'agriculture', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'the', 'orchestra', 'contractor', 'and', 'the', '', 'for', 'the', 'canadian', 'premiere', 'of', '``', 'the', '', 'of', 'the', 'opera', \"''\", 'musical', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'character', 'returned', 'to', 'the', 'series', 'in', 'march', '2', '0', '1', '1', 'under', 'the', '', 'of', 'kate', '', ',', 'and', '', 'in', 'june', '2', '0', '1', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'kate', 'talks', 'with', 'darla', 'on', 'the', 'scene', ',', 'but', 'when', 'kate', 'turns', 'her', 'back', ',', 'angel', '', 'darla', 'and', 'takes', 'her', 'away', 'to', 'the', 'convent', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'shape', 'may', 'also', 'be', '', ',', '', 'or', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'st.', 'louis', 'country', 'club', '(', '', ')', 'is', 'a', 'country', 'club', 'located', 'in', '', ',', 'missouri', ',', 'a', 'suburb', 'of', 'st.', 'louis', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'award', '', ',', 'delivered', 'at', 'the', '', 'annual', 'meeting', 'in', 'san', 'diego', ',', 'ca', 'was', 'on', '``', 'managing', 'up', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', '8', 'april', '1', '9', '1', '8', 'the', 'captured', 'icebreaker', 'was', 'renamed', '``', '', \"''\", 'after', 'the', 'legendary', 'finnish', 'hero', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'took', 'over', 'the', 'newly', 'created', 'position', 'of', 'local', 'section', \"'s\", 'chief', 'reporter', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'longer', 'tours', 'and', 'guest', 'performances', 'took', 'her', 'to', '', ',', 'vienna', ',', 'saint', 'petersburg', 'and', 'moscow', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', ',', 'however', ',', 'a', 'member', 'of', 'the', 'geelong', '', 'team', 'which', 'won', 'the', '2', '0', '0', '2', 'victorian', 'football', 'league', '(', '', ')', 'premiership', 'and', 'was', 'awarded', 'the', 'norm', '', 'memorial', 'medal', 'for', 'his', 'efforts', 'in', 'the', 'grand', 'final', '.', '', '', '', '', '', '', '', '']\n", "['', 'this', '', 'with', 'the', 'period', 'when', 'the', '', 'were', '', 'the', '', 'muslims', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'federal', 'reserve', 'added', '$', '1', '0', '0', 'billion', 'in', 'liquidity', 'per', 'day', ',', 'during', 'the', 'three', 'days', 'following', 'the', 'attack', ',', 'to', 'help', '', 'a', 'financial', 'crisis', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'most', '', 'now', 'being', 'held', 'at', '', 'park', 'cemetery', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'also', 'known', 'as', '``', 'n', \"''\", '', 'and', '', ',', 'is', 'the', 'major', 'active', '', 'of', 'the', '', '', '(', '', ')', '', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'quickly', 'impressed', 'and', '', 'through', 'the', 'academy', 'and', 'youth', 'teams', ',', 'being', 'selected', 'as', 'captain', 'for', 'several', 'age', 'groups', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', '', 'image', 'showed', 'a', '', 'change', 'of', 'image', 'from', 'the', 'singer', 'as', 'she', 'tries', '', 'hair', 'for', 'the', 'first', 'time', 'and', 'a', 'more', 'mature', 'concept', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'spaces', 'of', '', 'or', 'functions', 'are', '', '', 'spaces', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'missing', 'scenes', 'were', 'later', 'recovered', 'along', 'with', 'the', 'other', 'copy', 'of', 'episode', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'recent', 'years', 'the', '', 'of', '', \"'s\", 'importance', 'has', '', 'to', 'that', 'given', 'to', 'him', 'by', '', 'and', 'others', 'during', 'his', 'lifetime', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'initially', 'independent', '', '&', 'amp', ';', '', 'railway', 'company', 'was', 'worked', 'by', 'the', 'county', '', 'railways', '(', 'joint', 'committee', ')', 'during', 'its', 'short', 'life', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'a', 'later', 'storyline', '', ',', 'like', 'superman', ',', 'loses', 'his', '', 'and', '', 'a', 'new', 'world', 'which', 'he', 'is', '', 'to', 'protect', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'video', 'series', 'to', 'teach', 'children', 'basic', 'american', 'sign', 'language', '(', '', ')', ',', 'which', 'was', 'broadcast', 'on', 'public', 'television', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'sites', 'included', 'salt', 'mines', 'at', '', ',', '', ',', 'and', 'a', '', 'mine', 'at', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'coal', '', 'in', '', 'has', 'resulted', 'in', '', 'occurring', 'in', 'and', 'around', '', ',', 'such', 'as', '(', '', 'flash', 'country', 'park', ')', 'which', 'now', 'covers', 'over', 'with', 'the', 'park', 'being', 'over', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '', '(', ';', 'born', 'april', '2', '6', ',', '1', '9', '5', '4', ')', ',', 'is', 'a', 'soviet', 'and', 'russian', 'journalist', ',', '', ',', 'news', 'executive', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '4', ',', '', 'was', 'inducted', 'into', 'the', 'international', 'maritime', 'hall', 'of', 'fame', 'at', 'the', 'united', 'nations', 'in', 'recognition', 'of', 'his', '', 'service', 'and', '', 'to', 'the', 'international', 'maritime', 'trading', 'industry', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'chase', '', 'was', 'born', 'on', '1', 'april', '1', '9', '9', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'feels', 'committed', 'to', 'fight', 'against', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', ',', '', 'known', 'as', '', 'pounds', 'is', 'a', '', 'singer-songwriter', 'and', 'performer', 'of', 'the', 'electronic', 'dance', 'and', '', 'music', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'located', 'against', 'the', 'western', 'walls', 'were', 'the', '', ',', 'or', '', \"'\", '', ',', 'which', 'housed', 'up', 'to', '7', '0', '', 'who', 'served', 'the', 'castle', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'already', 'unable', 'to', '', 'herself', 'for', 'her', 'role', 'in', 'the', '', 'assassination', 'attempt', 'on', 'kill', 'ana', 'and', '', ',', 'her', 'relationship', 'with', 'salvador', '', 'as', 'she', '', 'salvador', 'for', 'their', 'son', \"'s\", 'murder', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'st', 'lawrence', \"'s\", 'church', 'is', 'a', 'romanesque', 'church', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', '', 'he', '', 'with', 'model', '', ',', 'becoming', 'a', 'member', 'of', 'the', 'junior', 'division', 'of', 'the', 'chicago', 'rocket', 'society', 'and', 'various', 'science', 'clubs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'worked', 'as', 'a', '', 'and', '', 'at', 'the', '', 'national', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'back', 'in', 'sweden', ',', '', 'was', 'promoted', 'and', 'continued', 'doing', 'both', 'practical', 'construction', 'works', 'for', 'the', 'military', 'and', 'other', 'architectural', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'writers', 'had', 'intended', 'to', 'name', 'the', 'character', 'as', 'early', 'as', 'his', 'first', 'episode', ',', 'but', 'they', 'could', 'not', 'think', 'of', 'a', 'name', 'for', 'him', ',', 'and', 'they', 'called', 'him', '``', 'comic', 'book', 'guy', \"''\", ',', 'with', 'the', 'intention', 'of', 'naming', 'the', 'character', 'the', 'next', 'time', 'they', 'used', 'him', '.']\n", "['', '', '', 'and', '', '', 'were', 'retained', 'as', 'the', '', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'governing', 'marriage', 'are', 'drafted', 'by', 'the', 'state', ',', 'and', 'not', 'by', 'the', 'couples', 'who', 'marry', 'under', 'those', 'laws', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', '1', '9', '9', '5', ',', 'films', 'such', 'as', '``', 'toy', 'story', \"''\", '', 'the', 'fact', 'that', 'the', 'distinction', 'between', '', 'films', 'and', 'animated', 'films', 'was', 'no', 'longer', 'clear', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '7', ',', 'the', 'gang', 'was', 'believed', 'to', 'be', 'composed', 'of', 'approximately', '5', '0', 'men', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'building', 'boom', 'in', 'the', '1', '8', '8', '0', 's', ',', 'nearly', 'half', 'of', 'the', '3', ',', '0', '0', '0', 'homes', 'built', 'in', '', 'were', '', ',', 'with', 'many', 'of', 'these', 'homes', 'initially', 'owned', 'by', 'a', '', 'number', 'of', 'speculative', 'developer', '.', '', '', '', '', '', '', '']\n", "['', 'the', 'structure', \"'s\", '', '', 'was', 'broken', 'by', 'an', 'engaged', 'central', 'section', 'at', 'the', 'main', 'entrance', 'and', 'two', 'other', 'similar', '', 'at', 'the', 'end', 'portions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'harvard', 'graduate', 'school', 'of', 'design', '(', '', ')', 'offers', 'a', 'course', 'entitled', 'interdisciplinary', 'design', 'in', 'practice', 'led', 'by', 'instructor', '', 'kara', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'material', 'science', 'and', 'solid', '', ',', '', 'materials', 'have', 'material', 'properties', 'at', 'a', 'particular', 'point', ',', 'which', '', 'along', 'three', '', '', ',', 'where', 'each', '', 'has', '', 'rotational', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rock', 'of', 'the', 'arts', 'said', 'of', 'their', 'festival', 'appearance', ',', '``', '(', '...', ')', '', 'and', '', 'really', 'exhibit', 'the', 'independent', '', 'that', '', '', 'holds', 'so', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'mother', 'died', 'a', 'few', 'years', 'later', ',', 'at', 'which', 'point', 'page', 'moved', 'to', 'boston', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'triple', '', '1', '3', '.', '6', '5', 'm', 'in', '2', '0', '0', '8', ',', 'but', 'did', 'not', 'improve', 'upon', 'this', 'performance', 'for', 'three', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', '', 'stephen', 'h.', 'savage', 'of', 'arizona', 'state', 'university', 'provides', 'the', 'following', '', 'for', 'the', '', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'mexico', 'it', 'turns', 'out', 'that', '', 'has', 'a', 'lover', 'there', 'whom', 'she', 'is', 'going', 'to', 'marry', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'pentagon', 'has', 'the', 'words', '', 'variation', 'g', '', 'on', 'it', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'parish', 'priest', 'is', '', 'michael', '', ',', 'who', 'was', '', 'and', 'inducted', 'as', '', 'of', 'the', 'parish', 'in', 'september', '2', '0', '1', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'are', 'a', 'product', 'of', 'the', 'women', 'who', 'created', 'them', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'moore', 'described', 'a', 'number', 'of', 'new', 'species', 'through', 'this', 'publication', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'is', 'made', 'in', '', ',', 'with', 'a', 'height', 'of', '2', '9', '.', '2', 'cm', ',', 'and', 'a', 'diameter', 'of', '1', '6', 'cm', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'the', '1', '9', '9', '4', 'enhanced', 'version', ',', 'the', 'character', 'artwork', 'and', '', 'and', 'backgrounds', 'were', 'done', 'by', 'fred', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'built', 'by', 'a', 'merchant', 'and', 'is', 'decorated', 'with', 'figures', 'from', 'the', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'lost', 'to', 'incumbent', 'republican', '', 'rogers', 'by', 'a', '1', '0', ',', '0', '7', '2', 'to', '7', ',', '2', '0', '0', 'margin', ',', '5', '8', '%', 'to', '4', '2', '%', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'daughter', 'nancy', 'is', 'currently', 'the', 'mayor', 'of', 'greensboro', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'virginia', 'then', 'began', 'to', 'move', 'northwest', 'and', '', 'to', 'a', 'category', '4', 'typhoon', 'as', 'it', 'passed', 'east', 'of', '', 'on', 'june', '2', '3', 'and', 'june', '2', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'per', 'capita', 'income', 'for', 'the', 'town', 'was', '$', '1', '3', ',', '0', '7', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', '', 'is', 'searching', 'for', 'mr.', '', ',', 'there', 'is', 'also', 'a', 'line', 'of', 'people', 'visible', 'in', 'the', 'background', '', 'for', 'food', ',', '', 'the', 'lack', 'of', 'food', 'security', 'in', 'the', '1', '9', '8', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'collaboration', 'with', 'margaret', '', ',', 'then', 'at', 'brown', 'university', ',', 'and', '', '', ',', 'then', 'at', 'the', 'carnegie', 'institution', ')', ',', 'he', 'carried', 'out', 'the', 'molecular', '', 'of', 'the', 'p', 'element', '', 'in', '', '(', '', ',', 'et', '', ',', '1', '9', '8', '2', ')', '.', '', '', '']\n", "['', '', '', 'is', 'a', 'species', 'of', '', '', '', 'first', 'found', 'in', 'taiwan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', ',', 'his', 'brother', '', ',', 'and', '', '', 'arrived', 'together', 'at', 'logan', 'airport', 'at', '0', '6', ':', '4', '5', 'on', 'september', '1', '1', ',', '2', '0', '0', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '8', '0', '%', 'of', '', \"'s\", 'population', 'was', 'of', 'japanese', 'origins', 'as', 'of', 'the', '1', '9', '3', '0', 'u.s.', 'census', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'died', 'on', '2', '2', 'july', '1', '2', '8', '0', 'at', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'food', '&', 'amp', ';', 'water', '', 'was', 'the', 'first', 'u.s.', 'national', 'organization', 'to', 'call', 'for', 'a', 'ban', 'on', '', 'and', 'helped', 'achieve', '', 'in', 'new', 'york', '(', '2', '0', '1', '4', ')', 'and', 'maryland', '(', '2', '0', '1', '7', ')', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'artist', \"'s\", 'print', 'studio', 'can', 'be', 'found', 'at', '', '', ',', 'the', 'indigenous', 'art', 'centre', 'located', 'at', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'have', 'been', 'a', 'number', 'of', 'different', '', 'on', 'this', 'issue', ',', 'each', 'offering', 'a', 'number', 'of', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'french', '', 'and', '', 'known', 'for', '', 'in', 'early', '', 'and', '', 'music', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'his', 'home', 'race', ',', 'a', '1', 'team', 'australia', 'renamed', 'its', 'cars', 'as', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'white', '', '', 'is', 'also', 'worn', 'by', 'the', 'officers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'microsoft', 'offers', 'support', 'for', 'quick', '', 'in', 'windows', '(', 'in', 'windows', '', 'and', 'later', ')', 'based', 'on', 'supporting', 'driver', 'software', 'from', '', 'and', 'support', 'through', 'both', '', 'as', 'well', 'as', '', '(', 'windows', 'media', 'foundation', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'once', 'the', 'player', '', 'a', 'mission', ',', 'they', 'are', 'given', 'a', 'four', 'letter', '', ',', 'so', 'that', 'they', 'can', 'return', 'to', 'the', 'same', 'mission', 'during', 'subsequent', 'plays', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', 'been', 'arrested', 'and', '', 'on', 'two', 'occasions', 'for', 'his', 'political', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', '2', '0', '0', '3', ',', 'only', 'four', 'people', 'remained', 'of', 'this', '', 'family', ',', 'with', 'two', 'of', 'them', 'being', '', '', 'speakers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'second', 'storyline', '``', 'the', 'word', 'of', '', \"''\", 'deals', 'with', 'the', '``', '', \"''\", 'crew', '', 'a', 'union', 'ship', '', 'into', '', 'space', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'described', 'the', 'doctor', 'in', 'question', 'as', 'a', '``', 'very', 'senior', 'and', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'additionally', ',', 'as', 'has', 'been', 'observed', 'in', '', '', ',', 'they', 'exhibit', 'a', 'strong', '', 'for', '', 'leaves', ',', 'which', 'tend', 'to', 'be', 'easier', 'to', '', ',', 'tend', 'to', 'be', 'higher', 'in', 'energy', 'and', 'protein', ',', 'and', 'lower', 'in', '', 'and', '', 'than', 'more', 'mature', '', 'leaves', '.', '', '']\n", "['', 'black', 'is', 'known', 'to', 'have', 'regularly', 'travelled', 'upon', 'the', 'road', 'where', '', \"'s\", 'body', 'was', 'found', 'when', 'making', '', 'in', 'northern', 'france', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'winston', '', '(', 'born', '2', '8', 'february', '1', '9', '4', '8', ')', 'was', 'a', 'south', 'african', '', 'who', 'played', 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'operation', 'to', '', '', 'la', 'was', '', 'in', 'that', '', \"'s\", '', 'were', 'unclear', 'and', 'it', 'got', '', 'very', 'slowly', 'because', 'of', 'this', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'george', 'w.', 'bush', 'signed', 'the', 'act', 'into', 'law', 'on', '1', '3', 'october', ',', 'and', '', 'suspended', 'offerings', 'of', '', 'games', 'to', 'u.s.', 'players', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'many', 'lakes', ',', '', ',', 'and', '', 'rivers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'twin', 'brother', ',', 'joshua', '', ',', 'formerly', 'played', 'in', 'the', 'toronto', 'blue', '', 'organization', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'only', 'species', ',', '', '', ',', 'was', 'first', 'described', 'by', '', 'in', '1', '9', '0', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'besieged', 'were', 'reduced', 'to', 'feeding', 'on', 'cats', 'and', 'dogs', ',', 'but', 'in', 'june', '1', '6', '3', '6', 'william', ',', '', 'of', '', ',', '', 'by', 'the', '', 'under', 'sir', 'alexander', 'leslie', ',', 'raised', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'the', 'time', 'when', 'a.', 'r.', 'rahman', 'decided', 'to', 'do', 'music', 'on', 'his', 'own', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', '6', 'october', 'he', 'was', 'a', 'member', 'of', 'the', 'british', 'rugby', 'union', 'team', '(', 'represented', 'by', 'cornwall', ')', 'which', 'won', 'the', 'silver', 'medal', 'losing', 'against', 'australia', 'in', 'the', 'final', ',', 'the', 'game', 'was', 'played', 'at', 'white', 'city', 'stadium', 'as', '', 'was', 'still', 'being', 'built', 'at', 'the', 'time', '.', '']\n", "['', 'she', 'was', 'regularly', 'featured', 'at', 'the', '', 'gallery', 'in', 'portland', ',', 'oregon', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'interior', 'architecture', 'of', 'terminal', '3', 'recently', 'won', 'the', 'honour', 'award', 'from', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'each', 'division', \"'s\", 'representatives', 'have', 'a', '', 'conference', 'where', 'it', 'decides', 'its', 'policy', 'regarding', 'that', 'division', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', ',', 'a', 'religious', 'building', 'constructed', 'in', 'the', 'memory', 'of', '', 'abdul', '', '', ',', '', 'people', 'who', 'perform', 'various', '', 'on', 'the', 'occasion', 'of', '', '', '(', '', ')', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'most', 'of', 'the', 'book', 'consists', 'of', 'his', '', 'of', 'people', ',', 'both', 'leaders', 'and', 'ordinary', 'people', ',', 'he', 'thinks', 'have', 'shown', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '[', '[', '', 'national', '', 'festival', ']', ']', ',', '[', '[', '', ']', ']', ',', '(', ')', ',', 'has', 'been', 'held', 'every', 'five', 'years', 'in', 'the', 'month', 'of', 'october', ',', 'starting', 'from', '1', '9', '6', '8', 'and', 'it', 'has', 'typically', 'included', 'many', '', 'songs', '.', '', '', '', '']\n", "['', 'fighting', 'ended', 'as', '', '', 'ali', '', ',', 'the', 'amir', '(', 'leader', ')', 'of', '', 'gave', 'government', 'forces', 'an', '', 'of', '5', 'days', '(', 'until', '1', '0', 'june', ')', 'to', 'hand', 'over', 'their', 'weapons', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'hits', 'is', 'a', 'weekly', '', 'dance', 'event', 'held', '', 'in', 'the', 'neighborhood', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'included', 'attempting', 'to', 'develop', 'improved', 'means', 'of', 'producing', 'coffee', 'beans', ',', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'islands', 'or', '', 'islands', '(', ')', ',', 'also', 'known', 'as', '', 'islands', '(', ')', 'are', 'a', 'greek', 'island', 'group', 'in', 'the', '', 'sea', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', ',', 'a', 'grant', 'of', 'arms', 'from', 'the', 'lord', 'lyon', 'is', 'a', 'patent', 'of', '', '(', 'also', 'referred', 'to', 'a', '', 'of', '', \"'\", ')', ';', 'the', '', 'is', 'thereby', '', 'with', 'all', '', 'in', 'the', '', 'of', 'scotland', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'different', 'organisms', 'evolved', 'different', '', 'to', 'produce', 'structural', '', ':', '', '', 'in', 'some', 'insects', 'and', 'plants', ',', '', 'like', 'surface', 'in', 'plants', ',', '', 'organised', 'cells', 'in', 'bacteria', '...', 'all', 'of', 'theme', 'stand', 'for', 'a', 'source', 'of', 'inspiration', 'towards', 'the', 'development', 'of', '', 'coloured', 'materials', '.', '', '', '']\n", "['', 'the', '2', '0', '1', '1', 'season', 'saw', 'her', 'set', 'a', 'long', 'jump', 'best', 'of', '6', '.', '3', '8', 'm', 'and', 'clear', 'fourteen', 'metres', 'in', 'the', 'triple', 'jump', 'both', '', 'and', 'out', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'cardiff', 'received', 'a', 'golden', 'globe', 'award', 'for', 'best', 'director', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'nfl', \"'s\", '1', '0', 'teams', 'played', '1', '1', 'games', ',', 'its', 'standard', 'since', '1', '9', '3', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'with', 'a', '', 'may', 'be', 'necessary', 'to', 'fully', 'address', 'these', 'topics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'patent', 'on', '', '', 'on', '2', '9', 'december', '2', '0', '0', '3', ',', 'opening', 'the', 'market', 'for', '', '', 'versions', 'from', 'other', 'companies', ',', 'and', '', \"'s\", 'exclusive', 'marketing', 'rights', '', 'on', '2', '9', 'june', '2', '0', '0', '4', '(', 'the', 'result', 'of', 'a', '', 'extension', ')', '.']\n", "['', 'during', 'november', ',', 'the', 'second', 'most', 'intense', '', 'of', 'rocket', 'attacks', 'from', '', 'into', 'southern', 'israel', 'took', 'place', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', 'he', 'assisted', 'in', 'carrying', 'an', 'injured', 'medical', 'officer', 'to', 'the', 'battle', '', 'station', '', 'where', 'he', '', 'from', 'loss', 'of', 'blood', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'task', 'was', 'easily', '', 'by', '', 'on', 'august', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'october', '1', '9', '0', '0', 'the', 'company', 'controlled', 'a', 'range', 'of', 'assets', 'including', '5', '0', '0', 'acres', 'of', 'mining', '', ',', '3', '2', '0', 'acres', 'of', '', ',', 'tramway', '', ',', 'water', 'rights', 'and', 'battery', 'sites', 'at', '', 'creek', 'and', 'rocky', 'bluff', '.', '', '', '', '', '', '']\n", "['', 'his', 'son', 'and', '', 'both', 'lived', 'from', 'time', 'to', 'time', 'in', 'their', 'city', '', 'that', 'is', 'now', 'part', 'of', 'the', 'temple', 'bar', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'name', 'was', 'struck', 'from', 'the', 'u.s.', 'navy', 'list', 'on', '1', '4', 'may', '1', '9', '5', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'elmo', 'became', ',', 'as', 'writer', 'michael', 'davis', 'reported', ',', '``', 'the', '', \"''\", 'of', '``', '', 'street', \"''\", ',', 'and', '``', 'the', 'marketing', '', 'of', 'our', 'age', \"''\", 'when', 'five', 'million', '``', '', 'me', 'elmo', \"''\", '', 'were', 'sold', 'in', '1', '9', '9', '6', '.', '', '', '', '', '']\n", "['', '', 'participated', 'in', 'the', 'warsaw', '', 'as', 'lieutenant', 'of', 'the', 'polish', 'armed', 'forces', 'and', 'was', 'awarded', 'poland', \"'s\", 'highest', 'military', '', 'for', '', ',', 'the', '', '', ',', 'on', '5', 'august', '1', '9', '4', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ji', 'served', 'as', 'the', 'junction', 'for', 'the', 'roads', 'connecting', 'the', 'central', 'plain', 'with', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'added', 'to', 'the', 'national', 'register', 'of', 'historic', 'places', 'on', 'september', '1', '8', ',', '1', '9', '8', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'receiving', 'his', 'high', 'school', 'diploma', 'he', 'went', 'on', 'to', 'study', 'economics', 'at', 'the', 'university', 'of', '', 'before', '', 'himself', 'full-time', 'to', 'the', 'automobile', 'world', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'confederation', 'of', 'public', 'employees', \"'\", 'trade', '', '(', ',', '', ')', 'is', 'one', 'of', 'the', 'four', 'major', 'national', 'trade', 'union', 'centers', 'in', 'turkey', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', '', 'as', 'saying', 'that', 'he', 'had', 'decided', 'to', 'move', 'on', 'to', 'a', 'different', 'phase', 'of', 'his', 'life', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'the', 'romantic', \"''\", 'was', 'nominated', 'for', 'the', 'man', 'booker', 'prize', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'units', 'operating', 'in', 'oslo', 'and', '', 'had', 'problems', 'with', 'the', '', 'brake', 'operating', '', 'depending', 'on', 'the', 'direction', 'the', 'train', 'was', 'running', ',', 'something', 'which', 'was', 'not', 'observed', 'in', 'flåm', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'npf', 'used', 'to', 'have', 'a', 'presence', 'in', 'the', 'greater', 'toronto', 'area', '(', '', ')', 'as', 'well', ',', 'although', 'chettleburgh', 'has', 'stated', 'that', 'npf', 'is', 'no', 'longer', 'very', 'active', 'there', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', '', ',', 'or', '', ',', 'site', 'is', 'a', '', '', 'site', 'which', 'has', 'no', 'database', 'of', 'users', 'or', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', ',', 'also', 'romanized', 'as', '', '', ';', 'also', 'known', 'as', '', '', ')', 'is', 'a', 'village', 'in', '', 'rural', 'district', ',', '', 'district', ',', '', 'county', ',', '', 'and', '', 'province', ',', 'iran', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'sullivan', \"'s\", 'family', 'did', 'not', 'report', 'him', 'missing', 'for', 'more', 'than', '1', '0', 'days', ',', 'and', 'his', 'body', 'was', 'brought', ',', 'and', 'held', ',', 'at', 'the', 'local', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'brown', '', '(', '``', '', '', \"''\", ')', ',', 'also', 'called', '', ',', 'is', 'a', 'species', 'of', '', 'found', 'in', '', ',', '', ',', 'western', 'and', 'southern', 'zimbabwe', ',', 'southern', '', 'and', 'south', 'africa', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'a', '', 'of', 'the', 'indigenous', 'media', 'arts', 'group', '(', 'imag', ')', ',', 'and', 'the', 'director', 'from', 'foundation', 'until', '2', '0', '0', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'meanwhile', ',', 'paulus', 'had', 'established', 'his', 'brother', ',', '', 'in', 'a', 'printing', 'office', 'and', 'book', 'shop', 'at', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'gary', '', 'put', '``', 'the', '', \"''\", 'ahead', 'on', 'ten', 'minutes', ',', 'but', 'a', 'double', 'from', 'marcus', '', 'before', 'the', 'end', 'of', 'the', 'first', 'half', 'gave', 'the', 'hosts', 'the', 'three', 'points', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'to', 'improve', 'the', 'situation', ',', 'in', 'july', '1', '9', '8', '6', 'officials', 'from', 'the', 'state', 'education', 'commission', ',', 'state', 'planning', 'commission', ',', 'and', 'ministry', 'of', 'labor', 'and', 'personnel', '', 'a', 'national', 'conference', 'on', 'developing', 'china', \"'s\", 'technical', 'and', 'vocational', 'education', '.', '', '', '', '', '', '', '', '', '']\n", "['', '', 'moved', 'to', 'los', 'angeles', ',', 'where', 'he', 'studied', 'acting', 'at', 'the', 'beverly', 'hills', '', ',', 'and', 'then', 'to', 'austin', ',', 'texas', ',', 'where', 'he', 'wrote', ',', 'directed', ',', 'produced', 'and', 'edited', 'the', '2', '0', '1', '1', 'indie', 'comedy', 'film', '``', 'campus', 'radio', \"''\", '.', '', '', '', '', '']\n", "['', '', 'heights', ',', 'california', 'is', 'named', 'in', 'his', 'honor', ',', 'as', 'is', '', 'drive', ',', 'a', 'main', '', 'road', 'running', 'through', '', 'valley', 'near', 'his', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"''\", ')', 'was', 'a', 'reserve', 'infantry', 'division', 'of', 'the', 'imperial', 'german', 'army', 'in', 'world', 'war', 'i', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'test', 'runs', ',', 'it', 'has', 'achieved', 'a', 'speed', 'of', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'construction', 'of', '', 'county', 'high', 'school', 'cost', '$', '6', '4', 'million', 'in', '2', '0', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', '', '', '', \"'s\", 'classic', 'album', ',', '``', '', '', '', 'de', '', \"''\", ',', 'for', 'a', 'show', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'born', 'in', 'naples', ',', '', 'to', 'a', 'german', 'family', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'also', 'marked', 'the', '3', '3', 'rd', 'launch', 'of', 'the', 'a', '2', '1', '0', '0', 'platform', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'responded', 'in', 'a', 'paper', 'in', 'late', '2', '0', '1', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', '1', '9', '8', '8', 'american', 'experimental', 'anthology', 'musical', 'film', 'starring', 'michael', 'jackson', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'palace', '(', ')', 'is', 'a', 'baroque', 'residence', '(', '``', '', \"''\", ')', 'in', 'the', 'borough', 'of', '', 'in', 'the', 'city', 'of', '', ',', '', ',', 'germany', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', '2', '0', '0', '6', 'south', 'american', 'transfer', '', ',', '', \"'s\", 'name', 'was', 'also', '', 'with', 'a', 'move', 'to', 'milan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'two', 'sons', 'of', 'anthony', '', ',', 'the', '', ',', 'were', 'admitted', 'to', 'st', '', \"'s\", 'in', '1', '8', '5', '8', ',', 'but', 'were', '', 'the', 'following', 'year', 'after', 'john', '', 'had', 'sent', 'one', 'of', 'them', 'home', 'in', '', ',', 'accused', 'of', 'a', 'serious', '', '.', '', '', '', '']\n", "['', '', 'has', 'led', 'the', 'global', '', 'industry', 'in', '', '``', '', \"''\", ',', 'more', '', 'friendly', 'designs', 'and', 'technology', 'into', 'his', 'company', \"'s\", 'fleet', 'of', 'new', 'vessels', ',', 'some', 'of', 'the', 'world', \"'s\", 'largest', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'a', 'member', 'of', 'the', '8', 'th', 'and', '1', '0', 'th', '', 'sabha', 'beside', 'the', '', 'sabha', 'and', 'the', 'karnataka', 'legislative', 'assembly', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', '1', '9', '8', '6', ',', 'this', 'had', 'increased', 'to', 'around', '3', '5', '-', '4', '0', '', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'southern', 'end', 'of', 'i-', '2', '8', '0', 'is', 'an', 'interchange', 'in', 'wood', 'county', 'with', 'exit', '7', '1', 'along', 'the', 'ohio', '', ',', 'which', 'carries', 'interstate', '8', '0', 'and', 'interstate', '9', '0', 'at', 'this', 'point', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'march', '2', '0', '1', '4', ',', 'barry', 'reached', 'the', 'final', 'of', 'the', 'great', 'britain', 'f', '8', 'futures', ',', 'however', 'he', 'finished', 'runner-up', 'to', 'marcus', 'willis', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'brought', 'a', 'renewed', '', 'for', 'religious', '', ',', 'especially', 'for', 'the', 'passion', 'of', 'christ', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'another', 'former', 'bush', '', ',', '', 'and', 'policy', 'advisor', 'michael', '', ',', 'agreed', 'that', '', 'the', 'center', 'would', '``', '', 'the', 'war', 'on', '', \"''\", ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'high', 'school', 'served', '', 'until', '1', '9', '7', '0', 'as', 'a', '', 'school', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'writing', 'style', 'began', 'to', 'change', '', 'with', 'his', 'appointment', 'as', 'chair', 'of', 'composition', 'and', 'theory', 'at', 'the', 'university', 'of', '', 'school', 'of', 'music', '(', '2', '0', '0', '0', '-', '2', '0', '1', '4', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', '', 'and', 'the', 'development', 'of', 'an', 'early', '', ',', 'a', 'stage', 'of', '', '', 'takes', 'place', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'church', 'was', 'closed', 'in', '2', '0', '1', '2', 'due', 'to', 'concerns', 'over', 'the', 'structure', ',', 'and', 'the', 'danger', 'of', 'falling', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'the', '1', '9', '2', '0', 's', 'revolution', 'was', '', 'by', '', ',', 'rao', 'went', 'abroad', 'for', 'study', 'in', 'england', ',', 'france', 'and', 'the', 'soviet', 'union', 'for', 'approximately', 'a', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rivera', 'died', 'on', 'december', '9', ',', '2', '0', '1', '2', ',', 'when', 'her', 'private', 'plane', 'crashed', ',', 'before', 'the', 'divorce', 'was', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'not', 'very', '', ',', 'but', 'she', 'is', 'a', '', '', 'and', '', 'drug', 'user', '(', 'e.g.', ',', 'finding', 'a', '', ',', 'creating', '', 'from', 'household', 'cleaners', ',', 'etc', '.', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'improve', '', ',', 'decrease', 'mortality', 'and', 'reduce', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', '2', '0', '1', '9', ',', 'edinburgh', 'had', 'the', '8', 'th', 'highest', 'average', 'entry', 'qualification', 'for', '', 'among', 'uk', 'universities', ',', 'with', 'new', 'students', '', '1', '8', '9', '', 'points', ',', 'equivalent', 'to', 'just', 'above', '', 'in', '', 'grades', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'brown', 'later', 'said', 'it', 'gave', '', 'an', 'edge', 'on', 'other', '``', '', \"''\", '', '``', 'who', 'had', 'no', '', 'technique', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'college', 'of', 'social', 'sciences', 'consists', 'of', 'eight', 'departments', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'typically', ',', 'rigid', 'lines', 'are', 'connected', 'using', '', '', '', '', 'whose', 'bullet', 'and', '', 'sizes', 'match', 'the', 'standard', 'line', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '``', 'for', 'god', 'and', 'the', 'empire', \"''\", 'was', '', 'round', 'the', 'upper', 'side', ',', 'and', '``', 'for', '', \"''\", 'in', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'three', 'years', 'later', ',', '', 'h.', 'and', 'e.', '', 'adam', 'donated', '1', '6', '2', 'acres', 'of', 'adjacent', 'farm', 'land', 'to', '', 'parks', ',', 'and', 'the', '2', '7', '8', '-acre', 'hampton', 'hills', '', 'park', 'was', 'born', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'the', 'most', 'common', '', '', '', ',', 'and', 'is', 'usually', 'found', 'in', 'the', 'elderly', 'where', 'it', 'is', 'considered', 'a', '', 'condition', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'her', '', 'office', ',', '', 'was', 'specifically', '', 'with', '', 'a', 'nationwide', '``', 'job', '', \"''\", 'program', 'to', 'combat', 'long-term', 'unemployment', ',', 'creating', 'at', 'least', '3', '0', '0', ',', '0', '0', '0', 'new', 'jobs', 'for', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'highly', 'praised', 'by', 'all', 'was', '', 'clark', ',', 'whom', '', 'described', 'as', '``', 'a', 'surprise', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'september', '2', ',', '1', '8', '6', '2', ',', 'abbott', \"'s\", 'regiment', 'covered', 'the', 'retreat', 'of', 'the', 'defeated', 'forces', 'of', 'union', 'major', 'general', 'john', 'pope', 'after', 'the', 'second', 'battle', 'of', '', 'or', '', 'run', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', 'born', '5', 'august', '1', '9', '7', '7', 'in', 'le', '', ')', 'is', 'a', 'retired', 'french', 'athlete', 'who', 'specialised', 'in', 'the', '3', '0', '0', '0', 'metres', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'additional', '', '', 'types', 'created', 'for', 'this', 'setting', 'include', 'the', 'snow', '', ',', 'valley', '', ',', 'and', 'wild', '(', '', ')', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'awarded', 'a', 'bronze', 'star', 'medal', 'for', 'his', 'service', 'in', 'iraq', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'joined', 'in', 'fellowship', 'in', '1', '8', '3', '2', 'with', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'finnish', 'universities', 'such', 'as', '', 'university', 'of', 'applied', 'sciences', '(', '', ',', 'finland', ')', 'and', '', 'university', 'of', 'applied', 'sciences', '(', '', ',', 'finland', ')', 'actively', 'participated', 'to', 'the', 'project', 'through', 'material', 'donations', 'and', 'by', '', 'their', 'students', 'work', 'in', '', '.', '', '', '', '', '', '', '', '']\n", "['', 'bruno', 'continues', 'his', 'visits', 'to', '', ',', 'including', 'one', 'that', 'no', 'longer', '', 'films', 'because', 'the', 'owner', '', 'modern', 'films', 'as', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'town', 'is', 'also', 'the', 'home', 'town', 'of', 'fishing', 'personality', 'ross', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', 'march', '2', '0', '1', '8', ',', 'it', 'was', 'on', 'the', 'market', 'for', 'sale', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'listed', 'as', 'a', '', 'de', '', 'cultural', 'in', '2', '0', '1', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'gives', 'the', 'film', 'a', 'score', 'of', '3', '7', '/', '1', '0', '0', '(', 'generally', '', 'reviews', ')', 'based', 'on', '1', '9', 'reviews', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'the', '', 'was', 'only', 'for', '', ',', 'the', 'three', '', 'did', 'not', '', 'any', 'extra', '', 'at', 'the', 'passenger', 'security', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'from', 'there', 'the', 'river', 'became', '', 'and', 'rocky', ',', 'so', 'logan', 'did', 'not', 'explore', 'further', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'entered', 'on', 'a', 'renewed', 'career', ',', 'active', 'in', '', 'and', 'the', 'formation', 'of', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'orchestra', 'for', 'the', 'two', 'sessions', 'was', 'expanded', 'to', '2', '5', 'players', 'and', 'included', '', ',', '', ',', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'raising', 'the', 'pension', '', 'age', 'of', '', 'is', 'a', '', 'issue', ',', 'but', 'a', '', 'majority', 'of', '5', '3', '%', '', 'the', 'fiscal', 'need', 'to', 'raise', 'the', '', 'age', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'played', 'six', 'seasons', 'in', 'the', 'league', 'for', 'the', '', '', ',', 'minnesota', '', 'and', 'pittsburgh', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'region', 'is', 'in', 'northern', 'europe', ',', 'and', 'consists', 'of', 'denmark', ',', 'norway', ',', 'and', 'sweden', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'though', 'never', '', 'for', 'their', 'losses', 'by', 'the', 'colonial', 'government', ',', 'various', 'family', 'members', 'did', 'receive', 'payments', 'from', 'the', 'british', 'government', 'in', 'following', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'park', '', ',', 'the', 'third', 'president', 'of', 'south', 'korea', ',', 'was', '', 'on', 'october', '2', '6', ',', '1', '9', '7', '9', ',', 'during', 'a', '', 'at', 'the', 'korean', 'central', 'intelligence', 'agency', '(', '', ')', '', 'inside', 'the', 'blue', 'house', 'presidential', 'compound', 'in', '', 'district', ',', '', ',', 'south', 'korea', '.']\n", "['', 'when', 'waititi', 'sought', 'a', 'point', 'of', 'order', ',', 'mallard', 'ordered', 'him', 'to', 'leave', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'has', 'published', 'the', 'books', '``', 'beaufort', 'west', \"''\", '(', '2', '0', '0', '8', ')', ',', '``', '', 'shift', \"''\", '(', '2', '0', '1', '2', ')', 'and', ',', 'with', 'patrick', '', ',', '``', '', 'city', \"''\", '(', '2', '0', '1', '4', ')', '.', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', 'to', 'music', 'and', 'discussion', 'programming', ',', '', 'is', 'also', 'the', 'official', 'broadcaster', 'of', 'cornwall', '', '', 'ice', 'hockey', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'august', '2', '0', '1', '8', ',', 'he', 'was', 'one', 'of', '', '', 'to', 'be', 'selected', 'for', 'a', '3', '1', '', '', 'squad', 'for', 'bangladesh', 'ahead', 'of', 'the', '2', '0', '1', '8', 'asia', 'cup', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'formation', 'forms', 'a', 'part', 'of', 'the', '', 'group', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '8', '9', '7', '-', '1', '8', '9', '8', 'van', '', 'was', 'brigade', 'general', 'and', '', 'general', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'later', 'plans', 'by', 'robert', '', 'in', 'the', '1', '9', '5', '0', 's', 'called', 'for', 'spring', 'creek', 'park', 'to', '', 'to', 'cross', 'bay', 'boulevard', 'in', 'howard', 'beach', ',', 'queens', 'and', 'include', 'a', 'new', 'beach', 'and', 'boat', 'basin', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'cluster', 'science', 'archive', 'is', 'the', '', 'long', 'term', 'archive', 'of', 'the', 'cluster', 'and', 'double', 'star', 'science', 'missions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'mother', 'was', 'an', 'ndebele', ',', 'and', 'his', 'father', 'was', 'an', 'ethnic', '', 'who', 'had', 'emigrated', 'from', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'had', 'finished', 'a', '', 'of', 'a', 'book', 'he', 'called', '``', '', '!', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'coach', 'during', 'eight', 'winter', 'olympics', 'and', 'later', 'served', 'as', 'a', 'coordinator', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'probably', 'the', 'most', 'valuable', 'were', 'two', '', '', ',', 'found', 'at', '', ',', 'oklahoma', ',', 'in', '1', '9', '3', '6', 'and', 'at', 'bells', ',', 'texas', ',', 'in', '1', '9', '6', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'live', 'in', '', 'heights', 'and', 'have', 'two', 'daughters', '', 'and', 'margaret', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'commented', ',', '``', 'it', 'looked', 'like', 'that', 'horse', 'was', 'going', 'to', 'go', 'by', 'him', ',', 'but', 'then', 'he', \"'s\", 'such', 'a', 'fighter', ',', 'he', 'just', '', 'in', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'track', 'was', 'well', 'received', 'by', 'audiences', 'and', 'critics', 'with', 'over', 'two', 'million', 'hits', 'on', 'youtube', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'approximately', '1', ',', '5', '0', '0', 'young', 'people', 'attended', 'the', 'summit', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'φ', 'with', 'the', 'first', 'variable', '``', 'x', \"''\", '1', 'replaced', 'by', 'true', ',', 'and', 'simplified', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'noting', 'a', 'skull', 'was', 'still', 'intact', ',', 'he', 'smashed', 'it', 'to', 'pieces', 'with', 'his', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'of', 'le', '', \"'s\", '', 'suggests', 'that', 'he', 'felt', '', 'as', 'well', 'as', 'loss', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'this', 'sitcom', ',', 'fred', 'and', '', 'were', 'owners', 'of', 'a', '', 'store', 'in', 'watts', ',', 'california', ',', 'who', '', 'with', 'many', '', 'situations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'february', '2', '9', ',', '2', '0', '1', '2', ',', 'brown', '', '``', 'i', 'hope', 'this', 'album', 'shows', 'growth', 'and', '', 'to', 'all', 'my', 'fans', 'and', 'will', '', 'them', 'to', 'live', 'life', 'to', 'the', '', '!', '!', '!', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'further', ',', 'there', 'are', 'many', '', '', 'of', '', 'where', 'the', 'exact', 'cause', 'is', 'not', 'very', 'well', 'known', 'but', 'is', 'suspected', 'to', 'be', 'caused', 'by', '', 'factors', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'duncan', \"'s\", 'strong', 'announcement', 'exposed', 'a', '', 'among', 'oregon', 'democrats', ',', 'including', 'oregon', \"'s\", 'senior', 'senator', 'wayne', '', ',', 'a', 'leading', '', 'voice', ',', 'and', 'duncan', \"'s\", 'house', '', ',', '', 'green', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'did', 'a', 'cover', 'shoot', 'for', '``', '', \"''\", 'magazine', 'and', '', 'for', '``', 'high', 'society', \"''\", 'and', '``', 'new', '', \"''\", 'before', 'making', 'the', 'jump', 'into', 'adult', 'films', 'in', '1', '9', '9', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'location', 'became', 'the', 'first', 'marshall', \"'s\", 'department', 'store', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '5', ',', '', 'missed', 'time', 'from', 'may', '2', '0', 'through', 'august', '2', 'with', 'a', 'right', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'two', 'are', 'elected', 'in', 'the', 'year', 'after', 'the', 'presidential', 'election', 'and', 'one', 'is', 'elected', 'in', 'the', 'year', 'before', 'it', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'os', 'x', 'port', 'was', 'later', 'released', 'on', '1', '7', 'december', '2', '0', '1', '2', 'through', 'steam', 'and', 'on', '1', '8', 'december', '2', '0', '1', '2', 'through', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '5', '2', '%', '', '', 'showed', '', 'involvement', ',', 'with', 'a', '', 'to', '', 'region', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'heights', 'is', 'located', 'within', 'the', 'federal', 'division', 'of', '', ',', 'the', 'state', 'electoral', 'district', 'of', '', 'and', 'the', 'local', 'government', 'area', 'of', 'city', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'critical', 'response', 'to', 'devi', 'has', 'generally', 'been', 'positive', ',', 'especially', 'towards', 'the', 'artwork', ',', 'which', 'has', '', 'almost', '', 'praise', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'statement', 'was', 'accepted', 'by', 'commanders', 'of', 'these', 'areas', 'during', 'a', 'conference', 'at', '', 'near', '', 'a', 'month', 'later', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'power', 'output', 'was', 'expected', 'to', 'increase', 'to', 'between', '8', '0', '0', 'and', '9', '0', '0', '', '(', 'hp', ')', ',', 'and', 'with', '', 'to', '1', '1', '0', '0', 'to', '1', '2', '0', '0', 'hp', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'issue', 'of', 'the', 'series', 'was', 'published', 'in', 'march', '2', '0', '1', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'instrumental', 'in', 'founding', 'the', 'joint', 'commission', 'on', 'rural', 'reconstruction', 'in', '1', '9', '4', '8', ',', 'which', 'then', 'moved', 'to', 'taiwan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'the', 'leading', 'lady', 'of', 'the', 'company', 'with', '', '', '', ',', 'but', 'their', '', 'resulted', 'in', 'her', 'being', 'replaced', 'by', 'maria', '', 'in', '1', '6', '1', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'other', 'hand', ',', 'it', 'was', '', 'for', 'a', 'medium', 'tank', '(', 'because', 'it', 'used', 'the', 'same', 'engine', 'that', 'powered', 'the', 'm', '4', 'a', '3', ',', 'which', 'was', 'some', 'ten', 'tons', '', ')', 'and', 'its', 'transmission', 'was', 'somewhat', '', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'community', 'changed', 'from', 'being', 'an', '', 'town', 'to', 'an', 'urban', 'area', 'in', 'the', 'early', '2', '0', 'th', 'century', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'road', 'continues', 'over', 'the', '', 'to', '', 'and', 'a', '', 'branch', 'runs', 'to', 'the', 'dam', 'of', '', 'reservoir', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bruce', '', ',', 'game', 'director', 'on', 'the', 'original', 'game', ',', 'left', '', 'dog', 'in', '2', '0', '1', '7', ';', '', 'felt', 'that', 'the', '', 'on', '``', 'part', 'ii', \"''\", ',', 'the', 'first', 'game', 'he', '', 'without', '', ',', 'was', 'different', 'as', 'a', 'result', '.', '', '', '', '', '', '']\n", "['', 'on', '5', 'october', '2', '0', '1', '2', ',', '', 'signed', 'on', 'a', 'free', 'transfer', 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'that', 'there', 'is', 'no', 'record', 'of', 'diego', 'and', 'in', 'march', '9', '7', '5', 'his', 'see', 'was', 'occupied', 'by', 'his', 'successor', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'made', 'an', '', 'in', '1', '9', '2', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'the', 'end', 'of', 'the', 'decade', ',', '``', '', \"''\", 'had', 'already', 'won', 'several', 'new', 'england', 'emmy', 'awards', 'and', '', 'other', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'the', 'younger', 'brother', 'of', '', '', 'formula', 'one', 'driver', 'charles', '', ',', 'and', 'a', 'member', 'of', '', 'driver', 'academy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'post', 'includes', 'a', 'full', 'track', '', 'and', 'says', 'that', 'the', 'title', 'is', 'taken', 'from', 'a', 'painting', 'by', 'ryan', '', 'who', 'agreed', 'to', 'let', 'the', 'band', 'use', 'the', 'image', 'for', 'the', 'album', 'cover', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'not', 'in', 'the', 'lineup', 'for', 'the', 'second', 'game', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', '', 'the', 'bank', 'of', 'montreal', \"'s\", 'headquarters', ',', 'first', 'canadian', 'place', 'over', 'a', 'building', 'in', 'poor', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'items', 'could', 'also', 'be', 'purchased', 'through', 'the', 'retail', 'store', '(', 'an', 'important', 'revenue', '', 'for', 'government', 'settlements', ')', ',', 'where', 'inmates', 'used', 'their', 'own', 'money', 'to', 'buy', 'additional', 'food', 'and', 'domestic', 'items', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'remained', 'with', 'rai', 'until', '2', '0', '0', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'dynasty', 'later', 'lost', 'power', 'to', 'the', 'persian', 'colonizers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'vast', 'majority', 'of', 'local', 'authorities', 'use', '', 'at', 'large', '(', '', 'voting', ')', 'instead', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'number', 'is', 'called', 'the', '``', 'degree', 'of', '', \"''\", 'of', 'the', 'problem', 'or', 'its', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'was', 'born', 'in', '', '', 'to', 'a', '', 'jewish', 'family', 'originally', 'from', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'used', 'dogs', 'from', 'the', '', ',', '', ',', 'and', 'walker', 'lines', 'to', 'develop', 'his', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', 'the', '1', '9', '2', '0', 's', 'italian', 'race', 'cars', 'of', '', '', ',', '', ',', '', ',', 'and', 'later', '', 'and', '', 'have', 'been', 'painted', 'in', '``', '', '', \"''\", '(', '``', 'racing', 'red', \"''\", ')', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', '1', '9', '6', '5', 'indian', '', 'film', ',', 'directed', 'and', 'produced', 'by', 'r.', 's.', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'appointed', 'ambassador', 'to', 'ireland', 'in', 'july', '2', '0', '0', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'there', 'were', 'live', '', 'to', 'swiss', 'citizens', 'and', 'were', '3', 'deaths', 'of', 'swiss', 'citizens', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'fall', '2', '0', '1', '0', ',', '', '', 'bonaduce', 'to', 'learn', 'how', 'to', 'play', 'the', 'bass', 'guitar', 'lines', 'for', 'the', 'songs', 'the', '', 'family', 'performed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'has', 'around', '2', ',', '1', '0', '0', 'inhabitants', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'difference', 'in', 'bone', 'levels', 'became', '', 'significant', 'when', 'the', '', 'diameter', '', 'was', 'greater', 'than', '0', '.', '8', 'mm', ',', 'providing', 'a', '0', '.', '4', 'mm', '', 'width', 'of', 'platform', 'switch', 'when', 'the', 'center', 'of', 'the', '', 'is', '', 'with', 'and', 'fixed', 'to', 'the', 'center', 'of', 'the', '', '.', '']\n", "['', 'the', 'family', 'continued', 'to', 'pay', 'dublin', 'corporation', 'an', 'annual', 'ground', '', 'of', '£', '4', '0', 'for', 'this', 'property', 'for', 'almost', '2', '0', '0', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'pipeline', ',', 'turkish', 'stream', ',', 'with', 'an', 'annual', 'capacity', 'around', ',', 'allows', 'turkey', 'to', '', 'russian', 'gas', 'to', 'the', 'rest', 'of', 'europe', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'gave', 'lessons', ':', 'jean', '', 'studied', 'with', 'him', 'briefly', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', '', ',', 'who', 'served', 'as', 'china', \"'s\", 'foreign', 'minister', 'and', 'vice', 'premier', ',', 'was', 'a', 'descendant', 'of', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'aircraft', 'was', 'designed', 'to', 'be', 'a', '', 'or', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'opening', 'sequence', 'and', 'press', 'shots', 'for', 'the', 'special', 'series', 'of', '``', '', 'come', 'dancing', \"''\", ',', \"''\", 'the', 'people', \"'s\", '', 'for', 'comic', 'relief', \"''\", ',', 'which', 'aired', 'in', '2', '0', '1', '5', ',', 'were', 'filmed', 'at', '', 'park', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'directed', 'by', '', '', ',', 'the', 'film', 'was', 'an', 'official', 'selection', 'of', 'the', '2', '0', '0', '2', 'berlin', 'film', 'festival', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'followed', 'by', 'the', 'rest', 'of', 'the', 'stations', 'on', 'the', '', '', 'and', '', '', 'lines', 'in', '2', '0', '1', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'british', 'empire', 'was', 'keen', 'to', '', 'southeast', '', 'to', '', 'the', 'influence', 'of', 'other', 'european', 'powers', 'and', 'to', '', 'the', '', 'empire', 'in', 'the', '1', '8', 'th', 'century', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'they', 'returned', 'to', 'the', 'castle', 'he', '', '', 'the', 'rebels', 'into', 'releasing', 'his', 'family', 'and', 'leaving', ',', 'but', 'the', 'aftermath', 'to', 'follow', 'with', '', 'would', 'prove', 'to', 'be', '', 'on', 'the', 'whole', 'family', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'originally', 'from', 'texas', ',', 'joel', 'was', 'a', 'single', 'father', 'in', 'his', 'late', '2', '0', 's', 'when', 'the', 'initial', '``', '', \"''\", 'outbreak', 'occurred', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'focused', 'on', 'providing', '', 'and', 'laboratory', 'products', ',', 'and', 'had', '', 'of', 'over', '$', '2', 'billion', 'in', '2', '0', '0', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'and', 'on', '1', '2', 'june', '2', '0', '1', '5', 'shomrim', 'volunteers', 'were', 'publicly', '', 'for', 'their', 'help', 'in', '', 'two', '', 'who', '', 'the', 'tyres', 'of', 'many', 'vehicles', 'in', 'stamford', 'hill', 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'members', 'of', 'the', 'organisation', 'include', 'a', 'wide', 'variety', 'of', 'facilities', 'that', 'may', 'take', 'the', 'form', 'of', 'an', 'art', 'colony', ',', 'an', '', 'space', ',', 'or', 'other', 'regional', '', 'networks', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'noted', 'that', 'while', 'universal', 'expressions', 'do', 'not', 'necessarily', 'prove', '', \"'s\", 'theory', 'that', 'they', 'evolved', ',', 'they', 'do', 'provide', 'strong', 'evidence', 'of', 'the', 'possibility', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'network', 'rail', 'applied', 'for', 'planning', 'permission', 'in', 'november', '2', '0', '1', '6', 'to', 'update', 'the', '', 'desk', 'and', 'counter', 'to', 'make', 'it', 'more', '', 'to', 'passengers', 'with', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '0', '5', 'karl', '', '', 'the', 'term', '``', 'random', 'walk', \"''\", 'while', '', 'a', 'problem', 'describing', 'a', 'random', 'walk', 'on', 'the', 'plane', ',', 'which', 'was', 'motivated', 'by', 'an', 'application', 'in', '', ',', 'but', 'such', 'problems', 'involving', 'random', 'walks', 'had', 'already', 'been', 'studied', 'in', 'other', 'fields', '.', '']\n", "['', '', \"'s\", 'style', 'of', 'production', ',', 'which', 'is', 'often', '', 'and', '', ',', 'has', 'become', 'heavily', 'associated', 'with', 'drake', \"'s\", 'music', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'manager', '', '', 'wrote', 'in', '1', '8', '0', '9', 'that', 'the', 'school', 'for', 'the', 'workers', \"'\", 'children', 'was', 'established', 'some', '4', '0', 'years', '', ',', 'around', '1', '7', '7', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', '2', '0', '2', '0', ',', 'he', 'is', 'the', 'last', 'democratic', '', 'to', 'serve', 'on', 'the', 'district', 'court', 'for', 'the', 'middle', 'district', 'of', 'alabama', ',', 'and', 'also', 'the', 'last', 'judge', 'appointed', 'by', 'a', 'democratic', 'president', 'to', 'that', 'court', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'earned', 'a', 'bachelor', 'of', 'arts', 'and', 'bachelor', 'of', 'laws', 'there', ',', 'and', 'later', 'masters', 'of', 'public', 'and', 'international', 'law', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hogan', 'formed', 'an', '', 'alliance', 'with', 'a', 'former', 'enemy', 'and', 'top', '', 'to', 'his', '', 'world', '', 'championship', ',', '', '``', '', 'man', \"''\", 'savage', '(', 'which', 'was', 'later', 'known', 'as', 'the', 'mega', 'powers', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'aircraft', 'company', 'purchased', 'a', 'large', 'number', 'of', 'former', 'british', 'army', '', 'aircraft', 'during', 'the', 'late', '1', '9', '5', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'danny', '', ',', 'son', '', ',', '', '', 'and', 'kim', '', 'had', 'already', 'been', 'recruited', 'for', 'the', 'project', 'group', ',', 'which', 'was', 'planned', 'to', 'be', 'called', '``', 'got', '6', '``', 'but', 'kim', '', 'eventually', 'left', 'to', 'pursue', 'acting', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'marie', ',', 'ontario', ';', 'new', 'orleans', ',', 'louisiana', ';', 'and', 'chicago', ',', 'illinois', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'discovered', 'in', 'the', 'late', '1', '9', '6', '0', 's', 'in', 'the', 'search', 'for', 'the', 'infectious', 'agent', 'causing', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'funding', 'must', 'be', 'used', 'for', 'costs', 'associated', 'with', 'travel', ',', 'program', 'fees', ',', 'and', 'living', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'eighth', ',', '1', '6', '5', 'years', 'after', '', ',', 'was', 'that', 'of', '', 'begotten', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'finds', 'the', 'formation', 'of', 'the', '', 'and', 'the', '', 'and', '', 'nature', 'of', 'the', '', \"'s\", '', '', 'with', 'traditional', 'collective', 'behavior', 'theory', ',', 'which', 'includes', 'such', '', '', 'elements', 'as', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '4', '2', ',', 'the', 'institution', 'was', 'a', 'single', 'entity', 'under', 'the', 'direction', 'of', 'the', 'sisters', 'of', 'providence', ',', 'and', 'was', 'renamed', 'the', 'great', 'falls', 'college', 'of', 'education', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '', '2', '', \"''\", '5', '0', '``', '', '%', '!', '!', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mature', '', 'small', '', 'sites', 'are', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'also', 'arranged', 'to', 'have', 'their', 'stores', 'of', 'onions', '', 'because', 'they', 'had', 'started', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'joint', 'parliamentary', 'committee', '(', '', ')', 'is', 'one', 'type', 'of', 'ad', '', 'parliamentary', 'committee', '', 'by', 'the', 'indian', 'parliament', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'an', 'official', 'language', '(', 'as', 'well', 'as', 'english', ')', 'of', 'the', '', 'people', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'one', 'of', 'the', 'most', '', 'designers', 'of', 'role', 'playing', 'games', 'in', 'sweden', 'and', 'has', 'had', 'a', 'leading', 'role', 'in', 'the', 'production', 'of', 'most', 'of', 'them', ',', 'including', 'classical', 'titles', 'such', 'as', '', '', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'band', 'played', 'their', 'final', 'scheduled', 'show', 'together', 'at', 'the', 'big', '', 'festival', 'at', '', 'castle', 'deer', 'park', 'in', 'herefordshire', 'on', '7', 'august', '2', '0', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'dvd', 'featured', 'its', 'original', 'english', 'soundtrack', 'in', '', 'digital', '5', '.', '1', '', 'sound', 'and', 'english', 'subtitles', ';', 'but', 'had', 'no', 'foreign', 'language', 'options', 'for', 'subtitles', 'and', 'audio', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'c.', 'james', 'yen', '(', ',', '1', '8', '9', '0', '-', '1', '9', '9', '0', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'editor', 'of', '``', '', \"''\", '(', '', \"'\", ')', ',', 'the', 'journal', 'of', 'the', 'japanese', 'folk', 'arts', 'association', ',', 'issued', 'between', '1', '9', '3', '1', 'and', '1', '9', '5', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'scope', ',', 'history', ',', '', 'and', '', 'of', 'the', 'culture', 'are', 'vast', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'county', 'was', 'reduced', 'in', 'size', 'on', 'july', '3', ',', '1', '7', '6', '6', 'by', 'the', 'creation', 'of', 'cumberland', 'county', ',', 'and', 'further', 'on', 'march', '1', '6', ',', '1', '7', '7', '0', 'by', 'the', 'creation', 'of', '', 'county', ',', 'both', 'containing', 'territory', 'now', 'in', 'vermont', '.', '', '', '', '']\n", "['', 'a', 'total', 'of', 'more', 'than', '1', '6', '0', 'designs', 'were', 'made', 'by', 'the', '', 'up', 'until', '1', 'october', ',', '2', '0', '1', '2', ',', 'the', '8', '5', 'th', 'anniversary', 'of', 'the', 'founding', 'of', 'the', 'enterprise', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'the', 'former', '', 'palace', '', '', 'champion', 'and', 'king', 'of', 'the', '', '', '(', '1', '3', '5', '', ')', 'champion', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'began', ',', 'but', 'this', 'had', 'not', 'finished', 'at', 'time', 'of', 'the', 'italian', '', '(', 'nearly', '6', '0', '%', 'of', 'the', 'ship', 'was', 'rebuilt', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'dr.', '', '(', '', ')', 'works', 'at', 'a', 'small', '', 'hospital', 'that', 'serves', 'as', 'the', 'only', 'option', 'for', 'the', 'wounded', 'and', 'the', '', 'from', 'the', 'war', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ralph', 'died', 'on', '1', 'march', '1', '2', '9', '2', 'while', 'attending', 'a', 'parliament', 'at', 'london', ',', 'from', 'a', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'won', 'most', 'of', 'regional', 'and', 'local', 'elections', 'and', 'for', 'the', 'first', 'time', 'in', 'more', 'than', 'fifty', 'years', 'it', 'won', 'control', 'of', 'the', 'senate', 'in', 'the', '2', '0', '1', '1', 'senate', 'election', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'the', 'internet', 'was', 'widely', 'used', 'by', '', 'in', 'the', '1', '9', '8', '0', 's', ',', '', 'incorporated', 'its', 'services', 'and', 'technologies', 'into', '', 'every', 'aspect', 'of', 'modern', 'life', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'constructed', 'in', '1', '8', '3', '6', 'and', 'is', 'the', 'first', '', 'cemetery', 'in', 'western', 'australia', ',', '', 'in', '1', '8', '4', '0', 'as', 'a', 'public', 'burial', 'ground', 'to', 'provide', 'for', 'the', 'needs', 'of', 'a', 'growing', 'community', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', 'result', ',', 'the', 'bill', 'died', ',', 'and', 'state', 'laws', '', 'whether', 'electronic', '', 'can', 'be', '', 'or', 'whether', 'a', '', '', 'in', 'one', 'state', 'must', 'be', 'accepted', 'in', 'another', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", '', 'became', 'rapid', 'and', 'he', 'experienced', 'a', 'further', 'increase', 'in', 'the', '', 'effects', 'of', 'the', 'plant', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'september', '2', '0', '0', '8', ',', 'the', '``', 'international', 'workshop', 'on', '', 'in', 'communications', '(', '', '2', '0', '0', '8', ')', \"''\", 'was', 'organized', 'in', 'honour', 'of', 'the', 'distinguished', 'career', 'of', '', 'on', 'the', 'occasion', 'of', 'his', '', 'birthday', '.', '', '', '', '', '', '', '', '', '']\n", "['', '', 'phillips', 'is', 'a', 'single', 'mother', 'who', 'was', '', 'at', 'age', '2', '0', 'and', 'has', 'a', '1', '9', '-year-old', 'daughter', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', '', 'to', 'avoid', 'another', 'war', ',', 'especially', 'one', 'which', 'would', '', '', 'within', 'his', 'new', '', 'family', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'rugby', 'player', 'she', 'had', 'met', 'at', 'a', '', '', 'her', 'into', 'a', 'car', ',', '', 'her', 'several', 'times', 'in', 'the', 'head', ',', 'forced', 'her', 'to', '', 'what', 'he', 'wanted', 'her', 'to', 'say', ',', 'then', 'raped', 'her', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '8', '1', 'st', 'national', 'board', 'of', 'review', 'awards', ',', '', 'the', 'best', 'in', 'film', 'for', '2', '0', '0', '9', ',', 'are', 'given', 'on', 'january', '1', '2', ',', '2', '0', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'below', 'the', 'word', 'india', ',', 'in', 'capital', 'letters', ',', 'is', '', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'theorem', 'has', '', '', 'for', 'other', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bank', 'of', 'america', 'recommended', 'that', 'its', '', 'not', 'accept', 'the', 'offer', ',', 'even', 'though', 'it', 'was', 'made', 'at', 'a', '', 'to', 'the', 'stock', \"'s\", 'market', 'price', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'best', 'year', 'in', 'professional', 'golf', 'was', '1', '9', '8', '8', ',', 'when', 'he', 'won', 'two', 'events', 'on', 'the', 'pga', 'tour', ',', 'as', 'well', 'as', 'the', '', 'phoenix', 'in', 'japan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'a', 'biography', 'edited', 'by', '', '', 'de', '', ',', '', 'and', 'le', '', 'collaborated', '``', 'on', 'some', 'paintings', 'and', '', '', \"''\", 'for', 'the', 'former', 'church', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'september', '2', '0', '1', '6', ',', 'the', 'commission', 'upheld', 'the', 'women', \"'s\", 'claim', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', '', '', 'succeeded', '', 'as', 'cathedral', '', 'in', '1', '9', '9', '0', ',', 'she', '', 'with', 'the', 'paul', 'winter', 'concert', 'for', 'the', 'cathedral', \"'s\", '', '', 'and', 'christmas', 'services', ',', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'april', '2', '0', '1', '5', ',', 'the', 'company', 'removed', 'the', 'word', '``', 'hill', \"''\", 'from', 'its', '', ',', 'and', 'unveiled', 'a', 'new', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', ',', 'was', 'responsible', 'for', '', 'the', '8', '9', '5', '-ton', '', '``', '', \"''\", 'near', 'the', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', '', 'from', 'the', 'opposite', '', 'to', '``', '', '1', '``', 'and', 'is', '', 'in', 'patients', 'with', 'alzheimer', \"'s\", 'disease', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'also', ',', 'the', 'c', '1', '', '1', '1', 'bond', '[', '1', '5', '2', '.', '1', '6', '(', '1', '7', ')', 'pm', ']', 'is', 'slightly', 'shorter', 'than', 'the', 'average', '', '3', '', '3', 'bond', 'which', 'is', 'around', '1', '5', '3', '.', '0', 'pm', '.', '', '', '', '', '', '', '']\n", "['', '``', 'art', 'zone', \"''\", 'is', 'known', 'for', 'its', 'performances', 'and', 'interviews', 'at', 'the', 'seattle', '', 'stables', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'told', 'the', 'press', 'club', 'of', '', '', 'that', 'he', 'saw', 'too', 'much', '', 'as', 'he', 'traveled', 'the', 'state', 'in', 'his', 'campaign', 'for', 'secretary', 'of', 'state', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'savage', 'had', 'been', 'portrayed', 'as', 'an', '', '', 'during', 'most', 'of', 'his', 'first', 'two', 'years', 'in', 'the', '', ',', 'but', 'in', 'the', 'late', 'summer', 'of', '1', '9', '8', '7', 'began', 'to', 'slowly', 'turn', 'face', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'what', 'is', 'needed', 'will', '', 'from', 'one', 'person', 'and', 'one', '', 'to', 'the', 'next', ',', 'but', 'do', '', 'the', 'human', 'resource', 'offices', ',', 'the', 'funding', 'agencies', ',', 'the', '', 'levels', ',', 'and', 'even', 'union', 'leadership', ',', 'among', 'others', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'smith', 'worked', 'in', 'the', 'first', 'two', 'games', 'and', 'allowed', 'one', '', 'run', 'and', 'two', 'hits', 'in', 'two', 'full', '', '', ',', 'as', 'the', 'dodgers', 'split', 'those', 'games', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'prominent', 'flat', 'earth', '', '', 'wing', 'also', 'resides', 'nearby', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'area', 'school', 'district', 'achieved', 'ayp', 'status', 'each', 'year', 'from', '2', '0', '0', '4', 'to', '2', '0', '1', '0', ',', 'while', 'in', '2', '0', '0', '3', 'the', '', 'area', 'school', 'district', 'was', 'in', 'warning', 'status', 'due', 'to', '', 'student', 'achievement', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '', 'painting', 'is', 'a', '', 'and', 'confused', '', 'and', '', 'of', 'images', ',', 'including', 'a', 'dragon', ',', 'a', '', ',', 'two', '', ',', 'and', 'various', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'next', 'season', ',', 'kochi', '', 'were', 'dropped', 'from', 'the', '', 'and', 'smith', 'was', 'put', 'up', 'for', 'auction', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'early', '1', '9', '9', '9', ',', 'the', 'magazine', 'renamed', 'the', 'chart', 'to', 'rock', 'report', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'asked', 'for', '$', '2', '5', ',', '0', '0', '0', 'from', 'the', 'rail', 'company', 'because', 'she', '', 'the', 'cause', 'of', 'her', 'fall', 'was', '', '', '', 'that', 'had', 'the', 'wrong', 'type', 'of', '``', '', 'and', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'government', 'officials', 'attempted', 'to', '', 'the', '', 'by', 'offering', 'rates', '2', '%', 'below', 'the', 'alleged', '', 'rates', ',', 'but', '', 'seems', 'to', 'be', '', 'their', 'efforts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'please', 'baby', 'please', 'is', 'an', 'upcoming', 'american', 'drama', 'film', 'directed', 'by', '', '', ',', 'from', 'a', '', 'by', '', 'and', '', 'david', 'taylor', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'movie', 'starred', '', '', ',', '', ',', '', '', ',', '', '', 'and', 'christian', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', 'this', 'period', ',', '', 'of', 'jews', 'and', 'deportations', 'became', 'endemic', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'league', 'and', 'championship', 'career', 'with', 'the', '', 'senior', 'team', 'lasted', 'fourteen', 'seasons', 'from', '1', '9', '5', '6', 'until', '1', '9', '7', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'best', 'known', 'for', 'being', 'the', '', 'of', 'the', 'rock', 'band', 'collective', 'soul', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'extension', 'is', 'attributed', 'to', 'the', 'architect', 'john', '', 'and', 'was', 'part', 'of', 'the', '', 'carried', 'out', 'under', 'his', 'instruction', 'in', '1', '7', '8', '8', 'and', 'completed', 'in', '1', '7', '9', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'he', 'was', 'a', 'teenager', ',', 'he', '``', 'became', 'a', 'black', '', 'in', '', '', 'and', 'then', '...', 'switched', 'to', 'boxing', '...', 'for', 'several', 'years', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'was', 'the', 'idea', 'of', '', '', ',', 'who', 'was', 'a', 'graduate', 'in', 'law', 'and', 'club', 'president', 'from', '1', '9', '2', '1', 'to', '1', '9', '2', '3', ',', 'but', 'although', 'much', 'of', 'his', 'work', 'was', 'political', 'his', 'passion', 'was', 'sport', '.', '', '', '', '', '', '', '', '']\n", "['', 'on', 'october', '2', '7', ',', '1', '7', '6', '8', ',', 'a', 'mob', 'of', 'local', 'residents', ',', '', 'the', 'guns', '', 'new', 'orleans', 'and', 'took', 'control', 'of', 'the', 'city', 'from', 'the', 'spanish', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'a', 'guest', 'appearance', ',', 'singer-songwriter', '', 'king', 'led', 'the', '', 'through', 'versions', 'of', 'her', 'songs', '``', 'you', \"'ve\", 'got', 'a', 'friend', \"''\", 'and', '``', '(', 'you', 'make', 'me', 'feel', 'like', ')', 'a', 'natural', 'woman', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', ',', 'of', 'pale', 'colour', ',', 'have', 'rows', 'of', 'small', '', 'blue', 'spots', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', 'limited', '', 'was', 'permitted', 'till', 'the', 'declaration', 'of', 'the', 'area', 'as', 'a', 'national', 'park', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'unlike', 'most', 'butterflies', ',', 'the', 'purple', 'emperor', 'does', 'not', 'feed', 'from', 'flowers', 'but', 'instead', 'on', 'the', '', '', 'by', '', ',', '', '', 'from', 'oak', 'trees', ',', 'and', 'on', '', ',', 'urine', 'and', 'animal', 'carcasses', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '5', '0', '0', 'million', 'luxury', '', 'to', 'be', 'built', 'in', 'the', 'presidential', 'complex', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'jasmine', 'decides', 'to', 'leave', '', 'for', 'a', 'job', 'in', 'london', ',', 'she', 'feels', 'that', 'jac', 'does', 'not', 'care', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'federal', 'studies', 'were', 'fully', 'supported', 'by', 'the', 'military', 'and', 'many', 'of', 'the', '', 'were', 'implemented', 'in', '1', '9', '8', '0', 's', 'to', 'improve', 'the', 'joint', 'efforts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '', 'was', 'still', '', 'in', 'the', '1', '9', '3', '0', 's', ',', 'although', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'the', 'start', 'of', 'the', 'following', 'season', 'led', 'to', 'the', 'team', 'failing', 'to', '', 'their', 'opening', '', 'in', 'the', 'national', 'cup', ',', 'patron', \"'s\", 'cup', 'and', 'the', 'league', ',', 'leading', 'england', 'basketball', 'to', 'finally', '', 'the', 'team', 'from', 'competition', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'results', 'from', 'this', 'study', 'indicated', 'a', 'significant', 'impact', 'on', 'body', 'image', ',', 'particularly', 'when', 'exposed', 'to', 'muscular', '', 'characters', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'islamic', 'studies', \"''\", 'and', '``', 'history', 'of', 'islam', \"''\", 'are', 'among', 'the', 'fields', 'that', 'he', 'has', 'taught', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'their', '', 'album', '``', '', \"''\", 'was', 'released', 'on', 'july', '8', ',', '2', '0', '1', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'released', 'later', 'as', 'the', 'lead', 'single', 'from', 'josé', 'josé', \"'s\", 'album', '``', 'en', 'las', '', '...', '', 'en', 'las', '', \"''\", '(', '1', '9', '9', '0', ')', ',', 'and', 'became', 'his', 'fourth', '', 'single', 'in', 'the', '``', 'billboard', \"''\", 'top', 'latin', 'songs', 'chart', '.', '', '', '', '']\n", "['', '``', '', \"''\", 'was', 'delivered', 'on', '3', 'september', '2', '0', '2', '0', ',', 'with', 'her', 'entry', 'into', 'service', 'expected', 'in', '2', '0', '2', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'and', '', 'shared', 'the', '1', '9', '7', '7', '', 'clinical', 'medical', 'research', 'award', 'for', 'this', 'achievement', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'later', 'attended', 'the', 'fletcher', 'school', 'of', 'law', 'and', 'diplomacy', 'at', '', 'university', ',', 'receiving', 'an', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '6', '9', '3', ',', 'and', 'new', 'brunswick', 'in', '1', '7', '3', '6', '(', 'which', 'later', 'became', 'home', 'to', '', 'university', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '', '', 'the', 'male', '', 'urine', 'through', 'the', '', ',', 'and', 'the', 'female', 'through', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'if', 'so', ',', 'the', '``', '', \"''\", 'may', 'have', 'been', 'the', 'equivalent', 'of', 'a', '', 'in', 'the', '', 'units', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'song', 'also', 'performed', 'strongly', 'on', 'billboard', \"'s\", 'hot', '1', '0', '0', 'chart', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'sam', '-', 'voiced', 'by', '', '', '-', 'is', 'from', 'australia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'with', 'the', 'emergence', 'of', 'ideas', 'such', 'as', '', ',', '', ',', 'and', '', ',', 'the', 'women', 'of', 'france', 'joined', 'their', 'voices', 'to', 'the', '', 'of', 'the', 'early', 'revolution', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'an', 'unincorporated', 'community', 'in', 'mississippi', 'county', ',', 'arkansas', ',', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'hearing', 'the', '', '', 'in', 'his', 'ear', 'to', '', 'her', ',', '', 'then', 'took', 'the', '', 'himself', 'until', ',', 'as', 'described', 'in', '', \"'s\", 'book', ',', 'she', 'was', '``', 'literally', '', \"''\", 'from', 'over', '5', '0', '', ',', 'salt', 'water', 'was', 'then', '', 'over', 'her', 'wounds', '.', '', '']\n", "['', 'outgoing', 'council', 'leader', '', '', '(', 'bridge', ')', 'remained', 'as', 'labour', 'group', 'leader', 'and', '', '', '(', '', '', ')', 'became', '', '', 'group', 'leader', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'lee', '', 'was', 'born', 'on', '4', 'august', '1', '9', '2', '3', 'at', '', ',', 'nebraska', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'ended', 'up', 'playing', 'two', 'seasons', 'in', 'los', 'angeles', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', 'formation', 'is', 'a', '', 'formation', 'in', 'oklahoma', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'the', 'largest', 'port', 'in', 'russia', 'and', 'the', 'black', 'sea', 'basin', 'and', 'the', 'third', 'in', 'europe', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'originally', 'to', 'have', 'been', 'called', '``', '', 'castle', \"''\", '(', 'after', '', '', 'in', 'jersey', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'the', 'discovery', 'of', 'the', 'fossils', 'was', 'reported', 'in', '1', '9', '7', '5', ',', '``', '', \"''\", 'was', 'the', 'largest', 'flying', 'creature', 'known', 'to', 'have', 'lived', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', ',', 'the', 'balance', 'of', 'performance', 'was', 'reviewed', 'for', 'this', 'round', ':', 'the', '', 'golf', '', '', \"'s\", 'ride', 'height', 'has', 'been', 'reduced', 'by', '1', '0', 'mm', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'last', 'time', 'that', 'this', 'type', 'of', 'a', 'deformity', 'had', 'been', '', 'in', 'a', '', 'was', 'in', '1', '9', '0', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'closest', '', 'train', 'station', 'is', 'at', 'the', 'joseph', '', '', 'transportation', 'center', 'in', '', ',', 'massachusetts', ',', 'served', 'by', 'the', 'boston', 'to', 'chicago', '``', 'lake', 'shore', 'limited', \"''\", 'train', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'finland', 'and', 'iceland', 'are', 'at', 'times', ',', 'especially', 'in', '', '', ',', 'considered', 'part', 'of', 'scandinavia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'included', 'giovanni', '', ';', '', '', ';', '', '', ';', '', '', ',', 'the', 'former', 'italian', 'minister', 'of', 'foreign', 'affairs', 'and', '', \"'s\", '', ';', 'the', '', 'marshal', 'of', 'italy', '', 'de', '', ';', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'says', 'that', '``', '', 'of', 'doubt', \"''\", 'includes', 'detailed', 'notes', 'on', 'all', 'sources', 'used', ',', 'is', 'carefully', '', ',', 'and', 'is', '``', 'my', '', '', 'for', 'best', 'science', 'book', 'of', 'the', 'year', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', '', ',', 'which', '', 'a', '', 'rating', 'out', 'of', '1', '0', '0', 'to', 'reviews', 'from', 'mainstream', 'publications', ',', 'the', 'album', 'received', 'an', 'average', 'score', 'of', '7', '5', 'based', 'on', 'six', 'reviews', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'that', ',', 'just', 'as', 'the', 'son', 'of', 'god', 'limited', 'himself', 'by', 'taking', 'human', 'form', 'and', '', 'on', 'a', 'cross', ',', 'god', 'limits', '', 'action', 'in', 'the', 'world', 'to', 'be', 'in', '', 'with', '', 'laws', 'which', 'god', 'has', 'chosen', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'township', 'is', 'governed', 'by', 'a', '', 'board', 'of', 'trustees', ',', 'who', 'are', 'elected', 'in', 'november', 'of', '', 'years', 'to', 'a', 'four-year', 'term', 'beginning', 'on', 'the', 'following', 'january', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'of', '', 'joint', '', 'depend', 'entirely', 'on', 'the', 'location', 'of', 'the', '', '', 'joint', ',', 'the', 'severity', 'of', 'the', 'damage', 'and', 'the', 'amount', 'of', 'pressure', 'that', 'is', 'being', 'placed', 'on', 'the', 'surrounding', 'structures', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'each', 'individual', '', 'has', 'her', 'or', 'his', 'own', 'room', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'first', 'published', 'in', '``', '', ':', 'a', 'quarterly', 'of', 'new', 'literature', \"''\", 'in', '1', '9', '4', '6', 'and', 'is', 'one', 'of', 'the', 'six', 'stories', 'included', 'in', '', \"'s\", '1', '9', '4', '7', 'master', \"'s\", 'thesis', '``', 'the', '', ':', 'a', 'collection', 'of', 'short', 'stories', \"''\", '.', '', '']\n", "['', '', \"'s\", 'son', ',', 'george', 'ii', ',', '', 'control', 'of', 'the', 'city', 'to', 'his', 'powerful', '', '', 'i', ',', 'duke', 'of', '', ',', 'thereby', 'buying', 'his', '', ',', 'in', '1', '0', '7', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'february', '2', '0', '0', '8', ',', 'it', 'was', 'announced', 'that', 'the', 'company', 'had', 'won', 'a', '£', '2', '8', 'm', 'ministry', 'of', 'defence', 'contract', 'to', '', 'the', 'royal', 'fleet', 'auxiliary', 'ship', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '1', '6', 'th', 'century', 'the', 'castle', 'had', 'a', 'garrison', 'of', 'around', '3', '0', '0', 'soldiers', ',', 'who', 'lived', 'in', 'the', 'town', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '7', '3', 'he', 'joined', 'dragon', 'productions', 'with', '', '', ',', 'who', 'with', 'the', 'arts', 'council', 'of', 'great', 'britain', '', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', '7', 'september', ',', 'he', 'then', 'joined', '', 'town', '.', '1', '5', 'july', '2', '0', '2', '0', '', 'signed', 'for', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'opened', 'a', 'location', 'on', 'the', 'ground', 'floor', 'in', 'the', 'spring', 'of', '2', '0', '0', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'took', 'part', 'in', 'the', 'movement', 'for', 'restoration', 'of', 'democracy', 'in', '1', '9', '8', '3', 'and', 'was', 'sent', 'to', 'jail', 'for', 'six', 'months', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'is', 'an', 'original', 'character', 'from', 'the', '1', '9', '9', '4', '``', 'street', 'fighter', \"''\", 'film', ',', 'who', 'appears', 'as', 'a', '', 'character', 'in', 'both', 'the', 'and', 'the', 'of', 'the', '``', 'street', 'fighter', ':', 'the', 'movie', \"''\", 'video', 'game', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'senior', 'year', 'at', '', 'was', 'spent', 'in', 'rome', ',', 'as', 'a', '', 'in', 'the', 'european', '', 'program', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'february', '1', '2', ',', '2', '0', '0', '7', ',', 'the', 'white', 'house', 'submitted', '', \"'s\", 'nomination', 'to', 'the', 'senate', 'to', 'become', 'the', 'us', 'ambassador', 'to', 'the', 'united', 'nations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'bridge', 'has', 'an', 'overall', 'width', 'of', ',', 'with', 'a', 'roadway', 'of', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'planes', ',', 'trains', ',', 'and', '', \"''\", 'had', 'its', 'first', 'dvd', 'release', 'on', 'november', '2', '1', ',', '2', '0', '0', '0', ',', 'when', 'a', '4', '8', '0', 'i', '', 'version', 'of', 'the', 'film', 'was', 'issued', 'on', 'dvd', 'in', 'the', 'united', 'states', '.', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'first', 'shown', 'in', 'december', '2', '0', '1', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'council', 'was', 'established', 'in', '1', '9', '5', '5', 'with', 'the', 'opening', 'of', '', 'at', '', 'near', 'the', 'dead', 'sea', 'works', ',', 'and', 'its', 'jurisdiction', 'covers', 'an', 'area', 'of', '1', ',', '6', '5', '0', 'km', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'reaches', '7', '', 'in', '', 'length', ';', 'males', 'weigh', 'about', '4', '0', '', ',', 'females', '4', '5', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'fourth', ',', '1', '9', '0', 'years', 'after', '', ',', 'was', 'that', 'of', '', 'begotten', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'federal', 'reserve', 'issued', 'a', 'statement', ',', 'saying', 'it', 'was', '``', 'open', 'and', 'operating', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'place', 'has', 'potential', 'to', 'yield', 'information', 'that', 'will', 'contribute', 'to', 'an', 'understanding', 'of', 'the', 'cultural', 'or', 'natural', 'history', 'of', 'new', 'south', 'wales', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '1', 'squadron', 'raf', 'regiment', 'moved', '', '', 'and', 'no', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'disappeared', 'after', 'october', '1', '9', '4', '4', ',', 'shortly', 'after', 'railway', 'transport', 'to', 'the', 'western', 'parts', 'of', 'the', 'netherlands', 'had', 'stopped', 'in', 'september', 'due', 'to', 'the', 'railway', 'strike', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", '', '', '', 'of', 'those', 'of', 'giuseppe', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'seems', 'to', 'be', 'able', 'to', '', 'to', '', 'habitats', 'at', 'the', 'edge', 'of', 'native', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'return', 'flight', 'is', 'much', 'shorter', 'with', 'fewer', 'enemy', 'planes', 'than', 'the', 'missions', 'to', 'get', 'to', 'the', 'enemy', 'base', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'lake', 'was', 'named', 'for', 'h.', 'j.', '', ',', 'an', 'early', '', ',', 'his', 'surname', '', 'meaning', '``', 'oak', 'leaf', \"''\", 'in', 'the', 'swedish', 'language', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'march', '2', '0', '1', '1', 'the', 'network', 'was', 'renamed', 'the', '', 'broadcasting', 'network', 'ltd', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'museum', 'came', 'under', 'the', 'influence', 'of', '', ',', 'who', 'added', 'information', 'on', 'the', 'economy', ',', 'manners', ',', 'and', 'customs', 'of', 'the', 'inhabitants', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'in', 'the', 'study', 'were', '', 'on', '', '', ',', 'the', 'big', 'five', 'personality', '', ',', 'and', 'musical', 'expertise', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'former', '', 'times', ',', 'union', 'was', 'known', 'for', 'a', '', 'with', '', '', 'which', 'was', '', 'affiliated', 'with', 'east', 'germany', \"'s\", 'secret', 'service', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'left', 'from', '', ',', 'where', 'he', 'was', 'joined', 'by', 'the', 'khan', \"'s\", 'ambassador', 'to', 'the', 'west', '', 'of', '', 'to', 'go', 'to', 'the', 'mongol', 'capital', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', '``', 'the', 'guardian', \"''\", ',', 'the', 'nielsen', '', 'reported', 'sales', 'of', '1', '4', '7', ',', '8', '9', '9', 'copies', 'made', 'it', 'only', 'the', '3', '2', 'nd', '', 'book', 'of', 'the', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'movie', 'has', 'been', '', 'and', 'was', 'released', 'in', '2', '0', '0', '4', 'as', 'part', 'of', 'a', 'warner', 'home', 'video', '', 'special', 'edition', 'of', 'charlie', '', \"'s\", '``', 'the', 'kid', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'sometimes', 'the', '−', 'is', 'used', 'to', 'indicate', 'a', 'better', 'grade', 'if', 'it', 'stands', 'after', 'the', 'grade', 'and', 'a', 'lower', 'grade', 'if', 'it', 'stands', 'before', 'the', 'grade', '(', 'in', 'which', 'case', '−', 'is', 'a', 'symbol', 'for', '``', '', \"''\", ',', 'e.g', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'traditional', '', 'inhabitants', 'of', 'the', 'lands', 'now', 'known', 'as', 'the', 'brisbane', 'water', 'were', 'the', '', 'people', 'of', 'the', '', 'nation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'retained', 'some', 'of', 'the', 'french', 'style', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '0', ',', 'wilson', 'was', 'presented', 'with', 'an', 'australian', 'sports', 'commission', 'media', 'awards', 'for', 'lifetime', 'achievement', 'for', 'her', 'contribution', 'to', 'sports', 'journalism', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'underground', 'mining', 'of', '', 'was', 'being', 'done', 'in', 'the', '', 'of', '', 'creek', 'by', 'the', 'middle', 'of', 'the', '', 'century', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'route', \"'s\", '', 'increase', 'from', 'the', 'northern', 'or', 'eastern', 'end', '', 'to', 'common', 'practice', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'had', 'always', '', 'of', 'writing', 'plays', ',', 'and', 'she', 'began', 'writing', 'and', 'acting', 'in', 'her', '', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'is', 'located', 'in', 'the', 'southern', 'part', 'of', 'the', 'old', 'town', 'complex', ',', 'at', '2', 'a', 'holy', 'spirit', 'street', ',', 'east', 'of', 'the', '', 'tower', '(', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'solomon', 'islands', 'rugby', 'league', 'federation', 'was', 'officially', 'formed', 'in', '2', '0', '0', '8', 'and', 'the', 'national', 'team', 'played', 'its', 'first', 'official', 'match', 'in', '2', '0', '1', '3', ',', 'losing', 'to', '', 'on', 'october', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'malay', ']', 'based', ':', 'that', 'was', 'the', 'secret', 'of', 'our', 'stability', 'and', 'our', '', 'and', 'that', 'is', 'a', 'fact', 'of', 'political', 'life', 'which', 'no', 'one', 'can', 'simply', '', 'away', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'original', 'hotel', 'opened', 'on', 'july', '7', ',', '1', '9', '9', '9', ',', 'and', 'was', '', 'the', '``', 'holiday', 'inn', 'family', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'simple', '', 'does', 'not', '', 'the', 'rule', 'against', '', ',', 'since', 'the', 'interest', 'in', 'real', 'property', '', 'to', 'the', '', 'or', 'his', 'heirs', ',', 'who', 'are', 'measuring', 'lives', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'school', 'events', 'such', 'as', '', 'or', '', ',', 'couples', 'generally', '', 'the', '', 'and', '', ',', '', 'their', 'connection', ',', 'and', '', 'them', 'from', 'others', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'building', 'had', 'an', '', '', '', 'a', 'continuous', 'band', 'of', '', 'and', 'windows', 'on', 'the', 'second', 'and', 'third', 'level', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'free', 'play', 'games', 'and', '', 'customers', 'were', 'not', 'affected', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'and', '', 'played', 'together', 'locally', 'in', 'the', 'junior', '', 'club', ',', 'and', 'both', 'were', 'influenced', 'by', 'jazz', 'and', 'big', 'bands', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'also', 'praised', 'for', 'her', '', ',', '', 'acting', ',', 'which', 'served', 'to', 'balance', 'cha', \"'s\", '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'church', 'incorporates', 'elements', 'from', '', ',', '', ',', '', ',', 'traditional', '', ',', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'publication', 'is', 'described', 'as', '``', 'a', '', 'illustrated', 'journal', 'containing', 'catalogue', '', 'and', 'articles', 'by', 'recognized', 'authorities', 'on', 'individual', 'artists', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'also', 'offered', 'a', '', 'and', 'a', '', 'room', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'models', 'of', 'mental', 'disorder', 'or', '', 'development', 'concern', ',', 'e.g', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'station', 'has', 'studios', 'in', 'the', 'city', \"'s\", '', 'district', ',', 'and', '', 'from', '', 'tower', 'in', 'san', 'francisco', ',', 'with', 'a', 'power', 'output', 'of', '2', '4', ',', '0', '0', '0', 'watts', 'effective', '', 'power', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'special', 'characteristic', 'of', '', '', 'is', 'the', 'very', 'small', 'amount', 'of', 'iron', '', 'in', 'it', ',', 'allowing', 'it', 'to', 'be', 'fired', 'in', 'an', '', 'atmosphere', 'to', 'a', 'warm', 'white', 'or', 'pale', '', 'color', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'\", ',', 'rather', 'than', '', \"'\", ')', ',', 'for', 'example', '−', '5', '(', '4', '.', '7', '5', ')', 'is', 'lower', 'than', '5', 'which', 'is', 'lower', 'than', '5', '−', '(', '5', '.', '2', '5', ')', 'in', 'that', 'system', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'putting', 'forward', 'this', '', ',', '', 'was', '', 'the', 'influence', 'of', 'american', '', 'henry', 'george', ',', 'who', 'held', 'that', 'land', 'owned', 'by', 'private', 'individuals', 'should', 'be', 'subject', 'to', 'a', 'tax', 'on', 'the', 'land', 'because', 'of', 'the', 'advantage', '', 'on', 'the', 'owner', '.', '', '', '', '', '', '', '']\n", "['', 'the', 'contents', 'of', 'the', 'degree', 'course', 'held', 'in', 'english', 'include', ',', 'similar', 'to', 'belgium', ',', 'management', '', 'as', 'well', 'as', '', 'of', 'business', 'administration', 'and', 'economics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'beyond', 'earth', ',', 'strong', 'evidence', 'suggests', 'the', 'presence', 'of', 'calcium', '', 'on', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'letter', 'stated', 'that', '``', 'labour', \"'s\", 'election', '', 'under', 'jeremy', '', \"'s\", 'leadership', 'offers', 'a', '', 'plan', 'that', '', 'the', 'needs', 'of', 'people', 'and', 'the', 'planet', 'over', 'private', 'profit', 'and', 'the', '', 'interests', 'of', 'a', 'few', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'captain', '', 'in', 'the', '', 'spent', '3', 'days', '', 'and', '', 'at', '', 'in', 'april', '1', '7', '8', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'the', 'fourth', 'and', 'final', 'indonesian', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'was', 'conferred', 'for', 'his', 'thesis', 'by', 'the', '', '', 'university', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'musical', 'skills', 'were', 'good', 'enough', 'to', 'get', 'him', 'work', 'with', 'the', 'cleveland', 'symphony', 'orchestra', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'small', 'rest', 'is', 'still', '', ',', 'offering', 'a', 'tourist', 'passenger', 'service', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'k', '1', 'is', 'one', 'of', 'the', 'first', 'popular', '', 'that', 'has', 'no', '', '', ';', 'all', 'sounds', 'are', 'made', 'by', '', 'wave', 'samples', 'and', '', 'frequency', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'citizens', 'of', 'new', 'orleans', 'held', 'a', 'series', 'of', 'public', 'meetings', 'during', '1', '7', '6', '5', 'to', 'keep', 'the', '', 'in', 'opposition', 'of', 'the', 'establishment', 'of', 'spanish', 'rule', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'daley', 'was', 'born', 'john', '', 'edward', 'daley', 'in', 'newport', ',', 'vermont', 'on', 'september', '1', '0', ',', '1', '9', '1', '8', ',', 'the', 'son', 'of', 'patrick', 't.', 'daley', 'and', '', '(', '', ')', 'daley', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '2', ',', '', 'received', 'a', '``', 'women', 'on', 'the', 'front', 'line', 'award', \"''\", 'from', 'the', 'new', 'york', 'theological', 'seminary', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'failed', 'to', 'retain', 'the', 'seat', 'the', '2', '0', '2', '1', 'election', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', '', ',', '', '', '', 'focuses', 'on', '', ',', 'developing', ',', 'and', '', '', '(', 'in', 'the', 'traditional', 'chinese', 'concept', ',', 'a', 'kind', 'of', 'spiritual', 'energy', 'residing', 'in', 'every', 'living', 'thing', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'are', 'listed', 'in', 'the', 'following', 'table', ',', 'in', '', 'order', 'of', 'population', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', '', 'she', 'also', 'recorded', '', \"'s\", '``', '', '', \"''\", 'and', '``', '', '', \"''\", ',', 'with', '', '', \"'s\", '``', 'christmas', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'among', 'the', 'rising', 'stars', 'of', 'belgrade', \"'s\", '', ',', 'such', 'as', '', '', '``', '', \"''\", 'and', '', '', '``', '', \"''\", ',', '', 'was', 'perceived', 'as', 'a', 'legend', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'last', 'kids', 'on', 'earth', 'is', 'an', '', 'children', \"'s\", 'animation', 'streaming', 'television', 'series', ',', 'based', 'on', 'the', 'book', 'series', 'of', 'the', 'same', 'name', 'by', 'max', '', ',', 'that', 'premiered', 'on', '', 'on', 'september', '1', '7', ',', '2', '0', '1', '9', '.', '', '', '', '', '', '', '', '']\n", "['', 'partnership', 'with', 'the', 'university', 'of', 'virginia', 'art', 'department', 'through', 'the', '', 'of', 'art', 'professor', 'and', 'book', 'artist', 'dean', '', 'opened', 'the', 'center', 'to', 'the', 'activities', 'of', 'college', 'students', 'from', 'surrounding', 'academic', 'institutions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'son', 'george', 'was', '', 'of', '', 'from', '1', '7', '3', '7', 'to', '1', '7', '6', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '7', 'the', 'building', 'was', 'converted', 'back', 'to', 'a', '', 'theatre', ',', 'with', '1', ',', '4', '9', '6', 'seats', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', \"'s\", 'first', 'official', '', 'as', 'successor', 'was', 'in', 'may', '2', '0', '1', '3', 'during', 'the', '', 'of', '', 'mohammed', '', \"'s\", 'golden', '', ',', 'in', 'which', 'he', '', 'the', 'community', 'to', 'set', 'out', 'on', 'religious', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'are', 'conducted', 'for', 'both', '', 'and', 'property', '', ';', 'these', 'are', 'conducted', 'on', 'a', 'regular', '', 'basis', 'and', 'focus', 'on', 'two', 'main', 'factors', ':', 'service', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'despite', 'the', 'fact', 'that', 'she', 'often', '', '', 'of', '', 'food', 'on', 'a', 'daily', 'basis', ',', 'she', 'seems', 'to', 'keep', 'her', 'weight', 'under', 'control', ',', 'perhaps', 'because', 'she', 'does', 'not', 'seem', 'to', 'have', 'proper', 'meals', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'latest', '', 'with', '', 'support', 'was', '', '', 'replaced', 'by', 'contains', '', 'mobile', '9', '.', '1', '.', '1', 'from', '', 'systems', 'that', 'supports', 'text', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'double', 'star', 'data', 'are', 'publicly', 'available', 'via', 'this', 'archive', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'there', 'is', 'also', 'significant', 'areas', 'of', '', 'with', 'springs', 'which', 'are', '', 'to', '', 'creek', ',', 'especially', 'further', 'from', 'the', 'village', ',', 'in', 'the', 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'myth', 'has', 'no', 'basis', 'in', 'fact', 'and', 'most', 'probably', 'stems', 'from', '', 'of', 'da', 'costa', \"'s\", 'religion', 'due', 'to', 'his', 'portuguese', 'family', 'name', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'pilot', 'episode', ',', 'the', 'show', 'received', 'fairly', 'negative', 'reviews', 'from', 'the', 'viewers', '', 'the', 'design', 'of', 'the', '', 'red', '', ',', 'and', 'set', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'active', 'as', 'a', 'photographer', 'since', 'august', '1', '9', '9', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'the', 'landscape', 'of', 'our', 'state', 'is', '...', 'a', 'window', 'to', 'the', 'world', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', 'the', 'ming', 'period', '', 'objects', 'were', 'manufactured', 'that', 'achieved', 'a', '', 'of', '', 'and', 'body', 'traditionally', 'referred', 'to', 'as', '``', '', 'white', \"''\", 'and', '``', '', 'white', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'blog', 'also', '', 'artists', 'at', '', 'and', 'at', '', ',', 'an', 'annual', 'music', 'festival', 'in', 'new', 'york', ',', 'when', 'in', 'the', 'summer', 'of', '2', '0', '0', '7', ',', 'they', 'invited', 'the', '', 'justin', 'vernon', 'of', '', '', 'to', 'play', 'the', '', '', '.', '', '', '', '', '', '']\n", "['', 'the', 'team', 'played', 'numerous', 'games', 'in', '', 'and', 'jordan', ',', 'and', 'hosted', 'egyptian', 'club', 'al', '', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'won', 'an', 'award', 'for', 'favorite', 'tour', '', 'at', 'the', '3', '8', 'th', 'people', \"'s\", 'choice', 'awards', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'of', 'the', 'agricultural', '', ',', 'and', 'draft', 'horses', \"'\", '', 'from', '', ',', 'are', 'on', 'permanent', 'display', 'at', 'the', 'st.', 'martin', \"'s\", 'heritage', 'cemetery', 'on', '', 'road', ',', 'near', 'the', 'corner', 'of', 'lower', 'north', 'east', 'road', ',', '', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'our', 'lady', 'of', '', 'catholic', 'church', '(', ')', 'is', 'a', 'roman', 'catholic', 'church', 'located', 'in', 'the', 'second', 'ward', 'in', 'the', 'east', 'end', ',', 'houston', ',', 'texas', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'self', 'has', 'been', 'reviewed', 'and', 'has', 'supported', 'the', '', 'archives', 'and', 'museum', ',', 'a', '', 'pertaining', 'to', '', 'sub', 'culture', ',', '', ',', '', ',', 'and', 'alternative', 'sexual', 'practices', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'another', 'is', '1', '0', '0', 'park', 'avenue', ';', 'the', 'firm', 'later', 'collaborated', 'with', '', '', 'van', 'der', '', 'and', 'philip', 'johnson', 'on', 'the', '', 'building', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'planned', 'that', 'a', 'part', 'of', 'the', 'village', '(', 'along', 'with', '', ',', '', 'and', '', ')', 'will', 'be', '', 'in', '', 'dam', 'reservoir', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', 'no', 'one', 'can', 'be', 'killed', 'in', '', ',', 'the', '', 'king', 'seeks', 'to', '', 'them', ',', 'first', 'by', 'taking', 'them', 'through', 'the', 'rubber', 'country', ',', 'and', 'then', '', 'of', 'them', 'by', 'dropping', 'them', 'through', 'the', 'hollow', 'tube', ',', 'a', '', 'leading', 'to', 'the', 'other', 'side', 'of', 'the', 'world', '.']\n", "['', '', 'buried', 'with', 'the', 'dead', ',', 'the', 'plate', ',', '', ',', '', 'and', 'iron', '', 'were', 'found', 'alongside', 'the', '', 'remains', ',', 'the', '', 'and', 'hunting', '', 'on', 'top', 'of', 'the', '', 'section', 'and', 'the', 'gold', '', 'inside', 'the', '', '', 'the', 'upper', 'and', 'lower', '', '.', '', '', '']\n", "['', 'the', 'play', 'was', 'ruled', 'a', '', '(', '', '', 'and', 'another', '', 'player', 'recovered', 'in', 'the', 'end', 'zone', ')', ',', 'but', 'florida', 'immediately', '', 'the', 'call', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'january', '2', '0', '0', '2', ',', 'in', 'order', 'to', '', 'the', 'scope', 'of', 'conservation', 'efforts', 'and', 'address', 'the', 'issues', 'facing', 'thailand', \"'s\", 'elephants', ',', 'it', 'was', 'proposed', 'that', 'the', '', 'be', 'renamed', 'the', 'national', 'elephant', 'institute', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'most', 'of', 'these', '', 'in', 'southern', 'germany', '(', 'baden-württemberg', 'and', '', ')', ',', 'with', 'a', 'single', 'one', 'found', 'south', 'of', 'the', 'rhine', '(', '', '', ',', 'found', 'in', '', ',', 'switzerland', ')', ',', 'and', 'a', '', 'from', 'eastern', 'europe', '(', 'poland', ',', 'romania', ',', 'ukraine', ')', '.', '', '', '']\n", "['', 'in', 'the', '``', 'new', 'york', 'daily', 'news', \"''\", ',', '', '', 'cited', 'her', '``', '', 'charm', 'which', 'comes', 'through', 'despite', 'a', 'somewhat', '', 'role', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'now', 'lives', 'in', 'los', 'angeles', 'writing', '', ',', 'most', 'recently', 'for', '', \"'s\", '``', 'city', 'on', 'a', 'hill', \"''\", ',', 'and', 'has', 'a', '', 'series', 'in', 'development', 'based', 'on', 'her', '``', '', \"''\", 'cover', 'story', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'end', 'of', 'the', 'first', 'gulf', 'war', ',', 'the', '', 'established', 'a', 'safe', '', 'in', 'northern', 'iraq', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'career', 'as', 'a', 'merchant', '', 'during', 'the', '1', '8', '4', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'sum', 'of', 'n', '$', '4', '9', '4', '7', '2', '5', '0', '.', '6', '0', 'is', '', 'due', ',', 'owing', 'and', '', 'by', 'the', '', 'to', 'the', '', 'which', 'sum', ',', 'the', '', ',', 'despite', '', ',', 'fails', 'and/or', '', 'to', 'pay', 'to', 'the', '', '.', '', '', '', '']\n", "['', 'it', 'reached', 'number', 'two', 'on', 'the', 'uk', 'singles', 'chart', ',', '', 'three', 'weeks', 'there', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'smaller', 'metal', 'tube', ',', 'a', 'predominant', 'tone', 'appeared', 'at', '6', '1', '7', '4', '', 'and', '', 'to', '``', 'n', \"''\", '=', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'petition', 'was', 'referred', 'to', 'the', 'elections', 'committee', ',', 'but', 'no', 'report', 'was', 'made', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'if', 'you', 'ai', \"n't\", 'in', 'it', \"''\", 'was', 'released', 'november', '1', '5', ',', '2', '0', '1', '6', 'as', 'the', 'first', 'promotional', 'single', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'sister', ',', 'actress', '', '', ',', 'had', 'a', 'recurring', 'role', 'as', '', '', 'on', 'the', 'show', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'west', 'and', 'southwest', 'it', 'forms', 'part', 'of', 'the', '', 'dominated', '', 'plateau', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'probably', '(', '', ')', '', 'reached', '', 'between', '1', '2', '5', '4', 'and', '1', '2', '6', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'associated', 'with', 'the', '', 'river', 'railway', 'station', 'is', 'the', 'now', '', 'river', 'wharf', 'railway', 'station', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'is', 'an', '', '', 'representation', 'of', 'data', ',', 'which', 'shows', 'certain', 'data', 'on', 'certain', 'products', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'they', 'were', 'popular', 'in', 'european', 'countries', ',', 'and', 'toured', 'the', 'united', 'states', ',', 'they', 'found', 'their', 'main', 'success', 'outside', 'the', 'uk', 'in', 'japan', ',', 'where', 'they', 'toured', 'in', '1', '9', '8', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'river', 'has', 'always', 'been', 'a', '', 'resource', 'to', 'the', 'people', 'in', 'its', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'represented', 'switzerland', 'from', '1', '9', '9', '0', 'until', 'her', 'retirement', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'became', 'the', '', 'premier', 'league', 'leading', 'goal', '', 'on', '1', '2', 'april', '2', '0', '1', '5', 'when', 'he', 'scored', 'his', '1', '4', '8', 'th', 'goal', ',', 'in', 'his', '2', '0', 'th', 'season', 'in', 'the', '', 'league', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'gibran', 'then', 'started', '', ',', 'a', '', 'chain', ',', 'in', '2', '0', '1', '5', ',', 'and', 'the', 'chain', 'had', '2', '9', 'locations', 'in', 'indonesia', 'by', '2', '0', '1', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'johnston', 'attended', '', '', 'high', 'school', 'and', 'stanford', 'university', ',', 'where', 'he', 'worked', 'on', 'the', 'campus', 'humor', 'magazine', '``', 'stanford', '', \"''\", 'with', 'fellow', 'future', '', 'frank', 'thomas', ',', 'then', 'transferred', 'to', 'the', '', 'art', 'institute', 'in', 'his', 'senior', 'year', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'established', 'as', 'philippine', 'postal', '', 'bank', 'in', '1', '9', '0', '6', ',', 'the', 'bank', 'was', 'closed', 'in', '1', '9', '7', '6', 'as', 'a', 'result', 'of', 'competition', 'with', 'privately', 'owned', 'banks', ',', 'but', 'was', '', 'in', '1', '9', '9', '4', '', 'to', 'the', '', 'of', 'republic', 'act', 'no', '.', '', '']\n", "['', '', 'was', 'a', 'music', 'magazine', 'published', 'from', '1', '9', '4', '2', 'to', '1', '9', '9', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'played', '', '', 'on', '``', 'the', 'young', 'and', 'the', '', \"''\", 'in', '2', '0', '1', '5', ',', 'and', 'appeared', 'on', 'the', '', '``', '', 'the', '', \"''\", 'from', '2', '0', '1', '6', 'to', '2', '0', '1', '7', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'has', 'received', 'two', 'young', '', 'awards', ',', 'the', 'best', 'best', 'young', '', 'award', 'of', 'the', 'indian', '', 'society', 'in', '1', '9', '9', '7', 'and', 'the', 'young', '', 'award', 'of', 'the', 'department', 'of', 'science', 'and', 'technology', 'in', '2', '0', '0', '3', '.', '', '', '', '', '', '', '', '']\n", "['', 'historian', 'william', '', 'concluded', 'that', '``', 'the', '', 'to', 'prevent', 'fighting', 'of', 'any', 'kind', 'made', 'it', 'impossible', 'for', 'the', 'monarchy', 'to', 'protect', 'itself', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'city', 'in', '', 'county', ',', 'california', ',', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'the', 'last', '', \"''\", '(', '1', '9', '8', '4', ')', 'used', 'computer', 'generated', '', 'instead', 'of', 'physical', 'scale', 'models', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'he', 'left', '', ',', 'he', 'went', 'to', 'work', 'for', 'the', 'national', 'water', 'and', '', 'corporation', '(', '', ')', 'and', 'was', 'posted', 'to', '', 'as', 'area', 'manager', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', '', 'army', 'announced', 'many', 'times', 'that', 'its', 'soldiers', 'would', 'leave', 'the', 'barracks', ',', 'particularly', 'in', '1', '9', '9', '8', 'and', '2', '0', '0', '0', ',', 'it', 'did', \"n't\", 'happen', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'later', 'on', 'in', 'the', 'united', 'states', 'this', '', 'will', 'see', 'his', 'leader', 'in', 'the', 'figure', 'of', 'dr.', 'william', 'stewart', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'is', 'the', 'second', 'album', 'by', 'the', 'singer-songwriter', 'andrew', 'gold', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'abbott', 'missed', 'the', 'battle', 'of', '', 'because', 'he', 'was', '', 'with', '', 'fever', 'and', '', 'over', 'the', 'death', 'of', 'his', 'brother', 'at', '', 'mountain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", 'is', 'a', 'song', 'written', 'and', 'recorded', 'by', 'british', 'singer-songwriter', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'than', 'basic', '', 'which', 'its', 'groups', 'must', '', 'vote', 'to', 'follow', ',', 'npc', '', 'itself', 'to', '', 'and', 'advice', 'and', 'acts', 'as', 'a', 'court', 'of', 'final', 'appeal', 'in', 'any', 'college', '', 'difficulty', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'hours', 'later', ',', '3', ':', '0', '0', 'am', 'on', 'july', '4', ',', '1', '9', '5', '3', ',', 'the', 'prison', 'security', 'let', '', '', 'gas', 'on', 'the', 'inmates', 'and', 'they', 'return', 'to', 'their', 'cells', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', '', 'which', 'worlds', 'to', 'include', 'in', 'the', 'game', ',', 'the', 'development', 'staff', 'tried', 'to', 'take', 'into', 'account', 'worlds', 'with', 'disney', 'characters', 'that', 'would', 'be', 'interesting', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', '', 'reaches', 'of', 'the', 'township', 'is', 'big', '', 'of', 'the', 'colorado', 'state', 'recreation', 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'of', 'nine', 'national', 'trails', 'in', 'england', ',', 'the', 'yorkshire', '', 'way', 'is', 'a', 'long-distance', '', 'which', 'runs', 'the', 'length', 'of', 'the', '', 'from', 'the', '', 'bridge', 'at', '', 'to', '', 'on', 'the', 'coast', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'weekly', 'program', 'focuses', 'on', 'the', 'seattle', 'art', 'scene', ',', '', 'deep', 'into', 'local', 'talent', 'and', 'telling', 'artists', 'stories', 'through', 'interviews', 'and', 'media', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'second', 'floor', '``', '', 'de', '', \"''\", 'provides', 'an', '', 'meeting', 'place', 'for', 'students', ',', 'visiting', 'scholars', ',', 'and', 'the', 'french', 'graduate', 'students', 'association', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", '3', '8', '', 'rank', 'sixth', 'all', 'time', 'in', 'ncaa', 'history', ',', 'and', 'her', '8', ',', '0', '6', '4', ':', '0', '2', 'minutes', 'in', 'goal', 'rank', 'ninth', 'on', 'the', 'ncaa', 'list', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'played', 'two', 'seasons', 'in', 'nippon', 'professional', 'baseball', 'for', 'the', '', '', 'in', '-', ',', 'and', 'one', 'season', 'in', 'the', 'korea', 'baseball', 'organization', 'for', 'the', '', '', 'in', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'edition', 'dead', 'or', 'alive', '5', 'ultimate', ':', '', 'was', 'released', 'on', '2', '4', 'december', '2', '0', '1', '3', ',', 'distributed', 'by', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'sr', '1', '1', '7', 'begins', 'near', '', 'national', 'military', 'park', 'at', 'an', 'intersection', 'with', 'sr', '1', '4', '2', 'between', '', 'and', '', ',', 'in', 'a', 'community', 'known', 'as', 'west', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'solid', 'and', 'liquid', '', '', ',', 'if', '', 'applied', 'in', 'a', 'location', ',', 'may', 'be', 'moved', 'through', '', 'in', 'to', '', 'water', 'sources', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'airline', 'was', 'renamed', '``', '', 'airlines', \"''\", 'in', '2', '0', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'that', 'time', ',', '', 'high', 'and', '', 'high', 'schools', 'were', 'combined', 'as', 'an', 'integrated', '', 'high', 'school', 'under', 'one', 'roof', 'until', '1', '9', '7', '9', 'when', 'faculty', 'and', 'students', 'relocated', 'to', 'the', 'current', 'north', '', 'campus', ',', '2', '6', '0', '1', 'north', 'queen', 'street', '.', '', '', '', '']\n", "['', 'finally', ',', 'after', 'a', '', ',', 'sullivan', 'was', 'classified', 'as', 'a', '', 'and', 'scheduled', 'for', 'burial', 'in', '', \"'s\", 'field', 'despite', 'his', '', 'clothing', 'and', '``', '', \"''\", 'diamond', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'russell', '', 'that', 'case', 'started', 'his', 'bank', 'with', 'money', 'that', 'he', 'received', 'from', 'the', 'nazis', 'for', '', 'services', ',', 'resulting', 'in', 'the', 'deaths', 'of', 'many', 'jews', 'during', 'world', 'war', 'ii', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'to', 'be', 'expelled', 'from', 'the', '', 'order', 'and', '', 'immediately', 'thereafter', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', '1', '8', '1', '6', 'and', 'regent', '', '', 'and', 'the', 'seventh', '', 'lama', 'followed', '', 'from', '', ',', 'the', '', '', \"'\", 'which', 'led', 'them', 'to', '', 'him', 'at', 'the', 'age', 'of', 'two', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'had', 'many', 'other', 'projects', ',', 'including', '', ',', 'stress', 'factor', '9', ',', '', 'it', 'big', 'time', ',', 'ground', 'zero', ',', 'iron', '', ',', '', ',', '', '', ',', 'and', 'the', '4', '5', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'agent', 'would', 'be', 'administered', '', ',', '', ',', 'or', 'directly', 'to', 'the', '', 'or', '', 'via', 'an', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'all', 'those', 'born', 'after', '1', 'january', '1', '9', '6', '1', 'will', 'be', 'eligible', 'to', 'collect', 'their', '', 'at', '6', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'self-titled', 'debut', 'lp', 'was', 'released', 'in', '1', '9', '7', '3', 'by', '', 'records', ',', 'a', 'subsidiary', 'label', 'of', 'mgm', 'records', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'reno', 'plans', 'to', 'kill', 'nancy', 'and', 'her', 'family', 'in', 'order', 'to', 'make', 'sure', 'no', 'one', 'is', 'in', 'the', 'way', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '``', 'ross', '', \"''\", 'is', 'a', 'radio', 'ship', ',', 'the', 'home', 'of', 'radio', 'caroline', ',', 'as', 'well', 'as', 'having', 'supported', 'radio', '', 'and', 'various', 'religious', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'upper', 'house', 'senate', 'has', '4', '7', 'members', ',', '4', '0', 'of', 'whom', 'are', 'elected', 'for', '', 'terms', 'in', '', 'constituencies', 'by', 'the', 'local', '', ',', 'half', 'renewed', 'every', 'two', 'years', ',', 'and', '7', 'presidential', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', '', 'at', 'dawn', 'the', 'next', 'day', 'by', '', 'as', '', 'for', 'the', 'killing', 'of', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'to', 'man', 'fort', '', \"'s\", 'of', '', ',', 'barnard', 'designated', 'a', 'force', 'of', '1', '6', '5', 'men', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'stamford', 'hill', 'shomrim', 'have', 'on', 'many', 'occasions', 'received', 'public', 'praise', 'from', 'the', 'higher', 'ranks', ',', 'as', 'on', 'one', 'occasion', 'by', 'metropolitan', 'police', 'superintendent', 'david', '', 'after', 'a', 'successful', 'double', 'arrest', 'for', '', 'on', 'the', 'vulnerable', ',', 'and', 'have', 'been', '', 'by', 'deputy', 'mayor', 'for', '', 'and', 'crime', 'stephen', '', '.']\n", "['', 'art', 'historians', '', '', \"'s\", '``', 'delicate', 'and', 'precise', 'style', \"''\", 'and', '``', 'characteristic', '', 'of', 'proportion', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'new', 'system', 'makes', 'it', 'possible', 'to', 'purchase', 'and', 'sell', '', 'on', 'the', 'same', 'day', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '7', ',', 'the', 'name', 'was', 'changed', 'again', 'to', 'america', \"'s\", '', 'store', 'to', 'reflect', 'a', 'switch', 'to', 'exclusively', 'selling', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'word', '``', '', \"''\", 'is', 'derived', 'from', 'the', 'greek', 'meanings', 'of', '``', '', \"''\", '(', '', ',', '``', 'air', \"''\", ')', 'and', '``', '', \"''\", '(', '', ',', '``', 'labour', \"''\", ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thomas', 'introduced', 'the', 'first', 'lady', 'at', 'the', '2', '0', '1', '3', 'kids', \"'\", 'state', '', ',', 'and', 'also', 'joined', 'her', 'at', 'the', '2', '0', '1', '3', 'state', 'of', 'the', 'union', 'address', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', ',', 'also', 'romanized', 'as', '', '', ')', 'is', 'a', 'village', 'in', '', 'rural', 'district', ',', 'in', 'the', 'central', 'district', 'of', '', 'county', ',', '', 'and', '', 'province', ',', 'iran', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'place', 'is', 'important', 'in', '', '', 'characteristics', 'and/or', 'a', 'high', 'degree', 'of', 'creative', 'or', 'technical', 'achievement', 'in', 'new', 'south', 'wales', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'dam', 'is', 'currently', 'being', 'constructed', 'to', '', 'the', 'river', \"'s\", 'flow', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'taking', 'into', 'account', 'the', '', 'requirements', 'of', 'the', '', 'and', 'the', '', 'changes', ',', 'overall', ',', 'the', '', 'and', 'changes', 'enhanced', 'the', 'opera', ',', 'and', 'the', 'result', 'was', 'that', 'it', 'was', 'a', 'critical', 'and', 'a', 'popular', 'success', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', ',', 'also', 'romanized', 'as', '', '', ')', 'is', 'a', 'village', 'in', '', '', 'rural', 'district', ',', 'in', 'the', 'central', 'district', 'of', '', 'county', ',', '', 'province', ',', 'iran', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'medical', 'officer', 'attending', 'later', 'concluded', ':', '``', 'the', 'cause', 'of', 'death', 'in', 'my', 'opinion', 'was', '', '', ',', 'the', '', 'attack', 'having', 'been', 'brought', 'on', 'by', 'physical', '', 'during', 'a', 'night', 'exercise', 'under', 'very', 'cold', 'conditions', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'made', 'by', 'the', 'proper', 'authority', 'who', 'has', '``', 'care', 'of', 'the', 'community', \"''\", ',', 'and', 'not', '', 'imposed', 'by', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', '', 'and', '', '', '', ',', 'he', 'later', 'moved', 'to', 'ireland', ',', 'and', 'made', 'his', 'debut', 'for', 'the', 'ireland', 'cricket', 'team', 'in', '2', '0', '0', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'he', 'would', 'often', 'make', 'red', 'perform', 'these', '', 'for', 'him', ',', 'citing', 'his', 'poor', 'health', 'as', 'leaving', 'him', 'unable', 'to', 'do', 'it', 'on', 'his', 'own', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'explained', 'that', 'this', 'was', 'related', 'to', 'the', 'poverty', ',', 'saying', '``', 'you', 'need', 'people', 'in', 'a', 'society', 'to', 'have', 'reached', 'a', 'certain', 'standard', 'of', 'living', 'before', 'they', 'can', 'be', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'also', '', 'the', '', '', 'camps', 'at', '', ',', 'algeria', ',', 'where', 'its', 'headquarters', 'are', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '2', 'the', 'club', 'embarked', 'on', 'a', 'trip', 'to', 'eastern', 'europe', ',', 'where', 'they', 'were', 'one', 'of', 'the', 'first', 'american', 'groups', 'to', 'visit', 'the', 'new', 'country', 'of', '', ',', 'which', 'had', 'recently', 'declared', 'independence', 'from', 'the', '', 'soviet', 'union', '.', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'a', '', 'vocalist', ',', 'pianist', ',', 'and', 'guitarist', 'and', 'is', 'doing', 'stage', 'performances', 'from', 'the', 'age', 'of', '1', '2', '', 'got', 'married', 'on', 'january', '2', '9', 'th', ',', '2', '0', '1', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'chicago', '', 'election', 'of', 'april', '1', '8', '4', '4', ',', 'independent', 'democrat', '', '', 'defeated', 'democratic', 'incumbent', '', '', 'and', '', 'party', 'nominee', 'henry', 'smith', 'by', 'a', '9', 'point', 'margin', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'tradition', 'of', '', \"'s\", '', 'is', 'that', '', 'had', '', '', 'while', 'reading', 'on', 'a', '', 'winter', 'evening', 'in', 'the', 'library', ',', 'which', 'was', 'located', 'next', 'to', 'the', 'room', 'in', 'which', 'the', 'lodge', 'was', 'meeting', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'mediterranean', 'horse', '', 'is', 'an', 'important', 'resource', 'in', 'the', 'mediterranean', 'sea', 'and', 'the', 'black', 'sea', 'region', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'dedicated', 'to', 'the', 'methodist', 'church', ',', 'helping', 'to', 'establish', 'grace', 'methodist', 'church', 'in', '', 'and', 'serving', 'as', 'president', 'of', 'the', 'local', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', '', 'of', 'the', 'project', 'in', '1', '9', '9', '6', ',', 'development', 'of', 'the', '', 'object', '', 'was', 'continued', 'with', 'the', 'university', 'of', 'edinburgh', 'releasing', 'version', '1', '.', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'water', '', 'through', 'the', 'park', 'to', 'the', '', 'river', 'cuts', 'deep', 'into', 'the', 'terrain', ',', 'forming', '', 'and', '', 'slopes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'main', 'industry', 'sectors', 'represented', 'in', 'the', 'city', 'of', '', 'were', 'retail', ',', 'health', ',', 'manufacturing', ',', 'transport', ',', 'tourism', ',', 'education', ',', 'construction', ',', 'business', 'services', ',', 'agriculture', ',', 'and', 'government', 'services', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'jack', ',', '', 'and', 'the', 'woman', 'leave', 'town', 'and', '', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', '', 'are', '', 'at', 'the', 'time', 'of', 'the', 'data', 'set', '', '(', 'creation', ')', ',', 'for', 'example', 'with', 'job', 'control', 'language', 'codice_', '3', 'statements', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'ski', 'raid', 'is', 'a', 'stage', 'of', 'la', 'grande', 'course', 'that', 'includes', 'the', 'most', 'important', 'ski', '', 'competitions', 'of', 'the', 'season', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'basic', 'conditions', 'for', 'a', 'collective', 'work', 'are', 'that', 'there', 'must', 'be', 'a', '', ',', '', 'or', '', ',', 'and', 'the', 'work', 'must', 'not', 'be', 'joint', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'appeared', 'posthumously', 'in', 'august', '2', '0', '1', '8', 'in', 'a', '', '', 'documentary', 'that', '', '', ',', 'and', 'makes', 'her', 'decide', 'to', 'give', 'the', 'factory', 'back', 'to', 'the', '', 'after', 'hearing', '', 'mention', 'how', 'much', 'his', 'family', 'means', 'to', 'him', '.', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'time', 'for', '', 'who', 'is', 'who', 'to', 'come', 'together', 'as', 'one', 'to', 'take', 'part', 'in', 'development', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'traditional', 'landed', 'interests', 'held', 'their', 'own', 'politically', 'in', 'the', 'face', 'of', 'the', 'rapidly', 'growing', 'urban', 'middle', 'classes', ',', 'for', 'the', 'electoral', 'reforms', 'of', '', 'were', 'less', '', 'in', 'scotland', 'than', 'in', 'england', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'and', '', 'bay', 'electric', 'railway', 'operated', 'an', 'electric', 'tramway', 'service', 'between', '', 'and', '', 'from', '1', '9', '0', '7', 'and', 'extended', 'to', '', 'bay', 'in', '1', '9', '0', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'also', 'learned', 'from', 'the', 'founder', 'of', 'the', '', 'style', ',', '', '', ',', 'and', 'was', 'one', 'of', 'the', 'last', 'living', '``', '', \"''\", '(', '', 'of', '', ')', 'to', 'have', 'done', 'so', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mother', 'west', 'is', 'a', 'record', 'label', 'based', 'in', 'new', 'york', 'city', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'resolution', 'and', '', 'power', ',', 'when', 'defined', 'in', 'this', 'way', ',', 'are', 'consistent', 'with', '', '', 'for', '', ',', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'many', 'sand', 'beaches', 'along', 'the', '', 'when', 'not', 'at', 'flood', 'stage', 'and', 'camping', 'is', 'allowed', 'along', 'some', 'of', 'these', 'beaches', 'for', 'free', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', 'to', 'nasa', 'mission', 'support', ',', '', 'time', 'is', 'provided', 'to', 'astronomers', 'and', '', 'scientists', 'at', 'the', 'university', 'of', 'hawaii', 'and', 'university', 'of', 'arizona', 'and', '', 'at', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'population', 'was', '1', ',', '0', '2', '4', 'as', 'of', '2', '0', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'agreed', 'that', 'an', 'allied', 'general', 'reserve', 'be', 'set', 'up', ',', 'under', '', 'with', 'henry', 'wilson', 'as', 'his', 'deputy', ';', '', 'was', '', 'to', 'hand', 'over', 'divisions', 'to', 'the', 'general', 'reserve', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'won', 'the', '', '', 'title', 'with', 'a', 'quick', '', 'over', 'kent', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'without', 'infantry', 'support', ',', 'sheridan', 'did', 'not', 'press', 'his', 'divisions', 'to', 'carry', 'the', 'attack', 'by', 'themselves', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'four', 'and', 'a', 'half', 'hours', 'after', '', ',', 'he', 'again', 'was', 'pronounced', 'dead', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '(', 'while', '', 'usually', '', 'on', 'the', 'top', 'of', 'the', 'chest', 'three', 'times', ',', 'then', 'once', 'on', 'the', 'side', ',', 'fred', 'often', 'did', 'various', '', '', 'to', 'open', 'it', '.', ')', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'current', 'resident', 'artist', 'and', 'program', 'director', 'is', '', 'queen', 'who', 'provides', 'support', 'to', 'a', '', 'group', 'of', 'book', 'artists', 'who', 'teach', 'classes', 'and', 'sponsor', 'events', '', 'and', 'supporting', 'the', 'arts', 'of', 'the', 'book', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'element', 'of', 'chair', 'step', '', 'by', 'many', 'bands', 'is', 'a', 'horn', '', 'or', '', 'that', 'is', 'executed', 'during', 'the', 'march', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'beginning', 'at', 'the', 'age', 'of', '1', '4', ',', 'he', 'worked', 'in', 'his', 'father', \"'s\", 'clerk', 'of', 'the', 'county', 'court', 'office', 'for', 'about', 'six', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'native', 'american', 'reservation', 'was', 'one', 'of', 'three', 'established', 'during', 'this', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '8', ',', 'he', 'was', 'appointed', '', 'of', 'the', 'congregation', 'for', 'the', 'causes', 'of', 'saints', ',', 'where', 'he', 'served', 'until', '1', '9', '9', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'maintains', 'an', 'office', 'in', 'beverly', 'hills', ',', 'but', 'their', 'last', 'production', 'credit', 'was', 'in', '1', '9', '8', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '9', ',', 'at', 'the', '', 'video', 'game', 'awards', ',', 'he', 'earned', 'the', 'best', 'voice', 'award', 'for', 'the', 'voice', 'of', 'eddie', '', 'in', '``', '', 'legend', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'hit', 'was', '``', '', '', '', \"''\", 'and', '``', 'mi', '', 'no', '', 'a', '', \"''\", 'alongside', '', 'which', 'was', 'not', 'a', 'single', 'on', 'the', 'album', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'two', 'prototype', 'aircraft', 'were', 'built', ',', 'but', 'the', 'end', 'of', 'world', 'war', 'ii', 'changed', '', 'and', 'the', 'advent', 'of', 'the', 'jet', 'engine', 'gave', 'an', 'alternative', 'way', 'toward', 'achieving', 'high', 'speed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'noah', 'was', '6', '0', '0', 'years', 'old', 'when', 'the', 'flood', 'of', 'water', 'came', 'upon', 'the', 'earth', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'developed', 'and', 'imposed', 'restrictions', 'on', 'sunday', 'commerce', 'during', 'his', '', 'term', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'book', 'is', '', 'for', 'its', 'colorful', '', 'of', '', 'at', 'the', 'beginning', 'of', 'the', '2', '0', 'th', 'century', ',', 'but', 'also', 'for', '', 'the', 'conservative', 'thesis', '', 'at', '``', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'waititi', 'had', 'earlier', '', 'wearing', '', ',', 'describing', 'them', 'as', '``', 'colonial', '', '[', 's', ']', \"''\", 'during', 'his', '', 'speech', 'last', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'competed', 'at', 'the', '2', '0', '0', '8', 'and', '2', '0', '1', '2', 'olympic', 'games', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', 'its', '', 'in', '2', '0', '1', '3', 'until', 'the', 'introduction', 'of', 'the', 'crash', '', 'championship', 'in', 'late', '2', '0', '1', '7', ',', 'the', '', 'championship', 'was', 'the', 'highest', 'profile', 'singles', 'championship', 'in', 'the', 'promotion', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'and', 'vice-president', '(', 'academic', ')', 'is', 'the', 'university', \"'s\", 'senior', 'academic', 'officer', ',', 'with', 'responsibility', 'for', 'providing', 'academic', 'vision', 'at', 'the', 'university', 'and', 'leadership', 'in', 'all', 'matters', '', 'to', 'students', 'and', 'academic', 'staff', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'episode', '5', ':', 'the', 'fifth', 'episode', 'focuses', 'on', 'the', 'nation', \"'s\", 'capital', ',', 'london', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'and', 'her', 'brother', 'thomas', '', 'live', 'on', 'the', 'estate', 'of', 'their', '', 'parents', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'miguel', 'is', 'captured', 'by', 'a', 'male', 'white', '', 'named', '', '', 'but', '', 'himself', 'and', '', '', ',', 'but', 'the', '', 'hybrid', 'children', 'of', '', 'and', '', ',', '', ',', 'buster', ',', 'silhouette', ',', '', 'and', '', 'escape', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'because', 'of', 'the', '', 'as', 'to', 'which', 'line', 'was', 'to', 'run', 'west', ',', 'and', 'which', 'northwest', ',', 'this', 'charter', 'gave', 'the', 'virginia', 'company', 'either', 'about', 'of', 'eastern', 'north', 'america', ',', 'or', 'about', '', 'of', 'the', 'entire', 'continent', ',', 'extending', 'to', 'the', 'pacific', 'ocean', '.', '', '', '', '', '', '']\n", "['', 'on', '2', '2', 'may', '1', '9', '9', '1', ',', 'after', 'the', 'end', 'of', 'the', 'gulf', 'war', ',', 'speicher', \"'s\", 'status', 'was', 'changed', 'to', 'killed', 'in', '', 'not', 'recovered', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'any', 'case', ',', 'in', 'may', '1', '9', '6', '4', ',', '', 'acquired', 'advanced', 'information', 'systems', 'from', 'hughes', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'unlike', 'the', '', 'of', 'other', 'properties', 'which', 'belonged', 'to', 'the', '', 'family', ',', 'such', 'as', '', '(', 'which', 'lay', 'within', 'a', 'major', '', 'near', '', 'and', 'so', 'was', 'considered', '', 'by', 'pollution', 'from', 'the', 'surrounding', 'coal', 'mines', ')', ',', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'did', 'his', 'first', '', 'in', 'a', 'national', 'wide', 'ad', 'with', 'him', '(', '', '', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'eventually', 'the', 'group', 'became', '', ',', 'an', '', 'for', '``', '', 'over', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'november', '2', '1', ',', '2', '0', '0', '6', ',', 'the', 'rapids', '', 'king', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'are', 'also', 'known', 'to', 'feed', 'on', '', 'and', 'to', 'damage', 'them', 'to', 'some', 'extent', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'visits', 'can', 'also', 'be', 'arranged', 'to', 'the', 'meat', 'works', ',', '', ',', 'where', 'the', 'cattle', 'is', '', 'and', 'the', 'meat', 'is', '', 'or', 'used', 'for', '', 'production', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'such', ',', 'the', 'group', 'takes', 'pride', 'in', 'being', 'a', 'responsible', 'operator', 'and', 'a', 'good', 'corporate', 'citizen', 'in', 'all', 'communities', 'where', 'it', 'operates', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'letters', 'were', 'presented', 'in', 'turn', 'to', 'cardinal', '', 'and', '', 'him', 'to', 'buy', 'the', 'necklace', 'for', 'the', 'queen', 'or', 'so', 'he', 'thought', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'consists', 'of', 'two', 'spans', 'of', '', 'howe', '', ',', 'resting', 'on', 'stone', '', 'and', '', 'which', 'have', 'been', 'partially', 'faced', 'in', 'concrete', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'of', 'angels', 'is', 'the', 'first', 'studio', 'album', 'and', 'major', 'japanese', 'release', 'by', 'south', 'korean', 'girl', 'group', '', ',', 'it', 'was', 'released', 'on', 'october', '1', '4', ',', '2', '0', '1', '5', 'through', 'universal', 'music', 'japan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'around', 'the', 'building', 'at', 'the', 'first', 'floor', '', '', 'added', 'a', '', '', 'in', 'his', '', 'of', '1', '7', '9', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'made', 'her', 'television', 'debut', 'in', '2', '0', '1', '1', 'with', 'life', '', \"'s\", '``', '', '', '', '', \"''\", 'where', 'she', 'played', 'the', 'protagonist', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'construction', 'was', 'completed', 'in', '3', '2', 'months', ',', 'and', '', 'set', 'the', 'launch', 'date', 'for', '3', '0', 'march', '2', '0', '0', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', '', \"''\", 'occurs', 'in', '', 'habitats', 'and', 'in', '', 'and', '', 'at', '', 'of', 'above', 'sea', 'level', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'became', 'chief', 'judge', 'on', 'june', '1', ',', '2', '0', '1', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'son', '', 'participated', 'in', 'the', '', 'trade', 'and', 'was', '', 'of', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mount', 'stanley', 'has', 'several', 'subsidiary', '', ',', 'with', '', 'peak', 'being', 'the', 'highest', 'point', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'potatoes', 'and', 'sweet', 'potatoes', 'were', 'particularly', '', 'as', 'they', 'grew', 'in', '', 'and', 'on', '', 'that', 'were', 'previously', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '2', 'it', 'expanded', 'its', 'growing', 'federal', 'operations', ',', 'bringing', '5', '0', '0', 'local', 'jobs', 'to', '', 'new', 'york', 'and', 'pennsylvania', ',', 'including', 'more', 'than', '3', '2', '5', 'jobs', 'in', '', ',', 'ny', 'and', 'more', 'than', '1', '2', '5', 'jobs', 'to', '', ',', '', '.', '', '']\n", "['', '', 'is', 'a', 'surname', 'of', 'french', '', 'origin', ',', 'derived', 'from', 'the', '', '', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'whatever', 'form', 'you', 'came', 'back', 'as', 'would', 'limit', 'the', 'way', 'in', 'which', 'you', 'could', 'interact', 'with', 'other', 'characters', 'in', 'the', 'game', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'special', 'case', 'of', 'this', 'is', 'the', '', 'double', 'cover', 'of', 'a', '', '', ',', 'where', 'the', 'corresponding', 'line', 'bundle', 'is', 'the', '', 'bundle', 'of', 'the', '', 'bundle', '(', 'see', 'below', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'also', 'an', 'elected', 'township', 'fiscal', 'officer', ',', 'who', 'serves', 'a', 'four-year', 'term', 'beginning', 'on', 'april', '1', 'of', 'the', 'year', 'after', 'the', 'election', ',', 'which', 'is', 'held', 'in', 'november', 'of', 'the', 'year', 'before', 'the', 'presidential', 'election', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', '', 'i', 'did', 'not', '', 'the', '', 'throne', 'from', 'his', 'father', ',', 'but', 'conquered', 'it', 'later', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'has', 'had', 'little', 'effect', 'on', 'the', 'use', 'and', '', 'of', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'vision', 'to', '', 'the', 'whole', 'of', 'india', 'far', '', 'his', 'father', 'and', 'family', \"'s\", 'vision', 'and', 'so', 'he', '', 'out', 'and', 'started', 'his', 'independent', '', ',', '', '', 'hair', 'and', 'beauty', ',', 'in', '2', '0', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', '', 'as', 'the', 'greatest', '', 'trainer', 'of', 'all', 'time', ',', 'and', 'referred', 'to', 'as', 'the', '', 'king', \"'\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'teaching', 'career', '', 'from', '1', '9', '5', '2', 'to', '1', '9', '8', '6', ',', 'at', 'the', 'école', 'des', 'beaux-arts', 'de', '', ',', 'the', 'école', 'des', 'beaux-arts', 'de', '', ',', 'and', 'the', 'university', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'each', 'episode', 'focuses', 'on', 'a', 'different', 'area', 'of', 'science', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'and', '', 'found', 'that', 'some', 'of', 'the', '', '', ',', 'such', 'as', '', 'thoughts', ',', 'played', 'a', 'role', 'in', '', '', 'while', '', '', 'did', 'not', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'lexie', 'has', 'been', 'assigned', 'to', 'find', 'proof', 'that', 'carter', \"'s\", 'war', '', 'are', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'uk', 'continues', 'to', 'provide', 'support', 'for', 'data', '', 'and', 'archives', 'for', 'the', '', 'camera', 'and', 'receives', 'a', 'share', 'of', 'the', 'time', 'for', 'survey', 'projects', 'of', 'joint', 'interest', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'echo', 'lake', 'and', 'the', 'calling', 'lakes', 'chain', 'are', 'especially', 'popular', 'and', 'attract', 'many', '', 'from', 'the', 'city', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'construction', 'of', 'a', 'test', ',', 'subject', 'matter', 'experts', '(', '', ')', '', 'questions', 'that', '', 'skills', 'typically', 'required', 'of', 'students', 'for', 'that', 'content', 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'parking', '', 'on', 'private', 'land', '(', 'also', 'if', 'owned', 'by', 'the', 'city', ')', 'is', 'a', 'contract', '', 'and', 'gives', 'additional', 'parking', '', '(', '=', '', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'accompanied', 'on', 'his', 'return', 'by', '', ',', 'who', 'was', 'returning', 'after', 'recovery', 'from', 'a', 'wound', 'suffered', 'at', 'the', 'battle', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '2', '0', '0', '7', 'federal', 'election', 'the', 'most', 'popular', 'party', 'was', 'the', '', 'which', 'received', '2', '3', '%', 'of', 'the', 'vote', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'the', 'end', 'of', 'the', 'latin', 'occupation', 'of', 'this', 'part', 'of', '', ',', 'a', 'new', 'wave', 'of', 'raids', 'hit', 'the', 'monastic', 'republic', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'had', 'a', '', 'with', 'the', 'red', '', 'that', 'year', ',', '', '.', '2', '7', '9', 'with', '1', '', 'and', '7', 'rbi', 'in', '2', '5', 'games', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'principal', 'photography', 'took', 'place', 'during', '1', '8', 'days', ',', 'in', 'august', 'and', 'september', '2', '0', '0', '5', ',', 'in', 'the', '', '', 'cargo', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'band', 'posted', 'a', 'brand', 'new', 'song', 'on', 'youtube', ',', 'titled', '``', 'inner', '', \"''\", 'on', '2', '4', 'april', '2', '0', '1', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'internal', 'variables', 'are', 'linguistic', 'in', 'nature', ':', 'a', 'sound', ',', 'a', '', ',', 'and', 'a', '', 'structure', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bishop', 'smith', 'had', 'resigned', 'as', 'apostolic', '', 'when', 'he', 'fled', 'to', 'france', 'in', '1', '6', '3', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'not', 'strong', 'enough', 'to', 'hold', 'it', ',', 'and', 'on', '1', '2', 'february', '1', '6', '3', '8', 'it', 'was', '', 'by', 'henry', ',', 'count', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hunter', \"'s\", 'hill', 'rate', 'assessment', 'books', 'indicate', 'that', 'it', 'was', '', 'in', '1', '8', '6', '1', ',', '', 'completed', 'by', '1', '8', '6', '9', 'and', 'that', '', 'continued', 'to', 'add', 'rooms', 'until', '1', '8', '8', '1', 'when', 'it', 'was', 'described', 'as', 'a', '``', '1', '6', 'room', 'hotel', \"''\", '.', '']\n", "['', 'it', 'is', 'composed', 'of', 'five', 'villages', ':', '', ',', '', ',', '', ',', '', 'and', '', 'de', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'and', '', '', '(', '', ')', 'but', 'not', 'gas', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'elected', 'the', '2', '0', '0', '9', 'winner', 'of', 'the', 'j.', 'g.', 'taylor', '', 'award', 'in', '', 'by', 'the', 'baseball', 'writers', \"'\", 'association', 'of', 'america', ',', 'for', 'the', 'national', 'baseball', 'hall', 'of', 'fame', 'and', 'museum', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'lady', '', \"'s\", 'book', ',', 'an', 'anonymous', '', '', 'with', 'a', '', 'and', '', 'on', 'welsh', '', 'as', 'follows', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', '.', '5', '2', '4', '', 'average', 'as', 'a', 'senior', 'was', 'the', 'best', 'in', 'the', '', 'league', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', '', \"''\", 'and', '``', '', '', \"''\", 'are', 'possible', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'represented', 'his', 'country', 'at', 'the', '2', '0', '0', '0', 'summer', 'olympics', '', '1', '4', 'th', 'in', 'the', 'final', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'received', 'his', '', 'at', 'the', 'university', 'of', 'bonn', 'in', '1', '9', '8', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', '', ',', 'comyn', '``', 'found', 'only', 'one', 'building', 'worth', '', ',', '', 'the', 'newly', 'erected', 'fort', 'of', 'the', 'french', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', '', 'by', 'joining', 'two', 'musical', 'genres', 'typical', 'of', 'brazil', \"'s\", 'northeast', 'region', ':', '', 'and', '(', '', '', ')', ',', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'former', 'malta', 'police', 'chief', 'john', '', 'has', 'said', 'there', 'was', 'enough', 'evidence', 'against', '', ',', 'and', 'he', 'can', 'not', 'explain', 'why', 'criminal', 'charges', 'were', 'not', 'brought', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'buildings', 'were', 'also', 'constructed', 'on', 'the', 'temple', \"'s\", 'premises', ',', 'including', 'an', 'senior', 'citizens', \"'\", 'center', 'in', '1', '9', '7', '6', ',', 'a', 'park', 'in', '1', '9', '8', '6', ',', 'and', 'a', '', 'in', '1', '9', '9', '6', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'jacques', '', 'was', '9', 'th', 'with', '', 'button', '', 'up', 'the', 'top', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'probably', 'the', 'most', 'accurate', 'comparison', 'is', 'by', 'known', 'pay', 'levels', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'and', '2', '0', '0', '0', 'with', 'the', 'record', 'label', '``', '', 'music', \"''\", ',', 'an', 'independent', 'christian', 'label', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'method', 'that', 'forms', '', '', 'has', 'also', 'been', 'developed', 'to', 'address', 'the', '', 'in', '', 'methods', ',', 'such', 'as', 'chemical', 'modification', 'before', '', ',', 'and', '', 'of', 'proteins', 'before', 'delivery', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '2', '0', '0', '1', 'southern', 'miss', 'golden', 'eagles', 'football', 'team', 'represented', 'the', 'university', 'of', 'southern', 'mississippi', 'in', 'the', '2', '0', '0', '1', 'ncaa', 'division', '', 'football', 'season', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'tradition', 'has', 'each', 'guest', 'at', 'a', 'st.', 'joseph', \"'s\", 'day', 'table', 'receiving', 'a', '', 'of', 'orange', ',', 'a', 'bit', 'of', '', 'and', 'a', '``', '', \"''\", '', ',', 'for', 'good', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'effect', 'from', 'december', '1', '5', ',', '2', '0', '1', '0', ',', '', 'added', 'web', 'applications', 'to', 'its', 'security', 'bug', '', 'program', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'qin', '', 'men', 'from', 'throughout', 'the', 'country', 'to', 'be', 'garrisoned', 'at', 'the', 'forts', 'north', 'of', 'ji', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'says', 'that', 'the', 'secular', 'parties', 'of', 'india', 'have', 'not', 'been', 'able', 'to', 'transfer', 'their', 'votes', 'to', 'muslim', 'candidates', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mcphee', 'joined', 'the', 'ford', 'works', 'team', 'in', '1', '9', '7', '0', ',', 'driving', 'in', 'the', 'south', 'pacific', 'touring', 'series', 'early', 'in', 'the', 'year', ',', 'and', 'was', 'given', 'his', 'own', 'phase', 'ii', '', '', 'to', 'drive', 'solo', 'at', 'the', '1', '9', '7', '0', '', '5', '0', '0', '.', '', '', '']\n", "['', 'the', 'play', 'was', '', 'for', 'production', 'in', '1', '9', '3', '8', ',', 'however', ',', 'set', '', 'with', 'the', 'broadway', 'producers', 'delayed', 'production', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'national', 'assembly', 'delegation', 'from', '', 'state', 'comprises', 'three', 'senators', 'and', 'ten', 'representatives', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'adjacent', 'school', 'is', 'the', '', '', '', '', 'ter', '', 'plant', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'higher', 'volumes', 'have', 'been', 'observed', 'on', '', 'way', 'and', 'other', 'surface', 'streets', ',', 'especially', 'during', 'peak', 'periods', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'september', '1', '8', '7', '1', ',', 'he', 'successfully', 'bid', 'on', 'and', 'received', 'a', 'contract', 'from', 'the', 'district', 'of', 'columbia', ',', 'board', 'of', 'public', 'works', ',', 'to', '', '1', '1', 'th', 'street', 'east', 'and', 'lay', '', 'on', 'the', 'same', 'street', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'australian', 'film', 'censorship', 'board', 'saw', 'fit', 'to', 'remove', 'the', 'following', 'scenes', ':', '', 'killing', 'inspector', '', 'with', 'a', '', '', ';', 'the', 'alien', 'arm', 'emerging', 'from', 'the', '', ';', 'and', '', 'shots', 'of', 'the', 'alien', 'figure', '(', 'seen', 'only', 'from', 'behind', ')', 'at', 'the', 'end', 'of', 'the', 'episode', '.']\n", "['', '``', '', \"''\", 'named', 'it', 'the', 'best', 'album', 'of', '1', '9', '9', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'missed', 'two', 'months', 'of', 'the', '2', '0', '1', '6', 'season', 'due', 'to', 'multiple', '', '', 'he', 'suffered', 'during', 'a', 'may', '2', '2', 'game', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'known', 'as', '``', '', \"'s\", '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'third', '', 'driver', '', '', 'did', 'not', 'take', 'part', 'in', 'q', '2', 'after', 'his', 'car', 'returned', 'to', 'the', '', 'at', 'the', 'end', 'of', 'q', '1', '', 'out', 'oil', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'built', 'in', '1', '7', '0', '2', 'by', 'prince', '', 'august', 'samuel', 'of', '', ',', 'it', 'served', 'as', 'the', '', 'residence', 'for', 'the', 'independent', 'duchy', 'of', '', 'from', '1', '8', '1', '6', 'until', '1', '8', '6', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'won', 'an', 'emmy', 'award', 'for', 'his', 'work', 'on', 'an', 'episode', 'of', '``', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'one', 'of', 'the', 'longest', 'existing', 'hospitals', 'in', '', 'district', 'and', '', 'kingdom', 'in', 'western', 'region', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'then', '1', '1', 'years', 'old', ',', '', '', 'and', 'put', 'out', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'architectural', 'competition', 'for', 'the', 'building', 'design', 'was', 'announced', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'designed', 'by', 'the', 'architect', 'harold', '', 'scott', 'in', 'the', 'art', '', 'style', ',', 'and', 'opened', 'on', '2', '6', 'march', '1', '9', '2', '3', 'with', 'a', '', 'capacity', 'of', '1', ',', '1', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'with', 'only', 'modest', '', 'development', 'within', '', 'led', 'to', 'political', 'maneuvering', 'against', 'first', 'party', 'secretary', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'dock', 'traditionally', 'play', 'in', 'black', 'and', 'white', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'subsequently', 'named', 'best', '', 'of', 'the', '2', '0', '1', '8', '', '', ',', 'helping', 'the', 'club', 'achieve', 'a', '3', 'rd', 'place', ',', 'securing', 'a', 'spot', 'on', 'the', 'next', 'season', \"'s\", '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'would', 'be', 'sentenced', 'to', 'life', 'imprisonment', 'at', '', 'prison', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'had', 'a', 'strong', 'start', 'to', 'the', '2', '0', '1', '3', 'indoor', 'season', 'with', 'multiple', '', 'over', 'fourteen', 'metres', ',', 'including', 'a', 'best', 'of', '1', '4', '.', '4', '8', 'm', 'in', 'saint', 'petersburg', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'her', 'graduation', 'from', 'high', 'school', 'she', 'attended', 'king', 'abdul', '', 'university', 'in', '', 'where', 'she', 'earned', 'a', 'bachelor', 'of', 'arts', 'degree', 'in', 'english', 'language', 'and', 'literature', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'south', 'part', 'of', 'the', 'zoo', 'was', 'taken', 'over', 'by', 'the', 'occupation', 'forces', ',', 'which', 'did', 'not', 'leave', 'the', 'zoo', 'until', '1', '9', '5', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'quarterly', 'subscription', 'for', 'both', 'issues', 'was', '6', 'd', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'rear', 'section', 'is', '', 'and', 'finished', 'with', 'recent', '', '', 'steel', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'example', ',', 'the', '', '3', '7', '', ',', 'with', 'landing', 'gear', 'designed', 'for', 'a', '5', '', 'impact', ',', 'could', 'use', 'a', '', 'landing', 'and', '', 'to', 'reduce', 'its', '', 'from', '3', '0', '0', 'm', 'to', '1', '0', '0', 'm', '.', '', '', '', '', '', '', '', '', '']\n", "['', '', '``', '1', '0', '1', 'things', 'a', 'man', 'must', 'do', 'before', 'he', 'dies', ',', \"''\", 'the', 'show', 'involved', 'a', 'group', 'of', 'male', '', 'of', 'different', 'ages', 'and', 'personalities', 'who', 'take', 'on', 'missions', 'that', 'would', 'make', 'them', 'a', '``', 'real', 'man', '.', \"''\", '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'of', 'the', 'opinion', 'that', 'at', 'least', 'a', 'few', 'horses', 'were', 'brought', 'from', '', 'by', 'the', 'norse', 'on', 'their', 'further', '', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', 'pronounced', '', \"'\", ')', 'is', 'the', '', 'of', '', '', 'a', '', 'singer-songwriter', ',', 'musician', ',', 'artist', ',', 'and', 'record', 'producer', 'based', 'in', 'brighton', 'and', 'signed', 'to', '', 'records', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'born', 'in', 'yorkshire', 'in', '1', '9', '0', '2', 'and', 'went', 'to', '', 'grammar', 'school', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'this', 'it', 'paid', '', 'nothing', ':', 'hughes', 'actually', 'paid', '', '$', '3', '8', ',', '0', '0', '0', 'to', 'take', 'it', ',', 'but', 'in', 'doing', 'so', '', '', 'some', 'existing', 'customer', '', 'of', 'about', 'the', 'same', 'amount', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', '', 'from', 'the', 'genus', 'of', '``', '', \"''\", 'which', 'has', 'been', 'isolated', 'from', '', 'soil', 'from', 'a', '', '(', '``', '', '', \"''\", ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'county', 'council', 'is', 'responsible', 'for', 'running', 'the', 'largest', 'and', 'most', 'expensive', 'local', 'services', 'such', 'as', 'education', ',', 'social', 'services', ',', 'libraries', ',', 'main', 'roads', ',', 'public', 'transport', ',', '', 'and', 'fire', 'services', ',', 'trading', 'standards', ',', 'waste', '', 'and', 'strategic', 'planning', '.', '', '', '', '', '', '', '']\n", "['', 'the', '``', '', \"''\", 'series', 'is', 'a', 'sequence', 'of', 'five', '(', 'as', 'of', '2', '0', '1', '2', ')', 'science', 'fiction', 'novels', 'by', '', '', 'author', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', 'june', ',', 'the', 'turkish', 'parliament', 'resumed', 'full', 'activities', 'for', 'the', 'first', 'time', 'in', '4', '8', 'days', 'since', 'a', 'hiatus', 'was', 'declared', 'due', 'to', 'the', 'pandemic', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'structural', 'information', 'on', '', '', 'membrane', '(', 'pm', ')', 'proton', '', 'are', '', 'compared', 'to', 'that', 'obtained', 'for', '', '1', 'a', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'four', '8', '0', 'east', 'is', 'a', 'canadian', '', 'jazz', 'ensemble', 'from', 'toronto', ',', 'ontario', ',', 'with', '', '', '(', '', ',', 'bass', 'and', 'guitar', ')', 'and', 'tony', 'grace', '(', '', ')', ';', 'accompanied', 'by', 'various', 'session', 'musicians', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'dr.', 'currie', 'left', 'the', 'royal', '', 'museum', 'in', 'october', '2', '0', '0', '5', 'to', 'become', 'the', 'canada', 'research', 'chair', 'with', 'the', 'biological', 'sciences', 'department', 'at', 'the', 'university', 'of', 'alberta', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'talpur', 'dynasty', 'was', 'established', 'in', '1', '7', '8', '3', 'by', 'mir', '', 'ali', 'khan', ',', 'who', 'declared', 'himself', 'the', 'first', '``', '', \"''\", ',', 'or', '', 'of', '', ',', 'after', 'defeating', 'the', '', 'at', 'the', 'battle', 'of', '', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'rate', 'for', 'the', 'municipality', ',', ',', 'was', '0', '%', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'first', 'book', ',', '``', '', '', \"''\", '(', '``', '', '', '', \"''\", ')', '(', '1', '8', '9', '1', ')', ',', 'grew', 'out', 'of', 'this', 'experience', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'project', 'was', 'completed', 'in', '1', '9', '1', '8', 'and', 'entered', 'the', 'state', 'highway', 'system', 'on', 'august', '2', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'nevertheless', ',', 'several', '', 'masters', 'and', 'several', 'provincial', '', '', 'to', 'these', 'new', '', ',', 'and', 'more', 'particularly', 'to', 'the', 'article', 'which', '', 'that', 'masters', 'must', 'be', 'elected', 'by', 'the', '', 'of', 'their', 'lodge', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'only', 'two', 'automatic', '', 'going', 'to', 'the', 'final', 'from', 'each', 'heat', ',', 'the', 'first', '', '', 'three', 'former', 'world', 'champions', 'into', 'one', 'race', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'rated', 'as', 'one', 'of', 'the', 'top', 'seven', 'time', '', 'of', 'the', 'star', '', 'franchise', 'by', '``', '', \"''\", 'in', '2', '0', '1', '9', ',', 'especially', 'for', 'his', 'time', 'traveling', 'adventures', 'in', '``', 'trials', 'and', '', \"''\", 'and', '``', \"''\", '.', '', '', '', '', '', '', '', '']\n", "['', 'to', 'the', 'south', 'it', 'borders', 'the', 'so-called', '``', 'alsace', '', \"''\", '(', 'german', ':', '``', '', '', \"''\", ')', ',', 'which', 'belongs', 'to', 'the', 'arrondissement', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', '', '', 'in', 'an', 'elite', 'artistic', 'circle', 'perhaps', 'inspired', 'by', 'the', '1', '9', '2', '0', 's', '', 'village', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'among', 'the', '', 'of', 'the', 'course', ':', 'business', 'planning', ',', 'financial', 'management', ',', 'modern', 'experience', 'in', 'the', 'development', 'of', 'social', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'new', 'long', 'church', 'was', 'built', 'on', 'the', 'same', 'site', 'which', 'was', 'completed', 'in', 'the', 'early', '1', '6', '3', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'services', 'offered', 'at', 'the', 'course', 'include', 'a', 'driving', 'range', 'with', '5', '0', '', ',', 'golf', 'school', ',', 'golf', 'shop', ',', 'putting', 'green', ',', 'and', '', 'bar', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'along', 'with', 'his', 'relative', 'alfred', 'p.', 'white', ',', 'his', 'father', ',', 'and', 'his', 'brother', 'christian', '', 'white', ',', 'robert', 'white', 'became', 'an', 'active', 'and', 'influential', 'member', 'of', 'the', 'hampshire', 'county', 'bar', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'term', '``', 'lord', \"'s\", 'supper', \"''\", 'refers', 'both', 'to', 'the', 'biblical', 'event', 'and', 'the', 'act', 'of', '``', 'holy', '', \"''\", 'and', '', '(', '``', '', \"''\", ')', '', 'within', 'their', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'examples', 'include', '1', ',', '2', ',', '4', '', '', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '6', 'she', '', 'so', '', 'productions', 'in', 'rome', 'with', 'sarah', '', 'and', '', '', 'miller', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'castle', 'of', 'magic', 'is', 'a', 'platform', 'game', 'developed', 'and', 'published', 'by', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'several', 'other', '', 'have', 'been', 'created', 'or', 'are', 'created', 'when', 'the', 'river', 'don', 'is', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'commonly', '', 'as', 'perkins', 'saying', '``', 'i', \"'ll\", 'wait', 'here', '[', '', 'safe', ']', 'while', 'jim', '[', 'does', 'something', 'or', 'other', 'with', 'the', 'dangerous', 'animal', ']', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'stadium', 'has', 'a', 'capacity', 'of', '4', ',', '3', '0', '0', 'which', 'includes', '1', ',', '8', '0', '0', 'seats', '(', '8', '0', '0', 'covered', ',', '1', ',', '0', '0', '0', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'such', 'variables', 'include', 'the', '', 'status', 'of', 'a', '', \"'s\", 'parents', ',', 'age', 'of', 'acquisition', ',', 'and', 'educational', 'background', '(', 'home', 'acquisition', 'or', 'residence', 'schools', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'identity', 'element', 'of', 'the', 'group', 'is', 'the', 'class', 'determined', 'by', 'the', 'following', 'form', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'of', 'the', '``', 'chicago', '', \"''\", 'noted', 'the', 'performance', 'of', 'the', 'cast', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', ';', ')', 'is', 'a', 'commune', 'located', 'in', '', 'county', ',', '', ',', 'romania', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'this', 'time', 'creelman', 'was', 'faced', 'with', 'financial', 'issues', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'where', 'formula_', '2', 'is', 'the', '', 'length', ',', 'and', 'formula_', '3', 'is', 'the', 'diameter', 'of', 'the', 'entrance', '', '(', '``', 'effective', '', \"''\", ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'an', '', 'medical', 'official', ',', 'by', 'performing', '8', '3', '', 'in', 'six', 'hours', ',', 'the', 'doctor', 'had', '', '', '', '', 'to', 'perform', 'no', 'more', 'than', '3', '0', '', 'per', 'day', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'offered', 'to', 'return', 'to', '', 'in', 'company', 'of', 'recognized', '', 'to', '', 'the', '', 'of', 'the', '', 'contained', 'in', 'his', 'compilation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'is', 'also', 'on', 'the', '', 'panel', 'for', 'the', 'soil', 'association', 'organic', 'food', 'awards', '&', 'amp', ';', '', 'ethical', 'awards', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'hit', 'below', 'the', '', '', 'the', 'after', 'engine', 'room', ',', 'and', 'four', 'seconds', 'later', ',', 'the', 'second', 'hit', 'further', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'and', 'while', '', 'is', 'an', 'extremely', 'important', 'part', 'of', 'the', 'landscape', 'of', 'this', 'year', ',', 'everything', 'plays', 'into', 'that', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'it', 'turned', 'out', 'that', 'he', 'had', 'completely', 'thought', 'up', 'this', 'song', 'all', 'by', 'himself', ',', 'he', 'recorded', 'it', 'and', 'it', 'became', 'the', 'most', 'often', 'covered', 'pop', 'song', 'in', 'the', 'world', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'officially', ',', '', '3', '.', '2', '0', 'still', 'used', 'the', '', '3', '.', '0', 'format', ',', 'but', 'codice_', '1', 'and', 'codice_', '2', 'were', 'adapted', 'to', 'support', 'a', '6', '', 'longer', 'format', 'already', '(', 'of', 'which', 'not', 'all', 'entries', 'were', 'used', ')', '.', '', '', '', '', '', '', '', '']\n", "['', 'after', 'this', ',', '', 'worked', 'on', 'fred', 'allen', \"'s\", 'staff', 'and', 'wrote', 'for', '', 'marx', ',', 'before', 'serving', 'in', 'the', 'u.s.', 'air', 'force', 'during', 'world', 'war', 'ii', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'mohammed', '', \"'s\", '1', '0', '2', 'nd', 'birthday', '', 'were', 'held', 'in', 'mumbai', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'designated', 'as', 'the', '``', '', 'amir', \"''\", \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '1', ',', 'on', '', \"'s\", 'retirement', 'from', '``', 'scientific', 'american', \"''\", ',', 'the', 'column', 'was', 'replaced', 'by', 'douglas', '', \"'s\", '``', '', '', \"''\", ',', 'a', 'name', 'that', 'is', 'an', '', 'of', '``', 'mathematical', 'games', \"''\", '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'urine', 'is', '', 'for', 'features', 'that', 'promote', 'stone', 'formation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'viewers', 'learn', 'that', 'many', 'of', 'these', 'children', 'are', '', 'because', 'of', 'the', 'war', 'in', '', 'and', 'that', 'some', 'of', 'the', 'children', 'will', 'be', 'sent', 'to', 'fight', 'this', 'very', 'same', 'war', 'once', 'their', 'training', 'is', 'complete', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'best', '', 'chart', 'debuted', 'that', 'week', ',', 'followed', 'by', 'a', '', 'chart', 'on', 'the', 'week', 'of', 'december', '1', '0', ',', '1', '9', '4', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'typically', 'contain', 'one', 'or', 'more', '', ',', 'used', 'to', '', 'the', 'immune', 'response', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'accordance', 'to', 'a', 'plan', 'laid', 'out', 'in', 'an', 'october', '1', '8', '6', '1', 'report', 'by', 'general', 'barnard', ',', '``', 'rear', 'line', \"''\", 'forts', 'were', 'to', 'receive', 'one', 'man', 'per', 'yard', 'of', 'fort', '', 'when', 'fully', 'garrisoned', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'design', 'won', 'an', 'award', 'and', 'recognition', 'by', 'the', 'u.s.', 'department', 'of', 'state', 'foreign', 'building', 'operations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'fishes', 'with', '', '(', '', ')', 'appeared', 'during', 'the', 'next', '', 'period', ',', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '9', ',', 'she', 'was', 'seen', 'in', 'the', '', 'film', '``', '', '', '', 'to', '', \"''\", 'opposite', 'danish', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '4', '``', '', \"''\", 'printed', 'an', 'article', 'by', '', '', 'defending', 'the', 'role', 'of', 'islam', 'in', 'bringing', 'democracy', 'to', 'the', 'middle', 'east', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '', \"'s\", 'native', 'australia', ',', '``', 'any', 'dream', 'will', 'do', \"''\", 'peaked', 'at', 'number', '9', '2', 'on', 'the', 'aria', 'singles', 'chart', 'in', 'august', '1', '9', '9', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'research', 'into', '', 'violence', 'at', 'two', 'public', 'hospitals', 'in', 'mexico', '', 'the', '', 'experiences', 'for', 'one', 'month', 'of', '2', '0', '1', '2', 'found', 'that', 'physical', '', ',', '', '', ',', 'and', 'discrimination', 'occurred', 'openly', 'throughout', 'the', 'facilities', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'received', '', 'years', \"'\", 'imprisonment', 'and', '', '', 'received', '1', '5', 'years', \"'\", 'imprisonment', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'george', 'of', '', 'has', 'been', 'suggested', 'as', 'a', 'possible', 'author', 'of', 'the', '', '', 'to', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'either', 'side', 'of', 'the', 'interstate', ',', 'the', '', 'transition', 'from', 'farms', 'to', 'residential', 'subdivisions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'followed', 'this', 'essay', 'with', 'a', 'shorter', 'opinion', 'piece', 'for', 'the', '``', 'new', 'york', 'times', \"''\", ',', '``', 'i', 'no', 'longer', 'believe', 'in', 'a', 'jewish', 'state', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'once', 'both', 'teams', 'agree', 'on', 'the', 'delivery', '', ',', 'the', 'document', 'is', 'signed', 'by', 'both', 'teams', 'and', 'put', 'into', 'some', 'kind', 'of', 'document', 'control', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', '', 'actual', 'page', 'size', 'and', 'others', '', 'the', '``', 'printed', 'area', \"''\", 'size', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'king', 'was', '', 'by', '', \"'s\", 'beauty', 'and', '', 'married', 'her', ',', 'promoting', 'her', 'to', 'the', 'rank', 'of', 'first', 'queen', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', ',', 'there', 'were', '1', '1', '9', 'people', 'who', 'were', 'single', 'and', 'never', 'married', 'in', 'the', 'municipality', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'martin', 'of', 'the', '``', 'san', '', 'express', \"''\", 'stated', 'that', 'the', 'show', 'would', '``', 'appeal', 'to', '', 'selena', 'fans', 'and', 'musical', 'theatre', 'fans', 'who', 'are', 'looking', 'for', 'something', 'new', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'main', 'technique', 'used', 'in', 'water', 'is', 'suction', 'feeding', 'and', 'is', 'used', 'by', 'most', 'aquatic', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'heavily', 'struck', 'by', 'the', '', 'reduction', 'in', 'state', 'defence', 'order', 'and', 'the', '', 'of', 'military', 'r', '&', 'amp', ';', 'd', 'after', '1', '9', '9', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'perception', 'of', 'a', 'simple', '', '(', 'like', 'a', 'sound', 'of', 'a', 'given', '', ')', 'can', 'normally', 'not', 'be', 'trained', 'to', 'function', 'below', 'its', '', 'threshold', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'group', 'of', 'farmers', 'came', 'to', 'their', 'aid', ',', 'using', '', 'to', 'lift', 'the', 'car', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'did', 'not', 'race', 'in', 'round', '6', 'either', 'due', 'to', 'a', 'date', 'clash', 'with', 'his', '', '', 'f', '1', 'team', 'demonstration', 'driver', 'duties', ',', 'and', 'did', 'not', 'compete', 'in', 'the', 'final', 'round', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'at', 'the', 'eastern', '', 'to', 'the', 'important', 'ancient', '', 'crossing', 'of', 'the', '', 'and', 'evidence', 'of', 'transport', 'related', 'archaeological', 'remains', 'dating', 'from', '', 'times', 'have', 'been', 'discovered', 'close', 'to', 'the', 'great', 'engineering', 'structures', 'of', 'the', 'canal', 'and', 'railway', 'ages', '.', '', '', '', '', '', '', '', '']\n", "['', 'they', 'form', 'a', '', 'group', 'distinct', 'and', '', 'from', '', 'in', 'mainland', 'asia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'words', '1', '4', 'variations', 'are', '', 'in', 'this', 'inner', 'pentagon', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'the', 'years', '', ',', '', 'continued', 'to', '', 'on', 'the', 'yakama', 'reservation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'final', 'integration', 'and', 'verification', 'will', 'be', 'performed', 'at', '', '', 'space', 'in', 'italy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'of', 'the', 'company', ',', '', '', 'and', '', '', ',', 'continued', 'as', 'minority', '', 'and', '', 'of', 'social', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'march', '1', '9', '1', '3', ',', 'during', 'the', 'first', 'balkan', 'war', ',', 'the', 'greek', 'army', 'entered', '', 'after', '', 'the', 'ottoman', '', 'at', '', ',', 'and', 'soon', 'afterwards', 'advanced', 'further', 'north', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'team', \"'s\", 'statistical', 'leaders', 'included', '', 'mike', '', 'with', '6', '0', '0', '', 'yards', ',', 'bob', '', 'with', '4', '2', '8', 'passing', 'yards', ',', 'and', 'ken', '', 'with', '1', '0', '2', 'receiving', 'yards', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'bridge', 'is', 'covered', 'by', 'a', '', 'metal', '', 'roof', ',', 'and', 'is', '', 'in', '', 'boarding', 'that', 'extends', 'only', '', 'to', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'june', '2', '0', '1', '2', ',', '', 'audio', 'announced', 'having', 'been', 'signed', 'to', '', 'music', ',', 'and', 'released', '``', 'bright', 'black', 'heaven', \"''\", 'on', 'september', '1', '1', ',', '2', '0', '1', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'episode', 'features', '', '', 'from', 'the', '', 'drama', 'series', '``', 'breaking', 'bad', \"''\", ',', 'which', 'had', 'been', '', 'since', 'it', 'was', 'reported', 'as', 'early', 'as', 'the', 'year', 'before', 'by', '``', 'entertainment', 'weekly', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'crystal', 'structures', 'of', 'a', 'number', 'of', 'these', 'proteins', 'show', 'that', 'they', 'share', 'the', 'same', 'architecture', '-', 'two', '', '', 'between', 'which', 'the', '', 'group', 'is', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'states', 'that', 'her', 'tale', 'about', '', \"'s\", 'adoption', 'was', 'a', 'lie', ',', 'told', 'to', '', '', \"'s\", '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', '', '', 'of', 'the', 'city', 'was', 'built', 'in', 'the', '1', '2', 'th', 'century', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'of', 'his', 'works', 'have', 'been', 'engraved', ',', 'along', 'with', 'works', 'of', 'other', 'local', '', ',', 'into', '', 'in', 'madison', ',', 'to', 'serve', 'as', 'a', 'permanent', 'memorial', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'were', 'no', 'high', 'volume', '', 'in', 'any', 'industry', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'war', '', 'returned', 'to', 'work', 'as', 'a', 'lecturer', 'in', 'the', 'royal', 'academy', 'of', 'fine', 'arts', ',', 'and', 'even', 'though', 'his', 'sight', 'had', 'been', 'damaged', 'during', 'his', '', ',', 'he', 'continued', 'to', 'paint', 'and', 'draw', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'february', '2', '0', '0', '9', ',', '', 'collected', 'the', 'biggest', '', 'of', 'his', 'career', 'by', '', 'a', 'final', 'round', '6', '4', 'at', 'the', '', '', 'open', 'to', 'finish', 'as', 'joint', 'runner-up', ',', 'just', 'one', '', 'behind', 'winner', 'anthony', '', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'because', 'an', 'olympic', 'size', 'swimming', 'pool', 'is', '5', '0', 'metres', 'long', ',', 'this', 'race', 'consisted', 'of', 'eight', 'lengths', 'of', 'the', 'pool', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'cardinal', '', 'are', 'permitted', 'to', 'do', 'after', 'ten', 'years', ',', 'he', '', 'for', 'the', 'order', 'of', 'cardinal', '', 'and', 'his', '', 'church', 'was', 'elevated', 'pro', '', 'vice', 'to', 'the', 'rank', 'of', 'title', 'on', '9', 'january', '1', '9', '9', '9', '.', '', '', '', '', '', '', '', '', '']\n", "['', '', 'continues', 'his', 'research', 'projects', 'about', '', 'and', '', '', ',', 'the', 'role', 'of', '', 'and', 'arab', 'nationalism', 'in', 'north', 'african', 'and', 'the', 'middle', 'east', ',', 'the', '', 'conflict', ',', 'ethnic', 'relations', ',', 'the', 'applications', 'of', 'holocaust', 'policies', 'in', 'north', 'africa', 'and', '', 'relations', 'in', 'the', 'modern', 'period', '.', '']\n", "['', 'women', 'first', 'enrolled', 'in', 'the', 'college', 'in', '1', '9', '5', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'within', 'two', 'days', 'about', '8', '0', '%', 'of', 'the', 'employees', 'involved', 'had', 'returned', 'to', 'work', 'and', 'subsequent', '', 'soon', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'the', 'american', 'civil', 'war', 'began', 'in', '1', '8', '6', '1', ',', '', 'and', 'alexander', 'hunter', '(', '2', 'nd', ')', 'left', 'the', '', 'plantation', 'to', 'join', 'confederate', 'forces', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', '', ',', 'father', 'michael', '', ',', 'brings', 'her', 'to', 'the', 'attention', 'of', '', '', ',', 'a', 'gay', '1', '9', 'year', 'old', 'drug', 'user', 'and', '', ',', 'in', 'the', 'hopes', 'he', 'can', 'be', 'reformed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'autumn', 'of', '1', '9', '4', '2', ',', '5', '1', 'medium', '', 'embarked', 'at', 'liverpool', 'and', 'arrived', 'in', 'egypt', 'in', 'october', 'to', 'join', 'middle', 'east', 'forces', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'high', 'mortality', 'and', '', 'caused', 'by', '``', 'p.', '', \"''\", 'has', 'placed', 'great', '', 'pressure', 'on', 'the', 'human', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'law', '#', '1', 'of', 'august', '4', ',', '1', '9', '5', '2', 'of', 'the', 'commonwealth', 'of', 'puerto', 'rico', 'established', 'a', 'full', 'state', 'holiday', 'on', 'july', '2', '5', 'of', 'every', 'year', ',', 'to', 'be', 'known', 'as', 'puerto', 'rico', 'constitution', 'day', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'system', 'is', 'based', 'on', '6', '°', '', 'with', 'a', 'central', '', 'of', '3', '7', '°', 'east', 'and', 'a', 'scale', 'factor', 'at', 'origin', '(', '', ')', '=', '0', '.', '9', '9', '9', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'derived', 'from', '', 'techniques', 'employed', 'in', 'chinese', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'not', 'signed', 'by', 'any', 'nba', 'teams', 'after', 'his', '3', '-year', 'contract', 'with', 'the', '', '', 'in', '2', '0', '0', '2', ',', 'so', 'he', 'moved', 'his', 'career', 'overseas', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'october', '2', '0', '1', '8', ',', 'he', 'was', 'named', 'in', 'cape', 'town', 'blitz', \"'s\", 'squad', 'for', 'the', 'first', 'edition', 'of', 'the', '', 'super', 'league', 't', '2', '0', 'tournament', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'st.', 'michael', 'the', '', 'cathedral', '(', ')', 'also', '', 'cathedral', 'is', 'the', 'main', 'catholic', 'temple', 'of', 'the', 'city', 'of', '', 'in', 'the', 'state', 'of', '', 'and', 'of', 'the', 'diocese', 'of', '', 'in', 'mexico', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'singles', '``', '', \"''\", 'and', '``', 'ca', \"n't\", 'keep', '', 'my', 'phone', \"''\", 'were', 'both', '', 'at', 'bbc', \"'s\", '6', 'music', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'subsequently', ',', 'they', 'formed', 'burns', 'family', 'studios', 'and', 'started', 'a', '', 'campaign', 'in', '2', '0', '1', '1', 'to', 'fund', 'the', 'costs', 'of', 'production', ',', 'raising', '$', '2', '4', ',', '0', '1', '0', 'of', 'their', '$', '2', '0', ',', '0', '0', '0', 'goal', '.', '', '', '', '', '', '', '']\n", "['', 'he', 'passed', 'all', 'the', 'tests', 'and', 'was', 'brought', 'to', '', 'but', 'official', 'recognition', 'was', 'delayed', 'until', '1', '8', '2', '2', 'when', 'he', 'was', '', 'and', '', 'by', 'the', 'seventh', '', 'lama', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'lake', 'is', 'named', 'after', 'john', 'mullett', ',', 'who', ',', 'together', 'with', 'william', 'a.', '', ',', 'made', 'a', 'federal', 'survey', 'of', 'the', 'area', 'from', '1', '8', '4', '0', 'to', '1', '8', '4', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'those', 'who', 'came', 'to', 'speak', 'for', 'him', 'in', 'the', 'constituency', 'included', 'liberal', 'mp', '', '', ',', 'expelled', 'labour', 'mps', 'sir', 'stafford', '', 'and', 'george', '', 'and', 'other', 'public', 'figures', 'such', 'as', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'took', 'the', 'lead', 'soon', 'after', 'the', 'start', ',', 'fought', 'off', 'several', '', ',', 'and', '', 'away', 'in', 'the', 'straight', 'to', 'win', 'by', 'one', 'and', 'a', 'quarter', 'lengths', 'from', 'prospect', 'park', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'public', 'school', 'students', 'in', '', 'are', 'mostly', '', 'for', '', '.', '6', '0', 'and', '', '.', '2', '2', ',', 'and', '', '.', '5', '1', '(', '', 'intermediate', 'school', ')', 'or', '', '.', '7', '2', '(', '', '', 'intermediate', 'school', ')', ',', 'as', 'well', 'as', 'port', 'richmond', 'high', 'school', '.', '']\n", "['', 'the', 'population', 'was', '3', 'as', 'of', '2', '0', '0', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '1', '7', ',', 'he', 'was', 'made', 'professor', 'at', 'the', 'royal', 'swedish', 'academy', 'of', 'arts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'produced', 'film', '', ',', 'the', 'film', 'emotional', '', ',', 'and', 'time', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'lies', 'approximately', 'north', 'of', '', 'and', 'east', 'of', 'the', 'regional', 'capital', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'added', 'grant', 'johnson', 'when', '', '', 'back', 'his', 'input', 'to', 'focus', 'on', 'his', 'other', 'band', ',', 'the', '', 'eyes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'duke', 'of', '', ',', 'appointed', 'by', 'louis', 'the', 'german', ',', 'headed', 'in', '8', '7', '3', 'the', '', 'against', 'the', '', ',', 'who', 'had', '', '', 'under', 'the', 'danish', 'leader', '', ',', 'and', 'destroyed', 'and', '', 'large', 'parts', 'of', 'the', 'country', '.', '', '', '', '', '', '', '']\n", "['', 'the', 'force', 'of', '4', '0', '0', 'men', 'that', '', 'brought', 'with', 'him', 'to', 'meet', 'jacob', 'in', '', 'the', '3', '1', '8', 'men', 'with', 'whom', 'abraham', 'defeated', 'four', 'kings', 'and', 'rescued', 'lot', 'in', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'the', '1', '7', '9', '4', 'construction', 'was', 'never', 'completed', ',', 'the', 'company', \"'s\", 'successor', ',', 'the', 'union', 'canal', 'was', 'faced', 'with', 'the', 'same', 'challenges', 'of', '', 'the', 'canal', 'bed', 'to', '', 'water', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'became', '``', 'escadrille', 'n', '7', '3', '``', 'on', '4', 'july', '1', '9', '1', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'w', '', '', ')', ',', 'written', 'under', 'the', '', 'name', '', '', '(', '', 'means', '', \"'\", ')', 'became', 'his', '', 'debut', 'in', '1', '9', '0', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'of', 'this', 'tour', 'was', 'the', 'inaugural', 'men', 'of', 'song', 'festival', 'hosted', 'by', 'the', 'brisbane', 'boys', \"'\", 'college', 'in', 'which', '1', '4', '0', 'pupils', 'participated', 'in', 'a', 'workshop', 'and', 'joint', 'concert', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'joseph', '', 'trees', 'was', 'a', 'college', 'football', 'player', 'at', 'the', 'university', 'of', 'pittsburgh', ',', 'the', 'first', 'athlete', 'to', 'receive', 'an', 'athletic', '', 'at', 'the', 'school', ',', 'and', ',', 'possibly', ',', 'an', 'early', 'professional', 'football', 'player', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'stars', 'with', 'even', 'less', 'hydrogen', 'remaining', 'may', 'produce', 'the', 'uncommon', 'type', '', '', ',', 'where', 'there', 'is', 'so', 'little', 'hydrogen', 'remaining', 'that', 'the', 'hydrogen', 'lines', 'in', 'the', 'initial', 'type', 'ii', 'spectrum', '', 'to', 'the', 'appearance', 'of', 'a', 'type', '', '', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'creelman', 'suffered', 'several', 'broken', '', 'as', 'well', 'as', 'a', 'severe', '', 'of', 'the', 'brain', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'mitchell', 'plain', 'is', 'a', '', 'area', 'in', 'indiana', 'of', 'relatively', 'low', 'relief', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'the', 'first', '', 'awarded', 'with', 'the', 'medal', 'and', 'a', 'title', 'of', 'an', 'honorary', 'member', 'of', 'the', 'polish', '', 'society', '(', '', '', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'played', 'a', '', 'of', 'youth', 'test', 'and', '', 'cricket', 'matches', 'for', 'pakistan', 'international', 'airlines', 'between', '1', '9', '7', '7', 'and', '1', '9', '7', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'also', 'the', 'very', 'famous', 'princess', '', 'a', 'car', 'which', 'includes', 'all', 'types', 'of', 'cars', 'from', 'sports', 'to', '', 'and', 'even', '', 'is', 'located', 'in', 'block', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'fort', 'was', 'built', 'with', 'name', '``', '', \"''\", '(', '``', 'deer', \"''\", ')', 'on', 'the', 'place', 'where', 'the', '', 'supposedly', 'stepped', 'out', 'of', 'the', 'forest', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'plans', 'to', '', 'the', 'site', 'and', 'open', 'it', 'to', 'the', 'public', 'as', 'a', 'tourist', '', ',', 'observatory', 'and', '', '', 'post', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'even', 'though', 'his', 'car', 'was', 'still', 'running', 'near', '', 'at', 'the', 'end', 'of', 'the', '5', '0', '0', 'miles', ',', 'mcphee', 'finished', 'second', 'after', 'following', 'team', 'orders', 'not', 'to', 'pass', 'his', 'teammate', ',', 'lead', 'driver', 'allan', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'music', 'then', 'was', '', 'in', 'a', 'new', 'direction', ',', '', 'less', 'on', '', '', 'and', 'more', 'on', '', 'pop', '', 'while', '', 'enough', 'of', 'their', '', 'influence', 'to', 'bridge', 'the', 'gap', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'then', 'it', 'fell', 'to', '1', ',', '0', '0', '0', '', 'in', 'october', ',', 'and', 'by', 'april', '1', '9', '4', '5', 'to', '4', '0', '0', '', 'a', 'week', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '6', '3', '5', 'the', '', 'besieged', 'hanau', ',', 'which', 'ramsay', 'defended', 'with', 'the', 'greatest', 'skill', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', ',', 'she', 'is', 'a', '', 'from', 'the', 'university', 'of', 'costa', 'rica', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'october', '1', '9', '8', '3', ',', 'the', '', 'stars', 'had', 'the', 'first', 'selection', 'in', 'the', 'major', 'indoor', 'soccer', 'league', 'draft', 'but', '', 'their', 'pick', 'with', 'the', 'cleveland', 'force', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bbc', 'and', 'studio', 'aka', 'produced', 'a', 'second', 'series', 'in', 'early', '2', '0', '1', '6', ',', 'with', 'the', 'first', 'episode', 'airing', 'in', 'the', 'united', 'kingdom', 'on', '2', '6', 'september', '2', '0', '1', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'majority', 'of', '', 'facilities', 'in', 'the', '', 'are', '', 'by', 'the', '', 'electricity', 'and', 'water', 'authority', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'charity', 'tip', '', 'is', 'additionally', 'maintained', 'at', 'the', 'front', 'desk', ',', 'and', 'a', '', 'charity', 'is', 'selected', 'to', 'receive', 'the', '', 'change', 'that', 'is', 'collected', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'white', '', 'a', 'conversation', 'with', 'russell', ',', 'who', 'allows', 'her', 'to', 'enter', 'the', 'bank', 'and', '', 'the', 'contents', 'of', 'the', 'box', ',', 'which', 'include', 'documents', 'from', 'nazi', 'germany', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'a', 'popular', 'route', 'is', '', 'over', 'and', 'over', ',', 'holds', 'may', 'become', '', 'and', 'closer', 'to', 'breaking', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'on', 'the', 'nature', 'of', 'the', 'soul', ',', 'the', 'work', 'contains', '', 'and', '', 'discussions', 'of', 'various', '', 'of', 'the', 'soul', ',', 'most', 'notably', 'that', 'of', 'johann', '', 'in', '``', 'de', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'rough', 'version', 'of', '``', 'the', '', \"'s\", '', \"''\", 'was', 'also', 'shown', 'that', ',', 'according', 'to', 'one', '', ',', 'had', 'the', 'crowd', '', 'and', '', '``', 'until', 'their', 'hands', 'were', 'red', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'initial', 'budget', 'was', 'only', '5', '0', '0', ',', '0', '0', '0', '', 'that', '', '', 'and', 'félix', '', 'helped', 'to', 'collect', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'rules', 'prohibited', 'players', 'and', 'coaches', 'from', 'the', '', 'to', 'compete', 'in', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '``', '', \"''\", 'only', '', 'meat', 'he', 'has', '', 'himself', ',', 'which', 'his', 'hosts', 'then', 'prepare', 'both', 'for', 'him', 'and', 'themselves', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'dutch', '', 'and', '', 'assistant', '', 'adrian', '', 'was', 'posted', 'from', '1', '9', '4', '9', 'to', '1', '9', '5', '1', 'in', 'the', '', '', 'trust', 'territory', 'of', '', 'as', '', 'commissioner', 'for', '', 'independence', ',', '', 'was', 'assigned', 'as', 'his', 'assistant', '.', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '2', '4', ',', 'he', 'became', 'the', 'owner', 'of', 'the', '', '', 'company', ',', 'set', 'up', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', '(', 'born', 'c.', '1', '9', '6', '4', ')', ',', 'has', 'three', 'children', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', ')', 'is', 'a', 'village', 'in', '', 'county', ',', 'greater', 'poland', 'voivodeship', ',', 'in', '', 'poland', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'says', 'that', 'a', 'set', '', 'is', 'a', 'positive', 'density', 'point', 'if', 'every', 'effectively', 'closed', 'class', 'containing', '', 'has', 'positive', 'lower', '', 'density', 'at', '', '', ',', '', ',', 'miller', ',', 'and', '', 'showed', 'that', 'a', '', 'is', '', '', '', 'it', 'is', 'a', 'positive', 'density', 'point', '.', '', '']\n", "['', 'he', 'is', 'a', '1', '9', '8', '5', 'graduate', 'of', 'pennsylvania', 'state', 'university', ',', 'and', 'he', 'received', 'that', 'university', \"'s\", 'oswald', 'award', 'for', 'achievement', 'in', 'journalism', 'and', 'mass', 'media', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'crop', 'damages', 'also', 'contribute', 'largely', 'to', 'annual', 'crop', 'losses', 'in', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'later', 'admitted', 'that', 'his', 'team', 'was', 'not', 'good', 'on', 'fuel', '', 'during', 'the', 'race', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'found', 'some', 'early', 'critics', 'upon', 'arriving', 'in', 'chicago', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', \"'s\", 'managing', 'company', ',', 'the', '', 'clark', 'waste', 'management', '', '(', '', ')', 'was', 'incorporated', 'on', 'the', 'same', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'despite', 'the', 'byzantine', 'efforts', ',', 'the', '', 'managed', 'to', 'close', 'up', 'to', 'the', 'walls', 'and', '', 'them', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'used', 'to', 'control', '', ',', '', ',', 'and', 'woody', 'plants', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'length', 'of', 'an', 'adult', 'shell', 'varies', 'between', '5', 'mm', 'and', '1', '3', '0', 'mm', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'pays', 'de', '', 'has', 'a', 'total', 'of', '4', '7', 'municipalities', 'and', 'covers', 'the', 'part', 'of', 'the', 'northern', '', 'regional', 'nature', 'park', 'that', 'lies', 'within', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'milliken', 'died', 'from', 'a', 'heart', 'attack', 'at', 'his', 'home', 'in', '', 'city', ',', 'michigan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'lies', 'approximately', 'north', 'of', '', ',', 'north', 'of', 'sokółka', ',', 'and', 'north-east', 'of', 'the', 'regional', 'capital', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'petrol', 'engine', 'gets', 'equipped', 'with', 'a', '5', '-speed', 'manual', 'transmission', '', 'as', 'well', 'as', 'a', '6', '-speed', 'automatic', 'transmission', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'name', 'was', 'chosen', 'between', 'the', 'australian', 'symbol', '', 'done', 'by', 'fan', 'in', 'the', 'official', 'team', 'site', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'grant', 'department', 'store', ',', 'a', 'perry', 'drug', 'stores', '', ',', 'and', 'approximately', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'then', 'stripped', 'of', 'all', 'his', 'political', 'posts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'façade', 'has', 'a', 'latter', 'addition', 'of', 'a', '', '', 'extension', 'with', 'windows', 'which', '', 'the', 'gardens', 'on', 'this', 'side', 'of', 'the', 'hall', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'reunited', 'and', 'played', 'on', 'june', '1', '4', ',', '2', '0', '1', '0', 'at', 'le', '', '', 'in', 'new', 'york', 'city', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'winning', 'entry', 'was', 'a', 'drawing', 'by', 'milan', '', 'that', 'depicted', '', 'white', 'and', '', 'de', '', 'as', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'sum', 'of', '', '1', '0', ',', '0', '0', '0', 'and', '', '', 'a', 'national', 'competition', 'for', 'the', 'design', 'of', 'the', 'new', 'stadium', 'in', 'february', '1', '9', '2', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'network', '', 'by', 'the', 'additional', '', 'and', '', 'of', 'new', 'vessels', 'in', 'the', 'process', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'contrast', ',', 'with', 'six', 'fewer', 'electrons', ',', '', 'chloride', 'is', 'a', '', 'ring', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'some', 'racing', '', ',', 'a', '', '', '', 'angle', 'from', 'side', 'to', 'side', 'to', 'promote', '', 'with', 'less', '', 'angle', '(', '', '', ')', ',', 'while', 'other', 'underwater', '', 'take', 'care', 'of', '', '(', '', 'motion', ')', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'has', 'since', 'the', '', 'of', 'the', 'fia', 'world', '', 'championship', 'in', '2', '0', '1', '4', 'hosted', 'world', '', 'of', 'norway', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'honorary', '', 'who', 'served', 'for', '2', '4', 'years', 'was', '', '', '', 'raised', 'substantial', '', 'and', 'was', 'involved', 'in', 'the', 'edinburgh', 'and', 'barry', '', 'facilities', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'musical', 'expertise', 'created', 'an', 'effect', 'of', '', 'when', 'it', 'came', 'to', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'year', \"'s\", 'ncaa', '', 'championships', 'were', 'hosted', 'at', 'the', 'wildcat', 'mountain', 'ski', 'area', 'near', 'jackson', ',', 'new', 'hampshire', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'december', '2', '0', '1', '7', ',', 'documents', 'released', 'under', 'the', 'freedom', 'of', 'information', 'act', 'showed', 'that', '', 'had', 'invested', '$', '1', '0', '0', 'million', 'in', 'gene', 'drive', 'research', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'attended', 'clark', 'university', 'when', 'g.', 'stanley', 'hall', 'was', 'a', 'leading', 'teacher', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ryan', 'was', 'awarded', 'the', '2', '0', '0', '7', 'johnny', '', 'golden', 'arm', 'award', ',', 'presented', 'annually', 'to', 'the', 'nation', \"'s\", 'most', 'outstanding', 'college', 'senior', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'slot', 'is', 'a', 'tower', 'of', 'power', 'album', 'released', 'in', '1', '9', '7', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', '', 'are', 'usually', 'found', 'on', 'vegetation', 'near', '', ',', 'pools', ',', 'and', 'lakes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'managed', 'by', 'the', 'polish', 'basketball', 'league', '(', '', ')', 'and', 'was', 'held', 'in', 'warsaw', ',', 'in', 'the', 'arena', '', 'in', 'february', '2', '0', '1', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'no', 'relationship', 'between', 'the', 'two', 'patrons', 'has', 'been', 'established', ',', 'except', 'for', 'an', '', 'document', 'from', 'the', '', 'century', ',', 'which', '', 'van', '', \"'s\", 'intention', 'to', 'buy', '', \"'s\", '``', '', \"'s\", 'shop', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'over', 'the', 'next', 'few', 'months', ',', 'graham', 'murdered', 'four', 'more', 'alpine', 'manor', 'patients', ',', 'wood', 'alleged', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'indeed', ',', 'in', 'the', '', ',', 'the', 'last', 'almost', 'completely', 'orchestrated', 'score', 'pages', 'are', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', '', 'a', '', 'signal', ',', 'duke', 'learns', 'that', 'aliens', 'are', 'attacking', 'los', 'angeles', 'and', 'have', '', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'red', '', '', '', '', ',', 'on', 'his', 'third', 'straight', 'finals', 'appearance', ',', 'converted', '', 'as', 'mark', '', 'was', \"n't\", 'able', 'to', 'get', 'support', 'from', 'his', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'accepted', 'that', '', 'did', 'not', '', 'to', '', 'performance', 'but', 'said', 'he', 'was', 'at', '', ',', 'even', 'if', 'not', 'significantly', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'organisation', 'manages', '', 'gardens', 'at', '', 'in', 'richmond', 'upon', 'thames', 'in', 'southwest', 'london', ',', 'and', 'at', '', ',', 'a', 'national', 'trust', 'property', 'in', '', 'which', 'is', 'home', 'to', 'the', 'internationally', 'important', '', 'seed', 'bank', ',', 'whose', 'scientists', 'work', 'with', 'partner', 'organisations', 'in', 'more', 'than', '9', '5', 'countries', '.', '']\n", "['', 'after', 'being', '', 'used', ',', '', 'moved', 'to', 'fellow', '', '', 'team', '', '', 'in', '2', '0', '1', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'we', 'both', 'own', 'the', 'land', ',', 'let', \"'s\", 'maintain', 'the', 'peace', 'for', 'love', 'and', 'development', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'ruled', 'that', '2', '0', '-year-old', 'justin', 'clark', ',', 'who', 'suffered', 'from', 'cerebral', '', ',', 'was', 'mentally', '', 'to', 'make', 'his', 'own', 'decisions', 'and', 'should', 'not', 'be', 'forced', 'into', 'the', '', 'of', 'his', 'parents', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'and', 'tilottama', 'had', 'been', 'college', '', 'and', 'were', 'married', 'in', '1', '9', '8', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'his', 'retirement', 'from', 'the', 'post', 'in', '1', '9', '2', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'civil', 'war', 'dr.', 'hall', 'had', 'served', 'as', 'a', 'volunteer', '', 'in', '', \"'s\", 'army', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'anne', 'marie', \"'s\", 'writing', 'has', 'also', 'appeared', 'in', '``', 'image', 'magazine', \"''\", ',', '``', 'the', 'irish', 'times', \"''\", ',', '``', 'the', 'irish', 'independent', \"''\", ',', '``', 'the', 'evening', 'echo', \"''\", ',', 'and', 'in', 'several', 'short', 'story', 'collections', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", 'began', 'its', 'final', 'journey', 'to', 'australia', ',', 'to', 'be', '', ',', 'on', '1', '3', 'june', '2', '0', '1', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'part', 'of', 'tna', ',', 'he', 'made', 'appearances', 'for', 'new', 'japan', '', '(', '', ')', 'and', 'the', '', '', 'federation', '(', '', ')', ',', 'holding', 'the', '', '', 'championship', 'once', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", '', 'was', 'in', 'use', 'for', 'fifty', 'years', ',', 'from', '1', '8', '0', '8', 'to', '1', '8', '5', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'previously', 'shadow', 'minister', 'for', 'sport', 'between', 'october', '2', '0', '1', '6', 'and', 'january', '2', '0', '2', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'\", 'refers', 'to', '', 'processes', 'occurring', 'or', '', 'in', 'a', 'galaxy', 'nucleus', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'this', 'was', '', 'following', 'a', 'ruling', 'that', 'he', 'had', 'had', 'a', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'concert', 'was', 'to', 'mark', 'his', '2', '1', 'years', 'in', 'the', 'music', 'business', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'instance', ',', '', '', 'must', 'be', 'designed', 'for', '', '', 'motion', ',', 'which', 'refers', 'to', 'any', '', 'time', 'and', 'effort', 'required', 'to', '', 'a', 'product', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'his', 'speech', '', 'his', 'candidacy', ',', 'duncan', '', 'his', 'strong', 'support', 'for', 'president', '', 'b.', 'johnson', \"'s\", '', 'of', 'the', 'vietnam', 'war', 'with', 'its', 'goal', 'of', '', 'communist', 'expansion', 'in', 'asia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'mark', '(', 'born', '', 'mark', '', 'may', '3', '0', ',', '1', '9', '3', '3', ')', 'is', 'an', 'american', 'radio', 'disc', '', 'based', 'in', 'philadelphia', ',', 'pennsylvania', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'options', 'included', 'replacing', 'the', 'entire', 'stretch', 'of', 'road', 'with', 'a', 'park', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'same', 'time', ',', 'a', 'military', 'general', 'named', 'ivan', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'growing', 'up', ',', 'she', 'moved', 'with', 'her', 'family', 'to', '', ',', 'nebraska', ',', 'seattle', ',', 'washington', ',', 'british', 'columbia', ',', '', ',', 'colorado', ',', 'and', 'finally', 'landed', 'in', 'sisters', ',', 'oregon', 'where', 'she', 'attended', 'junior', 'high', 'and', 'high', 'school', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'round', 'was', 'played', 'on', 'the', 'first', 'level', 'and', ',', 'as', 'in', 'the', 'previous', '', 'round', ',', 'two', 'contestants', 'faced', 'off', 'to', 'try', 'to', 'advance', 'to', 'face', 'the', 'day', \"'s\", 'champion', '(', 'or', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'that', 'raghu', 'shall', 'sell', 'this', 'product', 'in', 'india', 'and', 'suggests', 'that', 'it', 'will', 'be', 'successful', 'over', 'there', 'because', 'chinese', 'and', 'indians', 'are', '', 'thinking', 'about', 'sex', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'being', 'a', 'cultural', '', ',', 'the', 'monastery', 'is', 'once', 'again', 'active', ',', 'with', 'over', '1', '0', '0', 'monks', 'in', 'residence', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'majority', 'of', 'the', 'graduate', 'students', 'on', 'campus', 'live', 'in', 'one', 'of', 'four', 'graduate', 'housing', '', 'on', 'campus', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'season', 'began', 'on', '1', '5', 'march', '2', '0', '1', '4', 'and', 'was', 'finished', 'in', 'november', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'maria', '', ',', 'née', '', '(', 'or', ';', 'born', '8', 'april', '1', '9', '4', '8', ')', 'is', 'a', 'polish', 'politician', 'and', '', 'and', '', 'and', 'member', 'of', 'the', 'european', 'parliament', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'we', 'plan', 'to', 'make', 'it', '', \"'s\", 'premier', 'hotel', 'for', 'business', '', ',', \"''\", 'said', '', 'president', 'doug', 'cox', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'such', '', 'can', 'be', 'seen', 'in', '', 'actions', 'and', 'safety', 'violations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'underground', 'basement', 'band', 'from', '', ',', 'wisconsin', 'that', 'continues', 'to', '', 'fly', 'the', '', 'flag', 'never', '', 'where', 'they', 'came', 'from', 'no', 'matter', 'how', 'much', 'attention', 'they', 'receive', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'along', 'with', 'the', 'song', ',', 'the', 'catch', 'line', 'used', 'by', 'actor', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'received', 'women', 'in', 'film', 'and', 'television', 'international', \"'s\", 'crystal', 'award', 'for', 'excellence', 'in', 'the', 'entertainment', 'industry', 'in', '2', '0', '1', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'the', 'winner', 'of', 'the', '', 'book', 'award', 'for', '``', 'the', 'straight', '', \"''\", ',', 'the', 'inside', 'story', 'of', 'the', '', 'and', '', '', 'scandal', ',', 'published', 'in', '2', '0', '1', '5', 'by', 'melbourne', 'university', 'publishing', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'has', 'been', 'the', 'liberal', 'national', 'party', 'member', 'for', '', 'in', 'the', 'queensland', 'legislative', 'assembly', 'since', '2', '0', '1', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '', 'ltd', 'is', 'a', 'company', 'that', 'designs', ',', 'develops', 'and', '', '', 'and', '', 'systems', 'for', 'agricultural', ',', 'industrial', 'and', '', 'sectors', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'municipal', 'health', 'centre', 'iii', 'is', 'a', '', 'health', 'facility', 'found', 'in', 'the', 'municipality', 'of', '', ',', 'at', 'a', 'level', 'of', 'health', 'centre', 'three', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'for', 'the', 'common', 'good', 'because', 'the', 'end', 'or', '``', '', \"''\", 'of', 'law', 'is', 'the', 'good', 'of', 'the', 'community', 'it', '', ',', 'and', 'not', 'merely', 'the', 'good', 'of', 'the', '', 'or', 'a', 'special', 'interest', 'group', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', '1', '9', '4', '6', ',', 'the', '', 'began', 'play', 'with', '8', 'teams', 'playing', 'a', 'record', '1', '4', 'games', '(', 'a', 'double', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'and', 'michael', \"'s\", 'friendship', 'seems', 'to', '', 'itself', 'with', '``', 'the', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', '``', '', 'times', \"''\", ',', 'film', 'critic', '', '', 'gave', '``', '', \"''\", 'a', '', 'rating', ':', '``', 'good', 'taste', ',', 'pop', 'colour', 'miami', 'locations', ',', '', '', ',', '', '', 'and', 'the', '', '', 'productions', 'values', 'add', 'up', 'to', 'a', '', '', \"''\", '.', '', '', '', '']\n", "['', 'transferred', 'to', 'he', 'served', 'as', 'a', '', ',', 'second', 'class', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', '', 'authorities', 'will', 'apply', 'stress', 'test', 'results', 'as', 'an', 'input', 'to', 'the', '', 'review', 'and', 'evaluation', 'process', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'she', 'refused', ',', 'they', 'tried', ',', 'one', 'by', 'one', ',', 'to', '', 'her', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', '', ')', 'is', ',', 'as', 'discussed', 'earlier', ',', 'also', 'a', '', 'method', 'but', 'can', 'also', 'be', 'used', 'as', 'a', 'treatment', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'every', '1', '0', '0', 'females', ',', 'there', 'were', '9', '1', '.', '9', 'males', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'one', 'side', 'of', 'the', 'island', 'is', 'an', 'area', 'of', 'green', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'that', 'point', 'about', '4', '4', '', 'of', 'development', 'work', 'had', 'gone', 'into', 'it', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'and', 'his', 'wife', '', 'have', 'been', 'married', 'since', '1', '9', '8', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', '', 'the', '', 'of', 'water', 'flow', 'through', 'the', '', 'and', '', 'in', '', 'away', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', ',', 'the', 'club', 'is', 'permanently', 'allowed', 'to', 'display', 'a', '', '', 'on', 'its', '', 'as', 'it', 'has', 'won', 'more', 'than', 'five', 'european', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'needs', 'of', 'the', 'community', 'change', ',', 'the', 'organization', \"'s\", 'focus', 'has', 'shifted', 'to', '', 'homes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'was', '', \"'\", 'biggest', 'hit', ',', '', 'on', 'the', 'top', 'of', 'the', 'charts', 'for', 'four', 'weeks', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'program', 'aims', 'to', 'reduce', 'barriers', 'to', 'entry', 'for', '', 'and', '', 'jobs', 'in', 'environmental', 'organizations', 'and', '', 'for', 'professionals', 'from', '', 'backgrounds', 'by', 'connecting', 'them', 'to', '', 'and', 'giving', 'them', 'experience', 'in', 'the', 'field', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ramsay', ',', 'who', 'defended', 'himself', 'to', 'the', 'last', ',', 'was', 'severely', 'wounded', ',', 'and', 'died', 'a', 'prisoner', 'in', 'the', 'castle', 'of', '', 'on', '1', '1', 'march', '1', '6', '3', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'facility', '', 'could', 'accommodate', '1', '2', '5', 'cars', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'will', '', 'in', 'new', 'premises', 'in', '2', '0', '2', '1', ',', 'under', 'the', 'name', '', 'art', ',', '', 'and', 'design', 'museum', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', '', 'is', 'giving', 'financial', 'support', 'from', 'the', 'eu', 'through', '', 'agency', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'position', 'on', 'the', 'list', 'is', 'determined', 'by', 'whether', 'the', 'game', 'was', 'a', 'win', 'or', 'a', 'loss', ',', 'by', 'the', 'time', 'taken', 'to', 'defeat', 'the', 'bandits', ',', 'and', 'by', 'the', 'total', 'damage', 'the', 'player', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'active', 'in', '', '', 'to', 'vote', 'and', 'to', 'take', 'part', 'in', '', 'against', '', 'immigrant', 'legislation', 'and', '', ',', 'such', 'as', 'the', '2', '0', '0', '6', 'great', 'american', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', ',', 'causing', 'the', '', 'to', 'laugh', 'at', 'him', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'has', 'become', 'easier', 'to', 'maintain', 'the', 'maximum', 'speed', 'of', 'the', 'locomotive', 'while', 'reducing', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'wrote', ',', '``', 'not', 'since', 'harold', 'bishop', 'has', 'one', 'man', 'endured', 'so', 'much', 'tragedy', 'as', 'mark', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '4', '', 'pacific', ',', 'the', 'hotel', \"'s\", '', ',', 'agreed', 'to', 'sell', 'it', 'to', '', 'properties', ',', 'an', '', 'company', 'which', 'also', 'owned', 'the', '', 'inn', 'in', '', ',', 'the', 'territorial', 'capital', 'of', 'recently', 'created', '', ',', 'for', '', '$', '6', '.', '3', '5', 'million', '.']\n", "['', 'to', 'date', 'the', 'series', 'consists', 'of', 'seven', 'novels', '(', 'four', 'of', 'which', 'have', 'been', 'published', 'in', 'english', ')', 'although', 'as', '', 'explains', ',', '``', 'the', 'order', 'of', 'the', 'books', 'is', 'a', '', 'story', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'historically', 'important', '', 'trade', '', 'is', 'now', 'grand', '', 'national', 'monument', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'johnston', 'was', 'subsequently', 'named', 'captain', 'of', 'ireland', ',', 'and', 'was', 'a', 'regular', '', 'in', 'the', 'national', 'team', 'until', 'his', 'retirement', 'in', '2', '0', '1', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'to', '', '``', 'kud', 'wafter', \"''\", ',', 'good', 'smile', 'racing', 'took', '', '', \"'s\", '2', '0', '0', '3', 'honda', 'fit', 'and', 'made', 'it', 'into', 'an', '', '(', 'a', 'car', 'featuring', 'illustrations', 'of', '', 'characters', ')', 'with', 'images', 'of', '', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'describe', 'themselves', 'as', '``', 'a', 'community', 'of', 'artists', '', 'books', ',', 'paper', ',', 'and', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'scholars', 'who', 'support', 'the', 'same', 'theory', '', 'that', 'the', 'connection', 'between', 'certain', '', 'or', 'archaeological', '', 'and', 'ethnic', 'groups', 'is', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'among', 'places', 'with', 'a', 'population', 'above', '5', '0', ',', '0', '0', '0', ',', 'west', 'new', 'york', 'is', 'the', '', 'densely', 'populated', 'municipality', 'in', 'the', 'united', 'states', ',', 'with', 'more', 'than', '5', '2', ',', '8', '0', '0', 'people', 'per', 'square', 'mile', '.', '', '', '', '', '', '', '', '', '']\n", "['', '', 'unlike', 'the', 'others', 'however', ',', 'is', 'instead', 'using', 'her', '', 'to', 'spread', '', 'on', 'a', '', 'and', '', ',', 'breaking', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'example', ',', '', \"'s\", 'principal', 'component', '', 'revealed', 'five', 'major', '', 'patterns', 'throughout', 'europe', ',', 'and', 'similar', 'patterns', 'have', 'continued', 'to', 'be', 'found', 'in', 'more', 'recent', 'studies', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'time', 'period', 'of', '2', '0', '0', '6', 'to', '2', '0', '1', '5', ',', 'the', 'success', 'rate', 'was', '9', '.', '6', '%', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'he', 'was', 'old', 'enough', 'he', 'was', 'given', 'an', 'english', '', ',', 'which', 'he', 'used', 'to', '', 'mud', '', ',', 'wild', '', ',', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'was', 'also', '', 'for', 'campaign', 'asia', \"'s\", '', 'awards', 'as', 'one', 'of', 'the', 'top', '1', '2', '', 'to', 'consider', 'for', 'brand', 'marketing', 'and', 'advertising', 'in', 'the', '', 'region', 'and', 'noted', 'as', 'a', 'promising', '', 'by', 'the', 'harvard', 'business', 'school', 'association', 'of', 'hong', 'kong', '(', '', ')', '.', '']\n", "['', 'it', 'is', 'currently', 'being', 'operated', 'with', '1', '5', '9', '4', '1', '/', '1', '5', '9', '4', '2', 'train', 'numbers', 'on', 'a', 'weekly', 'basis', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'average', '', '', '', 'from', 'in', 'january', 'to', 'in', 'july', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'has', 'done', 'work', 'on', 'dominant', 'assurance', 'contracts', ',', 'law', 'and', 'economics', ',', 'and', 'health', 'economics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', 'label', ',', '', 'has', 'a', 'very', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'bill', 'was', 'introduced', 'by', 'kenny', '', '', 'on', '6', 'february', '2', '0', '1', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'war', ',', 'a', 'new', 'jersey', 'regiment', 'of', 'the', 'union', 'army', 'occupied', 'the', '', 'plantation', ',', 'calling', 'it', '``', 'camp', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '4', 'the', 'castle', 'howard', '', 'trust', ',', 'which', 'runs', 'the', 'yorkshire', '', ',', 'was', 'formed', 'as', 'a', 'partnership', 'between', '', 'and', 'the', 'castle', 'howard', 'estate', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'nearly', 'a', 'year', 'apart', ',', '', ',', 'stevens', ',', '', 'and', '', 'reunited', 'to', 'play', 'a', '', 'show', 'with', 'new', 'songs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'requested', 'the', 'government', 'of', 'russia', 'to', 'provide', 'independent', 'military', 'and', 'technical', 'cooperation', 'with', 'foreign', 'countries', ',', 'and', 'was', 'confirmed', 'and', 'subsequently', 'expanded', 'by', 'an', 'order', 'of', 'the', 'russian', 'president', 'in', '2', '0', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'francis', 'h.', '', 'was', 'selected', 'as', 'governor', 'of', 'virginia', 'and', 'a', '', 'legislature', 'was', 'composed', 'of', 'former', 'members', 'of', 'the', 'virginia', 'assembly', 'who', 'supported', 'the', 'union', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", 'is', 'often', 'a', '', 'term', ',', 'used', 'for', '', 'of', 'industries', 'from', 'retail', 'sales', 'to', '', 'to', 'city', 'organizations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'buried', 'at', 'the', '', 'father', 'house', 'in', '', ',', 'county', '', 'on', '2', '9', 'march', '1', '9', '9', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'both', 'had', 'been', '', 'from', '', 'to', 'liverpool', 'when', 'they', 'were', 'captured', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'fact', 'that', 'the', 'characters', 'live', 'in', 'poverty', 'is', 'reflected', 'in', 'a', 'scene', 'where', 'mr.', '', '', 'his', 'mother', 'for', 'wanting', 'to', 'buy', 'sugar', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'few', '', '', 'included', 'are', '``', 'see', 'what', 'a', '', 'i', \"'ve\", 'been', \"''\", ',', '``', 'soul', 'brother', \"''\", ',', '``', 'i', 'go', 'crazy', \"''\", 'and', '``', 'a', '', 'red', 'roses', 'for', 'my', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hispanic', 'americans', '', 'the', 'second', 'largest', 'minority', 'group', 'during', 'the', '', 'era', ',', 'with', 'the', 'majority', 'of', 'them', '', 'from', 'south', 'texas', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', 'native', 'of', '', '(', ')', ',', '', ',', 'rao', 'was', 'among', 'the', 'few', 'senior', 'leaders', 'of', 'early', 'stage', 'of', '', 'who', 'received', 'a', 'higher', 'education', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'party', '', 'the', 'transformation', 'of', '', 'into', 'an', '', 'republic', ',', 'ruled', 'by', 'its', '', 'of', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'of', 'the', 'german', 'spirit', 'is', 'the', 'jewish', 'spirit', ',', 'which', 'is', 'not', 'a', 'matter', 'of', 'being', 'born', 'jewish', 'or', 'believing', 'in', '', 'but', 'is', 'a', '', 'spirit', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '0', '6', ',', 'the', 'iww', 'became', 'so', 'powerful', 'in', '', 'that', 'it', 'could', '', '', 'and', 'working', 'conditions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'the', '', 'generally', 'is', 'a', '', 'breed', ',', 'it', 'may', 'have', 'issue', 'climbing', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'his', 'career', 'he', 'played', 'for', 'croatian', 'and', 'bosnian', 'clubs', 'with', 'the', 'exception', 'of', 'the', '', '', '', 'where', 'he', 'spent', 'the', '2', '0', '1', '1', '-', '1', '2', 'season', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'financial', 'results', 'for', '2', '0', '1', '1', '/', '2', 'show', 'the', 'firm', 'increased', '', 'to', '£', '1', '1', '0', '.', '2', 'million', ',', 'and', 'grew', 'equity', 'partnership', 'year', 'on', 'year', 'by', 'almost', 'a', 'fifth', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'dollar', 'lake', 'can', 'be', 'accessed', 'by', 'trail', '1', '8', '0', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', '(', 'german', ':', '``', '', '', \"''\", ')', 'formed', 'on', '2', '2', 'march', '1', '9', '2', '5', ',', 'was', 'an', 'administrative', 'division', 'of', 'nazi', 'germany', 'from', '1', '9', '3', '3', 'to', '1', '9', '4', '5', '', 'the', '', 'province', 'of', '', '.', '', '', '', '', '']\n", "['', 'thompson', 'also', 'made', 'at', 'least', 'one', 'threat', 'under', 'his', 'own', 'name', ',', 'under', 'the', '', 'that', 'his', '', 'was', '', 'him', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'joined', 'the', 'staff', 'of', 'the', 'philadelphia', 'general', 'hospital', 'in', '1', '8', '8', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'this', 'series', 'was', 'made', 'after', 'the', 'corporate', 'change', 'in', 'winter', '1', '9', '9', '7', '(', 'as', '', 'by', 'the', '', 'bbc', '', 'at', 'the', 'end', 'of', 'each', 'episode', ')', ',', 'it', 'was', 'not', 'broadcast', 'until', '1', '3', 'january', '1', '9', '9', '8', '.', '', '', '', '', '', '']\n", "['', 'the', 'table', 'below', 'lists', 'the', '', '1', '9', '4', '0', 'boats', 'with', 'their', 'original', 'names', 'are', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'immediately', 'after', '', 'pope', 'county', ',', 'highway', '1', '6', '', 'highway', '2', '7', ',', 'forming', 'a', '', 'south', 'for', ',', 'where', 'highway', '1', '6', 'turns', 'east', 'to', 'enter', 'van', '', 'county', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'is', 'being', 'developed', 'by', 'the', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', '', 'banjaras', 'who', 'are', 'found', 'in', '', ',', 'unlike', 'other', 'banjaras', ',', 'do', 'not', 'have', '', '', 'names', 'as', 'they', 'are', 'like', 'native', 'tribes', 'of', 'maharashtra', 'who', 'were', 'accepted', 'later', 'among', 'banjaras', 'as', 'service', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'of', 'receptors', 'by', '', '', 'the', 'state', 'of', '', 'through', 'two', 'main', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'within', 'months', 'of', 'the', 'january', '1', '9', '8', '8', 'decision', 'in', '``', '', \"''\", ',', 'congress', 'had', 'started', '', 'a', 'new', 'law', 'to', 'address', 'the', 'decision', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'lydia', 'gives', 'in', 'to', 'the', 'relationship', 'with', '', ',', 'but', 'makes', 'it', 'clear', 'to', 'him', 'that', 'it', 'has', 'to', 'be', 'a', 'secret', 'until', 'she', '', '', \"'\", 'case', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'later', 'in', 'life', 'he', 'revealed', 'to', 'this', 'family', 'that', 'he', 'had', 'been', '', '', 'by', 'his', '', 'when', 'he', 'was', 'young', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'post', 'office', 'called', '', 'was', 'established', 'in', '1', '8', '8', '2', ',', 'and', 'remained', 'in', 'operation', 'until', '1', '9', '7', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'became', 'the', 'number', 'one', 'choice', 'on', 'inter', \"'s\", 'goal', 'in', '2', '0', '1', '8', 'after', '', '', \"'\", 'injuries', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'finished', 'up', 'filming', 'in', '2', '0', '1', '0', 'for', '', 'research', 'center', 'in', 'partnership', 'with', '', 'for', 'an', 'interactive', 'music', 'video', 'and', 'short', 'film', 'application', 'for', 'their', 'new', 'phone', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'most', 'sections', ',', 'the', 'federal', 'route', '3', '4', '1', 'was', 'built', 'under', 'the', '', 'r', '5', 'road', 'standard', ',', 'allowing', 'maximum', 'speed', 'limit', 'of', 'up', 'to', '9', '0', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'el', '', 'de', 'la', '', '(', ')', 'is', 'a', '1', '9', '2', '5', '', 'silent', 'film', 'movie', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'reaches', 'a', 'height', 'of', '1', ',', '1', '0', '7', 'm', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', ',', '', 'are', '``', 'ex', '', \"''\", 'senators', 'for', 'life', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'harold', 'was', 'an', '', 'young', 'writer', ',', '', 'over', 'how', 'to', 'best', 'use', 'his', 'life', 'and', 'looking', 'for', 'a', 'purpose', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'azerbaijan', ',', '', 'is', 'believed', 'to', 'be', 'the', 'son', 'of', 'a', 'mother', 'who', '', 'by', 'the', 'light', 'and', 'who', 'killed', 'by', '', 'alive', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'among', 'his', 'scientific', 'contributions', ',', 'it', 'is', 'worth', 'to', 'mention', 'his', '', 'to', 'the', 'development', 'of', 'the', 'critical', '', '', ',', 'as', 'well', 'as', 'his', 'research', 'and', 'social', 'action', 'with', 'the', '', 'people', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'table', 'lists', 'the', '', 'connected', 'to', 'the', 'line', 'between', 'the', 'station', 'and', 'christian', 'street', 'junction', 'just', 'east', 'of', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '5', '', 'was', 'a', 'resident', 'at', 'the', '', 'school', 'of', 'painting', 'and', 'sculpture', 'in', 'maine', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', 'served', 'in', 'various', 'civic', 'service', 'positions', ',', 'including', 'at', 'the', 'washington', 'institute', 'for', 'near', 'east', 'policy', ',', 'the', '', 'of', 'new', 'york', ',', 'the', 'leadership', 'enterprise', 'for', 'a', 'diverse', 'america', ',', 'the', 'united', 'states', 'holocaust', 'memorial', 'museum', ',', 'and', 'the', 'citizens', 'budget', 'commission', '.', '', '', '', '']\n", "['', 'also', 'the', 'new', 'apostolic', 'church', 'has', 'a', 'parish', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'born', 'in', '', ',', 'a', 'suburb', 'of', '', ',', 'on', '2', '8', 'july', '1', '9', '2', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', 'its', 'original', 'conception', 'in', '1', '9', '6', '1', ',', 'the', 'armed', 'forces', '', 'medal', 'has', 'been', 'awarded', 'for', 'united', 'states', 'participation', 'in', 'over', 'forty', 'five', 'designated', 'military', 'campaigns', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'township', 'is', 'one', 'of', '1', '1', 'municipalities', '(', 'of', 'the', '5', '6', '5', ')', '', 'that', 'operate', 'under', 'a', 'special', 'charter', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'had', 'warned', 'the', 'state', 'would', 'lose', 'all', '', 'in', 'washington', 'if', 'the', 'state', \"'s\", 'two', 'us', 'senators', ',', 'both', 'of', 'whom', 'are', 'over', '8', '0', 'years', 'old', ',', 'leave', 'office', 'within', 'a', 'short', 'time', 'of', 'each', 'other', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'won', 'the', 'bronze', 'medal', 'in', 'the', '', 'at', 'the', '1', '9', '8', '8', 'world', 'junior', 'championships', 'and', 'also', 'competed', 'in', 'four', 'other', 'events', ',', 'in', 'addition', 'to', '', 'tenth', 'in', 'the', '', 'at', 'the', '1', '9', '8', '9', 'world', 'junior', 'championships', '.', '', '', '', '', '', '', '']\n", "['', 'soon', 'after', ',', 'bruno', 'sets', 'up', 'a', '', 'trading', 'business', 'with', 'the', 'german', 'army', 'and', 'is', 'spotted', 'by', 'charles', 'martin', ',', 'a', '', 'worker', 'who', 'has', 'been', 'with', 'de', '', 'for', 'decades', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'but', 'as', 'more', 'of', 'holland', 'and', '', 'were', 'developed', 'and', 'became', 'more', '', ',', 'the', 'importance', 'of', '', 'decreased', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'without', 'the', 'backing', 'of', 'a', 'studio', ',', '', 'was', 'forced', 'to', 'make', 'extensive', 'use', 'of', 'location', 'shooting', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'they', 'call', 'one', 'another', '``', '', 'and', '', \"''\", 'and', 'engage', 'in', '', 'behavior', ',', 'they', '', \"n't\", '', 'that', 'anyone', 'else', ',', 'including', 'superior', 'officers', ',', 'call', 'them', 'by', 'their', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'from', 'the', 'fire', 'was', 'reported', 'to', 'cause', '', 'to', 'residents', 'as', 'far', 'as', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'they', 'returned', 'to', 'the', 'u.s.', 'in', '1', '9', '5', '1', ',', 'dmytryk', 'was', 'imprisoned', 'for', '6', 'months', 'for', '', 'of', 'congress', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'have', 'also', 'appeared', 'in', '``', 'sense', '8', '``', ',', 'the', 'science', 'fiction', 'television', 'series', 'created', 'by', 'the', 'production', 'team', 'of', 'transgender', 'producers', '', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'time', 'varies', 'between', '6', '0', 'and', '3', '0', '0', 'seconds', ',', 'with', 'all', '', 'taking', 'part', 'in', 'a', 'raid', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', '', '', 'has', 'a', 'high', 'thermal', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'leaf', '', '2', 'to', '4', 'cm', 'long', ',', 'with', 'a', '', 'channel', 'on', 'the', 'upper', 'side', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'could', 'carry', 'a', 'total', 'of', '8', 'tons', 'of', 'coal', 'as', 'fuel', 'and', 'could', '', 'to', 'a', 'depth', 'of', '1', '6', '0', 'feet', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'home', 'matches', 'of', 'the', '``', '', 'coloured', \"''\", 'team', 'are', 'played', 'at', 'san', '', ',', 'a', 'sports', 'field', 'in', 'the', 'town', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'plans', 'to', 'take', 'delivery', 'of', '``', '', \"''\", 'in', '2', '0', '2', '2', ',', 'followed', 'by', '``', '', \"''\", 'in', '2', '0', '2', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'about', '5', '0', '', 'farther', 'to', 'the', 'east', 'the', 'a', '3', '0', 'ends', 'in', 'bad', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', 'a', 'mayor', 'and', 'a', '1', '7', '', 'town', 'council', 'that', 'meets', 'twice', 'a', 'month', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'unlike', 'these', '', 'airports', ',', 'it', 'incorporates', '``', 'natural', \"''\", 'features', 'and', '``', 'warm', \"''\", 'tone', 'extensively', 'to', 'balance', 'the', '', 'feel', 'of', 'glass', 'and', 'steel', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'developing', 'and/or', '', 'the', '', 'bus', ',', '', 'of', 'hardware', 'signals', 'can', 'be', 'very', 'important', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'took', 'over', 'ownership', 'of', 'the', 'british', '', 'website', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'south', 'orange', 'is', 'governed', 'under', 'a', 'special', 'charter', 'granted', 'by', 'the', 'new', 'jersey', 'legislature', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '[', '4', ']', 'the', 'federation', 'of', 'sports', 'at', 'altitude', '(', '', ')', 'was', 'replaced', 'by', 'the', 'international', 'sky', 'running', 'federation', 'in', '2', '0', '0', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', '', '', 'kate', 'was', 'shot', 'dead', '(', 'or', 'was', 'she', '?', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', 'it', 'was', 'not', 'until', 'the', 'next', 'year', 'that', '', 'created', 'the', 'first', '', 'dark', 'pool', '``', '', \"''\", ',', 'both', 'allowed', 'large', 'trades', 'to', 'be', 'executed', '', 'which', 'was', '', 'to', '', 'of', 'large', 'blocks', 'of', 'shares', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'cross', 'county', 'mall', 'is', 'a', 'shopping', 'mall', 'in', '', ',', 'illinois', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'is', 'known', 'for', 'her', '2', '0', '1', '2', 'single', '``', 'dream', \"''\", ',', 'which', 'received', '', 'on', '', ',', '', ',', '', ',', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'language', 'is', '``', '', \"''\", ',', 'which', 'belongs', 'to', 'the', '', '', 'dialects', 'with', 'some', 'loans', 'from', '', 'dialects', 'and', 'belongs', 'to', 'the', 'highest', '', 'language', 'group', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'usually', 'have', '', ',', 'like', 'a', 'car', \"'s\", 'broadcast', 'radio', ',', 'that', 'allow', 'some', 'channels', 'to', 'be', '', 'ahead', 'of', 'need', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ten', 'days', 'later', 'after', 'proof', \"'s\", 'death', ',', '', 'was', 'arrested', 'in', '', ',', 'michigan', ',', 'after', 'failing', 'to', 'appear', 'in', 'court', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'his', 'release', ',', 'work', 'commenced', 'on', 'the', 'album', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'people', 'who', 'have', 'an', 'adverse', 'reaction', 'to', '', '', '', 'may', 'be', 'given', 'the', 'simple', 'vaccine', 'when', 'the', 'time', 'comes', 'for', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'notable', 'departure', 'from', '', 'convention', 'was', 'to', 'make', 'the', 'part', 'of', '', \"'s\", '', 'a', 'speaking', 'role', ',', 'rather', 'than', 'a', 'sung', 'role', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n" ] } ], "source": [ "print('\\033[1m' + 'The processed dev set contains the following sentences:' + '\\033[0m')\n", "for sentence in dev_sentences_x_indexes:\n", " print(sentence)" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[1mThe processed train set contains the following sentences:\u001b[0m\n", "['', 'dr.', '', 'mcdonald', 'is', 'a', 'life', 'long', '', 'resident', 'who', 'taught', 'and', 'rose', 'through', 'the', 'ranks', 'of', 'the', 'district', 'she', 'now', 'leads', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'received', 'his', 'ba', 'in', 'chemistry', ',', '', '', '', ',', 'from', '', 'college', 'in', '1', '9', '8', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'growth', 'of', 'twin', 'cities', 'international', 'airport', 'during', 'the', 'last', 'half', 'of', 'the', 'twentieth', 'century', 'along', 'with', '', 'of', 'land', 'to', 'the', 'fort', '', 'compound', 'meant', 'further', 'reductions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'that', 'evening', 'he', 'saw', 'the', 'even', 'stranger', '', 'and', 'noticed', 'that', 'its', 'bill', 'was', 'soft', ',', 'unlike', 'the', '', '', 'he', 'had', 'seen', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'church', 'was', 'built', 'in', '1', '8', '8', '9', 'just', 'north', 'of', 'the', 'unique', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'new', 'novel', '``', 'riders', \"''\", 'is', 'expected', 'for', 'a', 'release', 'in', '2', '0', '1', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', '', 'in', 'this', 'area', 'included', 'the', 'first', 'modern', '', 'offset', 'and', 'the', 'first', 'process', 'for', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'monotypic', 'genus', 'of', 'moths', 'of', 'the', 'family', 'noctuidae', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'building', 'houses', 'the', 'office', 'of', 'chairman', 'and', 'all', 'top', 'directors', 'of', 'tata', 'sons', ',', 'the', 'holding', 'company', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'peter', 'adams', 'was', 'treated', 'and', 'released', 'from', 'the', 'hospital', 'on', 'august', '1', '6', ',', '2', '0', '1', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'acm', 'uses', 'simulation', 'message', '', 'to', '', 'the', 'content', 'of', 'a', 'message', 'received', 'from', 'the', 'confederation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'judiciary', 'of', 'abia', 'state', 'consists', 'of', '1', '1', 'departments', 'and', 'also', 'a', '', 'service', 'commission', 'with', 'statutory', 'duties', 'which', 'includes', 'the', 'promotion', 'and', 'appointment', 'of', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'notable', 'people', 'connected', 'with', 'the', 'area', 'are', 'the', 'actor', 'john', '', 'who', 'lived', 'on', 'grove', 'park', 'road', 'for', 'many', 'years', 'and', 'british', 'army', 'field', 'marshal', 'bernard', 'montgomery', ',', '1', 'st', 'viscount', 'montgomery', 'of', '', 'who', 'lived', 'on', '', 'road', 'as', 'a', 'teenager', '.', '', '', '', '', '', '', '']\n", "['', 'the', '', 'that', 'the', 'pbr', 'paid', 'out', 'in', 'australian', 'are', 'a', 'record', '$', '7', '5', '0', ',', '0', '0', '0', 'for', 'that', 'country', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'david', 'trent', 'johnston', '(', 'born', '2', '9', 'april', '1', '9', '7', '4', ')', ',', 'usually', 'known', 'as', 'trent', 'johnston', ',', 'is', 'an', '', 'former', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'underwater', '', 'can', 'become', 'more', 'specialized', ',', 'starting', 'with', 'a', '', 'ratio', '', '', 'with', '', 'efficient', '', 'for', 'ballast', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'to', '', 'the', '', 'of', 'the', 'burning', 'flesh', 'of', 'the', 'six', 'dissected', 'bodies', 'placed', 'upon', 'this', '', ',', 'nilsen', 'crowned', 'the', 'bonfire', 'with', 'an', 'old', 'car', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', \"'\", \"''\", ',', 'however', 'the', 'term', '``', '', \"''\", 'today', 'is', 'little', 'used', 'in', 'this', 'context', ',', 'as', 'in', 'common', '', 'in', 'britain', 'the', 'term', 'is', 'widely', 'associated', 'with', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'born', 'in', 'kingston', ',', 'pennsylvania', ',', 'in', '1', '9', '6', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'labour', 'has', 'never', 'had', 'a', 'policy', 'of', '', ';', 'however', ',', 'at', 'least', 'four', 'party', 'leaders', 'have', 'been', 'republicans', ':', 'party', 'founder', '', '', ',', 'george', '', ',', 'michael', 'foot', ',', 'and', 'jeremy', '', ',', 'leader', 'from', '2', '0', '1', '5', 'to', '2', '0', '2', '0', '.', '', '', '']\n", "['', 'in', '', 'this', 'degree', 'can', 'be', 'expressed', 'by', 'a', 'prefix', ',', '``', '', \"''\", 'or', 'by', 'the', 'use', 'of', 'the', '', '``', '', \"''\", '(', 'most', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'same', 'time', 'period', 'that', 'this', 'discovery', 'is', 'made', ',', '', 'is', 'not', 'that', 'far', 'away', 'from', 'putting', 'them', 'out', 'of', 'business', '(', 'and', 'was', 'itself', '', 'and', 'bought', 'out', 'by', 'apollo', 'global', 'in', 'the', 'real', 'world', ')', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'pope', '', '', '', 'that', 'the', 'time', 'was', 'right', 'to', 're-establish', 'the', 'catholic', '', 'in', 'wales', 'and', 'england', 'in', '1', '8', '5', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'proportion', 'of', 'troops', 'that', 'were', '', 'reached', '6', '9', '%', 'for', 'the', 'regiment', ',', '7', '4', '%', 'for', 'the', 'battalion', ',', '7', '9', '%', 'for', 'the', 'company', '', ',', '5', '2', '%', 'for', 'the', 'anti-tank', 'company', 'and', '3', '6', '%', 'for', 'the', 'infantry', 'cannon', 'company', '.', '', '', '']\n", "['', 'story', 'was', 'the', 'first', 'woman', 'employed', 'as', 'an', 'information', 'officer', 'of', 'a', 'department', 'of', 'the', 'interior', 'bureau', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'then', 'goes', 'to', 'another', 'room', ',', 'leaving', 'her', 'boyfriend', 'in', 'that', 'room', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'leaving', 'the', 'stage', ',', 'susanna', 'opened', 'the', 'first', '``', 'female', 'academy', \"''\", 'in', 'boston', 'in', '1', '7', '9', '7', '``', 'mrs', 'rowson', \"'s\", 'academy', 'for', 'young', 'ladies', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'veronica', '', 'and', '', '', ',', 'who', 'played', 'selena', \"'s\", 'mother', ',', 'were', 'given', 'critical', 'acclaim', 'for', 'their', 'roles', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'her', '', 'hearing', 'on', 'october', '2', '7', ',', '', 'refused', 'to', 'answer', 'questions', 'about', 'her', 'beliefs', ',', 'on', 'the', 'grounds', 'that', 'her', 'american', 'citizenship', '', 'any', 'attempt', 'to', '', 'her', 'under', 'the', '', '', 'act', ',', 'which', 'could', 'be', '', 'only', 'against', '', 'of', 'the', 'us', '.', '', '']\n", "['', 'when', 'this', 'brigade', '', 'around', 'to', 'cut', 'the', '', 'to', '', 'road', 'from', 'the', 'north', ',', 'they', 'captured', 'over', '2', ',', '0', '0', '0', 'prisoners', 'and', 'some', 'guns', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'name', 'of', 'the', 'operation', ',', '``', 'cui', '', \"''\", ',', 'means', ',', 'in', 'latin', ',', '``', 'to', 'whose', 'benefit', '?', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'sexy', 'sexy', 'sexy', \"''\", 'peaked', 'at', 'number', '5', '0', 'and', 'stayed', 'on', 'the', 'charts', 'for', 'a', 'total', 'of', '8', 'weeks', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'once', 'you', 'add', 'ray', 'guns', 'and', 'power', 'armor', 'to', 'the', 'game', ',', 'you', 'have', 'a', 'fundamentally', 'different', 'experience', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'sometimes', 'the', 'body', 'is', 'burned', 'and', 'the', 'ashes', 'are', '', \"'\", 'to', 'the', 'ocean', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'three', 'floors', 'with', 'a', 'single', 'large', 'room', 'on', 'each', 'floor', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'area', 'was', 'marked', 'and', 'singled', 'out', 'as', 'one', 'of', 'the', 'pollution', '', 'in', 'western', 'europe', 'in', 'a', '2', '0', '1', '5', 'report', 'from', 'the', 'international', 'institute', 'for', 'applied', 'science', 'systems', ',', 'where', '', 'for', '2', '0', '3', '0', 'conditions', 'were', 'made', '.', '', '', '', '', '', '']\n", "['', 'he', 'obtained', 'his', 'phd', 'in', 'mathematics', 'and', 'physics', 'at', '', 'university', 'in', '1', '9', '6', '5', 'with', 'a', 'dissertation', 'titled', ':', '``', 'the', '', 'principle', ',', 'the', 'van', '', 'relation', 'and', 'the', 'application', 'to', 'the', 'theory', 'of', '', 'in', '', 'fields', \"''\", '.', '', '', '', '', '', '', '']\n", "['', 'livingston', 'is', 'also', 'a', 'member', 'of', 'the', 'board', 'of', 'the', 'international', 'foundation', 'for', 'electoral', 'systems', ',', 'a', 'non-profit', 'involved', 'in', 'international', 'elections', ',', 'and', 'he', 'is', 'a', 'knight', 'of', 'the', '', 'military', 'order', 'of', 'malta', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'six', 'goals', 'at', 'switzerland', \"'s\", 'home', 'tournament', 'in', '1', '9', '5', '4', ',', 'josef', '', 'won', 'the', 'shared', 'silver', 'boot', '-', 'the', 'only', 'individual', '', 'world', 'cup', 'award', 'ever', 'received', 'by', 'a', 'swiss', 'player', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'gives', 'rise', 'to', '', 'scattering', 'and', 'involves', 'momentum', 'transfer', 'within', 'the', 'layer', ',', 'and', 'is', 'used', 'to', 'determine', '', '', 'within', 'the', 'layers', ',', 'such', 'as', 'those', 'arising', 'from', 'magnetic', '', 'or', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'event', 'consists', 'of', 'two', 'rounds', ':', 'a', 'qualifier', 'and', 'a', 'final', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'daughter', '', 'married', '', '', 'de', '', ',', 'who', 'took', 'over', 'the', 'post', 'of', '', 'of', '', 'after', 'his', '', \"'s\", 'retirement', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'dvd', 'edition', 'of', '``', 'planes', ',', 'trains', ',', 'and', '', \"''\", 'includes', 'a', '', 'spanish', 'dub', 'and', 'english', ',', 'french', ',', 'and', 'spanish', 'subtitles', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', ',', 'compared', 'to', 'the', 'shakespeare', 'original', ',', 'the', 'parts', 'of', 'kent', 'and', 'edmund', ',', 'for', 'example', ',', 'have', 'been', 'greatly', 'reduced', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'candidates', 'for', 'a', 'new', 'drug', 'to', 'treat', 'a', 'disease', 'might', ',', '', ',', 'include', 'from', '5', ',', '0', '0', '0', 'to', '1', '0', ',', '0', '0', '0', 'chemical', 'compounds', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'nationwide', ',', 'there', 'are', 'approximately', '2', '3', ',', '4', '0', '0', 'female', 'police', 'officers', 'and', '1', '3', ',', '0', '0', '0', 'female', 'civilian', 'staff', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'simon', ',', 'along', 'with', 'keith', 'gregory', ',', 'paul', '', '(', 'both', '', 'present', ')', 'and', '', 'cohen', '(', '', ')', ',', 'started', 'a', 'new', 'group', 'called', 'cha', 'cha', 'cohen', 'in', '1', '9', '9', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'is', 'also', 'the', 'daughter', 'of', 'popular', 'super', 'couple', 'jack', '', 'and', 'jennifer', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'network', 'was', 'originally', 'based', 'in', '', 'and', 'held', 'rights', 'to', '2', '5', 'home', 'games', 'of', 'the', 'indiana', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'used', 'by', 'the', 'union', 'navy', 'as', 'a', '', 'in', 'support', 'of', 'the', 'union', 'navy', '', 'of', 'confederate', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'john', 'c.', '', 'visited', 'seattle', 'in', 'october', '1', '9', '0', '6', 'and', 'saw', 'the', 'dominant', 'form', 'of', 'mount', '', 'toward', 'the', 'southeast', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'opening', 'at', 'the', 'top', 'of', 'the', '', 'base', 'accepts', 'the', 'base', 'of', '', 'upright', 'or', 'a', 'junior', 'pin', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'leads', ',', 'for', 'example', ',', 'to', 'the', 'regulation', 'of', 'the', 'activity', 'of', 'some', 'genes', 'or', 'the', 'release', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'like', 'all', 'enterprises', 'of', 'its', 'kind', ',', 'the', '', 'production', 'plants', 'had', 'to', 'change', 'to', 'arms', 'production', 'during', 'world', 'war', 'ii', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'is', 'from', 'about', '1', '6', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'three', 'separate', '', 'were', 'sent', 'to', 'the', 'oregon', 'supreme', 'court', '', 'that', 'they', '', 'the', 'case', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'later', 'played', 'college', 'baseball', 'for', 'the', 'university', 'of', 'arizona', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'this', 'game', ',', 'each', 'player', 'must', '', 'troops', 'to', 'the', 'left', 'wing', ',', 'centre', 'and', 'right', 'wing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'eastern', '', 'was', 'mistakenly', 'described', 'by', 'john', '', 'as', 'two', 'separate', 'species', 'in', '1', '8', '0', '1', 'from', 'early', 'colonial', 'illustrations', ',', 'first', 'as', 'the', '', '', '(', '``', '', '', \"''\", ')', 'and', 'as', 'the', '', '', '(', '``', '', '', \"''\", ')', '.', '', '', '', '']\n", "['', 'the', 'little', 'house', ',', 'called', 'the', '', \"'\", '', 'by', 'henry', '', ',', 'was', '2', '1', '', 'long', 'by', '1', '6', '', 'wide', 'and', 'consisted', 'of', 'two', 'rooms', ',', 'a', 'main', 'room', 'and', 'a', 'bedroom', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', '0', 'june', '1', '9', '9', '6', ',', 'the', 'turkish', 'federation', 'of', 'traditional', 'sport', 'branches', '(', '', '', '', '', ')', 'was', 'founded', 'by', 'the', 'turkish', 'ministry', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'first', ',', 'when', 'an', 'item', 'is', 'inserted', 'or', 'deleted', 'at', 'a', 'node', 'of', 'the', 'catalog', '', ',', 'it', 'must', 'be', 'placed', 'within', 'the', 'augmented', 'list', 'associated', 'with', 'that', 'node', ',', 'and', 'may', 'cause', 'changes', 'to', '', 'to', 'other', 'nodes', 'of', 'the', 'catalog', '', '.', '', '', '', '', '', '']\n", "['', 'the', '', ',', 'also', 'known', 'as', 'a', '', ',', 'was', 'only', 'ever', 'depicted', 'with', 'a', 'woman', 'carrying', 'it', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'lyrics', 'of', 'the', 'song', 'was', 'penned', 'by', '', '', 'and', 'composed', 'by', 'savvy', 'gupta', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'also', 'coached', 'and', 'worked', 'with', 'israel', \"'s\", 'national', 'gymnastics', 'team', 'well', 'into', 'the', '1', '9', '9', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'family', 'then', 'moved', 'to', 'moscow', 'due', 'to', 'his', 'father', '', 'pollack', 'being', 'an', 'officer', 'in', 'the', 'russian', 'army', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'before', 'the', 'revolution', 'and', 'the', 'advent', 'of', '', 'in', 'france', ',', 'women', \"'s\", 'roles', 'in', 'society', 'consisted', 'of', 'providing', 'heirs', 'for', 'their', '', 'and', '', 'to', 'household', 'duties', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'will', 'pose', 'as', 'an', 'independent', 'for', 'the', 'rest', 'of', 'her', 'term', 'as', 'a', 'senator', ',', 'until', 'the', '', 'of', 'the', '', 'legislature', 'of', 'the', 'mexican', 'congress', ',', 'where', 'she', 'will', 'represent', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', '', 'catalyst', 'was', 'found', 'to', 'successfully', 'promote', 'the', 'reaction', 'near', 'room', 'temperature', 'with', 'high', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'has', 'also', 'appeared', 'on', 'season', 'four', 'of', 'aaa', \"'s\", 'american', 'project', '``', '', 'underground', \"''\", 'as', 'the', 'white', '', ',', 'the', 'leader', 'of', 'paul', 'london', \"'s\", '', 'tribe', 'stable', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'used', 'about', '1', ',', '0', '0', '0', '', '2', '6', 'tanks', 'for', 'their', 'combat', 'operations', 'against', 'the', 'iranian', 'forces', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'left', 'the', 'national', 'league', 'after', 'the', '1', '8', '8', '5', 'season', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'the', 'democratic', 'nominee', 'for', 'senate', 'in', 'west', 'virginia', \"'s\", '2', '0', '2', '0', 'election', ',', 'losing', 'to', 'the', 'incumbent', ',', '', 'moore', '', ',', 'by', 'more', 'than', '4', '0', '', 'points', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'started', 'on', 'july', '1', '2', 'and', 'ended', 'on', 'september', '8', ',', '1', '9', '8', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'had', 'been', 'a', '', 'day', 'in', 'philadelphia', ',', 'which', '', 'the', 'aging', '', 'at', 'veterans', 'stadium', ',', 'making', 'for', 'particularly', '', 'conditions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'local', 'government', 'area', 'of', '', 'state', ',', 'nigeria', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'worked', 'for', '', 'for', '2', '0', 'years', ',', 'when', 'an', '', 'for', '', \"'s\", 'chief', 'executive', 'officer', 'appeared', 'in', 'a', 'newspaper', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'philipps', \"'\", 'writing', 'on', 'wild', 'horse', 'management', 'has', 'faced', 'criticism', 'as', 'being', 'based', 'on', '', 'science', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'uses', 'a', '', '', 'and', 'currently', 'supports', 'windows', ',', 'linux', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'i', 'shall', 'uphold', 'the', '', 'need', 'for', 'education', 'that', '', 'public', '', 'with', 'traditions', 'of', 'democratic', 'governance', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'scored', 'a', 'goal', 'in', 'the', 'last', 'minute', 'against', '', 'to', '', 'the', '3', '-', '3', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'spent', 'six', 'years', 'trying', 'to', '', 'public', 'opposition', 'to', 'the', 'tramway', 'and', 'was', 'forced', 'to', '', 'his', 'intended', 'route', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '1', ',', 'he', 'earned', 'his', 'bachelor', 'of', 'science', 'in', 'applied', 'mathematics', 'and', 'engineering', 'physics', 'at', 'the', 'university', 'of', 'wisconsin', ',', 'madison', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'to', 'her', 'that', 'he', 'is', 'no', 'longer', '', 'but', 'a', 'different', 'entity', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'september', '1', '9', '2', '2', ',', 'parma', \"'s\", 'committee', 'admitted', 'two', 'projects', 'for', 'consideration', ':', 'one', 'by', '', '', 'and', 'one', 'by', '', '', ',', 'both', 'architects', 'working', 'in', 'parma', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'house', 'was', 'designed', 'in', 'the', '', 'architectural', 'style', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'over', 'time', ',', 'he', 'ran', 'off', 'a', '', 'of', 'two', 'reconnaissance', 'planes', 'and', 'five', 'fighters', 'destroyed', ',', 'and', 'another', 'fighter', 'driven', 'down', 'out', 'of', 'control', 'by', '2', '2', 'september', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'arabs', 'led', 'by', '', 'b.', '', 'and', '', 'al', '', 'defeated', 'an', 'indian', 'army', 'in', 'the', 'battle', 'of', '', 'in', '6', '4', '4', 'ad', 'at', 'the', 'indian', 'ocean', 'sea', 'coast', ',', 'then', 'reached', 'the', '', 'river', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'conducting', 'operation', '', 'against', 'sea', 'mines', 'in', '', 'harbor', ',', 'a', 'squadron', 'of', 'us', 'navy', '', 'was', 'attacked', 'by', 'korean', 'people', \"'s\", 'army', '(', 'kpa', ')', 'batteries', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'differences', 'as', 'well', 'as', 'reductions', 'of', 'the', '', 'chamber', 'and', 'changes', 'in', 'the', 'nature', 'of', 'the', 'lower', '', 'are', '', 'to', 'indicate', 'a', 'reduced', 'reliance', 'on', 'suction', 'feeding', 'in', 'early', '', 'in', 'comparison', 'to', '', 'fish', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'two', 'more', 'acclaimed', 'albums', ',', 'sex', '+', 'food', ',', 'and', 'the', 'instrumental', '', '0', '1', '', ',', 'followed', 'in', '2', '0', '1', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'problem', 'involves', 'two', 'central', 'intersection', 'points', ',', 'formula_', '9', '8', 'and', 'formula_', '1', '0', '1', ',', 'so', 'we', 'must', 'use', 'multiple', 'systems', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'same', 'day', ',', '', 'issued', 'an', 'exclusive', 'version', 'of', 'the', 'edition', 'that', 'included', 'a', 'digital', 'copy', 'of', 'the', 'film', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'project', 'consists', 'in', 'the', 'creation', 'of', 'a', 'library', ',', 'a', 'cultural', 'center', 'named', '', '', ',', 'and', 'a', '', 'program', 'for', 'artists', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '', '(', 'born', '9', 'march', '1', '9', '5', '3', ')', 'is', 'a', 'retired', 'dutch', '', 'who', 'won', 'a', 'bronze', 'medal', 'in', 'the', '', 'pairs', 'at', 'the', '1', '9', '7', '5', 'world', '', 'championships', ',', 'together', 'with', 'jan', 'van', 'der', '', '.', '', '', '', '', '', '', '']\n", "['', 'lydia', 'is', 'very', '', 'to', 'her', 'and', 'the', 'two', 'even', 'fearing', 'to', 'share', 'some', 'friendly', 'bound', ',', 'when', '', 'warns', 'her', 'about', 'tanja', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', '', '', 'system', ',', '', 'takes', 'advantage', 'of', 'the', 'combination', 'of', 'the', 'relatively', '', '', 'magnitude', 'and', 'large', 'field', 'of', 'view', '(', 'probably', 'the', 'largest', 'in', 'the', 'world', 'for', 'this', 'activity', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', 'the', 'appointment', 'of', 'the', '', 'of', '', 'as', 'president', 'in', 'the', '', 'government', 'in', 'august', '1', '9', '0', '2', 'the', 'post', 'of', 'parliamentary', 'secretary', 'to', 'the', 'board', 'was', 'established', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'restoration', 'was', 'completed', 'in', '2', '0', '1', '9', 'and', 'she', 'is', 'now', 'available', 'to', 'the', 'public', 'to', 'walk', 'on', 'its', 'exterior', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'attended', 'the', '', 'road', '3', 'rd', 'elementary', 'school', 'and', '', 'middle', 'school', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'though', 'the', 'organization', 'claims', 'the', 'methods', 'are', 'grounded', 'in', 'good', '', ',', 'the', 'underlying', 'ideas', 'are', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'oncom', 'or', 'sometimes', 'simply', 'called', '', 'oncom', ',', 'is', 'an', 'indonesian', 'style', 'rice', 'dish', ',', 'made', 'of', 'rice', 'mixed', 'with', 'oncom', '', 'beans', ',', 'originally', 'from', '', ',', 'west', 'java', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '1', '8', ',', 'with', 'the', 'creation', 'of', 'the', 'state', 'of', '', ',', 'croats', 'and', 'serbs', ',', '', 'rose', 'to', 'the', 'leadership', 'of', 'the', 'party', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'prior', 'to', 'the', '1', '8', '3', '0', 's', ',', 'a', 'majority', 'of', 'us', 'newspapers', 'were', '', 'with', 'a', 'political', 'party', 'or', 'platform', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'took', 'part', 'in', 'the', 'normandy', '', 'and', 'served', 'on', 'the', 'staff', 'of', 'allied', 'naval', 'commander-in-chief', 'of', 'the', '', 'force', 'in', '1', '9', '4', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'senior', 'class', 'of', '2', '0', '0', '0', 'was', 'responsible', 'for', 'three', 'state', 'titles', 'in', 'their', 'four', 'years', 'of', 'high', 'school', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'walker', 'played', 'at', 'prop', 'in', 'the', 'game', 'as', 'penrith', '', 'at', '', 'before', 'coming', 'back', 'in', 'the', 'second', 'half', 'to', 'win', 'their', 'first', 'premiership', 'in', 'a', '', 'final', '1', '9', '-', '1', '2', 'at', 'the', 'sydney', 'football', 'stadium', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'context', '', 'and', '', '', 'take', 'most', 'of', 'the', 'time', 'of', 'jpeg', '2', '0', '0', '0', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '1', '9', '9', '6', '', 'road', 'world', 'championships', 'took', 'place', 'in', '', ',', 'switzerland', ',', 'between', 'october', '9', 'and', 'october', '1', '3', ',', '1', '9', '9', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'serbian', 'kings', '', '', 'and', '', '', ',', 'who', 'were', 'saint', '', \"'s\", '', ',', 'significantly', '', 'the', 'monastery', 'with', 'new', 'land', '', 'and', 'proceeds', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'rai', 'defended', 'it', 'with', 'a', 'large', '', 'army', ',', 'but', 'he', 'was', 'defeated', 'by', '', 'who', 'became', 'the', 'governor', 'of', 'the', 'province', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'fields', 'as', 'senior', 'rabbi', 'in', '2', '0', '0', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'is', 'an', 'estimate', 'of', 'the', 'soil', 'moisture', '', ',', 'which', 'is', 'the', 'amount', 'of', 'water', 'necessary', 'to', 'bring', 'the', 'soil', 'moisture', 'to', 'its', 'full', 'capacity', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'age', 'of', '', 'and', 'proletarian', 'socialism', 'was', 'over', ',', 'with', '``', 'german', 'socialism', \"''\", '(', '', ')', 'taking', 'over', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'now', 'houses', 'the', 'wilton', 'historical', 'society', \"'s\", 'wilton', 'farm', 'and', 'home', 'museum', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'recently', 'there', 'has', 'been', 'increasing', 'use', 'of', 'jetboats', 'in', 'the', 'form', 'of', '', '', 'boats', 'and', 'as', 'luxury', 'yacht', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'prince', 'albert', 'had', 'agreed', 'to', 'the', 'bridge', 'being', 'named', 'after', 'him', 'as', 'early', 'as', '1', '8', '5', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'shot', '', 'down', 'at', 'the', 'end', 'of', 'the', 'film', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'genus', 'of', '', ',', 'a', 'small', 'group', 'of', '', '', ',', 'included', 'among', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'soon', 'after', '', \"'s\", 'death', ',', 'bothwell', 'and', 'mary', 'left', 'edinburgh', 'together', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '1', ',', 'the', 'aba', \"'s\", 'house', 'of', 'delegates', 'passed', 'an', '', 'resolution', 'that', 'included', 'sexual', 'orientation', 'and', 'gender', 'identity', 'among', 'characteristics', 'that', 'should', 'be', 'protected', ',', 'along', 'with', 'race', ',', 'religion', ',', 'national', 'origin', ',', 'sex', ',', 'and', 'disability', '.', '', '', '', '', '', '']\n", "['', 'she', 'was', 'married', 'to', 'alfred', '', ',', 'who', 'served', 'as', 'prime', 'minister', 'during', 'the', '1', '9', '6', '0', 's', ',', 'prior', 'to', 'the', 'latter', \"'s\", 'death', 'in', '1', '9', '9', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'its', 'operation', ',', 'trains', 'would', '', 'passengers', 'and', 'goods', 'here', 'for', 'transfer', 'to', 'the', '``', 'general', 'gordon', \"''\", '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'sees', 'a', 'group', 'of', 'jewish', 'children', '', 'at', 'him', 'from', 'the', 'other', 'side', 'of', 'the', 'camp', ',', 'where', 'the', 'jewish', 'prisoners', 'are', 'being', 'kept', 'away', 'from', 'everyone', 'else', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'special', 'instructions', 'were', 'issued', 'to', 'the', 'different', '', 'while', '', 'were', 'in', 'progress', ',', 'such', 'as', 'this', 'one', 'from', 'the', 'ball', 'of', '1', '8', '9', '9', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'aba', 'western', 'division', 'finals', ',', 'they', '', 'the', 'previous', 'division', 'champion', ',', 'the', 'new', 'orleans', '', ',', 'in', 'four', 'games', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'one', 'hand', ',', 'the', 'movement', 'of', '', 'causes', 'a', '', 'of', 'the', '', 'membrane', '(', 'which', 'results', 'in', 'an', '', '', 'potential', 'in', '', ')', 'leading', 'to', 'the', '', 'of', '', '', 'channels', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'union', '', 'suggested', 'that', 'he', 'take', 'up', 'painting', 'as', 'a', 'way', 'to', 'exercise', 'his', 'fingers', 'and', '', 'the', 'pain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'recorded', 'two', '', 'returned', 'for', '2', '7', 'yards', ',', '2', '0', '', 'including', '1', '5', 'solo', ',', 'five', 'passes', 'broken', 'up', ',', 'seven', 'passes', 'defended', ',', 'two', 'forced', '', ',', 'and', 'one', 'blocked', 'kick', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'with', 'eggs', ',', '', ',', 'and', 'sugar', 'or', 'honey', 'were', 'served', 'in', 'the', '', 'and', 'were', 'known', 'as', '``', 'royal', 'bread', \"''\", 'or', '``', 'golden', 'bread', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'this', 'time', ',', 'he', 'supervised', 'the', 'production', 'of', '', ',', '', 'and', 'other', 'campaign', 'materials', 'as', 'well', 'as', '', 'their', 'distribution', 'to', 'the', 'public', 'in', 'the', 'run', 'up', 'to', 'the', '2', '0', '1', '6', 'european', 'union', 'membership', 'referendum', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '4', '8', ',', 'he', '', 'with', '', 'over', 'the', '', 'of', 'his', 'brother', 'robert', 'atherton', 'in', '', 'the', 'previous', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'used', 'as', 'an', '', 'and', '', 'agent', 'in', 'the', 'clinical', 'treatment', 'of', '', 'and', 'anxiety', 'disorders', ',', 'respectively', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'his', 'first', 'nfl', 'regular', 'season', 'action', 'in', '2', '0', '0', '9', ',', 'he', 'caught', '4', '3', 'passes', 'for', '3', '2', '6', 'yards', 'and', 'one', '', 'as', 'a', 'slot', 'receiver', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'in', '2', '0', '1', '4', ',', 'after', 'unsuccessful', 'trials', 'at', 'norwegian', 'side', '', 'and', 'polish', 'club', '', 'kraków', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'saint', 'petersburg', ',', 'with', 'a', 'direct', 'railway', 'connection', 'to', 'lithuania', ',', 'was', 'becoming', 'a', 'lithuanian', 'cultural', 'center', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'of', 'these', 'modules', 'can', 'be', 'installed', 'in', 'any', '', 'environment', ';', 'however', ',', 'certain', 'modules', '(', '', 'modules', ')', 'require', 'a', 'working', 'c', '', 'and', 'development', 'environment', 'to', 'install', 'successfully', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'most', 'common', 'apartment', 'size', 'was', '5', 'rooms', 'of', 'which', 'there', 'were', '3', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'today', ',', 'millions', 'of', 'their', 'descendants', 'still', 'live', 'in', 'mexico', 'and', 'can', 'be', 'found', 'working', 'in', 'different', '', 'and', 'industries', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'opening', 'verse', 'stakes', 'is', 'an', 'american', 'thoroughbred', 'horse', 'race', 'held', 'annually', 'at', 'churchill', 'downs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'managed', 'the', 'state', \"'s\", 'finances', 'in', 'a', '', 'conservative', 'manner', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'opponents', 'often', 'focus', 'on', 'the', 'supposed', '', '', 'about', '', '', 'cause', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'promoting', 'a', 'healthy', 'use', 'of', '', 'mobility', ',', 'developing', 'views', 'on', 'traffic', 'matters', 'and', '', '', 'and', 'public', 'opinion', ',', 'as', 'well', 'as', '', 'car', 'racing', '', 'and', 'offering', 'special', 'benefits', 'to', 'its', 'members', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'simon', 'split', 'his', 'time', 'between', 'cha', 'cha', 'cohen', 'and', 'the', 'wedding', 'present', 'until', '1', '9', '9', '7', ',', 'when', 'wedding', 'present', 'singer', '/', 'guitarist', 'david', '', 'took', 'a', 'break', 'in', 'order', 'to', 'start', 'a', 'new', 'group', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'route', 'turns', 'to', 'the', 'north', 'and', 'winds', 'through', 'more', 'wooded', 'areas', 'with', 'some', 'fields', ',', 'turning', 'northeast', 'and', '', 'the', 'southern', 'terminus', 'of', 'ky', '2', '0', '0', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', 'later', 'succeeded', 'in', 'driving', 'out', 'the', 'portuguese', 'colonizers', 'from', 'east', 'africa', 'and', 'established', 'a', 'maritime', 'empire', 'that', 'extended', 'its', 'powers', 'to', 'the', 'persian', 'gulf', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'june', '1', '6', '3', '6', '', 'surrendered', ',', 'and', 'in', 'the', 'following', 'month', 'hanau', 'was', 'besieged', 'by', 'the', 'forces', 'of', 'the', '', 'of', 'mainz', 'and', 'the', 'bishop', 'of', '', 'under', 'baron', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '3', 'january', '2', '0', '1', '7', ',', 'the', 'federal', 'police', 'launched', 'operation', '``', 'cui', '', '?', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'planet', 'paradise', ',', 'visited', 'by', 'humans', 'earlier', ',', 'was', 'a', 'test', 'site', 'for', 'one', 'of', 'their', 'experiments', 'to', 'create', '', '(', 'see', 'novel', '``', 'paradise', 'lost', \"''\", ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'applied', 'and', 'was', 'selected', 'as', 'the', 'best', 'out', 'of', '2', '3', 'applicants', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'this', 'reason', ',', 'and', 'to', 'keep', 'the', 'text', 'as', 'consistent', 'as', 'possible', ',', 'changes', 'prior', 'to', 'the', 'language', 'revision', 'in', '2', '0', '1', '4', 'were', 'written', 'in', 'a', 'language', 'close', 'to', 'the', 'original', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'chassis', 'was', 'eventually', 'built', 'ahead', 'of', 'round', '5', 'in', '', ',', 'however', 'khan', 'did', 'not', 'race', 'for', '', 'reasons', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'early', '1', '8', '6', '0', 's', ',', '', 'opposed', 'the', 'māori', 'king', 'movement', ',', 'which', 'was', 'a', 'means', 'of', '', 'māori', 'unity', 'to', 'halt', 'the', '', 'of', 'land', 'at', 'a', 'time', 'of', 'rapid', 'population', 'growth', 'by', 'european', 'colonists', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'hundreds', 'of', '', ',', 'including', '', 'fernando', '', '', ',', 'attended', 'the', 'event', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '3', '0', 'september', '1', '9', '5', '0', ',', 'patricia', 'married', 'captain', 'donald', 'james', 'drake', 'at', 'all', 'saints', 'church', ',', 'loughborough', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'built', 'between', '1', '8', '3', '4', 'and', '1', '8', '4', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'terrain', 'of', 'the', 'southern', 'portion', 'of', 'the', 'tehsil', 'can', 'be', 'characterized', 'by', 'sand', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'both', 'were', '', 'and', 'artificial', 'lakes', 'created', 'by', 'the', 'tennessee', 'valley', 'authority', 'and', 'the', 'army', '', 'of', 'engineers', 'in', 'the', 'early', '2', '0', 'th', 'century', ';', 'the', 'town', 'now', 'lies', 'on', 'an', '', 'of', 'land', 'between', 'kentucky', 'lake', 'and', 'lake', 'barkley', '.', '', '', '', '', '', '', '', '']\n", "['', 'this', 'helped', 'keep', 'the', 'engine', 'efficient', ',', '', ',', 'and', 'convenient', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '3', ',', 'he', 'was', 'appointed', 'by', 'russian', 'president', 'vladimir', '', 'to', 'head', 'the', 'new', 'official', 'russian', '', 'international', 'news', 'agency', '``', 'rossiya', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'if', 'it', 'will', 'be', 'in', 'service', 'again', 'transporting', 'other', 'goods', 'for', 'another', 'company', '', 'is', 'currently', 'unclear', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'political', '', 'in', 'the', 'united', 'kingdom', 'has', 'been', 'described', 'by', 'some', 'critics', 'as', 'a', '``', 'chronic', 'disease', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'part', 'of', '5', 'th', 'army', 'group', 'royal', 'artillery', '(', '', ')', 'it', 'took', 'part', 'in', 'the', 'battles', 'of', 'the', '', 'line', ',', '', '', 'and', '', 'in', 'march', 'and', 'april', '1', '9', '4', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'entered', 'politics', 'in', '1', '9', '2', '1', 'as', 'a', 'member', 'of', 'the', '', '', \"'\", 'association', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'its', 'opening', ',', 'the', '', 'was', 'available', 'for', 'both', 'temporary', 'guests', 'and', 'others', 'who', 'made', 'it', 'their', 'permanent', 'residence', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'among', 'the', 'many', 'locations', 'on', 'long', 'island', 'used', 'by', 'the', 'native', 'peoples', ',', '1', '9', 'th-century', 'american', 'publications', '', 'identified', 'the', 'following', 'thirteen', 'as', '``', 'tribes', \"''\", 'on', 'long', 'island', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '0', 'september', ',', 'she', 'received', 'two', '', '4', '6', 'helicopters', 'from', 'detachment', '', '3', ';', 'and', '', 'alameda', 'the', 'next', 'day', 'for', 'her', 'first', '', 'deployment', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'term', 'is', 'used', 'to', 'define', 'the', 'group', 'of', 'pupils', 'who', 'must', 'follow', 'the', 'relevant', '', 'of', 'study', 'from', 'the', 'national', 'curriculum', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'has', 'spoken', 'of', 'an', '', 'for', 'her', 'strong', 'female', 'characters', 'and', 'a', 'desire', 'to', 'avoid', '', 'or', '', 'her', '', 'as', 'a', 'woman', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'episode', '1', '2', ',', '', 'had', 'to', 'secretly', 'get', 'all', 'of', 'the', '', 'to', '', '', 'on', 'anything', 'but', 'her', 'cooking', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'noted', 'that', 'this', 'was', 'not', 'done', 'at', 'their', 'request', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'whether', 'this', '', '', 'on', 'whether', 'the', '', 'type', 'would', 'send', 'the', 'same', 'signal', ',', 'and', 'how', 'the', 'receiver', '', 'the', 'signal', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'johnson', 'had', 'contributed', 'only', 'four', 'of', 'the', '3', '0', 'runs', 'scored', 'while', 'he', 'was', 'at', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'returned', 'to', 'the', 'organization', 'in', '2', '0', '1', '0', 'on', 'their', '', '', '', 'series', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', 'always', 'been', 'a', 'fan', '', ',', 'and', 'is', 'known', 'for', 'some', '', 'goals', 'when', 'playing', 'for', 'royal', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'black', 'and', 'white', 'appearance', 'however', '', 'the', 'attention', 'of', 'pepé', 'le', '', ',', 'who', ',', 'after', 'some', '', ',', 'receives', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '9', '9', '6', 'to', '2', '0', '0', '5', 'the', 'yearly', 'average', 'had', 'increased', 'to', 'over', '1', '8', '0', ',', '0', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'further', '1', '2', 'penguins', '(', '1', '0', 'gentoo', 'and', '2', 'king', ')', 'were', 'introduced', 'in', 'march', '2', '0', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'browning', 'was', 'unable', 'however', 'to', 'hire', 'his', 'favorite', 'star', '', '', 'this', 'time', 'around', ',', 'and', '``', 'the', '', \"''\", 'wound', 'up', 'a', '', 'film', 'with', 'a', 'cast', 'of', '', 'names', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'were', '2', ',', '1', '3', '6', 'housing', 'units', 'at', 'an', 'average', 'density', 'of', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'served', 'as', 'a', 'member', 'of', 'the', '', 'assembly', 'for', 'several', 'years', ',', 'and', 'was', 'a', 'member', 'of', 'the', 'executive', 'council', ',', 'serving', 'as', 'member', 'for', 'radio', 'and', 'telephone', 'services', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'the', 'author', 'of', 'two', '', 'books', 'and', 'a', 'novel', ',', '``', 'la', '', 'en', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', '6', 'september', '1', '8', '3', '2', ',', 'the', 'church', 'was', 'opened', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'work', 'on', 'the', 'operating', 'system', 'continued', ';', '', 'could', 'now', 'be', '', 'and', 'was', '', ',', 'however', 'much', 'work', 'remained', 'before', 'a', 'release', 'could', 'be', 'made', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'building', 'in', 'which', 'the', 'museum', 'formerly', 'resided', 'was', 'a', 'georgian', '', 'that', 'became', 'grade', 'ii', 'listed', 'in', '1', '9', '8', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'love', 'for', 'music', 'and', '', 'work', 'remained', 'in', 'him', 'for', 'the', 'rest', 'of', 'his', 'life', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'first', 'dennis', 'plans', 'not', 'to', 'attend', 'the', 'funeral', 'because', 'he', 'would', 'likely', 'be', 'caught', 'by', 'the', 'police', ',', 'but', 'he', 'goes', 'anyway', 'and', ',', 'after', 'that', ',', 'turns', 'himself', 'in', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'kerala', 'information', 'and', 'public', 'relations', 'department', 'is', 'the', 'main', 'government', 'agency', '', 'information', 'to', 'the', 'public', 'and', 'for', 'the', 'provision', 'of', 'feedback', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'sister', '', '', 'is', 'an', '', 'and', '', 'nun', 'and', 'drug', '', 'with', 'a', '', 'past', 'of', 'her', 'own', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'among', 'the', 'soldiers', 'appear', 'confused', ',', 'with', 'some', '', 'by', 'more', 'distant', 'figures', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'earning', 'an', 'associate', 'of', 'arts', 'diploma', 'from', '', ',', '', 'moved', 'to', 'miami', 'and', 'actively', 'performed', 'in', 'recording', 'sessions', 'and', 'original', 'and', 'cover', 'bands', 'while', 'attending', 'music', 'classes', 'at', 'university', 'of', 'miami', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'experiment', 'has', 'since', 'been', 'repeated', 'by', 'generations', 'of', 'physics', 'students', ',', 'although', 'it', 'is', 'rather', 'expensive', 'and', 'difficult', 'to', 'conduct', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '', '(', 'born', '3', 'august', '1', '9', '9', '4', ')', 'is', 'a', 'romanian', 'professional', 'footballer', 'who', 'plays', 'as', 'a', 'midfielder', 'for', '', 'gloria', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '5', 'the', 'event', 'was', 'still', 'driving', 'tourism', ',', 'with', 'visitor', 'numbers', 'peaking', 'in', '2', '0', '1', '0', ',', 'then', 'settling', 'to', '5', '0', '%', 'more', 'than', 'before', 'the', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'each', 'summer', ',', '', 'sit', '', 'atop', 'the', 'nest', 'boxes', ',', '', 'for', 'their', '', 'prey', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'are', 'typical', 'for', 'the', 'time', 'in', 'that', 'they', 'contain', 'two', 'parts', 'for', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'highest', 'mountain', 'in', 'the', 'park', ',', '``', '', \"''\", ',', '', 'above', 'sea', 'level', ',', 'is', 'found', 'here', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'town', 'lies', 'in', 'nh', '7', 'and', 'has', 'very', 'good', 'road', 'and', 'railway', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'an', 'oxygen', '', 'this', 'can', 'occur', 'if', 'the', 'loop', 'is', 'not', 'sufficiently', '', 'at', 'the', 'start', 'of', 'use', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '4', ',', '', 'at', 'yale', 'university', 'identified', 'a', 'protein', 'from', 'the', '', \"'s\", '', 'that', 'shows', 'promise', 'as', 'a', 'new', '', 'drug', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'time', ',', 'they', 'had', '3', '0', ',', '0', '0', '0', 'objects', ',', 'and', 'a', '', 'collection', 'of', 'photographs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'first', 'success', 'as', 'a', 'senior', 'came', 'that', 'year', 'as', 'she', 'was', 'runner-up', 'at', 'the', 'european', 'champion', 'clubs', 'cup', ',', 'taking', 'second', 'behind', 'patricia', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'allen', 'shaw', \"'s\", '', 'communications', 'bought', 'the', 'station', 'in', 'december', '1', '9', '9', '3', 'for', '$', '1', '3', '.', '5', 'million', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'height', ',', 'the', 'president', 'of', 'the', 'national', 'council', 'of', 'negro', 'women', ',', 'enlisted', '', 'to', 'help', 'organize', 'the', 'production', 'of', 'the', 'first', 'national', 'black', 'family', 'reunion', 'on', 'the', 'national', 'mall', 'in', '1', '9', '8', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'stevens', 'was', 'accused', 'of', 'ordering', 'the', 'landing', 'on', 'his', 'own', 'authority', 'and', '', 'using', 'his', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'porter', 'served', 'as', 'the', '', 'coach', 'for', 'the', 'class', 'a', 'greensboro', '', 'in', '2', '0', '0', '5', 'and', 'manager', 'of', 'the', 'class', '', '', '', 'in', '2', '0', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '0', 'july', '2', '0', '1', '7', ',', '', 'signed', 'for', '', 'on', 'a', 'contract', 'until', 'the', 'end', 'of', 'the', '2', '0', '1', '7', 'season', ',', 'with', 'an', 'option', 'for', 'an', 'additional', 'season', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'morris', \"'\", 'first', 'job', 'in', 'television', 'came', 'while', 'he', 'was', 'still', 'in', 'college', ',', 'as', 'an', 'intern', 'news', 'writer', 'in', 'norfolk', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'administered', 'by', 'a', 'board', 'of', 'volunteers', 'annually', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', ',', 'however', ',', '', 'absent', 'after', 'the', '', '``', 'ma', '(', '', ')', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '4', ',', 'after', 'receiving', 'his', '', ',', '', 'founded', '', 'group', ',', 'a', '', ',', 'trading', 'and', 'finance', 'enterprise', 'based', 'in', 'new', 'york', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'soon', 'relocated', 'farther', 'inland', 'from', '``', '', \"''\", ',', 'near', 'the', 'city', 'of', '', ',', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'tries', 'to', 'maintain', 'his', 'status', 'among', 'the', 'other', 'inmates', 'by', '', 'about', 'what', 'a', 'famous', 'performer', 'he', 'once', 'was', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'sarah', '', 'is', 'frequently', 'voted', 'the', 'most', 'popular', '``', 'doctor', 'who', \"''\", '', 'by', 'both', '``', 'doctor', 'who', \"''\", 'fans', 'and', 'members', 'of', 'the', 'general', 'public', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ang', 'chan', 'ii', 'was', 'the', 'eldest', 'son', 'of', 'ang', 'eng', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'began', 'to', '', 'his', 'lead', 'over', 'alonso', 'and', 'massa', 'in', 'second', 'and', 'third', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'massive', '', '(', 'formation', 'of', 'muscular', 'tissue', ')', 'occurs', 'throughout', 'the', 'advanced', '', 'phase', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '4', '8', ',', '', 'joined', 'the', 'general', 'confederation', 'of', 'labour', 'in', 'the', 'days', 'of', 'french', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '3', '', 'acid', '(', 'also', 'known', 'as', '``', '', \"''\", '', 'acid', 'or', '', ')', 'is', 'an', 'organic', 'compound', 'with', 'the', 'molecular', 'formula', 'h', '2', '', '6', 'h', '4', 'co', '2', 'h', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'penguin', 'encounter', 'was', 'originally', 'home', 'to', '1', '2', 'penguins', 'all', 'of', 'which', 'were', 'moved', 'from', 'new', 'zealand', '(', '', 'from', 'kelly', '', \"'s\", 'underwater', 'world', ')', 'two', 'weeks', 'before', 'opening', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'praise', '', 'on', 'the', '', 'in', 'the', '``', '', 'des', '', \"''\", 'brought', 'down', 'on', '', 'the', '', 'of', 'the', '', ',', 'and', 'his', '``', '', 'des', 'saints', \"''\", ',', 'in', 'which', 'he', 'brought', 'his', 'critical', 'mind', 'to', 'bear', 'on', 'the', 'question', 'of', '', ',', 'caused', 'some', 'scandal', '.']\n", "['', 'they', 'live', 'from', 'sea', 'level', 'to', 'more', 'than', '1', '0', ',', '0', '0', '0', 'feet', 'in', 'many', 'types', 'of', 'habitats', ',', '', 'in', 'aquatic', 'settings', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'features', 'are', 'distinct', 'from', 'pressure', '', ',', 'which', 'are', '', 'formed', 'by', 'the', '', 'of', 'ice', 'against', 'a', '', 'or', 'another', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'also', 'the', 'fourteenth', 'episode', 'of', 'the', 'show', \"'s\", 'third', 'season', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'november', 'and', 'december', '1', '9', '9', '8', ',', 'the', 'squadron', '', 'to', 'the', 'newly', 'commissioned', 'in', 'support', 'of', 'her', '', 'cruise', 'and', 'orange', 'air', 'operations', 'against', 'battle', 'group', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', '1', '5', 'years', 'of', 'intensive', 'studies', 'and', 'failing', 'health', 'he', 'died', ',', 'in', '1', '8', '3', '7', ',', 'at', 'the', 'age', 'of', '2', '0', 'or', '2', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'el', 'gamma', '', 'comes', 'from', 'the', 'words', '``', 'gamma', \"''\", 'and', '``', '', \"''\", ',', 'which', '(', 'in', 'the', 'words', 'of', 'the', 'group', ')', 'refer', 'to', 'the', 'ideas', 'of', 'light', '(', 'gamma', 'rays', ')', 'and', 'shadow', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'this', 'expedition', ',', 'she', 'became', 'the', '3', '5', 'th', 'woman', 'and', 'first', '', 'woman', 'to', 'reach', 'the', 'peak', 'of', 'mount', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '9', ',', 'she', 'also', 'won', 'the', 'valencia', 'marathon', 'and', 'she', 'also', 'set', 'a', 'new', 'course', 'record', 'of', '2', ':', '1', '8', ':', '3', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'those', 'of', 'hispanic', 'or', 'latino', 'origin', 'made', 'up', '6', '.', '2', '%', 'of', 'the', 'population', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'second', 'presidential', 'debate', 'took', 'place', 'on', '', ',', 'october', '1', '6', 'at', 'new', 'york', \"'s\", '', 'university', ',', 'and', 'was', '', 'by', 'candy', 'crowley', 'of', 'cnn', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'town', 'in', 'the', 'mexican', 'state', 'of', '', '', ',', 'mexico', ',', '', 'in', 'state', 'center', ',', 'in', 'the', 'municipality', 'of', 'felipe', '', 'puerto', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'the', '2', '0', '0', '5', 'most', 'popular', 'drama', 'of', 'the', 'year', 'at', 'the', '4', '0', 'th', 'golden', 'bell', 'awards', ',', 'taiwan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'august', 'married', 'on', '3', 'march', '1', '9', '4', '8', 'in', '', ',', 'bonn', 'to', '', 'von', '(', 'b', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'applies', 'to', 'the', 'royal', '', 'and', '', 'as', 'well', ',', 'but', 'does', 'not', 'apply', 'to', 'their', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'translated', 'into', 'italian', '(', '', ',', '1', '8', '7', '7', ')', 'and', 'into', 'english', '(', 'london', ',', '1', '8', '7', '6', ';', 'baltimore', ',', '1', '8', '8', '9', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'trained', 'in', '', 'during', 'his', 'school', 'years', ',', 'and', 'held', 'the', 'rank', 'of', '2', 'nd', '``', 'dan', \"''\", 'in', 'that', 'martial', 'art', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'is', 'the', 'sixth', 'single', 'by', 'the', 'japanese', 'girl', 'idol', 'group', 'team', '', ',', 'released', 'in', 'japan', 'on', 'may', '1', '4', ',', '2', '0', '1', '4', 'by', '', 'records', '(', 'warner', 'music', 'japan', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'the', 'duke', 'was', 'murdered', 'in', '1', '4', '5', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'indigenous', 'population', 'of', 'the', 'nation', ',', 'which', 'is', '', '', ',', 'consists', 'of', 'various', '', 'groups', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'due', 'to', 'some', 'quick', 'thinking', ',', 'flora', 'survives', 'the', 'attempt', 'and', 'uses', 'the', 'maintenance', '', 'running', 'under', 'the', 'city', 'to', 'get', 'to', 'the', 'boundary', ',', 'along', 'with', 'her', 'friends', '', '(', 'a', '', ')', 'and', '', '(', 'an', '', ')', 'and', 'the', 'service', 'droid', '.', '', '', '', '', '']\n", "['', 'similarly', ',', 'black', 'pride', 'groups', '', 'the', 'concept', 'of', '', 'identity', 'for', 'their', 'own', 'purposes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'created', 'the', '', 'soundtrack', 'for', 'alfred', 'hitchcock', \"'s\", 'film', '``', 'the', 'birds', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '1', '9', '5', '0', 's', ',', 'banking', '', '', '', 'recruited', 'him', 'as', 'a', 'manager', 'for', 'the', 'british', 'and', 'french', 'bank', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'have', 'been', 'increased', 'in', 'both', 'height', 'and', 'number', 'since', 'the', 'good', 'friday', 'agreement', 'of', '1', '9', '9', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'an', 'unincorporated', 'community', 'located', 'in', '', 'county', ',', 'mississippi', ',', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'political', 'parties', 'would', 'sponsor', 'anonymous', 'political', 'figures', 'in', 'the', 'federal', 'republican', 'and', 'daily', 'gazette', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'from', '', ',', 'in', 'the', '``', '', 'hat', \"''\", 'galaxy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'buried', 'in', '', 'cathedral', ',', 'where', 'his', 'tomb', ',', 'with', 'the', 'bishop', \"'s\", '', ',', 'still', 'survives', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '4', ',', '9', '0', 'copies', 'on', '', 'of', 'a', 'new', 'edition', 'were', 'published', 'by', '', '', 'et', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", 'won', 'the', 'award', 'for', 'best', 'video', 'at', 'the', '', 'europe', 'music', 'awards', '1', '9', '9', '8', 'and', 'was', 'nominated', 'for', '', 'and', 'd', '&', 'amp', ';', 'ad', 'awards', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'james', '', 'has', 'received', 'the', 'most', 'award', 'nominations', ',', '1', '5', 'in', 'total', ',', 'while', 'winning', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'have', 'three', 'children', ',', '', ',', 'born', 'in', '1', '9', '9', '5', ',', '', 'in', '1', '9', '9', '7', ',', '', 'in', '1', '9', '9', '9', ',', 'but', 'have', 'since', 'divorced', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'hosted', 'by', 'michael', '', 'with', 'coaches', '', '', ',', '', '', ',', '', '', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '6', 'it', 'was', 'the', 'animation', 'studio', 'responsible', 'for', 'the', 'tv', 'version', 'of', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', '', 'are', 'forbidden', 'from', 'having', 'romantic', 'relations', 'with', 'one', 'another', ',', 'over', 'time', ',', 'a', 'romantic', 'relationship', 'develops', 'between', 'the', 'two', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'is', 'revealed', 'to', 'be', 'a', 'russian', 'passport', ',', 'which', 'he', 'uses', 'to', 'meet', 'his', 'wife', '', ',', 'whom', 'it', 'is', 'now', 'revealed', 'is', 'a', 'double', 'agent', '(', 'it', 'is', 'not', 'made', 'clear', 'for', 'how', 'long', 'bernard', 'knew', 'this', ')', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'australian', 'national', 'audit', 'office', 'provides', 'the', 'australian', 'parliament', 'and', 'the', 'public', 'with', 'an', 'independent', 'assessment', 'of', 'selected', 'areas', 'of', 'public', 'administration', 'in', 'the', '', ',', 'and', 'assurance', 'about', '', 'financial', 'reporting', ',', 'administration', 'and', 'accountability', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'despite', 'a', 'certain', '', 'in', 'the', 'post', 'of', 'coach', ',', 'the', '', 'club', 'confirmed', 'its', 'place', 'in', 'the', 'elite', 'during', 'the', 'following', 'seasons', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '9', 'a', 'cairns', 'couple', 'was', 'charged', 'by', 'queensland', 'police', 'under', '', 'laws', 'after', 'imported', '', 'was', 'found', 'in', 'their', 'home', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'wrote', 'two', 'books', ':', '``', '', '', '', \"''\", '(', '2', '0', '0', '7', ')', 'and', '``', '', '', 'do', '', \"''\", '(', '2', '0', '0', '8', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'dynasty', ',', 'also', 'known', 'as', 'the', '', 'dynasty', 'of', '', ',', 'ruled', 'maharashtra', 'from', 'the', '1', '3', 'th', 'century', 'to', 'the', '1', '4', 'th', 'century', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'apostolic', 'faith', 'is', 'a', '', 'church', 'located', 'near', 'the', 'northern', 'city', 'limits', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'some', 'very', 'basic', 'restrictions', 'in', 'the', 'event', 'site', '', '(', 'a', 'site', 'loses', 'its', 'link', 'to', 'the', 'zone', 'controller', ')', 'does', 'occur', 'but', 'for', 'all', '', 'and', 'purposes', 'once', 'an', '', 'site', 'is', 'in', 'site', '', 'mode', 'it', \"'s\", 'a', '', 'site', '.', '', '', '', '', '']\n", "['', 'an', 'addition', 'was', 'built', 'in', '1', '9', '1', '7', ',', 'designed', 'by', '', '&', 'amp', ';', 'fischer', ',', 'at', 'a', 'cost', 'of', '$', '4', '0', ',', '0', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'he', 'retired', 'in', '1', '9', '8', '6', 'from', 'the', 'us', 'public', 'health', 'service', ',', 'he', 'moved', 'to', 'seattle', 'and', 'continued', 'his', 'teaching', 'work', 'as', 'emeritus', 'professor', 'of', '', 'in', 'the', 'university', 'of', 'washington', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'accounted', 'for', 'more', 'than', '1', '4', '%', 'of', 'the', 'student', 'body', 'that', 'year', ',', 'before', 'peaking', 'at', 'over', '1', '6', '%', 'of', 'total', 'enrollment', 'in', '1', '9', '7', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'even', 'though', 'she', 'could', 'no', 'longer', 'continue', 'to', 'pursue', 'her', 'own', 'career', ',', 'keen', 'continued', 'to', 'review', 'the', 'manuscripts', 'of', 'her', 'colleagues', ',', 'and', 'keep', 'in', '', 'with', 'her', 'former', 'students', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'\", '', 'store', 'closed', 'in', '1', '9', '3', '1', 'at', 'the', 'height', 'of', 'the', 'great', 'depression', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'a', '', ',', 'english', 'medium', 'senior', 'secondary', 'school', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'other', 'large', 'church', 'in', 'tollesbury', 'opposite', 'the', 'square', 'is', 'the', 'congregational', 'church', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '1', '0', '.', '5', 'cm', '', '', '3', '2', '(', '', '-', '', '(', 'quick', '', 'cannon', ')', 'c', '-', '', '(', 'year', 'of', 'design', ')', ',', 'was', 'a', 'widely', 'used', 'german', 'naval', 'gun', 'on', 'a', 'variety', 'of', '', 'ships', 'during', 'world', 'war', 'ii', '.', '', '', '', '']\n", "['', 'only', 'the', 'sheriff', '(', 'ruth', 'gordon', ')', 'witnesses', 'their', 'landing', ',', 'and', 'she', 'becomes', '', 'with', 'alien', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'river', 'takes', 'its', 'waters', 'from', 'a', 'set', 'of', 'lakes', 'to', 'the', 'east', 'and', 'southeast', 'of', 'the', '', 'reservoir', ';', 'the', 'upper', 'lake', 'is', '5', '.', '7', 'km', 'south', 'of', '', 'or', 'at', 'the', 'east', 'of', 'a', 'highest', 'peak', 'at', '4', '5', '0', 'meters', '.', '', '', '', '', '']\n", "['', 'it', 'was', 'described', 'by', 'mitchell', 'in', '1', '9', '5', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'matthew', 'george', 'greene', '(', 'born', 'may', '1', '3', ',', '1', '9', '8', '3', ')', 'is', 'an', 'american', 'former', 'professional', 'ice', 'hockey', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'character', 'has', 'enjoyed', 'a', 'rich', '', 'in', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'region', 'is', 'comparable', 'in', 'size', 'to', 'the', 'combined', 'land', 'and', 'water', 'areas', 'of', 'the', 'united', 'states', 'state', 'of', 'maryland', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'also', 'a', 'member', 'of', 'the', '', 'art', 'colony', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'han', 'guang', 'refused', 'to', '', 'ji', 'to', 'zang', 'tu', ',', 'who', 'seized', 'the', 'city', 'and', 'killed', 'han', 'guang', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'apart', 'from', 'short', 'visits', 'paid', 'the', 'first', '1', '2', 'years', 'of', 'his', 'reign', ',', 'he', 'spent', 'his', 'time', 'almost', 'entirely', 'in', 'france', ';', 'he', 'regarded', '', '', 'as', 'a', 'source', 'of', '', 'with', 'which', 'to', 'advance', 'his', 'designs', 'to', 'become', 'a', 'major', 'power', 'in', 'france', '.', '', '', '', '']\n", "['', 'it', 'is', 'found', 'in', 'panama', ',', 'costa', 'rica', ',', 'colombia', 'and', 'peru', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'greater', '', 'of', 'rat', 'remains', 'associated', 'with', '', 'households', 'may', 'indicate', 'the', '', 'of', '', 'hawaii', 'did', 'not', '', 'them', 'as', 'a', 'matter', 'of', 'status', 'or', 'taste', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'this', ',', 'she', 'was', 'active', 'in', 'the', 'company', 'of', 'her', '', 'in', 'naples', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'house', 'served', 'as', 'a', 'post', 'office', ',', 'as', 'a', 'general', 'store', ',', 'and', 'as', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', \"'s\", 'championship', 'run', 'from', 'february', '1', ',', '2', '0', '1', '4', 'to', 'may', '8', ',', '2', '0', '1', '5', 'is', 'the', 'longest', 'in', 'the', 'history', 'of', 'the', 'championship', ',', 'while', '', '', \"'\", '6', '5', 'day', 'reign', 'is', 'the', '', '.', '', '', '', '', '', '', '']\n", "['', 'eventually', ',', '5', '0', 'complete', 'sets', 'of', 'combination', '5', '5', '/', '3', '5', 'mm', '', 'and', '``', '', \"''\", '', 'were', 'completed', 'and', 'delivered', 'by', 'century', 'and', '', ',', 'respectively', ',', 'and', '5', '5', 'mm', 'release', 'print', '', 'equipment', 'was', 'delivered', 'by', 'western', 'electric', '.', '', '', '', '', '']\n", "['', 'in', 'the', '1', '9', '9', '0', 's', 'and', '2', '0', '0', '0', 's', ',', 'a', 'street', 'punk', 'revival', 'began', 'with', 'emerging', 'street', 'punk', 'bands', 'such', 'as', 'the', 'casualties', ',', 'the', 'virus', ',', 'cheap', 'sex', ',', 'lower', 'class', '', 'and', 'the', '', '.', '', '', '', '', '', '', '', '']\n", "['', 'in', 'fact', ',', 'of', 'their', 'december', 'meeting', 'in', 'philadelphia', ',', 'one', 'source', 'noted', 'that', '``', 'with', 'the', 'exception', 'of', 'the', 'third', 'round', 'when', 'cole', 'sent', 'over', 'some', 'very', 'hard', 'punches', ',', \"''\", 'the', '``', 'battle', 'was', 'walcott', \"'s\", 'all', 'the', 'way', '.', \"''\", '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'the', 'setting', 'for', 'events', 'spread', 'over', 'a', '3', '6', '-year', 'period', 'in', 'carolina', 'de', '', \"'\", 'novel', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'elephant', 'found', 'in', 'thailand', 'is', 'the', 'indian', 'elephant', '(', '``', '', '', '', \"''\", ')', ',', 'a', 'subspecies', 'of', 'the', 'asian', 'elephant', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '1', 'she', 'became', 'the', 'first', 'female', 'lecturer', 'at', 'monash', 'university', ',', '', 'in', 'literature', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'july', '2', '0', '1', '6', ',', 'david', '', 'attended', 'the', 'democratic', 'national', 'convention', 'as', 'a', '', ',', 'and', '', 'his', 'support', 'to', '', '', 'over', 'hillary', 'clinton', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'scandal', 'broke', 'out', 'in', '1', '9', '9', '0', ',', 'as', 'american', 'investors', 'were', 'damaged', 'by', 'a', 'case', 'of', 'corruption', ',', 'and', 'asked', 'for', 'assistance', 'from', 'the', 'united', 'states', \"'\", 'ambassador', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'note', 'that', 'the', 'numbers', 'given', 'by', '', 'historians', 'of', 'the', 'time', 'were', 'probably', 'exaggerated', ',', 'considering', 'the', 'fact', 'that', 'the', '', 'jews', 'lost', 'the', 'war', 'against', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'green', 'related', 'that', 'his', 'first', 'day', 'on', 'the', 'set', 'came', 'just', 'after', '', 'had', 'finished', 'filming', 'his', 'final', 'scene', ';', 'green', 'was', 'impressed', 'with', '', \"'s\", '', 'and', '', 'acting', ',', 'and', 'added', 'that', 'the', 'two', '``', 'just', '', 'off', 'the', 'whole', 'time', \"''\", '.', '', '', '', '', '']\n", "['', 'the', '2', '0', '2', '0', 'race', ',', 'which', 'would', 'have', 'been', 'renamed', 'the', 'indycar', 'challenge', ',', 'was', 'cancelled', 'due', 'to', 'the', 'covid-', '1', '9', 'pandemic', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'persistent', '', ',', 'skin', 'or', '', 'carriage', 'in', 'the', 'healthy', 'population', '', '``', '', \"''\", 'across', 'the', 'world', ',', 'the', '', 'from', 'resistant', 'strains', 'in', 'both', 'hospitals', 'and', 'the', 'community', 'increases', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'last', 'angry', 'man', 'is', 'a', '1', '9', '5', '9', 'drama', 'film', 'that', 'tells', 'the', 'story', 'of', 'a', 'television', 'producer', 'who', '', 'the', 'life', 'of', 'a', 'physician', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'another', '2', '0', '1', '5', 'record', ',', 'the', 'story', 'so', 'far', \"'s\", 'self', 'titled', '``', 'the', 'story', 'so', 'far', \"''\", 'placed', 'on', 'billboard', 'top', '2', '0', '0', '#', '2', '3', ',', '#', '1', 'vinyl', 'sales', ',', '#', '2', 'independent', 'albums', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'received', 'a', '``', 'keep', 'the', 'dream', 'alive', \"''\", 'martin', '', 'king', 'humanitarian', 'award', 'for', 'his', 'social', 'and', 'artistic', '', 'for', 'the', 'black', 'and', 'hispanic', 'lgbt', '(', 'lesbian', ',', 'gay', ',', '', 'and', 'transgender', ')', '', 'community', ',', 'aka', 'harlem', '', 'ball', 'community', '.', '', '', '', '', '']\n", "['', 'it', 'is', 'a', '', '', 'influenced', 'building', 'designed', 'by', 'edward', 'f.', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '4', ',', 'matthews', 'took', 'up', 'a', 'position', 'as', 'national', 'campaigns', 'director', 'at', 'better', 'off', 'out', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'company', 'existed', 'from', '1', '9', '4', '5', 'to', '1', '9', '5', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '6', '8', 'a', 'new', 'service', 'wing', 'was', 'added', 'to', 'the', 'north', 'elevation', 'under', 'the', 'instruction', 'of', 'architect', 'richard', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '', 'to', 'the', '1', '9', '9', '4', 'world', 'cup', ',', 'angeles', 'was', 'forced', 'to', 'prepare', 'alone', 'as', 'the', 'united', 'states', 'did', 'not', 'have', 'a', 'national', 'league', 'at', 'the', 'time', ';', 'he', 'joined', 'a', 'running', 'club', 'and', '', 'friendly', 'international', 'matches', 'in', 'los', 'angeles', '.', '', '', '', '']\n", "['', 'before', 'any', 'more', 'information', 'can', 'be', '', ',', 'fred', 'is', 'caught', 'and', 'taken', 'away', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'has', 'been', 'designated', 'as', 'a', 'grade', 'i', 'listed', 'building', 'and', 'scheduled', 'monument', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'about', '9', '0', '%', 'of', '', 'from', '', '', '6', 'were', 'so', 'far', '', 'as', '', 'and', 'in', 'the', 'remaining', '1', '0', '%', ',', 'only', '1', '%', 'was', 'paid', 'to', 'the', 'government', 'and', 'rest', '9', '%', 'went', 'to', 'the', 'operator', 'as', 'profit', '.', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'village', 'in', 'district', '', 'in', 'india', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'six', 'years', 'later', ',', 'the', '', 'of', 'john', '', 'were', 'also', 'condemned', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'then', 'only', '1', '9', 'years', 'old', ',', 'the', 'young', '', '', ',', 'and', 'still', 'later', 'that', 'year', ',', 'would', 'have', 'other', 'opportunities', 'among', 'professionals', 'in', 'the', 'second', 'responded', 'to', 'the', 'commands', 'of', '', '', ',', 'assistant', '', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'scholar', ',', 'painter', ',', 'and', 'poet', 'paul', 'hansen', ',', 'who', 'became', 'a', 'professor', 'of', 'chinese', 'languages', 'and', 'noted', 'translator', 'of', 'early', 'chinese', 'poetry', 'lived', 'in', '', 'for', 'several', 'years', ',', 'and', '', 'author', 'tom', 'robbins', 'was', 'a', 'frequent', 'visitor', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'magnum', '', ',', '``', 'the', 'history', 'of', 'government', 'from', 'the', 'earliest', 'times', \"''\", ',', 'is', 'a', 'comparative', 'analysis', 'of', 'government', 'systems', ',', 'past', 'and', 'present', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'frequent', 'episode', 'director', 'tim', 'van', '', 'also', 'provided', 'chase', 'with', 'some', 'storyline', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'went', 'to', 'aroma', 'high', 'school', 'and', 'holds', 'a', 'master', \"'s\", 'degree', 'in', 'industrial', '', ',', 'from', '', '', 'university', 'in', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'exterior', 'of', 'an', 'industrial', 'cap', 'may', 'be', 'round', ',', 'square', ',', 'rectangular', ',', 'u-', 'or', '', ',', 'or', 'may', 'have', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'launched', 'in', 'august', '1', '9', '3', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'romney', \"'s\", 'campaign', 'did', 'often', 'focus', 'on', 'his', 'core', 'beliefs', ';', 'a', 'romney', 'billboard', 'in', 'new', 'hampshire', 'read', '``', 'the', 'way', 'to', 'stop', 'crime', 'is', 'to', 'stop', 'moral', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'tablets', 'are', 'held', 'in', 'the', '', 'museum', 'berlin', 'and', 'the', 'yale', '', 'collection', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', 'previously', '', 'as', '', ',', '', ')', 'is', 'an', 'american', '', 'band', 'from', 'port', '', ',', 'texas', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'its', 'existence', 'the', '', 'conducted', 'the', 'investigation', 'of', 'some', 'crimes', 'that', 'had', 'great', 'social', 'echo', ',', 'as', 'was', 'the', 'case', 'of', 'the', 'murders', 'committed', 'by', 'josé', '', '', ',', 'or', 'the', 'crimes', 'of', 'the', '``', '', 'of', 'valencia', \"''\", ',', '', '', '.', '', '', '', '', '', '']\n", "['', 'unlike', 'the', 'ones', 'in', '', '', 'stations', ',', 'the', '', 'structures', 'will', 'not', 'have', '', 'doors', 'but', 'fixed', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', '1', 'october', ',', 'reconnaissance', 'aircraft', 'took', 'and', '', 'crews', 'directed', '', '', 'on', 'artillery', 'batteries', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'charles', 'kingston', 'died', 'in', '1', '9', '0', '4', ',', 'three', 'months', 'after', 'he', 'and', '', 'celebrated', 'their', '5', '0', 'th', 'wedding', 'anniversary', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'all', 'of', 'its', '2', '0', 'students', 'when', 'the', 'forest', 'school', 'opened', 'were', 'male', ',', 'more', 'than', '6', '0', '%', 'of', 'the', 'students', 'of', 'the', 'college', 'were', 'female', 'as', 'of', '2', '0', '0', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', '', '', ',', 'ministers', ',', 'and', '', 'from', 'within', 'their', '', 'by', 'a', 'process', 'called', '``', 'the', 'lot', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'class', 'ii', '', ',', '', ',', 'and', '', 'and', '', ',', 'are', 'only', 'present', 'on', '', 'presenting', 'cells', 'and', 'are', 'responsible', 'for', 'presenting', '', 'from', '', 'organisms', 'to', 'cells', 'of', 'the', 'immune', 'system', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'defense', 'of', '', 'the', 'controversial', '', 'miguel', 'trade', ',', '', 'cited', 'that', '', '', 'also', 'tried', 'to', 'make', 'a', 'deal', 'with', '', \"'s\", 'first', 'round', 'pick', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'variety', ',', 'greater', 'probably', 'in', 'palestine', 'than', 'in', 'any', 'other', 'country', 'in', 'the', 'same', 'latitude', ',', 'is', 'attributed', 'to', 'the', 'great', '', 'of', 'elevation', 'and', 'temperature', 'in', 'this', 'small', 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'place', 'was', 'known', 'then', 'as', '', '', ',', 'which', 'was', 'then', 'still', 'part', 'of', 'the', 'town', 'of', '', '(', 'now', 'san', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'the', 'son', 'of', 'american', '', 'businessman', 'rick', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'official', 'website', 'containing', '', 'of', 'the', 'project', ',', 'as', 'well', 'as', 'a', 'film', 'trailer', ',', 'was', 'launched', 'in', 'august', '2', '0', '0', '7', 'and', 'featured', 'a', 'regular', 'blog', 'updated', 'by', '', 'der', '', '', 'the', 'various', 'stages', 'of', 'the', 'project', '.', '', '', '', '', '', '', '', '']\n", "['', 'during', 'this', 'period', 'the', 'magazine', 'published', 'a', 'chart', ',', 'typically', 'dominated', 'by', 'pop', 'records', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'already', '', 'by', 'broadcast', 'gospel', 'outlets', ',', 'the', 'ambassador', 'most', 'recently', 'performed', '``', '', 'me', '', '!', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'section', 'for', '', ',', '', 'and', 'other', 'services', 'is', 'located', 'at', 'the', 'grove', 'house', ',', '2', '4', '8', 'a', '', 'road', ',', 'london', ',', '', '1', '6', '', '(', 'entrance', 'from', '', 'grove', 'street', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'approximately', 'west', 'of', 'houston', 'and', 'east', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'objects', 'are', 'held', 'within', 'a', 'collection', ',', 'either', 'in', 'storage', 'or', 'on', 'display', 'in', 'an', 'exhibit', ',', 'the', 'primary', 'concern', 'should', 'be', 'on', 'the', 'continued', 'safety', 'of', 'the', 'collection', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'finally', 'it', 'turns', 'out', 'that', '', 'is', '', \"'s\", '', 'wife', ',', 'and', 'he', 'is', 'delighted', 'to', 'find', 'that', 'her', '', 'mean', 'that', 'he', 'can', '', 'his', '', 'maintenance', 'payments', 'to', 'her', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'until', '1', '8', '5', '2', 'the', 'diocese', 'also', 'included', 'some', '', 'in', 'herefordshire', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'committed', 'to', 'this', 'focus', ',', 'too', 'inc.', 'launched', 'the', 'first', 'justice', ':', 'just', 'for', 'girls', 'stores', 'in', 'january', '2', '0', '0', '4', ';', 'many', 'of', 'the', 'early', 'justice', 'stores', 'were', 'in', 'converted', '', 'stores', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'the', '', 'of', 'the', 'rural', 'community', 'of', '', ',', 'located', 'in', 'the', '', 'arrondissement', ',', 'of', 'the', '', 'department', 'and', 'the', 'region', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'character', 'tries', 'to', 'have', 'dearborn', 'declared', 'mentally', '', ';', 'the', 'effort', 'fails', ',', 'mostly', 'because', 'of', 'the', 'efforts', 'of', 'parker', \"'s\", 'character', ',', 'who', 'realizes', 'why', 'dearborn', 'is', 'held', 'in', '', 'by', 'his', 'neighbors', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'jack', ',', '', 'and', 'the', 'woman', 'drive', 'away', 'as', 'patrick', '', 'up', 'himself', 'and', 'the', 'infected', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'each', 'team', 'played', 'a', '1', '4', '0', '-game', 'schedule', ',', 'facing', 'the', 'seven', 'other', 'teams', 'in', 'the', 'same', 'league', '2', '0', 'times', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'expelled', 'from', 'the', 'university', ',', 'imprisoned', 'for', 'two', 'weeks', ',', 'and', 'deported', 'to', '', 'for', 'participating', 'in', 'the', 'february', '1', '8', '9', '9', 'student', 'protests', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'one', 'of', 'them', ',', '', ',', 'the', '', 'mountain', 'was', 'also', 'described', 'as', 'being', 'surrounded', 'by', '', 'mountain', 'to', 'the', 'east', ',', '', 'mountain', 'to', 'the', 'west', ',', '', 'mountain', 'to', 'the', 'north', 'and', '', 'to', 'the', 'south', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'let', 'all', 'actors', 'be', 'peace', '', 'and', '', ',', 'not', 'trying', 'to', '', 'the', 'benefit', 'and', 'the', 'good', 'of', 'the', 'land', 'that', 'belongs', 'to', 'all', 'of', 'us', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'thinks', 'that', 'she', 'could', 'be', 'behind', 'the', 'attack', 'to', 'win', 'her', 'over', 'in', '', \"'\", 'case', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'as', 'a', 'result', 'of', 'the', 'financial', 'recovery', 'plan', 'and', 'ongoing', '', 'financial', 'management', ',', '', 'is', '', 'in', 'its', 'ongoing', 'financial', 'sustainability', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'every', '1', '0', '0', 'females', 'age', '1', '8', 'and', 'over', ',', 'there', 'were', '9', '6', '.', '8', 'males', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'returned', 'to', '', 'mission', 'at', 'the', 'end', 'of', '1', '8', '6', '4', ',', 'however', 'the', 'war', 'in', 'the', '', 'had', 'scattered', 'the', 'māori', 'people', 'who', 'had', 'supported', 'the', 'mission', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'then', 'nepal', '', 'academy', 'was', 'established', 'as', 'a', '', 'corporate', 'body', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'post', 'office', 'operated', 'under', 'the', 'name', 'bluff', 'from', '1', '8', '9', '7', 'to', '1', '9', '0', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '8', 'march', '2', '0', '1', '3', 'she', 'released', 'the', 'single', '``', '', \"''\", ',', 'the', 'song', 'peaked', 'to', 'number', '8', 'on', 'the', 'danish', 'singles', 'chart', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'doyle', 'finished', 'the', 'season', 'fourth', 'in', 'the', 'flat', '', \"'\", 'championship', ',', 'the', '', 'ranking', 'for', 'a', 'woman', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'also', 'a', 'staff', 'physician', 'at', '', 'and', 'women', \"'s\", 'hospital', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'entered', 'the', 'living', 'room', 'where', 'his', 'wife', 'and', 'minorenti', 'were', 'sitting', '', 'for', 'him', 'and', 'fired', 'three', 'shots', 'with', 'his', '1', '2', '', 'browning', 'at', '', 'who', 'was', 'killed', 'instantly', 'and', 'then', 'two', 'shots', 'at', 'minorenti', 'who', 'had', 'tried', 'in', '', 'to', 'protect', 'himself', 'behind', 'a', 'small', 'table', '.']\n", "['', 'in', '', 'county', ',', 'it', '', 'the', '', 'arm', 'of', 'lake', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'ministry', 'was', 'originally', 'created', 'as', '``', 'imperial', 'and', 'royal', 'ministry', 'of', 'the', 'interior', \"''\", ',', 'serving', 'as', 'the', '', 'interior', 'ministry', 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'same', '', ',', 'john', 'also', 'had', 'bishop', '', 'of', '', ',', 'a', '', 'of', 'gregory', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'the', 'establishment', 'of', 'the', 'kingdom', 'the', 'family', 'moved', 'to', 'the', 'newly', 'built', 'palace', ',', 'al', '', 'palace', ',', 'outside', '', 'which', 'is', 'in', 'the', 'al', '', 'neighborhood', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'idea', 'was', 'among', 'many', 'of', 'the', 'goals', 'of', 'the', 'city', 'beautiful', 'movement', 'in', 'the', 'united', 'states', ',', 'which', 'encouraged', '', 'and', '', 'more', 'healthy', 'living', 'conditions', 'in', 'urban', 'centers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'work', 'can', 'be', 'found', 'in', 'the', 'national', 'gallery', 'of', 'zimbabwe', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'smith', 'died', 'in', 'berlin', 'on', '1', '7', 'may', '2', '0', '0', '8', 'immediately', 'after', '', 'his', '``', '', 'live', '-', 'the', 'english', 'connection', \"''\", 'radio', 'programme', 'on', '', 'berlin', '', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'patriots', 'used', 'tactics', 'such', 'as', 'property', '', 'to', 'suppress', '', 'and', 'drive', 'active', '', 'away', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '6', 'th', 'edward', '', 'memorial', 'was', 'the', '1', '9', '9', '8', 'version', 'of', 'the', 'edward', '', 'memorial', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'sbba', 'is', 'located', 'in', 'the', 'historic', 'building', 'of', 'the', '1', '8', 'th', 'century', 'solar', 'do', 'marques', 'do', '', 'in', 'downtown', 'rio', 'de', 'janeiro', ',', 'in', 'the', '', 'neighborhood', ',', 'at', '', 'do', '', ',', '', '8', '4', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'has', 'taught', 'at', 'various', 'institutes', 'including', 'design', 'academy', '', ',', 'the', '', 'academy', 'in', 'amsterdam', ',', '', '', 'mexico', 'city', ',', 'iceland', 'academy', 'of', 'the', 'arts', '', ',', 'the', '', 'summer', 'arts', 'program', 'maine', 'usa', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'sometimes', 'viewed', 'as', 'conservative', 'or', '', 'by', 'today', \"'s\", 'standards', ',', 'smith', 'points', 'out', 'that', 'these', 'films', 'were', 'not', 'made', 'by', '', 'or', '', 'but', 'instead', '``', 'by', 'some', 'of', 'the', 'most', 'liberal', 'and', '', 'people', 'of', 'their', 'time', '.', \"''\", '', '', '', '', '', '', '', '']\n", "['', 'prior', 'to', 'the', 'start', 'of', 'the', 'second', 'world', 'war', 'the', 'germans', 'deployed', 'the', 'system', 'at', 'many', '', 'airfields', 'in', 'and', 'outside', 'germany', 'and', 'equipped', 'most', 'of', 'their', 'bombers', 'with', 'the', 'radio', 'equipment', 'needed', 'to', 'use', 'it', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'the', 'last', 'mayor', 'and', 'the', 'first', 'chairman', 'of', 'the', '', 'municipality', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'tank', 'is', 'comparable', 'in', 'design', 'to', 'the', 'm', '4', '1', 'series', 'of', 'american', 'tanks', ',', 'which', 'already', 'proved', 'itself', '', 'of', 'holding', 'its', 'own', 'against', 'the', 'threat', 'of', 'type', '5', '9', 'and', '', '5', '5', 'a', 'tanks', 'during', 'the', 'vietnam', 'war', ',', 'but', 'has', 'an', 'improved', 'electrical', 'system', '.']\n", "['', 'then', 'he', 'was', 'appointed', 'president', 'of', 'the', '', 'commission', '``', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'town', 'includes', 'numerous', 'hills', ',', 'lakes', ',', '', ',', '', '', ',', 'and', '', '', 'of', '', 'bay', 'and', 'the', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'winters', 'also', 'lost', 'on', 'points', 'in', 'september', '1', '9', '9', '8', 'to', 'junior', '', ',', 'but', 'in', 'december', '1', '9', '9', '9', '', 'for', 'ricky', '', \"'s\", '', '', 'title', 'in', 'liverpool', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'the', 'eldest', 'daughter', 'of', 'abdul', 'rahman', 'bin', '', 'and', 'elder', 'sister', 'of', '', 'bin', 'abdul', 'rahman', ',', 'who', 'would', 'found', 'the', 'modern', '', '', 'and', 'rule', 'as', 'its', 'first', 'king', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'meanwhile', ',', 'flora', '', 'down', 'and', 'realizes', 'that', 'ivan', 'was', 'only', 'trying', 'to', 'protect', 'her', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'stated', 'that', ',', '``', 'as', 'long', 'as', 'there', 'will', 'be', '', 'and', 'interest', ',', 'i', 'will', 'produce', 'more', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'looking', 'at', 'me', '(', '', '', ')', \"''\", 'is', 'a', 'song', 'by', 'belgian', 'dj', 'laurent', '', '&', 'amp', ';', '', ',', 'from', 'his', 'debut', 'album', '``', 'ready', 'for', 'the', 'night', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'also', 'found', 'in', 'the', 'tasman', 'sea', 'around', 'lord', 'howe', 'island', 'and', 'norfolk', 'island', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', 'were', 'a', 'professional', 'wrestling', 'stable', 'that', 'has', 'made', 'appearances', 'in', 'various', 'wrestling', 'promotions', ',', 'such', 'as', 'total', '', 'action', 'wrestling', ',', 'and', 'most', '', 'wwe', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'film', 'was', 'shot', 'and', 'released', 'after', '``', 'national', '', \"'s\", 'animal', 'house', \"''\", 'in', 'july', '1', '9', '7', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'even', 'though', 'of', 'being', 'a', 'radio', '', 'single', ',', 'a', 'video', 'was', 'still', 'made', 'to', 'promote', 'the', 'album', 'and', 'film', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'due', 'to', '', 'in', 'establishing', 'air', 'traffic', 'control', 'services', 'at', 'the', 'airport', ',', 'the', 'launch', 'date', 'was', 'pushed', 'to', '1', '1', 'may', 'and', 'finally', '2', '4', 'may', '2', '0', '0', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'has', 'a', 'tropical', 'climate', 'and', 'an', 'annual', 'rainfall', 'of', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', 'duet', 'with', 'daniel', '', 'for', 'the', 'latter', \"'s\", 'album', ',', '``', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'two', 'species', '(', '``', 's.', '', \"''\", 'and', '``', 's.', '', \"''\", ')', 'are', '', 'or', '', '', ',', 'with', 'thin', 'stems', '(', 'up', 'to', '4', '.', '5', 'cm', 'across', ')', 'and', '', 'roots', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'featured', 'on', '``', 'motor', 'of', 'love', \"''\", 'from', 'the', '``', 'flowers', 'in', 'the', '', \"''\", 'album', ',', 'recorded', 'at', 'mccartney', \"'s\", 'own', 'recording', 'studio', 'in', 'a', 'vintage', '', 'just', 'south', 'of', 'london', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'released', 'in', 'belgium', 'as', 'a', 'digital', 'download', 'on', '8', 'july', '2', '0', '0', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'car', 'was', 'nicknamed', 'the', '``', 'size', 'zero', 'formula', 'one', 'car', \"''\", 'by', 'the', 'team', 'for', 'its', 'distinct', '', '', 'rear', 'end', ',', 'which', 'was', 'achieved', 'by', 'designing', 'the', 'honda', 'engine', 'to', 'operate', 'at', 'higher', 'temperatures', 'than', 'other', 'engines', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'pope', 'john', 'paul', 'ii', 'later', '', '', 'on', '1', '9', 'may', '2', '0', '0', '2', 'in', 'a', 'ceremony', 'in', 'saint', 'peter', \"'s\", 'square', ',', 'where', 'she', 'became', 'the', 'first', 'brazilian', 'female', 'saint', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '1', 'spot', 'on', 'espn', \"'s\", '', 'top', '1', '0', 'games', 'of', '2', '0', '0', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'created', 'by', 'time', 'warner', ',', 'merging', 'together', 'its', 'cnn', 'and', '``', 'sports', 'illustrated', \"''\", 'brands', 'and', 'related', 'resources', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'surface', 'drainage', 'is', 'rare', 'due', 'to', 'most', 'streams', 'in', 'the', 'area', '', 'into', '', 'or', '', 'within', 'the', 'rock', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'whitmire', 'was', 'clearly', '', 'to', 'steele', 'on', 'most', 'issues', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'previously', ',', 'the', 'area', 'around', '', 'had', 'been', 'a', 'wetland', 'in', 'medieval', 'times', ',', 'but', 'was', '', 'to', 'provide', 'agricultural', 'land', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '4', '0', '2', 'nd', 'returned', 'to', 'the', 'soviet', 'union', 'in', 'april', 'but', 'remained', 'far', 'from', 'the', 'fighting', 'fronts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'born', 'in', 'london', ',', 'son', 'of', '', 'norman', '', ',', 'a', '', 'on', '5', '4', 'mill', 'lane', ',', '', '6', '1', '', ',', 'london', ',', 'he', 'became', 'a', 'member', 'of', 'the', '1', '9', '5', '0', 's', '', 'set', 'alongside', 'john', 'minton', ',', 'francis', 'bacon', 'and', 'daniel', '', '.', '', '']\n", "['', 'it', 'was', 'noted', 'that', 'during', 'this', 'period', 'that', 'he', 'was', 'nearly', '', 'from', 'losing', 'at', '', 'games', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', ',', 'the', 'salt', 'and', 'pepper', '', 'or', '', '', ',', 'is', 'a', 'moth', 'of', 'the', 'family', 'noctuidae', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '7', '4', '9', ',', 'the', 'persian', 'colonizers', 'were', 'defeated', 'by', 'the', 'elected', '', '', 'bin', 'said', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '1', 'uses', '', '2', '0', '2', 'as', 'a', '', '', '', 'and', 'also', 'requires', 'proper', '', 'of', '', '3', '5', '0', 'for', 'full', '', 'function', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'has', '', 'and', 'partly', '', '', 'slopes', ',', 'and', '', '', 'glacier', 'to', 'the', 'northeast', ',', '', 'glacier', 'to', 'the', 'south', 'and', '', '', 'to', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'here', 'where', '', 'khan', 'captured', '', '', 'who', 'would', 'later', 'become', 'a', 'military', 'general', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'chapter', 'understood', 'this', 'lack', 'of', '', 'as', 'implied', 'consent', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'uses', 'the', 'term', '``', '', \"''\", 'to', 'describe', 'muhammad', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'several', '', 'can', 'be', 'started', 'or', 'be', '', 'to', 'start', 'in', 'a', 'mode', 'where', 'only', 'a', 'limited', 'set', 'of', 'commands', 'and', 'actions', 'is', 'available', 'to', 'the', 'user', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'expelled', 'from', 'the', 'royal', 'palace', 'guard', 'after', 'eight', 'months', ',', 'holdt', 'spent', 'several', 'years', '', 'the', 'vietnam', 'war', 'and', 'conditions', 'in', 'the', 'third', 'world', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'served', 'in', 'the', 'florida', 'house', 'of', 'representatives', 'from', '1', '9', '6', '3', 'to', '1', '9', '6', '8', ',', 'representing', 'the', '8', '2', 'nd', 'district', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'contains', 'only', 'one', 'species', ',', '', '', ',', 'which', 'is', 'found', 'in', 'the', 'south-western', 'part', 'of', 'the', 'united', 'states', ',', 'including', 'arizona', ',', 'new', 'mexico', 'and', 'texas', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'deputy', 'director-general', '(', 'portfolio', 'strategy', ')', 'also', 'operates', 'as', 'the', 'chief', 'advisor', 'queensland', 'government', 'procurement', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'same', 'time', ',', 'production', 'had', 'to', 'be', 'severely', 'restricted', 'due', 'to', 'the', 'lack', 'of', 'foreign', 'exchange', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'their', 'height', 'may', '', 'between', '3', 'mm', 'and', '1', '5', '2', 'mm', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'world', '', 'day', 'in', '2', '0', '1', '6', 'he', 'received', 'an', 'outstanding', 'achievement', 'award', 'in', 'parliament', 'from', '', 'uk', 'for', 'establishing', 'and', '', 'a', 'national', 'strategy', 'for', 'reducing', '', '', 'in', 'hospitals', 'in', 'england', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'legacy', 'is', 'a', '', 'strategy', 'video', 'game', 'developed', 'by', 'and', 'published', 'by', '', 'interactive', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'popularly', 'known', 'as', 'the', 'member', 'of', 'hip', 'hop', '', '', 'releasing', 'three', 'studio', 'albums', 'and', 'winning', 'numerous', '', 'awards', 'with', 'the', 'group', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'were', '4', ',', '3', '6', '5', 'families', '(', '7', '9', '.', '7', '%', 'of', 'households', ')', ';', 'the', 'average', 'family', 'size', 'was', '3', '.', '3', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'companies', ',', '2', '0', '6', 'strong', ',', 'never', 'engaged', 'the', 'enemy', ',', 'and', 'only', 'lost', 'two', 'men', ',', 'an', 'officer', 'who', 'resigned', 'in', 'march', ',', 'and', 'an', 'enlisted', 'man', 'who', 'deserted', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'several', 'thousand', 'hours', 'of', 'ground', 'running', 'and', 'more', 'than', '3', '0', '0', 'hours', 'of', 'flight', 'testing', 'the', 'engine', 'was', 'not', 'selected', ',', 'the', '', '', 'being', 'preferred', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'river', '', '(', ')', 'and', 'river', 'zhang', '(', ')', ',', 'both', '', 'of', 'the', '', 'river', 'as', 'well', 'as', 'the', 'han', 'river', 'tributary', 'the', 'river', 'man', '(', ')', 'have', 'their', 'source', 'in', 'the', '', 'mountains', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'john', 'paul', 'evans', '(', 'born', 'may', '2', ',', '1', '9', '5', '4', ')', 'is', 'a', 'canadian', 'former', 'professional', 'ice', 'hockey', 'centre', 'who', 'played', 'three', 'seasons', 'in', 'the', 'national', 'hockey', 'league', '(', 'nhl', ')', 'for', 'the', 'philadelphia', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', 'released', 'three', 'albums', 'under', 'the', 'name', '', ',', '', 'dragon', '', '(', '', '2', '0', '0', '0', ')', ',', 'who', 'loves', 'lives', '(', '', '2', '0', '0', '4', ')', 'and', '', '&', 'amp', ';', '', '(', '', '2', '0', '1', '0', ')', '.', '', '', '', '', '']\n", "['', 'following', 'acquisition', 'by', 'the', 'national', 'park', 'service', ',', 'the', 'property', 'remained', 'vacant', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'its', '2', '6', '.', '7', '%', 'share', 'of', 'the', 'audience', '(', '2', '.', '6', '1', '0', '.', '4', '2', '8', '', ')', 'it', 'was', 'one', 'of', 'top', 'ten', 'most', 'popular', 'tv', 'shows', 'in', 'serbia', 'according', 'to', '', 'nielsen', 'media', 'research', '.', '', '', '', '', '', '', '', '']\n", "['', 'abdul', '', '``', '', \"''\", '(', '', 'de', '', 'abdullah', '', '', ';', 'born', 'january', '1', ',', '1', '9', '7', '3', ')', 'is', 'a', 'citizen', 'of', 'afghanistan', 'previously', 'held', 'in', 'the', 'united', 'states', '', 'bay', '', 'camps', ',', 'in', 'cuba', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'from', 'the', '1', '8', '6', '0', 's', 'to', 'the', '1', '8', '8', '0', 's', ',', 'a', 'range', 'of', 'buildings', ',', 'many', 'built', 'by', ',', 'or', 'for', 'politicians', ',', 'were', 'built', 'to', 'address', 'these', 'needs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'started', 'his', 'career', 'as', 'mr.', 'magic', \"'s\", '', 'and', 'dj', 'on', 'the', 'influential', 'radio', 'show', '``', '', 'attack', \"''\", ',', 'the', 'first', 'exclusively', 'hip-hop', 'music', 'program', 'to', 'be', 'aired', 'on', 'a', 'major', 'radio', 'station', ',', 'new', 'york', \"'s\", '', '.', '', '', '', '', '', '', '', '']\n", "['', 'the', 'band', 'announced', 'they', 'would', 'release', 'their', 'debut', 'full-length', 'record', 'titled', '``', '', \"''\", 'on', 'august', '2', '6', ',', '2', '0', '1', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'tories', 'were', 'defeated', 'by', 'the', 'new', 'democrats', 'under', 'howard', '', 'in', 'this', 'cycle', ',', 'and', '', 'became', 'a', 'member', 'of', 'the', 'official', 'opposition', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'october', '8', ',', 'a', 'weak', 'area', 'of', 'low', 'pressure', 'developed', 'within', 'a', '', '', 'over', 'the', 'extreme', 'eastern', 'edge', 'of', 'the', 'pacific', 'basin', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'original', 'inhabitants', 'of', 'the', '', 'islands', ',', 'the', '', 'people', ',', 'shared', 'some', 'cultural', 'characteristics', 'with', 'cape', 'york', '', 'and', 'spoke', 'the', 'same', 'basic', 'australian', 'language', ',', '', '', 'ya', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'the', 'artistic', 'director', 'of', 'the', 'little', 'theatre', '(', 'india', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '2', '6', '8', '(', 'for', '``', 'signal', 'corps', 'radio', 'no', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', '2', '0', '1', '8', ',', 'glass', 'and', 'steel', 'platform', 'barriers', 'were', 'installed', 'at', 'all', '4', '3', '', 'stations', 'to', 'prevent', 'people', 'from', 'falling', 'onto', 'the', 'tracks', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '3', ',', 'the', 'three', 'regional', 'journals', 'were', 'absorbed', 'into', 'the', 'applied', 'research', 'section', 'of', '``', 'forest', 'science', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'safety', 'car', 'was', 'brought', 'out', 'on', 'lap', '2', '0', 'due', 'to', 'the', '', 'of', 'the', 'rain', ',', 'and', '', ',', '', ',', 'massa', 'and', '', ',', 'who', 'had', 'not', 'changed', 'tyres', ',', 'went', 'to', 'the', '', 'for', 'fresh', 'full', '', '.', '', '', '', '', '', '', '', '']\n", "['', 'in', 'april', '2', '0', '0', '6', 'with', 'the', 'club', 'still', '', 'promotion', ',', '', 'announced', 'his', 'resignation', 'of', 'the', '', 'to', 'take', 'up', 'the', 'role', 'of', 'vice-president', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'joined', 'the', 'usa', 'men', \"'s\", 'national', 'basketball', 'team', 'in', 'the', '1', '9', '9', '4', 'fiba', 'world', 'championship', 'winning', 'the', 'gold', 'medal', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'represents', 'a', 'population', 'growth', 'rate', 'of', '-', '6', '.', '2', '%', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'rugby', 'was', 'well', 'organised', 'in', 'bulgaria', 'during', 'the', '1', '9', '6', '0', 's', ',', 'the', 'first', 'international', 'was', 'not', 'until', '1', '9', '7', '6', ',', 'when', 'bulgaria', 'lost', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'main', 'page', 'contains', 'the', 'title', 'iranian', 'virtual', 'society', 'and', 'states', 'that', 'all', 'content', 'is', 'controlled', 'in', 'accordance', 'with', 'iranian', 'law', ',', 'a', 'policy', 'intended', 'to', 'lower', 'the', 'risk', 'of', 'government', 'censorship', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'became', 'part', 'of', 'the', 'new', 'york', 'central', 'and', '', 'through', '', ',', '', ',', 'and', '', 'and', 'was', 'assigned', 'to', '', 'in', 'the', '1', '9', '9', '9', '', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'were', '2', '4', '8', 'housing', 'units', 'at', 'an', 'average', 'density', 'of', '6', '0', '6', '.', '0', 'per', 'square', 'mile', '(', '2', '3', '3', '.', '5', '/km', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', '2', '0', '1', '7', ',', 'the', 'total', 'strength', 'of', 'the', 'police', 'reached', 'approximately', '2', '9', '6', ',', '7', '0', '0', 'personnel', ',', 'including', '2', '6', '2', ',', '5', '0', '0', 'police', 'officers', ',', '9', '0', '0', 'imperial', 'guards', 'and', '3', '3', ',', '2', '0', '0', 'civilian', 'staff', '.']\n", "['', 'nine', 'fishes', 'done', 'in', '2', '0', '0', '5', 'and', 'measures', '1', '6', 'x', '3', '6', '', 'and', 'sold', 'at', 'sothebys', 'singapore', 'on', 'october', '9', ',', '2', '0', '0', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'to', 'divide', 'a', 'number', 'by', 'a', 'fraction', ',', '', 'that', 'number', 'by', 'the', '', 'of', 'that', 'fraction', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'the', 'then', 'prevailing', 'customs', ',', 'she', 'was', 'married', 'when', 'she', 'was', 'only', 'nine', 'years', 'old', 'but', 'became', 'a', 'widow', 'soon', 'after', 'her', 'marriage', ',', 'even', 'before', 'her', 'marriage', 'was', '', ',', 'when', 'she', 'was', 'only', 'fourteen', 'years', 'of', 'age', '.', '', '', '', '', '', '', '', '']\n", "['', 'unlike', 'other', 'models', 'such', 'as', '', 'and', '', 'that', 'treat', 'these', 'three', '', 'as', 'independent', '', ',', 'cawfe', 'accounts', 'for', 'the', 'fact', 'that', 'there', 'are', 'interactions', 'and', '', 'between', 'these', 'three', 'predominant', 'factors', '(', 'e.g', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'subsequently', 'announced', 'the', 'finished', 'recordings', 'of', 'other', 'instruments', ':', 'bass', 'on', '1', 'september', ',', 'guitars', 'on', '6', 'september', ',', 'and', '', 'and', '', \"'s\", 'vocals', 'on', '2', '6', 'september', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'second', '', 'series', 'titled', '``', '', 'the', 'great', \"''\", 'based', 'on', 'character', 'from', '``', \"''\", 'was', 'launched', 'on', '', 'prime', 'on', '1', 'january', '2', '0', '1', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'practice', 'the', 'socialist', 'objective', 'was', 'a', 'dead', 'letter', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'end', 'of', 'the', 'war', ',', 'only', '2', '7', '4', 'individuals', 'of', '7', '2', 'species', 'remained', 'at', 'the', 'zoo', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'number', '1', ',', '6', ',', '7', ',', '9', ',', '1', '1', 'or', '1', '2', ',', 'or', '1', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'stephen', 'james', '', '', 'the', 'overall', 'apparent', 'magnitude', 'of', 'the', 'cluster', 'to', 'be', '6', '.', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'languages', 'spoken', 'at', 'home', 'included', 'arabic', '(', '9', '.', '7', '%', ')', ',', '', '(', '7', '.', '6', '%', ')', ',', 'hindi', '(', '6', '.', '9', '%', ')', ',', 'spanish', '(', '5', '.', '5', '%', ')', 'and', '', '', '(', '4', '.', '6', '%', ')', '.', '', '', '']\n", "['', 'there', 'may', 'have', 'been', 'as', 'many', 'as', '1', '8', 'of', 'them', 'and', 'the', 'holes', 'indicated', 'that', 'several', 'may', 'have', 'been', 'replaced', 'over', 'the', 'course', 'of', 'the', 'structure', \"'s\", 'use', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'genus', 'of', '', '', 'of', 'the', 'subfamily', '', ',', 'containing', 'the', 'following', 'species', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'decided', 'in', 'the', 'same', 'way', 'as', 'the', 'general', 'classification', ',', 'but', 'only', 'riders', 'born', 'after', '1', 'january', '1', '9', '9', '5', 'were', 'eligible', 'to', 'be', 'ranked', 'in', 'the', 'classification', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'she', 'runs', 'outside', ',', 'pepé', 'is', 'there', 'already', ',', 'disguised', 'as', 'said', 'gentleman', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'peak', '8', 'is', 'home', 'to', 'some', 'of', 'the', 'premier', 'terrain', 'parks', 'in', 'the', 'country', ':', 'the', 'black', 'diamond', 'rated', 'freeway', 'and', 'blue', 'park', 'lane', 'terrain', 'parks', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'areas', 'near', 'the', '', 'of', '', 'toronto', ',', 'like', '', ',', 'were', 'viewed', 'as', 'ideal', 'places', 'to', 'develop', 'housing', 'for', 'toronto', \"'s\", 'growing', '', 'population', ',', 'leading', 'to', 'these', 'areas', 'to', 'be', 'developed', 'in', 'large', '', 'fashion', 'by', 'speculative', 'developers', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'several', 'times', ',', 'steele', 'had', 'to', 'move', 'into', 'an', '', 'space', 'to', 'use', 'a', 'special', 'communications', 'link', 'so', 'he', 'could', 'speak', 'directly', 'with', 'higher', 'command', ',', 'in', 'all', 'probability', '', 'in', 'hawaii', 'and', 'possibly', 'the', 'pentagon', ',', 'i', \"'m\", 'not', 'sure', 'which', '.', '', '', '', '', '', '', '']\n", "['', 'these', 'actions', 'led', 'macarthur', 'to', 'be', 'viewed', 'as', 'the', 'new', 'imperial', 'force', 'in', 'japan', 'by', 'many', 'japanese', 'political', 'and', 'civilian', 'figures', ',', 'even', 'being', 'considered', 'to', 'be', 'the', '', 'of', 'the', '``', '', \"''\", '', 'government', 'which', 'japan', 'was', 'ruled', 'under', 'until', 'the', 'start', 'of', 'the', '', 'restoration', '.', '']\n", "['', 'he', 'attended', 'a', 'primary', 'school', 'in', 'tianjin', 'where', 'most', 'of', 'his', '', 'were', 'from', '', 'backgrounds', 'while', 'he', 'was', 'not', 'from', 'a', 'wealthy', 'family', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '9', '8', '3', 'to', '1', '9', '8', '9', 'the', 'team', 'appeared', 'only', 'once', 'in', 'the', 'uefa', 'tournaments', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', 'a', '1', '0', '0', '``', 'was', 'also', 'a', 'number', 'one', 'hit', 'in', 'latin', 'america', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'like', 'its', 'predecessor', ',', 'the', 'mate', '3', '0', 'series', 'uses', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'garden', 'crops', 'include', 'beans', ',', '', ',', 'and', 'sweet', 'potatoes', ';', '', ',', '', ',', '', ',', '', ',', '', ',', 'and', 'sugar', 'cane', 'are', 'grown', 'as', 'well', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '7', '7', 'mohammed', 'was', 'appointed', 'commissioner', 'for', 'agriculture', 'for', 'sokoto', 'state', 'under', 'the', 'military', 'government', 'of', 'general', '', '', ',', 'and', 'then', 'commissioner', 'for', 'education', 'for', 'sokoto', 'state', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'municipality', 'in', 'the', 'district', 'of', '', 'in', 'the', '', 'of', '', 'in', 'switzerland', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", ',', '', ',', 'master', ',', 'came', 'into', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'was', 'extended', 'to', '2', '.', '4', '5', 'meters', '(', '8', \"'\", '1', '``', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'post', 'office', 'was', 'established', 'at', '', 'in', '1', '8', '8', '0', ',', 'and', 'remained', 'in', 'operation', 'until', 'it', 'was', 'discontinued', 'in', '1', '9', '0', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'shannon', 'tells', 'endean', 'that', 'the', 'coup', 'was', 'really', 'conducted', 'on', 'behalf', 'of', 'the', 'general', ',', 'endean', 'is', '', 'but', 'shannon', 'points', 'out', 'that', 'this', 'government', 'will', 'at', 'least', 'be', 'fair', ',', 'and', 'if', '', 'wants', 'the', 'platinum', ',', 'he', 'will', 'have', 'to', 'pay', 'the', 'proper', 'market', 'price', '.', '']\n", "['', '', 'is', 'one', 'of', 'the', 'four', 'departments', '(', 'officially', 'called', '``', '', \"''\", ')', 'of', 'the', 'wider', '', 'region', '(', 'the', 'larger', 'administrative', 'division', 'being', 'called', 'a', '``', '', \"''\", ')', ',', 'in', 'western', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'township', 'is', 'a', 'township', 'in', '', 'county', ',', 'minnesota', ',', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'midden', 'is', 'now', 'part', 'of', 'the', '', 'historical', 'site', 'park', ';', 'however', ',', 'the', 'midden', 'itself', 'site', '', 'after', '', ',', 'and', 'there', 'is', 'now', 'nothing', 'to', 'see', 'except', 'for', 'a', 'stone', 'monument', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'which', 'were', 'produced', 'and', 'curated', 'by', 'the', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'because', 'country', '', 'are', 'typically', '``', 'single', 'lane', \"''\", 'or', '``', 'single', 'track', \"''\", '(', 'that', 'is', ',', 'the', 'paved', 'road', 'is', 'not', 'wide', 'enough', 'for', 'two', 'vehicles', 'to', 'pass', ')', 'there', 'will', 'usually', 'be', 'official', 'or', 'unofficial', 'passing', 'places', 'along', 'the', 'route', 'for', 'traffic', 'to', 'pass', '', '.', '']\n", "['', 'lejía', 'lake', 'lies', 'in', 'the', '', 'de', '', 'of', 'chile', ',', 'close', 'to', 'the', 'border', 'with', 'argentina', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'individuals', '', 'two', 'different', '', '', ',', 'one', 'from', 'each', 'parent', ',', 'each', 'containing', 'more', 'than', '2', '0', '0', 'genes', 'relevant', 'to', 'helping', 'the', 'immune', 'system', 'recognize', 'foreign', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'listed', 'on', 'the', 'london', 'stock', 'exchange', 'from', '2', '0', '0', '0', 'to', '2', 'july', '2', '0', '1', '2', ',', 'and', 'was', 'a', 'constituent', 'of', 'the', '', '1', '0', '0', 'index', 'for', 'most', 'of', 'that', 'period', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'taking', 'that', 'action', 'by', 'its', '', 'adoption', 'of', 'resolution', '1', '7', '5', '1', '(', '2', '0', '0', '7', ')', ',', 'the', 'council', 'noted', 'that', 'the', 'situation', 'in', 'the', 'democratic', 'republic', 'of', 'the', 'congo', 'continued', 'to', 'pose', 'a', 'threat', 'to', 'international', 'peace', 'and', 'security', 'in', 'the', 'region', '.', '', '', '']\n", "['', 'it', 'was', 'named', 'after', '', ',', '', 'anderson', '', 'and', 'johann', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'home', 'plate', '/', '', 'area', 'of', 'the', '', 'was', '', 'into', 'the', '', 'corner', ',', 'with', 'the', 'lot', 'being', 'otherwise', 'surrounded', 'by', 'a', 'board', '', ',', 'except', 'for', 'the', 'left', 'field', 'area', ',', 'whose', 'high', '', 'wall', 'was', 'actually', 'the', 'rear', 'wall', 'of', 'the', '', 'building', '.', '', '']\n", "['', 'originally', 'seen', 'mainly', 'within', 'indiana', ',', 'the', 'channel', 'began', '', 'its', 'cable', 'provider', 'coverage', '', 'in', '1', '9', '9', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'mystery', 'of', 'who', 'planned', 'the', 'crime', 'still', 'remains', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'best', 'known', 'to', '', 'and', 'is', 'not', 'an', 'important', 'subject', 'to', 'individual', 'worship', 'like', 'the', 'other', 'seven', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'arriving', 'at', 'coast', 'city', ',', '', 'and', '', 'are', 'two', 'of', 'the', 'heroes', 'who', 'make', 'a', 'stand', 'against', '', 'and', 'his', 'army', ',', 'including', 'an', 'attempt', 'to', 'free', 'the', '', 'of', '', '', 'by', '', 'in', 'the', 'black', 'central', 'power', 'battery', '.', '', '', '', '', '', '', '']\n", "['', 'the', 'game', 'action', 'button', 'described', 'as', '``', 'about', 'keeping', 'your', 'eyes', 'on', 'balls', \"''\", 'was', 'inspired', 'by', 'tennis', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'the', 'end', 'of', 'world', 'war', 'ii', 'the', 'system', 'was', 'already', 'considered', 'out', 'of', 'date', ',', 'having', 'been', 'replaced', 'by', 'the', 'much', 'smaller', 'and', 'more', 'accurate', '', '5', '8', '4', '', 'system', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'during', 'this', 'period', 'that', 'obregón', ',', '', '', ',', 'fernando', '', ',', '', '', '', 'and', '', '', ',', 'came', 'to', 'be', 'known', 'as', 'the', '``', 'big', 'five', \"''\", 'of', 'colombian', 'art', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'a', 'student', 'of', 'physical', 'education', 'and', 'sports', 'at', 'the', 'black', 'sea', 'technical', 'university', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'can', 'never', 'be', 'possible', 'without', 'the', 'rule', 'of', 'law', 'in', 'the', 'land', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'myers', 'grove', 'opened', 'in', 'about', '1', '9', '6', '0', 'as', 'the', 'first', '', 'comprehensive', 'school', 'in', 'sheffield', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'community', 'was', 'located', '1', '.', '5', 'miles', 'south', 'of', 'old', 'mines', 'along', 'missouri', 'route', '2', '1', ',', 'north', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'three', 'original', 'assembly', 'halls', ',', 'luxury', 'vehicles', 'for', 'the', 'american', 'market', 'were', 'produced', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'painting', 'became', 'part', 'of', 'the', 'john', '', '', 'collection', 'and', 'was', 'purchased', 'at', 'auction', 'for', 'queen', 'victoria', 'in', '1', '8', '8', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '``', 'trail', 'of', '', ',', \"''\", '', '', 'herself', 'to', 'be', 'an', 'excellent', '``', 'indian', \"''\", ':', 'she', \"'s\", 'a', 'great', '', ',', '', ',', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'attended', 'lehigh', 'university', 'and', 'was', 'a', 'four-year', '', 'letter', 'winner', 'in', 'football', 'at', 'lehigh', 'university', 'as', 'a', 'running', 'back', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'kingdoms', 'of', '', 'in', 'modern-day', 'afghanistan', ',', '', 'and', '', '(', 'which', 'then', 'held', '', ')', 'in', 'modern-day', 'pakistan', ',', 'all', 'of', 'which', 'were', '', 'and', 'politically', 'part', 'of', 'india', 'since', 'ancient', 'times', ',', 'were', 'known', 'as', '``', 'the', 'frontier', 'of', 'al', '', \"''\", '.', '', '', '', '']\n", "['', 'fair', 'trade', 'towns', 'are', 'also', 'encouraged', 'to', 'form', 'partnerships', 'with', 'other', 'networks', 'within', 'their', 'communities', 'such', 'as', 'religious', 'organizations', 'and', 'environmental', 'groups', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'combat', 'between', 'the', 'cavalry', 'troops', 'in', 'the', 'wings', '(', 'left', 'versus', 'right', ',', 'right', 'versus', 'left', ')', 'are', 'resolved', 'first', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'leading', 'french', '', '', ',', 'fourth', 'in', 'last', 'season', \"'s\", 'champion', 'stakes', 'just', 'behind', '', ',', 'and', 'now', 'fresh', 'from', 'victory', 'in', 'the', 'prix', 'jacques', 'le', '', ',', 'where', 'he', 'defeated', '', 'by', 'half', 'a', 'length', ',', '', 'up', 'alongside', '', '.', '', '', '', '', '', '', '', '']\n", "['', 'today', ',', 'the', 'peace', 'river', 'supplies', 'over', 'six', 'million', '', 'per', 'day', 'of', 'drinking', 'water', 'to', 'the', 'people', 'in', 'the', 'region', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', 'the', 'census', 'of', '2', '0', '1', '0', ',', 'there', 'were', '2', '3', ',', '0', '5', '5', 'people', ',', '9', ',', '9', '7', '4', 'households', ',', 'and', '5', ',', '8', '1', '8', 'families', 'living', 'in', 'the', 'city', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'average', 'household', 'size', 'was', '2', '.', '5', '3', 'and', 'the', 'average', 'family', 'size', 'was', '2', '.', '9', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'work', '', 'the', '', 'of', 'genes', 'in', '', 'and', 'subsequently', 'contributed', 'to', 'progress', 'in', 'metazoan', 'molecular', 'and', '', 'genetics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'among', 'the', '2', '0', '8', '', 'that', 'arrived', 'in', 'rockhampton', 'from', 'the', '``', 'charles', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '3', ',', 'mas', 'reached', 'south', 'america', 'when', 'the', 'airline', 'received', 'its', '', '7', '4', '7', 'aircraft', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'economic', 'boom', 'in', 'malaysia', 'during', 'the', '1', '9', '8', '0', 's', '', 'the', 'growth', 'of', 'mas', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'also', 'attained', 'the', 'number', '2', '8', 'position', 'on', 'the', 'uk', 'album', 'chart', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'chart', 'was', 'first', 'published', '1', '1', 'june', '1', '9', '9', '5', 'as', 'the', 'alternative', '3', '0', 'by', '``', '', \"''\", 'magazine', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', '', '', ',', 'born', 'june', '2', '1', ',', '1', '9', '8', '7', 'in', '', ',', '', ')', 'is', 'a', 'japanese', 'professional', 'baseball', 'pitcher', 'for', 'the', '', '', 'marines', 'in', 'japan', \"'s\", 'nippon', 'professional', 'baseball', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'once', 'the', 'game', 'was', 'over', ',', 'even', 'though', 'the', '', 'was', 'july', '5', ',', '3', ':', '5', '5', 'a.m.', ',', 'the', '', \"'\", 'stadium', 'crew', 'shot', 'off', 'the', 'scheduled', 'fourth', 'of', 'july', '', 'fireworks', 'for', 'the', 'fans', 'who', 'endured', 'to', 'the', 'end', '.', '', '', '', '', '', '', '']\n", "['', 'the', 'film', 'was', 'a', 'remake', 'of', 'the', '1', '9', '8', '2', '', 'film', '``', '', '', \"''\", ',', 'starring', '', '', 'and', '', 'in', 'the', 'lead', 'roles', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'rest', 'of', 'the', 'system', 'can', 'either', 'be', 'digital', 'or', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '``', 'associated', 'press', \"''\", 'wrote', ':', '``', 'for', 'the', 'first', 'time', 'in', 'the', 'tony', \"'s\", '3', '9', '-year', 'history', ',', 'awards', 'in', 'three', 'categories', '-', 'best', 'actor', 'and', 'actress', 'in', 'a', 'musical', 'and', 'best', 'choreography', '-', 'were', 'scrapped', 'because', 'of', 'a', 'lack', 'of', 'candidates', '.', \"''\", '', '', '']\n", "['', 'the', '', 'are', 'light', 'fuscous', ',', 'becoming', 'darker', 'towards', 'the', 'termen', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'november', '2', '0', '1', '0', ',', 'the', '', 'reinforced', 'its', 'munich', 'city', 'desk', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'susanna', '', 'died', 'in', '1', '9', '0', '2', ',', 'she', 'left', '$', '2', '0', ',', '0', '0', '0', 'to', 'the', 'institute', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'clinton', 'responding', 'in', 'his', 'speech', ':', '``', 'if', 'you', 'took', 'the', 'words', ',', '', \"'\", 'and', '', \"'\", 'and', 'you', '', 'them', ',', 'you', 'might', 'think', 'david', 'duke', 'was', 'giving', 'that', 'speech', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'she', 'was', '', 'received', 'in', 'the', 'port', ',', 'the', 'local', '', '', 'together', 'to', '', '$', '2', '5', '0', 'worth', 'of', 'shares', 'in', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'separately', ',', 'each', 'side', 'had', 'failed', 'in', 'their', 'bid', 'to', 'acquire', 'tip', 'top', 'tailors', ',', 'but', 'during', 'the', 'course', 'of', 'lunch', 'they', 'agreed', 'to', 'pool', 'their', 'efforts', 'and', 'offer', 'the', '', 'the', 'deal', 'they', 'wanted', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'german', '', 'brought', 'an', 'end', 'to', 'these', 'short-lived', 'counties', 'in', '1', '8', '0', '6', ',', 'when', 'their', 'territories', 'were', 'divided', 'between', 'the', 'grand', 'duchy', 'of', '', ',', 'the', 'grand', 'duchy', 'of', '', ',', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '5', ',', 'local', 'politician', 'tang', '', '(', '', ')', 'called', 'for', 'the', 'temple', \"'s\", 'renovation', ',', 'and', 'the', 'original', 'building', 'was', 'replaced', 'by', 'a', 'reinforced', 'concrete', 'structure', 'in', '1', '9', '6', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'resistance', 'was', 'light', 'until', 'the', 'leading', 'elements', 'of', 'the', 'battalion', 'arrived', 'in', 'front', 'of', 'the', 'high', 'ground', 'south', 'of', '', ',', 'halfway', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'all', '1', '0', 'southeast', 'asian', 'nations', 'competed', 'in', 'the', 'tournament', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'measuring', '', '', 'with', '', ',', 'a', 'patient', \"'s\", '', 'are', 'fixed', '', 'while', 'the', 'degree', 'of', '', 'of', 'the', '', '', 'is', 'measured', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'rescued', 'many', 'of', 'the', 'wounded', 'from', 'the', '1', 'st', 'south', 'african', 'infantry', 'brigade', 'and', 'there', 'is', 'a', 'memorial', 'to', 'him', 'in', 'the', 'room', '', '', 'wood', 'at', 'fort', 'beaufort', 'historical', 'museum', ',', 'south', 'africa', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'secondary', 'schools', 'within', 'brighton', 'includes', 'brighton', 'grammar', 'school', ',', 'brighton', 'secondary', 'college', ',', '', 'girls', \"'\", 'grammar', 'school', ',', '', \"'s\", '', 'campus', ',', 'st', 'leonard', \"'s\", 'college', ',', 'xavier', 'college', \"'s\", '', 'hall', 'junior', 'campus', ',', 'and', 'star', 'of', 'the', 'sea', 'college', '.', '', '', '', '', '', '']\n", "['', 'yen', ',', 'known', 'to', 'his', 'many', 'english', 'speaking', 'friends', 'as', '``', 'jimmy', ',', \"''\", 'was', 'a', 'chinese', '', 'and', '', 'known', 'for', 'his', 'work', 'in', 'mass', 'literacy', 'and', 'rural', 'reconstruction', ',', 'first', 'in', 'china', ',', 'then', 'in', 'many', 'countries', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'served', 'as', 'assistant', 'majority', 'leader', 'in', '1', '9', '6', '5', 'and', 'minority', 'leader', 'in', '1', '9', '6', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'specification', 'was', 'changed', ',', 'moving', 'the', '', \"'s\", 'positions', 'to', 'be', 'like', 'those', 'in', 'the', '', 'which', '', 'a', 'complete', '', 'of', 'the', '', 'and', 'wing', 'centre', 'section', '.', ')', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'buried', 'remains', 'of', 'the', 'eastern', 'part', 'of', 'the', 'monastic', 'church', ',', 'which', 'contained', 'the', '', \"'\", 'choir', 'and', '', ',', 'lie', 'within', 'the', 'present', 'churchyard', 'and', 'are', 'included', 'in', 'the', 'scheduling', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '2', '0', ',', 'he', 'was', 'elected', 'to', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', '1', '9', '8', '1', ',', 'the', 'use', 'of', '', 'worldwide', 'was', 'limited', 'to', '', 'and', '', ',', 'and', 'these', 'uses', 'were', '', 'by', '1', '9', '8', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'south', 'west', 'trains', 'operated', 'a', 'fleet', 'of', '', '', 'trains', 'on', 'services', 'from', 'london', 'waterloo', 'to', '', ',', 'hampton', 'court', ',', '', ',', 'guildford', ',', '', 'and', '', ',', 'as', 'well', 'as', 'services', 'on', 'the', 'kingston', 'and', '', 'loops', 'and', 'occasionally', 'on', 'windsor', 'line', 'services', '.', '', '', '', '']\n", "['', '', 'grew', 'up', 'in', '', ',', 'a', 'small', 'town', 'in', 'northern', 'germany', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ball', 'mice', 'and', '', 'mice', 'were', 'manufactured', 'for', '', 'by', 'jack', '', ',', 'doing', 'business', 'as', 'the', 'mouse', 'house', 'in', 'berkeley', ',', 'california', ',', 'starting', 'in', '1', '9', '7', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'house', 'was', 'designed', 'by', 'henry', '', 'in', '1', '9', '2', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'the', 'commonwealth', 'still', 'held', 'the', 'right', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'workers', 'in', 'factories', 'responded', 'to', 'the', 'movement', 'by', 'participating', 'with', 'the', 'hashtag', '#', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'and', 'his', 'wife', 'announced', 'their', 'intention', 'to', 'divorce', 'in', 'september', '2', '0', '0', '5', 'after', 'eighteen', 'years', 'of', 'marriage', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', '', 'and', '', 'bacteria', 'from', 'the', 'genus', 'of', '', 'which', 'has', 'been', 'isolated', 'from', 'the', '', 'and', '', 'from', 'rainbow', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', ',', 'which', 'aired', 'on', 'the', 'tokyo', 'broadcasting', 'station', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'an', 'excellent', 'example', 'of', 'an', 'early', 'timber', '', 'station', 'building', 'with', 'a', 'major', 'residence', '(', 'no', 'longer', 'owned', 'by', 'state', 'rail', ')', 'and', 'good', 'platform', 'and', 'details', 'surviving', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'michael', 'dean', 'woodson', '(', 'born', 'march', '2', '4', ',', '1', '9', '5', '8', ')', 'is', 'an', 'american', 'basketball', 'coach', 'and', 'former', 'professional', 'player', 'who', 'is', 'the', 'head', 'coach', 'of', 'the', 'indiana', '', 'men', \"'s\", 'team', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'protein', '', '(', ')', 'is', 'a', '', 'enzyme', 'that', '', 'the', '', 'group', 'of', '', 'or', '', '(', 'which', 'have', 'similar', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'examples', 'of', 'effects', 'are', '', 'of', 'immune', 'functions', ',', '', 'of', 'essential', 'nutrients', ',', 'production', 'of', 'the', 'powerful', '', 'h', '2', 'gas', 'and', '', 'of', 'certain', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', 'born', 'december', '2', '8', ',', '1', '9', '5', '2', ')', 'is', 'a', 'hungarian', 'sprint', '', 'who', 'competed', 'from', 'the', 'mid-', '1', '9', '7', '0', 's', 'to', 'the', 'early', '1', '9', '8', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'june', '2', '0', '1', '4', 'stamford', 'hill', 'shomrim', 'received', 'a', 'formal', '', 'award', 'from', 'the', 'outgoing', '', 'police', 'borough', 'commander', '-', 'chief', 'superintendent', 'matthew', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'fame', ',', 'however', ',', 'soon', 'extended', 'over', 'europe', ';', 'and', 'the', 'institute', 'of', 'france', ',', 'as', 'a', 'mark', 'of', 'their', '', 'of', 'his', '', ',', 'elected', 'him', 'an', 'associate', 'in', '1', '8', '0', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hygiene', 'measures', ',', 'including', 'laundry', 'hygiene', ',', 'are', 'an', 'important', 'part', 'of', 'reducing', 'spread', 'of', '', 'resistant', 'strains', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'still', 'in', 'mexico', ',', 'he', 'exhibited', 'his', 'art', '``', '', 'de', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ncac', 'assists', 'individuals', ',', 'community', 'groups', ',', 'and', 'institutions', 'with', 'strategies', 'and', 'resources', 'for', '', 'censorship', 'and', 'creating', 'a', 'climate', '', 'to', 'free', 'expression', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', 'a', 'young', 'age', ',', 'cole', 'cash', 'took', 'part', 'in', 'his', '', 'man', 'father', 'jacob', 'winston', '``', 'win', \"''\", 'cash', \"'s\", 'various', '', ',', 'until', 'cole', '', 'his', 'father', \"'s\", 'apparent', 'murder', 'at', 'the', 'hands', 'of', '', 'sam', 'del', '', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'turret', 'projects', 'another', 'and', 'the', '', 'tower', 'extends', 'a', 'further', 'giving', 'a', 'total', 'height', 'of', 'for', 'the', 'structure', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'historian', 'manuel', '', 'argues', 'that', 'while', 'gómez', \"'s\", 'final', 'intention', 'was', 'to', 'prevent', 'his', 'enemies', 'from', 'obtaining', 'weapons', ',', 'the', 'law', 'contributed', 'to', 'avoid', 'civil', 'wars', 'in', 'venezuela', 'for', 'the', 'next', 'century', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'community', 'had', 'lost', '6', '0', '%', 'of', 'its', 'membership', 'in', '2', '5', 'years', ',', 'and', 'those', 'left', 'were', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'widely', 'credited', 'with', '', 'the', 'title', 'line', 'during', 'the', 'chorus', 'of', 'the', '1', '9', '8', '2', 'rush', 'song', '``', 'subdivisions', \"''\", ',', 'although', 'he', 'denied', 'this', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '2', '0', ',', '', 'contributed', 'a', '', 'vocal', 'performance', 'to', 'the', 'song', '``', 'the', 'mirror', \"''\", 'by', 'english', 'rock', 'band', '', '', ',', 'from', 'their', 'album', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'finally', ',', 'the', 'original', 'trial', 'judge', 'suspended', '', \"'s\", 'sentence', 'and', 'he', 'was', 'released', 'on', 'his', 'own', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'despite', 'the', '', 'requirements', 'of', 'the', 'main', 'character', ',', 'however', ',', 'a', 'player', 'could', 'die', 'and', 'be', '', 'in', 'a', 'number', 'of', 'different', 'forms', 'like', 'a', 'human', ',', 'a', 'pig', ',', 'a', 'dog', ',', 'or', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'and', 'focuses', 'on', 'trans', 'experiences', 'in', 'the', 'pacific', 'north-west', 'and', '', '', 'materials', 'and', 'contemporary', 'art', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'research', 'suggests', 'that', 'the', 'best', 'course', 'of', 'treatment', 'for', 'patients', 'with', 'a', '', 'tube', 'is', '', 'professional', '', ',', 'maintained', 'with', '', 'home', 'use', 'of', 'a', '', '', '', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'return', 'to', 'civilian', 'rule', 'in', '1', '9', '7', '9', ',', 'mohammed', 'ran', 'unsuccessfully', 'for', 'deputy', 'governor', 'of', 'sokoto', 'state', 'on', 'the', 'great', 'nigeria', 'people', \"'s\", 'party', '(', '', ')', 'platform', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'digital', '', 'editorial', 'team', 'is', 'led', 'by', 'editor-in-chief', 'jeremy', '', 'and', 'guided', 'by', '', 'ian', 'bell', 'and', 'dan', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'album', ',', 'released', 'in', '2', '0', '0', '0', ',', 'contains', 'a', '1', '9', '7', '4', 'performance', 'of', '``', 'laugh', ',', 'laugh', \"''\", 'recorded', 'during', 'a', 'concert', 'in', 'fair', '', 'village', 'near', '', ',', 'california', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'also', 'the', 'first', 'comedian', 'to', 'perform', 'when', 'the', 'chicago', '', 'club', 'opened', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '1', ',', 'he', 'wrote', '``', '', '', \"''\", ',', 'performed', 'by', 'serbian', 'folk', 'singer', 'ana', '', ',', 'at', 'the', '', 'festival', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'film', \"'s\", 'final', 'gross', 'collection', 'is', 'estimated', 'as', 'from', 'kerala', 'with', 'a', 'share', 'of', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'race', 'was', 'not', 'included', 'on', 'the', '2', '0', '2', '1', 'indycar', 'series', 'schedule', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'february', '1', '1', ',', 'her', 'team', 'started', '', 'sanitary', 'pads', 'to', 'hospitals', 'in', 'need', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'archives', 'contains', 'documents', ',', 'photographs', 'or', '', 'collected', 'since', '1', '8', '5', '4', ',', 'including', 'records', 'or', '', 'of', 'some', 'notable', 'people', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'claims', 'that', 'pupkewitz', '', 'and', 'collected', 'money', 'for', 'the', 'orders', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'page', 'of', 'the', 'passport', 'provides', 'the', 'identity', 'of', 'the', 'passport', 'holder', 'in', 'arabic', 'and', 'english', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '3', 'september', 'a', 'loan', 'was', 'issued', 'in', 'amsterdam', 'to', 'keep', 'three', 'threatened', 'houses', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'even', 'a', '', '', 'priest', 'could', 'enter', 'to', 'perform', 'various', '', 'duties', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '``', '', '', \"''\", 'dedicated', 'an', 'entire', 'chapter', 'to', 'perceived', 'problems', 'and', '', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'modification', 'followed', 'after', 'a', '1', '9', '8', '8', 'meeting', 'in', 'the', 'uk', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'its', 'four', '', 'are', 'engraved', 'idols', 'of', '', '', 'in', '', 'style', 'which', 'each', 'are', 'five', 'feet', '(', 'about', '1', '.', '5', 'meters', ')', 'high', 'and', 'elsewhere', 'are', 'engraved', 'several', 'small', 'idols', '', 'to', '', '', 'of', 'deities', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'nicknamed', '``', 'the', '', \"''\", 'for', 'the', 'amount', 'of', 'sports', 'tape', 'he', 'would', 'use', ',', 'eventually', '', 'to', 'go', 'through', '5', 'surgeries', 'and', '2', 'knee', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'january', '2', '0', '0', '4', '``', 'variety', \"''\", 'reported', 'that', 'steve', '', ',', 'of', 'the', 'comedy', 'central', 'program', '``', 'the', 'daily', 'show', 'with', 'jon', 'stewart', \"''\", ',', 'was', 'in', 'talks', 'to', 'play', 'the', 'role', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'oldest', 'surviving', 'literary', 'use', 'of', 'the', '', 'language', 'is', 'considered', 'to', 'be', 'the', 'religious', 'text', 'known', 'as', '', '', ',', 'written', 'either', 'in', 'late', '1', '1', 'th', 'or', 'early', '1', '2', 'th', 'century', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'program', 'director', 'rick', 'thomas', 'and', 'music', 'director', 'michael', 'martin', 'set', 'a', 'plan', 'in', 'motion', 'to', '', '', ';', 'they', 'came', 'up', 'with', 'a', 'strategy', 'of', 'playing', '``', 'old', 'school', \"''\", 'and', 'up', '', '', 'songs', 'like', 'those', 'heard', 'on', 'heritage', 'san', '', 'radio', 'station', 'hot', '9', '7', '.', '7', '.']\n", "['', '', 'to', 'the', 'university', 'of', 'minnesota', 'after', 'only', 'a', 'year', ',', 'he', 'enrolled', 'in', 'the', 'journalism', 'program', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'citation', 'x', 'is', 'an', 'american', 'business', 'jet', 'produced', 'by', '', 'and', 'part', 'of', 'the', 'citation', 'family', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'funding', 'for', 'operations', 'is', 'currently', 'being', 'provided', 'by', 'the', 'nasa', '', 'debris', 'program', 'office', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'also', 'received', 'several', 'awards', 'and', 'nominations', 'at', 'various', 'award', 'shows', 'between', '2', '0', '0', '9', 'and', '2', '0', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'if', 'any', 'cavalry', 'units', 'are', 'left', ',', 'they', 'can', 'then', 'be', 'sent', 'to', 'help', 'in', 'the', 'centre', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'times', ',', 'if', 'a', 'hold', 'entirely', 'breaks', 'off', ',', 'it', 'may', 'be', '', 'back', 'on', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'by', 'police', 'and', '', 'himself', ',', 'he', 'was', 'released', 'from', 'prison', 'a', 'day', 'before', 'india', 'became', 'independent', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'are', '', 'at', 'the', 'summit', ',', 'which', 'is', 'slightly', '', ',', 'and', 'marked', 'by', 'obsolete', '', 'ribs', 'which', 'are', 'best', 'expressed', 'on', 'the', 'early', 'turns', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '7', ',', 'when', 'she', 'was', 'fifteen', 'years', 'old', ',', '', 'participated', 'in', 'a', '', 'model', 'search', 'called', '', '', ',', 'coming', 'second', 'runner', 'up', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'old', 'court', 'house', 'has', 'been', 'a', '', 'political', 'campaign', 'stop', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'a', 'popular', 'and', 'occasionally', 'controversial', 'programme', 'that', 'introduced', 'children', 'to', 'various', 'topics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'example', ',', 'moving', 'right', 'one', 'from', 'the', '', 'square', 'yields', 'a', '', 'increase', 'in', 'the', 'horizontal', 'frequency', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'raising', 'money', 'for', 'others', ',', 'he', 'was', 'often', 'broke', 'himself', ',', '', 'his', 'money', 'in', 'his', 'school', 'and', 'hospital', 'projects', 'and', 'eating', 'cheese', 'and', '', 'for', 'lunch', 'rather', 'than', 'accept', 'gifts', 'from', '', ',', '', 'they', 'suspect', 'he', 'was', 'working', 'for', 'his', 'own', 'benefit', 'rather', 'than', 'for', '', '.']\n", "['', 'the', 'first', 'two', 'issues', 'drew', 'some', 'criticism', 'for', 'lack', 'of', 'world', 'development', 'and', '', 'dialogue', ',', 'but', '', 'found', 'these', 'issues', 'were', 'resolved', 'in', 'devi', '#', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'matrix', 'formula_', '2', 'is', 'negative', '(', 'semi', ')', '', 'if', 'and', 'only', 'if', 'formula_', '2', '8', '2', 'is', 'positive', '(', 'semi', ')', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'general', 'opinion', 'being', 'that', 'his', '', ',', 'at', 'times', '', 'literary', 'style', 'could', \"n't\", 'be', '', 'by', 'the', 'majority', 'of', 'his', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'earliest', 'american', 'map', '', '(', '1', '7', '7', '9', ',', '1', '7', '8', '0', ')', 'were', 'by', 'students', 'lydia', '', 'and', 'sally', 'dodge', 'who', 'were', 'educated', 'there', 'and', 'cover', 'detailed', 'images', 'of', 'boston', 'harbour', 'and', 'islands', 'and', 'detailed', 'street', 'plan', '.', '', '', '', '', '', '', '', '']\n", "['', 'through', 'classical', 'conditioning', ',', 'sensory', 'feedback', 'from', 'a', 'full', '', '', 'the', 'alarm', 'and', 'allows', 'children', 'to', 'continue', 'sleeping', 'without', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'few', 'days', 'before', ',', 'the', 'official', 'website', 'held', 'a', 'pre-sale', 'for', 'its', 'members', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'assassination', 'attempt', 'by', 'the', 'polish', 'secret', 'state', 'on', '2', '9', '/', '3', '0', 'january', '1', '9', '4', '4', '(', 'the', 'night', 'preceding', 'the', '1', '1', 'th', 'anniversary', 'of', '', \"'s\", 'appointment', 'as', 'chancellor', 'of', 'germany', ')', 'in', '', 'near', 'kraków', 'failed', '.', '', '', '', '', '', '', '']\n", "['', '', ',', 'san', 'fernando', ',', 'la', 'union', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'in', 'the', '', 'is', 'primarily', 'produced', 'through', 'the', '', 'of', '', 'dioxide', 'by', '', 'with', '', '(', '', ')', 'less', 'than', '4', '2', '0', '', ',', 'which', 'are', 'able', 'to', 'reach', 'the', 'lowest', 'levels', 'of', 'the', 'atmosphere', ',', 'through', 'the', 'following', 'mechanism', ':', '', '', '', '', '', '']\n", "['', 'the', 'car', 'was', 'driven', 'around', 'and', '', 'throughout', 'japan', 'between', 'april', '1', '9', 'and', 'june', '2', '6', ',', '2', '0', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'released', 'in', 'the', 'uk', 'on', '1', '1', 'september', '2', '0', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'channel', 'originally', 'launched', 'by', '', 'and', 'bill', 'daniels', 'in', 'november', '1', '9', '8', '9', 'as', 'prime', 'sports', 'network', '', '(', 'also', 'referred', 'to', 'as', 'prime', 'sports', '', ')', ',', 'serving', 'as', 'an', 'affiliate', 'of', 'the', 'prime', 'network', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', 'born', 'in', '1', '9', '5', '9', ')', 'is', 'a', 'swedish', 'game', 'designer', 'and', 'science', 'journalist', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'born', 'in', 'springs', 'in', 'south', 'africa', ',', 'but', 'grew', 'up', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'married', 'her', 'cousin', ',', '', '', 'de', '', ',', 'and', 'had', 'a', 'daughter', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'collection', 'of', 'short', 'stories', ',', '``', 'exceptions', ':', 'in', 'the', 'dark', 'of', 'faith', \"''\", '(', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'on', '2', '8', 'october', 'vieira', 'announced', 'the', 'dissolution', 'of', 'gomes', \"'s\", 'government', ',', 'and', 'a', 'long-time', '', 'of', 'vieira', ',', '', 'gomes', ',', 'was', 'appointed', 'prime', 'minister', 'on', '2', 'november', '2', '0', '0', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'qin', 'removed', 'defensive', 'barriers', '', 'the', 'warring', 'states', ',', 'including', 'the', 'southern', 'wall', 'of', 'the', 'yan', ',', 'which', 'separated', 'the', 'beijing', 'plain', 'from', 'the', 'central', 'plain', ',', 'and', 'built', 'a', 'national', 'roadway', 'network', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'points', 'scored', 'in', 'a', 'game', '(', '1', '0', ')', '-', '7', 'november', '2', '0', '0', '3', 'harvard', 'v.', '', 'tied', 'with', 'jennifer', '', '&', 'lt', ';', 'br', '&', 'gt', ';', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'human', 'bone', '', 'from', 'the', '', 'era', 'were', 'unearthed', 'from', 'a', 'site', 'in', '', ',', 'but', 'the', '', 'was', 'lost', 'in', 'transportation', 'before', 'it', 'was', 'examined', 'to', 'be', '', 'or', 'not', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'foghorn', 'naturally', 'looks', 'up', 'and', 'sees', 'the', 'dog', '', 'on', 'the', 'tower', 'holding', 'a', '', 'which', 'the', 'dog', 'releases', ',', 'causing', 'it', 'to', 'break', 'over', 'foghorn', \"'s\", 'head', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'released', 'by', 'the', 'wizards', 'following', 'the', 'suspension', ',', 'while', 'arenas', '', 'the', 'team', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'autumn', '1', '8', '3', '8', ',', 'the', '', 'were', 'removed', 'by', 'force', 'from', 'their', 'villages', 'and', 'underwent', 'a', '', '', 'journey', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'the', 'proof', 'of', 'this', 'case', 'is', '', 'since', 'its', 'general', 'strategy', 'can', 'be', 'carried', 'over', 'to', 'the', '', 'case', 'as', 'well', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'steward', 'observatory', 'at', 'the', 'university', 'of', 'arizona', 'is', 'responsible', 'for', 'daily', 'operations', 'and', 'scientific', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'dish', 'network', 'started', 'carrying', '', 'channel', 'on', 'february', '1', '0', ',', '2', '0', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'opened', 'in', '1', '9', '7', '1', 'and', 'the', 'mall', \"'s\", '', 'stores', 'are', '', '(', 'closing', 'march', '2', '0', '2', '1', ')', ',', 'rural', 'king', ',', '', ',', 'and', '', '', ',', 'with', 'one', 'vacant', '', 'last', 'occupied', 'by', '', \"'s\", '.', '', '', '', '', '', '']\n", "['', 'there', 'were', 'at', 'least', '9', '2', '8', '', 'confirmed', 'in', 'the', 'united', 'states', 'in', '2', '0', '1', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mary', 'immediately', 'falls', 'ill', ',', 'and', 'is', '', 'for', 'by', 'her', 'teacher', ',', '', '(', 'virginia', 'madsen', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'large', '', '', 'are', 'present', 'in', 'the', 'fishes', '``', '', \"''\", ',', '``', '', \"''\", ',', 'and', '``', '', \"''\", ',', 'and', 'the', 'early', '', ',', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'world', 'of', 'the', 'weapon', 'brown', 'character', 'and', 'the', 'others', 'who', '', 'it', 'with', 'him', 'is', 'one', 'that', 'is', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'the', 'first', 'time', ',', 'the', '', 'was', 'taken', 'in', 'a', 'language', 'other', 'than', 'latin', 'or', '', 'as', 'it', 'was', 'customary', ',', 'i.e', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '3', '8', 'degrees', ',', 'who', 'worked', 'with', 'the', 'open', 'rights', 'group', 'to', '', 'opposition', 'to', 'the', 'act', ',', 'state', 'that', 'over', '2', '2', ',', '0', '0', '0', 'people', 'have', 'emailed', 'their', 'mps', 'through', 'their', 'web', 'site', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', 'result', ',', 'they', 'decided', 'to', 'pursue', 'working', 'under', 'the', 'name', 'grande', '', 'de', '', ',', 'named', 'after', 'the', 'grand', 'master', 'who', 'had', 'died', 'in', '1', '7', '7', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'daniel', '', '', 'was', 'prominent', 'in', 'irish', 'athletics', 'not', 'only', 'as', 'a', 'successful', '', ',', 'but', 'also', 'as', 'an', 'administrator', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'wood', '(', ')', 'is', 'a', 'biological', 'site', 'of', 'special', 'scientific', 'interest', 'in', '', ',', '', 'in', '1', '9', '8', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'strategy', 'was', 'successful', ',', 'she', 'signed', 'a', 'peace', 'treaty', 'in', '1', '6', '5', '7', 'and', 'italian', '', 'missionaries', 'began', 'working', 'in', 'her', 'lands', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'critical', 'acclaim', 'got', 'the', 'show', 'picked', 'up', 'for', 'a', 'few', 'national', 'runs', ',', 'although', 'on', 'a', 'limited', 'basis', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'intended', 'to', 'be', 'powered', 'by', 'a', 'bristol', '', 'engine', ',', 'but', 'this', 'had', 'not', 'yet', 'been', '', ',', 'so', 'the', 'initial', 'prototype', 'was', 'fitted', 'with', 'a', '', '', 'engine', 'instead', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'species', 'of', 'moth', 'of', 'the', 'family', 'tortricidae', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'british', 'empire', 'established', 'a', 'series', 'of', 'treaties', 'with', 'the', '', 'with', 'the', 'objective', 'of', 'increasing', 'british', 'political', 'and', 'economic', 'influence', 'over', 'muscat', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'the', '', 'screen', ':', 'german', 'cinema', 'and', 'the', 'global', '', ',', '1', '9', '4', '5', 'to', 'the', 'present', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'incorporated', 'on', 'august', '2', '3', ',', '1', '9', '2', '2', ',', '', \"'s\", 'official', 'slogan', 'is', '``', 'city', 'of', 'action', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", 'said', 'of', 'the', 'xbox', '3', '6', '0', 'version', ':', '``', 'do', \"n't\", '', 'the', '', 'factor', 'of', 'the', '3', 'd', 'mode', '-', 'if', 'this', 'is', 'the', 'future', 'of', 'games', ',', 'sign', 'us', 'up', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'consequently', ',', 'the', 'term', 'is', '``', 'losing', 'much', '[', 'of', 'its', ']', '', 'value', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '``', '', 'effect', \"''\", 'has', 'also', 'been', 'used', 'to', '', 'describe', 'the', 'effect', 'of', 'group', 'representation', 'constituencies', '(', '', ')', 'in', 'singapore', ',', 'where', 'candidates', 'for', 'parliament', 'run', 'on', 'a', 'party', 'slate', 'of', '3', 'to', '6', 'candidates', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'proved', 'herself', 'capable', 'of', 'handling', 'the', 'small', 'roles', 'she', 'was', 'assigned', ',', 'and', 'over', 'a', 'period', 'of', 'time', ',', 'she', 'came', 'to', 'be', 'taken', 'seriously', 'as', 'an', 'actress', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'young', 'course', 'director', ',', 'professor', 'christian', 'friedrich', '', ',', 'was', 'keen', 'to', 'combine', 'academic', 'and', 'botanical', 'instruction', 'with', 'the', '', 'and', 'artistic', 'aspects', 'of', '', ',', 'both', 'in', 'his', 'approach', 'to', 'teaching', 'and', 'in', 'the', 'way', 'he', 'had', 'the', 'gardens', 'arranged', '.', '', '', '', '', '', '', '']\n", "['', 'brain', 'centers', 'that', '', 'urination', 'include', 'the', '', '', 'center', ',', '', 'gray', ',', 'and', 'the', 'cerebral', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '6', '1', 'the', 'first', 'express', 'train', 'ran', 'from', 'vienna', 'to', 'budapest', ',', 'in', '1', '8', '6', '2', 'express', 'services', 'began', 'on', 'the', 'vienna', 'to', '', 'line', 'via', 'prague', 'and', 'in', '1', '8', '6', '8', 'the', 'first', 'express', 'ran', 'from', 'vienna', 'via', '', 'and', '', 'to', 'bucharest', '.']\n", "['', 'from', 'adam', ',', 'the', 'first', 'man', 'created', 'by', 'god', ',', 'to', 'noah', ',', 'at', 'whose', 'time', 'the', 'flood', 'took', 'place', ',', 'there', 'were', 'ten', 'generations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'main', 'goal', 'of', 'the', 'organization', 'is', 'to', 'defend', 'the', 'first', 'amendment', ',', 'freedom', 'of', 'thought', ',', 'inquiry', ',', 'and', 'expression', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'born', 'on', '3', 'may', '1', '9', '3', '1', 'in', '', 'prefecture', ',', 'japan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', 'a', 'player', \"'s\", 'point', 'of', 'view', ',', 'the', 'second', 'and', 'third', 'rows', 'are', 'filled', 'with', 'men', 'of', 'his', 'own', 'color', ',', 'and', 'the', 'sixth', 'and', 'seventh', 'row', 'are', 'filled', 'with', 'the', '', \"'s\", 'men', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'description', 'language', '(', '', ')', 'is', 'a', 'programming', 'language', 'based', 'on', '', 'c', 'with', 'extensions', 'for', 'hardware', 'description', ',', 'developed', 'to', 'describe', 'hardware', 'at', 'levels', 'ranging', 'from', 'the', 'algorithm', 'level', 'to', 'the', 'functional', 'level', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'serving', 'as', 'a', '', 'flight', 'officer', 'during', 'world', 'war', 'ii', ',', 'his', '', '1', '7', 'was', 'shot', 'down', 'on', 'his', 'first', 'mission', 'and', 'he', 'was', 'held', 'as', 'a', '', 'in', 'nazi', 'germany', 'from', '1', '1', 'september', '1', '9', '4', '4', 'to', '5', 'may', '1', '9', '4', '5', '.', '']\n", "['', 'the', 'sat', 'problem', 'is', '', ',', 'that', 'is', ',', 'each', 'algorithm', 'which', 'correctly', 'answers', 'if', 'an', 'instance', 'of', 'sat', 'is', '', 'can', 'be', 'used', 'to', 'find', 'a', '', 'assignment', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'son', 'of', '', 'leoncavallo', ',', 'a', 'police', '', 'and', 'judge', ',', 'leoncavallo', 'was', 'born', 'in', 'naples', 'on', '2', '3', 'april', '1', '8', '5', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'the', 'prison', 'population', 'in', 'russia', 'dropped', '', 'between', '2', '0', '0', '0', 'to', '2', '0', '1', '8', ',', 'with', 'a', 'decline', 'of', 'over', '4', '0', '0', ',', '0', '0', '0', 'inmates', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'low', '', '``', 'engine', 'shed', \"''\", 'made', 'of', 'similar', 'materials', 'to', 'the', 'house', ',', '', 'in', 'the', '', 'about', '1', '0', 'metres', 'from', 'the', 'house', ',', 'dates', 'from', 'the', 'original', 'time', 'of', 'construction', 'of', 'the', 'house', 'and', 'is', 'considered', 'significant', '.', '', '', '', '', '', '', '', '']\n", "['', 'general', 'manuel', '', 'was', 'one', 'candidate', ',', '', 'by', 'prominent', '', 'and', 'by', 'the', 'conservative', 'party', ',', 'the', 'national', 'party', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'inn', 'was', 'built', 'of', 'the', 'local', 'golden', 'sandstone', 'by', 'john', '', '(', 'who', 'came', 'from', '', ',', 'italy', 'in', '1', '8', '5', '4', ')', 'during', 'the', '1', '8', '6', '0', 's', 'as', 'the', 'suburb', \"'s\", 'first', 'hotel', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', 'part', 'of', 'the', 'canal', 'de', '', '', '', ',', 'it', 'used', 'to', 'connect', 'the', '', 'de', '', 'in', 'the', 'north', 'with', '', 'in', 'the', 'south', ',', 'both', 'hosting', 'a', 'part', 'of', '', \"'s\", 'harbour', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'term', '``', '', '', \"''\", 'may', 'also', 'be', 'used', 'to', 'describe', 'the', 'game', 'design', 'philosophy', 'behind', 'the', '', '', 'genre', ',', 'which', 'uses', '', ',', '', 'and', 'consistent', 'game', 'systems', 'to', 'create', '', 'gameplay', 'and', 'a', 'sense', 'of', 'player', 'agency', '.', '', '', '', '', '', '', '', '']\n", "['', 'brush', 'is', 'a', 'part', 'of', 'the', 'fort', 'morgan', ',', 'co', '', 'statistical', 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'every', 'year', 'the', 'college', 'conducts', 'general', 'election', 'among', 'the', 'students', 'to', 'form', 'the', '', 'college', 'students', \"'\", 'union', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'largest', 'parks', 'in', 'the', 'central', 'area', 'of', 'london', 'are', 'three', 'of', 'the', 'eight', 'royal', 'parks', ',', '', 'hyde', 'park', 'and', 'its', '', '', 'gardens', 'in', 'the', 'west', ',', 'and', 'regent', \"'s\", 'park', 'to', 'the', 'north', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'town', 'lies', 'on', 'a', 'plateau', 'at', 'an', 'elevation', 'of', 'about', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'an', '8', '×', '8', 'board', ',', '1', '6', 'men', 'are', '', 'up', 'on', 'each', 'side', 'in', 'two', 'rows', ',', '', 'the', 'first', 'and', 'last', 'row', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'students', 'would', 'sometimes', 'appeal', 'to', 'the', 'king', 'about', '', 'decisions', 'and', 'if', 'they', 'were', 'rejected', 'they', 'would', 'stage', 'political', 'demonstrations', ',', 'fast', ',', 'or', '', 'classes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'were', 'the', 'defending', 'champions', 'having', 'won', 'their', 'fifth', 'league', 'championship', 'the', 'previous', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'wu', '', '(', ';', ';', 'born', '3', '0', 'march', '1', '9', '8', '9', 'in', '', ',', '', ')', 'is', 'a', 'chinese', 'footballer', 'of', 'korean', 'descent', 'who', 'currently', 'plays', 'for', 'china', 'league', 'two', 'side', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'north', 'asia', 'or', 'northern', 'asia', ',', 'also', 'referred', 'to', 'as', 'siberia', ',', 'is', 'the', 'northern', 'region', 'of', 'asia', ',', 'which', 'is', 'defined', 'in', 'geographical', 'terms', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'see', 'the', '1', '9', '8', '7', 'official', 'church', 'statement', '``', 'a', 'statement', 'on', 'theological', 'and', 'academic', 'freedom', 'and', 'accountability', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'anna', 'was', 'an', '', 'motor', ',', 'whose', 'origin', 'and', 'manufacturer', 'are', 'unknown', ',', 'other', 'than', 'that', 'it', 'was', 'discovered', 'in', 'america', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', 'reviews', \"''\", 'described', 'the', 'book', 'as', 'being', '``', 'explosive', ',', '', 'reporting', 'that', 'is', 'certain', 'to', '', 'controversy', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'turned', 'down', '', 'and', 'honours', 'throughout', 'his', 'life', ',', 'including', 'prestigious', 'teaching', 'positions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'the', 'bbc', ',', '``', 'the', 'offices', 'that', 'the', 'company', 'says', 'it', 'had', 'in', 'orlando', 'have', 'been', 'vacant', 'for', 'several', 'years', 'and', 'the', 'numbers', 'on', 'its', 'website', 'are', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'labour', 'party', 'retained', 'control', 'of', 'the', 'council', ',', 'which', 'it', 'had', 'held', 'since', '1', '9', '9', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'significant', 'as', 'one', 'of', 'two', 'stations', 'to', 'have', 'two', '', \"'\", '', 'remaining', 'on', 'the', 'site', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'licensed', 'to', '', ',', 'texas', ',', 'usa', ',', 'it', 'serves', 'the', '', 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'hoped', 'for', 'a', 'long', 'time', 'for', 'recognition', 'of', 'his', 'claim', 'to', 'the', 'crown', 'of', 'france', '(', 'as', 'the', '', 'of', 'philip', 'iv', 'through', 'his', 'mother', ',', 'and', 'a', '', 'through', 'his', 'father', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'is', 'a', 'list', 'of', '``', '', \"'s\", \"''\", 'number', 'one', 'weekly', 'alternative', 'rock', 'singles', 'chart', 'in', 'canada', 'for', '1', '9', '9', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'also', 'selected', 'for', 'the', 'netherlands', 'national', 'baseball', 'team', 'for', 'the', ',', 'the', '2', '0', '1', '6', 'european', 'baseball', 'championship', ',', 'the', 'exhibition', 'games', 'against', 'japan', 'in', '2', '0', '1', '6', 'and', 'the', 'training', 'camp', 'in', 'the', 'united', 'states', 'in', '2', '0', '1', '7', '', '', '', '', '']\n", "['', 'before', 'the', 'm', '6', 'was', 'built', ',', 'these', 'routes', 'were', 'very', '', 'with', 'through', 'traffic', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'this', 'area', 'the', 'western', 'european', 'league', 'is', 'the', 'most', 'important', 'indoor', 'series', 'in', 'show', 'jumping', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'jim', 'schaefer', 'of', '``', 'detroit', 'free', 'press', \"''\", 'gave', 'the', 'game', 'three', 'stars', 'out', 'of', 'four', ',', 'saying', ',', '``', 'i', 'like', 'this', 'game', 'simply', 'for', 'its', '', 'on', 'an', 'old', 'genre', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'humans', \"'\", '', 'body', 'hair', 'and', 'more', '', '', '', 'help', 'avoid', 'heat', '', 'while', 'running', 'for', 'long', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'next', 'film', '``', '', \"''\", '(', '1', '9', '9', '9', ')', ',', 'directed', 'by', 'kevin', 'lima', 'and', 'chris', '', ',', 'had', 'a', 'high', 'production', 'cost', 'of', '$', '1', '3', '0', 'million', ',', 'again', 'received', 'positive', 'reviews', 'and', 'earned', '$', '4', '4', '8', 'million', 'at', 'the', 'box', 'office', '.', '']\n", "['', 'folk', 'singer', 'stan', 'rogers', 'made', 'the', '', 'wharf', 'famous', 'in', 'his', 'songs', '``', 'barrett', \"'s\", '', \"''\", 'and', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'outcome', 'was', 'to', 'approach', 'the', 'community', 'action', 'program', '', 'counties', ',', 'inc.', '(', '', ')', 'to', 'provide', 'the', 'service', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'prior', 'to', 'these', 'acts', 'deportations', 'had', 'remained', 'at', 'about', 'an', 'average', 'of', '2', '0', ',', '0', '0', '0', 'per', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mario', '', 'was', 'born', 'in', '', ',', 'in', 'the', 'italian', 'province', 'of', '', ',', 'on', '1', '6', 'january', '1', '9', '4', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'estate', 'was', 'gifted', 'to', '', 'in', '1', '9', '1', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'played', 'charlie', 'in', 'the', 'australian', 'crime', 'series', '``', 'rush', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'dortmund', 'took', 'the', 'lead', 'on', 'the', '', 'and', '', 'after', 'being', 'headed', 'by', 'firing', 'line', 'on', 'the', 'final', 'turn', 'to', 'regain', 'the', 'lead', 'in', 'the', 'closing', 'stages', 'and', 'win', 'by', 'a', 'head', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'failure', 'review', 'oversight', 'board', 'found', 'that', 'it', 'was', 'caused', 'by', 'a', '', 'component', 'in', 'the', '', 'system', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'student', 'of', 'prague', '(', ')', 'is', 'a', '1', '9', '2', '6', 'german', '', 'silent', 'film', 'by', 'actor', 'and', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'safety', 'of', 'the', 'continental', 'army', 'on', 'this', 'occasion', 'was', 'largely', 'due', 'to', 'the', 'good', 'conduct', 'of', 'colonel', 'marshall', 'and', 'his', 'command', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', '&', 'amp', ';', 't', '', 'added', 'it', 'on', 'april', '8', ',', '2', '0', '0', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'around', '1', '8', '8', '7', ',', 'when', 'he', 'was', 'seventeen', ',', 'he', 'joined', 'the', 'army', 'in', 'the', 'region', 'of', '', '(', 'today', \"'s\", '', ')', ',', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '3', '7', ',', 'pease', 'settled', 'in', 'salem', ',', 'wisconsin', 'territory', 'and', 'practiced', 'law', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', ',', 'the', 'president', 'of', '', \"'s\", ',', 'the', 'publisher', 'of', '``', 'kud', 'wafter', \"''\", ',', 'announced', 'via', 'his', 'twitter', 'account', 'in', 'april', '2', '0', '1', '0', 'that', '1', '0', '0', ',', '0', '0', '0', 'copies', 'of', '``', 'kud', 'wafter', \"''\", 'would', 'be', 'produced', 'in', 'its', 'initial', 'release', '.']\n", "['', 'in', 'late', 'december', ',', 'the', 'government', 'further', 'delayed', 'voting', 'in', 'three', 'cities', 'until', '3', '1', 'march', '2', '0', '1', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'law', 'is', 'an', 'ordinance', 'of', 'reason', 'because', 'it', 'must', 'be', '', 'or', 'based', 'in', 'reason', 'and', 'not', 'merely', 'in', 'the', 'will', 'of', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'had', 'to', '', 'the', '', 'units', 'that', 'followed', 'them', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', 'was', 'formerly', 'placed', 'in', 'the', 'genus', '``', '', \"''\", 'but', '', 'analysis', 'using', '', 'and', 'nuclear', '', '', 'found', 'that', 'the', 'genus', 'was', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'received', 'her', 'first', 'leading', 'role', 'in', 'drama', '``', 'iron', 'ladies', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'writes', 'about', 'african-american', 'quilt', 'history', 'and', '', 'quilt', 'documentation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'age', 'of', '', 'is', 'a', 'series', 'of', 'comics', 'published', 'by', 'dark', 'horse', 'comics', ',', 'created', 'by', 'ricardo', '', ',', 'a', 'film', 'and', 'comic', 'book', 'artist', 'who', 'has', 'worked', 'on', 'such', 'films', 'as', '``', 'the', '', \"''\", ',', '``', 'men', 'in', 'black', \"''\", 'and', '``', 'apollo', '1', '3', '``', '.', '']\n", "['', 'the', 'remainder', 'fled', 'to', 'a', '', ',', 'where', 'they', 'were', 'besieged', 'by', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', 'a', '', '', 'on', '', 'and', '', '', 'him', 'about', 'his', 'name', ',', 'bringing', 'him', 'oil', '', ',', 'forcing', 'him', 'to', '', 'them', ',', 'and', '', 'him', 'when', 'no', 'genie', 'appears', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'with', 'all', 'libraries', 'in', 'the', 'chicago', 'public', 'library', 'system', ',', 'it', 'has', 'free', '', 'internet', 'service', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'arab', 'democratic', 'republic', '(', '', ')', 'is', 'the', 'government', 'in', '', 'claiming', '', 'of', 'the', 'former', 'spanish', 'colony', 'of', 'western', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'represented', 'great', 'britain', 'in', 'the', '2', '0', '1', '6', 'rio', '', 'as', 'a', '', 'pilot', 'for', '', '', 'cyclist', ',', 'stephen', '', 'with', 'whom', 'he', 'was', '', 'in', 'january', '2', '0', '1', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", 'was', 'recorded', 'in', 'september', 'and', 'october', '2', '0', '0', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'january', '1', '9', '2', '2', ',', 'the', 'authorities', 'in', 'parma', 'granted', 'parma', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'was', 'born', 'in', '', '', '', ',', 'germany', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'gauley', 'mills', 'is', 'located', 'on', 'the', 'gauley', 'river', 'east', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'his', 'funeral', 'notice', 'in', 'the', '``', 'columbia', 'herald', \"''\", ',', 'he', 'left', 'a', 'young', 'wife', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'other', 'class', 'of', '', 'rings', 'that', 'is', 'arguably', 'of', 'equal', 'importance', 'comes', 'from', 'geometry', ':', 'let', '``', 'c', \"''\", 'be', 'a', '', '', '', '', 'algebraic', 'curve', 'over', 'a', 'field', '``', 'k', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'los', 'al', 'finished', 'in', 'third', 'place', 'in', '2', '0', '0', '8', 'and', 'first', 'place', 'in', '2', '0', '0', '7', 'and', '2', '0', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', '', 'at', '', 'memorial', 'park', 'in', 'delta', 'township', ',', 'michigan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', '0', 'october', ',', 'attacked', '', 'airfield', ';', 'eleven', '', 'camels', 'carried', 'bombs', ',', 'with', 'eight', 'more', 'as', 'close', 'escort', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '2', '4', '8', '8', 'lies', '3', '0', '', 'west', 'of', 'n', '', ',', 'a', '3', 'rd', 'magnitude', 'star', 'located', 'near', 'the', 'false', 'cross', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'top', 'eight', 'from', 'each', 'division', 'make', 'the', 'playoffs', '(', 'blue', '', ')', ',', '(', '', ')', 'denotes', '', 'berth', ',', '(', '', ')', 'denotes', 'elimination', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'i', 'would', 'rather', 'have', 'j.', 'd.', 'grey', 'at', 'my', 'side', ',', '', ',', 'arthritis', ',', 'and', 'all', ',', 'than', '9', '9', 'percent', 'of', 'the', 'people', 'in', 'all', 'of', 'the', 'world', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'that', ',', '``', 'all', 'of', 'aip', \"'s\", 'films', 'were', 'very', '', ',', 'so', 'anything', 'that', 'was', '', 'of', 'playing', 'around', '-', '``', '', \"''\", 'a', '', ',', 'you', 'know', 'what', 'i', \"'m\", 'saying', '?', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'retired', 'on', 'retired', 'in', 'january', '2', '0', '1', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'grand', 'prize', 'is', 'the', '``', '', '', \"''\", ',', 'or', '``', 'golden', '', ',', \"''\", 'named', 'for', 'the', 'lunar', '', 'of', 'ancient', 'carthage', ';', 'the', 'award', 'is', 'in', 'the', 'shape', 'of', 'her', 'symbol', ',', 'a', '', '', 'by', 'a', 'horizontal', 'line', 'and', 'a', 'circle', '.', '', '', '', '']\n", "['', '', 'grew', 'up', 'in', 'mount', '', ',', 'new', 'jersey', 'and', 'attended', 'pope', 'john', '', 'high', 'school', 'in', '', ',', 'new', 'jersey', ',', 'where', 'he', 'played', 'football', ',', 'basketball', 'and', 'ran', 'track', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'an', 'indian', 'film', 'and', 'stage', 'actor', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'research', 'concerning', 'the', 'relationship', 'between', 'digital', '', 'and', 'their', 'owners', ',', 'and', 'their', 'impact', 'on', 'the', '', 'of', 'people', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'the', 'remainder', 'of', 'the', '1', '9', 'th', 'century', ',', '', 'was', 'generally', '', 'by', 'generations', 'of', '', 'for', 'his', '', 'ways', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'and', 'calder', 'proposed', 'to', 'pump', 'all', 'the', 'water', 'for', 'the', 'canal', 'from', 'the', 'river', 'calder', ',', 'using', '', '', 'at', '', ',', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'hall', 'is', 'located', '4', 'miles', 'north-west', 'of', 'derby', ',', 'and', 'is', 'now', 'open', 'to', 'the', 'public', ',', 'as', 'one', 'of', 'the', 'properties', 'owned', 'by', 'the', 'national', 'trust', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'his', 'tenure', 'as', '', 'professor', 'of', 'political', 'economy', 'at', 'the', 'university', 'of', 'oxford', 'from', '2', '0', '1', '0', 'to', '2', '0', '2', '0', ',', 'he', 'is', 'now', 'a', 'senior', 'research', 'fellow', 'at', 'the', 'same', 'institution', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'early', '2', '0', '2', '0', ',', 'the', 'covid-', '1', '9', 'pandemic', 'reached', 'the', 'country', 'causing', 'the', 'economy', 'to', 'contract', 'by', '9', '.', '5', '%', 'in', 'terms', 'of', 'gross', 'domestic', 'product', 'since', 'records', 'began', 'in', '1', '9', '4', '7', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', 'teenager', ',', 'cole', 'ran', 'away', 'from', 'home', 'and', 'became', 'the', '', 'driver', 'for', 'a', 'crew', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'some', 'input', 'from', 'his', 'writing', 'staff', ',', 'chase', 'revised', 'the', 'script', 'to', 'its', 'finished', 'state', ',', 'although', 'he', 'also', 'made', 'minor', 'changes', 'during', 'filming', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'p', '3', '0', 'pro', \"'s\", 'camera', '', 'have', 'been', 'carried', 'over', 'to', 'the', 'mate', '3', '0', 'pro', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'main', 'aim', 'of', 'the', 'college', 'is', 'to', 'provide', 'students', 'with', 'academic', ',', 'scientific', ',', 'and', 'professional', 'knowledge', 'in', 'the', 'fields', 'of', 'social', 'sciences', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '5', 'drake', 'wrote', 'a', '', 'script', 'called', '``', 'ladies', 'man', \"''\", ',', 'in', 'which', 'a', 'male', 'protagonist', 'who', 'works', 'in', 'advertising', 'has', 'a', '', 'accident', 'which', 'gives', 'him', 'the', 'ability', 'to', 'read', 'women', \"'s\", 'thoughts', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'now', 'that', 'her', 'daughter', 'is', 'in', 'college', ',', '', 'is', 'able', 'to', 'take', 'on', '', 'and', 'more', 'dangerous', 'assignments', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'israel', \"'s\", '', 'allows', 'broad', '', 'and', '', ',', 'taking', 'in', 'norms', 'of', 'appeal', 'and', 'the', '', \"'s\", 'rights', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'a', 'pair', 'of', '', \"''\", 'has', 'been', 'published', '', 'times', ',', 'including', 'eight', 'in', 'germany', 'and', 'was', 'featured', 'in', 'the', 'local', 'literary', 'scenes', 'of', 'many', 'other', 'countries', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'situation', 'was', '', 'by', 'the', 'bad', 'weather', 'which', 'was', 'turning', 'into', '', 'on', 'mt', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'was', 'reinforced', 'with', 'an', 'internal', 'and', 'an', 'external', 'frame', 'that', 'prevented', 'direct', 'contact', 'between', 'the', '', '', \"'s\", 'skin', 'and', 'suspension', 'cables', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '4', 'march', '2', '0', '1', '2', 'presidential', '', ',', '', 'gained', '7', '.', '9', '4', '%', 'of', 'the', 'vote', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'american', 'civil', 'war', 'the', 'term', '``', 'rifle', 'pit', \"''\", 'was', 'recognized', 'by', 'both', 'u.s.', 'army', 'and', 'confederate', 'army', 'forces', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'conflicting', 'reports', 'about', 'whether', 'the', 'chinese', '', '', \"'\", 'was', '', 'by', 'drawing', '', 'to', 'choose', 'him', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'soon', 'discovered', 'by', 'adam', ',', 'jack', ',', 'and', '', 'summers', 'that', 'victor', 'set', 'skye', 'up', 'in', 'hawaii', 'and', 'he', 'was', 'in', 'hawaii', 'when', 'sharon', 'was', 'there', 'to', 'make', 'sure', 'no', 'one', 'learned', 'the', 'truth', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'later', 'appeared', 'in', 'the', '1', '9', '7', '1', 'collection', '``', 'the', 'complete', 'stories', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'first', 'worked', 'with', 'john', 'lennon', 'just', 'before', 'the', 'beatles', 'broke', 'up', 'in', '1', '9', '7', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'election', 'was', 'held', '', 'with', 'other', 'local', 'elections', 'in', 'england', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mann', 'had', 'never', 'watched', 'the', 'show', ',', 'but', 'agreed', 'to', 'have', '``', 'that', \"'s\", 'just', 'what', 'you', 'are', \"''\", 'used', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 's.', '', \"''\", 'sometimes', 'has', 'flattened', 'stem', 'segments', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '(', 'according', 'to', 'a', 'different', 'tradition', ',', 'the', 'term', '``', 'count', '(', 'or', 'prince', ')', 'of', 'coucy', \"''\", 'refers', 'to', 'his', '', ',', 'rabbi', '', 'ben', 'jacob', 'of', 'coucy', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'dark', '', '', 'are', '', ',', 'the', 'costa', '', '', '', ',', 'the', '', '', ',', 'the', 'termen', 'slightly', 'rounded', 'and', 'somewhat', 'oblique', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'sometimes', 'the', '``', '', '', \"''\", 'was', 'located', 'in', 'a', 'city', 'or', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'his', 'time', 'came', 'to', 'die', ',', 'the', 'angel', 'came', 'to', '', 'hanina', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'town', 'was', 'named', 'for', 'samuel', 'willis', ',', 'a', '', 'and', 'founded', 'in', '1', '7', '6', '3', 'as', 'a', 'royal', 'grant', 'from', 'governor', '', 'wentworth', 'of', 'the', 'royal', 'colony', 'of', 'new', 'hampshire', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'company', \"'s\", 'software', 'products', 'provide', 'web', '', ',', '', 'sharing', ',', 'and', 'remote', 'maintenance', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'both', 'schools', 'were', 'renamed', 'the', 'forest', 'school', ',', 'and', 'the', 'boys', \"'\", 'school', 'still', 'retains', 'this', 'name', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'qing', 'dynasty', ',', 'however', ',', 'continued', 'to', 'maintain', 'a', '', 'of', '', ',', 'one', 'of', 'the', 'most', 'well-known', 'being', 'zhang', '', ',', 'whose', '', 'reforms', 'made', 'hubei', '(', 'especially', 'wuhan', ')', 'into', 'a', 'prosperous', 'center', 'of', 'commerce', 'and', 'industry', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'within', 'a', 'year', 'or', 'so', ',', 'samshvilde', 'was', 'conquered', 'by', 'the', '', 'under', '', 'i', 'and', 'remained', 'their', '', 'in', 'georgia', 'until', '1', '1', '1', '0', ',', 'when', 'bishop', 'george', 'of', '', 'besieged', 'and', 'took', 'the', 'city', 'on', 'behalf', 'of', 'king', 'david', 'iv', 'of', 'georgia', '.', '', '', '', '']\n", "['', 'later', ',', 'in', 'september', '2', '0', '0', '3', ',', 'she', 'became', 'an', '', 'for', 'rai', '', ',', 'the', 'primary', 'television', 'station', 'of', 'rai', ',', 'italy', \"'s\", 'state-owned', 'national', 'public', 'service', 'broadcaster', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '7', 'funds', 'were', '', 'for', 'the', 'park', '', 'by', 'the', 'chamber', 'of', 'commerce', 'of', '', ',', 'the', 'municipality', 'of', '', 'and', 'the', '', '``', '', '', \"''\", '(', '``', '', 'lands', \"''\", ')', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'night', '', 'are', 'associated', 'with', '', '', 'performance', 'during', '', 'surgeries', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'november', '1', '8', '6', '2', ',', 'wofford', 'and', 'the', '1', '8', 'th', 'georgia', 'were', 'transferred', 'to', 'the', 'georgia', 'brigade', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'those', 'near', 'zero', 'or', 'at', 'the', '``', '', \"''\", 'of', 'the', 'measurement', 'system', 'will', 'have', '', 'influence', 'and', 'could', '', 'solutions', '(', '', ')', 'using', 'the', 'inverse', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'the', 'end', 'of', 'the', 'war', ',', 'greek', 'armed', 'forces', 'controlled', 'most', 'of', 'the', 'historical', 'region', 'of', '', ',', 'from', 'the', '', 'mountains', 'along', 'the', '', 'coast', 'to', 'lake', '', 'in', 'the', 'east', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'november', 'of', 'this', 'year', 'he', 'was', 'back', 'in', 'rome', ',', 'probably', 'as', '', '(', 'or', 'assistant', ')', 'to', 'the', 'master', 'of', 'the', 'order', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'most', 'of', 'these', 'nominations', 'are', 'for', 'acting', ',', 'of', 'the', 'show', \"'s\", 'ensemble', 'cast', 'numerous', 'actors', 'have', 'received', 'nominations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'this', 'time', 'the', 'enterprise', 'has', 'integrated', 'over', '6', '5', '0', '0', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'thought', 'a', 'combination', 'of', 'black', 'blues', 'and', '', 'music', 'would', 'be', 'very', 'popular', 'among', 'white', 'people', ',', 'if', 'presented', 'in', 'the', 'right', 'way', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'served', 'under', '', 'in', 'the', 'third', '', 'war', 'against', 'the', 'forces', 'of', '', 'sultan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', ')', 'is', 'a', 'village', 'in', 'the', 'administrative', 'district', 'of', 'gmina', '', ',', 'within', '', 'county', ',', '', 'voivodeship', ',', 'in', 'south-western', 'poland', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'more', 'interested', 'in', 'history', 'and', 'languages', ',', 'but', 'knew', 'that', 'as', 'a', 'catholic', 'his', 'choices', 'were', 'limited', 'to', 'priest', ',', 'lawyer', ',', 'or', 'doctor', 'if', 'he', 'wanted', 'to', 'work', 'in', 'lithuania', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', '2', '0', '1', '9', ',', '', 'is', 'working', 'as', 'the', 'rabbi', 'at', '', 'street', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'green', 'also', 'played', 'on', 'the', 'u.s.', 'team', 'in', 'the', '1', '9', '8', '9', '', 'cup', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'another', 'son', ',', 'captain', 'walter', 'russell', '', \"'\", 'russell', 'of', 'the', '', 'regiment', ',', '2', 'nd', 'battalion', ',', 'attached', 'to', '1', 'st', 'battalion', ',', 'was', 'killed', 'in', 'action', 'on', '2', '3', 'october', '1', '9', '1', '4', 'in', 'france', 'aged', '3', '3', '.', '', '', '', '', '', '', '', '']\n", "['', 'she', 'also', 'competed', 'in', 'the', 'women', \"'s\", 'marathon', 'at', 'the', '2', '0', '1', '9', 'world', 'athletics', 'championships', 'held', 'in', '', ',', 'qatar', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'locomotive', 'design', '', 'from', 'the', 'garratt', 'principle', ',', 'the', 'patent', 'of', 'which', 'was', 'held', 'by', '', ',', '', 'and', 'company', ',', 'and', 'the', 'end', 'result', 'was', 'a', 'hybrid', 'locomotive', ',', 'part', 'garratt', 'and', 'part', 'modified', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'their', '', 'of', 'spreading', 'doubt', 'has', 'confused', 'the', 'public', 'about', 'a', 'series', 'of', 'key', 'scientific', 'issues', 'such', 'as', 'global', '', ',', 'even', 'though', 'scientists', 'have', 'actually', 'become', 'more', 'certain', 'about', 'their', 'research', 'results', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'salad', 'fingers', '', 'some', '', 'of', '', '', '``', 'all', 'in', '', 'days', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rae', 'town', 'is', 'a', 'kingston', ',', 'jamaica', 'neighborhood', 'by', 'kingston', 'harbor', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '2', 'july', '2', '0', '1', '9', ',', 'he', 'signed', 'a', 'contract', 'with', 'russian', 'premier', 'league', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'next', 'surfaces', 'on', 'the', 'distant', 'island', 'of', '', '', 'as', 'an', 'agent', 'for', 'the', '', '', 'known', 'as', 'the', '', ',', 'hired', 'to', 'steal', 'a', 'mystical', '', 'called', 'the', '', 'of', 'heaven', ',', 'and', '', 'its', 'guardian', '', '', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'terms', 'of', 'content', ',', 'it', 'might', 'just', 'prove', 'to', 'be', 'a', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'art', 'museum', 'is', 'currently', 'closed', 'from', 'visitors', '(', 'as', 'of', 'mid-', '2', '0', '2', '0', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'august', '3', '1', ',', '1', '9', '1', '5', ',', 'the', 'portion', 'of', 'ny', '1', '3', '3', 'between', 'the', 'border', 'of', 'the', 'village', 'of', '', 'and', 'ny', '1', '0', '0', ',', 'designated', '', '1', '3', '0', '7', ',', 'was', 'contracted', 'for', 'an', 'upgrade', '.', '', '', '', '', '', '']\n", "['', 'it', 'was', 'released', 'in', '2', '0', '0', '7', 'by', 'integrity', 'media', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', '', 'a', 'journal', ',', '``', '', ':', 'international', 'journal', 'of', 'feminist', 'approaches', 'to', 'bioethics', \"''\", ',', 'and', 'is', 'affiliated', 'with', 'the', 'international', 'association', 'of', 'bioethics', ',', 'with', 'which', 'it', 'meets', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'to', 'the', 'north', ',', 'the', '', 'community', 'across', '', 'trail', 'to', 'the', 'east', ',', 'and', 'the', '', 'community', 'across', '', 'trail', 'to', 'the', 'south', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', 'including', '', ',', '', '', 'and', '', '', 'etc', ')', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'the', '', 'archive', ',', '', 'had', 'been', 'recruited', 'by', 'kim', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'this', 'time', 'the', '', 'type', 'of', 'noriker', 'horse', 'was', 'known', 'in', '', 'as', 'the', '', ',', 'and', 'the', '', 'type', 'was', 'called', ',', 'as', 'in', 'austria', ',', 'the', '', ';', 'this', 'distinction', 'was', 'dropped', 'in', '1', '9', '3', '9', ',', 'and', 'the', 'name', 'noriker', 'applied', 'to', 'all', '.', '']\n", "['', 'from', '2', '1', 'january', '1', '9', '4', '9', ',', '2', '0', '6', '4', 'was', 'returned', 'to', 'flåm', 'without', 'the', 'other', 'unit', 'being', 'sent', 'back', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'anime', 'television', 'series', 'adaptation', 'produced', 'by', '', ',', 'under', 'the', 'title', ',', 'aired', 'in', 'japan', 'between', 'january', '8', ',', '2', '0', '1', '2', 'and', 'june', '3', '0', ',', '2', '0', '1', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'earlier', ',', 'on', '1', '1', 'november', ',', 'he', 'had', 'written', 'a', '``', 'letter', 'from', '', \"''\", 'poem', ',', 'later', 'collected', 'as', 'part', 'of', 'the', '``', '', '', \"''\", 'series', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'adonis', '(', 'born', 'michael', 'a.', 'smith', ',', 'current', 'legal', 'name', 'adonis', 'm.', 'smith', ';', 'january', '4', ',', '1', '9', '6', '3', ')', 'is', 'a', 'pioneering', 'american', 'acid', 'house', 'musician', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'cristiani', 'edited', 'bernardo', 'bertolucci', \"'s\", '1', '9', '8', '2', 'film', '``', 'tragedy', 'of', 'a', '', 'man', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'this', 'time', ',', '', 'was', 'also', 'in', 'a', 'new', 'relationship', 'resulting', 'in', 'marriage', 'and', 'children', ',', 'thus', 'he', 'preferred', 'not', 'to', 'tour', 'with', 'the', 'band', 'at', 'the', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'historically', ',', 'the', 'abundant', 'fishery', 'and', 'wildlife', 'of', 'charlotte', 'harbor', 'supported', 'large', 'populations', 'of', 'people', 'of', 'the', '', 'culture', '(', 'in', 'early', 'historic', 'times', ',', 'the', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'spans', 'roughly', '3', '1', '°', '0', '0', \"'s\", '-', '3', '2', '°', '2', '0', \"'s\", 'in', 'latitude', 'and', '1', '2', '5', '°', '3', '0', \"'\", 'e', '-', '1', '2', '7', '°', '3', '0', \"'\", 'e', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'of', 'the', 'electromagnetic', 'current', 'operator', 'between', 'two', '', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'fiscal', '1', '9', '9', '6', ',', 'once', 'the', 'republican', 'party', 'had', 'taken', 'over', 'congress', 'the', 'year', 'prior', ',', '', 'had', 'its', 'funding', 'cut', 'again', ',', 'from', '$', '4', '0', '0', 'million', 'to', '$', '2', '7', '8', 'million', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'december', '1', '9', '3', '3', ',', 'services', 'around', '', 'were', 'acquired', 'from', 'the', '', '', 'company', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '9', '7', '0', 'to', '1', '9', '7', '4', 'he', 'served', 'as', '', 'of', 'the', 'radio', 'berlin', 'orchestra', ',', 'which', 'was', 'led', 'by', '', '', 'at', 'the', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'festivals', 'traditionally', 'were', 'held', 'again', 'every', 'three', 'years', 'after', 'the', '3', '0', 'th', 'year', ';', '', 'ii', ',', 'who', 'sometimes', 'held', 'them', 'after', 'two', 'years', ',', 'eventually', 'celebrated', 'an', 'unprecedented', 'thirteen', 'or', 'fourteen', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'of', '', 'was', 'established', 'as', 'a', '', 'of', 'lyon', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'format', 'of', 'the', 'show', 'often', 'featured', 'perkins', '', '', ',', 'describing', 'fowler', \"'s\", '', 'work', 'with', 'the', 'wild', 'animals', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'all', 'of', 'the', 'below', 'are', 'region', '1', '(', 'north', 'america', ')', 'box', 'sets', 'featuring', 'entire', 'seasons', 'of', 'the', 'show', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'travels', 'several', 'times', 'a', 'year', 'to', 'screen', 'her', 'documentary', 'and', 'interact', 'with', 'students', 'via', 'a', 'q', '&', 'amp', ';', 'a', 'panel', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", 'was', 'decommissioned', 'there', '5', 'december', '1', '9', '4', '5', ',', 'and', 'transferred', 'to', 'the', 'maritime', 'commission', '2', '7', 'september', '1', '9', '4', '6', 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'than', '', '', ',', 'the', 'first', 'leader', ',', 'some', 'of', 'the', 'georgians', 'in', 'these', 'shows', 'rose', 'to', 'particular', 'prominence', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'robert', 'p.', '', '``', 'voiced', 'his', '', 'in', '1', '9', '4', '7', '``', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'would', 'walk', 'to', 'save', 'the', '', 'of', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'game', 'marked', 'the', 'big', 'ten', 'opener', 'for', 'both', 'teams', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'reflected', 'in', 'the', 'original', 'version', 'of', 'the', 'south', 'korean', 'flag', \"'s\", '', 'of', 'allegiance', ',', '', 'in', '1', '9', '7', '2', 'and', 'used', 'until', '2', '0', '0', '7', ',', 'which', 'stressed', 'allegiance', 'to', 'the', '``', 'korean', 'race', \"''\", 'rather', 'than', 'the', 'south', 'korean', 'state', '.', '', '', '']\n", "['', '', '', 'airport', 'covers', 'an', 'area', 'of', '7', '8', '8', 'acres', '(', '3', '1', '9', 'ha', ')', 'at', 'an', 'elevation', 'of', '1', ',', '7', '2', '3', 'feet', '(', '5', '2', '5', 'm', ')', 'above', 'mean', 'sea', 'level', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'soon', 'after', 'duncan', 'announced', 'his', 'candidacy', ',', 'howard', 'morgan', ',', 'a', 'former', 'member', 'of', 'the', 'federal', 'power', 'commission', ',', 'announced', 'he', 'was', 'running', 'as', 'an', '', 'option', 'to', 'duncan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'neural', '', '(', 'in', 'contrast', 'to', 'neural', '', ')', 'store', 'training', 'information', 'by', '', 'their', 'neural', 'link', '', '(', 'see', 'artificial', 'neuron', ',', 'artificial', 'neural', 'networks', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', 'the', '2', '0', '1', '0', 'united', 'states', 'census', ',', 'there', 'were', '4', ',', '0', '7', '8', 'people', ',', '1', ',', '7', '6', '2', 'households', ',', 'and', '1', ',', '1', '5', '6', 'families', 'living', 'in', 'the', 'county', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'australia', ',', '``', '', '2', 'b', 'human', \"''\", 'debuted', 'at', 'number', 'one', 'on', 'the', 'aria', 'albums', 'chart', ',', 'becoming', 'pink', \"'s\", 'sixth', '', 'album', 'there', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'ruled', 'until', 'his', 'death', 'in', '1', '8', '0', '1', ',', 'when', 'he', 'was', 'succeeded', 'by', 'his', 'son', 'mir', '', 'ali', 'talpur', 'until', '1', '8', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'nestlé', 'rossiya', 'is', 'a', 'subsidiary', 'company', 'of', 'nestlé', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'entered', 'politics', 'in', '1', '9', '7', '2', 'and', 'was', '', 'under', '', 'during', 'emergency', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'family', 'of', 'medium', 'to', 'large', 'coastal', ',', '', '', 'that', 'includes', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'have', 'the', '', 'reputation', 'as', 'a', 'racing', 'breed', ',', 'but', 'other', '', 'also', 'race', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'table', 'below', 'lists', 'the', '', 'of', 'initial', 'and', 'final', 'classes', 'that', 'occur', 'in', 'the', '``', '', \"''\", ',', 'with', 'the', 'row', 'of', 'the', '', '', 'in', 'which', 'each', 'combination', 'was', 'placed', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', 'to', 'the', 'spanish', '', ',', 'already', 'discussed', ',', 'this', 'rhythm', 'has', 'been', 'adopted', 'and', 'modified', 'by', 'other', 'nations', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'asked', 'by', 'the', 'police', ',', 'according', 'to', 'the', '``', 'life', \"''\", 'article', ':', '``', 'marion', '', ',', \"'\", 'i', 'could', \"n't\", 'break', 'that', 'big', 'rock', 'by', 'myself', \"'\", ',', 'he', 'said', ',', '', 'i', 'decided', 'to', 'let', 'the', 'train', 'do', 'it', '.', \"'\", \"''\", '', '', '', '', '']\n", "['', '', 'play', 'is', 'a', '1', '9', '7', '8', 'american', 'romantic', 'comedy', 'thriller', 'film', 'written', 'and', 'directed', 'by', 'colin', '', ',', 'and', 'starring', '', '', ',', '', 'chase', ',', '', 'moore', ',', '', 'meredith', ',', 'eugene', '', ',', 'rachel', '', ',', 'brian', '', 'and', 'billy', '', '.', '', '', '', '']\n", "['', 'his', 'only', 'other', 'davis', 'cup', 'appearance', 'came', 'in', 'the', 'first', 'round', 'of', 'the', '1', '9', '9', '5', 'world', 'group', ',', 'when', 'switzerland', 'faced', 'the', 'netherlands', 'at', 'home', 'in', 'geneva', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'is', 'a', 'fresh', 'addition', 'to', 'the', 'movies', ':', 'a', 'handsome', 'profile', ',', 'a', 'bright', 'personality', ',', 'and', 'a', 'singing', 'voice', 'as', 'unique', 'in', 'its', 'own', 'way', 'as', '', \"'s\", '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', 'suffered', 'from', 'asthma', 'since', 'he', 'was', 'a', 'child', ',', 'and', 'has', 'battled', 'throughout', 'his', 'career', 'to', 'control', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'name', 'is', 'said', 'to', 'have', 'been', 'given', 'by', '', '', ',', 'the', '1', 'st', '', '', ',', 'who', 'was', 'searching', 'for', 'the', 'best', 'location', 'for', 'a', 'dzong', 'to', 'prevent', '', 'from', 'the', 'south', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'an', 'egyptian', 'journalist', 'for', '``', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '0', '2', '3', '2', 'is', '', 'known', 'to', 'interact', 'with', '', ',', '', '1', 'a', ',', 'and', '', '1', 'b', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'album', 'received', 'a', 'grammy', 'award', 'nomination', 'for', 'best', 'jazz', '', 'performance', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'also', 'published', '``', 'youth', \"'s\", 'first', 'steps', 'in', '', \"''\", 'in', '1', '8', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'bequeathed', '', 'to', 'his', '', ',', 'the', 'steward', 'of', 'the', '', '', '(', ')', ',', 'and', ',', 'after', 'changing', '', \"'s\", 'name', 'again', 'to', '', '(', '', ',', '``', '', \"''\", ')', ',', 'bequeathed', 'it', 'to', 'his', 'son', '', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'story', ',', 'told', 'from', 'shawn', \"'s\", 'perspective', ',', 'also', 'focuses', 'on', 'how', 'his', 'family', '', 'with', 'the', 'condition', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '6', ',', 'after', 'thompson', \"'s\", 'girlfriend', 'broke', 'up', 'with', 'him', ',', 'he', 'began', '', 'her', ',', 'including', 'threats', 'of', '', '', ',', 'and', 'making', 'bomb', 'threats', 'to', 'jewish', 'community', 'centers', 'as', 'retaliation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'delighted', 'to', 'be', '', 'again', ',', '', 'performs', 'for', 'them', 'and', '', 'an', 'audience', 'for', 'a', 'while', ',', 'until', 'the', 'new', 'prison', '', 'orders', 'that', 'he', 'stop', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', '1', '8', '5', '6', ',', 'the', 'first', 'stafford', 'ministry', ',', 'led', 'by', 'edward', 'stafford', ',', 'was', 'in', 'place', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'dialects', 'are', 'spoken', 'in', 'the', 'region', 'of', 'franconia', 'and', 'in', 'the', 'central', 'parts', 'of', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'soon', 'damaged', 'by', 'waves', ',', 'then', 'destroyed', 'by', 'a', 'storm', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'laid', 'down', 'in', 'january', '1', '8', '9', '5', 'and', 'launched', 'in', 'july', '1', '8', '9', '6', ',', 'before', 'being', 'completed', 'in', 'august', '1', '8', '9', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'born', 'in', 'spafford', ',', '', 'county', ',', 'new', 'york', ',', 'pease', 'was', 'educated', 'in', '', ',', 'new', 'york', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'with', 'all', 'transmission', 'lines', ',', 'it', '', 'on', 'the', '', 'and', '', 'ratio', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', 'other', 'sources', 'it', 'is', 'however', 'known', 'that', '', '', 'as', 'early', 'as', 'in', '1', '7', '5', '8', 'employed', 'the', 'teacher', '', '', 'paying', 'him', '6', '', 'a', 'month', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'first', 'world', 'war', 'he', 'spent', 'two', 'years', 'in', 'a', '', 'hospital', ',', 'where', 'he', 'contracted', '', 'tuberculosis', 'and', 'had', 'to', 'be', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'currently', 'resides', 'in', 'la', '', ',', 'about', '9', '0', 'km', 'northeast', 'of', 'geneva', 'across', 'lake', 'geneva', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '1', '9', '5', '6', 'stanford', 'indians', 'football', 'team', 'represented', 'stanford', 'university', 'in', 'the', '1', '9', '5', '6', 'ncaa', 'university', 'division', 'football', 'season', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'shot', 'after', 'receiving', 'daily', 'death', 'threats', 'on', 'account', 'of', 'his', '', 'criticism', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'yet', 'attacks', 'on', 'these', '', '', '', 'by', 'excluded', '', '', 'have', 'failed', 'consistently', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'attacked', 'lloyd', 'george', \"'s\", '', 'to', 'make', 'offensives', 'against', 'turkey', 'a', 'top', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'an', '', 'path', '', 'known', 'to', '', 'to', '', 'proteins', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'then', 'played', 'with', 'chuck', '', ',', 'the', 'jazz', 'composer', \"'s\", 'orchestra', ',', 'clark', '', ',', 'sam', 'rivers', ',', 'buddy', 'rich', ',', 'the', '', '', 'lewis', 'orchestra', ',', '', 'evans', ',', 'frank', 'foster', ',', 'and', 'slide', 'hampton', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'this', 'report', ',', 'the', 'current', 'issues', 'with', 'having', 'a', 'national', 'global', 'reserve', 'currency', 'are', 'addressed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'modern', 'research', 'this', 'church', 'was', '1', '9', 'm', 'wide', 'and', 'about', '4', '1', 'm', 'long', ';', 'the', 'tower', 'on', 'west', 'side', 'and', 'the', 'east', 'end', 'of', 'the', '', 'gives', 'us', 'an', 'idea', 'about', 'the', 'size', 'of', 'the', 'church', 'after', 'its', 'first', 'reconstruction', '.', '', '', '', '', '']\n", "['', 'he', 'joined', 'the', 'new', '', 'team', 'and', 'was', 'one', 'of', 'the', 'designers', 'of', 'the', 'team', \"'s\", '', '0', '1', 'chassis', 'for', 'the', '1', '9', '9', '5', 'season', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'cruttwell', 'made', 'no', 'apparent', 'response', 'to', 'these', '', ',', 'other', 'than', 'a', '', 'reference', 'to', 'waugh', 'as', '``', 'a', '', 'suburban', '', 'with', 'an', '', 'complex', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'their', 'home', '(', 'now', 'at', '5', '', 'court', ')', 'could', 'be', 'seen', 'from', 'many', 'points', 'around', 'kingston', ',', 'and', 'the', 'large', '', 'in', 'kingston', 'house', 'was', 'the', 'centre', 'of', 'social', 'life', 'in', 'the', 'district', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thus', 'the', 'm', '2', '6', 'became', 'a', 'base', 'of', 'the', 'patton', 'tank', 'series', ',', 'which', 'replaced', 'it', 'in', 'early', '1', '9', '5', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'sight', 'of', 'australia', 'on', '1', '2', 'january', '1', '8', '3', '6', '', 'him', 'of', '', ',', 'but', 'inland', 'the', 'country', 'improved', ',', 'and', 'he', 'was', 'soon', 'filled', 'with', '', 'at', 'the', '', 'city', 'of', 'sydney', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'russian', 'town', 'on', '', 'island', 'near', 'saint', 'petersburg', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'same', 'time', 'philip', '', ',', 'count', 'of', 'hanau', ',', 'made', 'his', 'peace', 'with', 'the', 'emperor', ',', 'and', '', 'the', 'swedish', 'cause', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'using', 'common', 'cylinders', 'and', 'parts', 'from', 'the', 'nz', '(', '', ')', 'range', 'of', 'engines', 'the', 'nz', '1', '2', '0', 'produced', 'up', 'to', '1', '3', '5', '', '(', '9', '9', 'kw', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'through', 'this', 'group', 'the', 'first', '', 'to', 'the', 'international', 'community', 'in', 'opposition', 'to', 'the', 'u.s.', 'occupation', 'of', 'the', 'dominican', 'republic', 'were', 'performed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'every', '1', '0', '0', 'females', 'age', '1', '8', 'and', 'over', ',', 'there', 'were', '9', '1', '.', '1', 'males', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'once', 'in', 'the', 'house', ',', 'the', 'girls', 'receive', 'a', 'visit', 'from', 'the', 'fashion', 'designer', '', '', ',', 'who', 'gives', 'them', 'tips', 'about', 'the', 'fashion', 'world', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'village', 'in', 'the', 'administrative', 'district', 'of', 'gmina', '', ',', 'within', '', 'county', ',', 'masovian', 'voivodeship', ',', 'in', 'east-central', 'poland', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ma', '', '', '(', 'born', '5', 'may', '1', '9', '6', '6', ')', 'is', 'a', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'brick', '', 'over', 'the', 'south', 'door', 'is', 'of', 'late', '1', '7', 'th', 'century', 'date', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'building', 'was', 'in', '1', '9', '5', '3', 'refurbished', 'under', '', 'of', 'the', 'architect', 's', 'f.', 'and', 'l.', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'have', 'been', 'rebuilt', 'several', 'times', 'during', 'their', 'long', 'service', 'life', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'words', 'directly', 'inherited', 'from', 'latin', 'are', 'also', 'said', 'to', 'prove', 'the', 'continuous', 'presence', 'of', 'the', 'romanians', \"'\", '', 'north', 'of', 'the', '', ',', 'because', 'they', 'refer', 'to', 'things', 'closely', 'connected', 'to', 'these', 'regions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'with', 'the', 'progress', 'of', 'the', 'attack', ',', 'gay', 'ordered', 'the', 'regimental', 'commander', ',', 'col.', 'james', '', '', ',', 'who', 'had', 'temporarily', 'replaced', 'colonel', 'harris', ',', 'to', 'start', 'the', 'other', 'two', 'battalions', 'on', 'flank', 'movements', 'against', 'the', '', 'ridge', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '', 'year', 'ends', 'with', 'a', 'last', 'place', 'in', 'the', '', ',', 'but', '', 'goes', 'back', 'up', 'the', 'following', 'season', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'license', 'was', '', 'just', 'after', 'the', 'arrest', 'of', '', 'leader', 'abdullah', '', ',', 'at', 'the', 'official', 'request', 'of', 'turkey', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', '', 'alleged', 'that', '', 'was', 'involved', 'in', '', \"'s\", 'death', 'and', 'that', 'he', 'was', 'killed', 'to', 'protect', 'a', 'higher', 'placed', '', 'agent', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hillary', 'took', 'part', 'in', 'the', 'successful', 'operation', 'and', 'everyone', 'was', 'ultimately', 'rescued', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'apple', \"'s\", '2', '0', '1', '5', 'caia', 'scheme', 'would', 'not', 'be', 'affected', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '(', 'adelphia', 'itself', 'was', 'dissolved', 'in', '2', '0', '0', '6', '.', ')', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'an', '', 'message', 'from', '', ',', 'the', 'girls', 'are', 'informed', 'by', '', '', 'that', 'this', 'week', \"'s\", 'photo', 'shoot', 'will', 'be', 'based', 'on', 'the', 'famous', 'pin', 'up', \"'s\", 'but', 'at', 'the', 'same', 'time', 'they', 'will', 'also', 'pose', 'as', 'giants', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'six', 'of', 'the', 'larger', '', 'under', 'construction', ',', 'the', 'navy', 'considered', 'either', 'building', 'german', 'type', '', 'iii', '', 'under', 'license', 'or', '', 'the', 'type', '1', '9', '1', '6', 's', '1', 'design', 'submitted', 'by', '', '', 'ag', '(', ')', 'of', '', '.', '', '', '', '', '', '', '', '']\n", "['', 'late', '', '(', 'after', '1', '4', '0', '0', '', ')', 'sites', 'are', '', 'and', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'even', 'if', 'such', 'evidence', 'is', 'found', ',', 'if', 'it', 'is', 'outside', 'the', 'scope', 'of', 'the', 'areas', 'the', '', '', 'then', 'it', 'is', 'very', 'likely', 'to', 'be', 'excluded', 'from', 'trial', 'as', 'an', 'illegal', 'search', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'ibn', '', 'denied', 'them', 'permission', 'to', 'cross', 'the', 'river', 'or', 'operate', 'on', 'indian', 'soil', 'and', 'the', 'arabs', 'returned', 'home', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'appointed', '', 'of', 'the', 'japanese', 'second', 'army', 'from', 'september', '1', '9', '0', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'announced', 'at', 'a', 'news', 'conference', 'on', 'the', 'night', 'of', 'september', '8', 'that', 'unita', 'accepted', 'the', 'mpla', \"'s\", 'election', 'victory', ',', 'and', 'he', 'urged', 'the', 'mpla', '``', 'to', '', 'in', 'the', 'interest', 'of', 'all', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'occur', 'in', 'shades', 'of', 'greens', 'or', '', 'and', 'can', 'change', 'colors', 'over', 'periods', 'of', 'hours', 'and', 'weeks', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'restoration', ',', 'having', 'been', 'created', 'viscount', 'malden', 'and', '1', 'st', 'earl', 'of', 'essex', ',', 'the', 'younger', 'capell', 'became', 'an', 'ambitious', '', 'of', 'charles', 'ii', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'september', '1', '9', '8', '1', 'cabinet', 'reshuffle', 'prior', 'was', 'moved', 'from', 'the', 'employment', 'portfolio', 'to', 'become', 'secretary', 'of', 'state', 'for', 'northern', 'ireland', ',', 'an', 'office', 'he', 'held', 'until', 'september', '1', '9', '8', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'is', 'about', '3', '6', 'mm', 'for', 'males', 'and', '4', '7', 'mm', 'for', 'females', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '6', 'he', 'returned', 'to', 'porsche', 'for', 'a', 'comeback', 'in', 'the', 'world', '', 'championship', ',', 'as', 'porsche', 'started', 'a', 'serious', 'effort', 'there', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'next', 'film', '', 'which', 'came', 'out', 'in', '2', '0', '1', '4', 'was', 'produced', 'by', '', '', 'under', 'the', '', 'of', '', 'international', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'soon', 'after', 'the', 'battle', ',', 'abbott', \"'s\", 'brother', 'fletcher', ',', 'who', 'was', 'suffering', 'from', '', ',', 'joined', 'him', 'in', 'the', 'hospital', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'the', '2', '0', 'th', '', 'single', 'of', '1', '9', '9', '1', 'in', 'the', 'uk', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'people', 'did', 'not', 'have', 'even', 'a', 'sense', 'of', 'need', 'of', 'what', 'the', 'gospel', 'was', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mitchell', 'explained', 'the', 'poem', 'and', 'its', 'meaning', 'to', '``', 'rolling', 'stone', \"''\", 'magazine', ',', 'stating', 'it', 'was', 'about', 'being', '', ',', 'but', 'still', 'be', 'able', 'to', 'stand', 'out', 'while', 'doing', 'what', 'is', 'right', 'for', 'you', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'said', 'that', 'a', 'wife', 'of', 'the', 'duke', '', '', ',', 'being', 'lost', 'in', 'a', 'forest', ',', 'met', 'a', 'deer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'murray', 'issued', 'this', 'order', 'on', 'the', 'grounds', 'that', 'the', 'land', 'on', 'both', 'sides', 'of', 'the', 'river', 'belonged', 'to', 'oklahoma', ',', 'per', 'the', 'louisiana', 'purchase', 'treaty', 'of', '1', '8', '0', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'meanwhile', ',', 'he', 'was', 'completing', 'his', '', 'work', '``', '', '', \"''\", ',', 'the', 'only', 'authority', '', '', 'in', 'the', 'first', 'six', 'books', 'of', 'the', '``', '', \"''\", 'of', '', ',', 'and', 'probably', 'one', 'of', 'the', 'principal', 'authorities', 'for', 'the', 'same', 'author', \"'s\", '``', '', \"''\", '.', '', '', '']\n", "['', 'he', 'served', 'for', 'several', 'years', 'as', 'a', 'professor', 'of', 'english', 'at', 'the', 'university', 'of', 'lagos', ',', 'a', 'position', 'from', 'which', 'he', 'retired', 'in', '1', '9', '8', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'often', 'identified', 'with', 'the', 'brief', ',', '', 'tenure', 'of', 'ken', 'harrelson', 'as', 'general', 'manager', 'of', 'the', 'chicago', 'white', '', ',', 'due', 'to', 'his', 'involvement', 'in', 'two', 'of', 'harrelson', \"'s\", '', 'trades', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'fire', 'protection', 'and', 'emergency', 'medical', 'services', 'are', 'provided', 'by', 'the', '', 'fire', 'protection', 'district', 'at', 'the', 'lake', 'and', 'the', 'east', '', 'fire', 'protection', 'district', 'for', 'the', 'rest', 'of', 'the', 'county', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'bbc', 'philharmonic', 'is', 'a', 'national', 'british', 'broadcasting', 'symphony', 'orchestra', 'and', 'is', 'one', 'of', 'five', 'radio', '', 'maintained', 'by', 'the', 'british', 'broadcasting', 'corporation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'this', 'time', 'he', 'was', 'known', 'as', 'a', 'master', 'of', 'masters', ',', 'and', 'his', 'presence', 'attracted', 'many', '', 'from', '', ',', 'who', 'came', 'to', 'receive', 'transmissions', 'from', 'him', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'despite', 'its', 'name', ',', 'it', 'was', 'not', 'a', 'reserve', 'formation', 'of', 'the', '', 'guards', 'like', 'the', '1', 'st', 'guards', 'reserve', 'division', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'samson', 'ben', 'samson', 'of', 'coucy', '(', ')', ',', 'known', 'as', 'the', 'count', '(', 'or', 'prince', ')', 'of', 'coucy', '(', '', ':', ')', ',', 'was', 'a', 'french', 'rabbi', 'and', '', 'who', '', 'at', 'the', 'end', 'of', 'the', '', 'and', 'in', 'the', 'first', 'half', 'of', 'the', 'thirteenth', 'century', '.', '', '', '']\n", "['', 'we', \"'ve\", 'tried', 'to', 'work', 'more', 'like', 'a', 'band', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'emperor', 'visited', 'ji', 'in', '2', '1', '5', 'bc', 'and', ',', 'to', 'protect', 'the', 'frontier', 'from', 'the', '', ',', 'had', 'the', 'qin', 'great', 'wall', 'built', 'north', 'of', 'ji', 'and', '', '', 'pass', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'transitional', 'forms', 'prior', 'to', 'fully', 'developed', 'terrestrial', '', 'such', 'as', '``', 'acanthostega', \"''\", ',', 'are', 'thought', 'to', 'have', 'captured', 'prey', 'in', 'the', 'water', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'following', 'is', 'a', 'list', 'of', 'the', '8', '3', 'known', 'endemic', 'bird', 'species', 'in', 'colombia', '(', 'about', '4', '%', 'of', 'colombian', 'species', ')', 'with', 'notes', 'about', 'their', 'general', 'distribution', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'made', 'available', 'for', 'digital', 'download', 'and', 'streaming', 'with', '``', 'feels', 'like', 'summer', \"''\", 'as', 'an', 'extended', 'play', 'under', 'the', 'title', '``', 'summer', 'pack', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'brother', ',', '', ',', 'also', 'followed', 'the', 'family', 'into', 'a', 'career', 'in', 'acting', 'with', 'his', 'debut', 'in', 'bbc', 'drama', 'series', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'weight', 'of', 'the', 'ball', ',', 'given', 'an', 'appropriate', 'working', 'surface', 'under', 'the', 'mouse', ',', 'provides', 'a', 'reliable', '', 'so', 'the', 'mouse', \"'s\", 'movement', 'is', 'transmitted', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', ',', 'who', 'has', 'a', 'double', 'role', 'in', 'the', 'film', 'was', 'nominated', 'for', 'a', '', 'award', 'for', 'best', 'actor', 'in', '1', '9', '8', '2', 'for', 'his', 'performance', 'in', 'this', 'film', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bernardo', 'vieira', 'de', '', '(', 'born', '2', '0', 'may', '1', '9', '9', '0', ')', ',', 'better', 'known', 'as', 'bernardo', ',', 'is', 'a', 'brazilian', 'professional', 'footballer', 'who', 'plays', 'as', 'an', 'attacking', 'midfielder', 'and', 'is', 'currently', 'a', 'free', 'agent', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'and', '``', 'the', 'globe', 'and', 'mail', \"''\", 'says', ',', '``', 'gowdy', \"'s\", 'is', 'a', '', '', ',', 'unique', 'in', 'its', 'talent', 'for', 'the', 'translation', 'of', '', 'to', 'second', 'nature', '...', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'in', '``', 'the', 'guardian', \"''\", 'states', 'that', '', 'and', '', '', 'considerable', 'praise', 'for', 'exposing', 'the', 'influence', 'of', 'a', 'small', 'group', 'of', 'cold', 'war', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'originally', 'named', '``', '', \"''\", ',', 'she', 'will', 'be', 'the', 'third', 'of', 'hal', \"'s\", '``', '', \"''\", 'class', 'in', 'the', 'fleet', 'and', 'is', 'scheduled', 'to', 'be', 'delivered', 'in', 'july', '2', '0', '2', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'the', 'children', 'of', '', \"''\", '(', '``', '', '', \"''\", ')', ',', 'an', 'opera', 'in', 'two', 'acts', 'by', '', '', ',', 'with', 'a', '', 'by', 'vladimir', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '1', '9', '8', '0', 's', '', 'resumed', 'occasional', 'work', 'on', 'zappa', 'projects', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '7', 'july', '2', '0', '1', '9', '', '', 'bruynseels', 'launched', 'her', 'candidacy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '5', '0', ',', 'pease', 'settled', 'in', '', ',', '', 'county', ',', 'wisconsin', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'sexy', ',', 'sexy', ',', 'sexy', \"''\", 'peaked', 'at', 'no', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'site', 'is', 'also', 'unusual', 'in', 'having', 'a', '', 'across', 'the', 'tracks', 'not', 'associated', 'with', 'the', 'station', 'but', 'at', 'a', 'level', 'crossing', ',', 'indicating', 'the', 'high', 'level', 'of', 'traffic', 'and', 'activity', 'at', 'the', 'town', 'conflicting', 'with', 'main', 'line', 'and', '', 'movements', '.', '', '', '', '', '', '', '', '']\n", "['', 'he', 'landed', 'at', '', \"'\", 'and', 'captured', 'it', 'forcing', 'octavius', 'to', '', 'all', 'the', 'island', 'into', 'the', 'army', 'to', 'combat', 'the', 'roman', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '``', '', '', \"''\", 'is', 'then', '', 'in', 'special', '', '', 'that', 'hold', '6', '2', '', '(', '2', '1', 'ounces', ')', ',', 'called', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'quest', 'won', 'the', 'tournament', 'by', 'winning', 'four', 'matches', 'at', 'the', 'event', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'held', 'on', 'september', '2', '7', ',', '2', '0', '0', '9', 'at', 'dover', 'international', 'speedway', ',', 'in', 'dover', ',', 'delaware', 'before', 'a', 'crowd', 'of', '1', '1', '0', ',', '0', '0', '0', 'people', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'village', 'in', 'the', 'administrative', 'district', 'of', 'gmina', '', ',', 'within', 'kraków', 'county', ',', 'lesser', 'poland', 'voivodeship', ',', 'in', 'southern', 'poland', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '', '', 'in', 'powers', 'and', 'costume', ',', 'and', 'buster', 'seemed', 'like', 'the', 'character', '', '(', 'or', 'maybe', 'a', 'cross', 'between', '', 'and', 'solomon', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '2', ',', 'the', 'film', '``', 'the', 'sessions', \"''\", 'was', 'considered', 'one', 'of', 'the', '', '', 'hits', 'of', 'that', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'amnesty', 'international', 'issued', 'a', 'revised', 'statement', 'saying', 'that', 'six', '', 'had', 'been', 'arrested', 'in', '', 'over', 'the', 'weekend', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'husband', 'was', 'formerly', 'with', 'the', 'royal', '', '', ',', 'and', 'was', 'awarded', 'a', 'military', 'cross', 'during', 'the', 'war', ';', 'at', 'the', 'time', 'of', 'his', 'marriage', 'he', 'was', 'labour', 'officer', 'at', '', 'works', ',', '', 'hill', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'traditional', '', 'are', '', ',', 'with', 'each', 'of', 'the', 'colors', 'represent', 'its', '', 'aspect', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'like', 'the', 'muslim', 'brotherhood', ',', 'it', 'works', 'for', 'the', '', 'of', 'the', 'whole', 'society', ',', 'through', 'its', 'grassroots', 'social', 'welfare', 'organisations', 'and', 'important', 'presence', 'in', 'universities', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '0', ',', '', 'married', '', 'singer', '', 'rivera', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'this', ',', 'he', 'resembles', 'his', 'more', '', 'american', 'contemporary', ',', 'edward', '', ':', 'their', 'pictures', \"'\", 'low', 'sunlight', ',', 'their', 'deep', 'and', 'often', '', 'shadows', ',', 'their', 'empty', '', 'and', '', '', 'creating', 'an', '', 'visual', 'poetry', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'specific', 'patient', 'programming', '', 'individual', 'and', 'group', 'therapy', ',', '', 'and', 'rehabilitation', 'therapies', 'and', 'the', 'management', 'of', 'social', 'and', 'financial', 'problems', 'by', 'developing', '', 'back', 'to', 'the', 'community', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'is', 'also', 'the', 'assembly', \"'s\", '', 'on', 'turkey', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'furniture', 'and', 'houses', 'were', 'dismantled', 'to', 'provide', 'fuel', 'for', 'heating', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', 'to', 'the', 'teeth', ',', 'other', 'structures', 'that', 'aid', '', 'are', 'the', '', ',', '', ',', '', ',', 'hard', '', ',', 'soft', '', ',', 'and', 'floor', 'of', 'the', 'mouth', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'regional', 'police', '(', '', ')', 'vice', 'detective', '', '', 'stated', 'in', '2', '0', '0', '7', 'that', 'npf', 'is', 'a', '', 'gang', ',', 'with', 'members', 'of', 'the', '2', '0', '0', '0', 's', 'being', 'the', 'relatives', 'of', '1', '9', '9', '0', 's', 'members', '.', '', '', '', '', '', '', '']\n", "['', 'including', 'militia', 'and', 'marine', 'forces', 'more', 'than', '5', '0', ',', '0', '0', '0', 'served', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'volunteer', '', 'also', 'includes', 'the', 'armed', 'forces', 'university', 'service', 'units', '(', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'project', 'has', 'worked', 'together', 'with', 'the', 'city', \"'s\", 'youth', 'welfare', 'office', 'for', 'over', '2', '5', 'years', 'to', 'offer', 'around', 'five', 'young', 'people', 'per', 'year', 'a', '', 'vocational', 'training', 'at', '', ',', 'in', 'connection', 'with', '', 'advice', 'and', '', 'support', '.', '', '', '', '', '', '', '', '']\n", "['', 'on', 'july', '2', '1', ',', '2', '0', '1', '6', ',', 'hafer', 'was', '', 'on', 'federal', 'charges', 'of', 'lying', 'about', 'taking', 'in', 'more', 'than', '$', '5', '0', '0', ',', '0', '0', '0', 'in', 'consulting', 'fees', 'from', 'a', 'company', 'that', 'did', 'business', 'with', 'her', 'office', '.', '', '', '', '', '', '']\n", "['', 'many', 'see', 'their', 'own', 'national', 'governments', 'as', 'their', 'only', 'hope', 'of', 'electoral', 'accountability', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'over', 'these', 'seven', 'years', 'before', 'the', 'two', '', 'came', 'to', 'mutual', 'agreement', 'many', 'events', 'occurred', 'that', 'expose', 'problems', 'in', 'the', 'relations', 'between', 'them', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'chiang', ',', 'whose', 'american', 'education', 'made', 'her', 'an', 'advocate', 'for', 'cooperation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'designed', 'and', 'manufactured', 'by', 'the', '', 'design', 'bureau', 'from', '1', '9', '4', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'extended', '', 'is', 'suitable', 'for', 'students', 'who', 'require', 'some', 'additional', 'language', 'development', 'and/or', 'revision', 'in', 'key', 'academic', 'areas', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'had', 'a', 'population', 'of', '3', ',', '9', '5', '1', 'at', 'the', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'next', 'year', ',', 'she', 'received', 'the', '2', '0', '0', '4', 'young', 'women', '', 'of', 'promise', 'award', 'of', 'the', 'indian', 'science', 'congress', 'association', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'other', 'two', 'remained', 'in', 'eastern', 'norway', ';', 'one', 'was', 'stationed', 'as', 'a', '', 'at', 'oslo', 'west', 'station', ',', 'the', 'other', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'prior', 'to', 'the', 'american', 'civil', 'war', ',', 'white', 'was', 'enrolled', 'as', 'a', 'member', 'of', 'the', 'romney', 'literary', 'society', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'winter', ',', 'activities', 'include', '', ',', '', ',', '', ',', 'and', '', 'rides', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'also', ',', 'a', 'new', 'school', 'called', 'the', 'staten', 'island', 'school', 'of', 'civic', 'leadership', '(', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', '2', '0', '0', '0', ',', '', 'was', 'a', '$', '5', '2', 'million', 'company', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'to', 'this', 'day', ',', '', 'currently', 'serves', 'as', 'the', 'official', 'italian', 'voice', 'actor', 'of', 'kevin', '', 'and', 'jim', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'earlier', ',', 'she', 'portrayed', '', '', 'in', '``', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'a', 'name', 'change', '(', 'kentucky', 'manufacturing', 'company', 'under', 'the', 'name', 'of', 'kentucky', 'trailers', ')', ',', '', '', 'the', 'mode', 'of', 'the', 'transportation', 'industry', 'by', 'building', 'large', 'trailers', 'for', 'the', 'road', 'rather', 'than', 'the', 'more', 'common', 'railway', 'system', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'places', 'express', 'singapore', \"'s\", 'cultural', 'diversity', 'and', 'became', 'popular', 'tourist', 'destinations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'named', '', ',', 'the', 'queen', 'continued', 'to', 'send', 'replacement', 'goats', 'to', 'the', 'unit', 'until', 'a', 'breeding', 'pair', 'found', 'in', '1', '9', '7', '2', ',', 'securing', 'the', 'succession', 'of', 'the', '', 'for', 'the', 'unit', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'unlike', 'his', 'uncle', ',', 'john', '', 'regarded', 'the', 'old', 'chapter', 'as', '', 'erected', ',', 'and', 'confirmed', 'by', 'the', 'holy', 'see', ',', 'and', 'became', 'its', 'secretary', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'construction', 'of', 'the', '', 'walls', 'of', 'pontevedra', 'began', 'in', 'the', '1', '3', 'th', 'century', 'with', 'the', 'aim', 'of', 'serving', 'as', 'a', 'defensive', 'fortification', 'of', 'the', 'city', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'out', 'on', 'the', 'road', ',', 'bruno', 'and', 'robert', 'encounter', 'several', 'people', 'in', 'various', 'states', 'of', '', ',', 'including', 'a', 'man', 'whose', 'wife', 'has', 'committed', 'suicide', 'by', 'driving', 'her', 'car', 'into', 'a', 'tree', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'notion', 'press', 'is', 'an', 'indian', '', 'company', 'based', 'in', 'chennai', ',', 'india', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', '', ',', 'his', 'regiment', 'covered', 'the', 'retreat', 'of', 'the', 'continental', 'army', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'changes', '', 'the', 'silhouette', 'of', 'the', 'ship', 'to', 'this', 'day', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '', ',', 'i-', '4', '0', 'serves', 'as', 'the', 'northern', 'terminus', 'of', 'the', 'indian', 'nation', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'i', 'asked', 'him', ',', '', 'do', 'you', 'want', '?', \"'\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'most', 'famous', 'work', 'today', 'is', 'the', '', 'for', 'guitar', 'and', 'orchestra', 'in', 'a', 'minor', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'goes', 'from', 'low', '', '(', '', ')', 'with', 'a', 'wide', '', 'to', 'the', 'long', ',', '', 'conical', 'forms', 'of', 'typical', 'top', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '', \"'s\", 'path', 'algorithm', ',', 'formula_', '7', 'is', 'calculated', 'by', '', 'up', 'the', 'contributions', 'of', 'formula_', '1', '0', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'el', '', 'was', 'named', 'after', 'the', 'town', '', 'was', 'born', 'in', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'scratch', '2', '.', '0', 'was', 'released', 'on', 'may', '9', ',', '2', '0', '1', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'february', '2', '0', '1', '3', ',', '', 'released', 'his', 'debut', 'novel', '``', 'riot', 'green', \"''\", ',', 'set', 'in', 'the', '', 'world', 'of', 'south-east', 'asian', 'art', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'the', 'song', 'began', 'to', 'catch', 'a', 'more', 'broad', 'following', 'with', 'performances', 'by', 'eve', 'lawson', 'on', 'local', 'and', 'nationwide', 'radio', 'and', 'even', 'an', 'appearance', 'on', '', '', \"'s\", '``', '', 'for', 'dollars', \"''\", 'television', 'program', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '9', ',', '', 'achieved', 'a', 'stage', '1', 'gold', 'rating', 'for', 'the', 'u.s.', 'green', 'building', 'council', \"'s\", '2', '0', '0', '9', '', '(', 'neighborhood', 'development', ')', 'pilot', 'and', 'received', 'the', 'california', 'governor', \"'s\", 'environmental', 'and', 'economic', 'leadership', 'award', '.', '', '', '', '', '', '', '', '']\n", "['', 'he', 'reads', 'through', 'the', 'data', 'from', 'the', 'service', 'droid', 'and', 'discovers', 'that', 'satt', '', 'disappeared', 'after', 'departing', 'on', 'an', 'expedition', 'to', 'a', 'set', 'of', 'alien', 'buildings', 'not', 'too', 'far', 'from', 'the', 'colony', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'unlike', 'the', 'r', '&', 'amp', ';', 'b', 'chart', ',', 'it', '', 'from', 'all', 'genres', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'present', 'facts', ',', 'the', 'accused', 'had', 'not', 'been', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'same', 'year', '(', '1', '8', '6', '9', ')', '', 'prepared', 'his', '``', '', \"''\", ',', 'an', '', '', '(', '', ',', '1', '8', '7', '0', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', ',', 'the', 'wind', 'orchid', ',', 'is', 'a', 'species', 'of', 'orchid', 'found', 'in', 'china', ',', 'korea', ',', 'and', 'japan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'avm', 'must', 'be', '', 'en', '', ',', 'for', 'partial', '', 'will', 'likely', 'cause', 'severe', 'hemorrhage', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'film', 'also', 'features', 'vladimir', '', 'as', '', ',', 'a', '', 'and', '', 'officer', 'in', '', \"'s\", 'army', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'kmart', 'had', 'originally', 'wanted', 'to', 'build', 'a', 'store', 'in', 'brighton', 'prior', 'to', 'acquiring', 'the', 'former', 'w.', 't.', 'grant', 'location', ',', 'but', 'did', 'not', 'do', 'so', 'at', 'the', 'time', 'due', 'to', 'concerns', 'over', 'the', 'area', \"'s\", 'economy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'surgery', 'can', 'result', 'in', 'an', 'immediate', ',', 'complete', 'removal', 'of', 'the', 'avm', ',', '', 'exist', 'depending', 'on', 'the', 'size', 'and', 'the', 'location', 'of', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '3', '2', ',', 'baptist', '', 'william', '', 'used', 'his', 'radio', 'program', 'to', '', 'the', 'values', 'of', 'social', 'credit', 'throughout', 'the', 'province', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'spark', '', 'were', 'located', 'at', 'the', 'peak', 'of', 'the', 'combustion', '', \"'\", '', ',', 'between', 'the', 'exhaust', 'ports', ';', '', 'heat', 'shields', 'protected', 'them', 'from', 'the', 'heat', 'of', 'the', 'exhaust', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', ',', 'also', 'romanized', 'as', '', '', ')', 'is', 'a', 'village', 'in', 'ahmadi', 'rural', 'district', ',', 'ahmadi', 'district', ',', '', 'county', ',', '', 'province', ',', 'iran', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'k', ',', 'or', 'k', ',', 'is', 'the', 'eleventh', 'letter', 'of', 'the', 'modern', 'english', 'alphabet', 'and', 'the', '', 'basic', 'latin', 'alphabet', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '7', '3', ',', 'xi', '', 'was', 'appointed', 'as', 'the', 'administrator', 'of', '', '', '(', '', ')', ',', 'in', 'present-day', 'eastern', 'sichuan', 'and', 'northern', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'alliance', 'with', '', 'gave', 'poland', '1', '5', ',', '0', '0', '0', 'allied', 'ukrainian', 'troops', 'at', 'the', 'beginning', 'of', 'the', 'campaign', 'that', '', 'to', '3', '5', ',', '0', '0', '0', 'by', '', 'and', 'soviet', '', 'during', 'the', 'war', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'was', 'a', 'fine', 'defensive', '', 'with', 'a', 'strong', 'throwing', 'arm', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'beginning', 'in', '1', '8', '9', '4', ',', 'the', 'company', 'added', 'an', 'aunt', '', 'paper', '', 'family', 'that', 'could', 'be', 'cut', 'out', 'from', 'the', '', 'box', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'having', 'minor', 'roles', 'in', '2', '0', '0', '2', 'tv', 'series', '``', '', \"''\", 'and', '``', 'monkey', 'typhoon', \"''\", ',', 'palm', 'was', 'the', 'main', 'studio', 'under', 'the', 'production', 'of', '``', '', '2', '8', '', \"''\", 'and', '``', '', \"''\", ',', 'both', 'in', '2', '0', '0', '4', '.', '', '', '']\n", "['', 'the', 'octopus', \"'s\", 'total', 'length', 'is', 'about', '3', '0', '0', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'alcohol', 'was', 'known', 'in', 'latin', 'as', '(', '``', 'water', 'of', 'life', \"''\", ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'was', 'a', 'severe', '', 'against', 'the', 'movement', 'in', '1', '9', '4', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'emergency', 'services', 'said', 'two', 'people', 'were', 'transported', 'to', '', 'hospital', 'in', 'bristol', 'while', 'seven', 'others', 'went', 'to', 'the', 'royal', 'united', 'hospital', '(', '', ')', 'in', 'bath', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'common', 'sense', 'media', 'gave', 'it', 'two', 'stars', 'out', 'of', 'five', 'and', 'called', 'it', '``', 'an', 'original', 'first-person', 'shooter', '', 'by', '', 'gameplay', \"''\", 'due', 'to', '``', '', ',', 'dated', 'graphics', 'and', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rangers', '6', ',', '7', ',', '8', ',', 'and', '9', 'were', 'the', 'so-called', 'block', '3', 'versions', 'of', 'the', 'ranger', 'spacecraft', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'a', 'species', 'of', 'colorful', 'sea', 'slug', ',', 'a', '', ',', 'a', 'marine', 'gastropod', 'mollusk', 'in', 'the', 'family', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'arrangement', 'endured', 'until', 'the', 'death', 'of', '', '', 'on', '2', '4', 'july', '1', '9', '2', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'swedish', 'dvd', ',', 'on', 'the', 'other', 'hand', ',', 'is', 'the', 'most', 'limited', 'in', 'features', ',', 'only', 'including', 'the', 'english', 'audio', 'and', 'swedish', 'subtitles', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'larva', 'of', 'the', 'beetle', 'feeds', 'on', 'the', 'upper', 'third', 'of', 'the', 'plant', ',', 'damaging', 'its', 'leaves', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'original', 'version', 'was', 'recorded', 'on', 'a', 'domestic', 'tape', '', ',', 'in', '', ',', 'in', 'an', 'abandoned', 'factory', ',', 'at', 'a', 'cost', 'of', '£', '2', '.', '5', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bradley', 'wrote', 'a', 'number', 'of', '', 'while', 'on', 'the', 'electoral', 'commission', ',', 'and', 'like', 'the', 'other', 'members', '', 'with', 'his', 'own', 'party', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'another', 'question', 'of', '', 'was', 'the', 'progress', 'party', \"'s\", 'policy', 'on', 'norwegian', 'membership', 'in', 'the', 'european', 'union', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'between', '5', 'and', '8', 'legs', 'of', 'males', 'contain', 'a', 'median', '', 'dorsal', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'band', \"'s\", 'sixth', 'studio', 'album', ',', '``', 'the', 'argument', \"''\", ',', 'was', 'released', 'in', '2', '0', '0', '1', 'along', 'with', 'the', '``', 'furniture', \"''\", 'ep', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'murder', 'caused', 'a', 'rebellion', 'among', 'the', '', 'who', '', 'francesco', 'in', 'favor', 'of', 'his', 'eleven', 'year', 'old', 'son', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', '', 'to', 'paris', 'where', 'he', 'is', 'reunited', 'with', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '4', '9', ',', 'he', 'began', '', 'french', 'films', 'in', 'partnership', 'with', 'arthur', '', ',', 'another', 'art', 'house', 'distribution', 'pioneer', ',', 'but', 'after', 'a', 'few', 'years', 'he', '', 'out', 'on', 'his', 'own', 'by', 'starting', '', 'pictures', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'calculus', 'removal', 'may', 'be', 'difficult', 'for', '', 'to', 'perform', 'and', 'provide', 'an', '', 'experience', 'for', 'patients', 'with', 'a', 'feeding', 'tube', ',', 'the', 'implications', 'of', 'calculus', 'in', 'the', '', 'of', '', 'pneumonia', 'make', 'it', 'clear', 'that', 'it', '', 'a', 'serious', 'health', 'risk', '.', '', '', '', '', '', '', '']\n", "['', 'all', 'of', 'these', 'airports', 'have', 'flights', 'to', 'tokyo', 'and', 'other', 'major', 'japanese', 'cities', 'such', 'as', '', ',', '', ',', '', ',', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'launched', 'on', 'december', '1', '2', ',', '1', '9', '9', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'made', '2', '0', '1', '5', 'the', 'most', 'difficult', 'season', 'in', 'formula', 'one', 'that', 'the', 'team', 'had', 'endured', 'in', '', 'years', ',', 'as', 'a', 'string', 'of', 'technical', 'problems', 'and', '', '', 'the', 'car', \"'s\", 'performance', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'majority', 'of', 'muslim', 'scholars', 'interpret', 'this', 'word', 'as', 'a', 'reference', 'to', 'an', 'illiterate', 'individual', ',', 'though', 'some', 'modern', 'scholars', 'instead', 'interpret', 'it', 'as', 'a', 'reference', 'to', 'those', 'who', 'belong', 'to', 'a', 'community', 'without', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'the', 'final', 'version', 'of', 'the', 'life', 'story', 'she', 'wants', 'us', 'to', 'understand', 'her', 'by', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'so', 'did', '', '', ',', 'giving', 'the', 'residence', 'its', 'name', '(', '``', '', \"''\", ')', ',', 'until', 'the', '', 'was', '', 'in', '1', '8', '0', '3', 'and', 'absorbed', 'into', 'the', 'electorate', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'tallon', 'had', 'dominated', 'the', 'scoring', 'late', 'in', 'the', 'day', ',', 'making', '2', '5', 'of', 'the', '3', '3', 'runs', 'added', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'system', 'has', 'also', 'made', 'it', 'possible', 'for', '2', ',', '0', '0', '0', '', 'stations', 'to', 'work', 'simultaneously', ',', 'while', 'the', 'number', 'was', 'just', 'about', '4', '8', '0', 'in', 'the', 'past', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '7', ',', 'after', 'a', 'divorce', 'with', 'his', 'second', 'wife', ',', '', ',', '', 'and', 'new', 'friend', '', '', 'decided', 'to', 'publish', '', 'of', '2', '0', 'th-century', 'artist', 'collaborations', 'with', 'the', '', '', '(', 'for', '``', '', 'must', 'stop', \"''\", ')', '.', '', '', '', '', '']\n", "['', 'in', 'conversations', 'with', 'trump', 'in', 'may', ',', 'he', 'said', 'he', 'would', 'not', 'require', 'the', 'use', 'of', 'face', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '2', '1', 'st', 'century', ',', 'the', 'company', 'opened', 'an', 'online', 'store', ',', '', ',', 'but', 'in', '2', '0', '0', '7', 'watford', '', 'into', 'administration', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', '', 'a', 'very', 'fine', 'needle', 'is', 'inserted', 'in', 'the', 'eye', 'in', 'the', 'cyst', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '7', ',', '', 'sang', 'in', 'a', 'recording', 'of', '', \"'s\", '``', '', '', '', \"''\", ',', 'conducted', 'by', '', '', ',', 'with', 'barbara', '', ',', 'michael', 'chance', ',', '', '', ',', 'peter', '', ',', 'the', '', '', 'and', 'the', 'amsterdam', 'baroque', 'orchestra', '.', '', '', '']\n", "['', 'it', 'was', 'soon', 'covered', 'by', 'british', 'r', '&', 'amp', ';', 'b', ',', 'beat', 'and', 'pop', 'band', '', 'mann', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'structure', 'functions', 'as', 'a', '', '', 'which', 'connects', 'the', '', 'film', 'school', 'on', 'the', 'corner', 'of', 'dock', 'street', 'and', '', 'street', 'to', 'the', 'cultural', '', 'adjacent', 'to', '', ',', 'as', 'well', 'as', 'the', 'rest', 'of', 'the', 'south', 'bank', '', 'through', 'which', 'it', 'runs', '.', '', '', '', '', '']\n", "['', 'this', 'chart', 'was', 'published', 'most', 'weeks', 'until', 'the', 'magazine', \"'s\", '', '1', '3', 'november', '2', '0', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'september', '2', '0', '1', '2', ',', 'as', 'one', 'of', 'the', '``', 's', '1', '0', '0', '0', 'plus', \"''\", 'projects', 'supported', 'by', '', 'ag', ',', 'a', 'successful', 'car', 'journey', 'of', 'over', '1', ',', '3', '6', '5', '.', '5', 'kilometres', 'on', '', 'took', 'place', 'without', '', '.', '', '', '', '']\n", "['', 'the', 'first', ',', '', 'a', '(', 'aka', '', ')', ',', 'was', 'discovered', 'in', 'may', '1', '9', '9', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'the', 'main', 'goal', 'is', 'to', 'transit', 'the', '', 'into', 'an', 'entirely', 'new', 'game', ',', 'the', 'team', 'also', 'intended', 'to', 'add', 'more', 'content', 'such', 'as', '', 'and', 'improved', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'm.', '', \"''\", 'uses', 'eight', 'different', 'types', 'of', '', ',', 'along', 'with', 'three', '', ',', 'to', 'break', 'down', 'the', 'oils', 'on', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', '', 'by', 'one', 'of', 'her', 'own', '', ',', '', ',', 'who', 'believed', 'she', 'had', 'grown', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'infected', 'come', 'to', 'the', 'house', 'and', 'start', 'to', 'attack', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'included', 'black', 'artists', 'from', 'all', 'walks', 'of', 'life', ',', 'including', 'many', 'young', 'people', 'from', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'is', 'a', 'full', 'professor', 'of', 'medicine', 'and', 'clinical', 'professor', 'of', 'psychology', 'at', 'the', 'university', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'germany', ',', 'the', '', 'university', 'offers', 'a', 'master', \"'s\", 'program', 'in', 'business', 'engineering', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'spangler', '', ',', 'but', 'feels', '', 'horror', 'when', 'he', 'looks', 'into', 'the', 'mirror', 'and', 'claims', 'to', 'see', 'some', 'duct', 'tape', 'in', 'the', 'mirror', \"'s\", 'corner', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'later', '', 'in', 'the', 'new', 'major', 'league', 'soccer', ',', 'and', 'was', 'selected', 'as', 'the', '', 'for', 'the', '1', '9', '9', '8', 'u.s.', 'open', 'cup', 'final', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'throughout', 'his', '', 'essay', ',', 'he', 'finds', '', 'between', 'the', 'russian', 'and', 'the', '', 'of', 'friedrich', 'nietzsche', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', '6', 'april', '1', '7', '0', '0', '', 'opened', 'the', 'existing', '', 'in', 'st.', 'nicholas', 'street', '(', 'now', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'moved', 'the', 'original', '1', '7', '4', '8', 'staircase', 'into', 'the', 'new', 'wing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'in', 'southwest', '', 'county', 'at', 'the', '', 'of', 'mississippi', '', '1', '8', 'and', '2', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'is', 'visible', 'in', 'the', 'photograph', 'in', 'the', 'external', 'link', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'were', 'considered', 'strong', 'medal', '', 'in', 'the', '2', '0', '0', '2', 'winter', 'olympics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '2', '3', ',', 'the', 'building', 'was', 'purchased', 'by', 'the', '', 'company', ',', 'a', 'manufacturer', 'of', 'soap', '', ',', 'for', '$', '3', '8', '4', ',', '0', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'general', '', 'grant', \"'s\", 'forces', 'broke', 'through', 'the', '', 'of', 'richmond', ',', 'virginia', ',', 'confederate', 'president', 'jefferson', 'davis', 'ordered', 'the', 'destruction', 'of', 'richmond', \"'s\", '', 'supplies', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'were', '7', '9', 'housing', 'units', 'at', 'an', 'average', 'density', 'of', '3', '.', '8', '', 'mi', '(', '1', '.', '5', '/km', '2', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '', 'is', 'the', 'only', '', 'duet', ',', 'aside', 'from', 'those', 'by', 'thomas', 'robinson', ',', 'published', 'in', 'england', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'species', 'from', 'brazil', 'have', 'been', '', 'to', 'other', 'species', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'then', 'purchased', 'a', 'fruit', 'stand', ',', 'which', 'he', 'expanded', 'into', 'a', 'supermarket', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'on', 'the', '', 'of', 'the', '', 'and', '', 'roads', ',', 'both', 'of', 'which', 'connect', 'the', 'road', 'of', '``', '', 'put', \"''\", 'and', 'the', 'highway', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'law', '', 'that', 'a', 'majority', 'of', 'the', 'rma', 'site', 'would', 'become', 'a', 'national', 'wildlife', 'refuge', 'under', 'the', 'jurisdiction', 'of', 'the', 'fish', 'and', 'wildlife', 'service', 'once', 'the', 'environmental', 'restoration', 'is', 'completed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'selected', 'third', 'in', 'the', '2', '0', '0', '8', 'nfl', 'draft', 'by', 'the', 'atlanta', 'falcons', ',', 'making', 'him', 'the', '', 'bc', 'player', 'in', 'nfl', 'draft', 'history', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '``', 'a', 'guide', 'to', 'the', 'literature', 'of', 'art', 'history', \"''\", 'by', '', ',', 'e.', '&', 'amp', ';', 'rainwater', ',', 'r.', 'publisher', ':', 'american', 'library', 'association', ',', 'chicago', ',', '1', '9', '8', '0', '(', '', '2', '3', '1', '5', ';', '', 'q', '2', '8', '1', '.', ')', '', '', '']\n", "['', '2', '9', '5', ')', 'in', '1', '9', '9', '0', 'before', 'retiring', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'further', 'notes', 'that', '``', 'for', 'historical', 'purposes', ',', 'it', \"'s\", 'not', 'worth', 'saying', 'much', 'about', 'him', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'if', 'the', 'result', 'of', 'any', 'of', 'these', 'tests', 'is', 'positive', ',', 'the', 'terminal', 'sets', 'the', 'appropriate', 'bit', 'in', 'the', 'terminal', 'verification', 'results', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'played', 'in', 'minor', 'league', 'baseball', 'for', 'the', 'florida', 'marlins', 'organization', 'from', '1', '9', '9', '6', 'through', '2', '0', '0', '0', ',', 'reaching', '', ',', 'when', 'a', 'shoulder', 'injury', 'ended', 'his', 'career', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', '', 'research', 'findings', ',', 'best', 'practices', 'concerns', ',', 'and', 'discussions', 'and', '', 'on', '', 'and', '', 'issues', 'in', 'the', 'areas', 'of', 'civil', 'and', 'mechanical', 'engineering', 'and', 'related', 'fields', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'in', 'the', 'operating', 'room', 'by', 'trained', 'professionals', 'is', 'recommended', 'over', '', 'in', 'the', 'case', 'of', 'complete', '', 'disruption', 'or', 'children', 'under', 'the', 'age', 'of', '1', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'us', '6', '6', 'continued', 'north', 'on', 'the', 'pasadena', 'freeway', 'before', 'also', 'being', 'decommissioned', 'in', '1', '9', '6', '4', ',', 'leading', 'to', 'the', 'harbor', 'and', 'pasadena', '', 'being', '', 'to', 'sr', '1', '1', ',', 'which', 'ran', 'from', '', 'street', 'in', 'san', 'pedro', 'to', 'colorado', 'boulevard', 'in', 'pasadena', '.', '', '', '']\n", "['', 'one', 'can', 'similarly', 'define', 'the', 'cartesian', 'product', 'of', '``', 'n', \"''\", 'sets', ',', 'also', 'known', 'as', 'an', '``', 'n', \"''\", '', 'cartesian', 'product', ',', 'which', 'can', 'be', 'represented', 'by', 'an', '``', 'n', \"''\", '', 'array', ',', 'where', 'each', 'element', 'is', 'an', '``', 'n', \"''\", '', '.', '', '', '', '']\n", "['', 'in', '1', '9', '9', '1', ',', 'she', 'performed', 'there', '', \"'s\", '``', 'st', 'matthew', 'passion', \"''\", 'in', 'the', 'last', 'concert', 'conducted', 'by', '', '', ',', 'together', 'with', '', '', ',', '', '', ',', '', '', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'variations', 'in', 'dialects', '', 'or', 'reflect', 'the', 'values', 'of', 'particular', 'identities', 'of', 'a', 'community', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"''\", 'radio', 'show', 'about', 'the', 'origins', 'of', 'the', 'song', '``', 'indian', 'reservation', ',', \"''\", 'he', 'fabricated', 'the', 'story', 'that', 'he', 'wrote', 'the', 'song', 'after', 'his', 'car', 'was', '', 'in', 'by', 'a', '', 'and', 'he', 'was', 'taken', 'in', 'by', 'a', 'small', 'group', 'of', '', 'indians', '.', '', '', '', '']\n", "['', 'the', 'building', ',', 'one', 'of', 'a', 'few', 'that', 'survive', 'in', 'wilton', 'that', 'were', 'adapted', 'in', 'this', 'way', ',', 'was', 'added', 'to', 'the', 'national', 'register', 'of', 'historic', 'places', 'in', '1', '9', '8', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'areas', 'with', 'high', '', 'volumes', 'or', '', 'sections', ',', 'the', 'desired', 'width', 'should', 'be', '7', 'feet', '(', '2', '.', '1', 'm', ')', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'monotypic', 'moth', 'genus', 'of', 'the', 'family', 'noctuidae', 'erected', 'by', 'george', '', 'in', '1', '9', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'course', 'of', 'the', '', 'of', 'witnesses', ',', 'the', 'illegal', '``', '', \"''\", 'agreement', 'which', 'existed', 'between', 'the', 'london', 'and', 'north', 'western', 'and', 'the', '', 'railway', 'was', 'exposed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'concern', 'was', 'that', 'if', 'north', 'korea', 'noticed', ',', 'they', 'would', 'think', 'the', 'transfer', 'of', 'data', 'was', 'an', '', 'by', 'the', 'u.s.', 'air', 'force', ',', 'and', 'threaten', 'physical', 'retaliation', 'for', 'the', '', ';', 'fortunately', 'it', 'turned', 'out', 'to', 'be', 'south', 'korean', 'data', ',', 'significantly', 'less', '', '.', '', '', '']\n", "['', 'he', 'was', '', 'from', 'playing', 'for', 'any', 'of', 'the', 'clubs', 'in', 'the', 'cuban', 'league', 'due', 'to', 'their', 'rule', 'of', 'not', 'allowing', 'any', 'professional', 'united', 'states', 'players', 'from', 'joining', 'the', 'league', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'october', ',', '', 'competed', 'at', 'the', '2', '0', '1', '1', 'world', 'artistic', 'gymnastics', 'championships', 'in', 'tokyo', ',', 'japan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'william', 'ross', '', '(', 'born', 'february', '8', ',', '1', '9', '7', '1', ')', 'is', 'an', 'american', 'musician', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'founded', 'in', '1', '9', '5', '7', 'by', 'professor', '', '', ',', 'la', '', '', 'occupies', 'a', '1', '9', 'th-century', 'carriage', 'house', 'on', 'historic', 'washington', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', '', 'sabha', 'constituency', ')', 'is', 'an', 'assembly', 'constituency', 'in', '', 'district', 'in', 'the', 'indian', 'state', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'japanese', 'religion', ',', 'an', '', '(', '', 'or', '', ',', '', 'form', 'of', ',', '``', '', '(', 'of', 'paper', ')', ',', 'card', ',', 'plate', \"''\", ')', 'is', 'a', '', 'made', 'out', 'of', 'various', 'materials', 'such', 'as', 'paper', ',', 'wood', ',', '', 'or', 'metal', '.', '', '', '', '', '']\n", "['', 'afterwards', ',', 'lisa', 'discovers', 'the', 'source', 'of', 'the', '', '-', 'a', 'native', 'american', 'burial', 'ground', 'hidden', 'in', 'the', 'basement', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'captain', '', ',', 'the', 'regimental', '', '3', ',', 'estimated', 'that', 'a', 'reinforced', 'battalion', 'of', 'about', '8', '0', '0', 'men', 'held', 'the', 'prepared', 'kpa', 'defensive', 'positions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'population', 'density', 'was', '6', '2', '0', 'people', 'per', 'square', 'mile', '(', '2', '3', '9', '/km', '2', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', 'born', '2', 'january', '1', '9', '8', '4', ')', 'is', 'a', '', 'footballer', 'who', 'currently', 'plays', 'as', 'a', 'midfielder', 'for', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'an', 'expert', '', 'at', 'the', '``', 'nordic', 'material', '', \"''\", 'conference', ',', 'at', 'the', 'norwegian', 'centre', 'for', 'design', 'and', 'architecture', ',', 'oslo', ',', 'norway', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'paintings', 'and', 'sculpture', 'have', 'been', 'featured', 'in', 'over', '7', '0', 'solo', 'exhibitions', 'in', 'the', 'united', 'states', ',', 'israel', 'and', 'singapore', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'former', 'editor', 'at', 'open', 'democracy', 'and', 'is', 'the', 'author', 'of', 'the', 'highly', 'praised', 'short', 'story', 'collection', '``', 'swimmer', 'among', 'the', 'stars', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '1', '9', '6', '0', 's', 'train', ',', 'which', 'used', 'steam', 'engines', ',', 'was', 'faster', 'than', 'contemporary', '', 'express', '``', '', \"''\", ',', 'which', 'takes', '4', 'hours', 'and', '2', '6', 'minutes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'movie', 'stars', 'sir', '', '', 'as', 'the', 'title', 'character', ',', 'a', 'rural', 'georgia', '', ',', 'noah', 'dearborn', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'his', 'death', 'without', 'issue', ',', 'the', 'estate', 'was', 'reunited', 'with', 'the', '', 'in', '1', '8', '8', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'time', 'and', 'again', ',', 'roman', 'writers', '', 'the', 'importance', 'of', 'soldiers', 'being', '', 'and', 'not', 'tied', 'to', 'the', '', 'train', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thus', ',', 'amateur', 'astronomers', 'have', 'a', 'useful', 'role', 'in', 'significant', 'discoveries', ',', 'as', 'well', 'as', 'a', 'clear', 'and', 'democratic', 'path', 'to', '', 'on', 'any', 'peer-reviewed', 'scientific', 'publications', 'that', 'result', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '6', ',', '', 'furniture', 'moved', 'its', 'headquarters', 'to', 'the', '2', '3', 'rd', 'floor', 'of', 'the', 'building', 'from', '', ',', 'long', 'island', 'after', '', 'bankruptcy', 'a', 'second', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'told', 'the', 'herald', '``', 'what', 'was', '', 'on', 'my', 'mind', 'was', '', 'the', 'song', 'for', 'the', 'writer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'family', 'then', 'moved', 'to', 'thailand', ',', 'where', 'they', 'stayed', 'for', 'six', 'months', 'before', '', 'again', 'to', 'melbourne', ',', 'australia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'my', 'own', 'way', 'home', 'is', 'the', 'third', 'album', 'from', 'spanish', 'singer', '', ',', 'released', 'on', '9', 'october', '2', '0', '0', '6', 'in', 'spain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'soon', 'afterwards', ',', 'they', 'received', 'volunteers', 'from', '', 'and', 'other', 'places', ',', 'which', 'enabled', 'the', 'formation', 'of', 'a', '3', 'rd', 'company', 'commanded', 'by', 'mario', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'and', '', 'were', 'suspended', 'from', 'the', 'ceiling', 'and', 'operated', 'with', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'won', 'the', '2', '0', '1', '8', 'uefa', 'european', 'under-', '1', '7', 'championship', 'with', 'the', 'netherlands', 'national', 'under-', '1', '7', 'football', 'team', ',', 'scoring', 'a', 'goal', 'in', 'the', 'group', 'game', 'against', 'germany', 'and', 'appearing', 'as', 'a', '', 'in', 'the', 'final', 'against', 'italy', '.', '', '', '', '', '', '', '']\n", "['', 'much', 'of', 'the', '', 'within', 'communities', 'to', 'become', 'a', 'fair', 'trade', 'town', 'is', '', 'by', 'grassroots', 'efforts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'end', 'of', '2', '0', '0', '9', ',', 'the', '', 'housing', 'committee', 'decided', 'to', '', 'actions', 'against', '', 'dog', 'keeping', 'in', 'the', '', 'estates', 'in', 'the', 'second', 'quarter', 'of', '2', '0', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '7', '1', 'the', 'institute', 'began', 'research', 'to', 'increase', 'profits', 'made', 'off', 'the', 'colonies', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '&', 'lt', ';', '', '', \"''\", 'the', 'slow', 'decline', 'of', 'the', 'jeff', 'davis', '', 'began', 'with', 'the', '1', '9', '5', '8', 'construction', 'of', 'the', 'i-', '9', '5', '', '', ',', '', 'it', 'approximately', '1', 'mile', 'to', 'the', 'east', '.', \"''\", '', '', '', '', '', '', '', '', '', '']\n", "['', 'further', 'reforms', 'were', 'made', 'in', '1', '9', '6', '5', ',', 'when', 'the', 'administrator', 'was', 'replaced', 'by', 'an', 'elected', 'council', 'president', ',', 'and', 'in', '1', '9', '6', '8', 'when', 'the', 'three', '', '', 'were', 'replaced', 'by', '3', 'further', 'elected', 'members', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'there', 'has', 'been', 'no', 'website', '', 'since', 'then', ',', 'and', 'nothing', 'has', 'been', 'heard', 'regarding', 'this', 'new', 'album', ',', '', 'due', 'to', 'kennedy', \"'s\", 'full-time', 'involvement', 'with', 'angels', '&', 'amp', ';', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'no', 'certain', 'information', 'as', 'to', 'which', 'forts', 'it', 'occupied', 'in', '', '.', \"''\", \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'troops', ',', 'among', 'the', 'best', 'in', 'spain', ',', 'garrisoned', '', 'islands', 'in', 'small', '', 'and', 'remained', 'in', 'the', 'dark', 'about', 'political', 'developments', 'in', 'spain', 'following', 'napoleon', \"'s\", 'invasion', 'and', 'occupation', 'of', 'spain', 'in', '1', '8', '0', '7', '(', 'see', '', 'war', ')', '.', '', '', '', '', '', '']\n", "['', 'the', '', 'national', 'organisation', 'for', 'scouts', 'and', 'guides', 'has', 'about', '1', '9', ',', '0', '0', '0', 'members', '(', '8', ',', '8', '9', '2', 'scouts', 'and', '9', ',', '9', '6', '5', 'guides', ')', 'as', 'of', '2', '0', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'thought', 'to', 'be', 'the', 'longest', 'serving', 'public', 'cemetery', 'in', 'western', 'australia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'station', 'opened', 'on', '1', 'january', '1', '9', '0', '9', 'when', 'the', '', 'to', '', 'opened', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '8', 'it', 'was', 'reported', 'that', 'hill', 'was', 'a', 'member', 'of', 'the', '', 'group', 'established', 'to', 'explore', '', 'the', 'commonwealth', ',', 'with', 'an', 'emphasis', 'on', 'the', 'rules', 'of', 'succession', 'for', 'the', 'title', 'of', 'head', 'of', 'the', 'commonwealth', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', ',', 'the', '', '', '(', '', ')', 'is', '', 'to', 'be', 'able', 'to', 'receive', 'a', '', 'egg', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'leaving', 'the', 'university', 'he', 'devoted', 'himself', 'to', '', 'studies', 'and', 'to', 'the', 'collection', 'of', 'manuscripts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '1', '9', '8', '0', 's', '``', 'mathematical', 'games', \"''\", 'began', 'to', 'appear', 'only', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', \"'s\", 'previous', 'owner', 'was', 'a', '', 'indian', 'reservation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '7', 'december', '1', '9', '4', '6', ',', 'for', 'the', 'first', 'time', 'flew', 'its', 'improved', 'experimental', 'variant', 'called', '', '3', 'with', 'a', 'fixed', '', 'landing', 'gear', '(', '', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'boat', 'is', 'fitted', 'with', 'a', 'british', 'perkins', 'engines', '4', '-', '1', '0', '8', '', 'engine', 'of', 'for', '', 'and', 'maneuvering', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'moran', 'now', 'has', '1', '0', 'additional', 'satellite', 'clinical', 'locations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'the', 'site', 'of', 'a', 'punt', 'that', 'connected', 'westport', 'to', 'the', 'south', 'bank', 'before', 'the', '``', 'black', 'bridge', \"''\", 'was', 'constructed', 'at', 'westport', 'itself', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'allows', 'weak', 'candidates', 'to', 'get', 'elected', '``', 'riding', 'on', 'the', '', \"''\", 'of', 'strong', 'candidates', 'on', 'their', 'slate', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'worked', 'as', 'a', 'teacher', 'from', '1', '9', '6', '5', 'to', '1', '9', '7', '2', 'and', 'editor', 'from', '1', '9', '7', '2', 'to', '1', '9', '8', '5', ',', 'among', 'others', 'for', 'the', 'magazine', '``', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '0', ',', 'they', 'won', 'it', 'under', 'the', '', 'of', '', '', ',', 'in', '2', '0', '0', '8', ',', 'they', 'won', 'it', 'under', '', '', \"'s\", 'leadership', ',', 'in', '2', '0', '1', '2', 'under', '', '', 'and', 'in', '2', '0', '1', '8', 'under', '', 'shaw', '.', '']\n", "['', '``', 'game', 'machine', \"''\", 'magazine', 'listed', 'it', 'as', 'the', 'thirteenth', '', '', 'video', 'game', 'of', '1', '9', '8', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'stage', 'of', 'construction', 'was', 'undertaken', 'as', 'part', 'of', 'the', '', '', 'project', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'in', '``', 'the', '', '', \"''\", 'of', 'robert', '', 'in', '1', '9', '6', '5', 'that', 'he', 'became', 'noticed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'that', 'time', ',', 'the', 'channel', 'had', 'developed', 'into', 'a', 'cultural', 'channel', 'dedicated', 'to', 'arts', ',', 'history', ',', 'design', ',', 'fashion', 'and', 'fiction', 'programming', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'type', 'of', 'confederation', 'consisting', 'of', 'the', 'four', 'kingdoms', ',', 'which', 'most', 'likely', 'emerged', 'in', 'the', '1', '4', 'th', 'century', ',', 'was', 'called', '', '', '', 'or', '``', 'four', 'mountains', 'of', 'maluku', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'pollack', 'was', 'raised', 'in', 'an', 'orphanage', 'in', '', 'without', 'any', 'connection', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', '', 'style', 'generated', 'music', 'that', 'was', '', 'american', 'and', 'unique', 'to', 'himself', 'as', 'a', 'boy', 'who', 'grew', 'up', 'in', 'rural', 'northern', 'michigan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', 'to', 'her', 'writing', 'career', ',', '', 'served', 'as', 'a', '', 'and', 'the', 'medical', 'director', 'of', '', '', ',', 'a', '', 'for', '', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'summer', 'of', '1', '9', '4', '7', '', 'moved', 'to', '', '', 'where', 'he', 'played', 'until', '1', '9', '5', '5', ',', 'making', 'a', 'total', 'of', '1', '2', '7', 'appearances', 'and', 'scoring', '5', '2', 'goals', 'in', 'all', 'competitions', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '6', '3', ',', 'crowley', 'built', 'a', 'new', 'ferry', 'and', 'named', 'it', 'the', '``', 'jason', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'river', '', 'runs', 'through', 'the', 'heart', 'of', 'the', 'town', '', 'it', 'in', 'two', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'hispanic', 'voter', 'project', 'at', 'johns', '', 'university', 'is', 'a', '', ',', 'non-profit', 'academic', 'research', 'effort', 'based', 'at', 'the', '', '', '', 'school', 'of', 'arts', 'and', 'sciences', 'in', 'washington', ',', 'dc', ',', 'that', '', 'the', 'hispanic', 'outreach', 'efforts', 'of', 'candidates', ',', 'political', 'parties', 'and', 'third', 'party', 'interest', 'groups', '.', '']\n", "['', 'the', 'groups', 'in', '``', '', \"''\", 'are', 'still', 'widely', 'used', 'for', 'data', 'transfer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'founder', 'peter', '', 'and', 'his', 'sister', '', 'had', 'opened', 'the', 'northampton', 'brewery', 'in', '1', '9', '8', '7', 'and', 'the', 'portsmouth', 'brewery', 'in', '1', '9', '9', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'aftermath', 'of', 'the', 'election', ',', 'the', 'government', '', 'or', 'shut', 'down', 'media', 'houses', ',', 'and', 'arrested', 'journalists', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'ancient', 'city', 'of', '', 'is', 'believed', 'to', 'have', 'been', 'the', 'predecessor', 'state', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thomas', 'dean', 'founded', 'the', 'firm', ',', 'probably', 'in', 'the', 'late', '1', '7', '9', '0', 's', ',', 'bringing', 'to', 'it', 'innovative', '', 'printing', 'processes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', '8', 'october', '2', '0', '1', '3', 'she', 'released', 'the', 'single', '``', 'maybe', 'i', 'like', 'it', \"''\", ',', 'the', 'song', 'peaked', 'to', 'number', '3', '7', 'on', 'the', 'danish', 'singles', 'chart', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'new', 'legal', 'system', 'will', '', 'on', 'individuals', '``', 'no', 'rights', 'but', 'only', 'duties', \"''\", 'and', 'that', '``', 'the', 'state', 'should', 'never', 'evaluate', 'individual', 'persons', 'as', 'such', ',', 'but', 'only', 'the', 'group', 'which', 'represents', 'these', 'persons', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'the', '', \"''\", 'was', 'a', 'peer', 'reviewed', 'online', 'literary', 'magazine', 'designed', 'to', 'support', 'new', 'writers', 'as', 'they', 'develop', 'their', 'careers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'born', 'in', 'the', 'township', 'of', 'king', ',', 'ontario', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'lived', 'for', 'eight', 'years', 'with', '', 'walter', ';', 'the', 'couple', 'were', 'planning', 'to', 'marry', 'at', 'the', 'time', 'of', 'his', 'death', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'defining', 'feature', 'is', 'that', 'it', 'uses', 'the', 'ages', 'of', 'the', 'samples', 'to', 'provide', 'time', 'information', 'for', 'the', 'analysis', ',', 'in', 'contrast', 'with', 'traditional', '', 'dating', \"'\", 'methods', 'that', 'require', 'age', 'constraints', 'to', 'be', 'applied', 'to', 'the', 'internal', 'nodes', 'of', 'the', '', 'tree', '.', '', '', '', '', '', '']\n", "['', 'david', 'robert', '', '(', 'born', '1', '9', '8', '9', ')', 'is', 'an', 'american', '', 'activist', 'who', 'worked', 'for', 'live', 'action', 'before', 'founding', 'the', 'irvine', ',', '', 'center', 'for', 'medical', 'progress', 'in', '2', '0', '1', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'secretariat', 'is', 'also', 'responsible', 'for', 'presenting', '', 'bills', 'to', 'the', '', 'and', 'for', 'conducting', 'certain', 'press', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'website', \"'s\", 'critical', '', 'reads', ',', '``', 'the', '', '', 'animated', '``', 'isle', 'of', 'dogs', \"''\", 'finds', '', 'anderson', 'at', 'his', '', 'best', 'while', 'telling', 'one', 'of', 'the', 'director', \"'s\", 'most', '', '', 'stories', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'effect', ',', 'the', 'sugar', 'bowl', 'is', 'a', '', 'to', 'law', 'enforcement', 'to', 'carefully', '', 'their', '', 'and', 'not', 'to', 'use', 'speculative', '', 'to', 'search', 'for', 'evidence', 'of', 'serious', 'crimes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'dust', '', 'that', 'was', 'previously', '', 'in', '2', '0', '0', '9', ',', 'there', 'was', 'information', 'found', 'about', 'two', 'years', 'later', 'showing', 'the', 'tracks', 'visible', 'from', 'the', 'previous', '', 'are', 'completely', 'different', 'from', 'the', 'old', 'ones', 'meaning', 'there', 'had', 'been', 'a', 'dust', 'storm', 'to', '', 'the', 'old', 'tracks', '.', '']\n", "['', 'since', 'then', 'and', 'under', 'the', '', 'of', 'newman', ',', 'mother', 'west', 'has', 'grown', 'from', 'a', 'small', 'label', 'and', 'recording', 'studio', 'to', 'a', '', 'organization', 'offering', 'music', '', ',', 'publicity', 'and', 'promotions', ',', '', 'distribution', ',', 'online', 'sales', 'and', 'state', 'of', 'the', 'art', 'recording', 'facilities', '.', '', '', '', '', '']\n", "['', 'between', '1', '8', '1', '1', 'to', '1', '8', '2', '7', 'ross', 'learned', 'how', 'to', 'conduct', 'negotiations', 'with', 'the', 'united', 'states', 'and', 'the', 'skills', 'required', 'to', 'run', 'a', 'national', 'government', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'their', 'twin', 'sons', ',', '', 'and', '', ',', 'were', 'born', '', 'in', '1', '9', '8', '4', 'at', 'the', '', 'hospital', 'in', 'singapore', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'freeman', 'married', '2', '4', '-year-old', '', '', '', 'on', '6', 'august', '1', '9', '8', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'where', 'formula_', '2', '8', 'formula_', '2', '9', 'and', 'formula_', '3', '0', 'formula_', '3', '1', 'are', 'pressure', 'and', 'density', 'of', 'standard', 'earth', 'atmosphere', 'at', 'sea', 'level', ',', 'formula_', '3', '2', 'and', 'formula_', '3', '3', 'are', '', 'mass', '(', '', ')', 'and', 'temperature', '(', 'k', ')', 'of', 'atmosphere', 'at', '', 'area', '.']\n", "['', '', '', 'is', 'widespread', ',', 'with', 'wheat', 'being', 'the', 'principal', 'crop', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', '2', '0', '0', '4', ':', '3', '2', '1', ')', 'identifies', 'a', 'total', 'of', 'about', '8', '1', 'continental', 'inscriptions', 'found', 'south', 'of', 'the', '``', 'north', 'germanic', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '9', '8', '3', 'to', '1', '9', '8', '6', ',', 'he', 'was', 'part', 'of', 'the', '', 'research', 'group', 'in', 'the', 'institut', 'für', '', 'at', 'johann', '', '', 'university', 'frankfurt', 'am', 'main', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'demon', 'owner', 'forces', 'her', 'into', 'a', 'collar', 'that', 'can', 'be', 'used', 'to', 'shock', 'her', 'when', 'she', 'does', \"n't\", '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'also', '', 'during', 'the', '', 'american', 'war', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'aware', 'that', 'his', 'racism', 'will', 'cause', 'him', 'to', '', 'her', ',', 'she', '', 'by', 'her', '', 'sister', ',', 'leaving', 'her', 'standing', 'alone', 'in', 'the', 'crowd', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'of', 'the', 'common', '', 'duct', 'with', '', 'can', 'sometimes', 'be', '', 'by', '', '', '', '(', '', ')', 'following', '', '', '', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'swedish', ',', 'the', 'difference', 'between', '', '1', 'and', '', '2', 'can', 'only', 'be', 'heard', 'in', 'words', 'of', 'two', 'or', 'more', '', ',', 'since', 'the', '', 'take', 'two', '', 'to', 'be', 'realised', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'excessive', 'or', 'intense', 'use', 'of', 'his', 'abilities', 'has', 'resulted', 'in', 'captain', 'atom', 'temporarily', 'losing', 'his', 'own', 'molecular', 'stability', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'it', 'has', 'possible', 'applications', 'in', 'the', 'pharmaceutical', 'industry', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'neighbours', \"''\", 'is', 'the', 'second', 'most', 'successful', 'having', 'won', '3', '1', 'logies', 'since', 'it', 'began', 'in', '1', '9', '8', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'became', 'patrons', 'for', 'the', 'village', ',', 'funding', 'the', '', 'of', 'the', 'church', 'and', 'the', 'construction', 'of', 'the', '', 'in', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'capital', '', 'is', '1', '1', '2', 'km', 'away', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'arriving', 'on', '1', '0', 'february', ',', 'she', 'took', 'on', 'her', 'first', '', '(', 'pacific', 'fleet', 'issue', 'load', 'list', ')', 'stock', ',', 'and', ',', 'in', 'march', ',', 'completed', 'final', 'contract', 'trials', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'regardless', ',', 'abd', 'allah', 'was', 'an', 'influential', 'sudanese', '', 'officer', ',', 'and', 'was', 'able', 'to', 'secure', 'latif', 'a', 'place', 'at', 'a', '', ',', 'and', 'also', 'later', 'at', 'the', 'gordon', 'memorial', 'college', ',', 'from', 'where', 'latif', 'went', 'on', 'to', 'graduate', 'from', 'the', '', 'military', 'school', '.', '', '', '', '', '']\n", "['', 'in', 'women', ',', 'this', 'event', 'occurs', 'when', 'the', '', '', '', 'and', 'release', 'the', 'secondary', '', '', 'cells', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'also', 'three', 'nature', 'preserves', ':', '', \"'s\", '', ',', '', 'branch', '', ',', 'and', '', 'cemetery', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'riot', 'green', \"''\", 'is', 'in', 'the', 'process', 'of', 'being', 'adapted', 'into', 'a', 'movie', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'two', 'variants', 'of', 'the', '', '7', '0', '0', 'were', 'built', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'originally', 'housed', 'in', 'the', 'hermitage', 'chapel', 'just', 'outside', 'the', 'village', ',', 'the', 'piece', ',', 'which', 'appears', 'to', 'date', 'from', 'the', 'sixteenth', 'century', ',', '', 'scenes', 'from', 'the', 'life', 'and', 'the', 'passion', 'of', 'christ', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'therefore', ',', 'the', 'governing', 'coalition', 'maintained', 'its', '', 'majority', 'in', 'a', '', 'lower', 'house', 'of', '4', '7', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'november', '2', '0', '0', '6', ',', 'the', 'senate', 'of', 'the', 'university', 'finally', 'decided', 'to', '', 'the', 'university', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'simple', 'life', 'of', 'noah', 'dearborn', ',', 'is', 'a', '1', '9', '9', '9', '', 'film', ',', 'first', 'broadcast', 'on', '9', 'may', '1', '9', '9', '9', 'on', 'cbs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'later', ',', '', 'follows', 'her', 'owner', ',', 'carrying', '', 'from', 'the', 'market', ',', 'until', 'a', 'vision', 'causes', 'her', 'to', 'fall', 'and', 'drop', 'everything', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'we', 'know', 'small', 'businesses', 'are', 'the', 'backbone', 'of', 'the', 'economy', 'and', 'together', 'we', 'can', 'work', 'towards', 'our', 'climate', 'action', 'goals', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'prototype', 'first', 'flew', 'on', '1', '9', 'september', '1', '9', '4', '9', 'and', 'made', 'the', 'first', 'deck', 'landing', 'by', 'a', '', 'aircraft', ',', 'on', 'on', '1', '9', 'june', '1', '9', '5', '0', ',', 'by', 'pilot', 'lieutenant', 'commander', 'g.', '', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'all', 'that', 'include', 'high', 'potential', 'occur', 'after', 'the', '4', '8', '-', '6', '8', '', 'transmembrane', 'region', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'school', 'was', 'established', 'in', '1', '9', '0', '1', 'and', 'is', 'the', 'oldest', 'modern', 'public', 'middle', 'school', 'in', 'tianjin', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'passenger', 'services', 'no', 'longer', 'pass', 'through', 'te', '', 'and', 'the', 'railway', 'mainly', '', 'coal', 'to', 'the', 'east', 'coast', 'port', 'of', 'lyttelton', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'façade', 'has', 'five', 'bays', 'with', 'a', '', 'over', 'the', 'three', 'central', 'bays', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '9', '4', '4', 'to', '1', '9', '5', '7', ',', 'it', 'was', 'a', 'part', 'of', 'the', '', 'district', 'of', '', 'oblast', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'barker', \"'s\", 'writing', 'style', 'was', ',', 'for', '``', 'the', 'times', \"''\", ',', '``', 'based', 'on', 'precise', '', 'and', 'perfect', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'website', 'of', 'the', 'same', 'name', 'has', 'been', 'online', 'since', 'about', '1', '9', '9', '9', ',', 'and', 'does', 'not', 'appear', 'to', 'have', 'any', 'connection', 'to', 'the', 'original', 'newspaper', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'lincolnshire', 'fire', 'and', 'rescue', 'are', 'the', 'first', 'fire', 'and', 'rescue', 'service', 'in', 'the', 'united', 'kingdom', 'to', 'operate', 'actual', '', '', \"'\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '6', ',', 'families', 'of', 'those', 'placed', 'at', 'the', 'receiving', 'home', 'for', 'children', '', 'over', 'the', 'poor', 'conditions', 'there', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'september', '8', ',', 'about', '8', '0', '%', 'of', 'the', 'results', 'had', 'been', 'counted', ',', 'and', 'these', 'continued', 'to', 'show', 'the', 'mpla', 'with', 'over', '8', '0', '%', 'of', 'the', 'vote', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '', 'spring', 'consists', 'of', 'an', 'outer', 'and', 'two', 'inner', 'arc', 'springs', 'with', 'different', '', 'characteristics', 'connected', 'in', 'series', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'spent', 'the', 'vast', 'majority', 'of', 'his', 'professional', 'career', 'in', 'portugal', ',', '', '', 'liga', 'totals', 'of', '1', '9', '0', 'matches', 'and', '4', '1', 'goals', 'over', 'seven', 'seasons', 'and', 'representing', 'in', 'the', 'competition', '', ',', 'sporting', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'the', 'withdrawal', 'had', 'very', '', 'effects', ',', 'as', 'it', 'meant', 'the', '', 'of', 'well', 'prepared', 'positions', ',', 'and', 'long', 'night', '', '(', 'for', 'safety', 'against', 'air', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '0', 'december', '2', '0', '2', '0', ',', 'around', 'two', 'weeks', 'before', 'the', 'last', 'planned', 'day', 'in', 'service', ',', 'a', 'van', 'crashed', 'in', 'one', 'of', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'san', 'francisco', '', 'broadcast', 'all', 'their', 'home', 'games', 'worldwide', 'via', 'twitter', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', '', 'also', 'earned', 'him', 'the', 'nickname', '``', '', '', \"''\", 'from', 'his', 'colleagues', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'month', 'later', ',', 'he', 'was', 'allowed', 'to', 'return', 'to', 'the', 'university', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'does', 'not', 'form', 'a', 'single', 'compact', 'unit', ',', 'but', 'is', '', 'with', 'numerous', 'mechanical', 'and', 'thermal', '', 'within', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'disc', 'contains', 'ten', 'songs', '(', 'eight', 'english', 'tracks', 'and', 'two', 'spanish', 'tracks', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', '1', '9', '9', '2', ',', 'carhartt', 'sold', 'more', 'than', 'two', 'million', '', 'per', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'pressure', 'in', 'the', '', 'is', 'also', 'negative', 'because', 'the', 'force', 'is', 'defined', 'as', 'formula_', '2', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rachel', '', ',', 'a', 'well-known', 'writer', 'in', 'the', 'entertainment', 'industry', ',', 'brought', 'her', 'friend', 'ms.', 'lavonne', 'in', 'on', 'the', 'project', 'and', '', 'fell', 'in', 'love', 'with', 'ms.', 'lavonne', \"'s\", 'song', ',', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'area', 'was', 'located', 'between', '', ',', '', ',', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'de', '', 'served', ',', 'along', 'with', '', 'da', '', ',', 'the', 'alignment', 'of', 'the', '', 'in', '', 'bay', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', 'born', 'november', '2', '3', ',', '1', '9', '9', '8', ')', ',', 'known', 'by', 'her', 'stage', 'name', 'just', 'sam', ',', 'is', 'a', 'singer-songwriter', 'from', 'harlem', ',', 'new', 'york', 'who', 'rose', 'to', 'fame', 'after', 'winning', 'the', '', 'season', 'of', 'the', 'singing', 'reality', 'show', '``', 'american', 'idol', \"''\", '.', '']\n", "['', 'on', 'the', 'same', 'day', 'when', 'a', 'landslide', 'struck', '', '', ',', 'a', 'suburb', 'of', 'mumbai', ',', 'the', '', 'played', 'a', 'crucial', 'role', 'in', '', 'lives', 'and', '', 'bodies', 'from', 'the', '', 'in', 'extremely', 'challenging', 'conditions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '8', 'to', '1', '5', 'cm', 'long', ',', '2', 'to', '5', 'cm', 'wide', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'august', ',', 'there', 'was', 'a', 'creditors', 'meeting', 'and', '', '', 'were', 'appointed', 'as', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'shown', 'that', '', '1', 'could', 'facilitate', 'rapid', 'cellular', '', 'of', 'various', 'peptides', ',', 'proteins', ',', 'and', 'even', 'full-length', '', 'with', 'high', 'efficiency', 'and', 'less', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'tickets', 'are', '', 'for', 'between', '', 'stations', ',', 'and', 'are', 'good', 'for', 'only', 'one', 'trip', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'third', 'plant', 'was', 'opened', 'in', '1', '9', '7', '2', 'in', '', '', ',', 'austria', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'spanish', 'company', '', 'space', 'born', 'in', '2', '0', '1', '1', 'with', 'the', 'objective', 'of', 'developing', 'low', 'cost', 'launch', 'vehicles', 'called', '', '1', 'and', '', '5', 'with', 'the', 'capacity', 'to', 'place', 'up', 'to', 'into', 'orbit', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'in', 'the', '', 'mode', ',', 'first', 'occurring', 'on', 'g', ',', 'with', 'a', '', 'accompaniment', 'in', 'the', 'piano', 'part', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'tennis', 'channel', 'is', 'the', 'exclusive', 'cable', '', 'of', 'the', 'french', 'open', ';', 'while', 'it', 'previously', '', 'portions', 'of', 'this', 'coverage', 'to', 'espn', ',', 'this', 'arrangement', 'ended', 'in', '2', '0', '1', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'mother', 'strongly', '', 'of', 'the', 'theft', 'and', 'refuses', 'the', 'money', 'dennis', 'gives', 'her', ',', 'but', 'her', 'father', 'was', 'more', 'positive', ',', 'with', 'the', '', '``', 'it', 'is', 'better', 'to', '', 'what', 'you', 'have', 'done', 'than', 'to', '', 'what', 'you', 'did', 'not', 'do', \"''\", '.', '', '', '', '', '']\n", "['', 'kingsley', 'began', 'as', 'a', '', 'for', '', 'pictures', 'in', '1', '9', '3', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'generations', ',', 'colonists', 'mistakenly', 'used', 'the', 'place', 'names', 'as', '', 'for', 'peoples', ',', 'thinking', 'they', 'referred', 'to', 'distinct', 'tribes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'the', 'purpose', 'of', 'wildlife', 'areas', 'is', 'to', 'preserve', 'habitats', 'that', 'are', 'critical', 'to', '', 'birds', 'and', 'other', 'wildlife', 'species', ',', 'particularly', 'those', 'that', 'are', 'at', 'risk', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', '', 'for', 'the', 'construction', 'of', 'a', 'lighthouse', 'on', 'pelee', 'island', 'and', 'later', 'served', 'as', 'lighthouse', 'keeper', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'creating', 'false', 'travel', 'records', ',', 'as', 'well', 'as', '', '', ',', 'are', 'third', 'degree', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '``', 'we', 'would', 'rather', 'have', 'a', 'large', 'number', 'of', 'individual', 'applications', 'so', 'that', 'there', 'will', 'be', 'more', 'supporters', 'of', 'the', 'club', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'another', 'describes', 'the', 'comprehensive', '', 'dictionary', 'compilation', 'and', 'publication', 'project', 'as', '``', 'unprecedented', 'and', '', 'in', '1', '9', 'th-century', 'china', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'state', 'constituency', 'was', 'created', 'in', 'the', '1', '9', '8', '4', '', 'and', 'was', '', 'to', 'return', 'a', 'single', 'member', 'to', 'the', '', 'state', 'legislative', 'assembly', 'under', 'the', 'first', 'past', 'the', 'post', 'voting', 'system', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'time', 'to', 'do', 'away', 'with', 'the', 'rule', 'of', 'the', 'jungle', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'russell', 'allan', '', 'is', 'an', 'american', 'professional', 'mixed', 'martial', 'artist', 'currently', 'competing', 'in', 'the', '', 'division', 'of', 'the', 'ultimate', 'fighting', 'championship', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'over', 'the', 'longer', 'term', ',', 'the', 'risk', 'to', 'the', '', 'of', 'capital', 'shares', 'should', 'be', '', 'by', 'the', 'usually', 'high', 'quality', 'of', 'the', 'underlying', '', 'shares', ',', 'typically', '', ',', 'in', 'the', 'basket', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'after', '', 'numerous', 'changes', 'in', 'organisation', 'and', 'personnel', ',', 'the', '4', '2', 'nd', '', 'division', ',', 'after', 'an', 'existence', 'of', 'just', 'less', 'than', 'two', 'years', ',', 'was', 'broken', 'up', ',', 'many', 'of', 'its', 'units', '', 'to', 'infantry', 'or', '', '.', '', '', '', '', '', '', '', '']\n", "['', 'appeals', 'by', 'public', 'figures', 'were', 'screened', 'at', 'football', 'matches', 'across', 'britain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'is', 'a', '', 'round', ',', 'but', 'it', 'determines', 'who', 'will', 'make', 'it', 'on', 'top', 'of', 'the', 'game', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', 'was', 'awarded', 'the', '``', 'croix', 'de', '', \"''\", 'with', 'palm', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '1', '', 'concentrations', 'are', 'elevated', 'in', 'subjects', 'with', 'alzheimer', \"'s\", 'disease', 'and', 'in', 'amyloid', 'precursor', 'protein', '', 'mice', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'the', 'chairman', 'of', 'the', 'connecticut', 'house', 'republican', 'caucus', 'since', '2', '0', '0', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'marines', ',', 'fighters', ',', 'bombers', 'and', '', ',', 'which', 'are', 'used', 'for', 'attacking', ',', 'heavy', '', 'which', 'are', 'used', 'in', 'conjunction', 'with', 'the', 'attacking', 'units', 'for', 'defence', ',', 'missiles', 'and', 'seals', ',', 'which', 'are', 'used', 'for', '', 'operations', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'charts', 'are', 'ranked', 'in', 'accordance', 'with', 'sales', ',', 'streams', ',', 'or', '', 'of', 'the', 'song', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'his', 'first', 'term', 'as', 'lord', 'chancellor', ',', '', 'oversaw', 'the', 'passage', 'of', 'the', 'courts', 'act', '1', '9', '7', '1', ',', 'which', 'fundamentally', 'reformed', 'the', 'english', 'justice', 'by', '', 'the', 'ancient', '', 'and', 'quarter', 'sessions', ',', 'which', 'were', 'replaced', 'by', 'permanent', 'crown', 'courts', '.', '', '', '', '', '', '']\n", "['', 'an', 'ira', '', 'in', 'the', '', 'reported', 'to', 'roger', '', 'that', 'many', 'of', 'his', 'fellow', '', 'supported', 'ó', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'resulted', 'in', 'the', '', 'of', 'recording', 'for', 'd', '1', '2', \"'s\", 'third', 'album', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'novel', ',', 'sophie', 'finds', 'a', 'letter', 'that', '', '', ',', 'a', '', 'and', 'close', 'friend', 'of', 'helen', \"'s\", ',', 'had', 'written', 'to', 'her', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'end', 'of', '1', '9', '3', '3', ',', 'wood', 'began', 'work', 'on', 'his', 'first', 'film', ',', 'with', 'a', 'supporting', 'role', 'in', 'david', 'butler', \"'s\", 'comedy', ',', '``', 'bottom', \"'s\", 'up', \"''\", ',', 'starring', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'present', 'building', 'is', 'the', 'fifth', 'cathedral', ',', 'successor', 'to', 'four', 'previous', 'buildings', 'that', 'fell', 'victim', 'to', 'various', 'physical', 'disasters', ':', 'two', '', ',', 'a', 'fire', ',', 'and', 'damage', 'from', 'the', '', 'landslide', 'of', '1', '9', '5', '5', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'intake', 'and', 'exhaust', 'valves', 'were', 'located', 'at', 'the', 'top', 'of', 'each', 'combustion', 'chamber', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'essential', 'threat', 'to', 'the', 'existence', 'of', '', \"'s\", '', 'butterfly', '', 'as', 'a', 'result', 'of', 'the', 'destruction', 'of', 'mangrove', 'habitats', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'empty', 'streets', \"''\", 'was', 'released', 'in', 'september', ',', '2', '0', '0', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'received', 'his', 'earliest', 'instructions', 'from', 'his', 'father', ',', 'himself', 'an', '', ';', 'but', ',', 'to', 'obtain', 'more', 'advanced', 'training', ',', 'he', 'was', 'placed', 'as', 'a', '', 'under', 'the', 'celebrated', 'giovanni', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'population', 'was', '1', '2', '9', ',', '1', '5', '7', 'in', '2', '0', '1', '7', ',', 'of', 'which', '4', '0', ',', '2', '1', '9', 'in', '', 'proper', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'possibly', 'indicates', 'a', '', 'in', 'the', 'see', 'of', '', 'at', 'that', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '``', '', \"''\", 'or', 'a', '``', '', \"''\", 'is', 'a', 'formal', 'evening', 'suit', 'from', 'india', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'racial', '', 'is', 'an', 'element', 'in', 'some', 'of', 'the', 'murders', 'of', 'white', 'farmers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'virtual', 'channel', '4', '6', '(', '', 'digital', 'channel', '2', '1', ')', ',', 'is', 'a', 'dual', '', 'television', 'station', 'licensed', 'to', '', 'falls', ',', 'south', '', ',', 'united', 'states', ',', 'serving', 'eastern', 'south', '', 'and', 'southwestern', 'minnesota', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'overall', ',', 'the', '', 'has', 'been', 'found', 'to', 'be', 'an', 'effective', '', 'of', 'behavior', ',', 'and', 'is', 'generally', 'superior', 'to', '', 'measures', 'when', 'dealing', 'with', 'topics', 'of', 'discrimination', 'and', '', ',', 'especially', 'when', '', 'patterns', 'of', '', '', '(', 'e.g', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'suicide', 'has', 'been', '', 'since', '5', 'may', '2', '0', '1', '9', ',', 'with', 'the', 'passing', 'of', 'the', 'criminal', 'law', 'reform', 'act', ',', 'which', '', 'section', '3', '0', '9', 'of', 'the', 'singapore', '', 'code', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'have', 'been', 'police', 'stations', 'in', 'the', 'town', 'since', '1', '8', '5', '7', ',', 'when', 'the', 'first', 'police', 'station', 'was', 'rented', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'river', '(', ')', 'is', 'a', 'river', 'located', 'in', 'the', '', 'department', 'of', 'uruguay', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', '', 'the', '2', '0', '0', '3', ',', '2', '0', '0', '4', 'and', '2', '0', '0', '8', 'eight', 'and', 'saw', 'king', \"'s\", 'cup', 'victories', 'in', '2', '0', '0', '4', 'and', '2', '0', '0', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'shows', 'after', 'that', 'date', 'included', '``', 'man', 'of', 'la', '', \"''\", ',', '``', 'beauty', 'and', 'the', 'beast', \"''\", ',', '``', '', 'of', 'the', 'opera', \"''\", ',', '``', '', '', '!', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'panchari', 'melam', ',', 'in', 'its', 'grand', 'classical', 'form', ',', 'is', 'staged', 'during', 'temple', 'festivals', 'in', 'and', 'around', '', 'and', '', 'districts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '1', '8', '7', '2', 'shepherd', \"'s\", 'political', 'enemies', 'gained', 'power', 'and', 'accused', 'him', 'and', 'his', 'supporters', ',', 'of', 'corruption', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'first', 'novel', ',', '``', 'who', 'will', 'love', '', '', '?', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'traditional', 'cultures', 'of', 'the', '', 'and', 'the', '', ',', 'rat', 'was', 'an', 'everyday', 'food', 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '8', '9', 'and', '1', '8', '9', '3', ',', 'dr.', '', 'smith', 'made', 'discoveries', 'which', '', 'cattle', '', 'as', 'the', 'necessary', '', 'host', 'of', 'the', '', 'agent', 'of', 'texas', 'cattle', 'fever', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'owned', 'by', 'john', '', 'jr.', 'and', 'his', 'wife', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'module', '', 'a', '', 'and', 'a', 'prefix', 'and', 'imports', 'the', 'type', 'library', 'module', 'codice_', '2', 'before', 'defining', 'the', 'type', 'codice_', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '2', '0', '1', '8', '', 'season', ',', '', 'broadcasts', 'on', 'espn', 'attracted', 'an', 'average', 'of', '1', '6', '3', ',', '0', '0', '0', 'u.s.', 'viewers', 'per', 'game', ',', 'which', 'accounted', 'for', 'about', '', 'of', 'the', 'total', 'north', 'american', 'television', 'audience', '.', '', '', '', '', '', '', '', '']\n", "['', 'they', 'sang', 'in', 'the', '', 'choir', 'in', 'london', 'from', 'about', '1', '9', '4', '2', 'and', 'were', 'keen', 'musicians', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'retirement', 'on', '3', '1', '.', '1', '2', '.', '2', '0', '0', '9', ',', 'he', 'still', 'continues', 'as', 'the', 'head', 'of', '', 'programs', 'and', 'research', ',', 'at', 'amrita', 'institute', 'of', 'medical', 'sciences', 'and', 'research', ',', 'kochi', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '', ',', 'the', 'term', '``', '', \"''\", 'refers', 'to', 'beta', 'males', 'who', 'give', 'financial', '', 'to', 'women', 'in', 'an', 'attempt', 'to', '', 'their', 'romantic', 'or', 'sexual', 'interest', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '(', 'sign', ')', 'for', 'the', '', '', '', 'was', 'gifted', 'to', '', 'by', 'kishaba', 'upon', 'his', 'passing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', 'weekly', \"''\", 'gave', 'it', 'a', 'score', 'of', '7', '1', 'out', 'of', '1', '0', '0', ',', 'saying', ',', '``', 'an', '', 'but', 'great', 'take', 'on', 'first-person', 'views', 'makes', 'this', 'a', 'strong', '', 'but', '', 'purchase', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'despite', 'the', 'loss', 'of', 'massmutual', \"'s\", 'subsidiary', '', \"'\", 'new', 'york', 'offices', 'on', 'september', '1', '1', ',', '2', '0', '0', '1', ',', 'the', 'subsidiary', 'recovered', 'well', ',', '', 'strong', 'results', 'along', 'with', 'its', 'parent', 'company', 'for', 'the', 'year', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'said', 'that', 'there', 'was', 'no', 'evidence', 'that', 'the', 'group', ',', 'or', 'any', 'of', 'its', 'related', 'organizations', ',', '', 'any', 'of', 'the', '$', '4', '0', 'million', 'in', 'federal', 'money', 'that', 'they', 'had', 'received', 'in', 'recent', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '8', ',', '', 'was', 'posthumously', 'inducted', 'into', 'the', 'military', 'intelligence', 'hall', 'of', 'fame', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'over', 'two', 'years', 'in', 'the', 'making', ',', 'old', 'chicago', 'was', 'opened', 'to', 'the', 'public', 'on', 'june', '1', '7', ',', '1', '9', '7', '5', ',', 'in', 'a', 'grand', 'opening', 'party', 'that', 'attracted', 'over', '1', '0', ',', '0', '0', '0', 'invited', 'guests', ',', 'causing', 'massive', 'traffic', '', '.', '', '', '', '']\n", "['', 'the', '', 'of', 'permutations', '', 'with', 'two', 'permutations', ',', 'one', 'of', 'which', 'is', 'a', 'simple', '', 'shift', 'of', 'the', 'other', ',', 'is', 'known', 'as', 'the', 'reduced', '', 'des', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'through', 'fun', 'and', 'interactive', '', 'activities', 'that', 'teach', 'science', ',', 'engineering', 'and', 'math', 'concepts', ',', 'energy', '4', 'me', 'encourages', 'young', 'students', 'to', 'pursue', 'engineering', 'as', 'a', 'career', 'field', ',', '', 'the', 'future', '', 'in', 'the', 'oil', 'and', 'natural', 'gas', 'industry', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'posts', 'were', 'almost', '', 'made', 'of', 'wood', 'and', 'roughly', 'in', 'diameter', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'february', '2', '0', '1', '8', ',', 'during', 'snh', '4', '8', \"'s\", 'fourth', 'request', 'time', ',', 'lin', 'was', 'transferred', 'to', 'team', '', 'as', 'part', 'of', 'the', 'snh', '4', '8', 'team', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '9', ',', '3', '0', ',', '0', '0', '0', 'surgeries', 'were', 'performed', 'at', 'the', 'hospital', 'and', '8', '4', ',', '0', '0', '0', '', 'took', 'place', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'office', 'also', '', 'matters', 'of', 'human', 'resource', 'and', 'immigration', 'related', 'to', 'the', 'university', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'several', 'battles', 'of', 'american', 'revolution', 'took', 'place', 'in', 'the', 'region', 'including', 'those', 'at', 'connecticut', 'farms', ',', 'bound', '', ',', 'and', 'paulus', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'home', 'of', 'the', 'extended', 'family', 'of', 'kentucky', 'sports', 'radio', 'founder', 'matt', 'jones', \"'s\", 'girlfriend', ',', 'rachel', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'inspired', 'the', 'naming', 'of', 'towns', ',', 'hotels', ',', '', ',', 'and', 'a', '', 'brand', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'grade', '4', 'and', '5', 'avms', 'are', 'not', 'usually', '', 'treated', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'senior', 'league', 'cup', 'is', 'the', 'most', 'important', 'provincial', 'cricket', '', 'cup', 'of', 'the', '', 'jurisdiction', 'in', 'ireland', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', ')', 'is', 'a', 'rural', 'locality', '(', 'a', 'selo', ')', 'and', 'the', 'administrative', 'center', 'of', '', 'selsoviet', 'of', '', 'district', ',', '', 'oblast', ',', 'russia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', '', 'of', 'the', 'german', 'authorities', ',', 'the', '', '', 'those', '', 'they', 'could', 'find', ',', 'six', 'in', 'number', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'median', 'age', 'was', '3', '1', '.', '2', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'neil', '', ',', 'who', 'was', 'the', 'drummer', 'of', 'rush', ',', 'was', 'actually', 'the', 'person', 'who', 'voiced', '``', 'subdivisions', \"''\", 'in', 'the', 'chorus', 'of', 'the', 'song', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'it', ',', '', 'hears', 'the', 'story', 'of', 'how', 'the', 'tiger', 'got', 'his', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'parents', 'were', '', '', 'hutcheson', 'and', 'joseph', 'hutcheson', ',', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'would', 'have', 'allowed', 'him', 'to', 'return', 'west', 'in', 'his', 'old', 'age', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '', 'of', 'james', 'madison', 'is', 'a', 'list', 'of', 'published', 'works', 'about', 'james', 'madison', ',', '4', 'th', 'president', 'of', 'the', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'defender', ',', 'he', 'received', 'a', '1', '9', '9', '8', '', 'rising', 'star', 'nomination', 'in', 'his', 'sixth', 'league', 'game', ',', 'against', '', 'at', 'the', '', ',', 'where', 'he', 'had', '2', '2', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'located', 'in', 'roesbrugge', 'from', '1', '2', '3', '9', 'to', 'the', 'late', '1', '6', 'th', 'century', ',', 'the', 'community', 'then', 'moved', 'into', '', ',', 'west', 'flanders', ',', 'belgium', ',', 'where', 'it', 'exists', 'today', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'in', '2', '0', '1', '5', ',', 'the', 'franchise', 'was', 'lost', 'from', '', 'of', 'south', 'sudan', 'for', 'failing', 'to', 'send', 'a', 'representative', 'in', '2', '0', '1', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'forming', '', 'up', 'to', 'deep', ',', 'this', 'section', 'is', 'often', 'called', 'the', '``', 'grand', 'canyon', 'of', 'the', 'east', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'written', 'and', 'produced', 'by', 'gambino', 'and', '', '', ',', 'the', 'song', 'was', 'released', 'by', '', 'and', 'rca', 'records', 'on', 'july', '1', '1', ',', '2', '0', '1', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'before', 'publicly', 'revealing', 'information', 'of', 'the', 'band', \"'s\", 'new', 'lineup', ',', 'aro', 'only', 'stated', 'there', 'was', 'good', 'news', 'coming', 'from', 'the', 'band', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'the', '', 'were', 'banned', ',', 'they', 'complained', 'of', 'racism', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'other', '', 'abandoned', 'ship', ':', 'three', '', '', 'on', 'a', '', ',', 'and', 'the', 'rest', 'in', 'the', 'port', 'lifeboat', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'the', 'current', 'financial', 'year', '2', '0', '1', '2', '-', '1', '3', ',', 'as', 'on', '3', '0', 'september', '2', '0', '1', '2', ',', 'the', 'total', '', 'from', '', 'stand', 'at', '1', '6', ',', '3', '0', '6', '', ',', 'ranking', 'it', 'the', 'third', 'among', '', 'in', 'the', 'country', \"''\", '.', '']\n", "['', 'according', 'to', 'the', 'regulations', ',', 'the', 'selection', 'of', 'the', 'candidates', 'participating', 'for', 'a', 'particular', 'country', 'are', 'chosen', 'through', 'a', 'selection', 'process', 'which', 'should', 'be', 'organized', 'or', 'be', 'under', 'the', '', 'of', 'a', 'national', '', 'organization', 'member', 'of', 'the', '', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'others', 'have', 'a', 'more', 'general', 'concept', 'of', 'something', 'within', 'each', 'person', 'that', 'encourages', 'the', 'good', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'primary', 'ferry', 'within', 'the', 'town', 'of', '', 'is', 'the', '', 'jefferson', 'ferry', ',', 'which', 'takes', 'vehicles', 'and', 'passengers', 'across', 'the', 'long', 'island', 'sound', 'to', 'and', 'from', 'port', 'jefferson', 'to', '', ',', 'connecticut', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'to', '', 'the', 'common', 'people', 'he', 'planned', 'to', 'institute', 'political', 'and', 'economic', 'reforms', 'to', 'share', 'the', 'nation', \"'s\", 'wealth', 'more', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'ones', 'are', 'for', '``', '', ',', '', ',', '', ',', '', ',', 'asian', '', ',', '', ',', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hyde', 'park', 'in', 'particular', 'is', 'popular', 'for', 'sports', 'and', 'sometimes', 'hosts', 'open-air', 'concerts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '2', '6', '.', '7', '%', 'of', 'all', 'households', 'were', 'made', 'up', 'of', 'individuals', ',', 'and', '1', '3', '.', '6', '%', 'had', 'someone', 'living', 'alone', 'who', 'was', '6', '5', 'years', 'of', 'age', 'or', 'older', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'cylinder', ',', 'steam', 'chest', ',', '', 'guide', ',', 'and', 'the', 'boxes', 'for', 'the', '', 'bearings', 'were', 'all', 'cast', 'in', 'a', 'single', 'piece', 'to', '', 'mechanical', '', 'and', 'perfect', 'alignment', 'of', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'west', 'of', 'this', 'line', ',', 'the', '', 'is', 'almost', 'exclusively', 'characterised', 'by', 'limestone', ',', 'whilst', 'east', 'of', 'the', 'line', ',', 'stretch', '', '', 'sandstone', 'hills', ',', 'dissected', 'by', 'deep', 'valleys', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'grass', 'point', 'state', 'park', 'is', 'a', 'state', 'park', 'located', 'in', 'the', 'town', 'of', 'orleans', 'in', 'jefferson', 'county', ',', 'new', 'york', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '4', ',', 'india', '', 'about', 'of', 'natural', 'gas', ',', 'the', 'first', 'year', 'in', 'which', 'the', 'country', 'showed', 'net', 'natural', 'gas', 'imports', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'images', 'can', 'be', 'created', 'in', 'a', 'computer', 'using', 'the', 'techniques', 'of', 'animated', '', 'and', 'model', 'animation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '1', '9', '9', '0', 's', '', 'had', 'around', '2', '0', '0', '0', 'employees', '(', '1', '9', '9', '7', ')', 'and', 'produced', 'up', 'to', '9', '0', '0', '0', 'units', 'a', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'would', 'be', 'expressed', 'as', '``', '2', '``', 'in', 'a', 'lens', 'system', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'decision', 'making', 'during', 'drug', 'development', 'is', 'essential', 'to', 'avoid', 'costly', 'failures', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'temple', 'is', 'the', 'location', 'of', 'a', '', 'buddha', 'sculpture', ',', 'created', 'in', '1', '3', '2', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'between', '1', '9', '6', '2', 'and', '1', '9', '6', '6', ',', 'he', 'worked', 'as', 'a', 'minister', ',', 'visiting', '', ',', 'and', 'school', 'administrator', 'in', '', '(', 'today', '', ')', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'to', 'reverse', '', 'in', 'shape', ',', '', 'green', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'international', 'business', '', 'over', '6', '0', '%', 'of', 'bermuda', \"'s\", 'economic', 'output', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'the', 'u.s.', 'presence', 'remained', '', 'for', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'known', 'elements', 'most', '', 'to', '', '', 'are', 'the', '', '', '', 'and', '', 'with', 'atomic', 'numbers', 'from', '1', '0', '0', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'halfway', 'through', 'that', 'period', 'his', 'fleet', 'of', 'ships', 'was', 'capable', 'of', 'transporting', 'between', '8', '0', '0', 'and', '1', '5', '0', '0', 'tons', 'of', 'freight', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'on', 'the', 'strategically', 'important', '', 'highway', 'and', 'a', 'crucial', 'road', 'link', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', '1', '9', '7', '0', 's', 'and', '1', '9', '8', '0', 's', 'many', '', 'residents', 'began', 'to', 'restore', 'historic', '', 'south', 'of', 'main', 'street', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'may', 'be', 'restrictions', 'on', 'cash', 'withdrawals', ',', 'even', 'at', 'a', 'branch', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'established', 'a', 'nationally', 'recognized', '', 'plant', 'garden', 'at', 'the', 'university', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'september', '1', '7', ',', '1', '9', '8', '0', ',', 'thompson', 'was', 'nominated', 'by', 'president', 'jimmy', 'carter', 'to', 'a', 'seat', 'on', 'the', 'united', 'states', 'district', 'court', 'for', 'the', 'middle', 'district', 'of', 'alabama', 'vacated', 'by', 'judge', 'frank', '', 'johnson', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'his', 'wife', '(', '', '', ')', ',', 'he', 'demonstrated', 'that', '', '', '', 'were', 'responsible', 'for', 'most', 'of', 'the', '', 'used', 'in', 'the', 'development', 'of', 'classical', 'genetics', '(', '', 'and', '', ',', '1', '9', '8', '2', ')', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'han', 'guang', 'sent', 'his', '', 'zang', 'tu', 'to', 'help', 'rebel', 'leader', 'xiang', 'yu', ',', 'who', 'succeeded', 'in', 'capturing', 'the', 'qin', 'capital', 'at', '', 'in', '2', '0', '7', 'bc', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '1', '9', '1', '5', 'bridge', 'of', 'the', '', ',', 'currently', 'under', 'construction', 'in', 'turkey', ',', 'is', 'expected', 'to', '', 'it', 'with', 'a', '', 'of', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'style', 'was', 'greatly', 'influenced', 'by', 'the', 'music', 'he', 'played', ',', 'and', 'showed', '', 'to', 'musical', '', 'and', 'notes', 'as', 'well', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'technical', 'support', 'is', 'provided', 'by', 'the', 'east', 'asian', 'observatory', ',', 'the', 'successor', 'organization', 'operating', 'the', 'james', 'clerk', '', 'telescope', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'expansion', 'of', 'the', 'lime', 'works', 'commenced', 'in', '1', '9', '0', '6', 'following', 'the', '', 'of', 'the', 'lease', 'to', 'pepper', 'and', 'sons', 'from', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', 'november', '2', '0', '1', '6', ',', 'the', 'university', 'was', 'merged', 'with', 'national', '', '', 'university', 'and', 'become', 'the', '', 'da', 'campus', 'of', 'it', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'every', '1', '0', '0', 'females', 'age', '1', '8', 'and', 'over', ',', 'there', 'were', '1', '1', '9', '.', '0', 'males', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'launch', 'of', 'a', 'new', 'official', 'website', 'on', '2', '5', 'april', '2', '0', '1', '6', 'was', 'followed', 'on', '2', '6', 'april', '2', '0', '1', '6', 'with', 'the', 'announcement', 'of', 'a', 'series', 'of', 'reunion', 'shows', 'starting', 'with', '', 'open', 'air', '2', '0', '1', '6', 'and', 'a', 'full', 'uk', 'tour', '.', '']\n", "['', 'the', 'violent', '', 'strike', 'of', '1', '8', '9', '2', 'also', 'served', 'as', 'a', 'catalyst', 'for', '', 'politics', 'in', 'the', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'brand', 'is', 'a', '1', '9', '3', '2', 'american', 'western', 'film', 'directed', 'by', '', '', 'and', 'starring', 'bob', '', ',', 'betty', '', 'and', 'robert', 'd.', 'walker', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'genetics', 'of', '``', '', \"''\", 'is', 'extremely', 'complex', ',', 'so', 'that', 'it', 'is', 'difficult', 'to', 'decide', 'on', 'which', 'groups', 'should', 'be', 'recognized', 'as', 'species', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'meet', 'was', 'born', 'and', 'brought', 'up', 'in', '', ',', 'gujarat', 'in', 'a', 'family', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'launched', 'at', '2', '3', ':', '4', '4', 'utc', ',', 'on', '1', '4', 'august', '2', '0', '0', '7', 'aboard', 'an', '', '5', '', 'from', 'centre', '', '', '', '3', 'launch', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'cristiani', 'has', 'edited', 'films', 'over', 'the', 'last', 'decade', 'with', 'several', 'different', 'directors', ',', 'and', 'she', 'herself', 'directed', 'and', 'edited', 'the', '1', '9', '9', '9', 'film', ',', '``', 'ladies', 'room', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'near', 'the', 'end', 'of', '1', '8', '6', '5', ',', 'he', 'created', 'a', 'rotary', 'steam', 'engine', ':', 'the', '', 'farm', 'engine', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", '', 'fleet', 'was', 'largely', 'obsolete', 'at', 'the', 'outbreak', 'of', 'world', 'war', 'i', ',', 'and', 'over', 'the', 'first', 'two', 'years', 'of', 'the', 'war', 'the', '', 'navy', 'focused', 'its', 'efforts', 'on', 'building', 'a', '', 'fleet', 'for', 'local', 'defense', 'within', 'the', '', '.', '', '', '', '', '', '', '', '']\n", "['', '', 'wrote', 'that', 'on', 'one', 'occasion', 'she', 'was', '', 'to', 'the', 'point', 'of', 'near', 'death', 'because', 'she', 'had', 'gone', 'to', 'a', 'neighboring', 'plantation', 'for', 'a', 'bar', 'of', 'soap', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rather', 'than', 'featuring', 'one', 'continuous', 'narrative', ',', 'the', 'film', 'expresses', 'the', 'influence', 'of', '', 'and', '', 'through', 'a', 'collection', 'of', 'short', 'films', 'about', 'michael', 'jackson', ',', 'several', 'of', 'which', 'are', '', 'music', 'videos', 'from', 'jackson', \"'s\", '``', 'bad', \"''\", 'album', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'miss', 'caribbean', 'uk', 'grand', '', 'was', 'held', 'on', '3', '0', 'november', '2', '0', '1', '4', 'at', 'the', '', ',', '', 'hill', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '(', '', '', '', 'is', 'very', 'hard', 'and', 'used', 'as', 'an', '', 'and', 'cutting', 'tool', 'component', '.', ')', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'management', 'of', 'the', 'airway', 'in', 'the', 'emergency', 'department', 'is', 'optimal', 'given', 'the', 'presence', 'of', 'trained', 'personnel', 'from', 'multiple', '', ',', 'as', 'well', 'as', 'access', 'to', '``', 'difficult', 'airway', 'equipment', \"''\", '(', '', ',', '', '', 'tube', '', ',', '', '', ',', 'surgical', 'methods', ',', 'etc', '.', ')', '.', '', '']\n", "['', 'he', 'had', 'been', 'a', 'priest', 'for', '5', '3', 'years', 'and', 'a', 'bishop', 'for', '3', '0', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'signs', 'of', 'calcium', '', 'have', 'been', '', 'at', 'more', 'than', 'one', 'location', '(', 'notably', 'at', '', 'and', '', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '4', ',', '', 'undertook', 'a', '', 'position', 'with', 'the', 'royal', '', 'museum', 'and', 'she', 'has', 'also', 'reviewed', 'books', 'and', 'written', 'essays', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'fictional', '', 'from', 'the', '', 'stories', 'written', 'by', 'elf', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'expresses', 'the', 'desire', 'to', 'leave', ',', 'but', 'homer', 'asks', 'her', 'to', 'sleep', 'on', 'it', ',', 'due', 'to', 'the', 'cost', 'of', 'buying', 'the', 'house', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'death', 'of', '', 'sent', 'the', 'band', 'into', 'a', '', 'only', 'partially', '', 'by', 'subsequent', '``', 'live', \"''\", '', 'release', 'and', '1', '9', '9', '0', \"'s\", '``', '', '', \"''\", ',', 'a', 'collection', 'of', '', 'power', 'pop', 'that', '', 'a', 'debt', 'to', 'the', 'beatles', 'and', '', '.', '', '']\n", "['', 'it', 'originated', 'in', 'the', '', 'state', ',', 'and', 'was', '', 'during', 'the', 'british', 'raj', 'in', 'india', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'september', '9', ',', '2', '0', '1', '8', ',', 'les', '', '', 'cbs', 'following', 'multiple', 'accusations', 'of', 'sexual', 'assault', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'example', ',', 'withdrawals', 'of', 'cash', 'above', 'a', 'threshold', 'figure', 'may', 'require', 'notice', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rosalynn', 'agreed', 'to', 'marry', 'jimmy', 'in', 'february', '1', '9', '4', '6', 'when', 'she', 'went', 'to', 'annapolis', 'with', 'his', 'parents', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'final', 'year', '', 'the', 'clinical', 'years', 'by', 'covering', 'general', 'medicine', ',', 'general', 'practice', ',', 'general', 'surgery', ',', 'critical', 'care', ',', '', ',', 'emergency', 'medicine', ',', 'medicine', 'for', 'the', 'elderly', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'formerly', 'ran', 'from', 'long', 'beach', 'west', 'to', 'san', 'pedro', 'and', 'continued', 'north', 'on', '', 'street', ',', 'briefly', '', 'with', 'us', '6', '6', 'in', 'los', 'angeles', 'before', 'turning', 'northwest', 'and', '', 'with', 'us', '9', '9', 'on', 'san', 'fernando', 'road', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'center', \"'s\", 'associated', 'faculty', 'and', 'students', 'share', 'a', 'commitment', 'to', 'scholarship', 'that', 'is', '', ',', '', ',', 'interdisciplinary', ',', 'and', '', ',', 'and', 'that', 'addresses', 'questions', 'that', 'are', '', 'comparative', 'and/or', 'global', 'in', 'scope', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'song', 'became', 'a', 'huge', 'success', 'in', 'the', 'united', 'states', 'reaching', 'number', 'one', 'on', 'both', 'the', '``', 'billboard', \"''\", 'top', 'latin', 'songs', 'chart', 'and', '``', 'billboard', \"''\", 'tropical', 'songs', 'chart', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'russia', \"'s\", 'debt', 'to', 'the', '', 'reached', '2', '0', 'billion', '', 'in', '1', '9', '9', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'but', 'the', '', 'starts', 'to', 'run', 'out', 'of', 'gas', ',', 'causing', 'the', 'music', 'to', 'turn', 'down', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'did', 'his', 'bachelor', \"'s\", 'degree', 'in', 'humanities', 'at', 'texas', 'international', 'college', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'other', 'prisoners', 'beat', 'him', 'up', 'and', 'leave', 'him', 'in', 'the', 'courtyard', 'to', '', 'about', 'his', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'national', 'organisation', 'for', 'scouts', 'and', 'guides', '(', ')', 'is', 'the', 'national', 'scouting', 'and', '', 'organization', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'active', 'galaxies', 'have', 'active', '', '', '(', '', ')', 'and', 'include', '', ',', '', ',', 'radio', 'galaxy', ',', '', 'and', '', 'types', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rancho', 'san', 'diego', 'is', 'served', 'by', 'the', '', 'valley', 'union', 'school', 'district', 'and', 'the', '', 'union', 'high', 'school', 'district', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '1', '2', '6', '2', '(', '1', '7', 'december', '1', '9', '8', '8', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'currently', ',', 'the', 'largest', 'museums', 'of', 'the', 'west', '', 'entire', 'halls', 'to', '', 'sculpture', ',', 'not', 'to', 'mention', 'the', 'enormous', 'exhibition', 'which', 'took', 'place', 'first', 'at', 'the', '', '', 'du', 'grand', '', 'in', 'paris', 'and', 'later', 'at', 'the', 'national', 'gallery', 'of', 'art', 'in', 'washington', 'in', '1', '9', '9', '7', '.']\n", "['', 'it', 'is', 'mentioned', 'in', 'the', '``', '', 'of', 'the', '', 'sea', \"''\", ',', 'a', 'greek', 'travel', 'document', 'dating', 'from', 'the', 'first', 'century', 'ad', ',', 'as', 'one', 'of', 'a', 'series', 'of', 'commercial', 'ports', 'on', 'the', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'son', ',', 'second', 'lieutenant', '', 'philip', 'russell', ',', 'of', 'the', 'second', 'battalion', ',', 'prince', 'of', '', \"'s\", 'own', '(', 'west', 'yorkshire', 'regiment', ')', 'was', 'attached', 'to', 'the', '1', '4', 'th', 'mounted', 'infantry', 'in', 'the', 'second', 'boer', 'war', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'the', 'end', 'of', 'june', ',', 'bandits', 'in', '', '(', '', ')', 'region', 'headed', 'by', '', '', '(', '', ')', 'were', 'also', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'linear', 'transformation', 'formula_', '1', '', 'the', '', '', '', 'formula_', '2', 'to', 'the', '', '', 'formula_', '3', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'production', 'of', 'structural', '', 'concerns', 'a', 'large', 'array', 'of', 'organisms', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'beaten', 'by', 'soldiers', 'for', '', 'to', 'go', 'through', 'military', '', 'to', 'capture', 'the', 'visual', 'horror', 'and', 'drama', 'of', 'the', 'tragedy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'number', 'of', 'rail', 'links', ',', 'such', 'as', 'between', 'arusha', 'and', '', ',', 'were', 'shut', 'down', ',', 'and', 'passenger', 'services', 'abandoned', ',', 'including', 'on', 'the', '', 'railway', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', '', 'was', 'also', 'available', 'called', 'the', '``', '', '', 'f', '6', '0', '0', '``', ',', 'featuring', '', 'front', 'and', 'rear', '', 'designs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'completing', 'primary', 'education', ',', 'he', 'briefly', '', 'as', 'a', 'tailor', 'before', 'he', 'found', 'work', 'as', 'a', 'clerk', 'to', 'christopher', '', 'williams', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'england', 'were', 'well', 'placed', 'when', 'australia', 'ended', 'at', '', 'on', '2', '5', '8', '/', '7', 'with', 'tallon', 'on', '2', '5', 'and', '', 'on', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'throughout', 'its', 'history', ',', 'volunteers', 'have', 'played', 'an', 'important', 'role', 'in', 'operating', 'the', 'station', ',', 'especially', 'in', 'producing', 'its', 'varied', 'music', 'programming', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'september', '1', '0', ',', 'mazarin', 'encouraged', 'the', '', 'to', 'take', 'up', 'arms', 'against', 'condé', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'took', 'the', 'moment', 'and', '', 'out', 'from', 'an', 'open', 'window', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'deeper', 'level', 'is', 'a', 'live', 'worship', 'album', 'by', 'israel', '&', 'amp', ';', 'new', 'breed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'neck', 'vertebrae', 'began', 'to', '', 'out', 'from', 'her', 'neck', 'at', 'this', 'age', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'way', 'there', ',', 'ivan', 'experiences', 'a', 'set', 'of', '', ',', 'which', 'are', 'actually', 'data', '', 'in', 'his', 'brain', 'during', 'his', 'service', 'in', 'the', 'confederate', 'special', 'forces', 'and', 'activated', 'by', 'certain', 'visual', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'model', 'assumes', 'that', 'the', 'market', 'price', 'per', 'share', 'is', 'equal', 'to', 'the', '', 'stream', 'of', 'all', 'future', '', ',', 'which', 'is', 'assumed', 'to', 'be', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'two', 'years', 'later', ',', 'the', 'lift', 'hill', 'was', '', 'and', '', ',', '', 'the', 'well', 'known', '``', '', \"''\", 'that', 'was', 'in', 'the', 'lift', 'hill', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'while', 'we', 'known', 'the', 'original', 'percent', 'equity', 'interest', 'that', 'perfect', 'world', 'obtained', ',', 'we', 'do', 'not', 'know', 'what', 'unknown', 'worlds', 'was', 'valued', 'at', 'at', 'the', 'time', ',', 'thus', 'we', 'do', 'not', 'know', 'how', 'much', 'the', 'company', 'was', 'acquired', 'for', '.', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'small', 'township', 'in', 'the', 'central', 'coast', 'region', 'of', 'new', 'south', 'wales', ',', 'australia', ',', 'located', 'about', 'north', 'of', 'the', 'sydney', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'are', 'warblers', 'found', 'mainly', 'in', '', 'southern', 'regions', 'of', 'the', 'old', 'world', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'despite', 'the', 'change', 'in', 'terminology', ',', 'however', ',', 'the', 'demographic', 'definition', 'of', 'a', 'population', 'centre', 'remains', '', 'from', 'that', 'of', 'an', 'urban', 'area', ':', 'a', 'population', 'of', 'at', 'least', '1', ',', '0', '0', '0', 'people', 'where', 'the', 'density', 'is', 'no', 'fewer', 'than', '4', '0', '0', 'persons', 'per', 'km', '2', '.']\n", "['', 'the', '', 'claimed', 'seven', 'german', 'aircraft', 'shot', 'down', 'out', 'of', 'control', 'for', 'the', 'loss', 'of', 'two', 'aircraft', ';', 'as', 'the', 'camels', 'flew', 'home', ',', 'they', 'attacked', 'targets', 'of', 'opportunity', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'presided', 'over', 'the', '', 'on', '1', 'march', '2', '0', '1', '3', ',', 'and', '', '', 'conducted', 'the', '', 'on', '2', 'march', '2', '0', '1', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'graduating', 'from', 'university', 'and', 'worked', 'as', 'a', 'salary', 'worker', 'at', 'a', 'sales', 'promotion', 'company', '', 'entered', 'the', 'entertainment', 'industry', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'originally', 'beginning', 'at', 'san', 'francisco', 'city', 'hall', 'and', 'ending', 'on', 'treasure', 'island', ',', 'the', 'route', 'has', 'been', 'modified', 'several', 'times', 'since', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'granted', 'sweden', 'the', 'control', 'of', '', ',', 'though', '', ',', '', 'and', '', 'remained', 'under', 'polish', 'governance', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'has', 'been', 'the', 'brand', 'ambassador', 'for', '', ',', 'a', '', 'owned', 'hair', 'care', 'brand', 'from', '2', '0', '0', '0', 'to', '2', '0', '0', '9', 'and', 'later', 'went', 'on', 'to', 'promote', '', '', 'products', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'all', 'four', 'year', 'graduating', 'class', 'graduated', 'in', '2', '0', '1', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ferdinand', 'jühlke', 'attended', 'the', 'in', 'his', 'home', 'town', 'where', 'he', 'received', 'a', 'basic', 'education', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'subspecies', '``', 'zizina', 'labradus', 'labradus', \"''\", 'is', 'found', 'over', 'most', 'of', 'continental', 'australia', ',', 'as', 'well', 'as', 'on', 'lord', 'howe', 'island', ',', 'norfolk', 'island', ',', 'and', 'christmas', 'island', ',', 'while', 'the', 'subspecies', '``', 'zizina', 'labradus', '', '``', 'is', 'restricted', 'mainly', 'to', 'cape', 'york', 'peninsula', '.', '', '', '', '']\n", "['', 'however', ',', 'the', 'street', 'on', 'which', 'the', 'main', 'buildings', 'of', 'the', '', 'university', 'are', 'located', ',', 'and', 'thus', 'the', 'physical', 'address', 'of', 'the', 'university', ',', 'was', 'named', '``', '', \"''\", 'in', 'honor', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'trip', ',', '4', '2', 'of', 'the', '8', '5', '9', 'native', 'americans', 'died', ',', 'most', 'of', 'them', 'children', 'and', 'the', 'elderly', ',', 'from', '', 'fever', 'and', 'the', 'stress', 'of', 'the', 'passage', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'according', 'to', 'ultimate', 'guitar', 'archive', ',', 'joe', 'said', 'he', 'was', 'fired', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'european', 'union', 'in', 'its', '', '', '(', 'updated', '2', '0', '0', '6', ')', 'has', 'set', 'the', 'goal', 'that', 'for', '2', '0', '1', '0', 'that', 'each', 'member', 'state', 'should', 'achieve', 'at', 'least', '5', '.', '7', '5', '%', '', 'usage', 'of', 'all', 'used', 'traffic', 'fuel', '.', '', '', '', '', '']\n", "['', 'conservative', 'friends', 'consider', 'jesus', 'to', 'be', 'that', 'seed', 'or', 'guide', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'local', 'public', 'debt', 'was', 'used', 'to', 'finance', 'the', 'building', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'organization', \"'s\", 'archive', 'is', 'housed', 'at', 'the', 'arthur', 'and', 'elizabeth', '', 'library', 'on', 'the', 'history', 'of', 'women', 'in', 'america', 'at', 'the', '', 'institute', 'for', 'advanced', 'study', 'at', 'harvard', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'a', 'racist', 'patient', 'made', 'a', 'comment', 'about', 'simone', \"'s\", 'show', 'of', '', 'toward', 'tom', ',', 'he', 'and', 'tom', 'got', 'into', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'the', 'war', 'went', 'on', ',', 'some', 'indians', 'eventually', 'signed', 'peace', 'treaties', 'and', 'settled', 'among', 'the', '``', 'christians', \"''\", 'behind', 'the', 'lines', 'of', 'forts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', '', '', 'was', 'seated', 'on', 'top', 'of', 'the', 'conical', 'tower', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '1', 'march', '2', '0', '0', '9', ',', 'after', 'huge', 'losses', 'in', '2', '0', '0', '7', 'and', '2', '0', '0', '8', ',', 'and', 'sales', 'decline', 'of', 'over', '6', '0', '%', 'in', 'january', '2', '0', '0', '9', ',', 'kw', 'filed', '', 'again', '.', '', '', '', '', '', '', '']\n", "['', 'fox', 'sports', 'won', 'its', 'eighth', 'sports', 'emmy', 'award', 'for', 'outstanding', 'live', 'sports', 'special', 'for', 'its', 'coverage', 'of', 'the', 'game', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'sit', 'had', 'a', 'facility', '', 'and', 'was', 'eligible', 'to', 'conduct', 'classified', 'instruction', 'and', 'research', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'first', 'steps', 'were', 'taken', 'into', 'politics', 'in', 'the', 'fall', 'of', '1', '8', '9', '0', ',', 'with', 'a', 'nationalist', 'state', '', 'put', 'forward', 'in', 'the', 'state', 'of', 'rhode', 'island', 'and', 'at', 'least', 'one', 'candidate', 'running', 'for', 'office', 'under', 'the', 'nationalist', '', 'in', 'california', '.', '', '', '', '', '', '', '']\n", "['', 'overall', 'winner', 'was', 'an', 'fia', 'group', '5', 'porsche', '9', '3', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'most', 'of', 'the', 'year', 'these', 'workers', 'may', 'be', 'contributing', 'significant', 'tax', 'revenue', 'to', 'alberta', '(', 'e.g', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'officials', ',', 'thompson', '', 'in', 'and', 'emailed', 'many', 'of', 'the', 'threats', 'under', 'his', '', \"'s\", 'name', 'in', 'an', 'effort', 'to', 'frame', 'her', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thachil', '', 'were', 'chief', '', 'in', 'the', '', 'temple', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'world', 'war', 'ii', ',', 'jews', 'of', 'the', 'town', 'were', 'murdered', 'in', 'a', 'mass', 'execution', '', 'by', 'an', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'science', 'fiction', 'work', 'by', 'a', 'macedonian', 'author', 'was', 'the', '1', '9', '5', '9', 'children', \"'s\", 'novel', '``', '', '', \"''\", '(', '``', 'the', 'great', 'adventure', \"''\", ')', 'by', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'the', 'first', 'time', 'that', 'rosalynn', 'had', 'ever', 'allowed', 'a', 'boy', 'to', 'do', 'this', 'on', 'the', 'first', 'date', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'both', 'the', '5', '0', 'th', 'and', '7', '7', 'th', '', 'brigades', 'saw', 'extensive', 'action', 'in', 'the', '', 'war', 'of', '1', '9', '4', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"'s\", 'work', 'was', 'like', 'a', '', ';', 'i', 'saw', 'it', 'as', 'almost', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'then', 'lived', 'in', 'mexico', 'for', 'six', 'years', 'where', 'he', 'presented', 'cultural', 'advice', 'to', 'the', 'brazilian', 'embassy', ',', 'published', 'the', 'book', '``', 'la', '', '', 'de', 'la', '', '', \"''\", ',', 'and', 'hosted', 'a', 'series', 'of', 'conferences', 'for', 'mexican', 'universities', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'the', '', 'and', '', 'in', 'india', 'largely', 'continued', 'to', 'encourage', 'the', 'development', 'of', 'sciences', 'and', 'technical', 'education', ',', 'both', 'traditional', 'and', 'western', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', ',', 'the', 'following', '', 'have', 'gained', 'the', 'award', 'of', 'garden', 'merit', '(', '', ')', 'from', 'the', 'royal', '', 'society', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'of', '', '', 'gave', 'the', 'film', 'a', '', 'rating', 'and', 'called', 'it', 'a', '', 'comedy', 'which', '', 'to', '``', 'push', 'the', '', 'in', 'its', 'own', 'way', \"''\", ':', '``', \"''\", '', \"''\", 'is', 'a', 'winner', 'all', 'the', 'way', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'specific', 'techniques', 'to', 'produce', 'large', 'single', 'crystals', '(', 'aka', '', ')', 'include', 'the', '', 'process', '(', '', ')', ',', '', 'zone', '(', 'or', 'zone', 'movement', ')', ',', 'and', 'the', '', 'technique', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '7', 'october', '2', '0', '2', '0', ',', '', 'and', 'el', '', '', 'were', 'brought', 'to', 'the', 'united', 'states', 'to', 'face', 'charges', 'of', '', 'western', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'kingsley', \"'s\", 'last', 'historical', 'novel', ',', 'and', 'was', 'instrumental', 'in', '', 'hereward', 'into', 'an', 'english', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'unit', 'runs', 'a', 'comprehensive', 'program', 'of', '', 'which', 'has', 'a', 'full', 'daily', 'schedule', 'providing', 'for', 'fresh', 'air', ',', 'exercise', ',', 'medical', 'care', ',', '', 'therapy', ',', 'spiritual', 'guidance', ',', 'conditions', 'suitable', 'for', 'the', 'preparation', 'of', 'defence', ',', 'it', 'facilities', 'and', 'training', ',', 'visiting', 'and', 'recreational', 'and', 'sport', 'activities', '.']\n", "['', 'in', 'the', 'fall', 'of', '2', '0', '0', '6', ',', 'this', 'was', 'expanded', 'to', 'grades', '', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '9', 'april', '2', '0', '1', '8', ',', 'fireworks', 'were', 'thrown', 'at', 'the', 'u.s.', 'embassy', 'in', '', 'during', 'a', 'protest', 'against', 'the', 'bombing', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'flint', 'was', 'also', 'appointed', 'to', 'the', 'new', 'position', 'of', 'minister', 'for', 'yorkshire', 'and', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'lies', 'approximately', 'north-west', 'of', '', 'and', 'north-west', 'of', 'the', 'regional', 'capital', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'october', 'attacks', ',', 'the', 'egyptian', 'military', 'began', 'using', 'armed', '', 'for', 'the', 'first', 'time', 'since', 'the', '', '', 'began', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'welsh', 'district', 'consisted', 'the', 'whole', 'of', 'wales', 'and', 'the', 'county', 'of', 'herefordshire', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'nevertheless', ',', 'its', 'continued', 'use', 'has', 'produced', 'a', 'degree', 'of', '', 'with', 'a', 'certain', 'abstract', '', 'throughout', 'spanish', 'america', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'launch', 'took', 'place', 'at', '0', '0', ':', '4', '5', ':', '2', '8', 'utc', 'on', '1', '6', 'september', '1', '9', '8', '7', ',', 'from', '', '1', 'at', 'centre', '', '', ',', 'at', '', ',', 'french', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", '', '(', '``', '', '', \"''\", ')', ',', 'eastern', '', '', '(', '``', '', '', \"''\", ')', ',', 'and', 'the', '', '', '(', '``', '', '', \"''\", ')', 'are', 'species', 'listed', 'as', 'vulnerable', 'which', '', 'the', 'park', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'like', 'the', '', ',', 'the', 'last', 'battalion', 'of', 'selby', \"'s\", 'brigade', ',', 'the', '2', '/', '1', 'st', '', 'under', 'lt.', 'col.', 'jack', 'oswald', 'fulton', ',', 'were', 'on', 'the', 'march', 'either', 'side', 'of', 'the', 'road', 'as', 'the', 'japanese', 'tanks', 'reached', 'them', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'despite', 'this', ',', 'the', 'government', 'decided', 'that', 'the', '', 'cost', 'was', 'still', 'too', 'high', 'for', 'mass', 'deployment', 'and', 'to', 'wait', 'for', 'the', 'next', 'generation', 'systems', 'to', 'achieve', 'cost', 'reductions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'resolution', 'was', 'immediately', 'qualified', ',', 'however', ',', 'by', 'the', '``', '', 'amendment', ',', \"''\", 'which', 'said', 'that', '``', '', \"''\", 'was', '', 'only', 'when', 'was', 'necessary', 'to', '``', '', '', 'and', 'other', '', 'features', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'perfect', 'crime', 'should', 'be', 'distinguished', 'from', 'one', 'that', 'has', 'merely', 'not', 'been', '', 'yet', 'or', 'where', 'everyday', 'chance', 'or', '', 'matters', '', 'a', 'conviction', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'and', '', '(', 'or', '``', '', \"''\", ')', 'of', 'the', 'male', '', 'are', 'highly', 'complex', 'in', 'almost', 'all', 'species', 'and', 'often', 'bear', 'various', 'extensions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'has', 'been', 'listed', 'on', 'the', 'national', 'register', 'of', 'historic', 'places', 'since', 'october', '3', '1', ',', '1', '9', '8', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'the', 'adventures', 'of', '', 'march', \"''\", 'won', 'the', '1', '9', '5', '4', 'u.s.', 'national', 'book', 'award', 'for', 'fiction', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'also', 'a', 'departure', 'every', 'hour', 'the', 'other', 'way', 'to', 'the', 'third', 'biggest', 'city', 'in', 'denmark', ',', '', ',', 'where', 'there', 'are', '', 'for', 'the', 'capital', ',', 'copenhagen', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'illegal', 'modification', 'to', 'his', '', \"'s\", 'engine', 'then', 'saw', 'gordon', '', ',', 'though', 'he', 'continued', 'to', 'compete', 'under', 'appeal', 'for', 'the', 'remainder', 'of', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'economic', 'growth', 'continued', 'during', '', '', 'iii', \"'s\", 'administration', ',', 'which', 'pushed', 'for', 'good', 'governance', 'and', 'transparency', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'a', '', '', \"'\", ',', '', 'created', 'the', 'world', \"'s\", 'first', 'car', 'orchestra', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'mid', '1', '9', 'th-century', 'muslim', 'historians', ',', 'such', 'as', '', 'ali', 'who', 'experienced', 'the', '', 'empire', 'first', 'hand', ',', 'presented', 'a', 'different', 'view', 'on', '', 'singh', \"'s\", 'empire', 'and', 'governance', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'february', '2', '0', '0', '3', ',', '', 'inc.', 'filed', 'for', 'bankruptcy', 'under', 'chapter', '1', '1', 'to', '', ',', 'the', 'reason', 'behind', 'was', 'that', '``', '', 'had', 'issued', 'a', 'large', 'amount', 'of', 'debt', 'in', '2', '0', '0', '0', 'that', 'resulted', 'in', 'an', 'unstable', '', 'structure', '.', \"''\", '', '', '']\n", "['', 'when', 'engaged', 'in', '', ',', '', 'are', 'frequently', 'the', 'object', 'of', '', ',', 'while', '', '(', '``', 'just', 'sitting', \"''\", ')', 'is', 'less', '', ',', 'but', 'still', 'used', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'did', 'engineering', 'work', 'for', 'lennon', 'and', '', 'on', 'various', 'albums', ',', 'including', '``', '', \"''\", ',', '``', 'mind', 'games', \"''\", 'and', '``', 'double', 'fantasy', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'main', 'products', 'are', 'vegetables', 'such', 'as', '', ',', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'subsequent', 'score', 'pages', 'are', 'only', '', '', ',', 'although', 'the', 'strings', 'are', 'written', 'down', 'in', 'detail', ',', 'but', 'the', 'winds', 'are', 'only', '', 'or', 'only', '', 'at', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'sequel', ',', 'and', 'the', 'third', 'installment', 'in', 'the', 'series', ',', 'was', 'announced', 'after', 'the', 'release', 'of', '``', 'double', 'dhamaal', \"''\", ',', 'though', 'the', 'film', 'was', '', 'by', 'critics', ',', 'and', 'was', 'a', 'commercial', 'success', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'low', 'resolution', 'structure', 'from', '2', 'd', 'crystals', 'of', 'the', 'pm', '-atpase', 'from', '``', '', '', \"''\", 'is', ',', 'as', 'of', '', '2', '0', '1', '1', ',', 'the', 'only', 'structural', 'information', 'on', 'the', '', '-atpase', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'maternal', '', 'during', '', 'and', 'pregnancy', 'influences', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'das', 'is', 'an', 'indian', 'film', 'director', 'in', '', 'movies', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'additionally', ',', '', 'studies', 'have', 'demonstrated', 'that', 'although', '', 'and', '', 'measures', 'may', 'be', 'related', ',', 'they', 'appear', 'to', 'be', 'measuring', 'different', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'an', 'example', ',', 'a', 'new', 'department', 'in', 'a', 'factory', 'in', 'which', 'a', 'union', 'represents', 'all', 'of', 'the', 'production', 'and', 'maintenance', 'employees', 'in', 'a', '``', 'wall', 'to', 'wall', \"''\", 'unit', 'is', 'likely', 'to', 'be', '', 'to', 'that', 'unit', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'imag', 'was', 'a', 'coalition', 'of', 'indigenous', 'media', 'artists', 'organized', 'to', 'improve', 'access', 'to', 'media', 'equipment', 'and', 'increase', 'indigenous', 'representation', 'in', 'artist', 'run', 'centers', 'in', 'the', 'vancouver', 'area', ',', 'and', 'ran', 'from', '1', '9', '9', '8', 'to', '2', '0', '0', '7', '.', '', '', '', '', '', '', '', '', '']\n", "['', '', 'made', 'an', 'impressive', 'return', 'to', 'form', 'in', '2', '0', '1', '2', ',', 'playing', 'every', 'game', ',', 'and', 'playing', 'an', 'exceptional', 'season', 'as', 'a', '', 'midfielder', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'single', ',', '``', 'black', 'flowers', \"''\", ',', 'was', 'released', 'in', 'january', '2', '0', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'played', 'many', 'years', 'for', '', 'and', '', '', 'during', 'her', 'career', ',', 'which', 'must', 'be', 'ended', 'because', 'of', 'her', 'serious', 'knee', 'injury', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'grass', 'in', 'the', 'plains', 'were', '', '', 'for', '', 'cattle', 'and', 'the', 'water', 'from', 'the', 'brooks', 'and', 'streams', 'clear', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'competition', 'started', 'on', '2', '7', 'october', '2', '0', '2', '0', 'and', 'will', 'finish', 'in', 'december', '2', '0', '2', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'born', 'on', '1', '2', 'december', '1', '8', '0', '6', 'with', 'his', 'twin', 'brother', 'louis', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'openly', 'gay', 'and', 'said', 'he', 'realized', 'his', 'sexual', 'orientation', 'when', 'he', 'was', 'six', 'years', 'old', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '9', ',', 'the', 'city', 'of', '', 'went', 'out', 'to', 'bid', 'for', 'public', 'transit', 'service', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'edmund', 'lynch', 'was', 'born', 'on', 'may', '1', '9', ',', '1', '8', '8', '5', 'in', 'baltimore', ',', 'maryland', 'to', 'richard', 'h.', 'lynch', 'and', '', 'vernon', 'smith', 'lynch', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'soil', 'erosion', 'has', 'a', 'mixture', 'of', 'causes', ',', 'including', '', 'of', 'land', ',', 'climate', 'change', ',', 'intensive', 'agricultural', 'practice', ',', 'and', 'lack', 'of', 'adequate', 'protection', '', 'for', 'soil', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'others', 'believe', 'the', 'city', 'was', 'named', 'after', '', ',', 'a', 'popular', 'farmer', ',', 'whose', 'farm', 'was', 'named', '', ',', 'which', 'was', 'later', 'pronounced', '', 'by', 'the', 'europeans', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'remained', 'active', 'with', 'les', '', '', '', 'for', 'many', 'years', 'and', 'in', '1', '9', '9', '0', 'was', 'named', '', 'emeritus', ',', 'a', 'title', 'he', 'held', 'until', 'his', 'death', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'final', 'hearing', 'of', 'proposed', 'changes', 'was', 'held', 'in', 'july', '2', '0', '0', '8', 'and', 'on', '2', '4', 'september', '2', '0', '0', '8', 'a', 'full', 'council', 'confirmed', 'the', 'changes', ',', 'subject', 'to', 'some', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'british', 'military', 'strategy', 'during', 'the', 'american', 'revolution', '', 'on', '', '', 'soldiers', 'throughout', 'the', 'thirteen', 'colonies', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'santa', 'cruz', '', '(', ')', 'is', 'a', '', 'in', 'santa', 'cruz', 'de', '', ',', 'spain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'last', 'commercial', 'navigation', 'on', 'the', 'river', 'was', 'in', '1', '9', '2', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'february', '2', '0', '1', '7', ',', 'it', 'was', 'reported', 'that', 'meredith', 'corporation', 'and', 'a', 'group', 'of', 'investors', 'led', 'by', '', '', 'jr.', 'were', 'considering', '', 'time', 'inc', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'many', 'women', 'artists', 'mentioned', 'in', 'the', '', 'whose', 'biography', 'was', 'not', 'included', ',', 'because', 'there', 'was', 'not', 'enough', '', 'material', 'to', '', 'the', 'inclusion', 'criteria', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '0', '6', ',', 'they', 'purchased', 'a', '', 'mill', 'and', 'several', 'stands', 'of', 'timber', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'sustained', 'strong', 'growth', ',', 'together', 'with', 'continued', 'public', 'debt', 'reduction', ',', 'would', 'reduce', '', 'arising', 'from', 'high', '', ',', 'particularly', 'when', 'monetary', 'accommodation', 'is', 'reduced', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '7', '1', '7', ',', '', '', 'von', '', ',', 'the', 'first', 'count', 'and', 'an', 'imperial', 'field', 'marshal', 'in', 'the', '', 'service', ',', 'returned', 'to', 'the', 'catholic', 'church', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'father', '', 'was', 'captain', 'of', 'the', '', 'team', 'which', 'won', 'the', '1', '9', '8', '8', 'all-ireland', 'under-', '2', '1', 'football', 'championship', ',', 'the', 'only', 'such', 'victory', 'in', 'the', 'county', \"'s\", 'history', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'bell', 'was', 'used', 'to', 'call', 'the', 'workers', 'from', 'the', 'field', 'at', 'the', 'end', 'of', 'the', 'day', \"'s\", 'work', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'november', '1', '9', '7', '8', ',', '', 'was', 'elected', 'as', 'a', 'republican', 'to', 'the', 'united', 'states', 'house', 'of', 'representatives', ',', 'and', 'returned', 'for', 'six', 'additional', 'terms', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'post', 'office', 'was', 'established', 'in', '1', '8', '7', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'spring', '', 'led', 'to', 'the', 'flooding', 'of', 'the', 'camp', ',', 'and', 'many', 'of', 'the', 'prisoners', 'were', 'forced', 'to', '', 'on', 'top', 'of', 'the', '', 'in', 'the', 'barracks', 'until', 'rescue', 'could', 'arrive', ',', 'and', '2', ',', '7', '0', '0', 'feet', 'of', 'the', 'stockade', 'wall', 'was', '', 'away', '.', '', '']\n", "['', 'he', 'entered', 'the', 'music', 'program', 'at', 'florida', 'state', 'university', 'in', '1', '9', '8', '0', 'at', 'the', 'age', '1', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'is', 'a', 'japanese', 'former', '', 'player', 'who', 'competed', 'in', 'the', '1', '9', '8', '4', 'summer', 'olympics', 'and', 'in', 'the', '1', '9', '8', '8', 'summer', 'olympics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'at', 'the', 'school', 'have', '', 'with', 'total', '', 'ranging', 'from', '5', '1', '0', '(', '2', '0', '1', '0', ')', 'to', '1', ',', '0', '3', '6', '(', '2', '0', '1', '5', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'won', 'the', 'bronze', 'with', 'a', 'strong', 'performance', ',', 'missing', 'a', 'throw', '', '', 'attempt', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'two', 'battalions', 'upon', 'coming', 'up', 'moved', 'off', 'toward', 'the', 'kpa', '', 'in', 'what', 'proved', 'to', 'be', 'a', '', 'movement', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'project', 'failed', ',', 'and', '', 'station', 'became', 'part', 'of', 'the', 'london', ',', 'brighton', 'and', 'south', 'coast', 'railway', 'on', '1', '0', 'may', '1', '8', '4', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'vice-president', 'of', 'the', '', ',', 'he', 'was', 'one', 'of', 'the', 'irish', 'delegates', 'to', 'the', 'congress', 'of', 'the', '', 'in', '1', '8', '9', '4', ',', 'organised', 'by', 'baron', 'pierre', 'de', '', ',', 'resulting', 'in', 'the', 'foundation', 'of', 'the', 'modern', 'olympic', 'games', 'in', '1', '8', '9', '6', '.', '', '', '']\n", "['', '', 'became', 'director', 'of', 'naval', 'intelligence', 'in', 'july', '1', '9', '4', '6', 'and', 'chief', 'of', 'naval', 'staff', '(', 'commander-in-chief', ')', 'of', 'the', 'royal', 'indian', 'navy', 'in', 'august', '1', '9', '4', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'of', 'its', '', 'are', '', 'not', 'only', 'of', 'the', 'local', '', 'but', 'also', 'of', 'churches', 'in', 'different', 'parts', 'of', 'the', 'world', ',', 'particularly', 'the', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'because', 'of', 'this', ',', 'mads', 'had', 'an', 'oil', 'mill', 'imported', 'entire', 'from', 'europe', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', '', 'secretary', 'for', 'sokoto', 'state', 'until', 'december', '1', '9', '8', '3', ',', 'when', 'the', 'military', 'resumed', 'power', 'under', '', '', 'and', 'banned', 'party', 'politics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'film', \"'s\", 'premiere', ',', 'hitchcock', 'first', 'views', 'the', 'audience', 'from', 'the', '', 'booth', ',', 'looking', 'out', 'through', 'its', 'small', 'window', 'at', 'them', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '7', ',', 'fernandez', 'joined', 'the', 'san', 'diego', '', 'as', 'a', 'free', 'agent', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'graduate', 'of', 'the', 'moscow', 'conservatory', ',', '', 'led', 'the', 'orchestra', 'for', '1', '1', 'seasons', 'under', 'its', 'new', 'name', ',', '', 'philharmonic', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'many', 'places', '', '', 'and', '', '', 'are', '', ',', 'for', 'example', 'on', 'the', '``', '', \"''\", 'and', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'concert', 'became', '', 'after', 'brooks', 'and', 'guitarist', '', 'england', 'smashed', 'two', 'guitars', 'on', 'stage', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', '2', '0', '0', '9', ')', '', 'it', 'a', 'distinct', 'dialect', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'characteristics', ',', 'including', 'eye', 'arrangement', ',', '', 'structure', ',', '', '', ',', 'and', '', 'dimensions', ',', 'do', 'not', '', 'differences', 'in', 'sex', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'under', 'the', 'direction', 'of', 'jerry', '', ',', 'the', 'michigan', 'men', \"'s\", 'glee', 'club', 'embarked', 'on', 'four', 'major', 'overseas', 'tours', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'church', 'has', 'two', 'bells', 'which', 'are', 'both', 'were', 'recast', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '6', '6', 'the', 'failure', 'of', 'the', 'wooden', 'rails', 'used', 'on', 'the', '', 'section', 'of', 'what', 'became', 'the', 'kingston', 'branch', 'became', 'apparent', ',', 'and', 'the', 'decision', 'was', 'made', 'to', 'use', 'iron', 'rails', 'to', 'bluff', 'and', 'convert', 'the', '', 'section', 'to', 'iron', 'rails', '.', '', '', '', '', '']\n", "['', 'soon', 'after', 'in', 'australia', ',', '', 'racing', 'became', 'popular', 'with', 'the', 'first', 'australian', '', 'championship', 'being', 'contested', 'in', 'melbourne', 'in', '1', '9', '3', '5', ',', 'its', 'popularity', 'running', 'through', 'the', 'country', \"'s\", '``', 'golden', 'era', \"''\", 'of', 'the', '1', '9', '5', '0', 's', 'and', '1', '9', '6', '0', 's', '.']\n", "['', 'the', 'album', ',', 'however', ',', 'was', 'shelved', 'for', 'many', 'years', 'until', 'being', 'issued', 'in', 'japan', 'in', '1', '9', '8', '0', ',', 'as', 'blue', 'note', '', '3', '0', '7', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'species', 'of', 'the', 'world', '', 'this', 'species', 'to', 'panama', ',', 'colombia', ',', 'trinidad', 'and', '', ',', 'and', 'bolivia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'a', '', 'with', '', '', 'on', 'the', '2', '0', '1', '1', '``', 'science', \"''\", 'article', '``', 'a', '', 'that', 'can', 'grow', 'by', 'using', '', 'instead', 'of', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'attended', 'barnard', 'college', ',', 'the', 'école', 'des', 'beaux-arts', 'in', 'paris', ',', 'and', 'the', 'yale', 'school', 'of', 'drama', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'unclear', 'how', 'many', 'of', 'these', 'were', 'victims', 'of', 'war', 'crimes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'is', 'based', 'on', 'the', 'protagonist', 'from', 'attack', 'of', 'the', '5', '0', 'foot', 'woman', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'traditionally', ',', '``', 'market', 'garden', \"''\", 'was', 'used', 'to', 'contrast', 'farms', 'devoted', 'to', 'raising', 'vegetables', 'and', '', ',', 'a', 'specialized', 'type', 'of', 'farming', ',', 'with', 'the', 'larger', 'branches', 'of', 'grain', ',', 'dairy', ',', 'and', 'orchard', 'fruit', 'farming', ';', 'agricultural', 'historians', 'continue', 'to', 'thus', 'use', 'the', 'term', '.', '', '', '']\n", "['', 'holocaust', 'historian', 'robert', 'michael', 'argues', 'that', 'niemöller', \"'s\", 'statements', 'were', 'a', 'result', 'of', 'traditional', 'anti-semitism', ',', 'and', 'that', 'niemöller', 'agreed', 'with', 'the', 'nazis', \"'\", 'position', 'on', 'the', '``', 'jewish', 'question', \"''\", 'at', 'that', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'trump', 'did', 'not', '', 'with', 'the', 'european', 'union', 'before', 'imposing', 'the', 'travel', 'ban', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'autumn', ',', 'half', 'the', 'indigenous', 'troops', 'in', '', 'china', 'were', 'allegedly', '', 'to', 'the', 'communists', ',', 'with', '', 'sources', '', 'that', 'up', 'to', '3', '0', 'percent', 'of', 'the', 'entire', 'population', 'of', 'the', 'colony', 'was', 'on', 'its', 'side', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'further', ',', 'the', 'wildlife', 'area', 'regulations', ',', 'a', 'component', 'of', 'the', 'canada', 'wildlife', 'act', ',', 'identifies', 'activities', 'which', 'are', 'prohibited', 'on', 'such', 'areas', 'because', 'they', 'may', 'harm', 'a', 'protected', 'species', 'or', 'its', 'habitat', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'finally', ',', 'in', 'the', 'february', '6', ',', '2', '0', '0', '5', 'episode', ',', '``', 'homer', 'and', '', \"'s\", '', 'mary', 'pass', \"''\", ',', 'comic', 'book', 'guy', '', 'tells', '', 'flanders', ':', '``', 'my', 'name', 'is', 'jeff', '', ',', 'but', 'everyone', 'calls', 'me', '', 'book', 'guy', \"'\", \"''\", '.', '', '']\n", "['', 'the', 'normans', 'conquered', 'england', 'and', 'southern', 'italy', 'in', '1', '1', 'th', 'century', ',', 'and', 'played', 'a', 'key', 'role', 'in', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'second', 'album', ',', 'released', 'in', '2', '0', '1', '2', ',', 'featured', 'collaborations', 'with', 'puerto', 'rican', 'superstar', '', '', ',', 'and', 'cuban', 'star', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'also', ',', 'hydrothermal', 'monazites', 'usually', 'contain', 'low', '', '2', 'content', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'old', '', 'school', 'is', 'located', 'near', '', 'station', 'on', 'the', 'main', 'line', 'of', 'the', 'pennsylvania', 'railroad', 'in', '', 'township', ',', '', 'county', ',', 'pennsylvania', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'born', 'in', '1', '9', '4', '7', 'in', 'copenhagen', ',', 'holdt', 'was', 'the', 'son', 'of', 'the', 'pastor', 'at', '', \"'s\", 'church', 'in', 'copenhagen', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'independence', 'high', 'school', 'is', 'a', 'public', ',', '', 'high', 'school', 'located', 'in', '', ',', 'california', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'to', 'the', 'mobile', '', 'in', 'its', '', ',', 'a', 'device', 'called', 'an', '``', '', \"''\", '', 'to', 'be', 'a', 'legitimate', 'base', 'station', 'of', 'the', 'mobile', 'phone', 'network', ',', 'thus', '', 'the', 'communication', 'between', 'the', 'phone', 'and', 'the', 'network', 'to', 'a', '', 'attack', '.', '', '', '', '', '', '', '']\n", "['', 'in', '', ',', 'chloride', 'is', '', 'to', 'the', '', ',', 'in', 'contrast', 'to', '', 'chloride', 'with', 'an', '', 'bond', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'shannon', '', '#', '', 'he', 'then', 'visits', 'the', '', 'mines', 'on', 'the', '', 'of', 'lough', 'allen', ',', 'with', 'former', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'the', 'former', 'chief', 'and', 'programme', 'director', 'with', 'the', 'united', 'nations', 'environment', 'programme', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'wartime', 'activity', 'left', 'the', 'canal', 'in', 'a', '', 'state', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'june', '1', '0', ',', '2', '0', '0', '9', 'british', 'columbia', 'premier', 'gordon', '', 'promoted', 'yap', 'to', 'the', 'executive', 'council', 'of', 'british', 'columbia', 'as', 'the', 'minister', 'of', 'state', 'for', 'climate', 'action', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'pair', 'of', '', 'occurs', 'on', 'the', 'edge', 'of', 'the', 'leaf', ',', 'about', '5', 'mm', 'from', 'where', 'the', '', '', 'the', 'leaf', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'years', 'of', 'rejection', ',', 'in', '1', '8', '7', '2', 'he', 'was', 'appointed', 'to', 'the', 'paris', '', 'as', 'professor', 'of', 'singing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'tension', 'in', 'the', 'game', 'is', 'that', 'the', '', 'wants', 'to', '', 'the', 'receiver', 'that', 'they', 'have', 'the', '', 'type', ',', 'and', 'they', 'will', 'try', 'to', 'choose', 'a', 'signal', 'to', 'do', 'that', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'hogan', 'and', 'savage', '', 'together', 'at', '', 'house', 'shows', ',', 'nothing', 'more', 'was', 'made', 'of', 'it', 'on', 'national', 'television', 'until', 'shortly', 'before', '', 'iv', ',', 'when', 'hogan', 'rescued', 'savage', 'a', 'similar', 'angle', 'featuring', 'andre', ',', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hoping', 'to', 'put', 'a', 'stop', 'to', 'salvador', \"'s\", 'crimes', ',', 'hillary', '(', '', '', ')', ',', 'salvador', \"'s\", 'wife', ',', 'decides', 'to', 'run', 'for', 'mayor', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'announced', 'her', 'retirement', 'from', 'show', 'business', 'in', '2', '0', '0', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'other', 'hand', ',', 'the', '', 'are', '', 'to', '``', '', \"''\", '(', '', ',', 'earth', 'office', ')', ',', '', 'with', 'the', '``', '', \"''\", '(', '', ',', '``', 'earth', '', ';', '', \"''\", ')', 'of', 'later', 'texts', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'campaign', 'of', 'the', '', 'was', 'the', 'cuban', 'missile', 'crisis', 'and', 'the', 'award', 'was', 'issued', 'for', 'military', 'service', 'between', 'october', '1', '9', '6', '2', 'and', 'june', '1', '9', '6', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', '1', '0', '2', '4', '3', '', ',', 'called', '``', '', \"''\", 'that', 'do', 'not', '', 'with', 'any', 'in', 'the', 'particular', 'basic', 'set', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'took', 'a', 'break', 'after', '', 'in', '2', '0', '0', '7', 'and', 'made', 'a', 'comeback', 'in', '2', '0', '1', '3', 'with', 'the', 'movie', '``', 'rebecca', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'most', 'common', 'audio', '', ',', 'including', 'those', 'used', 'in', '', 'and', 'electromagnetic', 'instrument', '', ',', 'are', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'interested', 'in', '', 'of', 'structure', 'in', 'photography', ',', 'and', 'the', 'step', '', 'the', 'free', 'creation', 'of', 'such', 'structure', 'was', 'a', 'logical', 'and', 'natural', 'one', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'madison', '(', 'sarah', '', ')', 'lives', 'in', 'new', 'orleans', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'year', 'later', ',', 'sister', '', 'sullivan', 'established', 'the', 'great', 'falls', 'normal', 'school', 'to', 'educate', 'teachers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'attended', '', '', '', ',', 'a', 'private', 'catholic', 'school', 'in', 'the', 'historic', 'center', 'of', 'león', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '7', '2', ',', '', 'became', 'a', 'member', 'of', 'the', 'flying', '', 'brothers', ',', 'performing', 'with', 'byron', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'village', 'gets', 'water', 'from', 'this', 'lake', 'for', 'agriculture', 'and', 'household', 'uses', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'the', 'by', 'far', 'the', 'most', 'significant', 'risk', 'factor', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', '', \"''\", 'is', 'an', '', 'species', 'often', 'found', 'high', 'in', 'the', '', 'mostly', 'in', 'humid', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', '', 'was', '', ',', 'chapel', ',', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'entered', 'the', 'field', 'during', 'the', 'early', 'days', '(', '1', '9', '8', '0', 's', ')', 'when', 'competition', 'was', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'smetona', 'joined', 'and', 'chaired', 'a', 'secret', 'lithuanian', 'student', 'organization', ';', 'he', 'was', 'later', 'succeeded', 'by', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'village', 'in', 'the', 'administrative', 'district', 'of', 'gmina', '', ',', 'within', 'sokółka', 'county', ',', '', 'voivodeship', ',', 'in', 'north-eastern', 'poland', ',', 'close', 'to', 'the', 'border', 'with', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'guests', 'included', 'former', 'vice', 'president', 'of', 'the', 'united', 'states', 'al', '', ',', 'the', 'swimmer', 'ian', '', 'and', 'the', 'actress', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'aravena', 'replied', '``', '', \"''\", ',', 'which', 'led', 'kelly', 'to', 'ask', 'why', 'aravena', 'did', 'not', 'flee', 'into', 'the', 'darkness', 'to', 'seek', 'help', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '5', 'april', '1', '9', '4', '4', ',', 'shortly', 'after', 'converting', 'from', '', 'to', '', ',', 'the', 'group', 'successfully', 'bombed', 'and', '', 'german', 'airfields', 'during', 'a', 'snow', '', ',', 'a', 'mission', 'for', 'which', 'the', 'group', 'was', 'awarded', 'a', 'distinguished', 'unit', 'citation', '.', '', '', '', '', '', '', '', '']\n", "['', 'her', 'boyfriend', 'gets', 'up', 'and', '', 'on', 'the', 'door', ',', 'to', 'find', 'there', 'is', 'no', 'response', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', 'brand', 'was', 'established', 'in', '1', '9', '7', '2', 'as', 'a', '', 'school', 'in', '', ',', '', ',', 'italy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'john', 'ferdinand', '``', '', \"''\", 'thompson', 'is', 'a', 'lieutenant', 'general', 'in', 'the', 'united', 'states', 'air', 'force', 'serving', 'as', 'the', 'commander', 'of', 'the', 'space', 'and', 'missile', 'systems', 'center', 'since', 'may', '2', '0', '1', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'three', 'factors', ',', 'plus', 'an', 'estimated', 'cost', 'of', '£', '1', 'million', '(', 'in', '1', '9', '5', '1', ')', 'and', '', 'concerns', 'over', 'the', 'nearby', '', '', 'viaduct', 'made', 'the', 'decision', 'to', 'close', 'the', 'tunnel', 'easy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'had', 'a', '', '', ',', 'a', 'structure', 'that', 'could', 'have', 'developed', 'into', 'a', '', 'column', 'later', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', '', 'that', 'the', '', 'are', 'possible', 'solutions', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'brighton', 'mall', 'opened', 'in', 'november', '1', '9', '7', '1', 'as', 'a', 'small', 'enclosed', 'mall', ',', 'with', 'an', 'the', 'great', 'atlantic', '&', 'amp', ';', 'pacific', 'tea', 'company', '(', 'a', '&', 'amp', ';', 'p', ')', 'supermarket', ',', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'along', 'the', '', 'are', 'some', 'of', 'the', 'largest', 'lakes', 'in', 'italy', '(', '', ',', '', ',', 'and', '', ')', 'while', 'numerous', 'rivers', 'and', 'streams', '(', '', ',', '', ',', '', ',', '', ',', 'and', 'the', '', ')', 'cut', 'the', 'mountains', 'into', 'deep', 'and', 'narrow', 'valleys', '.', '', '', '', '']\n", "['', 'pease', 'then', 'studied', 'medicine', 'at', 'rush', 'medical', 'college', 'and', 'practiced', 'medicine', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'short', 'but', 'bloody', 'campaign', 'occurred', 'in', 'which', 'a', 'number', 'of', 'british', 'men', 'and', 'officers', 'were', 'killed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', '', 'state', 'highway', '1', 'is', 'where', 'the', 'rails', 'used', 'to', 'be', ',', 'with', 'a', '', 'bank', 'to', 'the', 'west', 'and', 'a', 'platform', 'to', 'the', 'east', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'castle', '(', 'or', '', 'castle', ')', '(', '``', '', '', \"''\", ',', 'irish', 'for', 'pig', 'island', ')', 'is', 'a', 'ruined', 'tower', 'house', 'located', 'in', '', 'civil', 'parish', 'of', 'county', '', ',', 'ireland', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'closing', 'stages', 'of', 'the', 'contest', 'saw', '', 'and', 'his', 'principal', 'rival', '', 'racing', 'on', 'opposite', 'sides', 'of', 'the', 'course', 'and', 'the', '', 'judge', 'declared', 'a', 'dead', 'heat', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'beginning', 'of', 'the', '2', '1', '', 'there', 'was', 'over', '', '', '', '(', '``', '', '', \"''\", ')', 'and', 'many', 'canada', '', '(', '``', '', '', \"''\", ')', 'due', 'to', 'feeding', 'them', 'out', 'of', 'date', 'items', 'from', 'a', 'local', '', '.', '', '', '', '', '', '', '']\n", "['', 'the', 'film', 'concerns', 'a', 'man', 'called', 'mr.', '', '(', '', ')', 'trying', 'to', '', 'car', 'insurance', 'after', 'he', 'has', 'been', 'convicted', 'of', 'drunk', 'driving', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'previously', ',', 'it', 'had', 'also', 'hosted', 'the', '1', '9', '8', '1', 'and', '1', '9', '9', '1', 'editions', 'of', 'the', 'games', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '', \"'s\", 'east', 'central', 'district', ',', 'the', 'property', 'acquisition', 'process', 'has', 'been', 'ongoing', 'since', 'june', '2', '0', '1', '0', 'and', 'includes', 'the', 'acquisition', 'and', 'demolition', 'of', '6', '0', '6', 'homes', ',', 'businesses', 'and', 'industrial', 'buildings', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'unit', 'became', '``', 'escadrille', 'spa', '7', '3', '``', 'when', 'it', '', 'with', '', '', 'in', 'january', '1', '9', '1', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '2', '0', '1', '5', 'has', 'a', '6', 'm', '2', 'solar', 'array', ',', 'using', '', 'cells', 'from', '', 'solar', 'technology', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'native', 'vegetation', 'is', 'mostly', 'woody', ',', '', '', 'in', 'the', '', '', ',', 'with', 'scattered', '', '', '', 'plants', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', '2', '0', '1', '9', ',', 'there', 'are', 'nine', 'national', 'monuments', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'later', ',', 'lance', 'says', 'that', 'reno', \"'s\", 'ways', 'of', 'doing', 'things', 'attract', 'too', 'much', 'attention', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'had', '', 'been', 'used', 'for', 'hunting', ',', 'and', 'not', 'yet', 'developed', 'very', 'much', 'for', 'agriculture', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'all', 'her', 'books', 'are', '', 'in', 'canada', 'and', 'germany', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'included', '6', 'korean', 'songs', ',', '6', 'japanese', 'songs', 'and', '2', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'ceased', 'to', 'exist', 'after', 'the', '', 'of', 'seats', 'in', '2', '0', '0', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', 'to', 'the', 'complete', 'version', ',', 'the', 'archives', 'also', 'holds', 'an', '', 'print', 'of', 'episode', '1', ',', 'returned', 'from', 'abc', 'in', 'australia', 'in', 'late', '1', '9', '7', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bengali', 'communist', '', 'had', 'arrived', 'in', 'the', 'hajong', 'areas', 'in', 'the', '1', '9', '3', '0', 's', ',', 'and', 'helped', 'to', '', 'the', 'hajong', 'peasants', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'were', '1', '1', ',', '0', '1', '6', 'housing', 'units', 'at', 'an', 'average', 'density', 'of', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'company', 'remains', 'family', 'owned', 'with', 'production', 'still', 'based', 'in', '', ',', 'operating', 'out', 'of', 'the', '1', '0', '0', ',', '0', '0', '0', '-square-foot', 'facility', 'it', 'relocated', 'to', 'in', '1', '9', '7', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'his', 'career', ',', 'harris', 'served', 'on', 'the', 'board', 'of', 'the', '', 'technical', 'foundation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'masuku', ',', 'a', 'trusted', '', 'of', 'king', '', 'and', 'leader', 'of', 'the', '', 'regiment', 'fought', 'prince', '', 'as', 'he', 'did', 'not', 'believe', 'that', 'he', 'was', 'the', 'legitimate', 'heir', 'to', 'the', 'throne', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'penrith', 'again', 'reached', 'the', 'grand', 'final', 'in', 'a', '', 'of', 'the', 'previous', 'years', '', 'against', 'canberra', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'egyptian', 'occupation', 'of', '', ',', 'there', 'were', 'temple', 'towns', 'with', 'egyptian', '', ',', 'but', '``', 'production', 'and', '', \"''\", 'was', 'based', 'mostly', 'on', 'indigenous', 'social', 'structures', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '6', '0', '0', 'he', 'had', 'a', 'portrait', 'painted', 'by', 'el', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'had', 'the', 'responsibility', 'to', '', 'with', 'the', 'political', 'parties', 'to', 'bring', 'them', 'to', 'participation', 'in', 'the', 'election', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'part', '3', ':', 'the', '``', 'application', \"''\", 'focus', 'mainly', 'on', 'the', 'application', 'of', '', 'principles', 'on', 'four', 'regions', ',', 'the', '', 'zone', ',', 'the', 'cold', 'zone', ',', 'the', '', 'zone', 'and', 'the', 'warm', 'humid', 'zone', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'elizabeth', '', '', 'is', 'an', 'american', 'attorney', 'serving', 'as', 'the', 'acting', 'solicitor', 'general', 'of', 'the', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'renamed', '', ',', 'it', 'was', 'created', 'a', '', 'of', '', ',', 'and', 'became', 'the', 'seat', 'of', 'a', 'considerable', 'trade', ',', 'including', 'a', 'family', 'owned', 'brewery', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'author', 'thomas', 'alexander', '', ',', 'better', 'known', 'by', 'his', '', '', '', ',', 'wrote', 'the', 'novel', '``', 'the', '', 'of', 'eaglehawk', \"''\", 'in', '1', '8', '9', '5', ',', 'based', 'on', 'his', 'experiences', 'as', 'a', 'station', 'owner', 'in', 'the', 'area', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'other', 'european', 'markets', 'and', 'south', 'africa', ',', 'the', 'hilux', 'was', 'built', 'in', '', ',', 'south', 'africa', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'incarnation', 'met', 'with', 'limited', 'success', ',', 'so', 'in', '1', '9', '9', '8', ',', 'the', 'selection', 'was', 'expanded', 'to', 'include', 'all', 'of', '', \"'s\", '', 'categories', ',', 'and', 'the', 'word', '', 'was', 'removed', 'from', 'the', 'network', \"'s\", 'name', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'institution', 'merged', 'with', 'monash', 'university', 'in', '1', '9', '9', '0', 'and', 'became', 'monash', 'university', ',', 'caulfield', 'campus', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', '', 'web', '', 'provider', '', ',', 'the', 'site', 'received', 'over', '4', '0', 'million', 'visits', 'per', 'month', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'fully', 'qualified', 'name', 'with', 'drive', ',', 'path', ',', 'and', 'extension', ',', 'which', 'is', 'found', 'possibly', 'by', 'name', 'only', 'via', 'the', 'path', 'environment', 'variable', ',', 'or', 'through', 'codice_', '1', ',', 'codice_', '6', 'and', 'codice_', '1', '3', '', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'angela', ',', 'who', 'has', 'come', 'to', 'the', 'station', 'to', 'meet', 'her', 'sister', ',', 'sees', 'her', 'lover', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'of', 'the', 'castle', '', 'the', 'river', ',', 'just', 'south', 'of', 'the', 'cathedral', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'designs', 'can', 'also', 'be', 'found', 'in', '``', \"''\", 'for', 'the', 'super', '', 'and', 'in', '``', 'front', 'mission', '3', '``', 'for', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '5', 'april', '2', '0', '1', '0', ',', 'de', '', 'revealed', 'that', 'they', 'are', 'working', 'on', 'a', 'new', 'album', ',', 'during', 'an', 'interview', 'he', 'gave', 'during', '', '', '', \"'\", ',', 'a', 'radio', 'show', 'on', 'the', 'belgian', 'radio', 'station', ',', 'studio', '', '.', '', '', '', '', '', '', '']\n", "['', 'for', 'example', ',', 'the', '4', 'th', 'company', ',', 'washington', 'artillery', '(', '', \"'s\", ')', 'was', 'equipped', 'with', 'two', '6', '-pounders', 'and', 'two', '1', '2', '-pounder', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'village', ',', 'also', 'called', 'our', 'town', ',', 'is', 'a', 'community', 'in', 'the', '', 'region', 'and', 'is', 'characterized', 'by', 'a', '', 'climate', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'august', '2', '0', '0', '6', ',', 'the', 'government', 'of', 'guatemala', 'declared', 'a', '2', '0', '0', '3', 'contract', 'for', 'the', '', 'of', 'rolling', 'stock', 'and', 'other', 'equipment', 'as', '', 'to', 'public', 'interest', '(', '``', \"''\", ')', ',', '', 'it', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'shirakawa', 'is', 'then', 'supposed', 'to', 'attack', 'the', 'sleeping', 'kabamaru', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'followed', 'this', 'up', 'on', '1', '1', 'may', 'with', 'victory', 'over', '', '', 'at', 'the', 'israel', 'f', '5', 'futures', 'in', '', ',', 'reaching', 'the', 'final', 'without', 'dropping', 'a', 'set', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', 'at', 'least', 'one', 'source', 'suggests', 'that', 'only', 'five', 'victories', 'are', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'ground', 'floor', 'of', 'the', 'jefferson', 'station', 'was', 'formerly', 'occupied', 'by', 'restaurants', 'such', 'as', 'subway', ',', '', '', '(', '', ')', 'and', 'tom', \"'s\", 'first', 'avenue', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'their', 'children', ',', 'described', 'as', '``', '', '', \"''\", ':', 'abraham', 'lincoln', ',', '', ',', '', ',', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'song', 'was', 'performed', 'by', 'underwood', 'on', 'her', '', 'pretty', 'tour', '3', '6', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'roy', 'is', 'credited', 'with', '', 'the', 'initiative', 'and', 'planning', 'underwater', '', 'operations', 'behind', 'enemy', 'lines', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'fire', 'and', 'rescue', 'service', 'said', 'the', 'incident', 'happened', 'at', '1', '1', ':', '3', '0', '', ';', 'due', 'to', 'heavy', 'rain', 'and', 'reduced', '', 'it', 'was', 'not', 'possible', 'for', 'the', 'air', 'ambulance', 'to', 'land', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'research', 'institute', 'engages', 'in', '', '', 'across', 'a', 'wide', 'range', 'of', 'topics', 'including', 'global', 'economics', 'to', '', ',', 'to', 'health', 'and', 'education', 'etc', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'to', 'raise', 'further', 'funds', ',', '', 'sold', 'a', 'plot', 'of', 'land', 'for', '£', '1', '6', '3', ',', '0', '0', '0', 'to', 'the', 'municipal', 'administration', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'designed', 'by', '', 'corporation', ',', 'with', '', ',', '', 'and', '', 'designing', 'the', 'roof', 'feature', 'and', 'interior', 'design', 'by', '', ',', 'terminal', '3', '', 'from', 'the', 'largely', '', 'architecture', 'in', 'the', 'first', 'two', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'died', 'in', '2', '0', '0', '4', ',', 'aged', '9', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', ')', 'is', 'a', 'rural', 'locality', '(', 'a', 'village', ')', 'in', '', 'selsoviet', ',', '', 'district', ',', '', ',', 'russia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'the', 'late', '1', '4', '0', 's', 'bc', ',', 'ptolemy', '', 'had', 'been', 'promoted', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'names', 'he', 'was', 'known', 'to', 'perform', 'under', 'include', ':', 'j', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', 'result', ',', 'mallard', 'announced', 'that', 'it', 'would', 'no', 'longer', 'be', 'compulsory', 'to', 'wear', 'ties', 'in', 'parliament', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'imag', 'grew', 'out', 'of', 'the', 'first', 'nations', 'arts', 'performance', 'group', '(', '', ')', ',', 'which', 'was', 'organized', 'by', '', '', 'and', 'operated', 'out', 'of', 'video', 'in', 'from', '1', '9', '9', '2', 'until', '1', '9', '9', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'any', 'intervention', 'on', 'this', 'type', 'of', 'cultural', 'property', 'requires', 'previous', 'approval', 'and', 'their', '', 'is', 'forbidden', ',', 'except', 'when', 'authorized', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'victoria', '', 'ran', 'out', 'of', 'money', 'after', 'reaching', '', 'late', 'in', '1', '8', '7', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'a', '', 'military', 'barracks', 'within', 'the', 'walls', 'dating', 'from', 'the', 'early', '1', '8', 'th-century', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '2', '0', '0', '9', 'census', 'it', 'had', 'a', 'population', 'of', '1', '1', ',', '8', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'david', '', 'hoffman', 'is', 'an', 'american', 'writer', 'and', 'journalist', ',', 'a', 'contributing', 'editor', 'to', '``', 'the', 'washington', 'post', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'rights', 'group', '', 'claim', 'that', 'some', 'attacks', 'are', '', 'motivated', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'hawaii', ',', 'sharon', 'found', 'skye', ',', 'but', 'after', 'an', 'argument', ',', 'skye', 'fell', 'to', 'her', 'death', 'in', 'a', 'volcano', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'final', 'round', '', 'in', '1', '9', '8', '3', 'was', 'over', '2', '0', ',', '0', '0', '0', ',', 'and', 'this', 'was', 'the', 'first', 'year', 'that', '', 'were', 'invited', ';', 'two', 'made', 'the', 'cut', 'and', 'future', 'major', 'winner', '', 'baker', 'was', 'the', 'low', 'amateur', '.', '', '', '', '', '', '']\n", "['', 'the', 'site', 'aims', 'to', 'be', 'the', 'number', 'one', 'source', 'of', 'news', 'and', 'reviews', 'for', 'all', 'types', 'of', 'british', 'films', 'from', 'mainstream', 'to', '', ',', 'from', 'studio', 'to', 'independent', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'abbey', 'of', '', 'ter', '', 'plant', '(', '``', 'our', 'lady', 'of', 'the', 'new', 'plantation', \"''\", ';', ')', ',', 'formerly', 'also', 'roesbrugge', 'abbey', '(', ')', 'is', 'a', 'community', 'of', '', '', 'belonging', 'to', 'the', 'congregation', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'later', 'in', 'life', ',', 'he', 'suffered', 'from', 'the', 'medical', 'condition', '', ',', 'resulting', 'in', '(', 'often', 'severe', ')', '', 'of', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'not', 'typically', 'viewed', 'as', 'the', 'most', 'prominent', 'columbus', 'neighborhood', ',', 'the', 'density', 'of', 'academic', 'and', '', 'institutions', 'in', 'this', 'area', 'are', 'what', 'make', 'this', 'creative', 'campus', 'unique', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'notable', 'bird', 'species', 'include', '', ',', 'wild', '', 'and', 'large', 'birds', 'of', 'prey', 'like', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'jackson', 'w.', 'moore', 'is', 'an', 'american', 'attorney', 'and', 'retired', 'executive', 'chairman', 'of', 'union', '', 'bank', 'and', 'regions', 'financial', 'corporation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'move', '', 'a', '3', '0', '%', '', 'of', 'the', '', ',', 'and', 'was', 'met', 'with', 'both', 'criticism', 'and', 'praise', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'wife', ',', 'zong', ',', 'was', 'a', 'granddaughter', 'of', 'zong', '', '(', '', ',', 'died', '7', '1', '0', ')', ',', 'an', 'important', 'government', 'official', 'during', 'the', 'tang', 'dynasty', 'and', 'the', '', 'period', 'of', 'wu', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'along', 'with', '', 'are', 'various', 'forms', 'of', 'live', 'entertainment', 'and', '', '', 'for', 'guests', 'to', 'enjoy', ',', 'such', 'as', 'its', 'traditional', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'became', 'the', 'first', 'chinese', 'pair', 'to', 'win', 'a', 'medal', 'at', 'the', 'olympics', 'for', 'figure', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'case', 'also', 'served', 'to', '', 'that', 'the', 'balance', 'of', '', 'is', 'the', '', 'standard', 'of', 'proof', 'in', 'civil', 'proceedings', ',', 'subject', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'darla', 'and', '', \"'s\", 'plan', 'goes', 'into', 'effect', 'when', 'angel', 'breaks', 'into', 'her', 'home', 'in', 'time', 'to', 'find', 'himself', '', 'for', '', 'darla', \"'s\", 'supposed', 'husband', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '3', '7', 'he', 'appeared', 'in', 'a', 'small', 'role', 'in', '``', '', \"''\", ',', 'the', 'sound', 'version', 'of', 'the', '1', '9', '1', '0', 's', 'play', 'in', 'which', 'he', 'had', 'starred', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'is', 'renowned', 'for', 'its', 'three', 'sets', 'of', '', 'important', 'bronze', 'doors', 'with', 'relief', 'sculptures', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'and', 'as', 'a', 'measure', 'to', 'counter', 'weapon', 'and', '', 'trafficking', 'between', 'egypt', 'and', '', 'strip', ',', 'the', 'egyptian', 'government', 'announced', 'the', 'creation', 'of', 'a', '', 'zone', 'along', 'the', '', 'border', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'land', 'is', '', 'today', 'but', 'was', 'well', 'wooded', 'when', 'the', 'bible', 'was', 'written', ',', 'especially', 'on', 'the', 'hills', 'east', 'of', 'the', 'jordan', 'river', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'since', 'the', 'practice', 'is', 'held', 'to', 'come', 'from', 'doctrine', ',', 'this', 'is', '', '', 'applied', 'to', 'practice', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', 'won', 'one', 'award', 'and', 'additionally', 'received', 'three', 'nominations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'affair', ',', 'an', 'attempt', 'to', '', 'the', 'investigation', 'of', '', 'leader', '', '', ',', 'created', 'tension', 'within', 'the', 'partners', ',', 'as', 'did', '', \"'s\", 'unclear', 'policies', 'on', 'peace', 'negotiations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'formerly', 'classified', 'in', 'the', 'genus', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'film', 'was', 'one', 'of', 'the', 'final', 'projects', '', '', 'worked', 'on', 'in', 'her', 'native', 'australia', 'before', 'achieving', 'mainstream', 'international', 'success', 'with', '1', '9', '9', '0', \"'s\", '``', 'days', 'of', 'thunder', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '9', '4', ',', 'the', '', '&', 'amp', ';', '', 'company', 'was', 'worth', '$', '1', ',', '0', '0', '0', ',', '0', '0', '0', ',', 'as', 'the', 'majority', 'of', 'its', 'wealth', 'was', 'kept', 'in', 'the', '', 'national', 'bank', 'in', 'london', ',', 'where', '', 'was', 'the', 'director', '.', '', '']\n", "['', '', 'is', 'located', 'in', 'the', 'eastern', 'part', 'of', 'the', 'municipality', ',', '4', '1', 'km', 'southeast', 'of', 'belgrade', 'and', '7', 'km', 'south', 'of', 'the', 'municipal', 'seat', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', '', ',', 'the', '', 'people', 'of', '', '', 'could', 'eat', 'rat', 'meat', ',', 'but', 'the', 'king', 'was', 'not', 'allowed', 'to', ',', 'due', 'to', 'the', 'islanders', \"'\", 'belief', 'in', 'his', '``', 'state', 'of', '', \"''\", 'called', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'began', 'scouting', 'and', 'holding', '', 'camps', 'for', 'the', 'new', 'team', 'in', 'the', 'fall', 'of', '1', '9', '6', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'born', 'in', '', 'of', '', 'district', 'in', '', 'pradesh', 'in', '1', '9', '4', '6', 'he', 'studied', '', ',', '', ',', '', ',', '', 'at', '', 'university', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'fielding', \"'s\", 'patron', 'was', 'the', 'opposition', 'whig', 'mp', 'george', 'lyttelton', ',', 'a', '', 'friend', 'from', 'eton', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'original', 'wheat', '', 'brand', 'introduced', 'by', 'heaven', 'hill', 'in', '2', '0', '0', '5', 'was', 'also', 'named', 'after', 'the', '', 'brothers', ',', 'the', '', 'company', 'they', 'founded', ',', 'and', 'the', 'modern', '', 'that', 'bears', 'their', 'name', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'younger', 'brother', ',', '', '', ',', 'was', 'a', 'less', 'notable', 'roman', 'composer', 'and', 'had', 'a', 'similar', 'career', 'as', 'a', 'vatican', 'music', 'provider', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', '``', '', 'alpha', \"''\", 'was', 'updated', 'and', 'expanded', 'into', '``', 'gamma', 'world', \"''\", ',', 'it', 'seemed', 'the', 'right', 'time', 'for', 'gygax', 'to', '', '``', 'expedition', 'to', 'the', 'barrier', 'peaks', \"''\", 'to', 'the', 'public', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'later', 'studied', 'at', 'a', 'teacher', 'training', 'institute', 'before', 'earning', 'a', 'diploma', 'in', 'theology', 'at', '', 'theological', 'college', 'in', '', '(', 'today', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'indeed', ',', 'rats', 'became', 'a', 'currency', 'in', 'the', 'trade', 'system', 'of', 'the', 'prisoners', 'for', 'other', 'supplies', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'faculty', 'consists', 'of', 'principal', ',', '5', '0', 'teachers', 'and', 'two', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'buried', 'in', 'the', 'christian', 'churchyard', 'of', '', '', 'in', 'the', 'hague', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'promoted', 'to', 'lieutenant', 'on', '1', '1', 'october', '1', '8', '5', '1', ',', 'he', '', 'for', 'a', 'second', 'mission', 'this', 'time', 'in', 'the', '', 'which', 'was', '', 'in', '1', '8', '5', '2', ',', 'under', 'the', 'command', 'of', 'captain', 'henry', '', ',', 'in', 'search', 'of', 'franklin', '.', '', '', '', '', '']\n", "['', 'he', 'told', 'his', 'family', 'when', 'he', 'was', '1', '8', 'and', ',', 'after', 'a', 'rocky', 'period', ',', 'they', 'accepted', 'it', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'character', 'has', 'been', 'criticized', 'by', 'people', 'who', 'believe', 'that', '', 'the', '', 'persons', ',', 'but', '', 'says', 'that', 'he', 'has', 'poor', 'vision', 'himself', 'and', 'does', 'not', '', 'to', 'do', 'any', 'harm', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'born', 'in', 'sydney', ',', 'new', 'south', 'wales', ',', '', 'is', 'of', '', 'descent', 'and', 'played', 'his', 'junior', 'rugby', 'league', 'for', 'the', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '(', '1', '2', 'october', ')', ',', 'and', 'was', 'elected', '(', '1', '1', 'december', ')', 'fellow', 'of', 'lincoln', 'on', 'the', '', 'of', 'the', 'chancellor', 'of', 'the', 'university', ',', 'oliver', 'cromwell', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'feeding', 'damage', 'takes', 'the', 'form', 'of', 'holes', 'in', 'the', 'leaves', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'other', 'two', 'deputy', '', '(', 'housing', ',', '', 'and', 'sport', ';', 'building', 'policy', 'and', 'asset', 'management', ')', 'are', 'also', 'supported', 'by', 'their', 'own', 'assistant', 'director-general', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'are', 'rather', 'large', ',', '', '', ',', 'well', 'rounded', ',', 'and', 'about', 'half', '', 'in', 'the', 'first', 'of', 'the', '', 'turns', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'genus', 'was', 'introduced', 'by', 'the', 'dutch', '', '', '', 'in', '1', '7', '8', '3', 'for', 'a', 'single', 'species', ',', 'the', '', '', '(', '``', '', '', \"''\", ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'part', 'of', 'the', '``', '', '', '', \"''\", '(', 'lower', 'saxony', 'wadden', 'sea', 'national', 'park', ')', ',', 'one', 'of', 'three', 'german', 'wadden', 'sea', 'national', 'parks', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', 'the', 'census', 'of', '2', '0', '1', '0', ',', 'there', 'were', '1', '0', ',', '4', '2', '8', 'people', 'living', 'in', 'the', 'city', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '9', ',', 'he', 'was', 'elected', 'as', 'president', 'of', 'the', '', 'football', 'association', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'married', '', \"'s\", 'daughter', ',', 'and', ',', 'being', 'invited', 'to', 'florence', 'to', '', 'the', '', 'of', 'the', '', 'gallery', ',', 'he', 'removed', '', 'with', 'his', 'wife', 'in', '1', '7', '8', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'grove', 'of', 'white', '', ',', '', 'by', 'girl', 'scouts', 'in', 'the', 'late', '1', '9', '6', '0', 's', ',', 'offers', 'visitors', 'a', 'cool', ',', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '', 'round', ',', 'each', 'team', 'played', 'games', 'against', 'the', 'other', 'three', 'teams', 'in', 'its', 'group', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '4', '0', ',', 'he', 'went', 'to', 'reside', 'in', 'rome', ',', 'where', 'he', 'executed', 'the', '``', 'north', 'american', 'indian', ',', \"''\", 'which', 'was', 'the', 'first', 'distinctive', 'american', 'piece', 'of', 'sculpture', 'made', 'in', 'rome', ',', 'and', 'attracted', 'a', 'large', 'number', 'of', 'italians', 'to', 'his', 'studio', '.', '', '', '']\n", "['', 'the', 'conservative', 'media', 'in', 'iran', '', 'ahmadinejad', \"'s\", 'speech', ',', 'while', 'the', '', 'press', 'focused', 'on', 'the', '', 'and', 'demonstrations', ',', 'but', 'without', '', 'the', 'president', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'part', 'of', 'the', 'larger', 'skagit', 'valley', 'arts', 'community', ',', '', 'on', 'the', 'town', 'of', 'la', '', ',', 'but', 'was', '', 'and', 'isolated', ',', 'without', 'electricity', 'or', '', ',', 'and', '', 'to', 'attract', 'younger', 'and', 'more', '', 'artists', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'summoned', 'the', 'brethren', '(', 'among', 'them', 'her', 'father', ')', ',', 'and', 'they', 'ultimately', 'decided', 'to', 'initiate', 'her', 'into', 'the', 'lodge', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', ',', 'who', 'participated', 'in', 'the', 'capture', 'on', 'the', 'partisan', 'side', ',', 'wrote', 'in', 'his', '1', '9', '6', '2', 'memoir', '``', 'winning', 'freedom', \"''\", ':', '``', 'we', 'had', 'reached', 'a', 'grand', 'and', 'most', 'significant', 'victory', 'in', 'eastern', 'bosnia', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'intersection', 'had', 'previously', 'been', 'called', 'kay', \"'s\", 'corner', ',', 'after', 'the', 'w.', 'l.', 'kay', '&', 'amp', ';', 'co.', '', 'on', 'the', 'southeast', 'corner', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'acid', 'mine', 'drainage', '', 'hundreds', 'of', 'miles', 'of', 'streams', 'in', 'pennsylvania', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'afterward', 'ordered', 'to', 'the', 'south', ',', 'and', 'was', 'surrendered', 'by', 'general', 'lincoln', 'at', 'charleston', 'in', '1', '7', '8', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'a', 'professor', 'and', 'chairman', 'of', 'the', 'department', 'of', 'psychology', 'at', 'the', 'university', 'of', 'indiana', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'studied', 'under', 'simon', '', 'and', 'became', 'a', 'friend', 'of', 'charles', 'le', '', ',', 'who', 'was', 'working', 'in', 'the', 'same', 'studio', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'jan', 'jerzy', 'przebendowski', \"'s\", 'death', ',', 'the', 'palace', 'was', 'inherited', 'by', 'his', 'daughter', '', '', ',', 'then', 'by', '', 'jerzy', 'przebendowski', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', '2', '0', 'th', 'century', '', 'focused', 'on', '', \"'s\", 'castle', ',', 'a', '1', '5', 'th', 'century', 'tower', 'house', 'which', 'became', 'a', '', 'magazine', 'for', 'a', 'period', ',', 'prior', 'to', 'its', 'demolition', 'in', 'the', 'late', '1', '8', 'th', 'century', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'two', 'years', ',', '', 'made', 'many', 'trips', 'to', 'london', 'by', 'british', 'rail', '', 'and', 'on', 'occasions', 'flew', 'back', 'to', 'edinburgh', 'for', 'an', 'evening', 'surgery', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'church', 'has', 'a', 'baroque', 'altarpiece', '', 'of', 'wood', 'by', 'abel', '', 'in', '1', '6', '6', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'intended', 'to', 'pressure', 'president', 'wilson', 'to', 'support', 'an', 'amendment', ',', 'he', '', 'their', 'demands', 'for', 'years', 'afterward', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'orchestra', \"'s\", 'primary', 'concert', 'venue', 'is', 'the', '', 'hall', ',', 'manchester', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '2', '0', '0', '7', 'elections', ',', 'the', 'citizens', 'of', 'medicine', 'hat', 'elected', 'one', 'mayor', ',', 'eight', '', '(', 'all', 'at', 'large', ')', ',', 'the', 'five', 'medicine', 'hat', 'school', 'district', 'no', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'robert', '', ',', 'the', 'historian', ',', 'was', 'minister', 'at', 'eastwood', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'under', 'the', 'diplomacy', 'of', 'the', 'military', 'regime', ',', 'there', 'were', '', '', 'with', 'turkey', ',', 'which', 'suspected', 'that', 'the', 'greek', 'regime', 'was', 'planning', 'a', '', 'coup', 'in', 'cyprus', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'died', 'on', '1', '7', 'october', '1', '9', '8', '9', ',', 'aged', '8', '0', ',', 'as', 'the', 'archbishop', 'emeritus', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'among', 'the', 'factors', 'for', 'this', 'growth', 'are', 'the', 'opening', 'of', 'br-', '1', '7', '4', '(', '', '', ')', ',', 'and', 'the', 'development', 'campaign', 'by', 'the', 'government', 'of', '', ',', 'including', 'the', 'opening', 'of', 'diamond', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'sisters', 'are', 'shown', 'in', 'a', 'house', 'playing', 'their', 'guitars', 'and', 'singing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'despite', 'lack', 'of', 'support', 'from', 'the', 'group', \"'s\", 'record', 'label', ',', 'it', 'soon', 'grew', 'into', 'an', 'underground', 'classic', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', 'side', 'project', ',', 'guitarist', '', 'plays', 'in', 'a', '', 'tribute', 'band', 'called', 'new', 'original', '', 'sound', ',', 'featuring', 'members', 'of', '', 'and', 'the', 'young', 'fresh', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'los', 'angeles', 'times', \"''\", 'writer', '', 'wood', '', '', 'for', 'being', 'able', 'to', 'create', 'a', '``', 'sense', 'of', '', \"''\", 'in', 'such', 'an', '``', '', 'space', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'malaysia', 'airlines', 'also', 'flew', 'to', 'mexico', 'city', 'between', '1', '9', '9', '4', 'and', '1', '9', '9', '8', 'with', '', 'rights', 'to', 'carry', 'passengers', 'between', 'mexico', 'city', 'and', 'los', 'angeles', ',', 'en', 'route', 'to', 'kuala', 'lumpur', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'have', 'been', 'new', '', 'such', 'as', 'chemical', '', '', '(', '', ')', 'along', 'with', 'different', 'variations', 'and', '', 'to', 'the', 'existing', 'methods', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'jasmine', '', 'evidence', 'and', 'tries', 'to', 'talk', 'to', 'jac', ',', 'who', 'refuses', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'located', '', 'group', '', '', 'acquired', 'kw', 'in', 'december', '2', '0', '0', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'won', 'in', '1', '9', '7', '5', 'for', '``', 'the', 'story', 'of', '', 'h.', \"''\", ',', 'while', '', 'was', 'awarded', 'for', 'her', 'performances', 'in', '``', 'the', 'immigrant', \"''\", 'and', '``', 'two', 'days', ',', 'one', 'night', \"''\", 'in', '2', '0', '1', '4', '.', '', '', '', '', '', '', '', '']\n", "['', 'employees', 'pay', '1', '.', '2', '%', 'of', 'their', 'gross', 'salary', 'below', 'the', 'social', 'security', 'threshold', 'and', 'employers', 'pay', '1', '.', '2', '%', 'contribution', 'on', 'top', 'of', 'the', 'salary', 'paid', 'to', 'the', 'employee', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'song', 'was', 'ranked', '4', 'th', ',', 'missing', '3', 'rd', 'place', 'by', '3', 'votes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'next', 'year', ',', 'healthsouth', 'expanded', 'into', 'two', 'new', 'fields', ',', 'worker', \"'s\", 'compensation', 'and', 'sports', 'medicine', ',', 'allowing', 'the', 'company', 'to', 'double', 'its', 'earnings', 'and', 'obtain', 'assets', 'close', 'to', '$', '1', '0', '0', 'million', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'though', 'danny', 'bonaduce', 'was', 'not', 'part', 'of', 'the', 'session', 'band', ',', 'he', 'also', 'got', 'a', 'recording', 'contract', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'raj', 'tells', 'her', 'that', 'he', 'can', 'help', 'her', 'out', 'if', 'she', 'agrees', 'to', '', 'with', 'him', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'company', 'specialized', 'in', 'manufacturing', 'parts', ',', 'as', 'well', 'as', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'their', 'third', 'album', 'and', 'first', 'with', 'marcus', '', ',', '``', '', \"''\", ',', 'was', 'released', 'on', 'march', '1', '3', ',', '2', '0', '2', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'at', '1', '1', ':', '1', '0', 'a.m.', 'the', '', 'river', 'express', '', 'into', '', 'at', '5', '0', 'mph', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', 'meaning', '', 'dry', 'island', \"'\", ')', 'had', 'no', 'permanent', 'water', 'supply', ',', 'and', 'no', 'permanent', '', 'settlement', 'was', 'established', 'there', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '9', 'it', 'was', 'reported', 'that', '', ',', 'which', 'cap', 'the', 'end', 'of', '', ',', '', 'in', 'a', '', 'structure', 'termed', 'a', '', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '3', '1', 'a', '', 'near', 'the', 'castle', 'burnt', 'down', 'exposing', 'the', '', 'of', 'a', 'tower', 'on', 'the', 'north', 'west', 'of', 'the', 'site', 'and', 'during', '1', '9', '3', '6', 'the', '', 'was', 'restored', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'active', 'in', 'trading', 'during', 'the', 'road', \"'s\", 'history', 'included', '', ',', 'ancient', 'and', 'byzantine', 'greece', ',', 'the', 'han', 'and', 'tang', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', '', 'and', 'the', 'mongol', 'empire', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'order', 'to', 'explain', 'how', 'a', 'human', 'views', 'him', 'or', 'herself', ',', 'two', 'different', '', 'views', 'of', '', 'exist', ':', 'the', '', 'and', '', 'views', 'of', 'self', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'said', ',', '``', 'it', 'is', '', 'rare', ',', 'even', 'within', 'the', 'religious', 'right', ',', 'to', 'see', 'a', 'group', 'display', 'simultaneously', 'such', 'a', 'poor', 'understanding', 'of', 'history', 'and', 'a', 'remarkable', 'lack', 'of', 'respect', 'for', 'religious', 'diversity', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'only', 'episodes', '1', 'and', '3', 'of', 'this', 'serial', 'exist', 'in', 'the', 'bbc', 'archives', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'kaziranga', 'started', 'in', '1', '9', '0', '8', 'as', 'a', 'reserve', 'forest', 'to', 'protect', '', 'and', 'other', 'wild', 'animals', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'wolverine', ',', 'who', 'happens', 'to', 'be', '', 'on', 'the', 'island', ',', 'recognizes', 'cyber', \"'s\", '', 'on', '', 'and', 'tracks', 'cyber', 'to', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'principle', 'of', '``', '', '', \"''\", 'had', 'been', 'repeatedly', 'used', 'in', '', 'election', 'by', '', 'to', '', 'malay', 'support', 'for', 'the', 'party', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'country', 'music', 'superstar', '', 'brooks', 'filmed', 'his', 'first', 'television', 'special', ',', '``', 'this', 'is', '', 'brooks', \"''\", ',', 'in', 'the', 'arena', 'on', 'september', '2', '0', ',', '1', '9', '9', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'de', 'la', 'court', ',', 'who', 'inherited', 'most', 'of', 'his', 'father', \"'s\", 'collection', ',', 'describes', 'van', '', \"'s\", 'efforts', 'to', 'acquire', 'the', 'painting', 'at', 'a', '', 'price', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'and', 'it', 'was', \"n't\", 'seen', 'as', '', \"'\", 'enough', ',', 'perhaps', 'meaning', 'it', 'was', \"n't\", 'seen', 'as', 'commercially', '', 'enough', '...', 'who', 'knows', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'atmospheric', 'chemistry', ',', 'the', '', 'relationship', 'is', 'an', 'equation', 'that', 'determines', 'the', 'concentration', 'of', '', '', 'in', 'areas', '', 'by', 'the', 'presence', 'of', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'i', 'wrote', '``', 'the', 'kiss', 'murder', \"''\", 'first', ',', 'but', 'here', 'in', 'uk', 'and', 'in', 'turkey', '``', 'the', '', 'murders', \"''\", 'was', 'published', 'first', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '(', '', ',', '1', '8', '5', '4', ')', ';', '``', '', '', '', '', '', ',', '', ',', 'e', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'bankruptcy', 'and', 'major', '', 'of', 'the', 'boston', 'theatre', 'in', '1', '7', '9', '7', 'would', 'have', 'sent', 'susanna', 'and', 'william', 'to', 'charleston', ',', 'but', 'rather', 'than', 'head', 'south', 'they', 'abandoned', 'the', 'stage', 'after', 'a', 'few', 'summer', 'performances', 'in', 'newport', 'and', 'providence', ',', 'rhode', 'island', '.', '', '', '', '', '']\n", "['', 'these', 'words', 'usually', 'reflected', 'one', 'or', 'another', 'meaning', 'of', 'an', '', 'word', 'or', '', 'or', 'are', 'unrelated', 'control', 'words', 'in', 'the', 'recorded', 'sentence', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'september', '2', '0', '1', '3', ',', 'liwa', '', 'al-raqqa', '', 'allegiance', 'to', 'the', 'al-nusra', 'front', ',', 'part', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'quebec', 'atlantic', 'salmon', 'federation', 'said', 'that', 'the', 'measures', 'did', 'not', 'go', 'nearly', 'far', 'enough', 'in', 'protecting', 'salmon', 'for', 'future', 'generations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'school', 'district', 'is', 'surrounded', 'by', 'the', '', 'rapids', 'school', 'district', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'three', 'weeks', 'after', '', \"'s\", 'death', 'in', 'a', 'car', 'accident', ',', 'the', 'album', 'was', 'officially', 'released', 'in', 'austria', ',', 'germany', ',', 'switzerland', 'and', 'the', 'netherlands', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'one', 'day', 'each', 'week', ',', 'they', 'have', 'to', 'stay', 'behind', 'and', 'are', 'assigned', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'because', 'less', 'time', 'was', 'spent', 'travelling', 'to', 'and', 'from', 'the', 'fishing', 'grounds', ',', 'more', 'time', 'could', 'be', 'spent', 'fishing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'put', '', ',', 'the', 'empire', 'had', 'become', 'a', 'part', 'of', 'the', 'european', 'concert', ',', 'but', 'not', 'an', 'actor', 'in', 'the', 'european', 'balance', 'of', 'power', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'current', 'champion', 'is', '', ',', 'who', 'won', 'the', 'championship', 'on', 'november', '1', ',', '2', '0', '1', '9', ',', 'when', 'he', 'defeated', '', 'jonathan', '', 'in', 'a', 'match', 'that', 'also', 'included', 'black', 'danger', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'goal', 'of', '', 'in', 'sudan', 'is', 'to', 'build', 'local', 'sudanese', 'capacity', 'to', 'address', 'the', 'causes', 'and', 'effects', 'of', 'political', 'conflict', ',', 'violence', ',', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'latter', 'is', 'responsible', 'for', 'regional', 'routes', 'in', '1', '7', 'municipalities', 'in', '', 'using', '1', '2', '4', 'buses', ',', 'while', '', 'operates', 'in', 'the', 'city', 'bus', 'in', '', 'and', '', '', 'in', '', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '2', '0', 'teams', 'in', '1', '9', '8', '2', ',', 'the', 'event', 'now', 'has', 'about', '1', '0', '0', 'teams', 'competing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', '', 'came', 'back', 'to', 'her', 'home', 'and', 'found', 'that', 'the', 'girls', 'were', 'gone', ',', 'she', 'flew', 'into', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'park', ',', 'with', 'a', 'separate', 'play', 'area', 'for', 'children', ',', 'is', 'kept', 'open', 'to', 'the', 'public', 'from', '5', 'a.m.', 'to', '8', 'p.m.', 'and', 'is', 'a', 'popular', 'place', 'for', 'morning', 'walks', 'among', 'the', 'locals', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'commercially', ',', 'fish', 'is', 'landed', 'at', 'only', 'four', 'yorkshire', 'ports', '(', '', ',', 'hull', ',', '', 'and', 'whitby', ')', 'though', 'not', 'all', 'fish', 'landed', 'at', 'these', 'ports', 'are', 'from', '', 'registered', 'at', 'those', 'ports', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'shaw', 'was', 'active', 'during', 'world', 'war', 'i', ',', '', 'charities', 'such', 'as', 'the', '', 'prisoners', 'of', 'war', 'relief', 'committee', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'better', 'than', 'i', 'found', 'it', \"''\", 'was', 'released', 'december', '9', ',', '2', '0', '1', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', '', 'an', 'acting', 'career', 'until', 'she', 'met', '', 'armstrong', 'in', '2', '0', '0', '2', 'and', 'the', 'two', 'began', 'writing', 'songs', 'together', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'cabinet', 'of', 'the', 'prime', 'minister', 'is', 'composed', 'of', 'multiple', 'departments', 'directly', 'responsible', 'to', 'the', 'premier', 'and', 'coordinated', 'by', 'the', 'chief', 'of', 'staff', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '3', '0', 'december', 'in', '', '2', '8', '0', 'miles', 'south', 'of', 'iceland', '', '9', '7', 'ran', 'into', '', '', '2', '6', '5', 'coming', 'in', 'the', 'opposite', 'direction', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'agreement', 'with', 'the', 'library', 'bill', 'of', 'rights', ',', 'she', '', 'for', 'more', '', ',', 'not', '', ',', 'to', 'combat', 'the', 'effects', 'of', 'racism', 'and', '', 'in', 'library', 'materials', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '``', 'chicago', 'tribune', \"''\", 'has', 'called', 'her', '``', 'a', '', 'writer', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'argentine', 'rap', 'duo', '', '', 'and', 'the', '', 'were', 'named', 'after', 'him', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'jones', 'would', 'join', 'on', 'for', 'two', 'out', 'of', 'the', 'five', 'height', 'tours', 'that', 'occurred', 'throughout', '2', '0', '0', '5', '-', '2', '0', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'march', '1', '9', '6', '6', ',', 'factory', 'plant', '', 'was', 'reported', 'to', 'be', 'suspected', 'as', 'the', 'source', 'of', 'pollution', ',', 'and', 'in', 'september', ',', 'the', 'ministry', 'of', 'health', 'and', 'welfare', 'announced', 'it', 'had', 'discovered', '', 'in', '', 'at', 'the', '', 'of', 'the', '', '', 'factory', 'in', '', 'village', '.']\n", "['', 'neurological', '', 'occur', 'in', '3', '0', '%', 'to', '5', '0', '%', 'of', '', 'persons', ',', 'and', 'they', 'can', 'present', 'as', 'the', 'initial', '', ',', 'throughout', 'the', 'course', 'of', 'the', 'disease', 'or', 'in', 'the', 'advanced', 'stage', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', ',', 'the', '``', '', '', '', \"''\", 'runs', 'for', '1', '6', 'km', 'parallel', 'to', 'the', 'west', 'side', ';', 'this', 'river', 'takes', 'its', 'source', 'in', 'the', 'area', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'single', 'from', 'the', 'album', 'was', 'the', 'title', 'track', ',', '``', 'now', 'we', 'can', 'see', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'the', 'early', '1', '9', '9', '0', 's', ',', 'the', 'company', 'had', 'expanded', 'even', 'more', ',', 'with', 'facilities', 'in', 'each', 'of', 'the', '5', '0', 'u.s.', 'states', 'and', '', 'in', 'excess', 'of', '$', '1', '8', '1', 'million', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'has', 'the', '', 'that', 'all', 'robots', 'are', 'a', 'threat', 'to', '', 'and', 'must', 'be', 'fought', 'against', 'for', 'survival', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'lost', 'the', 'right', 'to', 'participate', 'in', 'a', '', 'when', 'he', 'turned', '8', '0', 'years', 'of', 'age', 'in', '1', '9', '9', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'ghost', 'of', 'gonzalo', 'appears', 'again', ',', 'and', 'he', 'sets', 'out', 'a', 'table', 'on', 'the', 'cover', 'of', 'a', 'tomb', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'last', 'service', 'was', 'held', 'in', 'october', '1', '9', '9', '6', 'by', '', 'r.', 'bob', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'building', 'was', '', 'and', '', 'after', 'the', 'second', 'world', 'war', ',', 'the', '', 'were', 'expelled', ',', 'and', 'it', 'was', 'used', 'to', 'train', 'police', 'dogs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '5', 'april', '2', '0', '1', '3', ',', 'it', 'was', 'revealed', 'that', 'an', 'upcoming', 'storyline', 'would', 'see', 'mrs', 'tembe', 'be', 'given', 'a', 'romance', 'with', '', 'gordon', 'portrayed', 'by', '', 'elder', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', 'the', 'entire', 'area', 'is', 'surrounded', 'by', 'heavily', 'armed', 'police', ',', 'who', 'shoot', 'henderson', 'dead', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'series', 'finale', 'aired', 'on', 'march', '1', '0', ',', '2', '0', '2', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'their', 'final', 'game', 'saw', 'them', 'take', 'a', '1', '4', '-', '0', '', 'against', 'the', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'the', '1', '8', '6', '7', 'alaska', 'purchase', 'by', 'the', 'united', 'states', ',', 'the', 'island', 'became', 'part', 'of', 'the', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'museum', 'is', 'located', 'in', '', '', 'of', 'wuhan', \"'s\", 'suburban', '', 'district', ',', 'some', '2', '5', 'km', 'southwest', 'of', 'downtown', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'arrested', ',', 'and', 'led', 'to', 'the', '', 'abbey', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'designs', 'were', 'born', 'of', 'craft', ',', 'not', 'technology', ',', 'inspired', 'by', 'natural', 'materials', ',', 'informed', 'by', 'a', 'personal', 'artistic', 'expression', 'yet', '', 'committed', 'to', 'principles', 'of', '', ',', 'function', ',', '', 'to', 'the', 'patron', ',', 'context', 'and', 'climate', ';', 'for', 'the', '', 'of', 'use', '.', '', '', '', '']\n", "['', 'it', 'also', 'refers', 'to', 'the', '', '', 'forcing', 'the', 'king', '', 'the', 'great', 'to', 'leave', '``', '', \"''\", '(', '', ')', ',', 'and', 'migrate', 'to', 'the', '``', '', 'mountains', \"''\", 'to', 'found', '', ',', 'which', 'remained', 'the', 'new', '', 'capital', 'until', 'the', 'arrival', 'of', 'the', '``', '', \"''\", '.', '']\n", "['', 'in', '2', '0', '0', '9', ',', 'he', 'appeared', 'in', '``', '', \"''\", 'in', 'the', 'episode', '``', 'the', 'farm', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'eastern', 'catholic', '', 'or', '', 'catholic', 'church', 'was', 'set', 'up', 'to', '', 'them', 'to', 'keep', 'orthodox', 'traditions', 'within', 'the', 'catholic', 'church', ';', 'it', 'now', 'has', 'some', '7', '0', ',', '0', '0', '0', 'members', ',', 'not', 'all', 'in', 'italy', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'also', 'known', 'as', '``', '', 'suit', \"''\", ',', 'it', 'is', 'a', 'western', 'style', 'suit', 'product', ',', 'with', 'a', 'coat', 'and', 'a', '', ',', 'at', 'times', 'accompanied', 'by', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'born', 'in', '', '', ',', 'california', 'to', 'oliver', ',', 'a', 'stanford', 'professor', ',', 'and', 'florence', 'johnston', ',', 'johnston', 'had', 'two', 'older', 'sisters', ',', '', 'and', 'florence', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'is', 'acceptable', 'as', 'locally', 'defined', 'functions', '', 'the', 'full', 'power', 'of', '', 'and', 'are', 'almost', 'as', 'efficient', 'as', 'the', 'use', 'of', 'a', '', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'president', '', 'obama', 'publicly', 'opposed', 'the', 'legislation', 'on', 'october', '7', ',', '2', '0', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'also', 'a', '', 'station', 'in', '', ',', 'california', 'called', '', '3', 'that', '', 'the', 'coverage', 'in', 'the', '', 'valley', 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'museum', 'was', 'founded', 'in', 'order', 'to', 'show', 'dutch', 'overseas', '', ',', 'and', 'the', 'inhabitants', 'of', 'these', 'foreign', 'countries', ',', 'such', 'as', 'indonesia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'awarded', 'an', '', 'in', 'painting', 'from', 'the', 'university', 'of', 'minnesota', 'in', '2', '0', '0', '3', ',', 'where', 'she', 'received', 'a', 'graduate', 'school', 'fellowship', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'a', 'narrow', 'white', 'dorsal', 'streak', 'about', 'the', '', 'fourth', 'of', 'the', '', 'pointing', 'a', 'little', '', '', ',', 'and', '', 'connected', 'with', 'a', 'nearly', 'square', '', 'white', 'spot', ',', 'which', 'is', 'a', 'little', 'farther', 'back', 'than', 'the', 'dorsal', 'streak', '.', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'also', 'an', 'adaptation', 'to', 'use', 'key', 'for', 'the', '', 'execution', 'of', 'abstract', 'state', 'machines', ',', 'that', 'was', 'developed', 'at', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'september', '2', '6', ',', 'clinton', '', 'a', 'possible', 'link', 'between', '', 'in', 'the', 'islamic', '', 'and', 'the', '', 'attack', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'solomon', '', '(', 'born', 'october', '9', ',', '1', '9', '6', '4', ')', 'is', 'a', 'former', 'american', 'football', 'free', 'safety', 'in', 'the', 'nfl', ',', 'a', 'current', 'national', 'television', '', 'and', 'broadcaster', 'as', 'well', 'as', 'a', 'head', 'coach', 'in', 'your', 'call', 'football', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'first', '1', '0', '0', '', 'of', 'cheese', 'were', '', 'every', 'two', 'weeks', ';', 'the', 'meat', '', 'became', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'december', '2', '0', '1', '1', ',', 'sea', 'world', '', 'a', 'gentoo', 'penguin', '', 'to', 'the', 'exhibit', 'making', 'the', 'exhibit', 'feature', '1', '7', 'gentoo', 'and', '8', 'king', 'penguins', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'types', 'of', 'shelters', 'are', 'typically', '', 'and', 'installed', 'on', 'a', 'home', 'site', 'or', 'commercial', 'location', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'season', ',', 'he', 'signed', 'a', 'new', 'contract', 'to', 'play', 'for', '', 'warriors', ',', 'shortly', 'after', 'his', 'brother', 'joel', 'had', 'agreed', 'to', 'switch', 'codes', 'and', 'play', 'rugby', 'union', 'for', '', 'f.c', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'additionally', ',', 'the', 'characters', 'are', 'often', '', 'towards', 'each', 'other', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'like', 'the', '``', '', '', \"''\", ',', 'the', '``', '', \"''\", 'also', 'identifies', 'the', 'almost', 'legendary', '', 'as', 'the', 'place', 'from', 'which', 'they', 'all', 'set', 'out', ',', 'at', 'least', 'at', 'one', 'point', 'in', 'their', 'various', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'most', 'recently', 'franklin', 'directed', 'the', 'animated', 'version', 'of', 'the', 'fan', 'favorite', 'and', '', 'classic', ',', 'graphic', 'novel', ',', 'prison', 'pit', ',', 'written', 'by', 'johnny', 'ryan', 'and', 'published', 'by', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '9', '1', '7', 'until', '1', '9', '6', '2', ',', 'the', 'democratic', 'party', 'in', 'the', 'u.s.', 'state', 'of', 'georgia', 'used', 'a', 'voting', 'system', 'called', 'the', 'county', 'unit', 'system', 'to', 'determine', '', 'in', '', 'primary', 'elections', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'company', 'was', 'particularly', 'interested', 'in', 'the', '', 'creek', 'mines', ',', 'which', 'had', 'been', 'abandoned', 'by', 'tin', 'workers', 'in', 'the', 'early', '1', '8', '9', '0', 's', 'due', 'to', 'high', 'transport', 'costs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'attended', '', 'high', 'school', 'where', 'he', 'was', 'a', 'four', 'year', '', 'soccer', 'player', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'julie', '', 'has', 'received', 'a', '', 'from', 'the', 'grand', '', '', 'jack', '', ',', 'according', 'to', 'her', 'lawyer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'students', 'take', 'some', 'of', 'the', 'first', 'term', '(', '1', '3', 'weeks', ')', 'in', 'separate', 'classes', 'specifically', 'designed', 'for', 'extended', 'foundation', 'students', 'with', 'a', 'focus', 'on', 'key', '', ',', 'skills', 'and', 'content', 'essential', 'for', 'success', 'at', 'foundation', 'level', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'married', 'to', 'film', 'director', 'and', 'writer', 'edward', 'dmytryk', ',', 'who', 'was', 'one', 'of', 'the', 'hollywood', 'ten', ',', 'the', 'most', 'prominent', '', 'group', 'in', 'the', 'film', 'industry', 'during', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'agent', '5', '1', 'was', 'an', 'american', 'punk', 'rock', 'band', 'from', '', ',', 'california', ',', 'formed', 'in', '1', '9', '9', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'lance', 'had', 'told', 'reno', 'that', 'if', 'he', 'got', '', 'out', 'of', 'the', 'way', ',', 'then', 'lance', 'would', 'get', 'approval', 'to', 'build', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'also', 'only', 'a', 'few', 'minutes', 'away', 'from', '', 'sports', 'centre', 'and', '', 'train', 'station', 'as', 'well', 'as', '', 'extra', 'supermarket', 'and', 'mcdonald', \"'s\", 'and', 'other', 'fast', 'food', '', 'and', 'petrol', '', 'stations', 'and', 'the', 'local', '', 'centre', 'is', 'not', 'far', '.', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'appointed', 'secretary', 'of', 'state', 'for', 'wales', 'on', '4', 'september', '2', '0', '1', '2', ',', 'following', 'david', '', \"'s\", 'first', 'cabinet', 'reshuffle', ',', 'and', 'removed', 'from', 'office', 'in', 'another', 'reshuffle', 'on', '1', '4', 'july', '2', '0', '1', '4', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'arthur', 'capell', \"'s\", 'eldest', 'son', ',', 'also', 'called', 'arthur', 'capell', ',', 'inherited', 'both', 'the', 'hadham', 'and', 'cassiobury', 'estates', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'variants', 'of', 'the', 'm', '1', '8', '4', '1', 'bronze', '6', '-pounder', 'were', 'also', 'manufactured', 'in', 'the', '', 'though', 'records', 'are', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'another', 'popular', 'theory', 'is', 'loop', 'quantum', 'gravity', '(', 'lqg', ')', ',', 'which', 'describes', 'quantum', 'properties', 'of', 'gravity', 'and', 'is', 'thus', 'a', 'theory', 'of', 'quantum', 'spacetime', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'also', 'possible', 'to', 'have', 'a', '1', 'in', 'an', 'online', 'counter', ',', 'and', 'a', '', 'against', 'a', 'hot', 'card', 'list', '(', 'which', 'is', 'only', 'necessary', 'for', '', 'transactions', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'adam', 'run', 'valley', 'is', 'home', 'to', 'an', 'unusual', 'plant', 'called', 'rush', ',', 'which', 'lines', 'the', 'banks', 'of', 'the', 'stream', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'resulted', 'in', 'creation', 'of', 'several', 'groups', ',', 'mostly', 'youth', ',', 'of', 'prayer', 'and', 'material', 'support', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'songs', 'are', 'often', 'based', 'on', 'the', 'medieval', 'and', 'modern', 'poetry', 'of', 'azerbaijan', ',', 'and', 'although', 'love', 'is', 'a', 'common', 'topic', 'in', 'these', 'poems', ',', 'to', 'the', '', 'ear', 'many', 'of', 'the', '', 'and', '', 'are', 'lost', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'first', 'government', 'was', 'defeated', 'in', 'the', '1', '9', '3', '9', 'election', ',', 'a', '', 'election', 'called', 'by', 'the', 'premier', 'in', 'hopes', 'of', 'exploiting', 'the', 'issue', 'of', 'canadian', 'participation', 'in', 'world', 'war', 'ii', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '1', '9', '7', '3', 'new', 'zealand', 'open', ',', 'also', 'known', 'as', 'benson', 'and', '', 'open', 'for', '', 'reasons', ',', 'was', 'a', 'combined', 'men', \"'s\", 'and', 'women', \"'s\", 'professional', 'tennis', 'tournament', 'held', 'in', '', ',', 'new', 'zealand', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'athletic', 'shooting', 'sports', 'are', 'hybrid', 'events', 'of', 'normally', '', 'shooting', 'sport', 'competitions', 'and', 'the', 'sport', 'of', 'athletics', 'or', 'other', 'physically', 'demanding', '', 'sports', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '3', ',', '', 'joined', 'the', 'cast', 'of', '``', '', 'gang', \"''\", 'where', 'she', 'had', 'done', 'many', 'comedy', '', 'including', '', '', 'dub', ',', 'the', 'character', 'of', 'maine', 'mendoza', 'in', '``', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'that', 'year', ',', 'despite', 'the', '', 'of', 'its', 'owners', 'to', 'create', 'a', 'local', 'station', ',', '', 'became', 'an', 'affiliate', 'of', '', '', 'de', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'catholic', 'parish', '``', 'st.', '', \"''\", '', 'is', 'responsible', 'for', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'last', 'one', '', 'for', 'a', 'record', '', 'of', 'four', 'hours', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'event', 'of', 'an', '', 'process', 'failing', 'to', 'elect', 'a', 'regional', 'president', 'within', 'a', '', 'period', 'from', 'the', 'first', '', ',', 'the', 'parliament', 'was', 'to', 'be', 'automatically', 'dissolved', 'and', 'a', 'fresh', 'election', 'called', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '4', 'august', '1', '9', '9', '4', ',', '8', '0', 'of', 'the', '1', '1', '6', 'seats', 'in', 'the', 'national', 'congress', 'came', 'up', 'for', 'election', ',', 'unusual', 'in', 'guatemala', 'where', 'the', 'members', 'of', 'congress', 'normally', 'stand', 'for', 'election', 'to', '', 'with', 'the', 'presidential', 'election', '.', '', '', '', '', '']\n", "['', 'customers', 'may', 'need', 'to', 'attend', 'a', 'bank', 'branch', 'for', 'a', 'wide', 'range', 'of', 'banking', 'transactions', 'including', 'cash', 'withdrawals', 'and', 'financial', 'advice', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'military', 'science', ',', 'there', 'are', 'two', 'meanings', 'to', 'morale', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'started', 'his', 'career', 'in', 'his', '', 'of', 'nigeria', 'with', 'prime', '', ',', 'where', 'he', 'scored', 'seven', 'goals', 'in', 'six', 'games', 'during', 'the', '2', '0', '1', '2', 'federation', 'cup', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'boxer', 'and', '', 'fighter', 'aravena', 'replied', ':', '``', 'so', 'i', 'can', 'get', '', 'around', '?', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'used', 'to', 'carry', '', 'cargo', 'for', 'trade', 'until', '1', '9', '2', '1', ',', 'when', 'she', 'was', 'sold', 'and', 'scrapped', 'as', 'a', '', 'in', 'cuba', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'group', \"'s\", 'sixth', 'ep', ',', '``', '', \"''\", ',', 'was', 'released', 'on', 'august', '6', 'with', 'the', 'promotional', 'singles', '``', 'coffee', 'shop', \"''\", ',', '``', 'hurricane', \"''\", 'and', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'brought', 'her', 'to', 'canada', 'and', 'after', 'five', 'years', 'they', 'divorced', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'places', 'where', '', 'occurred', 'often', 'became', 'temporary', 'and', 'then', 'permanent', 'settlements', '(', 'such', 'as', 'hull', ',', 'quebec', ';', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'construction', 'was', 'started', 'in', 'the', '', 'district', 'on', '3', 'may', '1', '9', '7', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'currie', 'cup', 'debut', 'came', 'later', 'in', 'the', 'same', 'year', ',', 'when', 'he', 'was', 'included', 'in', 'the', 'blue', '', 'starting', 'team', 'to', 'face', 'in', 'the', 'opening', 'match', 'of', 'the', '2', '0', '1', '3', 'currie', 'cup', 'premier', 'division', 'season', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'the', 'other', '', 'was', 'also', 'not', 'in', 'service', 'at', 'that', 'time', ',', 'this', 'accident', 'eventually', 'was', 'the', 'end', 'of', 'service', 'for', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'located', '4', '1', '1', 'kilometers', 'away', 'from', 'the', 'national', 'capital', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'commission', ',', 'in', 'agreement', 'with', 'the', 'european', 'council', 'and', 'the', 'european', 'parliament', ',', 'agreed', 'on', 'a', 'joint', 'statement', 'to', '', 'the', 'attacks', 'and', 'designated', '1', '4', 'september', '2', '0', '0', '1', 'as', 'a', 'day', 'of', '', 'in', 'member', 'states', 'and', 'eu', 'institutions', '.', '', '', '', '', '', '']\n", "['', 'several', 'versions', 'of', '', 'can', 'be', 'found', 'in', 'existing', 'hindu', 'texts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'received', 'the', 'most', 'votes', 'in', 'the', 'election', 'for', 'the', 'black', 'representatives', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'also', 'a', 'key', 'contributor', 'to', 'the', 'development', 'of', 'the', '', 'educational', 'project', 'called', '``', 'learning', 'communities', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'located', 'in', 'the', '', 'tehsil', 'and', 'the', '', 'block', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'its', '1', '3', 'lines', ',', 'route', 'length', 'of', 'and', '5', '1', '0', 'tram', '', ',', 'the', 'network', 'is', 'currently', 'the', 'third', 'biggest', 'in', 'germany', ',', 'after', 'the', '', 'and', 'berlin', 'tramway', 'networks', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'unlike', '', '', 'in', 'modern', '', '', ',', 'it', 'generally', 'does', 'not', 'allow', 'execution', 'of', 'multiple', 'instructions', 'in', 'one', 'cycle', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'building', 'of', 'houses', 'from', 'timber', 'posed', 'a', 'fire', 'risk', ',', 'and', 'declined', 'after', 'may', '1', '6', '2', '2', ',', 'when', 'a', 'lightning', 'strike', 'on', 'north', 'main', 'street', 'resulted', 'in', 'a', 'loss', 'of', '1', '5', '0', '0', 'houses', 'in', 'the', 'city', '.', '', '', '', '', '', '', '', '']\n", "['', 'this', 'action', 'was', '', 'by', 'international', 'diplomacy', 'but', 'although', 'the', 'rebel', 'croatian', 'serbs', 'brought', '', 'forward', 'fairly', 'quickly', ',', 'the', 'strength', 'of', 'the', 'croatian', 'forces', 'proved', 'superior', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'three', 'sisters', 'established', 'a', 'convent', 'which', 'contained', 'an', 'orphanage', 'and', 'school', 'in', 'penang', 'that', 'same', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', 'is', 'found', 'in', 'the', 'western', 'indian', 'ocean', 'in', 'the', '', 'islands', ',', '', 'islands', ',', 'and', 'sri', 'lanka', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'place', 'is', 'most', 'notable', 'for', 'its', '', 'situation', 'in', 'the', 'high', ',', 'remote', '', 'valley', 'of', 'the', 'town', 'of', 'spafford', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', '', '', 'were', '', 'on', 'july', '1', '4', ',', '1', '9', '9', '4', ',', 'along', 'portsmouth', \"'s\", 'historic', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'with', '', '', ',', 'they', 'won', 'the', '2', '0', '1', '7', '', 'classic', 'of', 'new', 'orleans', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'minang', 'traditional', 'musical', 'instruments', '(', 'see', 'description', 'below', ')', ',', '', ':', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'abc', 'which', 'over', 'the', 'past', '1', '0', '0', 'years', 'has', 'been', '', 'with', 'textile', 'manufacturing', 'in', 'africa', 'and', 'europe', 'for', 'english', 'wax', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'total', 'speakers', 'of', 'khotta', '', 'is', 'about', '1', '0', '', 'in', 'the', 'state', 'of', 'west', 'bengal', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'pierre', '', 'received', 'quebec', \"'s\", 'medal', 'of', 'honour', 'of', 'the', 'national', 'assembly', 'in', '2', '0', '1', '1', 'for', 'his', 'artistic', 'contributions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '1', '3', 'lakes', \"''\", ',', '``', 'ten', 'skies', \"''\", ',', 'and', '``', '2', '7', 'years', 'later', \"''\", ',', 'the', 'three', '2', '0', '0', '5', 'productions', 'of', 'james', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'male', '', 'found', 'her', 'at', 'home', 'hours', 'later', ',', '', ',', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'gauley', 'mills', 'is', 'an', 'unincorporated', 'community', 'in', 'webster', 'county', ',', 'west', 'virginia', ',', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'wildcat', '', 'inside', 'a', 'fortune', '', \"'s\", '', 'and', 'pepé', ',', 'disguised', 'as', 'a', '', ',', '', 'to', 'her', 'that', 'she', 'will', 'meet', 'a', 'fine', 'gentleman', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'designed', 'as', 'a', 'heavy', 'tank', ',', 'the', '', 'was', 'a', 'significant', 'upgrade', 'from', 'the', 'm', '4', '', 'in', 'terms', 'of', '', ',', 'protection', ',', 'and', 'mobility', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'reviews', ',', 'on', 'the', 'other', 'hand', ',', 'said', 'of', 'the', 'same', '', 'version', ',', '``', 'the', '3', 'd', '', '', 'in', 'are', 'a', '', 'at', 'best', ',', 'a', '', 'trip', 'to', 'a', '', 'at', 'worst', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'intake', 'ports', 'stepped', 'up', 'intake', 'flow', '', 'in', 'comparison', 'to', 'the', 'original', 'la', 'heads', ',', 'and', 'the', 'exhaust', 'ports', 'improved', 'cylinder', '', 'as', 'well', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'a', 'large', '', 'farm', ',', 'he', 'joined', 'a', 'hunting', 'party', 'and', 'caught', 'his', 'first', '', ',', 'a', '``', '', \"''\", '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'instead', 'of', '', 'the', 'augmented', 'lists', 'in', '', ',', 'they', 'should', 'be', '', 'as', 'binary', 'search', 'trees', ',', 'so', 'that', 'these', 'changes', 'can', 'be', 'handled', '', 'while', 'still', 'allowing', 'binary', '', 'of', 'the', 'augmented', 'lists', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'new', '', 'framework', 'and', '``', '', 'system', \"''\", 'for', 'managing', 'capital', 'flows', 'and', 'national', 'debts', 'is', 'also', 'called', 'for', ',', 'but', 'the', '', '', 'that', 'it', '', 'a', 'gradual', 'shift', 'to', 'this', 'new', 'framework', ',', 'rather', 'than', 'a', 'sudden', 'change', '.', '', '', '', '', '', '', '', '']\n", "['', 'post', 'holes', ',', 'a', '', 'area', 'and', 'concentrations', 'of', '', ',', 'burning', 'and', 'other', '', 'indicate', 'the', 'presence', 'of', 'a', 'structure', 'approximately', 'wide', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'state', '``', 'desired', 'width', 'for', 'a', 'cycle', 'track', 'should', 'be', '5', 'feet', '(', '1', '.', '5', 'm', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'authors', 'describe', 'that', 'laws', 'making', '', 'an', '', 'status', 'increased', 'the', '', 'of', 'black', 'women', 'and', 'forced', 'them', 'into', 'bearing', 'children', 'for', 'the', 'economic', 'gain', 'of', 'their', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', '', '4', '4', '(', 'also', 'known', 'as', '', '1', '7', '-', '3', '1', 'or', '', '1', '6', '6', '-', '2', '1', ')', 'lies', '5', '1', '', 'to', 'northeast', 'and', 'is', 'probably', 'not', 'related', 'with', 'the', 'cluster', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'their', 'tight', '', 'and', 'the', 'often', '', 'humor', 'in', 'their', 'music', 'and', 'lyrics', ',', '', \"'s\", 'orchestra', 'made', 'an', 'ideal', 'band', 'for', 'the', 'club', ',', 'and', '', \"'s\", 'reputation', 'began', 'to', 'steadily', 'grow', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'a', '', 'in', 'which', 'a', '', 'group', 'of', 'english', '', 'are', '', '', 'themselves', 'at', 'a', '1', '9', '6', '0', 's', 'holiday', 'camp', 'before', '', '', 'and', 'they', 'find', 'themselves', 'fighting', 'against', 'the', 'camp', \"'s\", '', ',', 'rigid', ',', 'moral', 'and', '', 'manager', ',', '``', '', \"''\", '.']\n", "['', 'in', 'this', 'way', ',', 'fishes', 'with', 'increasing', 'sizes', 'evolved', 'during', 'the', 'early', '', ',', 'such', 'as', 'the', '', '', '``', '', \"''\", ',', 'which', 'could', 'grow', 'long', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'role', 'as', 'the', 'secretary', 'youth', 'affairs', 'involved', 'oversight', 'of', '', 'functions', 'of', 'the', 'government', 'of', 'kenya', 'including', 'the', '', 'fund', ',', 'youth', 'enterprise', 'development', 'fund', ',', 'the', 'national', 'youth', 'service', 'and', 'the', 'kenya', 'national', 'volunteers', 'programme', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'an', 'enormous', 'county', ',', 'including', 'the', 'northern', 'part', 'of', 'new', 'york', 'state', 'as', 'well', 'as', 'all', 'of', 'the', 'present', 'state', 'of', 'vermont', 'and', ',', 'in', 'theory', ',', 'extending', '', 'to', 'the', 'pacific', 'ocean', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'shiner', 'was', 'not', '', 'and', '', 'denied', 'any', 'wrong', 'doing', 'by', 'himself', 'or', 'shepherd', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'has', 'an', 'ms', 'in', 'strategic', 'studies', 'from', 'the', 'united', 'states', 'army', 'war', 'college', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thousands', 'of', 'slaves', 'were', 'imported', 'to', 'work', 'on', '', 'producing', 'rice', ',', '', ',', 'and', 'sugar', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'possibly', '', 'story', 'records', 'a', 'visit', 'by', 'the', '', 'gardener', 'christopher', 'lloyd', ',', 'during', 'which', 'he', 'is', 'supposed', 'to', 'have', 'scattered', '', 'of', '', 'coloured', '', 'across', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'he', 'returned', ',', 'he', 'played', 'for', 'san', '', 'where', 'he', 'batted', '.', '2', '5', '7', '/', '3', '2', '3', '/', '3', '4', '0', 'with', 'two', 'home', 'runs', 'and', '2', '0', '', 'in', '4', '1', 'games', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'team', 'announced', 'a', 'partial', 'schedule', 'for', 'the', '2', '0', '0', '8', 'indycar', 'series', 'season', 'that', 'will', 'include', 'the', '', '5', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'formed', 'a', 'close', 'alliance', 'with', 'a', 'related', 'family', ',', 'whose', 'leader', '', '', '', '', ',', 'became', 'one', 'of', 'her', 'most', 'important', 'councillors', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'i', 'said', 'i', 'would', 'provide', '', 'on', 'top', 'of', 'the', 'structure', 'that', 'would', 'take', 'all', 'the', 'forces', 'outside', 'to', 'the', 'walls', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', '', 'was', '', 'in', '2', '0', '1', '2', ',', '', 'ran', 'to', 'succeed', 'her', ',', 'creating', 'an', 'open', 'seat', 'in', 'the', '3', '9', 'th', 'district', ',', 'and', '', 'once', 'again', 'declared', 'his', 'candidacy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'application', 'for', 'these', 'systems', 'are', 'not', 'only', 'limited', 'to', 'car', '', ',', 'but', 'third', 'party', 'technological', 'companies', 'as', 'well', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'unlike', '``', 'honolulu', \"''\", ',', '``', 'northampton', \"''\", 'did', 'not', 'increase', 'speed', 'or', 'attempt', 'any', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'night', 'mode', 'has', 'been', 'improved', ',', 'and', 'the', 'mate', '3', '0', 'pro', 'can', 'take', '4', 'k', '', 'plus', '', 'and', '', 'video', ',', 'shooting', '7', '2', '0', 'p', 'at', '7', '6', '8', '0', 'frames', 'per', 'second', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hansen', 'won', 'three', 'matches', 'at', 'the', '1', '9', '0', '4', 'olympics', 'and', 'won', 'a', 'gold', 'medal', 'in', '', 'category', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'famous', 'politicians', 'native', 'to', 'the', 'area', 'include', '', 's.', 'grant', ',', 'ronald', '', ',', '', 'obama', ',', 'j.', 'dennis', '', ',', 'donald', '', ',', 'hillary', 'clinton', ',', 'and', '', 'richard', 'j.', 'daley', 'and', 'richard', 'm.', 'daley', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rings', 'are', 'usually', '', 'carbon', 'steel', ',', '', 'a', '3', '6', 'plate', ',', 'or', 'equivalent', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'an', 'unincorporated', 'community', 'located', 'within', 'the', 'north-eastern', 'portion', 'of', '', 'river', 'township', 'in', 'ocean', 'county', ',', 'new', 'jersey', ',', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '3', '0', ',', 'she', 'was', 'the', 'first', 'woman', 'to', 'be', 'elected', 'to', '', 'county', 'council', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'architect', ',', '', '', ',', 'who', 'had', 'been', 'appointed', 'the', 'chief', 'architect', 'for', '', 'buildings', 'in', 'french', 'algeria', 'in', '1', '8', '5', '9', ',', 'employed', 'a', '', 'style', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'solely', '', 'by', 'russia', 'and', 'is', 'the', 'only', 'part', 'of', 'the', 'aforementioned', 'country', 'located', 'in', 'asia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ky', '3', '6', '3', '0', 'heads', 'through', 'more', 'rural', 'areas', 'with', 'some', 'development', 'before', 'coming', 'to', 'its', 'eastern', 'terminus', 'at', 'ky', '3', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'films', 'also', 'completed', 'for', '', 'games', 'a', 'set', 'of', 'live', 'action', '', 'that', 'were', 'set', 'to', 'release', 'in', '2', '0', '1', '5', 'in', '', '', 'and', 'would', 'connect', 'to', 'the', 'story', 'of', 'the', 'upcoming', 'game', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'won', 'seven', '', 'for', 'the', 'sweden', 'national', 'team', 'and', 'represented', 'the', 'sweden', 'olympic', 'football', 'team', 'at', 'the', '1', '9', '8', '8', 'summer', 'olympics', 'where', 'he', 'scored', 'two', 'goals', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'window', 'was', 'described', 'by', 'the', 'art', 'historian', 'virginia', '', 'as', '``', '', '', \"''\", 'and', '``', 'filled', 'with', 'a', 'wealth', 'of', 'art', 'historical', '', ',', 'often', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", '', 'version', 'was', 'originally', 'an', 'oblique', 'or', '', 'roman', ',', 'in', 'which', 'the', 'letters', 'do', 'not', 'take', 'on', '', 'characteristics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '&', 'amp', ';', 'jared', 'are', 'an', 'american', 'christian', 'music', '', 'duo', 'from', '', ',', 'texas', ',', 'and', 'they', 'started', 'making', 'music', 'together', 'in', '2', '0', '1', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'was', 'a', 'grand', 'gathering', 'of', '', 'near', '', 'university', 'in', '', ',', 'the', 'capital', 'of', '', '', ',', 'on', '8', 'april', '2', '0', '1', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '6', ',', 'the', 'owner', '', 'started', 'a', 'court', 'case', 'against', 'swedish', 'authorities', 'in', '', 'over', 'profits', 'from', 'electricity', 'trade', 'in', 'the', 'cable', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'nevertheless', 'retained', 'her', 'position', 'in', 'katz', \"'s\", 'executive', 'committee', ',', 'and', 'in', 'october', '2', '0', '0', '4', 'was', '', 'to', 'the', 'position', 'of', 'secretary', 'for', 'urban', '', 'opportunities', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'sound', 'is', 'a', 'sound', 'on', 'the', 'northwest', 'side', 'of', '', 'island', 'and', 'northeast', 'of', 'baker', 'island', 'in', 'the', 'central', 'coast', 'of', 'british', 'columbia', ',', 'canada', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'sixth', 'century', ')', 'was', 'a', 'late', '', '', 'and', 'scholar', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'followed', 'the', 'ndebele', 'people', \"'s\", 'great', '', 'from', 'northern', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'punjabi', 'culture', 'is', 'the', 'culture', 'of', 'the', 'punjabi', 'people', ',', 'who', 'are', 'now', 'distributed', 'throughout', 'the', 'world', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'fischer', 'groups', 'are', 'named', 'by', '', 'with', 'the', 'large', '', 'groups', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'features', 'a', '', '', '6', '-speed', '', '', ',', 'an', '', '', '', '', ',', '', '', '', '', ',', '', 'brakes', ',', 'and', 'a', '', '', '', 'system', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'harvey', 'was', 'born', 'in', '', ',', 'essex', 'to', 'william', 'and', 'emma', 'harvey', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'followed', 'by', 'the', 'release', 'of', 'his', 'self-titled', 'debut', 'album', 'in', 'november', '2', '0', '1', '4', ',', 'which', 'debuted', 'at', 'number', 'five', 'on', 'the', 'aria', 'albums', 'chart', 'and', 'was', 'certified', 'gold', 'by', 'the', 'australian', 'recording', 'industry', 'association', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '2', '0', '1', '3', 'report', 'by', 'the', 'city', 'of', 'london', 'corporation', 'said', 'that', 'london', 'is', 'the', '``', '', 'city', \"''\", 'in', 'europe', 'with', '3', '5', ',', '0', '0', '0', 'acres', 'of', 'public', 'parks', ',', '', 'and', 'gardens', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'school', 'was', 'founded', 'on', 'the', 'old', 'national', 'model', 'school', 'in', 'spring', 'street', ',', 'with', 'principal', 'joseph', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'served', 'in', 'the', 'second', '', 'war', 'in', '1', '8', '6', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'for', 'the', 'class', '', '2', '-', '6', '-', '2', '+', '2', '-', '6', '-', '2', 'garratt', 'locomotive', 'were', 'prepared', 'by', 'colonel', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'navigation', 'device', 'such', 'as', 'a', '', 'or', 'a', '', 'is', 'recommended', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'trouble', 'at', 'the', 'first', '', 'ended', 'the', '', 'of', '', 'ranger', 'and', 'gentle', 'warning', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '', 'requires', 'exact', '', 'of', 'a', 'patient', 'to', 'correctly', 'measure', 'any', 'deformity', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '1', '5', 'guns', 'armstrong', 'made', 'were', 'used', 'to', 'arm', 'two', 'italian', '', 'and', ',', 'to', 'counter', 'these', ',', 'british', '', 'at', 'malta', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'achieved', 'critical', 'acclaim', 'and', 'success', 'worldwide', 'with', 'the', 'band', \"'s\", 'self-titled', 'debut', 'album', '``', 'unknown', '', 'orchestra', \"''\", ',', 'released', 'in', '2', '0', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '1', ',', 'he', 'became', 'the', 'founder', 'of', 'the', '', 'theatre', 'group', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'residential', 'neighbourhood', 'in', 'the', 'northwest', '', 'of', '', ',', 'alberta', ',', 'canada', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'told', 'the', '``', 'los', 'angeles', 'times', \"''\", 'in', '1', '9', '9', '4', ',', '``', 'i', 'asked', 'who', 'else', 'was', 'on', '[', 'the', 'soundtrack', ']', 'and', 'they', 'said', 'paul', '', ',', 'so', 'i', 'said', ',', '', \"'\", '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'provides', 'weekend', 'service', 'during', 'the', 'summer', 'on', 'its', 'purple', 'line', 'ipswich', '-', 'essex', '-', '', 'beach', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'ashes', 'were', 'scattered', 'near', 'the', 'rose', 'garden', '', 'at', '', 'chapel', 'memorial', 'gardens', 'in', 'north', 'vancouver', ',', 'bc', 'on', '5', 'may', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'community', 'is', 'in', 'zip', 'code', '9', '4', '9', '6', '0', 'and', 'area', 'codes', '4', '1', '5', 'and', '6', '2', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'later', 'made', 'millions', 'of', 'dollars', 'in', 'the', 'oil', 'industry', 'and', 'became', 'a', 'trustee', 'and', 'significant', '', 'to', 'the', 'university', 'and', 'its', 'athletic', 'department', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'part', 'of', 'the', 'municipal', 'unit', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'historical', 'list', 'of', 'postal', 'codes', 'from', 'lima', 'and', '', 'is', 'shown', 'below', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'a', 'major', 'allied', 'bombing', 'campaign', 'in', 'collaboration', 'with', 'the', 'local', 'partisan', 'troops', 'in', 'order', 'to', 'prevent', 'german', 'troops', '', 'back', 'and', 'reinforcing', 'those', 'in', 'central', 'and', 'western', 'europe', ',', 'thus', '', 'the', 'war', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'ordinance', 'and', 'the', '1', '9', '7', '4', 'amendment', 'in', 'the', 'constitution', 'effectively', 'gave', 'the', 'state', 'of', 'pakistan', ',', 'the', 'exclusive', 'right', 'to', 'determine', 'the', 'meaning', 'of', 'the', 'term', '``', 'muslim', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'clearly', ',', 'in', 'the', 'united', 'states', 'at', 'least', ',', 'clark', 'was', 'known', 'only', 'as', 'a', 'singer', ',', 'although', 'she', 'had', 'appeared', 'as', 'an', 'actress', 'in', 'british', 'films', 'since', 'she', 'was', 'a', 'child', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'paul', 'goldsmith', 'pulled', 'out', 'of', 'the', 'race', 'due', 'to', 'engine', 'problems', 'on', 'lap', '3', '4', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'this', 'action', 'he', 'received', 'the', 'navy', 'cross', ',', 'which', 'he', 'publicly', 'refused', '(', 'the', 'only', 'man', 'to', 'do', 'so', 'in', 'world', 'war', 'ii', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'until', 'february', '1', '2', ',', 'over', '1', '4', '0', 'hospitals', 'reached', 'out', 'to', '', 'yu', 'for', 'help', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '9', ',', 'mazda', 'was', 'selected', 'as', 'a', 'technical', 'partner', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'values', 'of', 'other', 'variables', 'can', 'be', 'found', 'subsequently', 'in', 'the', 'same', 'way', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'house', ',', 'also', 'called', 'mineral', 'point', '', ',', 'was', 'built', 'for', 'samuel', 'j.', '', ',', 'who', 'introduced', '', 'cattle', 'to', 'kansas', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '2', '0', '0', '7', '', 'bowl', 'won', 'the', '2', '0', '0', '7', 'best', 'game', '', 'award', ',', 'and', 'the', 'game', \"'s\", 'final', 'play', 'won', 'the', '2', '0', '0', '7', 'best', 'play', '', 'award', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thus', 'began', 'a', 'business', 'relationship', 'that', 'would', '', 'for', 'the', 'next', 'quarter', 'century', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '1', '5', 'th', 'century', ',', 'the', 'village', 'found', 'its', 'way', 'into', '', 'hands', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'village', 'in', 'the', 'drama', 'regional', 'unit', ',', 'in', 'northeastern', 'greece', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'window', 'in', 'the', 'north', 'wall', 'of', 'the', 'northeast', 'tower', '', 'is', 'a', 'memorial', 'to', 'marie', 'louise', '', '', ',', 'who', 'died', 'in', '1', '8', '9', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'diverse', 'vegetation', 'supports', 'populations', 'of', 'insects', 'and', 'butterflies', ',', 'which', 'together', 'with', 'autumn', 'fruits', ',', 'attract', 'visiting', 'birds', 'such', 'as', 'warblers', ',', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'september', '2', '4', ',', 'a', 'large', 'demonstration', 'took', 'place', 'outside', 'the', '', ',', 'demanding', 'the', 'return', 'of', 'the', 'king', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'he', 'was', 'unable', 'to', '', 'the', 'throne', 'from', 'his', '', 'cousins', ',', 'who', 'were', 'senior', 'to', 'him', 'by', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'represented', 'hungary', 'in', 'the', '1', '9', '6', '7', 'world', 'championship', 'where', 'he', 'finished', 'in', 'eighth', 'place', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'also', 'studied', 'for', 'its', 'effects', 'on', 'sleep', 'regulation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'european', 'presence', 'in', 'the', 'new', 'world', 'had', '', ',', 'as', 'well', 'as', 'benefits', ',', 'for', 'native', 'americans', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'robert', ',', 'the', 'last', 'of', 'the', 'children', ',', 'was', 'born', 'in', '', 'on', '8', 'april', '1', '8', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'of', 'belfast', \"'s\", 'estimated', '9', '7', 'peace', 'lines', 'and', 'related', 'structures', '(', 'such', 'as', 'gates', 'and', 'closed', 'roads', ')', 'are', 'in', 'the', 'north', 'and', 'west', 'of', 'the', 'city', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'fifth', 'track', 'of', 'the', 'album', 'is', 'titled', '``', '', 'allah', \"''\", 'and', 'was', 'sung', 'by', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '4', 'friday', 'street', 'was', 'used', 'as', 'a', 'location', 'for', 'the', 'bbc', 'television', 'series', '``', 'the', '', \"''\", 'based', 'on', 'the', 'books', 'by', 'john', 'christopher', ',', 'where', ',', 'for', 'the', '', 'of', 'the', 'story', 'it', 'became', 'the', 'fictional', 'future', 'village', 'of', '``', '', '.', \"''\", '', '']\n", "['', 'on', 'september', '1', '5', ',', '2', '0', '0', '9', ',', 'jung', 'made', 'an', 'official', 'announcement', 'as', 'to', 'his', 'retirement', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'estate', 'in', '', ',', 'pennsylvania', 'was', 'devoted', 'to', 'a', 'large', 'extent', 'to', 'fruit', 'trees', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'currents', 'from', 'the', 'storm', 'pulled', 'a', 'swimmer', 'underwater', 'for', 'over', 'ten', 'minutes', 'off', 'oak', 'island', ';', 'the', 'man', 'died', 'of', 'his', 'injuries', 'the', 'next', 'day', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', 'born', 'around', '1', '8', '8', '0', ';', 'his', 'name', 'was', 'also', 'spelled', '', 'on', 'his', 'grave', 'or', '', 'in', 'other', 'sources', ')', 'was', 'a', 'native', 'american', '', 'and', '', 'whose', '', 'became', 'part', 'of', 'nevada', 'legend', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '0', '', 'mae', 'no', '', \"''\", 'was', 'used', 'as', 'the', 'april', 'ending', 'theme', 'to', 'the', 'television', 'program', '``', '', '', '!', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', '``', 'the', 'sunday', 'times', \"''\", ',', 'the', '', 'edition', 'was', 'the', 'year', \"'s\", '4', '', '', 'in', 'the', '``', 'general', '', \"''\", 'category', 'with', '1', '5', '3', ',', '1', '6', '0', 'copies', 'sold', 'by', 'end', 'of', 'the', 'year', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'the', 'inside', 'is', 'only', 'open', 'to', 'the', 'public', 'at', 'special', 'events', 'held', 'by', 'the', 'museum', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'game', 'is', 'based', 'around', 'the', 'idea', 'that', ',', 'human', 'nature', 'being', 'what', 'it', 'is', ',', 'the', 'ability', 'for', 'alternate', 'worlds', 'to', 'contact', 'each', 'other', 'would', '', 'lead', 'to', 'conflict', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'over', 'the', 'next', '2', '0', 'years', 'he', 'appeared', 'in', 'over', '1', '2', '5', 'films', ',', 'mostly', 'in', 'smaller', 'and', 'supporting', 'roles', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'along', 'with', 'other', 'species', 'in', 'the', 'genus', '``', 'scylla', \"''\", ',', 'it', 'is', 'widely', '', 'in', '', 'using', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'captured', 'on', '7', 'august', 'and', ',', 'including', 'a', 'period', 'of', 'seven', 'weeks', 'in', 'a', 'concentration', 'camp', ',', 'remained', 'in', 'a', '', 'camp', 'in', '', ',', 'germany', ',', 'until', 'liberated', 'by', 'the', '', 'on', '8', 'march', '1', '9', '4', '5', '.', '', '', '', '', '', '', '', '']\n", "['', 'she', 'also', 'acted', ',', 'under', 'the', 'direction', 'of', '', '', ',', 'in', '``', '', '', \"''\", ',', 'in', 'which', 'the', 'dialogue', 'was', 'written', 'by', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'this', 'sequence', ',', 'rihanna', '', 'a', '', 'black', 'bikini', 'and', 'waves', 'a', 'large', 'black', 'flag', 'with', 'a', 'white', '``', 'r', \"''\", 'in', 'the', 'middle', 'of', 'it', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'relics', 'were', 'later', 'translated', 'into', 'the', 'near', '', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'december', '1', '6', ',', '2', '0', '1', '9', ',', '', 'signed', 'with', 'the', 'texas', 'rangers', 'on', 'a', 'minor', 'league', 'contract', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'visited', 'german', 'prisoners', 'of', 'war', 'and', '', 'the', 'work', 'of', 'her', 'german', '', 'in', 'berlin', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'instead', ',', 'he', 'calls', 'himself', '``', '', 'abbot', \"''\", 'after', 'the', 'general', 'in', 'the', 'book', 'he', 'brought', 'back', ',', '``', 'lady', '', '', \"'s\", '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'system', 'is', 'largely', '', 'but', 'also', 'receives', 'a', '', 'from', 'the', 'state', 'to', 'run', 'the', 'job', 'centers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'girls', \"'\", 'peer', 'groups', 'are', 'characterized', 'by', 'strong', '', 'relations', ',', '', 'for', 'others', ',', 'and', 'working', 'towards', '', 'goals', ',', 'while', 'boys', 'focus', 'more', 'on', '', 'their', 'own', 'dominance', 'in', 'the', 'peer', 'group', 'and', '', 'goals', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '0', '5', ',', 'josé', '', 'was', 'arrested', 'and', 'then', 'released', ',', 'accused', 'of', 'wanting', 'to', '', 'the', 'government', 'of', 'the', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", 'was', 'then', 'released', 'through', 'artery', 'recordings', 'in', 'march', '2', '0', '1', '0', 'in', 'japan', 'and', 'the', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'first', '', ',', 'tax', 'payments', 'dropped', '5', '0', '%', ',', 'and', 'israel', 'responded', 'by', 'cutting', 'health', 'benefits', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '1', 'kennedy', 'was', 'planning', 'a', 'concert', 'in', 'sheffield', 'to', 'raise', 'funds', 'for', 'his', 'one', 'song', 'foundation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'follows', 'the', 'adventures', 'of', 'campus', 'radio', 'dj', 'and', '', 'band', 'manager', ',', 'xavier', 'p.', '', ',', 'as', 'he', 'tried', 'to', 'find', 'a', 'new', 'the', 'lead', 'singer', 'for', 'his', 'band', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'original', ',', '', 'version', 'was', 'recorded', 'with', '', 'for', 'the', '``', 'sound', 'magazine', \"''\", 'album', ',', 'but', 'was', 'discarded', 'and', 'never', 'released', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', '', 'says', 'that', 'the', 'game', \"'s\", 'biggest', '', 'lay', 'in', 'its', 'lack', 'of', 'variety', 'in', 'building', 'models', 'and', 'resources', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'group', 'specializes', 'in', 'a', 'novel', 'synthesis', 'technique', 'for', 'producing', '', ',', 'long', '(', 'several', '', ')', ',', '', '', 'which', 'can', 'be', 'strategically', 'incorporated', 'in', 'existing', 'advanced', 'composite', 'systems', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'time', 'of', 'his', 'death', 'he', 'was', 'engaged', 'on', 'a', '``', '', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'degradation', 'of', 'the', 'basement', 'membrane', 'is', 'an', 'essential', 'step', 'for', 'the', '', 'progression', 'of', 'most', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', 'result', ',', 'huerta', 'proceeded', 'more', 'carefully', ',', 'and', 'his', 'engineers', 'managed', 'to', 'find', 'all', 'the', 'remaining', 'mines', 'placed', 'by', 'orozco', \"'s\", 'men', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'cabinet', 'reshuffle', 'of', '2', '9', 'june', '2', '0', '0', '7', 'caroline', 'flint', 'moved', 'to', 'the', 'department', 'for', 'work', 'and', '', 'where', 'she', 'served', 'as', 'the', 'minister', 'for', 'employment', 'and', 'welfare', 'reform', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mazarin', ',', 'victorious', ',', 'returned', 'to', 'paris', 'on', 'february', '3', ',', '1', '6', '5', '3', 'and', 'took', 'charge', 'once', 'again', 'of', 'the', 'government', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'also', 'a', '', 'to', 'another', 'dimension', 'in', 'the', 'kitchen', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'racial', 'makeup', 'of', 'the', 'town', 'was', '9', '5', '.', '1', '%', 'white', ',', '1', '.', '1', '%', 'african', 'american', ',', '2', '.', '2', '%', 'asian', ',', '0', '.', '5', '%', 'from', 'other', 'races', ',', 'and', '1', '.', '1', '%', 'from', 'two', 'or', 'more', 'races', '.', '', '', '', '']\n", "['', 'the', '', 'church', 'was', 'in', 'use', 'for', 'several', 'centuries', 'until', '1', '6', '2', '7', 'when', 'it', 'was', 'torn', 'down', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'told', 'the', 'asthma', 'society', 'of', 'ireland', ',', '``', 'i', 'thought', 'to', 'myself', ',', 'this', 'is', 'something', 'that', 'i', 'am', 'just', 'going', 'to', 'have', 'to', 'put', 'up', 'with', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'nazi', '', '(', 'plural', '', ')', 'system', 'was', 'originally', 'established', 'in', 'a', 'party', 'conference', 'on', '2', '2', 'may', '1', '9', '2', '6', ',', 'in', 'order', 'to', 'improve', 'administration', 'of', 'the', 'party', 'structure', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'of', 'the', 'portuguese', 'colonizers', 'happened', 'during', 'the', '', '', 'era', 'in', 'the', '1', '7', 'th', 'century', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'more', 'than', '1', '0', ',', '0', '0', '0', 'years', 'ago', ',', '', '', 'from', 'northeast', 'ohio', ',', '', '', 'and', 'valleys', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'large', 'high', 'altitude', 'air', '', 'observatory', '(', '', ')', 'is', 'a', '', 'and', '', 'observatory', 'in', '', ',', 'in', 'the', '', '', 'autonomous', 'prefecture', 'in', 'sichuan', ',', 'china', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'dam', 'was', 'commissioned', 'in', '1', '9', '8', '2', ',', 'has', 'a', 'storage', 'capacity', 'of', ',', 'and', 'a', 'surface', 'area', 'of', ',', 'the', 'dam', 'wall', 'is', 'high', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', '2', '0', '0', '0', 's', 'there', 'became', 'more', 'and', 'more', '', 'punk', 'groups', ',', 'like', '', '', 'or', '', 'jones', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'cliff', '``', '', \"''\", 'of', '', 'i', 'is', 'an', 'example', 'of', 'a', '', 'inscription', 'in', '``', '', 'kannada', \"''\", 'script', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'took', 'place', 'on', '1', '6', 'may', 'in', 'the', '', '', 'stadium', 'in', '', '', ',', 'poland', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mark', '', ',', 'a', 'former', 'advisor', 'to', 'republican', 'president', 'george', 'w.', 'bush', ',', 'criticized', 'republican', 'opposition', 'to', 'the', 'project', ':', '``', 'and', 'here', 'we', 'are', ',', 'reinforcing', 'al', '', \"'s\", 'message', 'that', 'we', '', 'at', 'war', 'with', 'muslims', '.', \"''\", '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'highest', 'mountain', 'peaks', 'are', 'in', 'the', 'west', 'where', 'the', '', 'is', 'primarily', 'dark', '', 'granite', ',', 'which', 'gives', 'the', 'landscape', 'its', '', 'appearance', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'what', 'makes', 'the', 'sociolinguistics', 'of', 'sign', 'language', 'different', 'from', 'the', 'sociolinguistics', 'of', 'spoken', 'languages', 'is', 'that', 'sign', 'languages', 'have', 'several', 'variables', 'both', 'internal', 'and', 'external', 'to', 'the', 'language', 'that', 'are', 'unique', 'to', 'the', 'deaf', 'community', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'area', 'of', 'the', 'center', 'is', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'initial', 'collection', '', 'around', 'the', 'arts', 'of', '', 'and', 'objects', 'related', 'to', 'the', 'customs', ',', 'habits', ',', 'mythology', 'and', 'contemporary', 'objects', 'of', '', ',', 'but', 'later', 'on', 'it', 'was', 'expanded', 'to', 'more', 'interesting', '', '', 'from', 'nearby', 'places', 'of', '', 'particularly', 'where', 'buddha', 'grew', 'up', '.', '', '', '']\n", "['', 'around', '9', ',', '0', '0', '0', 'athletes', 'from', 'over', '4', '0', 'countries', 'compete', 'every', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'beginning', 'his', 'career', 'at', 'dreams', '', ',', 'he', 'played', 'in', 'the', '', 'premier', 'league', 'with', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'episode', 'begins', 'with', 'creedon', 'trying', 'to', '', 'the', 'true', 'source', 'of', 'the', 'shannon', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'march', '1', '9', '4', '2', 'the', 'division', 'prepared', 'a', '', 'statement', 'that', 'concerned', 'the', '``', 'specific', 'conditions', 'of', 'bosnia', 'and', 'herzegovina', ',', 'northern', '', ',', 'and', 'southwestern', 'croatia', '(', '', ')', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'that', 'is', ',', 'the', 'functions', 'and', 'are', 'composed', 'to', 'yield', 'a', 'function', 'that', 'maps', 'in', 'to', 'in', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'a', 'brief', 'period', 'at', '', 'college', ',', 'he', 'entered', 'the', 'united', 'states', 'naval', 'academy', 'in', 'annapolis', ',', 'maryland', ',', 'in', 'june', '1', '9', '4', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rodríguez', 'became', 'the', 'youngest', 'player', 'in', 'the', 'history', 'of', 'the', 'texas', 'rangers', 'to', 'hit', 'a', 'home', 'run', ',', 'on', 'august', '3', '0', ',', '1', '9', '9', '1', ',', 'facing', 'the', 'kansas', 'city', '', 'and', '', 'storm', 'davis', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'chapter', 'of', 'this', 'constitution', '', 'the', 'south', 'african', 'commitment', 'to', 'democratic', 'values', ',', 'human', 'rights', 'and', 'rule', 'of', 'law', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'earned', 'a', '', 'running', 'back', 'spot', 'in', 'camp', 'in', '2', '0', '1', '0', ',', 'but', 'a', 'week', '6', 'knee', 'injury', 'against', 'the', 'new', 'orleans', 'saints', 'ended', 'his', 'season', ',', 'landing', 'him', 'on', 'injured', 'reserve', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'relationship', 'produced', '', 'for', '``', '', \"''\", '(', '1', '9', '9', '7', ')', ',', '``', '', \"''\", 'and', '``', 'angel', \"''\", '(', 'both', '1', '9', '9', '8', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'supply', 'of', '', '', '', 'to', 'a', '', '', 'supply', 'of', '1', '.', '3', '', 'per', 'person', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'even', 'before', 'their', 'defeat', 'the', 'italians', 'had', 'asked', 'for', 'the', 'loan', 'of', 'heavy', 'artillery', ',', 'and', 'now', 'a', 'number', 'of', 'units', 'were', '', 'sent', 'by', 'rail', ',', 'including', '1', '/', '1', 'st', '', 'battery', ',', 'which', 'went', 'on', '1', '4', 'november', '.', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'other', 'hand', ',', 'boys', 'are', 'more', 'likely', 'than', 'girls', 'to', 'engage', 'in', 'organized', 'play', 'such', 'as', 'sports', 'and', 'activities', 'with', 'well-defined', 'rules', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'missions', 'range', 'from', 'physical', 'to', 'emotional', ',', 'and', 'they', 'meet', 'and', 'learn', 'skills', 'from', 'many', '', 'in', 'different', 'areas', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'divorce', 'of', 'her', 'parents', ',', '', 'lives', 'for', 'most', 'of', 'her', 'childhood', 'with', 'her', 'father', ',', 'whom', 'she', 'loves', 'and', '', 'greatly', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'next', 'to', 'the', '', 'tower', 'stood', 'an', 'eastern', 'orthodox', 'church', 'where', 'prince', '', 'was', 'buried', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'film', 'documents', 'a', 'part', 'of', 'the', '', 'intense', 'training', 'program', 'of', 'several', 'hundred', 'children', 'between', 'the', 'ages', 'of', 'nine', 'and', 'fourteen', ',', 'most', 'of', 'whom', 'are', 'either', '', 'or', 'from', 'very', 'poor', 'families', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'anteaters', 'have', 'won', '2', '8', 'national', 'championships', 'in', 'nine', 'different', 'team', 'sports', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'genus', 'was', 'erected', 'by', 'francis', 'walker', 'in', '1', '8', '5', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'film', 'is', 'named', 'after', 'the', 'dance', 'technique', 'known', 'as', 'the', '', ',', 'which', 'jackson', 'was', 'known', 'for', 'performing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'especially', ',', '', 'bearing', 'christian', '', ',', '', 'of', 'bronze', 'roman', '', 'and', '', 'pottery', 'are', 'listed', 'among', 'the', 'archaeological', 'finds', '', 'the', 'theory', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'identified', 'with', 'ordinary', 'people', 'rather', 'than', 'the', 'court', 'officials', 'and', 'often', 'sat', 'on', 'his', '', 'in', 'the', '', 'with', 'the', 'office', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'in', 'neutral', 'is', 'a', 'young', 'adult', 'novel', 'by', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'upon', 'his', 'death', 'in', '1', '8', '3', '1', ',', 'he', 'bequeathed', 'his', 'entire', 'library', ',', 'his', 'collection', 'of', 'early', 'american', 'newspapers', ',', 'as', 'well', 'as', 'his', 'personal', 'papers', 'and', 'records', 'to', 'the', 'american', '', 'society', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'under', 'university', '', ',', '', 'at', 'the', 'bone', 'bed', 'has', 'continued', 'in', 'the', 'summers', 'of', '2', '0', '0', '6', ',', '2', '0', '0', '7', 'and', '2', '0', '0', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '5', '9', ',', 'secon', 'started', 'taking', 'long', 'trips', 'to', 'europe', 'in', 'search', 'of', 'new', 'product', 'lines', ',', 'and', 'asked', 'morris', 'to', 'help', 'manage', 'the', 'store', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'early', '1', '9', '7', '0', 's', ',', '', '', 'created', 'the', 'children', \"'s\", 'television', 'programme', '``', 'de', '', \"''\", 'with', 'lead', 'roles', 'for', '', 'van', '', ',', 'prinsen', 'and', 'himself', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'represents', 'the', 'engineering', '', 'in', 'matters', 'of', 'public', 'concern', 'and', 'assists', 'governments', 'to', 'make', 'the', 'public', 'aware', 'of', 'engineering', 'and', 'technological', 'issues', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', '2', '0', '1', '1', 'population', 'was', '5', ',', '4', '2', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'whilst', 'his', 'father', 'had', 'served', 'in', 'the', 'egyptian', 'army', ',', 'it', 'was', 'actually', 'largely', 'due', 'to', 'his', 'mother', 'than', 'latif', 'was', 'able', 'to', 'rise', 'into', 'the', 'emerging', 'middle', 'class', ',', 'commonly', 'referred', 'to', 'as', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'works', '``', '', '', '(', 'stone', '', ')', \"''\", 'and', '``', '', '', '(', 'blue', 'river', ')', \"''\", 'are', 'probably', 'the', 'most', 'important', 'bosnian', '', 'achievements', 'of', 'the', '2', '0', 'th', 'century', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', 'law', 'review', \"''\", 'has', 'published', 'nationally', 'and', 'internationally', '', 'scholars', 'and', 'local', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', 'focused', 'her', 'research', 'on', '', 'diseases', ',', 'specifically', 'in', 'the', 'areas', 'of', '', ',', '', ',', '', 'technology', 'and', '', ',', 'and', 'vaccine', 'development', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'their', 'engines', 'were', '', 'inefficient', 'and', 'took', 'up', 'much', 'space', ',', 'while', 'fuel', 'and', 'fitting', 'out', 'costs', 'were', 'very', 'high', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', 'literally', '``', '', \"''\", 'or', '``', '', \"''\", ')', 'is', 'a', 'turkish', 'place', 'name', 'that', 'may', 'refer', 'to', 'the', 'following', 'places', 'in', 'turkey', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'most', 'successful', 'group', 'from', 'the', '2', '0', '0', '0', 's', 'is', 'les', '', 'with', 'the', 'songs', '``', 'manu', '', \"''\", 'and', '``', '', 'en', 'prison', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'eight', 'days', ',', 'the', 'bandits', 'were', '', 'and', 'by', '1', '2', 'july', '1', '9', '4', '6', ',', '9', '7', '2', 'bandits', 'were', 'captured', 'alive', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mature', 'leaves', 'contain', 'a', 'high', 'proportion', 'of', '', '', ',', 'less', 'energy', 'than', 'other', 'types', 'of', '', ',', 'and', 'often', '', 'compounds', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'journal', 'is', '', 'in', 'the', 'web', 'of', 'science', 'emerging', 'sources', 'citation', 'index', '(', '', ')', ',', 'has', '0', '.', '7', '3', '', '', '(', '2', '0', '1', '8', ')', ',', 'and', 'ranks', '4', '8', '7', 'out', 'of', '1', ',', '1', '1', '1', 'journals', 'in', 'sociology', 'and', 'political', 'science', '.']\n", "['', '(', '2', ')', 'free', '', 'mobile', 'agent', ':', 'have', '', 'migration', 'path', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'competed', 'in', 'the', '2', '0', '0', '6', ',', '2', '0', '0', '9', 'and', '2', '0', '1', '3', 'world', 'baseball', 'classic', 'representing', 'china', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'gameplay', 'involved', 'acquisition', 'of', 'the', '', 'of', '', ',', '', ',', '', ',', '', 'and', 'strength', ',', 'and', 'the', 'ultimate', 'goal', 'of', 'the', 'game', 'was', 'to', 'achieve', '', '', 'by', '', '', 'through', 'completion', 'of', '', 'and', '', 'the', 'six', '', 'in', '', 'order', '.', '', '', '', '', '']\n", "['', '', 'were', '', 'for', 'the', 'first', 'few', 'months', 'of', 'operations', 'and', 'began', 'to', 'be', 'collected', 'on', 'november', '9', ',', '2', '0', '1', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'order', 'to', 'effectively', 'deal', 'with', 'consequences', 'of', 'the', '', 'latin', 'plunder', ',', 'king', '', 'the', 'great', 'constructed', 'a', 'large', 'fortification', 'surrounding', 'the', 'monastery', 'with', 'the', 'protective', 'tower', 'named', 'after', 'the', '', 'of', 'christ', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'to', 'the', 'north', 'of', '', 'station', ',', 'the', 'line', 'enters', '', 'tunnel', ',', 'which', '', 'on', 'the', 'approach', 'to', '', 'station', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'meredith', 'worked', 'on', 'the', 'exchange', 'for', 'nearly', 'twenty', 'years', ',', 'and', 'at', 'his', 'retirement', 'was', 'one', 'of', 'its', 'oldest', 'members', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'story', 'is', 'based', 'on', '``', 'up', '', 'the', '', \"''\", 'by', '', 'goodrich', 'and', 'albert', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'october', '2', '0', '1', '8', ',', 'she', 'began', 'serving', 'as', 'an', 'associate', 'professor', 'at', 'the', 'technical', 'university', 'of', 'denmark', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'site', 'is', 'within', 'the', 'parish', 'of', 'little', '', 'in', 'north', 'norfolk', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'history', 'of', 'scandinavia', 'is', 'the', 'history', 'of', 'the', 'geographical', 'region', 'of', 'scandinavia', 'and', 'its', 'peoples', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'himself', ',', 'serious', ',', '', ',', 'a', '', '', ',', 'whose', 'works', 'are', 'but', 'studies', 'in', 'expression', ',', 'who', 'is', 'concerned', 'at', 'present', 'with', 'but', 'the', 'working', 'out', 'of', 'the', 'theory', 'of', '', ',', '', 'all', 'responsibility', 'for', 'the', '', 'of', 'his', '', '', '.', '', '', '', '']\n", "['', 'i', 'was', 'able', 'to', 'hear', 'clearly', '', 'steele', \"'s\", 'radio', 'conversations', 'with', 'the', 'embassy', 'in', '', ',', 'discussions', 'with', '', 'whitmire', 'as', 'well', 'as', '', 'with', 'the', 'various', '', '7', '6', '', 'present', 'as', 'the', 'operation', 'went', 'forward', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'all', 'enemies', 'fought', 'in', 'the', 'next', 'two', 'books', 'in', 'adventure', 'will', 'be', 'added', 'here', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'maintains', 'gardens', 'dedicated', 'to', '', 'classes', 'and', 'after', 'school', 'activities', 'in', 'which', 'children', 'grow', 'and', 'use', 'organic', 'vegetables', 'through', '', ',', 'cooking', ',', 'and', '', 'and', 'the', 'environmental', 'education', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'served', 'as', 'the', 'first', 'minister', 'of', 'aviation', 'from', '2', '0', '0', '6', 'till', 'july', '2', '0', '0', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hillary', 'wins', 'as', 'mayor', 'and', 'salvador', 'wins', 'the', '', 'seat', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'record', 'is', 'generally', 'held', 'to', 'be', '2', '2', 'solo', 'victories', ',', 'with', 'another', 'two', 'shared', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'course', 'of', 'his', 'work', 'he', 'came', 'to', 'know', 'the', 'major', 'players', 'in', 'the', '', 'struggle', 'and', 'gained', 'the', 'respect', 'and', 'confidence', 'of', 'leaders', 'such', 'as', 'nelson', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'all', 'i', 'am', '', 'of', 'is', 'that', 'our', 'good', 'work', 'will', 'amount', 'to', 'little', 'when', 'it', 'is', 'found', '!', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'classified', 'courses', ',', 'however', ',', 'were', 'conducted', 'in', 'government', 'facilities', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'privy', 'midden', '(', 'also', 'midden', '', ')', 'was', 'a', '', 'system', 'that', 'consisted', 'of', 'a', 'privy', '(', '', ')', 'associated', 'with', 'a', 'midden', '(', 'or', '', ',', '', 'a', 'dump', 'for', 'waste', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'grew', 'up', 'in', 'shannon', 'before', 'going', 'on', 'to', 'study', 'communication', 'studies', 'at', 'dublin', 'city', 'university', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'released', 'on', '2', '9', 'september', '2', '0', '0', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'noura', 'was', 'born', 'in', '', 'in', '1', '8', '7', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'primarily', 'it', 'means', 'unit', '', ':', 'the', '', 'of', 'a', 'unit', ',', 'task', 'force', ',', 'or', 'other', 'military', 'group', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '0', ',', 'after', 'completing', 'his', 'studies', ',', 'began', 'teaching', 'at', 'the', 'university', 'of', 'tehran', 'and', 'university', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'voices', 'include', 'that', 'of', 'arianna', '', 'as', 'tim', \"'s\", 'wife', 'arianna', 'the', 'bear', ',', '', '', 'as', 'tim', 'and', 'arianna', \"'s\", 'son', 'raymond', 'the', 'bear', ',', '', 'kennedy', 'as', '', \"'s\", 'boyfriend', 'gabriel', 'friedman', ',', '', '``', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'racial', 'makeup', 'of', 'the', 'cdp', 'was', '3', '.', '4', '7', '%', 'white', ',', '9', '2', '.', '0', '8', '%', 'native', 'american', ',', 'and', '4', '.', '4', '6', '%', 'from', 'two', 'or', 'more', 'races', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'the', 'tax', 'proved', 'very', 'difficult', 'to', 'collect', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'initially', 'two', 'versions', 'were', 'offered', 'for', 'sale', 'in', 'the', 'civilian', 'market', 'from', '1', '9', '6', '0', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'walls', 'are', 'in', '', 'on', 'the', 'ground', 'floor', ',', 'on', 'the', 'first', 'floor', 'and', 'on', 'the', 'second', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', 'a', 'vision', 'of', 'rural', 'south', 'asia', 'built', 'on', 'rich', '', 'and', 'prosperous', 'communities', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'joined', 'the', 'staff', 'of', 'the', 'carnegie', 'corporation', 'of', 'new', 'york', 'in', '1', '9', '4', '6', ',', 'and', 'in', '1', '9', '5', '5', 'he', 'became', 'president', 'of', 'that', 'group', ',', 'and', '', ',', 'the', 'carnegie', 'foundation', 'for', 'the', '', 'of', 'teaching', '.', '', '', '', '', '', '', '', '']\n", "['', 'after', 'his', 'defeat', 'at', 'the', '1', '6', '9', '5', 'election', ',', 'lawson', 'began', 'to', 'travel', ',', '', 'a', 'month', 'in', 'ireland', 'in', '1', '6', '9', '7', 'and', 'in', 'june', '1', '6', '9', '9', 'he', '', 'to', 'france', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'still', ',', 'receives', 'the', 'confidence', 'of', 'the', 'coach', ',', 'but', 'the', 'campi', 'is', 'returned', ',', 'since', 'their', 'actions', 'begin', 'to', 'generate', '', 'in', 'the', 'academic', 'audience', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'placed', 'first', 'in', 'throwing', 'out', 'runners', ',', '', '4', '8', '.', '6', 'percent', 'of', 'runners', 'attempting', 'to', 'steal', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'even', 'a', 'decade', 'later', ',', 'one', 'of', 'comyn', \"'s\", 'successors', 'wrote', 'that', '``', \"''\", 'the', 'burnt', '', 'of', 'his', 'stockade', ',', 'and', 'the', 'mud', 'walls', 'of', 'his', 'houses', \"''\", 'were', 'still', 'visible', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'same', 'unofficial', 'full', 'build', 'of', 'transmission', '', 'running', 'as', 'a', 'windows', 'service', 'can', 'be', 'used', 'for', 'direct', 'streaming', 'of', 'the', '', 'file', '(', 's', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'made', 'her', 'first', 'film', 'in', '1', '9', '2', '4', ',', 'and', 'with', 'her', '', 'hair', ',', 'green', 'eyes', ',', 'delicate', 'features', ',', 'and', '', '', ',', 'was', 'cast', 'in', 'a', 'string', 'of', 'supporting', 'roles', ',', 'where', 'she', 'was', 'required', 'to', 'do', 'very', 'little', 'but', 'smile', 'and', 'look', 'pretty', '.']\n", "['', '', 'believed', 'that', '', 'attacked', 'very', 'well', ',', 'keeping', 'the', 'pressure', 'on', 'australia', 'by', 'rotating', 'his', '', 'effectively', 'so', 'his', 'three', 'main', '', 'were', 'always', 'at', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'westminster', 'high', 'school', 'drama', 'also', '', 'and', 'performs', 'yearly', 'at', 'the', '', '``', 'drama', '', \"''\", 'where', 'every', 'school', 'does', 'a', 'variety', 'of', '', 'from', 'a', 'chosen', 'show', 'of', 'their', 'season', ',', 'and', 'are', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'john', 'iv', '', 'was', 'the', 'son', 'of', 'francesco', 'iii', '', ';', 'his', 'mother', 'was', '', '', '', ',', 'sister', 'of', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'church', 'on', 'this', 'site', 'was', 'likely', 'a', '', 'church', 'built', 'during', 'the', '1', '3', 'th', 'century', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'then', '', 'khan', 'was', 'sent', 'to', 'conquer', 'gujarat', 'itself', ',', 'where', 'he', 'defeated', 'its', '', 'king', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'sold', 'an', 'original', 'script', 'to', 'fox', 'titled', '``', 'no', 'place', 'like', 'home', \"''\", ',', 'but', 'it', 'appears', 'to', 'have', 'not', 'been', 'made', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'also', 'stated', 'that', '', \"'s\", 'manager', 'magnum', '', 'submitted', 'draft', 'application', 'papers', 'on', 'behalf', 'of', '', ',', 'even', 'if', '', 'already', 'submitted', 'his', 'own', 'papers', 'three', 'weeks', 'before', 'the', 'september', '4', 'draft', 'application', 'deadline', 'for', '', 'applicants', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'lies', 'approximately', 'south-west', 'of', '', ',', 'south', 'of', '', ',', 'and', 'north-west', 'of', 'warsaw', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', 'february', '2', '0', '0', '6', 'to', 'october', '2', '0', '1', '4', ',', 'the', 'cluster', 'data', 'could', 'be', 'accessed', 'via', 'the', 'cluster', 'active', 'archive', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'they', 'were', 'a', 'maritime', 'people', 'who', 'lived', 'from', '', 'the', 'sea', ',', 'shifting', 'camp', 'sites', 'regularly', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'wrote', 'the', '2', '0', '1', '9', 'book', '``', '', ':', 'online', '', ',', '', 'and', 'the', '', 'of', 'the', 'american', 'conversation', \"''\", ',', 'the', 'edition', 'of', 'the', 'book', 'published', 'by', 'london', \"'s\", '', 'is', 'entitled', '``', '', ':', 'how', '', 'broke', 'america', \"''\", '.', '', '', '', '', '']\n", "['', 'the', '', 'of', 'new', '', 'resulted', 'in', 'massive', 'body', 'sizes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'popular', 'with', 'many', 'in', 'september', '1', '9', '1', '4', 'mrs', 'myra', '', 'made', 'it', '``', 'her', '', 'now', \"''\", 'to', 'go', 'after', 'marshall', \"'s\", '``', 'political', '', \"''\", 'not', 'believing', 'he', 'was', 'fit', 'for', 'the', 'position', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'last', 'horror', 'movie', 'is', 'a', '2', '0', '0', '3', 'british', 'found', 'footage', 'horror', 'film', 'directed', 'by', 'julian', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', '1', 'november', '2', '0', '1', '4', ',', 'it', 'is', 'the', 'sole', 'public', 'access', 'point', 'to', 'the', 'cluster', 'mission', 'scientific', 'data', 'and', 'supporting', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'gave', 'him', 'practical', 'experience', 'with', '', ',', 'an', 'art', 'he', 'more', 'than', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'species', '', 'as', 'an', '', 'or', 'mature', 'larva', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'koufax', 'had', 'his', 'strong', 'season', 'despite', 'an', 'injured', 'pitching', 'hand', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '6', '', 'june', 'left', 'the', 'band', ',', 'and', 'the', '4', 'remaining', 'members', 'left', 'their', 'hometown', 'of', '', 'and', 'moved', 'to', 'kuala', 'lumpur', 'to', 'record', 'their', 'first', 'album', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', 'mouth', \"''\", 'won', 'an', '', 'award', 'and', 'an', 'outer', 'critics', 'award', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '7', '9', '8', 'the', 'area', 'was', 'included', 'in', 'the', 'mississippi', 'territory', 'but', 'was', 'controlled', 'by', 'the', 'creek', 'nation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'are', 'a', '', 'fish', 'of', 'the', '', 'family', 'found', 'in', 'the', 'atlantic', 'and', 'arctic', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', '', '', ',', 'st.', 'louis', 'won', 'the', 'vote', 'for', 'the', '9', 'th', 'north', 'american', 'science', 'fiction', 'convention', 'in', '2', '0', '0', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rice', 'kept', 'being', 'announced', 'for', 'low', 'prices', 'in', 'the', 'newspapers', 'of', 'singapore', ',', 'australia', 'and', 'china', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'shadow', 'banning', ',', 'also', 'called', '', 'banning', ',', 'ghost', 'banning', 'or', 'comment', '', ',', 'is', 'the', 'practice', 'of', 'blocking', 'or', 'partially', 'blocking', 'a', 'user', 'or', 'their', 'content', 'from', 'an', 'online', 'community', 'so', 'that', 'it', 'will', 'not', 'be', '', 'apparent', 'to', 'the', 'user', 'that', 'they', 'have', 'been', 'banned', '.', '', '']\n", "['', '', ',', 'who', 'switched', 'for', '', 'as', 'the', 'safety', 'car', 'came', 'in', ',', 'began', 'setting', 'times', 'at', 'the', 'same', 'pace', 'as', 'the', 'leaders', ',', 'and', 'gained', '1', '5', 'th', 'position', 'as', 'the', 'drivers', 'in', 'front', 'changed', 'tyres', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'son', 'of', 'a', 'swedish', 'immigrant', ',', 'he', 'studied', 'at', 'the', '', 'school', 'of', 'fine', 'arts', 'and', 'the', 'university', 'of', 'minnesota', 'with', 'the', 'hope', 'of', 'becoming', 'a', 'writer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'dmytryk', 'made', '``', 'walk', 'on', 'the', 'wild', 'side', \"''\", '(', '1', '9', '6', '2', ')', 'for', 'producer', 'charles', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'brothers', 'of', '', ',', 'massachusetts', ',', 'were', 'selected', 'to', 'plan', 'the', 'exposition', ';', 'the', 'firm', 'was', 'already', 'involved', 'in', 'planning', 'parks', 'and', '', 'for', 'the', 'city', 'of', 'seattle', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', '', 'from', 'human', 'interaction', 'are', 'at', '', '', 'along', 'the', 'river', '', ';', 'these', 'were', 'caused', 'by', 'mining', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'its', 'role', 'as', 'a', 'courthouse', ',', 'it', 'provided', 'an', 'important', 'contribution', 'to', 'the', 'administering', 'of', 'law', 'and', 'order', 'and', 'the', '', 'of', 'social', 'justice', 'over', 'a', 'period', '', '1', '2', '0', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'stated', 'an', '', 'towards', 'eu', 'membership', ',', 'and', 'that', 'if', 'accessing', 'the', 'union', ',', 'norway', 'could', 'always', 'use', 'a', '', 'against', 'eu', 'policies', 'when', 'needed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'were', 'reports', 'that', 'mgm', 'distributed', 'a', 'different', 'version', 'of', 'the', 'film', 'in', 'china', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'this', 'time', '', 'were', 'arguably', 'the', 'most', 'popular', 'category', 'in', 'australian', 'speedway', 'with', '', 'of', 'up', 'to', '3', '0', ',', '0', '0', '0', 'attending', 'meetings', 'at', 'the', 'sydney', '', 'and', 'over', '1', '0', ',', '0', '0', '0', 'in', 'adelaide', 'and', 'brisbane', '.', '', '', '', '', '', '', '']\n", "['', 'its', 'construction', 'continued', 'in', 'the', '1', '4', 'th', 'century', 'and', 'was', 'finally', 'completed', 'in', 'the', '1', '5', 'th', 'century', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'has', 'also', 'had', 'starring', '', 'in', 'animated', 'features', ',', 'including', '', 'in', '``', 'ice', 'age', \"''\", '(', '2', '0', '0', '2', ')', 'and', '', 'in', '``', 'shark', 'tale', \"''\", '(', '2', '0', '0', '4', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'would', 'allow', 'taxes', 'on', '', 'and', '', 'to', 'be', 'removed', 'or', 'reduced', 'and', 'would', 'encourage', 'only', 'those', 'prepared', 'to', '', 'the', 'potential', 'of', 'their', 'land', 'to', 'remain', 'in', 'farming', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'one', 'of', 'the', 'earliest', '', 'of', 'this', 'kind', 'in', 'germany', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'despite', 'his', 'powers', 'threatening', 'to', 'go', 'out', 'of', 'control', ',', 'he', 'escaped', 'from', 'croit', \"'s\", 'attempts', 'to', '', 'him', 'and', 'fled', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'experts', 'estimated', 'that', 'it', 'could', 'handle', 'even', 'large', 'aircraft', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'opera', 'was', 'later', '', 'in', 'different', '', 'as', 'part', 'of', '', \"'s\", 'duo', 'and', '', \"'s\", '', 'ranges', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'title', 'of', 'the', 'film', 'is', 'a', 'play', 'on', 'hoffman', \"'s\", '1', '9', '7', '0', '', '', 'titled', '``', 'steal', 'this', 'book', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'doctor', '', 'by', 'saying', 'that', 'the', 'women', 'were', 'well', 'when', 'they', 'left', 'the', 'hospital', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'election', 'was', 'very', 'close', ',', 'with', 'the', 'house', 'of', 'representatives', 'required', 'to', 'decide', 'the', 'final', 'outcome', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'served', 'as', 'the', 'sunday', 'editor', 'of', '``', 'the', 'new', 'york', 'world', 'journal', 'tribune', \"''\", 'and', 'assistant', 'managing', 'editor', 'of', '``', 'the', 'washington', 'post', \"''\", 'before', 'joining', 'nbc', 'in', '1', '9', '6', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'congress', 'enacted', 'the', 'rocky', 'mountain', 'arsenal', 'national', 'wildlife', 'refuge', 'act', 'on', 'september', '2', '5', ',', '1', '9', '9', '2', ',', 'and', 'the', 'legislation', 'was', 'signed', 'into', 'law', 'by', 'president', 'george', 'h.', 'w.', 'bush', 'on', 'october', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'returned', 'to', 'broadway', 'as', '', 'of', '``', 'elf', \"''\", 'with', 'thomas', '', ',', 'lyrics', 'by', '', '', 'and', 'music', 'by', 'matthew', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'are', 'often', '', 'shops', 'or', 'feature', 'progressive', 'designers', 'and', 'products', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'entered', 'the', 'united', 'states', 'air', 'force', 'in', '1', '9', '8', '4', 'as', 'a', 'graduate', 'of', 'the', 'united', 'states', 'air', 'force', 'academy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'reports', 'must', 'be', '', 'within', '', 'standards', 'and', 'must', 'list', 'the', 'following', 'information', 'for', 'trips', 'taken', 'during', 'the', 'preceding', '', 'period', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'same', 'day', ',', 'three', 'other', '', 'were', 'reported', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', '1', '9', '8', '0', 's', '', 'worked', 'at', 'the', 'russian', 'museum', 'and', 'enjoyed', 'access', 'to', 'its', 'collection', 'and', 'archive', ',', 'as', 'well', 'as', 'close', 'working', 'relationships', 'with', 'its', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'first', 'wife', 'was', 'tilottama', '', ',', 'a', '', 'and', '', 'academic', ',', 'and', 'the', 'granddaughter', 'of', 'politician', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'charlie', '', 'holds', 'the', 'record', 'as', 'the', 'most', 'successful', 'trainer', 'at', 'the', 'derby', ',', 'having', 'won', 'it', 'on', 'seven', 'occasions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'further', 'success', 'came', 'with', 'ii', ',', 'released', 'in', '2', '0', '1', '3', ',', 'and', 'the', 'group', 'began', 'selling', 'out', 'shows', 'across', 'north', 'america', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'statutory', 'provision', 'for', '', 'emancipation', 'has', 'spread', 'outside', 'of', 'common', 'law', '', ',', 'for', 'example', 'brazil', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'established', 'the', 'lithuanian', 'people', \"'s\", 'party', 'soon', 'afterwards', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'first', 'book', ',', '``', 'lord', '', 'and', 'the', 'whig', 'party', \"''\", '(', '1', '9', '2', '7', ')', ',', 'grew', 'out', 'of', 'his', 'doctoral', 'thesis', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'species', 'of', '', 'in', 'the', 'family', '', ',', 'the', 'only', 'species', 'in', 'the', 'genus', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'southeast', '', 'is', 'owned', 'and', 'produced', 'by', 'catherine', 'gross', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'meanwhile', ',', 'another', 'communist', 'force', 'cross', 'the', '', '(', '', ')', 'mountain', 'and', 'with', 'the', 'help', 'of', 'communist', 'force', 'in', '', ',', 'attacked', 'bandits', 'fled', 'to', '', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'recovered', '', 'and', '', 'also', 'arrive', ';', 'the', '', '', 'and', 'are', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'war', ',', 'the', 'soviet', 'union', 'expelled', 'a', 'moderate', 'number', 'of', 'ethnic', 'germans', 'to', 'the', 'west', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'the', 'beginning', 'of', 'the', '1', '1', 'th', 'century', 'most', 'of', 'the', 'slavic', 'world', ',', 'including', ',', 'bulgaria', ',', 'serbia', ',', 'and', 'russia', 'had', 'converted', 'to', 'orthodox', 'christianity', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'still', 'quite', 'unstable', ',', 'as', 'should', 'be', 'expected', 'in', 'its', '', 'state', ',', 'as', '', 'had', 'been', 'prevalent', 'and', 'no', 'release', 'date', 'had', 'been', 'set', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'city', 'population', 'was', '5', ',', '4', '6', '3', 'at', 'the', '2', '0', '1', '0', 'united', 'states', 'census', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'stream', 'flows', 'first', 'to', 'the', 'northeast', 'and', 'passes', 'different', 'parts', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', ')', ',', 'to', 'be', 'paid', 'to', 'his', 'wife', 'in', 'scotland', ',', 'to', 'be', 'secured', 'an', 'equivalent', 'for', 'his', 'lands', 'in', '', ',', 'and', 'to', 'be', 'conducted', '', 'to', 'the', 'swedish', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', '', ',', '', 'and', 'other', 'aquatic', 'insects', '', 'the', 'wetland', 'areas', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'conflict', 'between', 'park', 'and', 'the', 'lee', 'administration', 'cost', 'her', 'a', 'considerable', 'decrease', 'in', 'her', 'approval', 'rating', 'at', 'the', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'of', '', \"'s\", 'paintings', '(', '', 'forest', ',', 'palm', 'trees', 'and', '', ')', 'was', 'selected', 'by', 'japan', 'post', 'for', 'a', '', '', '', 'in', '2', '0', '0', '3', ',', '', 'the', '5', '0', 'th', 'anniversary', 'of', 'the', '', 'of', 'the', '', 'islands', 'to', 'japanese', 'administration', '.', '', '', '']\n", "['', 'in', 'israel', 'the', 'cabinet', 'secretary', '(', 'also', 'called', 'the', 'government', 'secretary', ')', 'heads', 'an', 'office', 'responsible', 'for', '', 'the', 'agenda', 'of', 'cabinet', 'meetings', 'and', '', 'communication', 'between', 'ministers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'would', 'throw', 'punches', 'against', 'any', 'legal', 'area', 'he', 'could', 'reach', ',', 'exposed', 'or', 'covered', ',', '', 'on', 'his', '', 'power', 'to', 'wear', 'down', 'his', 'opponents', 'and', 'exploiting', 'any', 'opening', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'daniels', 'always', '', 'what', 'it', 'would', 'be', 'like', 'to', '', 'the', 'energy', 'they', 'were', 'researching', ',', 'to', 'be', 'powerful', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'between', '1', '9', '7', '0', 'and', '1', '9', '7', '3', ',', 'he', 'chaired', 'the', 'southern', 'africa', 'content', 'group', ',', 'part', 'of', 'the', 'all', 'africa', 'conference', 'of', 'churches', \"'\", '', 'ministry', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'album', 'marked', 'her', '', 'week', 'atop', 'the', 'chart', ',', 'breaking', 'her', 'tie', 'with', '', 'and', 'ranking', 'her', 'at', 'number', 'five', 'on', 'the', 'list', 'of', 'artists', 'with', 'most', 'accumulated', 'weeks', 'at', 'the', 'top', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'initial', '', 'derived', 'from', 'resentment', 'of', 'the', 'novel', ',', 'which', 'critics', 'charged', 'focused', 'only', 'on', 'the', 'perceived', '', 'of', 'the', 'country', ',', 'while', 'some', 'government', 'officials', 'hoped', 'to', 'have', 'control', 'which', 'would', 'be', 'gone', 'if', 'the', 'film', 'work', 'was', 'done', 'outside', 'china', '.', '', '', '', '', '', '', '']\n", "['', 'the', '', 'refurbished', 'the', 'lodge', \"'s\", 'reception', 'room', 'and', 'partly', 'refurbished', 'the', '', ',', 'leaving', 'some', 'original', '', 'and', 'the', 'original', 'decorated', 'ceiling', ',', 'but', 'made', '', 'changes', 'to', 'the', 'great', 'oak', 'room', ',', 'small', 'oak', 'room', 'and', 'bedroom', ',', 'leaving', 'the', 'rich', '', '', 'largely', '', '.', '', '']\n", "['', 'the', '', 'document', 'continues', 'with', 'an', 'account', 'of', 'their', '', 'and', 'the', 'places', 'through', 'which', 'they', 'passed', 'along', 'the', 'way', ',', 'ending', 'with', 'a', '', ',', '', 'account', 'of', 'the', 'conquest', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'happy', 'with', '', 'as', 'her', 'husband', ',', 'so', 'making', 'him', 'king', 'of', 'the', 'west', '', 'and', '', 'his', 'vision', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '5', 'he', 'took', 'up', 'writing', 'full-time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'wickrematunge', 'was', 'threatened', 'by', 'president', '', '', 'using', '', 'language', 'in', 'a', 'telephone', 'call', 'on', '1', '1', 'january', '2', '0', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'fuller', 'died', 'in', 'his', 'office', ',', 'while', 'resting', 'from', 'his', 'work', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'first', 'article', 'published', ',', 'the', 'editorial', 'team', 'described', 'the', 'planning', 'process', 'for', 'the', 'launch', ':', '``', 'we', 'decided', 'we', 'want', 'to', 'publish', 'in', 'arabic', 'as', 'well', 'as', 'english', ',', 'that', 'we', 'want', 'to', 'see', 'more', '', 'reports', ',', 'more', 'investigative', 'journalism', '.', '', '', '', '', '', '']\n", "['', 'at', 'the', 'end', 'of', 'the', '1', '5', 'th', 'century', 'the', 'abbey', 'joined', 'the', '', 'congregation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'her', 'from', 'being', 'run', 'over', ',', 'which', 'leaves', 'him', '', 'between', 'the', '', 'to', 'his', 'old', 'friend', 'kabamaru', 'and', 'the', 'grateful', 'ran', 'on', 'one', 'side', 'and', 'his', 'duty', 'to', 'his', '', ',', '', '', ',', 'on', 'the', 'other', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'has', 'played', 'in', 'major', 'league', 'baseball', '(', 'mlb', ')', 'for', 'the', 'cleveland', 'indians', ',', 'baltimore', '', ',', '', 'bay', 'rays', ',', '', '', ',', 'st.', 'louis', 'cardinals', ',', 'and', 'toronto', 'blue', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'the', '', 'conducts', 'special', 'operations', ',', 'its', 'missions', 'are', 'not', 'planned', 'by', 'the', 'netherlands', 'special', 'operations', 'command', '(', '', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', '2', '3', ':', '4', '8', ',', 'after', 'returning', 'to', 'the', 'base', 'course', ',', '``', 'northampton', \"''\", 'was', 'hit', 'by', 'two', 'of', '``', '', \"'s\", \"''\", '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'the', 'time', 'of', 'independence', 'of', 'pakistan', ',', 'the', 'hajong', '', 'operating', 'along', 'the', '', 'border', 'were', 'well', 'organised', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'he', 'added', 'to', 'what', 'was', 'known', 'as', 'the', 'original', '``', 'cottage', \"''\", 'that', 'was', 'at', 'the', 'back', 'of', 'the', 'house', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'time', '', '', 'between', 'the', 'center', 'site', '0', 'and', 'site', 'j', 'with', 'the', 'relative', '', '(', '``', '', ',', '', \"''\", ')', 'is', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'the', 'inaugural', 'may', '2', '0', '1', '3', 'county', 'elections', 'the', 'ward', 'was', 'represented', 'by', 'two', 'independent', 'councillors', ',', 'victor', 'hughes', 'and', '', '', 'jones', ',', 'on', 'a', 'turnout', 'of', '5', '2', '.', '8', '%', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '6', ',', '', 'missed', 'the', 'beginning', 'of', 'the', 'season', ',', 'from', 'april', '6', 'to', 'may', '6', ',', 'with', 'an', 'oblique', 'injury', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '1', 'october', '1', '9', '8', '7', ',', 'calder', 'park', 'hosted', 'round', '9', 'of', 'the', 'inaugural', 'world', 'touring', 'car', 'championship', 'on', 'the', 'combined', 'road', 'course', 'and', 'the', 'newly', 'built', 'high', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'september', '2', '0', '1', '9', ',', 'he', 'was', 'named', 'in', 'the', 'squad', 'for', 'the', 'cape', 'town', 'blitz', 'team', 'for', 'the', '2', '0', '1', '9', '', 'super', 'league', 'tournament', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'leaving', 'school', ',', 'she', 'worked', 'at', 'the', 'nearby', 'ford', 'dagenham', 'factory', ',', 'and', 'did', 'some', 'part-time', '', 'before', 'coming', 'second', 'as', 'a', 'singer', 'in', 'a', 'local', 'talent', 'contest', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'north', 'wales', 'coast', 'line', 'runs', 'through', '', 'junction', 'with', 'trains', 'running', 'fast', 'through', 'the', 'station', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'of', 'the', '', 'were', '', 'while', 'sixteen', 'were', 'between', 'ages', 'five', 'to', 'eleven', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'andrew', '', '(', 'born', 'february', '1', '2', ',', '1', '9', '6', '2', ')', 'is', 'a', 'canadian', 'composer', 'of', '', ',', 'operas', ',', 'chamber', ',', 'and', 'solo', 'music', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'july', '2', '0', '1', '5', ',', 'lockheed', 'martin', 'confirmed', 'the', '', 'of', 'a', 'leaked', 'report', 'showing', 'the', 'f-', '3', '5', 'to', 'be', 'less', '', 'than', 'an', 'older', 'f-', '1', '6', 'd', 'with', 'wing', 'tanks', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'described', 'by', '', 'in', '1', '8', '7', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'normally', ',', 'these', 'are', 'under', 'the', 'control', 'of', 'the', 'secretary', 'general', 'of', 'the', 'presidency', ',', 'but', 'they', 'can', 'be', 'assigned', 'to', 'the', '', 'of', 'state', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'earned', 'a', 'certificate', 'in', '', '', 'from', 'jordan', 'technical', 'college', 'and', 'studied', 'business', 'management', 'at', 'salt', 'lake', 'community', 'college', 'in', 'utah', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'show', 'ran', 'from', 'august', '2', '0', '1', '1', 'until', 'october', '2', '0', '1', '8', 'with', '3', '7', '1', 'episodes', 'made', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'that', 'time', 'unemployment', '', '1', '7', '0', '%', ',', 'the', 'unemployment', 'rate', 'rose', 'from', '4', '.', '2', '%', 'in', 'the', 'september', '1', '9', '8', '7', 'quarter', 'to', '7', '.', '5', '%', 'in', 'the', 'june', '1', '9', '8', '9', 'quarter', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'secon', 'remained', 'store', 'manager', ',', 'while', 'morris', ',', 'who', 'was', 'also', '', 'inclined', ',', 'became', 'principal', '', 'for', 'the', 'rochester', 'philharmonic', 'orchestra', 'and', 'teacher', 'at', 'the', '', 'school', 'of', 'music', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'stable', 'court', ',', 'some', 'to', 'the', 'north', ',', 'is', 'also', 'a', 'grade', 'ii', 'listed', 'building', 'and', 'both', 'are', 'owned', 'by', 'pembrokeshire', 'county', 'council', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'share', '', ',', 'when', 'the', 'pieces', 'must', 'be', 'separated', 'by', 'a', 'positive', 'distance', ',', 'can', 'not', 'be', 'done', 'using', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'would', 'also', 'have', 'been', 'the', 'place', 'where', 'he', 'retired', 'during', 'the', '', ',', 'which', 'may', 'be', 'true', 'to', 'the', 'extent', 'that', 'the', 'site', 'was', 'at', 'least', 'located', 'outside', 'the', 'walls', 'of', 'the', 'former', 'city', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'served', 'as', 'chief', 'judge', 'from', '1', '9', '9', '1', 'to', '1', '9', '9', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'elf', \"''\", 'had', 'two', 'limited', '', 'for', 'the', 'holiday', 'seasons', 'of', '2', '0', '1', '0', 'and', '2', '0', '1', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'prince', '', '', '(', ',', ')', 'was', 'appointed', 'the', 'regent', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'served', 'in', 'the', 'second', 'world', 'war', 'in', 'north', 'west', 'europe', 'for', 'which', 'he', 'was', 'awarded', 'the', 'distinguished', 'service', 'order', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'banjaras', ',', 'also', 'called', '', '', ',', 'in', '', 'taluk', 'belong', 'to', 'both', '``', '', 'rathod', \"''\", 'and', '``', '', '', \"''\", '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'several', '', 'players', '(', '', '', 'and', '', '', 'among', 'others', ')', 'left', 'the', 'club', 'as', 'a', 'result', 'of', 'conflict', 'with', 'romantsev', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'a', 'customary', 'law', 'system', 'used', 'in', 'the', 'county', 'of', '', ',', 'similar', 'to', 'the', 'ones', 'used', 'in', '', 'of', '', ',', 'kingdom', 'of', '', 'and', 'kingdom', 'of', 'valencia', 'during', 'the', 'middle', 'ages', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'facilities', 'in', 'the', 'living', 'group', '(', '', ',', 'common', 'rooms', ',', 'tea', '', 'etc', '.', ')', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '3', '2', '2', ',', 'hallschlag', 'had', 'its', 'first', 'documentary', 'mention', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'camels', 'dropped', 'from', 'low', 'altitude', 'and', 'then', '', 'the', 'airfield', 'from', 'so', 'low', 'that', 'two', 'camels', 'touched', 'the', 'ground', 'with', 'their', 'wheels', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'named', 'to', '', 'that', 'the', 'area', 'is', 'full', 'of', 'possibility', 'due', 'to', 'the', 'number', 'of', 'learning', 'and', 'creative', 'campuses', 'in', 'this', 'small', 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'his', 'time', 'in', 'the', 'new', 'zealand', 'medical', 'corps', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', '', '', '', 'who', 'eventually', '', 'to', 'the', 'murder', 'of', 'sally', '', 'after', '', '', 'everyone', \"'s\", 'movements', 'on', 'the', 'night', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'or', '', 'was', 'invented', 'in', '1', '9', '3', '8', 'and', 'can', 'be', '', 'for', 'use', 'in', 'the', 'medical', 'industry', 'for', 'prolonged', 'contact', 'with', 'skin', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'thailand', ',', 'the', 'vehicle', 'is', 'called', 'the', 'hilux', 'vigo', ',', 'or', 'simply', 'vigo', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'was', 'then', 'installed', 'as', 'governor', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'new', 'updated', '', 'rapid', \"'s\", 'petrol', 'gets', 'powered', 'by', 'the', 'familiar', '1', '.', '6', '', 'petrol', 'motor', 'that', 'has', 'the', 'capability', 'to', 'generate', 'a', 'maximum', 'power', 'output', 'of', '1', '0', '5', '', 'along', 'with', '1', '5', '3', '', 'of', 'top', 'torque', '.', '', '', '', '', '', '', '']\n", "['', 'paul', '', 'the', 'people', 'that', 'they', 'are', '``', 'no', 'longer', '', 'to', 'the', 'world', \"'\", '(', ')', ',', 'but', 'in', 'intimate', 'union', 'with', 'christ', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'if', 'a', 'senator', 'were', 'to', 'die', ',', 'hawaii', 'election', 'law', 'requires', 'that', 'the', 'governor', '', 'a', 'replacement', 'of', 'the', 'same', 'party', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'estimated', 'that', 'without', 'significant', 'human', 'intervention', ',', '', 'parish', 'will', 'lose', '5', '5', '%', 'of', 'its', 'current', 'land', 'to', 'rising', 'sea', 'levels', 'over', 'the', 'next', '5', '0', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'believed', 'that', 'the', 'intellect', 'was', 'superior', 'to', 'the', 'will', 'in', 'this', 'regard', 'since', 'through', 'it', ',', 'god', 'can', 'be', 'known', 'without', 'any', 'of', 'the', 'human', '', 'with', 'which', 'the', 'will', '', 'its', 'image', 'of', 'him', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'lack', 'of', 'water', ',', '', 'with', 'the', 'destruction', 'of', 'soil', 'that', 'takes', 'centuries', 'to', 'form', ',', 'can', 'cause', 'the', 'failure', 'of', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'final', '8', '-', '7', 'vote', ',', 'which', 'split', 'along', 'partisan', 'lines', ',', 'effectively', 'made', '', 'president', ',', 'and', 'bradley', 'was', 'characterized', 'in', 'the', 'press', 'as', 'the', '``', 'casting', 'vote', \"''\", ',', 'or', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '', \"'s\", 'oval', 'eggs', 'are', 'pale', '', ',', 'flattened', 'above', 'and', 'below', 'with', 'slightly', '', 'tops', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '4', ',', 'songwriter', 'jeff', '', 'began', 'writing', 'a', 'film', 'treatment', 'for', 'a', '', 'film', 'concerning', '', \"'s\", 'life', 'and', 'death', 'that', 'was', 'shelved', 'in', '2', '0', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'episode', 'was', 'written', 'by', 'john', '', 'and', '', '', 'and', 'directed', 'by', 'david', 'warren', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'that', 'same', 'year', 'she', 'portrayed', '', 'in', 'the', 'new', 'york', 'city', 'center', 'revival', 'of', 'george', '', \"'s\", '``', '', 'and', '', \"''\", 'with', 'william', '', 'and', 'martha', 'flowers', 'in', 'the', 'title', 'roles', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'list', 'also', 'contained', 'a', 'sequence', 'of', '2', '8', '', ',', 'starting', 'with', '1', '0', '5', '4', '', ',', 'that', 'were', 'all', 'named', 'after', 'plants', ',', 'in', 'particular', '', 'plants', '``', '(', 'also', 'see', 'list', 'of', 'minor', '', 'named', 'after', 'animals', 'and', 'plants', ')', \"''\", '.', '', '', '', '']\n", "['', 'the', 'building', 'dates', 'to', 'the', '1', '6', 'th', 'century', 'and', 'the', 'exterior', 'was', '', 'in', '1', '9', '0', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'yap', 'was', 'responsible', 'for', '', 'british', 'columbia', \"'s\", 'climate', 'action', 'plan', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'you', 'really', 'do', \"n't\", 'know', 'about', 'these', 'horses', 'until', 'you', 'put', 'them', 'in', 'that', 'scenario', ',', 'and', 'that', \"'s\", 'twice', 'now', 'that', 'he', 'just', 'fought', 'and', 'came', 'on', 'to', 'win', 'like', 'that', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'company', 'was', 'started', 'and', 'run', 'by', 'edward', 'kingsley', '(', '1', '9', '1', '4', '-', '1', '9', '6', '2', ')', ',', 'a', 'pioneer', 'in', '``', 'art', 'house', \"''\", 'film', 'distribution', 'in', 'the', 'us', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '0', '3', ',', 'he', 'returned', 'to', '', 'where', 'he', 'worked', 'as', 'a', 'tailor', ',', 'a', 'farmer', 'and', 'public', 'letter', 'writer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'all', 'use', 'of', 'government', 'aircraft', 'by', 'agencies', 'must', 'be', 'reported', '', 'to', 'the', 'general', 'services', 'administration', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bulgaria', \"'s\", 'church', 'was', 'officially', 'recognized', 'as', 'a', '', 'by', '', 'in', '9', '2', '7', ',', 'serbia', \"'s\", 'in', '1', '3', '4', '6', ',', 'and', 'russia', \"'s\", 'in', '1', '5', '8', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'under', 'lee', ',', '', 'quickly', 'took', 'on', 'a', 'much', 'wider', 'scope', 'than', 'just', 'the', 'church', 'curriculum', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'august', '2', '9', ',', '2', '0', '1', '3', ',', 'the', '``', 'sporting', 'news', \"''\", 'reported', 'that', '', 'would', 'be', 'the', 'full-time', 'driver', 'for', '', '', 'racing', 'in', '2', '0', '1', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'this', '', 'he', 'rose', 'to', 'a', 'position', 'of', 'responsibility', 'and', 'was', 'given', 'control', 'over', 'an', 'ira', 'arms', 'dump', 'which', 'was', 'subsequently', 'discovered', '-', 'the', 'largest', 'find', 'by', '', 'on', 'the', 'island', 'of', 'ireland', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'tenth', ',', '1', '8', '8', 'years', 'after', '', ',', 'was', 'that', 'of', 'noah', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'about', '7', '.', '2', '%', 'of', 'families', 'and', '1', '1', '.', '9', '%', 'of', 'the', 'population', 'were', 'below', 'the', 'poverty', 'line', ',', 'including', '2', '0', '.', '3', '%', 'of', 'those', 'under', 'age', '1', '8', 'and', '9', '.', '8', '%', 'of', 'those', 'age', '6', '5', 'or', 'over', '.', '', '', '']\n", "['', 'less', 'than', 'a', 'month', 'before', 'his', '3', '5', 'th', 'birthday', ',', 'félix', 'sánchez', ',', 'the', '2', '0', '0', '1', 'and', '2', '0', '0', '3', 'world', 'champion', 'showed', 'he', 'was', 'still', 'in', 'the', 'game', ',', 'running', 'a', 'season', 'best', '4', '7', '.', '7', '6', '.', '', '', '', '', '', '']\n", "['', 'after', 'the', 'outbreak', 'of', 'world', 'war', 'ii', 'and', 'the', 'occupation', 'of', 'lviv', 'by', 'the', 'ussr', ',', 'he', 'remained', 'at', 'the', 'university', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'announcement', 'was', 'met', 'with', 'surprise', 'and', '', 'from', 'political', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'born', 'on', 'february', '7', ',', '1', '9', '4', '2', 'in', 'cleveland', ',', 'tennessee', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'had', 'two', '', '', 'with', '', '', ';', 'ballast', 'was', 'carried', '', 'and', 'could', 'be', 'instantly', 'released', 'on', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'faith', \"''\", 'was', 'launched', 'march', '1', '8', ',', '1', '9', '1', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', 'the', '2', '0', '1', '0', 'united', 'states', 'census', ',', 'the', 'population', 'was', '8', '2', ',', '1', '2', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', '8', ',', '3', '5', '9', 'rivers', 'of', 'various', 'lengths', 'within', 'azerbaijan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'daughter', ',', 'nancy', ',', 'also', 'is', '', 'of', 'handling', 'small', 'electrical', 'problems', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'are', '', 'together', 'by', '', 'when', '', 'is', 'accused', 'of', '', 'the', 'crystal', '', ',', 'an', '', 'which', 'channels', 'the', 'magical', 'energy', 'of', 'the', '', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'first', 'win', 'came', 'in', '1', '9', '8', '5', 'at', 'the', '', 'open', ',', 'and', 'his', 'last', 'was', 'at', 'the', 'kmart', 'greater', 'greensboro', 'open', 'in', '1', '9', '8', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'active', 'nucleus', 'has', 'a', 'spectrum', 'with', 'a', '', 'that', 'can', 'not', 'be', 'explained', 'by', '', 'from', 'one', 'or', 'more', '', '(', 'or', '', ')', 'objects', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'the', 'seat', 'of', 'the', 'capital', 'department', ',', 'the', 'most', 'populous', 'department', 'in', 'the', 'province', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'utilizing', '', ',', 'a', 'total', 'of', '4', '8', '', 'sites', 'have', 'been', 'predicted', '(', '4', '1', '', ',', '2', '', ',', 'and', '5', '', ')', ',', 'all', 'of', 'which', 'occur', 'after', 'the', 'predicted', 'transmembrane', 'domain', ',', '', '', '', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'most', 'of', 'the', 'ministers', 'resigned', 'as', 'a', 'result', 'of', 'it', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'apart', 'from', 'lee', '', '', ',', 'many', '', 'leaders', 'of', 'singapore', 'were', 'of', '', 'descent', ',', 'including', '', '', 'eng', ',', '', '', '', ',', 'howe', '', '', 'and', '', '', 'lin', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'briefly', 'returns', 'to', 'a', 'fragment', 'of', 'this', 'lament', ',', 'ending', 'with', 'the', 'marking', '``', '', '', ';', '', '', \"''\", '(', '``', '', 'briefly', ',', 'then', 'connect', 'to', 'the', 'next', 'movement', \"''\", ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'weekends', ',', 'his', '', 'watched', 'movies', 'at', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '1', ',', '', 'encouraged', 'republicans', 'to', '', 'florida', 'orange', 'juice', 'in', 'protest', 'of', 'the', 'florida', 'republican', 'party', \"'s\", 'decision', 'to', '', 'its', 'presidential', 'primary', 'to', 'january', ',', 'which', '', 'the', 'normal', 'primary', 'calendar', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'director', '', 'evans', 'came', 'across', 'the', 'idea', 'for', 'the', 'film', 'when', 'he', 'moved', 'to', 'indonesia', 'to', 'film', 'a', 'documentary', 'about', 'the', 'country', \"'s\", 'martial', 'art', '', '', ',', 'as', 'suggested', 'by', 'his', 'wife', 'of', 'indonesian', 'japanese', 'descent', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'public', 'high', 'schools', 'of', 'the', '``', '', 'de', '', 'media', 'superior', 'del', '', 'federal', \"''\", '(', '', ')', 'include', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'new', 'hampshire', \"'s\", 'open', 'source', 'voting', 'software', 'is', 'called', 'one', '4', 'all', 'and', 'is', 'based', 'on', 'the', 'prime', 'iii', 'system', 'developed', 'by', '', 'advisory', 'board', 'member', 'dr.', 'juan', 'e.', 'gilbert', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'that', 'would', 'in', 'eventually', 'provide', 'insufficient', 'support', 'for', 'the', 'alliance', \"'s\", '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'seven', '', 'doctors', 'and', 'six', '', 'work', 'in', 'the', '', 'municipality', 'area', 'with', 'no', 'hospitals', 'nearby', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'that', 'time', ',', 'he', 'implemented', 'the', 'first', 'law', 'concerning', '', ',', 'and', 'introduced', 'the', 'state', \"'s\", 'first', 'welfare', 'stations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'though', 'renewed', 'neighborhood', 'protest', 'has', 'blocked', 'this', 'measure', ',', 'the', 'road', 'has', 'been', '', 'and', '', ',', 'and', 'the', 'i-', '3', '5', 'e', 'ramps', 'were', '', 'after', 'signals', 'were', 'put', 'on', '', 'mill', \"'s\", 'entrance', 'ramps', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'mrs', '', 'blight', ',', 'a', 'second', '', ',', 'mrs', '', 'veitch', 'had', 'two', '', 'albert', '(', '7', ')', 'and', '``', '', \"''\", '(', '', ')', '(', '4', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'lebanon', 'war', '2', '0', '0', '6', 'he', 'photographed', 'five', 'young', 'lebanese', 'driving', 'through', 'the', '', 'of', 'the', 'bombed', '', 'in', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'per', 'capita', 'income', 'for', 'the', 'borough', 'was', '$', '2', '1', ',', '2', '3', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'organizations', 'like', '', 'provide', 'a', 'forum', 'and', 'a', '', 'for', '', 'notification', 'to', 'amateur', 'and', 'professional', 'astronomers', 'all', 'over', 'the', 'globe', ',', 'so', 'that', '', 'events', 'can', 'be', '', 'for', 'all', 'the', 'information', 'that', 'can', 'be', 'gathered', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'has', 'also', 'gone', 'on', 'tour', 'with', 'companies', 'of', '``', 'man', 'of', 'la', '', \"''\", 'and', '``', 'west', 'side', 'story', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'hills', 'also', 'contain', 'unique', 'flora', 'and', '', 'that', 'are', 'not', 'found', 'this', 'far', 'east', 'of', 'alberta', \"'s\", 'rocky', 'mountains', 'in', 'as', 'large', 'numbers', 'as', 'at', 'dry', 'island', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'achieved', 'due', 'to', '', \"'s\", 'political', 'skills', ',', 'with', 'the', 'active', 'support', 'of', '', '', ',', 'the', 'then', 'president', 'of', 'the', 'academy', 'of', 'sciences', 'of', 'the', 'ussr', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rising', 'prices', 'and', 'the', '', 'of', 'food', 'in', 'paris', 'made', 'the', 'government', 'of', '', 'more', 'and', 'more', 'unpopular', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'also', 'maintains', 'an', '', 'network', 'for', 'information', 'exchange', 'and', 'capacity', 'building', 'of', 'conservation', 'efforts', 'in', 'the', 'region', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'users', 'could', '', 'to', 'the', '', 'feeds', 'for', 'free', 'using', 'a', 'web', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'one', 'of', 'five', 'communities', 'located', 'within', 'the', '', 'valley', 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', '', '', 'library', 'for', 'creating', '', 'user', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'probably', 'in', 'lyon', 'that', 'he', 'met', 'samuel', '', ',', 'who', 'claimed', 'to', 'have', 'first', 'given', 'him', 'the', 'idea', 'of', 'writing', 'his', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'my', 'lands', '(', 'also', 'known', 'as', '', ',', '', ')', 'is', 'a', '', '', 'game', 'in', 'the', 'genre', 'of', '', '', 'strategy', 'set', 'in', 'a', 'fantasy', 'world', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'jackson', 'set', 'out', 'on', 'august', '7', 'for', 'culpeper', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'gerard', 'won', 'by', '8', 'lengths', 'over', '', 'in', 'near', 'course', 'record', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'population', 'was', '2', '2', '6', 'at', 'the', '2', '0', '0', '0', 'census', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', '', 'for', 'the', 'first', 'few', 'weeks', 'of', 'the', '2', '0', '2', '0', 'season', 'with', 'shoulder', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'has', 'led', 'to', 'criticism', 'of', 'the', '', 'as', '', 'and', 'driven', 'by', 'marketing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'within', 'months', 'of', 'opening', ',', 'tunnel', 'usage', 'had', 'increased', 'to', 'over', '7', '0', ',', '0', '0', '0', 'trips', 'per', '', 'and', 'a', 'weekly', 'volume', 'just', 'under', '5', '0', '0', ',', '0', '0', '0', 'trips', 'by', 'late', 'march', '2', '0', '1', '9', '.', '', '', '', '', '', '', '', '']\n", "['', 'originally', 'he', 'was', 'a', 'norwegian', 'wrestler', 'in', '', ',', 'but', 'one', 'and', 'a', 'half', 'years', 'before', 'the', '1', '9', '0', '4', 'olympic', 'games', ',', 'he', 'left', 'norway', 'for', 'the', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'gives', 'house', 'a', '', 'party', ',', 'and', 'house', 'is', 'discharged', 'and', 'gets', 'on', 'a', 'bus', 'back', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', 'born', '2', '4', 'november', '1', '9', '3', '4', ')', 'is', 'a', 'retired', 'german', 'cyclist', 'who', 'was', 'active', 'between', '1', '9', '5', '4', 'and', '1', '9', '7', '8', 'both', 'on', 'the', 'road', 'and', 'track', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', '', ',', 'the', '', 'began', 'to', 'move', 'into', 'arctic', 'towns', 'and', 'participate', 'in', '', 'labor', ',', 'government', 'employment', ',', 'community', '', ',', 'and', 'the', 'acquisition', 'of', 'modern', 'clothing', ',', 'housing', ',', 'and', 'vehicles', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'produced', 'and', 'directed', '``', 'the', '', 'saint', \"''\", '(', '1', '9', '6', '2', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'valley', 'contains', 'a', 'number', 'of', 'parks', 'and', 'recreational', 'sites', 'including', 'those', 'of', 'echo', 'valley', ',', '', 'lake', ',', '', 'point', ',', '', 'beach', ',', 'buffalo', '', ',', 'mission', 'ridge', ',', 'and', '', 'creek', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', ';', 'born', '4', 'august', '1', '9', '8', '4', ')', 'is', 'a', '', 'player', 'from', 'china', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'a', 'game', ',', 'players', 'may', 'enter', 'their', 'names', 'into', 'a', 'high', 'score', 'list', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'numerous', 'choices', 'were', 'discarded', 'as', 'talks', 'continued', ',', 'including', '``', '', '', \"''\", 'by', '', '', 'with', '``', 'shots', 'of', '', ',', '', ',', '', \"''\", 'and', '``', '', 'wheels', \"''\", 'to', 'show', 'the', 'production', 'of', 'a', 'collar', 'button', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'every', '1', '0', '0', 'females', ',', 'there', 'were', '1', '1', '2', '.', '9', 'males', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'island', 'foundation', ',', 'new', 'york', 'community', 'trust', ',', '', 'foundation', ',', 'and', 'more', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'prefectural', 'police', 'departments', 'are', 'primarily', 'municipal', 'police', 'with', 'their', 'own', 'police', 'authority', ',', 'but', 'their', 'activities', 'are', 'coordinated', 'by', 'national', 'police', 'agency', 'and', 'national', 'public', 'safety', 'commission', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'typically', ',', 'there', 'is', 'only', 'one', 'of', 'each', 'type', 'of', '3', 'd', '', 'per', 'episode', ',', 'but', 'some', 'segments', 'appear', 'twice', ',', 'and', 'some', 'do', 'not', 'appear', 'at', 'all', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', '``', 'the', 'guardian', \"''\", ',', 'schools', 'were', 'urged', 'to', 'destroy', 'copies', 'of', 'the', '', 'anthology', ',', 'though', 'this', 'was', 'later', 'denied', 'by', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'team', 'has', 'won', 'the', 'under-', '1', '9', 'world', 'cup', 'four', 'times', 'and', 'finished', 'runners-up', 'twice', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'teachers', 'were', '', '', 'and', 'alfred', '', ',', 'and', 'guitarist', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'yen', 'organized', 'the', 'philippine', 'rural', 'reconstruction', 'movement', 'and', 'in', '1', '9', '6', '0', ',', 'he', 'established', 'the', 'international', 'institute', 'of', 'rural', 'reconstruction', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'current', '', 'nuclear', 'plant', 'operating', '', 'appear', 'to', 'be', 'limited', 'primarily', 'by', 'long-term', '', '', '', 'in', 'the', '', 'pressure', 'vessel', ',', 'primary', 'coolant', 'system', '', ',', 'concrete', '', 'structures', ',', 'and', '', '(', 'particularly', '', 'power', 'cables', ')', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'he', 'began', 'his', 'own', '``', 'mail', 'order', \"''\", 'art', 'business', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', \"'s\", '', 'that', '', \"'s\", 'story', 'has', 'become', 'a', '', 'of', 'the', '', 'consequences', 'of', '', ',', 'rather', 'than', 'a', 'story', 'of', 'a', 'young', 'man', '', '', 'and', 'a', 'community', 'changing', 'its', 'ways', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'least', '1', '2', '5', 'of', 'the', '5', '0', '0', '+', 'human', 'protein', '', 'are', '', '', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'video', \"'s\", 'however', 'were', 'introduced', 'in', 'may', '2', '0', '0', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'arab', '', 'in', 'israel', 'include', 'all', 'population', 'centers', 'with', 'a', '5', '0', '%', 'or', 'higher', 'arab', 'population', 'in', 'israel', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'to', '', 'the', 'shortage', 'of', 'teachers', ',', 'vocational', 'and', 'technical', 'teachers', \"'\", 'colleges', 'were', 'to', 'be', 'reformed', 'and', 'other', 'colleges', 'and', 'universities', 'were', 'to', 'be', '', 'for', 'assistance', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'section', 'of', 'line', 'between', '', 'and', '', 'was', 'part', 'of', 'the', 'london', '&', 'amp', ';', '', 'railway', 'company', 'who', 'promoted', 'the', '', 'and', '', 'atmospheric', 'principle', ',', 'utilizing', 'a', 'pipe', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', '``', 'seventeen', 'seconds', \"''\", 'has', 'been', 'considered', 'an', 'early', 'example', 'of', 'gothic', 'rock', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'most', 'of', 'his', 'retirement', ',', '', '', 'and', 'his', 'wife', 'lived', 'in', 'west', 'palm', 'beach', ',', 'florida', ',', 'returning', 'to', 'sweden', 'for', 'the', 'summer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'original', 'environment', 'of', 'the', 'deposits', 'has', 'been', 'interpreted', 'as', 'being', 'that', 'of', 'a', '', 'coastal', 'marine', '', ',', 'to', 'open', '', 'waters', ',', 'with', 'a', 'maximum', 'depth', 'of', 'less', 'than', '1', '5', 'meters', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'most', 'famous', 'work', 'is', '1', '8', 'th', 'century', 'poet', '``', '', \"''\", '', '', \"'s\", '``', '', 'champu', \"''\", ',', 'often', 'shortened', 'to', 'simply', '``', '', 'champu', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'walter', 'thomas', 'was', 'born', 'in', 'athlone', 'and', 'educated', 'at', 'trinity', 'college', 'there', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'contents', 'of', 'the', 'gallery', 'changes', 'approximately', 'every', 'six', 'months', 'to', 'reflect', 'a', 'different', 'theme', 'found', 'within', 'the', 'pop', 'art', 'movement', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'monash', 'university', ',', 'caulfield', 'campus', 'was', 'founded', 'as', 'the', 'caulfield', 'technical', 'school', 'in', '1', '9', '2', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'green', 'wall', ',', 'designed', 'by', '', 'landscape', 'design', 'firm', '', 'design', ',', 'also', 'helps', 'to', '', 'the', 'internal', 'temperature', 'of', 'the', 'terminal', 'with', 'the', 'occasional', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", 'claimed', 'that', 'the', 'album', '``', 'pretty', 'much', 'invented', '', \"'s\", '', 'wing', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', 'result', ',', 'open', 'source', 'voting', 'systems', 'will', 'be', 'used', 'throughout', 'the', 'state', 'of', 'new', 'hampshire', 'in', 'the', '2', '0', '1', '6', 'presidential', 'election', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'throughout', 'that', 'period', 'it', 'was', 'held', 'by', '', '', '', '(', 'who', 'was', 'born', 'in', '', 'and', 'died', 'in', '1', '9', '1', '0', 'aged', '9', '1', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'height', 'is', '', 'as', 'just', 'short', 'of', 'fifty', 'feet', ',', 'so', 'as', 'not', 'to', '', 'copyright', 'violations', 'of', 'the', 'previous', 'character', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'example', ',', 'to', 'bring', 'priesthood', '', 'into', 'the', 'local', 'level', ',', 'priesthood', 'home', 'teaching', 'was', 'introduced', 'replacing', 'the', 'role', 'formerly', 'occupied', 'by', 'ward', 'teachers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'battle', 'of', '', '', 'took', 'place', 'in', '', '', 'near', 'the', 'village', 'of', '', ',', 'north-east', 'of', '', 'in', 'west', 'riding', 'on', '3', '0', 'march', '1', '6', '4', '3', 'during', 'the', 'first', 'english', 'civil', 'war', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'following', 'week', ',', 'the', 'beautiful', 'people', 'were', 'attacked', '', 'by', 'the', '', ',', 'which', 'resulted', 'in', 'love', 'breaking', 'her', 'arm', 'in', 'the', 'storyline', ',', 'writing', 'her', 'off', 'television', 'due', 'to', 'her', 'legitimate', 'pregnancy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'the', 'cbs', ',', 'in', '2', '0', '0', '1', 'there', 'were', '2', '2', ',', '2', '0', '0', 'males', 'and', '2', '3', ',', '7', '0', '0', 'females', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'born', 'in', 'new', 'britain', ',', 'connecticut', 'on', 'april', '1', '9', ',', '1', '8', '8', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', '3', 'october', '2', '0', '1', '8', ',', 'davis', 'resigned', 'from', 'a', 'committee', 'chaired', 'by', 'commons', 'speaker', 'john', '', ',', 'citing', 'lack', 'of', 'confidence', 'in', '', \"'s\", 'ability', 'to', 'tackle', '', 'and', 'sexual', '', 'problems', 'in', 'parliament', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'least', 'half', 'of', 'the', 'entries', 'were', '', 'directly', ',', 'without', 'permission', ',', 'from', 'thomas', '', \"'s\", '``', '', \"''\", ',', 'which', 'had', 'been', 'published', 'a', 'couple', 'of', 'years', 'before', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'within', 'the', 'main', 'exhibition', 'hall', ',', 'there', 'is', 'a', 'large', '', 'zone', 'that', 'contains', 'many', '', 'selling', 'film', 'and', 'television', ',', 'comic', 'and', 'science', 'fiction', 'related', '', ',', 'comics', ',', 'games', ',', 'artwork', ',', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'all', 'national', '', 'were', 'allowed', 'to', 'enter', 'four', 'riders', 'for', 'the', 'race', ',', 'with', 'a', 'maximum', 'of', 'two', 'riders', 'to', 'start', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'only', 'referred', 'to', 'the', 'four', 'main', '', 'islands', 'to', 'the', 'west', 'of', '', ':', '', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'two', 'kiss', 'and', 'darla', 'tries', 'to', '', 'angel', 'to', 'let', 'her', 'make', 'him', 'happy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'eight', '', 'army', 'played', 'an', 'important', 'role', 'in', 'unifying', 'china', 'in', 'the', 'qing', 'dynasty', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'the', 'advent', 'of', 'the', 'talking', 'picture', ',', 'fine', 'began', 'to', 'work', 'steadily', 'in', 'feature', 'films', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'additional', 'problem', 'is', 'the', '', 'of', 'some', 'current', 'mine', '', 'vehicles', 'to', 'anti-tank', 'mines', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'first', 'run', 'in', '1', '9', '5', '1', ',', 'the', 'engine', 'was', 'flight', 'tested', 'during', '1', '9', '5', '3', 'using', 'an', '', 'lancaster', 'provided', 'by', 'air', 'service', 'training', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'then', '', 'for', 'his', 'actions', 'that', 'he', 'had', 'caused', 'and', '', 'to', 'meet', 'up', 'with', 'mega', 'man', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'vehicles', 'that', 'participate', 'in', 'the', 'show', 'include', 'those', 'from', 'the', '', 'collection', 'and', 'the', 'jon', 'phillips', 'armor', 'collection', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'event', 'concluded', 'with', 'a', '', 'action', 'outside', 'the', 'sydney', 'opera', 'house', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'access', 'to', 'most', 'public', 'services', 'in', 'areas', 'under', 'israeli', 'control', 'is', '', 'on', 'proof', 'one', 'is', 'not', 'in', '', 'with', 'paying', 'one', \"'s\", 'taxes', ',', 'income', ',', 'property', 'and', '', '(', '', ')', 'and', '', ',', 'to', 'the', 'military', 'administration', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '2', '0', '2', '0', 'turkmenistan', 'cup', '(', ')', 'is', 'the', '2', '7', 'th', 'season', 'of', 'the', 'turkmenistan', 'cup', '', 'tournament', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'dance', ',', 'learn', 'a', 'skill', ',', 'shoot', 'fireworks', ',', 'socket', 'items', ')', ',', 'and', '``', 'material', \"''\", 'which', 'covers', 'general', '', ',', 'such', 'as', 'materials', 'for', '', ',', '', ',', 'and', 'ammunition', 'for', 'weapons', 'that', 'need', 'them', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'don', '', 'technical', '', 'school', 'is', 'a', 'catholic', 'elementary', 'school', 'for', 'boys', 'and', 'girls', ',', 'offering', 'grades', '1', 'until', 'grade', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bass', 'signed', 'a', 'four-year', ',', '$', '3', '.', '4', '7', '5', 'million', 'contract', 'with', 'the', 'bills', 'on', 'may', '7', ',', '2', '0', '2', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '7', 'june', '1', '9', '6', '6', ',', 'a', '', '1', '3', '0', '', ',', 'piloted', 'by', '', 'marion', 'morris', 'of', '', '6', ',', 'returned', 'to', '', 'after', 'a', 'flight', 'to', '', 'station', 'to', 'evacuate', '', '2', 'robert', 'l.', '', ',', 'who', 'had', 'been', '', 'injured', 'in', 'a', 'fall', '.']\n", "['', 'congressman', 'keliher', 'was', 'the', 'uncle', 'of', '', 'john', 'j.', 'keliher', 'and', 'rear', 'admiral', 'thomas', 'joseph', 'keliher', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'race', 'on', '', 'over', 'a', 'distance', 'of', 'one', 'mile', ',', 'it', 'is', 'open', 'to', 'horses', 'of', 'either', 'sex', 'age', 'three', 'and', 'older', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'may', '2', '0', '0', '6', ',', '', 'gave', 'his', 'support', 'to', 'the', 'formation', 'of', '', \"'s\", 'second', 'government', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'two', 'men', 'bond', 'during', 'the', '', 'negotiations', 'that', 'follow', ',', 'and', 'after', 'some', 'time', 'agree', 'to', 'try', 'to', 'get', 'away', 'through', 'the', '', 'in', 'the', 'ceiling', 'of', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'd.', 'gupta', 'of', '``', 'the', 'telegraph', \"''\", 'rated', 'the', 'film', '7', '.', '2', 'out', 'of', '1', '0', ',', 'writing', 'that', '``', '', \"''\", '``', 'can', 'make', 'you', 'laugh', 'out', '', 'and', 'also', 'strike', 'an', 'emotional', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'royal', ',', 'the', 'party', \"'s\", 'candidate', 'for', 'the', '2', '0', '0', '7', 'presidential', 'election', ',', 'was', 'defeated', 'by', 'conservative', '', 'candidate', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'but', 'during', 'the', 'brazilian', 'grand', 'prix', ',', 'eddie', 'irvine', 'was', 'blamed', 'for', 'causing', 'a', 'massive', 'accident', 'which', 'saw', '', '', '', 'roll', 'over', 'the', 'top', 'of', 'martin', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'old', 'alsace', '(', 'french', 'title', ':', '', '', ')', 'is', 'a', '1', '9', '3', '3', 'french', 'drama', 'film', 'directed', 'by', 'jacques', 'de', '', 'and', 'starring', '', '', ',', 'simone', '', 'and', 'madeleine', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '2', ',', '1', '0', '0', '-acre', '(', '8', '5', '0', 'ha', ')', 'public', 'recreation', 'area', 'on', 'the', 'west', 'bank', 'of', 'the', 'colorado', 'river', 'offers', '', ',', 'fishing', ',', 'camping', ',', '', ',', 'and', '', 'on', 'four', 'miles', 'of', 'developed', 'trails', '.', '', '', '', '', '', '', '', '']\n", "['', '', 'has', 'also', 'been', 'selected', 'to', 'represent', 'china', 'in', 'baseball', 'at', 'the', '2', '0', '0', '8', 'summer', 'olympics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', '', ',', 'the', 'college', 'of', 'cardinals', 'had', '2', '0', '1', 'members', ',', 'of', 'whom', '1', '2', '0', 'were', 'eligible', 'to', 'vote', 'in', 'a', 'papal', 'election', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', '', 'friedman', ',', 'the', '', 'war', 'correspondent', 'was', 'edward', '', ',', 'the', 'bureau', 'chief', 'of', 'the', 'international', 'news', 'service', 'and', 'former', 'world', 'war', 'ii', '', '', ',', 'whom', 'he', 'interviewed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'part', 'of', 'the', '', 'unified', 'school', 'district', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'louise', '', 'was', 'known', 'at', 'court', 'either', 'as', '``', 'madame', 'la', '', 'de', 'conti', '', \"''\", 'or', '``', 'madame', 'la', '', 'de', 'conti', '', '', \"''\", ',', 'in', 'order', 'to', 'distinguish', 'louise', '', 'from', 'the', 'other', 'two', '', '', 'of', 'conti', 'still', 'alive', ':', '', '', '', '', '', '']\n", "['', 'while', '', 'the', 'political', '', ',', 'she', 'falls', 'for', 'her', '', ',', 'ben', '', ',', 'who', 'is', 'an', '', '', 'uncover', '', 'of', 'the', 'past', 'mixed', 'with', 'love', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'generally', ',', 'alfred', 'hitchcock', \"'s\", '``', '', \"''\", 'is', 'regarded', 'as', 'the', 'first', 'film', 'with', 'sound', ',', 'but', '', \"'s\", '``', 'black', 'waters', \"''\", 'was', '', 'several', 'weeks', 'earlier', 'in', 'may', ',', '1', '9', '2', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'then', 'appeared', 'in', '``', 'surrender', \"''\", '(', '1', '9', '3', '1', ')', 'in', 'which', 'warner', '', 'and', 'ralph', '', '', 'competed', 'for', 'her', 'attention', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'operating', 'signals', 'for', 'the', 'relay', 'are', 'provided', 'by', 'the', 'prime', 'mover', 'brake', '', 'air', 'valve', ',', 'trailer', 'service', 'brake', 'hand', 'control', '(', 'subject', 'to', 'local', 'heavy', 'vehicle', 'legislation', ')', 'and', 'the', 'prime', 'mover', 'park', 'brake', 'hand', 'control', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '0', '6', 'a', 'stud', 'book', 'was', 'established', 'for', 'horses', 'of', 'noriker', 'type', 'in', 'the', ',', 'the', '', 'region', 'of', 'central', 'southern', '', 'that', 'borders', 'with', 'modern', 'austria', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'endean', 'threatens', '', 'if', 'he', 'ever', 'sees', 'the', '', 'in', 'london', ',', 'but', 'shannon', '', 'the', 'warning', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '3', '6', ',', 'he', 'was', 'appointed', 'as', 'deputy', '', 'of', 'justice', 'of', 'the', 'ussr', 'and', 'was', 'proposed', 'for', 'membership', 'in', 'the', 'soviet', 'academy', 'of', 'sciences', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'crossing', 'a', 'rope', 'bridge', ',', 'wolverine', 'eventually', '', 'the', 'upper', 'hand', 'and', '', 'cyber', 'with', 'their', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'tax', 'was', 'also', '', 'on', 'ownership', 'of', 'slaves', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'over', 'the', 'course', 'of', 'his', 'career', ',', '', 'received', '', 'of', 'academic', 'awards', ',', 'including', 'another', ',', 'honorary', ',', 'phd', 'from', 'oregon', 'state', 'university', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'a', 'full', 'international', 'airport', 'but', 'has', 'four', '', 'airports', '(', '', 'airport', ',', '', 'airport', ',', '', '', 'airport', 'and', '', 'airport', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', '', 'an', 'aviation', '', ',', '', 'investigators', 'piece', 'together', 'evidence', 'from', 'the', 'crash', 'and', 'determine', 'the', 'likely', 'cause', '(', 's', ')', ',', 'whereas', 'the', '', 'will', 'also', 'investigate', 'if', 'there', 'is', 'any', 'involved', 'criminal', 'actions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', '', ':', '``', '', \"''\", ',', ')', 'is', 'a', 'town', 'in', '', 'county', ',', 'lithuania', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'final', '', 'of', 'the', 'race', 'would', 'be', '', 'turner', \"'s\", 'crash', 'on', 'lap', '3', '4', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'can', 'have', 'impacts', 'on', 'both', 'economics', 'and', 'ecology', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'fifth', '', 'war', 'ii', '', 'deployment', ',', 'from', 'january', 'to', 'june', '1', '9', '6', '3', ',', 'included', 'participation', 'in', 'two', 'major', '', '', 'with', 'u.s.', 'and', '', 'forces', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'president', '', 'retired', 'in', '1', '9', '4', '6', 'in', 'ill', 'health', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'only', 'two', 'cities', 'ended', 'with', 'multiple', 'area', 'codes', 'with', 'this', 'change', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '0', ',', 'in', 'a', '', 'match', 'against', 'bermuda', ',', '', 'hit', '', '8', '9', 'off', '5', '9', 'balls', 'which', 'included', 'seven', '', 'and', 'five', '', 'as', '', 'extended', 'their', '', 'over', 'bermuda', 'with', 'a', '', '1', '3', '4', '', 'win', 'at', 'the', 'national', 'stadium', '.', '']\n", "['', 'on', 'december', '2', '7', ',', '1', '9', '8', '5', ',', 'the', 'los', 'angeles', '', 'for', 'the', 'remainder', 'of', 'the', 'season', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'also', '', '', 'speaker', '', ',', 'and', '', 'and', 'engages', 'in', 'private', '', 'for', 'business', 'and', 'for', 'individuals', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '1', '9', 'th', 'century', ',', '', \"'s\", 'pottery', 'became', 'the', 'inspiration', 'for', '', 'ltd', \"'s\", 'victorian', '', ',', 'which', 'was', 'exhibited', 'at', 'the', 'london', 'great', 'exhibition', 'of', '1', '8', '5', '1', 'under', 'the', 'name', '``', '', 'ware', \"''\", '.', '', '', '', '', '', '', '', '', '']\n", "['', 'blank', 'rome', 'subsequently', 'filed', 'a', 'motion', 'to', 'have', 'thompson', \"'s\", 'behavior', 'declared', '``', '', 'for', 'the', 'court', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'built', 'with', 'a', '', 'lease', 'of', 'land', 'previously', 'occupied', 'by', 'a', 'private', 'house', 'and', 'workshop', 'that', 'served', 'as', 'a', 'home', 'of', '', '', 'and', 'a', 'tea', 'chest', 'dealer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '', 'is', 'believed', 'to', 'damage', 'the', '', 'over', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', '2', '0', '0', '6', 'census', ',', 'its', 'population', 'was', '5', '1', '9', ',', 'in', '7', '7', 'families', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'adverse', 'effects', 'of', '', 'include', '', '', 'hemorrhage', 'and', '', '', 'hemorrhage', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'an', 'indian', 'film', 'director', 'and', 'producer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'geographic', 'collection', 'scope', 'is', 'worldwide', 'and', 'includes', 'all', 'sexual', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'iranian', 'drama', 'film', ',', '``', 'when', 'the', 'moon', 'was', 'full', \"''\", ',', 'written', 'and', 'directed', 'by', '', '', ',', 'was', 'released', 'in', '2', '0', '1', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'tests', 'found', 'no', 'sign', 'of', 'injury', 'at', 'the', 'time', ',', 'and', 'there', 'is', 'no', 'evidence', 'that', 'the', 'accident', 'caused', 'the', 'neck', 'deformity', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'shopping', 'bonus', 'round', 'was', 'later', 'replaced', 'with', 'a', 'game', 'called', 'the', '``', 'winner', \"'s\", 'board', \"''\", ',', 'which', 'was', 'introduced', 'in', 'october', '1', '9', '8', '4', 'on', 'nbc', 'and', 'on', 'november', '1', '8', ',', '1', '9', '8', '5', 'in', '', '.', '', '', '', '', '', '', '', '']\n", "['', 'built', 'in', '1', '9', '3', '2', ',', 'it', 'is', 'the', 'only', 'element', 'of', 'the', 'island', \"'s\", 'most', 'prominent', 'roman', 'catholic', 'church', 'to', 'survive', 'bombardment', 'in', 'world', 'war', 'ii', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'dedicated', 'to', 'the', 'creation', 'and', 'performance', 'of', 'high', 'energy', 'music', ',', 'they', 'are', 'known', 'for', 'playing', 'songs', 'based', 'on', 'video', 'games', 'and', 'for', 'their', 'covers', 'of', 'songs', 'from', 'popular', 'television', 'shows', 'and', 'movies', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'supreme', 'war', 'council', 'at', 'versailles', '(', '2', '9', 'january', ')', '', 'and', '', 'complained', 'of', 'shortage', 'of', 'troops', ',', 'but', '', \"'s\", 'political', '', 'was', 'so', 'low', 'that', '', 'wrote', 'that', 'they', '``', 'made', '', 'of', 'themselves', \"''\", '.', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'praised', 'in', 'the', 'village', 'for', 'his', 'hunting', 'skills', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'july', '7', ',', '2', '0', '1', '5', ',', 'the', '', 'and', 'indiana', 'state', 'police', 'investigators', '', 'fogle', \"'s\", '', ',', 'indiana', ',', 'residence', ';', 'computers', 'and', 'other', 'electronic', 'equipment', 'were', 'removed', 'from', 'his', 'home', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', '2', '0', '1', '2', 'american', 'league', 'playoffs', ',', '', 'was', 'criticized', 'for', 'its', 'graphics', 'and', 'game', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', ',', 'the', 'construction', 'rate', 'of', 'new', 'housing', 'units', 'was', '3', '.', '3', 'new', 'units', 'per', '1', '0', '0', '0', 'residents', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'platform', 'was', 'given', 'a', 'moderate', '', 'in', '1', '9', '7', '0', 'when', 'the', 'royal', 'train', 'was', '', '', 'in', 'the', 'station', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'disappeared', 'in', 'favor', 'of', 'the', 'writings', 'of', '', '(', 'which', 'are', 'far', 'shorter', ')', ',', 'and', ',', 'early', 'in', 'the', 'fifth', 'century', ',', '', 'had', 'little', 'hope', 'of', 'finding', 'a', 'copy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'became', 'the', 'number', '1', 'global', '', 'on', 'twitter', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '``', '', \"''\", '', 'accept', 'the', 'offerings', 'before', '', 'that', 'that', 'they', 'have', 'accepted', 'gifts', 'from', 'the', 'man', 'that', 'they', 'were', 'supposed', 'to', 'kill', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'then', ',', 'in', '1', '9', '2', '7', 'and', '1', '9', '2', '8', ',', 'he', '', 'with', 'earl', '', 'and', '', '', 'to', 'give', 'the', 'seals', 'one', 'of', 'its', 'most', '', '', 'in', 'minor', 'league', 'history', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'after', 'adelphia', 'missed', 'a', 'required', 'payment', 'and', 'subsequently', 'filed', 'for', 'bankruptcy', 'in', '2', '0', '0', '2', ',', 'the', 'agreement', 'was', 'abandoned', 'and', 'the', 'stadium', 'became', 'known', 'simply', 'as', '``', 'the', 'coliseum', \"''\", 'for', 'four', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'and', '', 'are', 'criticized', 'for', 'lack', 'of', 'variety', 'in', 'their', 'pictures', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'appeared', 'on', 'the', 'opry', \"'s\", 'country', 'classic', 'show', 'in', 'nashville', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'announced', 'his', 'invention', 'at', 'a', 'meeting', 'of', 'the', 'american', 'chemical', 'society', 'on', 'february', '5', ',', '1', '9', '0', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'international', 'flights', 'to', '', ',', 'south', 'korea', 'are', '', 'by', '', 'airlines', 'from', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '8', ',', 'the', 'chicago', 'department', 'of', 'transportation', 'hired', 'knight', '', 'to', '', 'the', '1', '8', 'th', 'street', 'bridge', '', 'and', 'create', 'two', '', 'to', '', 'the', 'park', 'north', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'that', 'same', 'year', ',', 'its', 'southern', 'terminus', 'moved', 'slightly', 'to', 'the', 'west', ',', 'avoiding', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '6', ',', '', 'founded', 'teams', '4', 'u', ',', 'an', 'international', 'humanitarian', 'aid', 'charity', 'based', 'in', '', 'who', 'take', 'volunteers', 'overseas', 'to', 'facilitate', 'health', ',', 'education', ',', 'training', 'and', '', 'programs', 'in', 'africa', ',', 'asia', 'and', 'eastern', 'europe', '.', '', '', '', '', '', '', '', '']\n", "['', 'this', 'facility', 'is', 'owned', 'by', '', ';', 'it', 'was', 'shut', 'down', 'on', 'june', '3', '0', ',', '2', '0', '2', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'adam', '', 'has', 'suggested', 'that', 'memes', 'can', 'be', 'thereby', 'classified', 'as', 'either', 'internal', 'or', 'external', 'memes', '(', '', 'or', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '2', '0', '0', '6', 'estimate', 'placed', 'the', 'township', \"'s\", 'population', 'at', '2', '2', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'typical', 'rings', 'are', 'fabricated', 'from', 'rolled', 'steel', 'plate', ',', '', 'or', '', \"'s\", '', 'together', 'to', 'create', 'the', 'ring', 'cross', 'section', 'required', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'largest', 'remaining', 'brown', '', 'population', 'is', 'located', 'in', 'the', 'southern', '', 'desert', 'and', 'coastal', 'areas', 'in', 'southwest', 'africa', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'most', 'early', 'georgia', 'colonists', 'were', 'english', ',', 'scottish', ',', 'and', 'german', '', 'seeking', '', 'land', 'or', 'freedom', 'of', 'religion', ',', 'many', 'of', 'them', 'complained', 'to', 'their', 'leaders', 'that', 'the', 'ban', 'on', 'slavery', 'created', 'a', 'labor', 'shortage', 'that', '', 'local', 'finances', ',', 'compared', 'to', 'other', 'southern', 'colonies', '.', '', '']\n", "['', 'there', 'were', '1', '7', '8', 'married', 'individuals', ',', '1', '6', '', 'or', '', 'and', '2', '6', 'individuals', 'who', 'are', 'divorced', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '1', '2', 'napoleon', 'invited', 'him', 'to', 'paris', 'and', 'paid', 'him', 'the', 'most', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'later', ',', 'in', '1', '8', '8', '5', ',', 'mary', 'would', '', 'the', 'funds', 'to', 'build', 'a', 'library', 'in', 'her', 'late', 'husband', \"'s\", 'name', ',', 'located', 'in', 'dr.', 'hall', \"'s\", 'original', 'hometown', 'of', '', ',', 'new', 'hampshire', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'first', '', 'may', 'refer', 'to', 'the', 'following', 'musical', 'works', '(', 'arranged', '', 'by', 'surname', 'of', 'composer', ')', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'called', 'for', '', 'and', 'community', 'outreach', 'and', '', 'that', '``', 'in', 'hawaii', '...', 'we', 'do', \"n't\", 'initiate', 'conversation', 'by', '', 'a', '', 'against', 'our', 'neighbors', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'side', 'with', 'fewer', 'than', '3', '0', 'points', 'is', '``', '', \"''\", 'and', 'a', 'side', 'with', 'no', '', 'at', 'all', 'is', '``', '', \"''\", '(', '``', 'black', \"''\", ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'that', 'time', ',', 'a', 'lot', 'of', 'the', 'earliest', 'and', 'most', 'influential', 'film', 'workshops', 'were', 'situated', 'there', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'activities', 'occur', '', 'in', 'the', 'valley', 'despite', 'the', 'cold', 'winters', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'wildlife', '', 'colin', 'stafford', 'johnson', 'shows', 'creedon', 'the', 'natural', 'sounds', 'and', 'local', 'wildlife', 'of', 'the', 'river', 'shannon', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'as', 'for', 'population', 'growth', ',', 'it', 'ranks', 'the', 'highest', 'percent', 'increase', 'of', '1', '8', '.', '9', '0', '%', 'with', 'an', 'increase', 'population', 'of', '2', ',', '1', '4', '6', 'between', '1', '9', '9', '0', 'and', '1', '9', '9', '5', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '2', '9', ',', 'he', 'joined', 'the', '', 'office', 'at', '', 'observatory', ',', 'where', 'he', 'carried', 'out', 'studies', 'on', 'the', 'atmospheric', 'electrical', 'balance', 'in', 'good', 'and', 'bad', 'weather', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'before', 'their', 'divorce', 'in', '1', '9', '2', '5', ',', 'they', 'were', 'the', 'parents', 'of', 'one', 'son', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'early', '1', '9', '5', '0', 's', ',', 'he', 'was', 'a', 'founder', 'and', 'contributor', 'to', '``', 'encounter', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '6', 'the', 'group', 'followed', 'with', 'a', '', 'ep', ',', '``', '', \"''\", ',', 'and', 'then', 'a', 'split', 'single', ',', 'with', '``', 'postal', \"''\", 'by', 'minimum', '', ',', 'and', '', '', 'providing', 'the', 'other', 'side', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'december', '2', '0', '1', '5', ',', 'the', 'fund', 'stood', 'at', 'around', '£', '7', '5', '0', ',', '0', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'consisted', 'of', '', 'vehicles', 'and', 'robots', 'piloted', 'by', '', ',', '', 'figures', '', 'off', 'from', 'the', 'prior', '', 'toy', 'line', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'worked', 'as', 'an', 'abc', 'broadcaster', 'and', 'journalist', 'in', 'sydney', ',', 'brisbane', 'and', 'canberra', 'from', '1', '9', '4', '2', 'to', '1', '9', '4', '9', ',', 'and', 'in', '1', '9', '5', '5', 'became', '', 'of', 'a', 'queensland', 'school', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '[', '[', 'collegiate', '', ']', ']', 'and', 'the', 'national', 'orchestra', 'association', 'were', 'conducted', 'by', 'william', 'johnson', ',', 'and', 'the', '', 'were', '[', '[', '', '', ']', ']', 'and', '[', '[', 'paul', '', ']', ']', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'legacy', 'has', '', 'into', 'modern', 'times', 'and', 'has', 'made', 'black', 'women', 'less', 'likely', 'to', 'trust', 'the', 'medical', 'community', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'madeleine', \"'s\", 'fund', 'did', 'not', 'cover', 'the', 'couple', \"'s\", 'legal', 'costs', 'arising', 'from', 'their', 'status', 'as', '``', '', \"''\", ',', 'but', 'it', 'was', 'criticized', 'in', 'october', '2', '0', '0', '7', 'for', 'having', 'made', 'two', 'of', 'the', 'mccanns', \"'\", '', 'payments', ',', 'before', 'they', 'were', 'made', '``', '', \"''\", '.', '']\n", "['', 'the', 'second', 'platform', 'and', 'building', 'and', 'much', 'of', 'the', 'infrastructure', 'for', 'the', 'yard', 'and', 'passenger', 'use', 'has', 'been', 'removed', 'but', 'the', 'remaining', 'structures', 'are', 'an', 'important', 'surviving', '', 'which', 'make', 'an', 'important', 'contribution', 'to', 'the', '', 'of', '', 'with', 'its', 'location', 'in', 'the', 'centre', 'of', 'the', 'town', '.', '', '']\n", "['', 'the', 'site', 'is', 'located', 'about', '1', '4', 'minutes', 'on', 'foot', 'from', '', 'station', 'on', 'the', 'jr', 'east', '', 'line', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'failed', 'negotiations', ',', '', 'sent', 'the', 'young', 'general', '', '', 'with', 'whatever', 'forces', 'he', 'could', '', 'to', '', 'him', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'request', 'of', 'the', '', 'estate', 'feeding', 'was', 'stopped', 'to', 'protect', 'the', 'fishery', 'and', 'water', 'quality', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'suffered', '', 'destruction', 'by', 'fire', 'in', '1', '4', '9', '9', 'when', 'cardinal', '', 'de', '', 'made', 'a', 'public', '``', '', \"''\", 'in', '', ',', 'burning', '1', ',', '0', '2', '5', ',', '0', '0', '0', 'arabic', 'volumes', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'capital', 'and', 'largest', 'city', 'is', 'the', 'city', 'of', 'arusha', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '7', 'april', '1', '9', '4', '0', ',', '', 'returned', 'to', 'active', 'duty', 'in', 'the', 'second', 'world', 'war', ',', 'and', 'was', 'appointed', 'to', 'the', '1', 'st', 'battalion', '(', 'city', 'of', 'sydney', \"'s\", 'own', 'regiment', ')', 'as', 'a', 'major', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'kaziranga', 'has', 'a', 'long', 'history', 'of', 'management', 'and', 'practices', 'include', 'annual', 'burning', 'of', 'the', '', 'by', 'wildlife', 'staff', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'married', '', '', 'in', '1', '9', '4', '9', ',', 'and', 'they', 'had', 'three', 'children', 'together', ':', 'michael', ',', 'elizabeth', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'possessing', 'the', '', 'and', '', 'powers', 'of', 'his', 'fictional', 'creation', ',', '', '', ',', 'doyle', 'has', 'served', 'queen', 'and', 'country', 'under', 'the', '', 'of', 'konstantin', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'much', 'of', 'the', 'civil', 'war', ',', 'branch', 'served', 'in', 'the', 'confederate', 'states', 'army', 'as', 'a', 'captain', 'in', 'company', 'a', ',', 'the', '2', '1', 'st', 'texas', 'cavalry', '(', 'also', 'known', 'as', 'the', '1', 'st', 'texas', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '2', '1', ',', 'once', 'the', 'low', 'pressure', 'building', 'was', 'constructed', 'and', 'made', 'fully', 'operational', ',', 'the', 'original', '', 'power', 'station', 'was', 'deactivated', 'and', 'dismantled', ',', 'with', 'a', 'set', 'of', 'workshops', 'and', '', 'taking', 'its', 'place', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'sales', 'of', 'trucks', 'had', 'achieved', 'a', '5', '%', 'and', '1', '%', 'in', 'buses', 'and', 'trucks', 'in', '1', '9', '9', '8', ',', 'based', 'on', 'the', '', 'argentine', 'automotive', 'market', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'total', 'swiss', 'population', 'change', 'in', '2', '0', '0', '8', '(', 'from', 'all', 'sources', ',', 'including', 'moves', 'across', 'municipal', 'borders', ')', 'was', 'a', 'decrease', 'of', '8', 'and', 'the', '', 'population', 'decreased', 'by', '1', 'people', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'again', 'receives', 'a', '', 'from', 'the', 'wildcat', ',', 'and', 'incorrectly', 'assumes', ',', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'november', '1', '9', '9', '7', ',', 'the', 'use', 'of', 'all', 'organochlorines', 'other', 'than', '', 'was', '', 'out', 'in', 'australia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'can', '', 'or', '', 'like', 'a', 'light', 'continuously', ',', 'or', 'some', 'phone', '', 'light', 'up', 'the', 'display', \"'s\", '', 'like', 'a', 'ring', 'or', 'have', 'edge', 'lighting', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'males', 'have', 'grey', '', 'with', 'dark', 'grey', 'scales', 'at', 'the', 'base', 'of', 'the', '', 'margin', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'tenure', 'has', 'also', 'been', 'met', 'by', 'fierce', 'criticism', '', 'to', 'executive', 'compensation', '', ',', '', ',', '', ',', 'and', '', 'over', '2', '4', 'consecutive', '', 'of', 'revenue', 'decline', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '7', '3', ',', 'its', 'name', 'was', 'changed', 'to', 'electoral', 'district', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'established', 'its', 'city', 'government', ',', 'the', 'third', 'oldest', 'in', 'new', 'spain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'all', 'lines', 'of', 'a', 'song', 'start', 'with', 'its', 'assigned', 'letter', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'kentucky', 'was', 'officially', 'admitted', 'as', 'a', 'state', 'on', 'june', '1', ',', '1', '7', '9', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'had', 'the', 'lowest', 'us', 'bid', 'at', '$', '2', '4', ',', '4', '4', '4', ',', '1', '8', '1', '(', '$', 'today', ')', 'for', 'each', 'of', 'the', 'two', 'ships', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'pictures', 'include', 'many', '', ',', 'tennis', 'parties', 'and', 'horse', 'riding', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'left', 'his', 'position', 'with', 'the', 'board', 'of', 'education', 'when', 'he', 'was', 'elected', 'to', 'the', 'state', 'house', 'of', 'representatives', 'in', '1', '9', '9', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'classification', 'of', '``', 'closed', \"''\", 'and', '``', 'open', \"''\", 'views', 'set', 'out', 'in', 'the', '``', '', 'report', \"''\", 'has', 'been', 'criticized', 'as', 'an', '', 'of', 'a', 'complex', 'issue', 'by', 'scholars', 'like', 'chris', 'allen', ',', 'fred', 'halliday', ',', 'and', '', '', '.', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 're-elected', 'in', '1', '9', '2', '2', ',', '1', '9', '2', '3', 'and', '1', '9', '2', '6', ',', 'serving', 'in', 'the', '', 'until', 'it', 'was', 'dissolved', 'following', 'the', '1', '9', '2', '6', 'coup', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'diseases', 'may', 'also', 'contribute', '(', 'though', 'are', 'far', 'less', 'of', 'a', 'risk', 'than', '', ')', ',', 'such', 'as', '', ',', '', ',', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'provided', 'the', 'germans', 'with', '', 'and', '', 'information', 'for', 'much', 'of', 'the', 'war', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'larvae', 'kept', 'free', 'of', 'natural', 'enemies', 'can', 'almost', 'completely', '', 'a', 'plant', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'book', ',', 'the', 'star', 'is', 'referenced', 'by', 'the', 'name', '', ',', 'but', 'the', 'characters', '', 'the', 'star', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'seriously', 'ill', ',', 'in', '1', '9', '2', '0', 'he', 'returns', 'to', '', ',', 'where', 'he', 'dies', 'in', '1', '9', '2', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'sultan', 'was', '', 'even', 'by', 'the', 'standards', 'of', 'the', 'time', 'and', 'for', 'six', 'years', 'ibn', '', '', 'between', 'living', 'the', 'high', 'life', 'of', 'a', 'trusted', '', 'and', 'falling', 'under', '', 'of', '', 'for', 'a', 'variety', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'elevation', '', 'features', 'bullet', 'drop', 'compensation', '(', '', ')', 'settings', 'for', 'in', '', '', 'for', '5', '.', '5', '6', '×', '4', '5', 'mm', 'nato', 'ball', 'ammunition', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '1', '0', '6', '', 'officials', 'were', 'accused', 'of', 'genocide', 'during', 'the', 'trials', ',', 'but', 'only', '3', '6', 'of', 'them', 'were', 'present', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'cawfe', '', '', 'the', 'feedback', '', 'between', 'atmospheric', '', 'and', 'fire', 'behavior', 'over', 'time', ',', 'and', 'it', 'remains', 'the', 'most', 'capable', '', 'tool', 'to', '', 'a', 'fire', \"'s\", '', 'and', 'spread', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '[', 'jack', ']', 'is', 'a', 'soul', 'in', '', 'and', 'has', 'been', 'moving', 'from', 'place', 'to', 'place', 'trying', 'to', 'find', 'somewhere', 'he', 'can', 'be', 'at', 'peace', ',', \"''\", 'says', '', 'producer', ',', 'manny', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'george', '', 'plays', 'a', 'developer', 'trying', 'to', 'force', 'dearborn', 'off', 'his', 'land', ';', 'he', 'tries', 'to', '', 'the', 'help', 'of', 'his', '', 'girlfriend', ',', 'played', 'by', '', 'parker', ',', 'a', 'move', 'which', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', '', 'before', 'a', '', 'to', 'the', 'previous', 'day', ',', 'when', 'she', 'rides', 'her', '', ',', 'meets', 'friends', 'and', 'is', 'alone', 'in', 'a', 'bedroom', 'at', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'researching', 'the', 'market', 'in', 'india', ',', 'raghu', 'realizes', 'that', 'there', 'is', 'no', '', 'solution', 'available', 'for', 'sexual', 'problems', 'faced', 'by', 'men', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'served', 'by', 'the', 'b', '4', '5', '1', '8', 'road', 'which', 'runs', 'three', 'miles', '', 'from', '', 'to', 'end', 'at', 'the', 'village', ',', 'though', 'continuing', 'as', 'a', 'minor', 'road', 'to', '', 'reservoir', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rita', 'wore', 'a', 'silver', 'callot', 'soeurs', 'dress', 'when', 'she', 'posed', 'for', 'giovanni', '', 'in', '1', '9', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'improved', 'upon', 'this', 'design', 'by', 'using', 'only', 'one', 'large', '', 'chamber', ',', 'instead', 'of', 'many', 'small', 'ones', ',', 'as', 'it', 'was', 'originally', 'designed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '``', '', \"''\", '', '(', 'born', '3', 'june', '1', '9', '4', '6', ')', 'is', 'a', 'retired', 'romanian', 'footballer', ',', 'who', 'played', 'as', 'a', 'defender', 'and', 'won', 'two', 'liga', 'i', 'titles', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', '1', '9', '8', '2', '', 'lp', 'by', '', 'singer', 'sharon', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'had', 'a', 'maximum', 'surface', 'speed', 'of', '6', 'knots', ',', 'and', 'a', 'maximum', 'speed', 'of', '4', 'knots', 'while', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'minority', 'also', 'have', 'some', 'japanese', '', ',', 'which', 'is', 'a', 'result', 'of', '', 'between', 'japanese', 'settlers', 'and', '', 'during', 'the', 'japanese', 'colonial', 'period', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', ',', 'was', 'killed', 'in', 'action', 'on', '3', 'july', '1', '9', '4', '8', ',', 'and', 'was', 'posthumously', 'awarded', 'the', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'forts', 'were', 'to', 'receive', 'two', 'men', 'per', 'yard', ',', 'when', 'needed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'caf', 'first', 'round', 'was', 'the', 'first', 'stage', 'of', 'the', 'qualification', 'for', 'the', '1', '9', '9', '0', '', 'world', 'cup', 'in', 'the', 'confederation', 'of', 'african', 'football', '(', 'caf', ')', 'zone', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'i', 'answered', ',', \"'\", 'i', 'want', 'to', 'go', 'to', 'muhammad', 'and', '', 'to', 'what', 'he', 'says', '.', \"'\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'banning', 'had', 'not', 'been', 'politically', 'active', 'before', 'the', 'outbreak', 'of', 'the', 'first', 'world', 'war', ',', 'but', 'that', 'event', 'motivated', 'him', 'and', 'his', 'future', 'wife', 'to', 'start', 'studying', 'the', 'works', 'of', 'karl', 'marx', 'and', 'karl', '', ',', 'as', 'he', 'blamed', '``', '', \"'\", 'for', 'the', 'war', '.', '', '', '', '']\n", "['', 'she', 'unsuccessfully', 'pleaded', 'with', 'the', 'home', 'office', 'to', 'prevent', 'german', 'aliens', 'from', 'being', 'deported', 'back', 'to', 'germany', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'won', 'an', 'olympics', 'gold', 'medal', 'in', '1', '9', '8', '0', 'and', 'silver', 'medals', 'at', 'the', 'world', 'and', 'european', 'championships', 'in', '1', '9', '8', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'the', 'home', 'of', 'the', '', 'cup', ',', 'which', 'is', 'a', 'competition', 'for', '', 'clubs', 'from', 'all', 'around', 'the', 'world', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'received', 'his', 'phd', 'from', 'edinburgh', 'in', '1', '9', '7', '2', 'for', 'a', 'thesis', 'on', 'university', '', 'and', 'democracy', ',', '1', '8', '6', '0', '-', '1', '8', '8', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'bill', 'was', '', 'in', 'parliament', ',', 'but', 'no', 'progress', 'was', 'made', 'in', 'the', '1', '8', '9', '8', 'session', 'and', 'it', 'disappeared', 'afterwards', ',', 'although', 'the', '', '&', 'amp', ';', '', 'presented', 'a', 'modified', 'version', 'of', 'the', '', 'branch', 'in', 'a', 'bill', 'for', 'the', '1', '8', '9', '9', 'session', '.']\n", "['', 'it', 'is', 'a', 'part', 'of', 'the', 'municipality', 'of', '', 'and', 'lies', 'about', '5', 'km', 'south', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'his', '``', 'method', 'of', 'making', '', 'products', 'of', '', 'and', '', ',', \"''\", 'was', 'filed', 'on', 'july', '1', '3', ',', '1', '9', '0', '7', ',', 'and', 'granted', 'on', 'december', '7', ',', '1', '9', '0', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', 'result', ',', 'two', 'composite', 'teams', '', 'players', 'from', '', '', 'were', 'created', ',', 'the', '', '', 'being', 'one', 'of', 'them', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'including', 'large', 'quantities', 'of', '', 'left', 'behind', 'by', 'users', 'and', 'illegal', 'fires', ',', 'as', 'well', 'as', '', 'toward', '', ',', 'has', 'led', 'many', 'beaches', 'to', 'be', 'posted', 'and', 'monitored', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'most', 'focus', 'on', 'stated', 'research', '', 'and', 'governed', 'by', 'a', 'board', 'of', 'medical', 'and', 'scientific', 'experts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', ',', 'the', 'tiny', '', 'blue', ',', 'is', 'a', 'small', 'butterfly', 'found', 'in', 'india', 'that', 'belongs', 'to', 'the', '', 'or', 'blues', 'family', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '4', ',', 'the', 'national', 'registration', 'authority', 'for', 'agricultural', 'and', 'veterinary', 'chemicals', 'published', 'a', 'use', 'of', 'organochlorines', 'in', '', 'control', ',', '', 'the', '', 'of', 'organochlorines', 'used', 'in', '', 'control', 'upon', 'development', 'of', '', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'if', 'people', 'ca', \"n't\", 'handle', 'or', 'like', 'my', 'movies', 'they', 'just', 'do', \"n't\", '', 'them', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '8', '7', 'squadron', 'and', 'landed', 'in', 'france', 'in', 'april', '1', '9', '1', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'march', '2', '0', '1', '7', ',', 'the', 'record', 'was', '', 'once', 'again', 'by', 'ed', '', ',', 'after', 'his', 'album', '``', '', \"''\", '', '1', '0', '', '1', '0', 'songs', 'on', 'the', 'uk', 'chart', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'unity', 'of', 'the', 'brethren', 'executed', 'the', 'first', 'czech', 'bible', 'translation', 'from', 'the', 'original', 'languages', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'number', 'of', 'goods', '', 'were', 'established', 'near', '', 'street', 'owing', 'to', 'the', 'station', \"'s\", '', 'to', 'the', 'city', 'of', 'london', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'all', 'tracks', 'from', '``', '', 'everybody', \"''\", 'originated', 'from', 'four', 'of', 'elvis', \"'s\", 'films', 'and', 'were', 'only', 'released', 'on', 'soundtrack', 'ep', \"'s\", 'prior', 'to', 'this', 'issue', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'card', 'also', 'had', 'been', 'described', 'as', '``', '', '2', '5', '6', '``', 'in', 'the', 'months', 'leading', 'up', 'to', 'its', 'launch', ',', 'possibly', 'to', 'draw', 'comparisons', 'with', 'the', 'competing', '', 'card', ',', 'although', 'the', '', 'was', 'dropped', 'with', 'the', 'launch', 'of', 'the', 'final', 'product', '.', '', '', '', '', '']\n", "['', 'on', '2', '5', 'april', '4', '3', '3', '', 'attacked', 'the', 'city', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', '9', 'november', '1', '9', '7', '5', 'two', 'bombs', '', 'at', 'dublin', 'airport', ',', 'killing', 'one', 'person', 'and', '', 'ten', 'others', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'to', 'be', 'aimed', 'at', 'the', 'champion', 'stakes', 'in', 'autumn', 'but', 'the', 'prevailing', 'firm', 'ground', 'made', 'him', 'difficult', 'to', 'train', 'and', 'he', 'was', 'retired', 'from', 'racing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'some', 'sources', '', 'that', 'this', 'is', 'partly', 'a', 'myth', 'and', 'exaggerated', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'act', 'also', 'provided', 'that', ',', 'to', 'the', 'extent', 'possible', ',', 'the', 'rma', 'was', 'to', 'be', 'managed', 'as', 'a', 'wildlife', 'refuge', 'in', 'the', 'interim', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'the', 'business', 'environment', 'is', 'characterised', 'by', 'a', 'clear', 'set', 'of', 'rules', 'and', 'little', '', ',', 'corruption', 'remains', 'an', '', 'to', 'doing', 'business', 'in', 'public', 'procurement', ',', '', 'of', '', 'and', 'direct', 'interactions', 'between', 'public', 'and', 'private', 'sectors', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'next', 'morning', 'they', 'found', 'the', 'enemy', 'positions', 'abandoned', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'did', 'everything', 'to', 'support', '', 'in', 'need', 'of', 'shoes', ',', '', ',', 'health', 'service', ',', 'food', ',', 'and', 'people', 'who', 'were', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'secured', '', 'and', 'were', 'eventually', 'picked', 'up', 'by', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '4', 'january', '2', '0', '1', '3', ',', 'martin', '', 'confirmed', 'that', '', 'was', 'not', 'offered', 'a', 'new', 'contract', 'and', 'had', 'left', 'the', 'club', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'fossils', 'of', 'bacteria', 'older', 'than', '3', '.', '4', '6', 'billion', 'years', 'have', 'been', 'found', 'in', 'western', 'australia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'former', 'member', 'of', 'kenya', \"'s\", 'parliament', ',', '', '', ',', 'addressed', 'the', 'mob', 'gathered', 'outside', 'the', 'police', 'station', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'de', '', 'was', 'born', 'on', 'june', '2', '0', ',', '1', '9', '7', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'aim', 'of', 'these', 'events', 'would', 'be', 'to', 'raise', 'the', 'profile', 'of', 'professional', 'golf', 'in', 'the', 'region', ',', 'and', 'compete', 'with', 'the', 'likes', 'of', 'the', 'european', 'tour', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'australia', 'the', 'electronic', 'information', 'exchange', '(', '', ')', 'administration', 'node', 'provides', 'a', 'blocked', '', '', 'service', 'for', 'australian', 'customers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'german', ',', 'the', 'word', 'has', 'the', 'general', '', 'of', 'hybrid', ',', '', ',', 'or', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ambassador', '', 'said', ',', '``', '', 'had', 'a', 'very', 'great', 'heart', 'for', 'his', 'country', 'and', 'people', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'way', 'the', 'foundation', 'does', 'this', 'is', 'by', 'funding', 'initiatives', 'that', 'foster', '', 'and', 'exchange', 'between', 'young', 'canadians', 'of', 'different', 'secular', ',', 'spiritual', 'and', 'religious', 'beliefs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'pro', 'career', 'began', 'in', '1', '9', '2', '6', ',', 'when', 'he', 'hit', '.', '3', '6', '9', 'in', 'the', 'class', 'c', '', 'league', ',', 'earning', 'him', 'a', '', 'to', 'the', '', 'san', 'francisco', 'seals', 'of', 'the', 'pacific', 'coast', 'league', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'anyway', ',', 'i', 'did', 'it', '', 'i', 'had', 'the', 'ideas', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '', '2', '', \"''\", '5', '0', '``', '', '&', 'lt', ';', 'br', '&', 'gt', ';', 'votes', '!', '!', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'vectors', 'in', 'a', '', 'space', 'form', 'a', 'linear', 'space', ',', 'but', 'each', '', 'formula_', '1', 'has', 'also', 'a', 'length', ',', 'in', 'other', 'words', ',', 'norm', ',', 'formula_', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'small', 'region', 'near', 'the', 'city', 'centre', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'o', '', '(', ')', 'is', 'a', 'municipality', 'in', 'the', 'spanish', 'province', 'of', '', ',', 'situated', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'a', 'european', 'tour', ',', 'the', '', 'split', 'up', 'and', '', 'joined', 'country', 'gazette', ',', 'then', 'consisting', 'of', 'roger', 'bush', 'on', 'bass', ',', 'kenny', '', 'on', 'guitar', ',', 'and', 'on', 'the', '', ',', 'byron', '', ',', 'who', 'had', 'formed', 'country', 'gazette', 'earlier', 'in', 'the', 'year', '.', '', '', '', '']\n", "['', 'president', '', 'also', 'credited', 'practicing', 'muslims', 'on', 'taiwan', 'for', 'helping', 'to', 'create', 'a', '', ',', 'more', 'diverse', 'culture', 'on', 'the', 'island', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'david', '', 'jr.', 'left', 'school', 'at', 'the', 'age', 'of', '1', '6', 'to', 'study', 'a', 'sports', '', 'course', 'in', 'glasgow', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '7', '0', '2', ',', 'lawson', 'stood', 'as', 'a', 'whig', 'candidate', 'where', 'he', 'finished', 'second', 'in', 'the', 'poll', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'tried', 'to', 'start', 'a', 'second', 'occupation', 'against', 'hungary', 'with', 'the', 'little', '', ':', 'his', 'plans', '', 'were', 'supported', 'solely', 'by', 'yugoslavia', ',', 'while', 'romania', 'remained', 'steady', 'over', 'the', 'case', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'the', 'swiss', 'order', 'of', '', ',', 'the', 'president', 'of', 'the', 'confederation', 'is', 'the', '', 'swiss', 'official', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '8', ',', '', 'met', 'with', 'doug', '', ',', '', '2', 'architects', ',', 'which', 'was', 'responsible', 'for', '', 'construction', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'city', 'council', 'passed', 'a', 'resolution', 'in', '2', '0', '0', '7', '', '', '', 'day', 'in', 'honor', 'of', 'the', '', 'young', 'adult', 'novels', 'and', 'film', 'series', ',', 'set', 'for', 'september', '1', '3', ',', 'the', 'day', 'before', 'the', 'fictional', '', \"'s\", 'birthday', '.', '', '', '', '', '', '', '']\n", "['', 'since', 'then', 'other', 'examples', 'of', 'this', 'pattern', 'of', 'growing', 'respect', 'for', 'cultures', 'has', 'taken', 'hold', 'in', 'specific', 'instances', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'eventually', 'married', 'in', '1', '8', '5', '8', ',', 'but', 'in', '1', '8', '6', '4', 'august', '', 'died', 'from', 'heart', 'disease', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'otherwise', ',', 'the', 'question', 'is', 'asked', 'on', 'the', 'partly', '', 'formula', 'φ', '', '``', 'x', \"''\", '1', '', '', ',', 'i.e', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'the', 'ninth', 'studio', 'album', 'by', 'american', 'rock', 'band', 'king', \"'s\", 'x', ',', 'released', 'in', '2', '0', '0', '1', 'via', 'metal', '', 'records', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'arthur', 'case', ',', 'chairman', 'of', 'the', 'board', 'of', 'directors', 'and', 'founder', 'of', 'the', 'bank', ',', 'learns', 'of', 'the', '', 'taking', 'place', ',', 'he', '', '``', '', \"''\", 'madeleine', 'white', 'to', 'try', 'to', 'protect', 'the', 'contents', 'of', 'his', 'safe', '', 'box', 'within', 'the', 'bank', '.', '', '', '', '', '']\n", "['', 'certain', 'gambling', 'problems', 'that', 'were', 'studied', 'centuries', 'earlier', 'can', 'be', 'considered', 'as', 'problems', 'involving', 'random', 'walks', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'steam', 'boats', 'also', 'gained', 'the', 'highest', 'prices', 'for', 'their', 'fish', ',', 'as', 'they', 'could', 'return', 'quickly', 'to', 'harbour', 'with', 'their', 'fresh', 'catch', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'en', '1', '4', '0', '4', '6', ':', '2', '0', '0', '4', '-', 'evaluation', 'of', 'the', 'ultimate', '', '', 'and', '', 'of', '', 'materials', 'under', 'controlled', '', 'conditions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", 'is', 'a', '', 'written', 'by', 'chico', '', 'and', '', 'by', 'dino', '', ',', 'produced', 'by', '', '', 'and', '', 'by', 'daniel', '', 'and', 'performed', 'by', 'mexican', 'singer', 'josé', 'josé', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'high', 'failure', 'rates', 'associated', 'with', 'pharmaceutical', 'development', 'are', 'referred', 'to', 'as', 'the', '``', '', 'rate', \"''\", 'problem', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'were', 'over', '5', '9', '8', ',', '0', '0', '0', 'visits', 'to', 'the', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'educated', 'at', 'eton', 'between', '1', '8', '0', '5', 'and', '1', '8', '1', '1', ',', 'and', 'later', 'at', 'christ', 'church', ',', 'oxford', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'track', 'of', 'the', 'album', '``', '', '', \"''\", 'was', 'released', 'as', 'single', 'on', '2', '6', 'february', '2', '0', '1', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'signed', 'for', 'middlesex', 'in', '1', '9', '9', '7', 'as', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'project', 'was', 'done', 'under', 'the', 'guidance', 'of', 'dr.', 'maria', '', 'and', 'dr.', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'film', 'holds', 'a', '2', '4', '%', 'approval', 'rating', 'at', '', 'tomatoes', 'based', 'on', '3', '4', 'reviews', ';', 'the', 'average', 'rating', 'is', '5', '.', '3', '/', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'american', '', '', '', 'lived', 'as', 'a', '', 'in', 'nazi', 'germany', ',', 'and', 'he', 'also', 'reports', 'on', '', 'statements', 'by', 'niemöller', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'sun', '', '(', '``', '', '', \"''\", ')', ',', 'also', 'known', 'in', '', 'as', 'the', 'sun', '', ',', 'is', 'a', '', ',', '', 'colored', '', 'native', 'to', 'northeastern', 'south', 'america', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'population', 'was', '4', ',', '9', '9', '4', 'inhabitants', 'at', 'the', '2', '0', '1', '0', 'census', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'game', 'was', 'directed', 'by', 'bill', 'wentworth', ',', 'produced', 'by', '', 'kitchen', ',', 'and', 'composed', 'by', 'chris', 'kelly', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'receptors', 'are', 'named', 'after', '', 'that', 'facilitate', 'glutamate', 'activity', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'disease', 'prevention', 'activities', 'were', 'focused', 'on', 'public', 'health', '', ',', 'testing', 'and', 'evaluation', 'of', '', 'and', '', 'measures', ',', 'development', 'of', 'educational', 'and', 'training', 'materials', ',', 'and', 'grants', 'to', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'indigenous', 'town', 'of', '', ',', 'near', 'the', 'coast', ',', '', 'founded', 'the', 'city', 'of', 'colima', 'in', 'its', 'first', 'location', 'on', 'july', '2', '5', ',', '1', '5', '2', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '4', ',', 'the', 'school', 'had', '8', '9', '8', 'pupils', ',', 'with', '3', '5', '.', '9', '%', 'of', 'pupils', 'eligible', 'for', 'a', 'free', 'lunch', 'due', 'to', 'the', 'family', 'meeting', 'the', 'federal', 'poverty', 'level', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'specifically', 'identified', 'by', 'dr.', '', '', ',', 'a', '', 'of', 'the', 'louisiana', 'state', 'university', 'agricultural', 'center', ',', 'while', 'he', 'was', 'studying', 'dairy', 'cattle', 'at', 'the', 'southeast', 'louisiana', 'experiment', 'station', 'at', '', ',', 'louisiana', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'december', '2', '0', '0', '5', ',', 'the', 'two', 'countries', 'signed', 'an', 'agreement', 'to', 'develop', '', 'joint', 'ventures', 'within', 'the', 'next', 'three', 'to', 'five', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'collaboration', 'between', 'marsh', 'and', 'nicol', 'ended', 'after', 'the', 'release', 'of', 'the', 'duo', \"'s\", 'final', 'album', ',', '1', '9', '7', '8', \"'s\", '``', 'nicol', '&', 'amp', ';', 'marsh', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'short', 'film', 'festival', 'is', 'an', 'annual', '', 'competitive', 'short', 'film', 'festival', 'open', 'to', 'amateur', 'filmmakers', 'held', 'in', 'the', 'australian', 'city', 'of', 'sydney', ',', 'at', '', 'beach', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hanina', 'requested', 'a', '3', '0', '-day', '', 'in', 'which', 'to', 'review', 'his', 'studies', '(', 'in', 'accordance', 'with', 'the', 'saying', '``', 'happy', 'is', 'one', 'who', 'comes', 'to', '[', 'the', 'world', 'to', 'come', ']', 'with', 'his', 'studies', 'in', 'his', 'hand', \"''\", ')', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'every', '1', '0', '0', 'females', 'age', '1', '8', 'and', 'over', ',', 'there', 'were', '8', '8', '.', '4', 'males', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'has', 'a', 'very', '', 'sense', 'of', 'humor', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'cut', 'version', 'of', '``', '', '5', 'ultimate', \"''\", ',', 'titled', 'dead', 'or', 'alive', '5', 'ultimate', ':', 'core', 'fighters', ',', 'was', 'released', 'on', 'the', '', 'store', 'alongside', 'the', 'retail', 'game', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'st.', 'rose', 'of', 'lima', 'catholic', 'church', 'and', 'school', 'complex', 'in', '', 'in', '', 'county', ',', 'nebraska', 'was', 'listed', 'on', 'the', 'national', 'register', 'of', 'historic', 'places', 'in', '2', '0', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'elevation', 'near', 'the', 'mouth', 'of', '', 'run', 'is', 'above', 'sea', 'level', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'march', '1', '8', '9', '8', ',', 'the', 'canadian', 'mining', 'institute', 'was', 'founded', 'in', 'montreal', 'at', 'the', 'second', 'annual', 'meeting', 'of', 'the', '', 'canadian', 'mining', 'institute', ',', 'which', 'was', 'dissolved', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'his', 'term', 'as', 'mayor', 'he', 'led', 'the', 'calls', 'for', 'a', 'federal', 'investigation', 'into', 'the', '', '', '', 'collapse', 'in', '1', '9', '8', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'soon', 'after', ',', 'the', 'town', 'itself', 'was', 'established', 'and', 'the', 'first', 'wooden', 'bridge', 'over', 'the', 'river', 'to', 'the', 'town', 'was', 'built', 'in', '1', '8', '0', '5', ',', 'along', 'with', 'the', 'first', 'post', 'office', ',', '', ',', 'banks', ',', 'and', 'stores', 'all', 'by', '1', '8', '1', '2', '.', '', '', '']\n", "['', 'he', 'said', 'to', 'me', ',', '', 'do', 'you', 'want', '?', \"'\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'and', 'became', 'known', 'as', '``', 'the', 'founding', 'father', 'of', 'st', 'george', \"'s\", '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'creation', 'of', 'the', 'park', 'was', 'formally', '', 'by', 'gazette', 'notification', 'no', '1', '7', '3', '5', '/', '2', '1', 'on', '6', 'december', '2', '0', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'battle', 'of', '', 'castle', 'was', 'a', 'battle', 'fought', 'between', 'the', '', 'national', 'army', ',', 'and', 'the', '', 'protection', 'force', 'and', 'the', '', 'defense', 'brigades', 'on', '1', '9', 'december', '2', '0', '1', '8', ',', 'which', 'took', 'place', 'in', '', 'castle', ',', 'between', '', 'and', '', '', '.', '', '', '']\n", "['', 'as', 'such', ',', 'it', '', 'the', 'greatest', 'influence', 'on', '', 'singaporean', 'mandarin', ',', 'resulting', 'in', 'a', '', 'singaporean', 'mandarin', 'widely', 'spoken', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'aro', 'was', 'also', 'in', 'the', 'band', 'the', 'resistance', 'and', 'did', \"n't\", 'want', 'to', 'have', 'conflicting', '', 'with', 'both', 'bands', ',', 'so', 'he', 'had', 'to', 'have', 'a', 'discussion', 'with', 'the', 'resistance', 'as', 'well', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'august', '2', '0', '1', '7', ',', 'with', 'the', 'release', 'of', \"'\", ',', 'the', 'entire', '3', '5', '0', '', 'team', 'at', '', 'dog', 'had', 'shifted', 'to', 'develop', '``', 'part', 'ii', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'once', 'it', 'was', 'clear', 'that', 'the', 'doctor', 'was', '', 'to', 'help', 'them', 'defeat', 'the', '', ',', 'they', 'were', 'only', 'too', '', 'to', '', 'in', 'any', 'way', 'they', 'could', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'is', '', 'and', 'changes', 'its', 'course', 'regularly', 'in', 'a', 'short', 'period', 'of', 'time', ',', 'forming', 'new', '', 'and', 'causing', 'the', 'precise', 'border', 'location', 'to', 'shift', 'and', 'become', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'then', 'he', 'was', 'sent', 'to', '', 'to', '', 'youth', ',', 'and', 'once', 'was', 'secretary', 'of', 'communism', 'youth', 'league', 'for', 'that', 'province', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'once', 'a', 'project', 'is', 'financially', 'sustainable', ',', '', 'international', 'uses', 'any', 'profits', 'from', 'operations', 'to', 'provide', 'grants', ',', '', 'and', '', 'to', 'promote', 'new', 'opportunities', ',', 'and', 'ventures', 'helping', 'people', 'throughout', 'the', 'region', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'survived', 'by', 'his', 'wife', ';', 'two', 'children', ',', 'michael', 'reynolds', 'jencks', 'and', 'nancy', 'de', 'laguna', 'jencks', 'and', 'four', '', '-', 'lynn', 'christopher', 'collins', ',', 'martha', 'm.', 'barrett', ',', 'elizabeth', 'b.', '', ',', 'and', 'george', 'b.', 'barrett', 'iii', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'soldiers', 'of', 'the', 'western', 'counties', '', 'to', '', 'again', ',', 'and', 'prevented', 'charles', 'from', 'leaving', 'the', 'country', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'endemic', 'to', '', '(', '', 'province', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '6', 'november', '2', '0', '1', '2', ',', 'six', 'people', 'on', 'three', '', 'entered', 'the', 'shopping', 'centre', 'and', 'smashed', 'in', 'the', 'windows', 'at', '', '', 'hart', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'alonso', 'and', 'the', 'mercedes', '', 'for', 'intermediate', 'tyres', ',', 'leaving', 'massa', 'in', 'second', 'and', '', 'in', 'third', 'by', 'lap', '1', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'out', 'of', 'that', 'number', 'over', '1', '0', '0', 'were', 'shot', 'on', 'the', 'local', '(', 'jewish', ')', 'cemetery', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'his', 'memoir', ',', 'stuart', '', 'described', 'the', 'piece', 'as', 'possibly', '``', 'a', 'metaphor', 'for', 'martha', \"'s\", 'life', '-', 'one', 'against', 'many', '-', 'her', 'role', 'in', 'the', 'world', ',', 'in', 'dance', ',', 'in', 'her', '', ',', 'and', 'likely', ',', 'in', 'her', 'own', 'family', '.', \"''\", '', '', '', '', '']\n", "['', 'he', 'was', 'assigned', 'to', 'the', '1', 'st', 'squadron', ',', '1', '0', 'th', 'u.s.', 'cavalry', 'regiment', ',', '4', 'th', 'infantry', 'division', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'shawn', \"'s\", 'mother', ',', 'brother', ',', 'sister', ',', 'and', 'father', 'are', 'all', '', 'about', 'in', 'the', 'book', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'gemina', 'gave', 'birth', 'to', 'a', '', 'in', '1', '9', '9', '1', ',', 'but', 'the', '', 'died', 'of', 'pneumonia', 'soon', 'after', 'birth', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'historically', ',', 'the', '', ',', 'in', 'addition', 'to', 'their', '', 'lands', 'and', 'culture', ',', 'have', 'also', 'enjoyed', 'a', 'unique', 'urban', 'cultural', 'development', 'in', 'two', 'great', 'cities', ',', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'following', 'year', 'he', 'originated', 'the', 'role', 'in', 'talking', 'pictures', 'of', '', 'in', 'stuart', 'walker', \"'s\", '1', '9', '3', '4', 'production', 'of', '``', 'great', 'expectations', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'also', 'when', 'she', 'clearly', '', 'a', '', 'memory', 'that', 'even', 'she', 'does', \"n't\", 'trust', 'of', 'meeting', 'an', '', '', 'and', '', 'at', 'him', ',', '', 'how', 'much', 'alike', 'they', 'look', ',', 'and', 'feeling', 'as', 'if', 'really', 'he', 'was', 'a', 'male', '', 'of', 'herself', '.', '', '', '', '']\n", "['', 'as', 'the', '', 'fishing', 'industry', 'declined', ',', 'steam', 'boats', 'became', 'too', 'expensive', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'by', '3', '0', 'october', ',', 'the', 'sky', 'was', 'full', 'of', 'enemy', '', ',', 'generally', 'found', 'in', 'groups', 'of', 'five', 'to', 'seven', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'resulting', '', 'destroyed', 'many', 'buildings', ',', 'most', 'of', 'which', 'were', 'commercial', ',', 'as', 'well', 'as', 'confederate', '', '', 'on', 'the', 'james', 'river', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', ')', 'is', 'a', 'rural', 'locality', '(', 'a', 'selo', ')', 'in', '', 'selsoviet', ',', '', 'district', ',', '', ',', 'russia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'video', 'of', 'this', 'event', 'can', 'be', 'viewed', 'at', 'craig', \"'s\", 'website', ',', '', 'faith', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'liberation', ',', 'the', 'first', 'brewery', 'was', 'inaugurated', 'in', 'the', 'city', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thus', 'it', 'was', 'not', 'recognized', 'as', 'a', 'great', 'power', 'that', 'could', 'claim', 'compensation', 'in', 'case', 'of', 'territorial', 'gain', 'by', 'another', 'member', 'of', 'the', 'system', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'project', 'has', '', '4', '4', 'target', 'families', ',', 'where', '2', '2', 'of', 'them', 'successfully', 'received', 'financial', 'aid', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'like', 'the', 'seventh', 'dalai', 'lama', ',', 'the', 'tenth', ',', '', '', ',', 'was', 'born', 'in', '', ',', '', ',', 'where', 'the', 'third', 'dalai', 'lama', 'had', 'built', 'a', 'monastery', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'their', '', 'friendship', ',', 'then', ',', 'was', 'formed', 'when', 'hogan', '(', 'at', 'the', '', 'of', 'savage', \"'s\", '', ',', 'miss', 'elizabeth', ')', 'intervened', 'when', 'savage', 'was', 'being', 'attacked', 'by', 'the', '', '', 'man', 'and', 'the', 'hart', 'foundation', 'in', 'an', 'angle', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'south', '', 'was', ',', 'from', '1', '9', '7', '4', 'to', '2', '0', '0', '9', ',', 'a', '', 'district', 'of', '', ',', 'in', 'the', 'east', 'of', 'england', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'does', \"n't\", 'kiss', 'her', ',', 'though', ',', 'promising', 'to', 'claim', 'his', 'prize', 'without', '', 'eyes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '7', '9', '8', ',', 'it', 'was', 'named', 'by', 'martin', '', '', ',', 'who', 'had', 'earlier', 'isolated', 'it', 'from', 'the', 'mineral', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'end', 'saw', '', 'attempt', 'a', '', 'on', '', ',', 'who', '', 'into', 'a', '', 'to', 'retain', 'the', 'title', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', ',', 'so', 'that', 'it', 'belongs', 'to', '', 'without', '', 'evidence', 'of', 'truth', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'the', 'first', 'champion', ',', 'having', 'won', 'a', '', 'match', 'on', 'june', '1', '4', ',', '2', '0', '1', '3', ',', 'to', 'become', 'the', 'inaugural', 'champion', ',', 'he', 'is', 'also', 'the', 'only', 'wrestler', 'to', 'have', 'won', 'the', 'championship', 'twice', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'dispute', 'arose', 'from', 'payments', 'that', '', 'motor', '', '', 'to', 'have', 'made', 'to', 'pupkewitz', 'for', 'goods', 'that', 'they', 'had', '', 'ordered', '', 'received', 'from', 'the', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'products', 'that', 'have', 'introduced', '', 'elements', 'into', 'd', '&', 'amp', ';', 'd', 'include', 'the', 'adventure', '``', 'city', 'of', 'the', 'gods', \"''\", '(', '1', '9', '8', '7', ')', 'and', 'the', 'novel', '``', 'tale', 'of', 'the', 'comet', \"''\", '(', '1', '9', '9', '7', ')', '.', '', '', '', '', '', '']\n", "['', 'the', 'house', 'was', 'demolished', 'in', 'the', '1', '9', '6', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'belonged', 'to', 'the', '', 'of', '', ',', 'as', 'part', 'of', 'the', '', 'park', 'estate', ',', 'until', '1', '9', '5', '1', 'when', 'it', 'became', 'part', 'of', 'the', '', 'estate', 'of', 'john', 'hill', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'said', 'that', '``', 'homosexuality', 'must', 'be', 'stopped', 'and', 'every', 'means', 'used', 'to', 'make', 'that', 'happen', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'also', 'the', 'oldest', 'living', 'brother', 'of', 'the', '', '', 'alpha', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'butler', 'county', 'has', 'often', 'been', 'used', 'as', 'a', 'setting', 'for', 'films', 'shot', 'in', 'the', 'north', 'pittsburgh', 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '8', 'august', '2', '0', '1', '0', ',', 'after', 'a', 'publicity', '', 'where', 'it', 'briefly', '', 'as', '``', 'glee', 'fm', \"''\", '(', 'airing', 'only', 'music', 'from', 'the', 'american', 'musical', '', 'series', '``', 'glee', ',', \"''\", 'the', 'station', '', 'as', '', 'fm', '.', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'found', 'in', 'south', 'africa', ',', 'where', 'it', 'has', 'been', 'recorded', 'from', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'relationship', 'the', 'property', 'manager', 'has', 'with', 'the', 'landlord', 'and', 'with', 'the', '', 'are', 'crucial', 'in', 'forming', 'the', 'expectations', 'of', 'both', 'parties', 'to', 'the', 'lease', 'since', 'both', 'parties', 'will', 'seek', 'and', '', 'certain', 'rights', 'and', 'benefits', 'out', 'of', 'it', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'fat', 'man', 'also', 'suggested', 'that', 'the', 'twins', 'take', 'their', 'instrumental', 'for', 'their', 'club', 'hit', '', 'on', 'your', 'love', 'and', 'use', 'it', 'as', 'a', 'backing', 'track', 'for', 'a', 'group', 'called', 'dr.', '', '&', 'amp', ';', 'mr.', 'hyde', '(', 'andre', '', 'and', '', 'brown', ')', '.', '', '', '', '', '', '']\n", "['', 'there', 'are', 'no', 'return', 'tickets', ',', 'except', 'on', 'the', 'airport', 'express', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'nicolai', 'is', 'a', 'lunar', 'impact', 'crater', 'that', 'is', 'located', 'in', 'the', 'southern', 'hemisphere', 'of', 'the', 'moon', ',', 'in', 'a', 'region', 'that', 'is', 'less', '', 'by', 'significant', 'impacts', 'than', 'most', 'of', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'before', '1', '9', '7', '1', ',', 'the', 'official', 'form', 'for', 'the', 'latin', 'church', 'was', 'the', '``', '', '', \"''\", ',', 'first', 'published', 'in', '1', '5', '6', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'joined', 'a', 'cavalry', '', 'in', '1', '8', '8', '0', 'and', 'helped', '', 'the', '', 'independence', 'plan', '(', 'supported', 'by', 'the', 'japanese', ')', 'in', '1', '9', '1', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'son', ',', '', ',', 'was', 'born', 'during', 'the', 'warsaw', '', 'on', '2', '3', 'september', ',', 'as', '', 'later', 'wrote', ',', '``', 'on', 'a', 'table', ',', 'in', 'our', '', ',', 'in', 'the', 'middle', 'of', 'a', 'german', 'bombardment', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'genus', 'of', 'moths', 'belonging', 'to', 'the', 'family', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'australia', 'its', 'range', 'is', 'in', 'the', 'southern', 'part', 'of', 'the', 'continent', 'where', 'it', 'occurs', 'from', 'shark', 'bay', 'in', 'western', 'australia', ',', 'south', 'to', 'the', 'southern', 'coast', 'of', 'the', 'continent', ',', 'east', 'to', '', 'and', 'north', 'to', '', 'island', 'in', 'queensland', '.', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'speech', ',', 'the', 'president', 'announced', 'a', 'temporary', '3', '0', '-day', 'travel', 'ban', 'on', 'all', 'european', 'goods', 'and', 'passengers', 'from', 'europe', 'in', 'response', 'to', 'the', 'coronavirus', 'pandemic', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'japanese', '', 'influences', 'are', 'dominant', 'on', 'the', '', 'islands', ',', 'although', 'clay', 'vessels', 'on', 'the', '', 'islands', 'have', 'a', '', 'with', 'those', 'in', 'taiwan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'subject', 'is', 'a', '', 'angel', 'figure', ',', 'crowned', 'by', 'a', 'golden', '', ',', 'standing', 'in', 'a', 'field', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'changes', 'were', 'generally', 'favorable', ',', 'but', 'at', 'the', 'cost', 'of', 'increasing', 'the', 'craft', \"'s\", '', 'to', 'the', 'wind', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'same', 'day', ',', 'a', '', 'for', 'subway', 'announced', 'that', 'the', 'company', 'and', 'fogle', 'had', '', 'agreed', 'to', 'suspend', 'their', 'business', 'relationship', ';', 'subsequently', ',', 'subway', 'removed', 'all', 'references', 'to', 'fogle', 'from', 'its', 'website', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'w.', 'abbott', 'died', 'in', '1', '9', '4', '2', 'at', 'the', 'age', 'of', '6', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'island', 'is', 'part', 'of', 'the', 'great', 'barrier', '', 'marine', 'park', 'at', 'the', 'tip', 'of', 'cape', 'melville', ',', 'queensland', 'in', '', 'bay', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'demonstrated', 'the', '', 'of', '', 'vaccine', 'in', 'mass', 'population', 'in', '', 'areas', 'in', 'dhaka', ',', 'then', 'worked', 'to', 'have', 'it', 'adopted', 'as', 'a', 'public', 'health', 'intervention', 'in', 'bangladesh', ',', 'including', '', 'refugees', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'carlin', '', 'the', 'history', 'of', 'a', 'high', 'school', 'boy', 'who', 'saw', 'the', 'reaper', 'and', 'disappeared', 'without', 'a', '', ',', 'spangler', 'becomes', 'ill', 'and', '', 'out', 'of', 'the', 'second', 'floor', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'poverty', 'inc.', 'is', 'a', '2', '0', '1', '4', 'film', 'by', 'gary', '', 'and', '', 'van', '', 'which', '``', 'claims', 'that', 'the', 'federal', 'reserve', ',', 'like', 'other', 'central', 'banks', 'such', 'as', 'the', 'international', 'monetary', 'fund', 'and', 'the', 'world', 'bank', ',', 'is', 'a', '', 'scheme', '.', \"''\", '', '', '', '', '']\n", "['', 'on', 'the', 'death', 'of', 'his', '', 'in', '1', '7', '3', '4', 'he', 'succeeded', 'to', 'the', 'latter', \"'s\", 'estates', ',', 'including', '', 'park', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'absorbed', '', 'portions', 'of', '', 'territory', 'through', 'legislative', 'action', 'or', '', 'in', '1', '8', '6', '7', ',', '1', '8', '8', '3', ',', '1', '8', '8', '7', 'and', '1', '9', '2', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', '1', '9', '8', '3', ',', 'the', '', 'package', 'contained', '2', '9', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'three', 'battalions', 'distinguished', 'themselves', 'in', 'the', 'battles', 'of', '', ',', '', ',', '', 'and', '', ',', 'after', 'which', 'they', 'were', 'awarded', 'the', 'respective', 'battle', 'honours', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'thus', 'further', '', 'the', 'men', 'and', '', 'down', 'the', 'march', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'angel', 'described', 'an', 'incident', 'in', 'which', 'joshua', 'had', 'shown', 'his', '', 'in', 'a', 'way', 'hanina', 'had', 'not', ',', 'and', 'hanina', 'was', 'left', 'without', 'an', 'answer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'express', 'depot', 'consists', 'of', 'a', '', 'central', 'section', '', 'by', 'two', '1', '', 'wings', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'studies', 'of', 'various', '', 'types', 'have', 'been', 'crucial', 'in', '', 'a', 'prior', 'theory', 'that', '', 'occurs', 'at', 'a', 'threshold', 'of', 'pressure', ',', 'independent', 'of', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'allmusic', 'review', 'by', 'scott', '', 'called', 'it', 'an', '``', '', 'if', '', 'set', \"''\", 'stating', '``', 'not', 'essential', ',', 'but', 'it', 'is', 'a', 'missing', 'link', 'in', 'the', 'long', 'career', 'of', 'chico', 'hamilton', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'stated', 'that', 'he', 'had', 'originally', 'intended', 'him', 'to', 'be', 'called', 'louis', 'lane', 'and', 'be', '``', '', 'and', '', 'by', \"''\", '', 'lane', ',', 'but', '', 'was', 'not', 'present', 'when', 'the', 'writers', 'chose', 'the', 'name', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'parr', 'was', 'also', 'a', 'friend', 'of', 'johnson', ',', 'as', 'frank', 'b.', 'lloyd', ',', 'the', 'district', 'attorney', '(', 'da', ')', 'in', 'alice', ',', 'texas', 'recalled', ':', '``', 'george', 'and', '', 'were', 'very', 'close', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'and', '', 'canal', 'was', '', 'on', 'the', 'same', 'day', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'to', 'an', 'electric', 'field', 'and', 'electric', 'charges', ',', 'the', 'strong', 'force', 'acting', 'between', 'color', 'charges', 'can', 'be', 'depicted', 'using', 'field', 'lines', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'real', 'or', 'complex', 'linear', 'space', '', 'with', 'a', 'norm', 'is', 'a', '', 'space', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'large', 'numbers', 'of', 'this', 'species', 'were', '', 'from', 'madagascar', 'between', '1', '9', '8', '9', 'and', '1', '9', '9', '3', 'before', 'the', 'trade', 'from', 'madagascar', 'was', 'banned', 'by', 'the', '', '', 'treaty', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bryennios', 'had', '', 'against', 'michael', 'vii', '', '(', ')', 'and', 'had', 'won', 'over', 'the', 'allegiance', 'of', 'the', 'byzantine', 'army', \"'s\", 'regular', 'regiments', 'in', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'samshvilde', 'served', 'as', 'the', '', 'capital', 'until', 'a', 'member', 'of', 'that', 'dynasty', ',', '', 'ii', ',', 'was', 'made', 'captive', 'by', 'king', '', 'iv', 'of', 'georgia', 'and', 'had', 'to', '', 'himself', 'by', '', 'samshvilde', 'to', 'the', 'georgians', 'in', '1', '0', '6', '4', '.', '', '', '', '', '', '', '', '']\n", "['', 'in', 'kg', '', '6', ',', 'most', 'of', 'the', 'cost', 'had', 'been', 'recovered', 'by', 'the', 'private', 'player', 'and', 'the', 'increase', 'in', 'price', 'would', 'only', 'go', 'as', 'profit', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'began', 'training', 'in', '', 'whilst', 'at', '', 'university', 'under', 'the', '', 'instructor', 'of', '', '', ',', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', '1', '9', '9', '0', ',', 'he', 'lectures', 'at', 'the', 'belgrade', 'faculty', 'of', 'philosophy', 'on', 'the', 'courses', '``', 'introduction', 'to', 'the', 'social', 'theory', \"''\", 'and', '``', 'philosophy', 'of', 'politics', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'and', 'his', '', 'were', 'the', 'first', 'to', '', 'the', 'use', 'of', 'p', 'element', '', '', 'to', '', 'the', 'first', 'metazoan', '', '', '', '(', '', 'et', '', ',', '1', '9', '8', '2', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'eyes', 'are', 'red', 'and', 'there', 'is', 'some', 'dark', '', 'in', 'front', 'of', 'them', 'and', 'along', 'the', 'sides', 'of', 'the', 'body', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'fielding', '', 'flight', 'academy', 'aircraft', ',', 'it', 'flew', 'the', '', '', 'during', 'the', '1', '9', '5', '6', '', 'crisis', 'and', 'the', '', '', 'during', 'the', '1', '9', '6', '7', '', 'war', ',', 'in', 'the', 'course', 'of', 'which', 'it', 'suffered', 'six', 'fatalities', '.', '', '', '', '', '', '', '', '']\n", "['', 'while', 'on', 'the', 'peninsula', ',', 'the', 'sisters', 'continued', 'establishing', 'schools', 'with', 'help', 'from', 'the', 'local', 'community', 'such', 'as', 'kuala', 'lumpur', \"'s\", 'oldest', 'girls', \"'\", 'school', 'convent', '', '', 'and', 'the', 'only', 'chinese', 'convent', 'girls', 'school', 'convent', '', '', 'in', 'penang', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'this', 'very', 'complex', '', ',', 'the', 'river', 'passes', 'through', 'numerous', 'lakes', 'and', '', ',', 'such', 'as', '', 'lakes', ',', '', ',', '', 'and', 'mountains', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'personally', 'recruited', 'a', 'damage', 'control', 'party', 'and', 'led', 'it', 'into', 'one', 'of', 'the', 'main', 'ammunition', 'magazines', 'to', 'wet', 'it', 'down', 'and', 'prevent', 'its', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'makes', 'a', '', 'in', 'a', '', 'at', 'the', 'beginning', 'of', '``', 'night', 'of', 'the', 'living', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'talent', 'and', '', 'almost', 'immediately', 'became', '', 'of', '', 'and', 'his', 'unit', ',', 'which', 'had', 'many', 'young', 'men', 'and', '', ',', 'was', 'nicknamed', 'the', '``', 'partisan', 'artillery', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '0', 'september', '2', '0', '0', '8', ',', '', 'north', 'reported', 'that', '', 'would', 'be', 'taking', 'a', 'leave', 'of', 'absence', 'to', 'run', 'in', 'the', '', 'election', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'population', 'density', 'was', '8', '5', '7', '.', '6', 'people', 'per', 'square', 'mile', '(', '3', '3', '1', '.', '1', '/km', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'two', 'manufacturing', 'plants', 'using', 'cuban', 'technology', 'and', 'processes', ',', 'were', 'operating', 'in', 'china', 'as', 'of', 'early', '2', '0', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '6', 'he', 'recorded', 'the', 'cd', '``', '', 'down', \"''\", 'and', 'in', '2', '0', '0', '7', '``', 'desert', 'pirate', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'insurance', 'claims', 'reached', 'nz', '$', '9', '1', '.', '5', 'million', '(', 'us', '$', '6', '3', '.', '8', 'million', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'tuberculosis', ',', 'which', 'he', 'contracted', 'at', 'the', 'oregon', 'state', '', ',', 'was', 'advanced', 'due', 'to', 'the', 'lack', 'of', 'treatment', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'oregon', 'supreme', 'court', 'denied', 'a', 'second', 'hearing', 'of', 'the', 'case', ',', '', 'their', 'previous', 'ruling', 'that', 'upheld', 'the', 'lower', 'court', \"'s\", 'ruling', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'course', 'is', 'aimed', 'at', 'students', 'from', 'the', '', ',', 'and', 'mit', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'two', 'days', 'of', 'clashes', ',', '', 'and', '', 'sources', 'confirmed', 'that', 'the', 'syrian', 'army', 'seized', 'back', 'the', 'control', 'of', 'the', 'eastern', 'suburbs', 'of', '', 'from', 'the', 'rebels', 'and', 'started', 'to', 'make', 'house', 'to', 'house', 'arrests', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'town', 'was', 'founded', 'in', '1', '7', '9', '2', 'by', 'col.', 'jacob', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'appointed', 'to', 'the', 'washington', 'state', 'public', 'works', 'commission', 'during', 'the', 'administration', 'of', 'franklin', 'roosevelt', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'station', 'building', 'is', 'a', 'large', 'structure', 'with', 'simplified', 'detail', 'but', 'without', 'the', 'form', 'of', 'the', '', 'brick', 'buildings', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'custom', 'was', 'noted', 'by', 'many', '1', '9', 'th', 'century', 'authors', ',', 'and', 'continues', 'today', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'title', 'holder', 'of', 'this', 'award', ',', 'vice', '', ',', 'retains', 'his', 'reign', 'up', 'to', 'now', 'by', 'receiving', 'the', 'award', 'for', '8', 'consecutive', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'identified', 'on', 'his', '', 'by', 'the', 'personal', 'name', 'of', '', \"'\", ',', 'or', '', 'who', '', '', \"'\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'specializes', 'in', '', 'installations', ',', 'and', 'sometimes', 'works', 'with', 'local', 'communities', 'to', 'produce', 'his', 'works', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'australia', 'was', 'the', 'first', 'nation', 'to', '', '', 'blocking', 'across', 'all', '', 'networks', ',', 'in', '2', '0', '0', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'became', 'king', 'of', '', 'in', '1', '5', '8', '3', 'and', 'in', '1', '5', '9', '7', ',', 'king', '', '', 'of', '', 'conquered', '', 'and', 'he', 'ruled', 'both', 'kingdoms', 'as', 'one', 'then', 'until', 'his', 'death', 'in', '1', '6', '1', '9', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'community', ',', 'student', 'and', 'hospital', 'radio', 'stations', 'around', 'the', 'uk', 'take', 'the', '', 'bulletin', 'service', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'building', 'material', 'was', 'taken', 'from', 'the', 'ruins', 'of', '', \"'s\", 'palace', 'by', '', ',', 'including', 'several', 'columns', 'that', 'he', '', 'in', 'the', 'construction', 'of', 'his', '', 'chapel', 'in', 'aachen', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '6', '7', '8', 'until', '1', '9', '1', '0', ',', 'the', 'church', 'was', 'owned', 'by', 'the', 'nearby', '', '', ',', 'where', 'many', 'of', 'the', '', 'family', 'are', 'buried', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '', ',', 'it', 'was', 'reported', 'that', '', 'caused', 'by', 'the', 'h', '1', 'n', '1', 'virus', 'was', 'widespread', 'in', '4', '1', 'states', ',', 'and', '', '', 'accounted', 'for', '6', '.', '1', 'percent', 'of', 'all', 'doctor', 'visits', ',', 'which', 'was', 'considered', 'high', ',', 'particularly', 'for', 'october', '.', '', '', '', '']\n", "['', 'steve', '', 'in', 'a', '1', '9', '9', '3', '``', 'boston', 'globe', \"''\", 'review', 'called', 'it', 'one', 'of', '``', '', \"''\", 'of', 'the', '1', '9', '9', '3', 'album', '``', 'colour', 'of', 'your', 'dreams', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '7', ',', 'the', 'three', 'species', 'of', '``', '', \"''\", 'have', 'tubular', 'to', '', 'flowers', 'with', '', 'arranged', 'in', 'ribs', 'and', '', 'with', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'park', 'contains', 'the', 'most', 'important', '``', '', \"''\", 'bone', 'bed', 'in', 'the', 'world', ',', 'which', 'was', 'first', 'discovered', 'by', '', 'brown', 'in', '1', '9', '1', '0', 'and', '', 'by', 'dr.', 'phil', 'currie', 'in', '1', '9', '9', '7', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'also', 'marked', 'the', 'debut', 'of', 'new', 'vocalist', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'league', 'was', 'founded', 'in', '1', '9', '4', '2', ',', 'although', 'clubs', 'did', 'not', 'take', 'part', 'in', 'european', 'competitions', 'until', '1', '9', '9', '2', ',', 'because', 'the', '', 'islands', 'football', 'association', 'joined', 'uefa', 'only', 'in', '1', '9', '9', '0', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'his', 'death', 'in', '1', '8', '2', '8', ',', 'the', 'hyderabad', 'branch', 'of', 'the', '', 'was', 'ruled', 'by', 'mir', '', 'ali', 'khan', 'until', '1', '8', '3', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', '', 'and', 'publication', 'brought', 'national', 'attention', 'to', 'both', 'the', 'journal', 'and', '', 'law', 'school', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'instead', ',', 'other', 'than', 'the', '5', '5', 'th', 'reserve', 'infantry', 'regiment', ',', 'which', 'was', 'raised', 'by', 'the', '4', 'th', 'guards', '', ',', 'it', 'was', 'primarily', 'made', 'up', 'of', '', '', 'from', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'the', 'oldest', 'known', '', 'of', 'the', 'family', ',', 'possessed', 'estates', 'in', 'the', 'area', 'of', '', 'district', 'in', 'lower', '', ',', 'and', 'that', 'is', 'why', 'the', 'historians', 'believe', 'that', 'the', 'family', 'originated', 'from', 'there', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'spoken', 'around', '1', '3', '0', 'villages', 'in', '', 'and', '', '', ',', 'some', 'in', '', 'and', '', '', 'district', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'activities', ',', 'especially', 'the', 'space', 'missions', ',', 'when', 'for', 'example', 'a', 'special', '', '', 'had', 'to', 'be', 'devoted', 'to', 'an', 'experiment', 'from', 'the', '', 'soviet', 'republic', ',', 'needed', 'powerful', 'backing', ',', 'both', 'in', '', '', 'and', 'within', 'the', '', 'rocket', 'industry', 'establishment', '.', '', '', '', '', '', '']\n", "['', 'mount', '', 'has', 'a', '', '', 'climate', '(', '', ')', 'with', 'warm', 'days', ',', 'cool', '', 'and', 'heavy', 'rainfall', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'australia', 'began', 'with', 'one', 'sydney', 'location', 'and', '1', '2', '', '', 'and', 'has', 'grown', 'to', 'include', 'locations', 'in', 'brisbane', ',', 'cairns', 'and', 'melbourne', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'exist', '', 'of', '', 'status', 'and', 'variation', 'of', '``', 'grassroots', \"''\", 'deaf', 'people', 'and', 'middle-class', 'deaf', 'professionals', ',', 'but', 'this', 'has', 'not', 'been', 'studied', 'in', 'a', 'systematic', 'way', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'remained', '', 'in', 'his', 'commitment', 'to', 'the', 'highest', '', 'and', 'the', '', 'standards', 'of', 'his', 'legal', 'education', 'at', 'the', 'college', 'of', 'law', 'of', 'the', '', 'de', '', 'university', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'plan', 'almost', 'works', ',', 'but', 'kabamaru', 'offers', 'one', 'candy', 'to', 'ran', ',', 'who', 'later', '', 'in', 'the', 'middle', 'of', 'the', 'road', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', 'proposed', 'that', 'the', 'new', 'name', 'for', 'this', 'place', ',', 'limburg', ',', 'was', 'taken', 'from', 'the', 'name', 'of', 'the', 'fort', 'of', 'the', 'ruling', '', 'dynasty', 'who', 'had', 'in', 'about', 'the', 'same', 'period', 'given', 'their', 'possession', 'to', 'become', 'limburg', 'abbey', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'made', 'it', 'past', 'the', '', \"'\", 'final', '', '', 'before', 'the', '2', '0', '1', '0', 'nfl', 'season', 'as', 'their', '', 'tight', 'end', 'behind', '', '', ',', 'donald', 'lee', 'and', 'rookie', 'andrew', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'fact', '', 'have', 'widely', 'identified', 'the', 'notion', 'of', 'a', 'white', 'genocide', 'in', 'south', 'africa', 'as', 'a', '', 'or', 'myth', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'more', 'generally', 'still', ',', 'one', 'can', 'define', 'the', 'cartesian', 'product', 'of', 'an', '', 'family', 'of', 'sets', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'nietzsche', \"'s\", 'influence', 'on', 'mann', 'runs', 'deep', 'in', 'his', 'work', ',', 'especially', 'in', 'nietzsche', \"'s\", 'views', 'on', '', 'and', 'the', 'proposed', 'fundamental', 'connection', 'between', 'sickness', 'and', 'creativity', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'western', 'colorado', 'university', '', 'compete', 'in', 'the', 'rocky', 'mountain', 'athletic', 'conference', '(', '', ')', 'at', 'the', 'ncaa', 'division', 'ii', 'level', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'first', 'began', 'to', 'write', 'short', 'fiction', 'in', '1', '9', '0', '6', 'and', 'his', 'mother', 'was', 'his', 'first', '', 'and', 'critic', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '1', '8', '1', 'st', 'brigade', '', 'from', 'the', 'south', ',', 'captured', 'the', 'town', 'at', '1', '7', ':', '0', '0', 'along', 'with', '8', '0', '0', 'prisoners', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'music', 'hall', 'there', 'are', '', 'by', '', '', 'and', 'the', '', 'in', 'the', 'staff', 'room', 'is', 'by', 'the', 'artist', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'later', 'transferred', 'to', '', 'prison', ',', 'where', 'four', 'of', 'the', 'belfast', 'ten', 'were', 'on', '', 'strike', 'for', 'political', 'status', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '6', ',', '', 'starred', 'in', 'the', 'period', 'music', 'drama', '``', 'love', ',', 'lies', \"''\", 'followed', 'by', 'romantic', 'comedy', '``', '', 'of', 'the', 'day', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '8', '``', 'modern', 'life', '?', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'same', 'day', ',', '``', '', '', \"''\", 'tv', 'news', 'program', '(', 'part', 'of', 'globo', 'organizations', ')', 'aired', 'a', 'completed', 'report', 'on', 'the', 'incident', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'sweden', 'and', 'denmark', ',', 'there', 'are', '', 'two', 'types', 'of', 'car', 'parking', ',', 'either', 'on', 'streets', 'and', 'roads', ',', 'or', 'on', 'private', 'land', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'efforts', 'to', 'control', '', 'rates', 'were', 'set', 'forth', 'by', 'the', 'government', 'through', 'a', '', ';', 'this', 'effect', 'has', 'failed', 'to', 'prevent', 'the', 'rise', 'in', 'cost', 'of', 'basic', 'goods', ',', 'simultaneously', 'adding', 'to', 'the', 'public', \"'s\", 'reliance', 'on', 'the', 'iranian', '', 'exchange', 'rate', 'network', '.', '', '', '', '', '', '']\n", "['', 'many', 'of', 'the', 'village', \"'s\", 'residents', 'are', 'descendants', 'of', '', 'who', 'fled', 'from', 'the', 'northern', '', 'region', 'of', 'bulgaria', 'during', 'the', 'balkan', 'wars', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'launch', 'of', 'this', '', 'vessel', \"'\", ',', 'as', 'she', 'was', 'then', 'regarded', ',', 'was', 'one', 'of', 'the', 'notable', 'events', 'of', 'the', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'bass', 'boarding', 'house', 'is', 'an', 'historic', 'house', 'on', 'canal', 'street', 'in', 'wilton', ',', 'maine', ',', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'building', 'was', '', 'used', 'as', 'the', 'courthouse', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'also', 'responsible', 'for', 'developing', 'the', '``', '', 'challenge', \"''\", ',', 'where', 'contestants', 'were', 'each', 'paid', '$', '1', '0', '0', 'for', '', 'a', 'simple', 'software', 'bug', 'in', 'under', 'sixty', 'seconds', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'show', 'was', 'broadcast', 'live', 'on', 'the', 'radio', 'program', ',', 'opry', 'country', 'classics', 'at', 'the', '', '', ',', 'october', '3', ',', '2', '0', '1', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'july', '1', '1', ',', '2', '0', '1', '8', ',', 'king', '', '', 'have', 'left', 'the', 'band', 'due', 'to', 'conflicting', 'views', 'on', '', 'concepts', 'of', 'the', 'upcoming', 'album', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'the', 'rest', 'of', 'his', 'life', 'he', 'remained', 'a', 'great', 'baron', 'of', '', ',', 'with', 'no', 'interests', 'in', 'england', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'year', 'that', 'the', 'new', 'school', 'was', 'open', ',', 'it', 'was', 'used', 'for', 'classrooms', 'for', 'some', 'sixth', 'grade', 'students', 'and', 'for', 'the', '9', 'th', 'grade', 'year', 'of', 'the', 'class', 'of', '1', '9', '7', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'both', 'the', 'nova', 'scotia', 'royal', 'canadian', 'mounted', 'police', 'and', 'the', '', 'regional', 'police', 'monitor', 'the', 'gang', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'returned', 'to', 'the', 'small', 'screen', 'with', 'hit', 'medical', 'drama', '``', 'dr', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'interior', 'is', 'decorated', 'with', 'roses', 'to', 'honour', 'saint', 'george', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'building', 'is', '5', '0', '0', ',', '0', '0', '0', 'square', 'feet', 'and', '5', '2', 'feet', 'high', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '3', ',', 'relics', 'from', 'the', 'ship', 'were', 'also', 'displayed', 'at', 'hong', 'kong', \"'s\", 'museum', 'of', 'coastal', 'defense', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', 'spanish', ':', '``', 'woman', \"''\", ')', 'is', 'the', 'title', 'of', 'the', 'first', 'album', 'by', 'spanish', 'singer', '', 'sánchez', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', ')', 'is', 'a', 'settlement', 'in', 'the', 'municipality', 'of', '', 'in', 'central', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'waititi', 'attempted', 'to', 'ask', '', 'minister', 'kelvin', 'davis', 'a', 'supplementary', 'question', ',', 'mallard', 'denied', 'him', 'permission', 'to', 'speak', 'since', 'he', 'was', 'not', 'wearing', 'a', 'tie', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'were', '1', 'staff', 'person', 'for', '1', '0', 'children', ',', 'and', 'on', 'particularly', 'bad', 'days', 'could', '', 'to', '1', 'to', '1', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'people', 'are', 'also', 'famous', 'for', 'their', 'developed', 'musical', 'culture', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'weeks', 'of', 'hard', 'duty', 'took', 'their', 'toll', 'on', 'abbott', ',', 'who', 'was', 'not', 'fully', 'recovered', 'from', 'the', 'wound', 'he', 'suffered', 'at', 'the', 'battle', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'a', 'shock', 'to', 'many', '', 'who', 'had', 'never', 'experienced', 'such', 'cold', 'temperatures', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'building', 'was', 'designed', 'by', '', '', ',', '', '', ',', '', '', ',', '', '', 'and', 'kirill', '', ',', 'and', 'the', '', 'was', 'laid', 'by', '', '', 'on', '1', '3', 'june', '1', '9', '6', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '4', 'october', '1', '9', '1', '8', ',', '``', 'escadrille', 'spa', '7', '3', '``', 'was', 'cited', 'in', 'orders', 'as', 'having', '', '3', '0', 'enemy', 'aircraft', 'and', 'an', '', 'balloon', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'upon', 'arriving', 'to', 'the', 'boundary', '(', 'the', 'name', 'given', 'to', 'the', 'ancient', 'wall', 'protecting', 'the', 'city', ')', ',', 'ivan', 'is', 'accepted', 'into', 'the', '', 'satt', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'implementation', 'took', 'place', 'during', 'the', 'seventh', '', 'plan', 'and', 'an', 'update', 'has', 'been', 'made', 'during', 'the', 'period', 'of', 'the', 'tenth', ',', 'which', 'lasted', 'from', '2', '0', '0', '1', 'to', '2', '0', '0', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'even', 'went', 'as', 'far', 'as', '', 'one', 'of', 'his', '', 'to', 'her', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'not', 'later', 'than', '1', '1', '6', 'it', 'was', 'transferred', 'to', '', '(', 'germany', 's', 'of', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '5', '9', ',', 'she', 'married', 'hungarian', 'physical', 'education', 'teacher', 'robert', '', 'whom', 'she', 'met', 'in', 'israel', ',', 'and', 'they', 'had', 'two', 'sons', ',', 'daniel', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'first', ',', 'the', '', 'settlers', 'faced', 'many', 'challenges', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'competed', 'for', 'venezuela', 'at', 'the', '1', '9', '8', '0', 'summer', 'olympics', 'in', 'moscow', ',', 'soviet', 'union', ',', 'where', 'the', 'team', 'was', 'eliminated', 'after', 'the', '', 'round', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'in', '2', '0', '1', '7', ',', '', 'recorded', 'the', 'singles', '``', '', '', \"''\", 'and', '``', 'to', 'be', 'yours', ',', 'i', \"'m\", 'destined', \"''\", 'for', 'the', 'original', 'soundtrack', 'of', '``', 'destined', 'to', 'be', 'yours', ',', \"''\", 'which', 'top', '', 'by', 'maine', 'mendoza', 'and', '', '', '.', '', '']\n", "['', 'attitudes', 'very', 'often', 'come', 'in', 'pairs', ',', 'one', '', 'and', 'the', 'other', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', '', 'the', 'tale', 'of', '', 'and', '', \"'s\", 'romance', 'in', '3', '4', 'songs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'water', 'has', 'the', 'benefit', 'of', 'a', 'double', 'high', 'tide', ',', 'with', 'two', 'high', 'tide', 'peaks', ',', 'making', 'the', 'movement', 'of', 'large', 'ships', 'easier', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'of', 'them', '8', ',', '1', '8', '8', 'rivers', 'are', 'less', 'than', '2', '5', 'kilometers', 'in', 'length', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'it', 'was', 'not', 'a', 'major', 'hit', 'it', 'still', 'sold', 'well', 'and', 'one', 'of', 'the', 'album', \"'s\", 'singles', '``', 'el', '', ',', 'el', '', '', 'el', '', \"''\", ',', 'referring', 'to', 'eddie', 'dee', ',', 'himself', 'and', '', '', 'respectively', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'moth', 'in', 'the', 'family', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'school', 'was', 'established', 'in', '2', '0', '1', '1', 'by', 'the', 'merging', 'of', 'the', 'district', \"'s\", 'two', 'former', 'high', 'schools', '(', 'indian', 'valley', 'high', 'school', 'and', '', 'area', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'married', 'miss', '', '', '', 'of', '', '', ',', '', ',', 'england', ',', 'in', '1', '8', '6', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'photographs', 'of', '', 'and', 'musicians', 'includes', 'eugene', '', ',', '', '', ',', 'john', 'browning', ',', '', 'watts', ',', '', '', ',', 'eugene', 'list', ',', '', '', ',', 'andre', '', ',', '', '', ',', '', '', ',', 'bruno', 'walter', ',', 'arturo', 'toscanini', ',', '', '', ',', 'and', '', '', '.']\n", "['', 'licking', 'view', 'is', 'an', 'unincorporated', 'community', 'in', '', 'county', ',', 'ohio', ',', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'appeared', 'in', 'remote', 'times', ',', 'the', 'product', 'of', 'the', 'ancient', 'art', 'of', '', ',', 'as', 'the', 'name', ',', '``', 'pan', '', \"''\", '(', 'literally', ':', '', 'bread', \"'\", ')', ',', 'suggests', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'married', 'mary', '', '', 'in', '1', '8', '9', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '2', ',', 'perry', 'cast', 'stewart', 'in', 'her', 'first', 'film', ',', 'playing', 'the', 'role', 'of', 'a', 'secretary', 'in', 'perry', \"'s\", 'film', '``', 'good', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'song', 'was', 'written', 'by', '', '', ',', '', '', ',', 'laurent', '', ',', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'exist', 'approximately', '$', '3', '0', '0', 'in', 'additional', 'costs', 'of', 'registration', 'fees', 'and', '', ',', 'and', 'an', 'annual', 'student', 'lunch', '', 'of', '$', '4', '5', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'nonetheless', '', 'are', 'built', 'around', 'a', 'larger', 'number', 'of', 'longer', '', ',', '', 'threads', ',', 'and', 'designed', 'around', 'texture', 'and', '', 'data', 'paths', ',', 'and', 'poor', '', 'performance', ';', 'this', '', 'them', 'from', '', 'and', 'cell', 'as', 'being', 'less', 'well', '', 'for', 'taking', 'over', 'game', 'world', 'simulation', '', '.', '']\n", "['', 'there', 'is', 'both', '', 'and', '', '', 'in', 'this', 'piece', 'of', 'artwork', 'with', 'the', 'different', 'colors', 'of', 'strings', 'and', 'notes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', \"'s\", 'unusual', '', 'is', 'of', '', 'origin', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'route', 'was', 'closed', 'within', 'a', 'year', ',', 'but', 'taken', 'up', 'again', 'by', 'coast', 'air', 'in', '1', '9', '9', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'stories', 'that', 'they', 'laid', 'eggs', 'were', 'believed', 'by', 'few', 'europeans', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '2', ',', 'she', 'became', 'warden', 'of', '', 'hall', ',', 'a', 'hall', 'of', 'residence', 'of', 'the', 'university', 'of', 'london', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'active', 'in', 'the', 'union', 'of', 'polish', 'patriots', 'in', 'the', 'ussr', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'but', 'this', '', 'campaign', 'came', 'to', 'a', 'quick', 'end', 'when', 'the', 'raja', 'sent', 'his', '', '', '', 'to', 'surrender', 'to', 'the', 'british', 'and', 'lead', 'them', 'from', '', 'into', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'had', 'this', 'detail', 'of', 'his', 'tall', 'tale', 'been', 'true', ',', 'he', 'would', 'have', 'been', 'a', 'citizen', 'of', 'the', '', 'nation', ',', 'which', 'he', 'was', 'not', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'edition', 'contained', '', 'illustrations', 'by', 'phil', '', ',', 'but', 'those', 'are', 'missing', 'from', 'all', 'other', 'editions', 'except', 'the', '2', '0', '0', '8', '', 'press', 'edition', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'video', 'ends', 'with', '', 'walking', 'out', 'of', 'the', '', 'wearing', 'the', 'necklace', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '7', '0', '6', ',', '', 'francisco', 'de', '', 'was', 'designated', 'as', 'the', 'town', 'prior', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', ',', 'she', 'participated', 'in', 'a', 'panel', 'with', '', '', ',', 'where', 'she', 'discussed', 'her', 'experiences', 'with', 'williams', 'and', 'performing', 'in', '``', 'baby', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'programme', \"'s\", 'plot', 'was', '', ',', 'before', 'finally', '', 'on', 'an', 'island', '(', 'later', 'to', 'be', 'renamed', 'mammoth', 'island', ')', 'on', 'which', 'the', 'inhabitants', 'build', '', '', 'to', 'make', 'their', 'lives', 'easier', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'like', 'many', 'sudanese', 'of', 'slave', 'origins', ',', 'latif', 'joined', 'the', 'military', ',', 'as', 'it', 'offered', 'one', 'of', 'the', 'few', 'means', 'of', 'social', 'mobility', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', 'child', 'she', 'studied', 'music', ',', 'but', 'when', 'she', 'was', '1', '8', 'her', 'interests', 'turned', 'to', 'literature', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'presidential', 'elections', 'were', 'held', 'in', '', 'in', 'may', '1', '8', '6', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'abd', 'allah', 'may', 'not', 'have', 'actually', 'been', 'latif', \"'s\", 'biological', 'uncle', ',', 'but', 'instead', 'the', 'term', 'may', 'have', 'just', '', 'from', 'abd', 'allah', 'sharing', 'latif', \"'s\", '', '', 'and', '', 'el', '', 'roots', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'being', 'discharged', 'early', 'from', 'the', 'army', 'due', 'to', 'getting', 'pronounced', '``', 'temporarily', 'unable', 'to', 'serve', \"''\", ',', '', '', 'the', 'band', 'during', 'mid', '1', '9', '7', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'paul', 'jackson', ',', 'in', 'a', 'critical', 'study', 'of', 'the', '', 'english', 'defence', 'league', ',', 'argues', 'that', 'the', 'criteria', 'put', 'forward', 'by', 'the', '', 'report', 'for', '', '``', 'can', 'allow', 'for', 'any', 'criticism', 'of', 'muslim', '', 'to', 'be', 'dismissed', '...', \"''\", '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'presented', 'with', 'high', 'white', 'blood', 'cell', '', ',', 'referred', 'to', 'as', 'persistent', '', '(', '', ')', 'which', 'is', 'associated', 'with', 'the', 'development', 'of', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'current', 'experts', 'in', 'experimental', '', 'in', 'political', 'science', 'include', 'rebecca', '', 'and', 'donald', 'green', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'elections', ',', 'the', '', 'won', '2', '9', '1', 'seats', ',', 'a', 'loss', 'of', '3', ',', 'but', 'the', '', 'gained', '4', 'to', 'win', '3', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'north', 'of', 'the', 'sr', '7', '9', '5', 'interchange', ',', 'the', 'freeway', 'turns', 'to', 'the', 'northwest', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'college', 'was', 'formed', 'through', 'the', '1', '9', '6', '8', 'merger', 'of', '', 'college', 'and', '', 'college', ',', 'both', 'private', ',', 'historically', 'black', ',', '', 'colleges', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'asked', 'to', '', 'the', 'winner', 'to', 'the', 'eclipse', 'award', 'winner', 'american', '', '', 'said', ',', '``', 'it', \"'s\", 'like', 'asking', 'which', 'kid', 'i', 'love', 'more', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'formed', 'on', '', 'in', 'august', '1', '9', '1', '4', 'as', 'part', 'of', 'x', 'reserve', 'corps', 'and', 'dissolved', 'in', '1', '9', '1', '9', 'during', 'the', '', 'of', 'the', 'german', 'army', 'after', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'released', 'the', 'subsequent', 'version', 'called', 'microsoft', '', '2', '0', '0', '0', 'version', '2', 'to', 'general', '', 'on', 'october', '4', ',', '1', '9', '9', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'graduated', 'with', '', 'honours', 'from', '', 'college', ',', 'oxford', ',', 'in', '1', '8', '2', '3', 'with', 'a', 'bachelor', 'of', 'arts', 'in', 'classics', 'and', 'took', 'his', 'master', 'of', 'arts', 'degree', 'in', '1', '8', '2', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'also', 'does', 'not', 'seem', 'to', 'be', 'above', 'any', 'form', 'of', 'inappropriate', 'intercourse', ',', 'once', 'saying', 'that', 'she', 'and', 'a', 'boy', 'she', 'had', 'just', 'discovered', 'was', 'her', 'son', 'could', 'still', 'make', 'out', ',', 'or', 'continuing', 'to', 'have', 'sex', 'after', 'being', '', 'with', '', ',', '', ',', 'and', 'crabs', '.', '']\n", "['', 'this', '', 'was', 'continued', 'on', 'his', '', 'to', 'the', 'throne', 'as', 'king', 'edward', 'vii', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'world', 'war', 'ii', '', 'founded', 'the', 'automatic', '', 'machine', 'company', 'in', 'kansas', 'city', 'to', '', '', 'machines', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'having', 'fled', 'into', 'a', 'forest', 'reserve', ',', 'this', 'group', 'is', 'considered', 'isolated', 'indigenous', 'people', ',', 'only', 'allowing', 'outside', 'contact', 'in', '1', '9', '9', '5', 'after', 'many', 'years', 'of', 'attempts', 'by', 'the', '', 'environmental', 'protection', 'front', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '4', '3', 'rd', 'army', 'corps', '(', 'military', 'unit', 'number', '1', '6', '4', '6', '0', ')', 'was', 'a', 'corps', 'of', 'the', 'soviet', 'army', 'from', '1', '9', '4', '5', 'to', '1', '9', '8', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', '', 'employers', 'include', '', 'medical', 'solutions', \"'\", 'ultrasound', 'group', ',', '', 'technologies', ',', '', \"'s\", '', ',', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'has', 'a', 'degree', 'in', 'science', 'from', 'adelaide', 'university', 'and', 'a', 'phd', 'from', 'cambridge', 'university', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'small', 'medals', ',', 'later', '', 'medals', ',', 'were', 'introduced', 'as', 'a', 'new', 'item', 'to', 'search', 'for', 'and', 'trade', 'for', 'special', 'unique', 'items', 'from', 'a', '', 'king', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'government', 'then', 'enacted', 'an', 'ordinance', 'providing', 'for', '', 'in', '2', '0', '0', '3', ',', 'and', 'parliament', '', 'the', 'act', 'in', '2', '0', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'were', 'initially', 'built', 'as', 'temporary', 'structures', ',', 'but', 'due', 'to', 'their', 'effective', 'nature', 'they', 'have', 'become', 'wider', ',', 'longer', ',', 'more', 'numerous', 'and', 'more', 'permanent', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'married', 'twice', ',', 'first', 'to', 'mary', 'elizabeth', '', ',', 'daughter', 'of', 'henry', 'james', '', 'and', 'mary', 'elizabeth', 'thompson', ',', 'née', '', ',', 'after', 'the', 'death', 'of', 'his', 'first', 'wife', 'he', 'married', 'francis', '', 'barker', ',', 'daughter', 'of', 'dr.', 'thomas', 'barker', 'and', 'francis', '', 'née', '', 'of', 'melbourne', '.']\n", "['', 'in', 'late', '1', '9', '9', '6', ',', 'it', 'was', 'announced', 'that', '', '', '', 'would', '', 'the', 'novel', 'for', 'the', '', 'company', 'and', '', 'pictures', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'affiliated', 'with', 'the', '', 'norwegian', '', '', 'society', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'wanderer', 'instructs', 'leafie', 'to', 'take', 'his', '', 'child', 'to', 'the', '', ',', 'telling', 'her', 'she', 'will', 'understand', 'why', 'in', 'time', 'before', 'he', 'leaves', 'her', 'to', 'find', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'front', 'cameras', 'on', 'both', 'are', 'assisted', 'by', 'a', '3', 'd', '', 'camera', ',', 'but', 'the', 'mate', '3', '0', 'pro', 'has', 'a', 'higher', 'resolution', '3', '2', 'mp', 'sensor', 'compared', 'to', 'the', 'mate', '3', '0', \"'s\", '2', '4', 'mp', 'sensor', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'upper', 'west', 'side', '', 'became', 'a', 'meeting', 'place', 'for', '', ',', 'artists', ',', '', ',', 'and', '', 'to', 'work', 'together', 'on', 'the', '', 'collective', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'storyline', 'takes', 'place', 'during', '', 'day', 'for', 'the', 'next', 'u.s.', 'president', ',', '', 'taylor', ',', 'and', 'is', 'shot', 'partially', 'in', 'south', 'africa', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'haigh', 'of', '``', 'australian', 'book', 'review', \"''\", 'discussed', 'it', 'in', 'december', '2', '0', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'also', 'came', 'the', '', 'of', 'various', 'tv', 'programs', 'such', 'as', '``', 'sport', '', \"''\", ',', '``', '', \"''\", ',', '``', 'la', 'liga', \"''\", ',', '``', 'celebrity', '', \"''\", 'and', '``', 'good', 'morning', 'on', 'the', 'weekend', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'survived', 'by', 'his', 'two', 'daughters', ',', 'six', '', 'and', 'two', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'following', 'years', ',', 'writers', '', '', ',', '', '', 'and', '', '', 'would', 'write', 'in', 'similar', 'fashion', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'along', 'with', '``', 't.', '', \"''\", ',', 'it', 'is', 'one', 'of', 'two', '``', '', \"''\", 'species', 'in', 'the', 'mediterranean', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'show', 'first', 'aired', 'in', '2', '0', '1', '2', 'with', 'the', 'first', 'season', 'premiere', 'airing', 'on', '1', '1', 'april', '2', '0', '1', '2', 'and', 'ending', '3', '0', 'may', '2', '0', '1', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'removed', 'some', 'of', 'the', '', 'and', 'watched', 'the', 'proceedings', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'writing', 'in', 'the', '', '', 'list', 'archive', ',', 'ruth', '', 'offers', 'this', 'expansion', 'of', '', \"'s\", 'note', 'above', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '1', '9', 'th', 'century', ',', 'the', 'philosopher', 'arthur', '', 'argued', 'that', 'teaching', 'some', 'ideas', 'to', 'children', 'at', 'a', 'young', 'age', 'could', 'foster', 'resistance', 'to', '', 'those', 'ideas', 'later', 'on', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'i', 'do', \"n't\", 'believe', 'in', 'using', 'faith', 'as', 'a', 'marketing', 'tool', ',', 'it', \"'s\", 'not', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'this', '', '', 'has', 'treated', '``', '', \"''\", '(', 'old', 'norse', '``', 'the', 'bloody', 'moisture', \"''\", ')', 'and', '``', '', \"''\", '(', 'old', 'norse', ',', '', ')', 'as', 'common', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'point', 'was', 'a', 'music', 'venue', 'in', 'cardiff', 'bay', ',', 'cardiff', ',', 'wales', ',', 'located', 'in', 'the', '', 'grade', '', 'st', 'stephen', \"'s\", 'church', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', 'cave', 'in', '', 'at', 'a', 'height', 'of', 'about', '2', '0', '0', '0', 'metres', ',', 'has', 'been', 'explored', 'over', '1', '4', '.', '4', 'm', 'but', 'its', 'distance', 'is', 'claimed', 'to', 'be', 'way', 'longer', '(', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'won', 'another', 'gold', 'medal', 'at', 'the', '1', '9', '9', '9', 'tournament', 'of', 'the', 'americas', 'and', 'an', 'olympic', 'gold', 'medal', 'with', 'the', 'usa', 'men', \"'s\", 'national', 'basketball', 'team', 'at', 'the', '2', '0', '0', '0', 'summer', 'olympics', 'with', 'eleven', 'other', 'nba', '', '.', '', '', '', '', '', '', '', '']\n", "['', 'the', 'majority', 'of', '', 'population', 'live', 'within', 'a', 'range', 'from', 'the', 'port', 'of', '', ',', 'so', 'pollution', 'would', 'be', 'likely', 'to', 'heavily', 'affect', 'the', 'population', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'among', 'the', 'men', 'who', 'were', 'sexual', 'partners', 'of', '', '', \"'s\", 'wife', 'was', '', 'minorenti', ',', 'a', 'young', 'italian', 'involved', 'in', '', '', 'who', ',', 'after', 'briefly', 'appearing', 'in', '', 'films', ',', 'worked', 'as', 'an', 'escort', 'of', '``', 'older', 'rich', 'women', '.', \"''\", '', '', '', '', '', '', '']\n", "['', 'b.', 'r.', '', 'led', 'a', 'protest', 'outside', 'the', 'temple', 'on', '2', 'march', '1', '9', '3', '0', ',', 'in', 'order', 'to', 'allow', '', 'into', 'the', 'temple', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'section', 'of', '', 'has', 'suffered', 'less', 'of', 'the', 'problems', 'which', 'affected', 'areas', 'like', 'the', 'poet', \"'s\", 'estate', ',', 'and', 'the', 'emphasis', 'on', 'improving', 'the', 'housing', 'and', 'environment', 'has', 'been', 'on', '', 'rather', 'than', 'demolition', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'then', 'takes', 'a', 'rubber', 'ball', 'and', '', 'it', 'in', 'the', 'dog', \"'s\", 'mouth', ',', 'then', '', 'the', 'ball', 'with', 'a', 'needle', 'causing', 'the', 'dog', 'to', 'fly', 'away', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'are', 'generally', 'very', 'small', 'birds', 'of', '', 'brown', 'or', 'grey', 'appearance', 'found', 'in', 'open', 'country', 'such', 'as', '', 'or', 'scrub', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'cbs', '', 'rated', 'the', 'game', 'as', 'the', 'most', 'meaningful', 'bowl', 'played', 'in', 'the', 'twenty', 'seasons', 'from', '1', '9', '9', '2', 'to', '2', '0', '1', '1', ',', 'in', 'terms', 'of', 'its', 'impact', 'on', 'college', 'football', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'has', 'been', 'listed', 'on', 'the', 'national', 'register', 'of', 'historic', 'places', 'since', 'july', '2', ',', '2', '0', '0', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a.', '', ',', 'a', 'former', 'soldier', 'of', 'the', 'west', 'india', 'regiment', 'and', 'a', '', 'of', 'the', 'racism', 'and', '', 'conditions', 'faced', 'by', 'the', 'working', 'class', 'of', 'trinidad', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'moved', 'west', 'and', 'strengthened', 'to', 'a', 'typhoon', 'on', 'june', '2', '0', 'and', 'reached', 'its', 'peak', 'of', '1', '7', '5', 'mph', '(', '2', '8', '0', '', ')', 'and', 'a', 'minimum', 'central', 'pressure', 'of', '9', '0', '0', '', 'on', 'june', '2', '2', '.', '', '', '', '', '', '', '', '']\n", "['', '``', '', '1', '``', ',', 'the', 'air', 'forces', '', 'balloon', ',', 'was', 'designed', 'by', '', '', 'with', 'assistance', 'of', 'vladimir', '', ',', 'konstantin', '', 'and', 'the', 'air', 'force', 'academy', 'staff', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'faculty', 'of', 'engineering', 'aims', 'not', 'only', 'to', '', 'contemporary', 'engineering', 'and', 'scientific', 'knowledge', 'in', 'the', '', 'concerned', ',', 'but', 'also', 'to', '', 'creativity', ',', 'research', 'techniques', ',', 'and', 'self', 'development', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'trans', 'international', 'airlines', 'flight', '8', '6', '3', 'was', 'a', 'ferry', 'flight', 'from', 'john', 'f.', 'kennedy', 'international', 'airport', 'in', 'new', 'york', 'city', 'to', 'washington', '', 'international', 'airport', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'experimental', 'rock', 'group', 'pere', 'ubu', 'included', 'a', 'live', 'version', 'of', 'the', 'song', 'on', 'their', '1', '9', '9', '6', 'box', 'set', '``', '', 'in', 'year', 'zero', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'had', 'capital', 'of', '£', '2', '0', '0', '0', '0', 'in', '£', '1', '0', '0', 'shares', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'november', '2', '0', '1', '9', ',', '', 'announced', 'that', 'he', 'had', 'decided', 'to', 'end', 'his', '', '', 'with', '``', '', 'and', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'change', 'of', 'gear', 'ratio', 'did', 'not', ',', 'however', ',', 'increase', 'the', 'design', 'speed', '(', '', 'transmission', 'system', '-', 'hollow', '', 'bearing', 'on', 'slide', 'bearings', ')', ',', 'but', 'decreased', 'the', 'engine', 'speed', ',', 'making', 'it', 'difficult', 'to', 'drive', 'freight', 'trains', 'with', 'this', 'locomotive', '.', '', '', '', '', '', '']\n", "['', 'she', 'has', 'received', 'two', 'awards', 'from', 'the', 'indian', 'council', 'of', 'medical', 'research', ';', 'the', '', 'devi', 'amir', '', 'prize', 'in', '2', '0', '1', '1', 'and', 'the', '', '', 'das', '', 'memorial', 'award', 'in', '2', '0', '1', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'adrian', 'phillips', '(', 'born', 'march', '2', '8', ',', '1', '9', '9', '2', ')', 'is', 'an', 'american', 'football', 'safety', 'for', 'the', 'new', 'england', 'patriots', 'of', 'the', 'national', 'football', 'league', '(', 'nfl', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'of', 'his', 'slaves', 'who', 'had', 'killed', 'the', '``', 'amir', \"''\", 'were', 'caught', 'and', 'executed', ',', 'while', 'others', 'fled', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'september', '2', '0', '1', '4', ',', 'dr', '', 'was', 'appointed', 'senior', 'advisor', 'to', 'the', 'executive', 'board', 'of', '', 'ltd.', ',', 'wholly', 'owned', 'by', 'deutsche', '', 'and', '', '(', 'swiss', 'stock', 'exchange', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '2', ',', 'professor', '', 'became', 'a', 'member', 'of', 'the', 'international', 'honorary', 'council', 'of', 'the', 'european', 'academy', 'of', 'diplomacy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'rear', 'suspension', 'consisted', 'of', 'twin', '', 'arms', ',', '', 'lower', '', ',', 'single', 'top', 'links', 'and', '', 'springs', 'and', '', ',', 'attached', 'to', 'the', '', 'and', 'engine', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'david', 'then', 'granted', 'samshvilde', 'to', 'his', '', 'commander', ',', '', '', ',', 'in', '1', '1', '2', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'april', '1', '8', '5', '8', 'she', 'suffered', 'an', '``', '', 'attack', \"''\", 'and', 'died', 'the', 'following', 'day', 'in', 'unclear', 'circumstances', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'fourth', 'game', 'of', 'the', 'series', ',', 'toronto', 'sent', 'todd', '', 'to', 'the', '', 'while', 'philadelphia', '', 'with', 'tommy', 'greene', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'recalled', 'hong', \"'s\", 'ability', 'to', '', 'her', 'out', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'war', ',', 'he', 'was', 'awarded', 'a', 'contract', 'to', 'supply', '', 'to', 'fort', 'malden', ';', 'mccormick', 'raised', 'his', '', 'on', 'pelee', 'island', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '6', 'may', '2', '0', '1', '2', ',', '', 'hollande', ',', 'the', 'first', 'secretary', 'of', 'the', 'party', 'from', '1', '9', '9', '7', 'to', '2', '0', '0', '8', ',', 'was', 'elected', 'president', 'and', 'the', 'next', 'month', 'the', 'party', 'won', 'a', 'majority', 'in', 'the', '2', '0', '1', '2', 'legislative', 'election', '.', '']\n", "['', 'this', 'prize', 'gone', 'on', 'to', 'become', 'one', 'of', 'the', '', 'and', 'most', 'prestigious', 'poetry', 'competitions', 'in', 'the', 'country', ',', 'and', 'is', 'now', 'known', 'as', 'the', 'newcastle', 'poetry', 'prize', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'course', 'is', 'paid', ',', 'lasting', '7', '2', 'academic', 'hours', ',', 'taught', 'by', 'teachers', 'of', 'the', 'faculty', 'of', 'law', 'and', 'the', 'faculty', 'of', 'public', 'administration', 'of', 'moscow', 'state', 'university', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'show', 'used', 'social', 'networking', 'sites', '(', 'such', 'as', 'facebook', 'and', 'twitter', ')', 'to', '', 'the', 'show', 'as', 'well', 'as', 'to', 'find', 'contestants', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '2', ',', 'the', '', 'moved', 'to', 'the', 'national', 'professional', 'soccer', 'league', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'prospect', 'of', 'using', '', 'was', 'proposed', 'by', 'nasa', 'officials', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'committee', 'declined', 'to', 'give', 'nominations', 'in', 'the', 'leading', 'actor', 'in', 'a', 'musical', 'and', 'choreography', 'categories', 'because', 'they', 'did', 'not', 'consider', 'any', 'of', 'the', 'performances', 'or', 'choreography', 'outstanding', 'or', 'excellent', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'draft', 'of', 'american', 'players', 'not', 'contracted', 'to', 'the', 'nba', 'or', 'aba', 'was', 'planned', 'for', 'september', ',', 'with', 'league', 'play', 'set', 'for', 'november', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'excellent', 'camera', 'shots', ',', 'the', 'east', 'of', 'the', 'top', 'observatory', 'of', '', '', 'echo', '(', '', '', 'with', '', 'cave', ')', '(', ')', 'is', 'the', 'best', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'both', 'the', 'constituency', 'liberal', 'and', 'labour', 'parties', 'actively', 'supported', 'his', 'campaign', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'name', ',', '``', '', \"''\", 'appears', 'twice', 'in', 'the', '``', 'kings', 'whose', '', 'are', 'known', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'category', 'of', 'bent', 'spring', 'uses', 'the', 'two', 'concepts', 'together', ':', 'parallel', 'and', 'series', 'connection', 'in', 'order', 'to', 'ensure', 'optimal', '', 'compensation', 'for', 'each', 'value', 'of', 'torque', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '3', ',', 'a', 'forever', '2', '1', 'and', 'a', '', 'h', '&', 'amp', ';', 'm', 'opened', 'in', 'the', '', 'wing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'chimbote', 'forms', 'a', '', 'with', '', 'chimbote', 'district', 'to', 'the', 'south', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'contact', '(', 'including', '', 'skin', ')', 'and', '', 'contact', 'with', '', 'objects', 'such', 'as', '', ',', '', 'and', 'sports', 'equipment', 'seem', 'to', 'represent', 'the', 'mode', 'of', 'transmission', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'village', 'of', '', 'that', '', 'the', 'lake', 'its', 'name', 'lies', 'near', 'the', 'western', 'shore', 'of', 'the', 'lake', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'he', 'signed', 'a', 'new', 'deal', 'with', 'northampton', ',', 'making', 'his', 'move', 'permanent', 'at', 'franklin', \"'s\", 'gardens', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mary', '', '(', 'born', '1', '9', '1', '2', ')', 'was', 'a', 'british', 'artist', ',', 'who', 'was', 'originally', 'a', 'painter', 'and', '', 'but', 'later', 'specialised', 'in', 'producing', '', 'glass', 'and', '', 'works', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '-', 'in', '2', '0', '1', '4', ',', 'with', 'a.', '', 'an', 'innovative', 'association', 'of', 'above', '', 'structures', 'which', 'increases', '', 'the', 'discharge', 'of', 'a', 'traditional', 'free', 'flow', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '9', '1', 'he', 'was', 'appointed', 'president', 'of', 'the', 'société', '', 'de', 'france', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'john', '', '(', 'born', '1', '9', '5', '2', ')', 'is', 'an', 'emmy', '', 'american', 'production', 'designer', 'and', 'art', 'director', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'basic', 'scrubbers', 'remove', '', 'dioxide', ',', 'forming', '', 'by', 'reaction', 'with', 'lime', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'finally', 'the', '', 'and', 'corn', '', 'are', 'added', ',', '', 'everything', 'using', 'the', 'hands', 'until', 'a', 'thick', '', 'preparation', 'results', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'president', 'harry', '', 'intervened', 'after', 'the', 'resulting', 'public', '', 'and', 'the', 'medal', 'of', 'honor', 'was', 'awarded', 'to', '', 'on', 'january', '2', '3', ',', '1', '9', '4', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'determined', 'to', 'save', 'cookie', ',', 'seth', 'and', '', '(', 'who', 'finally', 'knows', 'everything', 'and', 'resolved', 'the', 'mystery', 'about', 'the', '', ')', 'takes', 'her', 'to', 'a', '', 'house', 'and', '', '', 'cameras', 'to', 'monitor', 'her', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'also', 'the', 'only', '', 'to', 'be', 'featured', 'in', 'times', 'and', '', 'magazine', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'general', ',', 'the', '', 'school', 'is', 'known', 'for', 'the', '', 'and', 'severity', 'of', 'its', 'training', 'methods', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', '', 'perennial', 'plants', 'are', 'noted', 'for', 'their', 'unique', '', 'flowers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'opened', 'in', '1', '8', '9', '3', ',', 'it', 'hosted', 'its', 'last', '', 'in', '1', '9', '8', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'competed', 'in', 'the', 'women', \"'s\", '1', '0', 'kilometres', 'walk', 'at', 'the', '1', '9', '9', '2', 'summer', 'olympics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'fought', 'under', '', 'at', 'the', 'battle', 'of', '', 'in', 'december', ',', 'defending', 'the', 'famous', 'stone', 'wall', 'at', 'the', 'base', 'of', '', \"'s\", 'heights', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'bridges', 'the', 'gap', 'between', 'the', 'inside', 'and', 'outside', 'of', 'my', 'mind', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '4', '0', ',', 'a', 'contest', 'was', 'held', 'to', 'choose', 'a', '', 'for', '', 'high', 'school', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'later', 'served', 'as', 'police', 'commissioner', 'for', 'buffalo', ',', 'new', 'york', 'for', 'about', 'a', 'year', 'and', 'a', 'half', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'main', 'subclans', 'among', '', 'rathod', 'are', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'müller', 'earned', 'a', '', 'to', 'the', 'german', 'national', 'team', 'in', '2', '0', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'for', 'completing', 'the', 'challenge', 'was', 'a', 'selection', 'of', '', 'and', '', 'with', 'which', 'they', 'could', 'used', 'to', '', 'up', 'their', 'meals', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '4', 'company', ',', 'was', 'part', 'of', 'the', 'defensive', 'force', 'from', 'the', '4', 'th', '(', 'guards', ')', 'brigade', 'covering', 'the', 'retirement', 'of', 'the', '2', 'nd', 'infantry', 'division', 'on', 'the', 'retreat', 'from', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'santa', 'elena', 'is', 'located', 'on', 'the', '', 'of', 'lake', 'petén', '', 'in', 'the', 'petén', 'department', 'of', 'guatemala', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'both', '``', 'time', \"''\", 'magazine', 'and', 'the', 'modern', 'library', 'board', 'named', 'it', 'one', 'of', 'the', 'hundred', 'best', 'novels', 'in', 'the', 'english', 'language', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'the', 'church', 'records', 'show', 'that', 'the', 'independent', 'cause', 'in', 'tollesbury', 'was', 'already', 'under', 'discussion', 'in', 'the', 'years', 'preceding', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '4', '7', '5', ',', 'on', 'the', 'same', 'day', 'that', 'edward', \"'s\", 'eldest', 'son', ',', 'the', 'future', 'edward', 'v', ',', 'was', 'invested', 'as', 'prince', 'of', 'wales', ',', 'vaughan', 'was', 'knighted', ',', 'having', 'acted', 'for', 'some', 'years', 'as', '', 'to', 'the', 'young', 'prince', '.', '', '', '', '', '', '']\n", "['', 'the', 'original', 'mission', 'of', 'the', 'festival', 'was', 'to', 'encourage', 'the', 'growing', 'of', 'flowers', 'and', 'vegetables', 'in', 'home', 'back', 'and', 'fronts', 'yards', ',', 'as', 'well', 'as', 'on', 'vacant', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', '1', '9', '8', '0', 'american', '', 'horror', 'romance', 'film', 'directed', 'by', 'charles', 'b.', '', ',', 'starring', 'oliver', '', 'and', '', 'johnson', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'remained', 'at', 'the', 'fish', '', 'in', 'rogers', 'city', 'until', '2', '0', '0', '1', ',', 'when', 'the', '', 'donated', 'the', 'fishing', 'vessel', 'to', 'the', '', 'museum', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'late', '1', '9', '8', '0', 's', 'and', 'early', '1', '9', '9', '0', 's', ',', 'walker', 'trained', '', 'national', 'liberation', 'army', '', 'on', 'the', '', 'border', ',', 'where', 'he', 'met', 'his', 'wife', 'in', 'a', 'remote', 'northern', 'thai', 'village', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'voice', 'israel', '(', 'season', '3', ')', 'is', 'the', 'third', 'season', 'of', 'the', 'reality', 'show', '``', 'the', 'voice', 'israel', \"''\", ',', 'which', 'focuses', 'on', 'finding', 'the', 'next', 'israeli', 'pop', 'star', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'earl', 'brooks', 'would', 'suddenly', 'have', 'a', '', 'engine', 'in', 'his', 'vehicle', 'on', 'lap', '1', '2', '0', 'while', '', '', 'had', 'similar', 'issues', 'on', 'lap', '1', '7', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'not', 'generally', 'considered', '', 'for', 'dates', 'and', 'ages', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'studies', 'what', '', 'employees', ',', 'how', 'to', 'make', 'them', 'work', 'more', 'effectively', ',', 'what', 'influences', 'this', 'behavior', ',', 'and', 'how', 'to', 'use', 'these', 'patterns', 'in', 'order', 'to', 'achieve', 'the', 'company', \"'s\", 'goals', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', '1', '9', '9', '5', 'atp', 'st.', '', 'he', 'took', 'third', 'seed', 'gilbert', '', 'to', 'three', 'sets', 'in', 'the', 'first', 'round', 'and', 'also', 'lost', 'in', 'the', 'opening', 'round', 'of', 'the', 'croatia', 'open', 'in', '2', '0', '0', '1', ',', 'in', 'three', 'sets', 'to', '', '', '.', '', '', '', '']\n", "['', 'one', 'month', 'later', ',', 'on', '1', '3', 'april', ',', 'the', 'fishing', '', '``', 'ruth', \"''\", 'was', 'boarded', 'and', '', 'by', '``', 'ub-', '1', '6', '``', ';', '``', 'ruth', \"''\", 'was', 'the', 'final', 'ship', '', 'by', '``', 'ub-', '1', '6', '``', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'album', 'was', 'notable', 'for', 'its', 'inclusion', 'of', 'electronic', 'loops', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'of', 'the', 'columns', 'were', 'later', 'returned', 'to', 'aachen', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'about', 'a', 'year', 'before', 'the', 'incident', ',', '', 'had', 'received', 'treatment', 'on', 'his', 'right', 'knee', 'and', 'was', 'advised', 'by', 'his', 'doctor', 'to', 'drive', 'as', 'little', 'as', 'possible', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '4', '7', ',', 'he', 'shot', 'the', 'documentary', ',', '``', '', \"''\", ',', 'in', 'color', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'salad', 'fingers', 'refers', 'to', 'the', 'creature', 'as', '``', '', '', \"''\", 'and', 'asks', 'for', 'a', '', ',', 'but', 'the', 'creature', 'takes', 'a', 'step', 'back', 'and', 'makes', 'an', '', '', '', ',', 'as', 'it', 'did', 'in', '', \"'\", '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'little', 'house', 'was', 'built', 'some', 'time', 'around', '1', '6', '0', '0', 'by', ',', 'a', '', 'of', 'the', 'diocese', 'of', '', 'and', 'descendant', 'of', 'jakob', '', 'the', 'rich', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'st', '', 'had', 'a', 'sub', 'post', 'office', 'by', '1', '9', '0', '0', ';', 'in', 'by', '1', '9', '0', '6', 'steam', '', 'brought', 'mail', '``', 'as', 'often', 'as', 'six', 'times', 'a', 'year', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'considered', 'to', 'be', 'one', 'of', 'the', '', 'actor', 'having', 'years', 'of', 'experience', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '2', '0', '1', '5', '', 'film', ',', 'ella', 'was', 'the', 'character', \"'s\", 'original', 'name', ',', '``', '', \"''\", 'was', 'instead', 'a', '', 'nickname', 'given', 'by', 'the', '', 'to', 'ella', 'after', 'she', '', 'near', 'the', '', 'and', 'subsequently', 'covered', 'by', '``', '', \"''\", '(', '', ')', '.', '', '']\n", "['', 'on', '1', '8', 'april', '1', '9', '1', '6', ',', 'it', 'was', '', ',', 'this', 'time', 'as', 'detachment', 'n', '7', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'war', 'he', 'became', 'deputy', 'head', 'of', 'the', 'naval', 'division', 'at', 'the', 'allied', 'control', 'commission', 'in', 'germany', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '4', '2', ',', 'he', 'joined', 'the', '2', 'nd', 'proletarian', 'brigade', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', '', 'on', 'the', 'lower', 'berth', 'under', 'the', '', 'with', '', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'natives', 'lost', 'about', 'of', 'land', 'in', 'the', 'louisiana', 'territory', 'under', 'the', 'leadership', 'of', 'thomas', 'jefferson', ',', 'who', '', 'property', 'rights', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'three', 'electoral', 'wards', 'named', '``', '', \"''\", '(', 'central', ',', 'east', '&', 'amp', ';', 'west', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'residence', 'is', 'similar', 'to', 'several', 'constructed', 'on', 'the', 'southern', 'line', 'and', 'is', 'interesting', 'as', 'it', 'is', 'out', 'of', 'scale', 'with', 'other', 'development', 'on', 'the', 'site', ',', 'although', '', 'the', 'expected', 'importance', 'of', 'the', 'freight', 'traffic', 'on', 'the', 'line', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'lies', 'on', 'the', '', 'river', ',', 'approximately', 'north', 'of', '', ',', 'north-east', 'of', '', ',', 'and', 'south-west', 'of', 'the', 'regional', 'capital', 'łódź', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'collins', 'dso', ',', 'chief', 'mechanical', 'engineer', 'of', 'the', 'south', 'african', 'railways', '(', '', ')', 'in', '1', '9', '2', '5', ',', 'but', 'the', 'class', 'designation', 'was', 'changed', 'to', 'class', 'u', 'when', 'orders', 'for', 'its', 'design', 'and', 'construction', 'were', 'placed', 'with', '', 'in', 'munich', ',', 'germany', '.', '', '', '', '', '']\n", "['', 'the', 'same', 'month', 'a', 'member', 'was', 'arrested', 'for', '', 'to', '', 'journalists', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'main', 'goals', 'of', 'the', 'game', '', 'of', 'developing', 'one', \"'s\", 'own', 'kingdom', ',', 'training', 'army', 'units', ',', '', 'with', 'other', 'players', '(', 'their', 'kingdoms', ')', ',', 'and', 'gaining', 'black', '', 'in', 'various', 'ways', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'also', 'numerous', 'studies', 'of', 'various', '``', '', \"''\", 'species', \"'\", 'chemical', '', ',', 'often', 'the', '', ',', 'have', 'been', 'published', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'early', 'in', 'the', '1', '8', '8', '0', 's', ',', 'she', 'appeared', 'in', '', 'as', '', 'in', '', \"'s\", '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'bus', 'driver', \"'s\", 'prayer', ',', 'also', 'known', 'as', 'the', '', \"'s\", 'lord', \"'s\", 'prayer', ',', 'is', 'a', '', 'of', 'the', 'lord', \"'s\", 'prayer', 'that', 'takes', 'the', 'bus', 'driver', 'around', 'greater', 'london', '(', 'while', 'avoiding', 'further', 'destinations', ')', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'a', '', 'landmark', 'with', 'significance', 'in', 'biological', '', 'and', 'in', 'clinical', 'applications', 'such', 'as', 'oral', 'and', 'maxillofacial', 'surgery', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'served', 'throughout', 'the', 'french', 'revolutionary', 'wars', ',', 'in', 'flanders', 'and', 'holland', ',', 'at', 'the', '', 'of', 'which', 'he', 'was', 'promoted', 'to', '', 'of', 'his', 'regiment', ',', 'despite', 'being', 'severely', 'wounded', 'in', '1', '7', '9', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'firm', 'lasted', 'until', '1', '9', '3', '4', ',', 'with', 'fuller', \"'s\", 'death', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'plan', 'calls', 'for', 'increased', 'job', 'training', ',', '', 'development', ',', 'and', 'infrastructure', 'investment', ',', 'especially', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'reign', 'of', '', 'khan', 'the', 'territory', 'of', 'the', 'yuan', 'was', 'administered', 'in', '1', '2', 'districts', ',', 'each', 'with', 'a', 'governor', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '6', 'remaining', 'contestants', 'have', 'to', 'do', 'their', '', 'acting', 'skills', 'and', '', 'for', 'them', 'to', 'appear', 'either', 'on', 'tv', ',', 'movies', 'or', 'even', 'in', 'theater', 'stage', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'double', 'line', 'pipeline', '', 'natural', 'gas', 'from', 'russian', '', 'via', 'the', '', 'sea', 'to', 'the', 'german', 'lubmin', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '9', ',', '', 'was', 'elected', 'as', 'the', 'first', 'secretary', 'of', 'the', 'central', 'committee', 'of', 'the', '', 'in', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'runs', 'on', 'the', 'southern', 'bank', 'of', 'the', 'river', ',', 'and', 'the', '', '-', 'westport', 'line', 'railway', 'runs', 'on', 'the', 'northern', 'bank', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'august', '2', '0', '1', '7', 'he', 'represented', 'israel', 'at', 'the', '2', '0', '1', '7', 'world', 'championships', 'in', 'athletics', ',', 'coming', 'in', '6', '3', 'rd', 'in', 'the', 'marathon', 'with', 'a', 'time', 'of', '2', ':', '2', '6', ':', '3', '7', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'show', 'was', 'influential', 'in', '', 'the', 'careers', 'of', 'the', 'group', \"'s\", 'various', 'artists', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'later', ',', 'romantsev', 'sold', 'his', 'stock', 'to', 'oil', '', '', '', ',', 'who', 'in', '2', '0', '0', '3', 'became', 'the', 'club', 'president', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'smith', 'and', 'tom', '', 'both', 'drove', 'the', 'no', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '``', 'acanthostega', \"''\", ',', 'which', 'is', 'more', 'derived', ',', 'the', 'large', 'teeth', 'are', 'absent', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'that', 'capacity', ',', 'he', 'worked', 'with', 'southern', 'african', 'churches', 'as', 'they', '', 'to', 'respond', ',', '', 'and', 'practically', ',', 'to', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', ',', 'new', 'employees', 'may', 'be', 'added', 'to', 'an', 'existing', 'unit', 'without', 'the', 'need', 'for', 'either', 'an', 'election', 'or', 'proof', 'of', 'majority', 'support', 'if', 'they', 'share', 'such', 'an', '', 'community', 'of', 'interest', 'with', 'the', 'employees', 'in', 'the', 'existing', 'unit', 'that', 'they', 'could', 'not', 'be', 'represented', 'separately', '.', '', '']\n", "['', 'a', '6', '-week', '', '', ',', 'where', 'students', 'often', 'experience', 'medicine', 'abroad', ',', 'and', 'a', '6', '-week', '', '1', '', 'are', 'undertaken', 'towards', 'the', 'end', 'of', 'the', 'year', 'following', 'the', 'final', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'paul', 'taylor', '(', 'born', '2', '6', 'july', '1', '9', '5', '9', ')', 'is', 'an', 'australian', 'former', 'professional', 'rugby', 'league', 'footballer', 'who', 'played', 'in', 'the', '1', '9', '8', '0', 's', 'and', '1', '9', '9', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'few', 'months', 'later', ',', 'he', 'was', 'cast', 'in', 'the', '', '!', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', '', '', 'with', 'a', '', 'of', '', 'material', 'in', 'the', 'northeast', '', 'of', 'the', 'crater', ',', 'which', 'may', 'be', 'volcanic', 'in', 'nature', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'parking', 'brake', 'is', 'the', 'air', 'operated', 'spring', 'brake', 'type', 'where', 'its', 'applied', 'by', 'spring', 'force', 'in', 'the', 'spring', 'brake', 'cylinder', 'and', 'released', 'by', '', 'air', 'via', 'a', 'hand', 'control', 'valve', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'species', 'of', 'woody', 'plant', 'in', 'the', 'family', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'received', 'a', '', 'in', 'painting', 'from', 'michigan', 'state', 'university', 'and', 'an', '', 'from', 'the', 'university', 'of', 'chicago', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mr.', 'carlin', 'remains', 'behind', 'to', 'wait', '...', 'and', 'wait', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'national', '', 'of', '', ',', '``', 'la', '', \"''\", ',', 'written', 'in', '1', '9', '0', '3', ',', 'is', 'named', 'in', 'his', 'honour', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'renamed', 'university', 'of', 'providence', 'in', 'july', '2', '0', '1', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'written', 'record', 'in', 'the', 'kannada', 'language', 'is', 'traced', 'to', 'emperor', '', \"'s\", '``', '', '', \"''\", 'dated', '2', '0', '0', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'elizabeth', 'is', 'a', 'sweet', 'child', 'but', 'her', 'high', '', 'and', 'creative', 'imagination', 'often', 'lead', 'her', 'into', 'trouble', 'with', 'the', 'superintendent', ';', 'such', 'as', 'one', 'night', 'when', 'she', '', 'in', 'her', '', 'horse', '', 'into', 'the', 'children', \"'s\", 'bedroom', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', ')', ';', 'w', 'f', '', '', '(', '', 'of', 'dr', 'william', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'estate', 'is', 'now', 'a', 'country', 'park', 'and', 'golf', 'course', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'harris', 'is', 'also', 'a', 'songwriter', ',', 'having', 'penned', 'a', 'top', '2', '0', 'hit', 'on', 'the', '``', 'billboard', 'magazine', \"''\", 'adult', 'contemporary', 'charts', 'in', 'april', '2', '0', '0', '5', 'called', '``', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'median', 'income', 'for', 'a', 'household', 'in', 'the', 'town', 'was', '$', '3', '3', ',', '8', '3', '9', ',', 'and', 'the', 'median', 'income', 'for', 'a', 'family', 'was', '$', '3', '7', ',', '6', '9', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'work', 'resumed', 'on', 'this', 'locomotive', 'in', 'early', '2', '0', '1', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', '', \"''\", 'is', 'a', 'small', '', ',', 'growing', 'to', 'a', 'maximum', 'length', 'of', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'new', 'homes', 'and', 'gas', 'stations', 'were', 'also', 'constructed', 'during', 'this', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', '', '', 'the', 'former', 'site', 'of', '', 'falls', 'and', 'the', 'neighboring', 'fishing', 'and', 'trade', 'village', 'sites', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'post', 'office', '(', 'zip', 'code', '6', '5', '6', '6', '6', ')', 'was', 'established', 'in', '1', '9', '2', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'moscow', 'school', 'district', '#', '2', '8', '1', 'is', 'a', 'public', 'school', 'district', 'located', 'in', 'moscow', ',', '', 'county', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'other', 'hand', ',', 'morrison', \"'s\", 'chinese', 'dictionary', 'has', 'won', 'critical', '', 'from', 'scholars', 'all', 'over', 'the', 'world', 'since', 'the', 'publication', 'of', 'the', 'first', 'volume', 'in', '1', '8', '1', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'characteristic', 'and', 'unifying', 'features', 'of', 'the', 'natural', 'regions', 'grouped', 'within', 'the', '', '', '', 'are', '', 'that', 'are', 'poor', 'in', 'nutrients', 'lying', 'on', 'thick', ',', '', ',', 'ice', 'age', '', ',', 'with', 'an', '', 'of', 'groundwater', 'and', 'underground', 'deposits', 'of', 'brown', 'coal', '.', '', '', '', '', '', '', '']\n", "['', 'she', 'stood', 'as', 'a', 'candidate', 'for', 'the', '2', '0', '2', '0', 'labour', 'party', 'deputy', 'leadership', 'election', ',', 'ultimately', 'coming', 'second', 'to', 'angela', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'october', '1', '9', '8', '2', 'all', 'the', 'cuts', 'from', 'this', 'lp', 'hit', '#', '1', 'on', 'the', 'dance', 'charts', 'for', 'one', 'week', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'valve', 'issues', 'would', 'take', 'out', '', '', 'on', 'lap', '7', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'and', 'several', 'others', 'were', 'arrested', ',', 'then', 'released', 'without', 'charge', 'due', 'to', 'lack', 'of', 'evidence', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'amyloid', 'beta', ',', 'which', '', 'up', 'in', 'alzheimer', \"'s\", 'disease', '', ',', 'is', 'one', 'of', 'the', 'proteins', 'that', '', 'in', 'amd', ',', 'which', 'is', 'a', 'reason', 'why', 'amd', 'is', 'sometimes', 'called', '``', 'alzheimer', \"'s\", 'of', 'the', 'eye', \"''\", 'or', '``', 'alzheimer', \"'s\", 'of', 'the', '', \"''\", '.', '', '', '']\n", "['', 'the', '', 'is', 'an', 'assembly', 'organization', 'based', 'in', 'different', '', 'of', 'area', '(', '', 'level', ')', ',', 'with', 'ability', 'to', 'set', 'the', 'political', 'strategy', 'of', 'the', 'national', 'organization', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'though', 'bonaduce', 'was', 'credited', 'as', 'lead', 'singer', 'on', 'all', 'songs', ',', 'he', '', 'that', 'he', 'had', 'a', 'weak', 'voice', 'and', 'that', 'bruce', '', 'provided', 'most', 'of', 'the', 'vocals', 'on', 'the', 'album', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'time', 'of', 'these', 'elections', ',', 'the', 'party', 'was', 'controlled', 'from', 'behind', 'the', 'scenes', 'by', 'romanian', '', 'and', '', 'collaborator', 'dan', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'fight', 'he', 'would', 'lose', 'his', 'first', 'fight', 'in', 'seven', 'years', 'by', 'ninth', 'round', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'also', 'has', '', 'forms', 'of', '', '(', 'all', 'the', 'following', 'examples', 'are', 'given', 'in', '', 'single', 'form', ')', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', ',', 'the', 'genus', 'was', 'not', 'accepted', 'by', 'the', '', 'database', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'world', 'economic', 'forum', 'met', 'in', '2', '0', '1', '4', 'to', '', '', 'after', 'natural', 'disasters', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'culture', 'differs', 'from', 'both', 'conventional', 'hydroponics', ',', '', ',', 'and', '', '(', 'plant', 'tissue', 'culture', ')', 'growing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'versions', 'of', '', 'codice_', '9', 'support', 'the', '', 'internal', 'codice_', '1', '0', 'command', 'which', 'can', 'display', 'the', '``', 'true', 'name', \"''\", 'of', 'a', 'file', ',', 'i.e', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'symbol', 'of', 'the', 'firm', 'after', 'the', 'merger', 'was', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '9', 'october', '2', '0', '1', '9', ',', 'charlie', 'savage', ',', 'of', '``', 'the', 'new', 'york', 'times', \"''\", ',', 'reported', 'that', '', 'and', 'el', '', '', 'were', 'in', 'the', 'process', 'of', 'being', 'transferred', 'from', '', 'territories', 'to', 'custody', 'of', 'the', 'usa', '.', '', '', '', '', '', '', '', '']\n", "['', 'drivers', 'such', 'as', '', '', 'and', '', 'smith', 'drove', 'the', 'no', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'to', 'the', 'goods', 'review', 'list', 'would', 'be', 'considered', 'and', 'decided', 'upon', 'within', '3', '0', 'days', 'of', 'the', 'adoption', 'of', 'the', 'current', 'resolution', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'painted', 'the', '', 'for', '1', '6', '5', '2', '(', '``', 'saint', 'peter', '', 'the', 'widow', 'tabitha', \"''\", ',', 'now', 'in', 'the', '', 'des', 'beaux-arts', '', ')', 'and', '1', '6', '5', '5', '(', '``', 'the', '', 'of', 'saints', 'paul', 'and', '', \"''\", ')', '.', '', '', '', '', '']\n", "['', 'the', 'regiment', 'sailed', 'for', 'oregon', 'on', '1', '4', 'june', '1', '8', '9', '9', ',', 'and', 'was', 'among', 'the', 'first', 'infantry', 'units', 'to', 'return', 'to', 'the', 'united', 'states', 'from', 'the', 'philippines', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'led', 'better', 'off', 'out', \"'s\", 'campaign', 'for', 'britain', 'to', 'leave', 'the', 'european', 'union', ',', '', 'with', 'the', 'official', 'campaign', '(', 'vote', 'leave', ')', 'as', 'well', 'as', 'with', '', 'and', 'grassroots', 'out', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'conservative', '', 'believe', 'in', 'a', '', 'ministry', 'working', 'together', 'in', 'what', 'is', 'called', 'a', 'plural', 'ministry', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'dollar', 'lake', 'is', 'off', 'the', 'trail', ',', 'about', 'southwest', 'of', 'the', 'pass', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'tablets', 'and', 'versions', 'were', 'used', 'to', 'bring', 'the', 'myth', 'to', 'its', 'present', 'form', 'with', 'a', 'composite', 'text', 'by', 'miguel', 'civil', 'produced', 'in', '1', '9', '8', '9', 'and', 'latest', 'translations', 'by', '', '', 'in', '1', '9', '8', '7', 'and', '', '', 'in', '1', '9', '9', '6', '.', '', '', '']\n", "['', 'the', 'giants', 'added', 'him', 'to', 'their', '4', '0', '', '', 'after', 'the', '2', '0', '1', '7', 'season', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'most', 'commonly', '', 'restrictions', 'in', '', '', 'are', '', 'net', 'worth', ',', 'working', '', 'term', 'liquidity', ',', 'and', 'debt', 'service', 'coverage', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'and', '', 'are', 'usually', 'held', 'to', 'be', 'proper', 'names', 'that', 'refer', 'to', '', ',', 'as', 'in', '', \"'s\", 'translation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'opening', 'of', 'the', 'school', 'marked', 'the', 'beginning', 'of', 'secondary', 'state', 'education', 'in', 'victoria', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'morrison', 'made', 'four', 'appearances', 'for', 'various', 'junior', 'u.s.', 'national', 'teams', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mario', '', 'caught', 'seven', 'passes', 'for', '1', '1', '3', 'yards', 'and', 'two', '', ',', 'giving', 'him', 'five', 'in', 'the', 'past', 'two', 'weeks', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'released', 'an', 'extended', 'play', ',', '``', '', '&', 'amp', ';', 'jared', \"''\", '(', '2', '0', '1', '7', ')', ',', 'with', 'natives', 'music', 'group', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', '', 'were', 'spent', 'camping', 'in', 'welcome', 'valley', 'close', 'to', 'the', '', 'border', 'of', 'devon', 'and', 'cornwall', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'latter', 'descendants', 'include', '', 'populations', 'such', 'as', 'the', '', ',', '', ',', 'the', '', ',', 'and', 'especially', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'attended', 'robert', '', 'technical', 'school', 'in', '', 'heath', ',', 'dagenham', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'forever', \"''\", 'is', 'a', 'song', 'written', 'by', 'buddy', '', ',', 'which', 'was', 'released', 'by', 'the', 'little', '', 'and', 'billy', 'walker', 'in', 'january', '1', '9', '6', '0', ',', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', '9', '6', '.', '5', 'fm', ')', 'is', 'a', 'commercial', 'adult', 'contemporary', 'radio', 'station', 'licensed', 'to', 'san', 'francisco', ',', 'california', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'significant', 'gender', 'differences', 'in', 'the', 'relationship', 'styles', 'among', 'children', 'which', 'particularly', 'begin', 'to', 'emerge', 'after', 'early', 'childhood', 'and', 'at', 'the', '', 'of', 'middle', 'childhood', 'around', 'age', '6', 'and', 'grow', 'more', 'prevalent', 'with', 'age', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'problems', 'have', 'led', 'many', 'humanitarian', '', 'organisations', 'to', '', 'the', 'use', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'calling', 'himself', '', ',', 'his', 'body', 'was', 'now', '', 'with', 'power', ',', 'becoming', 'a', 'surface', 'of', 'control', 'of', 'the', '', 'dimension', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'german', '', 'carl', '', 'in', '1', '9', '6', '6', 'used', 'the', 'song', \"'s\", 'line', '``', '', '', \"'s\", '', '', 'von', 'mir', \"''\", 'as', 'the', 'title', 'for', 'his', 'autobiography', '(', 'english', 'title', ':', '``', 'a', 'part', 'of', 'myself', \"''\", ')', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'out', 'of', 'the', '4', '3', 'race', 'car', 'drivers', 'on', 'the', 'grid', ',', 'there', 'were', '4', '1', 'american-born', '', 'and', 'two', 'foreigners', '(', '', '', 'from', 'australia', 'and', 'juan', '', '', 'from', 'colombia', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '9', '0', '7', 'to', '1', '9', '1', '4', ',', 'the', 'company', 'manufactured', 'the', 'marathon', 'automobile', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'the', 'first', '', 'muslim', 'to', 'graduate', 'from', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '', 'later', 'became', 'the', '', '', 'of', 'the', 'university', 'of', 'washington', 'campus', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'design', 'of', 'the', 'central', 'section', 'matches', 'the', 'design', 'of', 'the', 'adjacent', 'passenger', 'terminal', 'building', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'third', 'species', ',', '``', 's.', '', \"''\", ',', 'is', 'an', '', 'with', 'flattened', 'stems', 'that', '', 'to', 'the', '', 'of', 'trees', 'using', 'aerial', 'roots', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', '', 'of', '', 'from', '1', '7', '1', '4', 'to', '1', '7', '1', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'police', 'was', '', 'to', 'the', 'site', 'after', 'receiving', 'a', 'report', 'that', 'he', 'was', '', ',', '', 'and', '', 'in', 'a', '', 'room', ',', 'but', 'jung', 'was', 'not', 'arrested', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'november', '2', '1', ',', '1', '8', '6', '4', 'mary', 'married', 'dr.', '', '', 'hall', ',', 'a', 'prominent', 'boston', 'physician', 'who', 'was', 'also', 'an', 'active', 'member', 'of', 'the', 'boston', 'school', 'board', 'and', '', 'in', 'the', 'massachusetts', 'medical', 'society', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'golf', 'club', ',', 'located', 'at', 'the', '', 'estate', 'in', 'county', '', ',', 'ireland', ',', 'is', 'home', 'to', 'two', '', '7', '2', ',', '1', '8', '', 'courses', ':', 'the', 'east', ',', 'which', 'was', 'created', 'first', ',', 'and', 'the', 'west', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thus', '2', '2', '4', '2', 'years', 'may', 'be', 'counted', 'from', 'adam', 'to', 'the', 'flood', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'part', 'of', 'the', 'whitney', \"'s\", '3', 'rd', '', 'exhibition', 'of', 'contemporary', 'american', 'painting', 'in', '1', '9', '3', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'despite', 'the', 'initial', 'issues', 'on', 'set', ',', 'the', 'two', 'otherwise', 'had', 'a', 'positive', 'relationship', 'and', 'worked', 'together', 'on', 'later', 'films', 'including', '``', 'track', 'of', 'the', 'cat', \"''\", 'and', '``', 'blood', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'also', 'an', 'art', 'exhibition', ',', 'and', '', 'raising', 'money', 'for', '', 'causes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'border', 'is', 'an', 'international', 'boundary', 'that', '', 'malawi', 'and', 'tanzania', 'in', 'east', 'africa', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'along', 'the', 'trails', ',', 'oak', ',', '', ',', '', 'and', 'black', '', 'trees', 'provide', 'habitat', 'for', 'a', 'variety', 'of', 'birds', 'and', 'other', 'wildlife', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'tribal', 'council', 'is', 'responsible', 'for', 'the', 'general', 'welfare', 'of', 'tribal', 'members', 'and', 'the', 'management', 'of', '', 'tribal', 'business', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'the', 'extent', 'of', '', '', 'during', 'disease', 'could', 'be', 'useful', 'to', 'allow', 'us', 'to', 'prevent', 'or', '', 'their', 'conversion', 'into', 'other', '', 'that', 'may', 'be', 'contributing', 'to', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'studies', 'report', 'various', 'improvements', 'in', 'general', 'quality', 'of', 'sleep', '', ',', 'as', 'well', 'as', 'benefits', 'in', '', 'rhythm', 'disorders', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '(', '1', '9', '3', '8', ')', 'and', '``', 'i', \"'ll\", 'be', 'seeing', 'you', \"''\", ',', 'which', 'was', 'written', 'in', '1', '9', '3', '8', ',', 'but', 'became', 'a', 'hit', 'in', '1', '9', '4', '3', 'especially', 'among', 'the', 'families', 'of', '', 'sent', 'overseas', '.', '', '', '', '', '', '', '', '']\n", "['', 'the', 'next', 'day', ',', 'crown', 'attorney', 'kelly', 'began', 'his', '', 'of', 'aravena', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'no', 'one', 'was', 'injured', ',', 'and', 'not', 'a', 'shot', 'was', 'fired', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'king', '', 'upper', 'class', 'british', 'raf', 'officer', 'flight', 'lieutenant', 'peter', '', 'to', 'act', 'as', 'a', 'translator', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'within', 'a', 'few', 'hours', 'of', 'the', 'incident', ',', 'inspector', '', '', 'of', 'the', 'police', 'control', 'room', 'of', 'delhi', 'police', 'traced', 'the', 'car', 'by', 'trailing', 'the', 'oil', '', 'to', 'the', 'grade', 'from', 'the', 'spot', 'of', 'the', 'accident', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'built', 'his', 'home', 'in', '1', '8', '0', '5', 'along', '', 'creek', 'in', 'berkshire', 'township', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'along', 'with', 'the', '', 'that', '', 'the', '', 'are', 'later', '', 'and', 'killed', 'by', 'the', 'shadow', 'king', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'hotel', ',', 'operated', 'by', '', 'hotels', ',', 'opened', 'for', 'business', 'in', 'may', '2', '0', '1', '7', 'and', 'celebrated', 'its', 'grand', 'opening', 'in', 'june', '2', '0', '1', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'later', 'stated', 'that', 'he', 'had', 'only', 'seen', 'about', 'half', 'of', 'the', 'original', 'pilot', 'episode', 'of', 'the', 'british', 'series', 'before', 'he', 'auditioned', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'also', 'finished', 'sixth', 'in', 'the', 'nordic', 'combined', 'event', 'at', 'the', '1', '9', '5', '4', '', 'nordic', 'world', 'ski', 'championships', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'bishop', \"'s\", 'house', '(', '``', '', \"''\", ')', 'from', 'that', 'period', 'remains', 'in', 'a', 'grave', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'is', '', 'to', 'both', 'dogs', 'and', 'cats', ',', 'as', 'well', 'as', '``', 'anything', 'warm', 'and', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'a', 'genre', 'full', 'of', 'tragic', '', ',', 'he', \"'s\", '``', 'neighbours', \"''\", \"'\", 'tragic', 'hero', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'inhabitants', 'of', 'the', 'valley', 'are', 'of', '', 'descent', 'and', 'live', 'in', 'large', 'villages', 'under', 'a', '', 'political', 'system', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'stood', 'adjacent', 'to', 'another', 'manor', 'known', 'as', 'the', '', 'castle', '(', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'max', 'planck', 'institute', 'for', 'solar', 'system', 'research', 'is', 'leading', 'the', 'development', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'boxes', ',', 'which', 'are', 'monitored', 'by', 'volunteers', ',', 'rise', 'above', 'the', 'meadow', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'girls', 'are', 'also', 'more', '', 'in', 'conflict', 'situations', 'and', 'are', 'better', 'at', 'collaborative', 'work', 'and', 'play', 'than', 'boys', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'with', 'his', 'brother', 'tommy', 'and', 'his', '', 'daughter', 'sarah', ',', 'they', 'got', 'involved', 'in', 'a', '', 'with', 'a', 'soldier', ',', 'and', 'sarah', 'was', 'mortally', 'wounded', 'and', 'died', 'in', 'his', 'arms', ',', 'leaving', 'him', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'carol', 'rhodes', 'sibley', '(', '1', '9', '0', '2', '-', '1', '9', '8', '6', ')', ',', '``', '', \"''\", 'rhodes', ',', 'was', 'a', 'prominent', 'civic', 'activist', 'in', 'berkeley', ',', 'california', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'later', 'served', 'as', 'head', 'tennis', 'professional', 'at', '', 'golf', '&', 'amp', ';', 'country', 'club', 'from', '1', '9', '7', '8', 'until', '1', '9', '9', '0', 'and', 'volunteer', 'director', 'of', 'tournament', 'operations', 'for', 'the', '', 'federation', 'cup', 'held', 'in', 'west', 'vancouver', 'in', '1', '9', '8', '7', '.', '', '', '', '']\n", "['', 'the', 'temple', 'was', 'established', 'in', '1', '9', '0', '6', 'by', '', '', '(', '', ')', ',', 'though', 'the', 'building', \"'s\", 'construction', 'was', 'not', 'completed', 'until', '1', '9', '1', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', '2', '8', '%', ')', 'of', 'the', 'species', 'are', 'found', 'only', 'in', 'the', 'sierra', 'nevada', 'de', 'santa', '', ',', 'an', 'isolated', 'mountain', 'range', 'in', 'northern', 'colombia', 'with', 'a', 'very', 'high', 'degree', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'of', 'the', 'major', 'implications', 'of', '', 'in', 'cancer', 'progression', 'is', 'their', 'role', 'in', '', 'degradation', ',', 'which', 'allows', 'cancer', 'cells', 'to', 'migrate', 'out', 'of', 'the', 'primary', '', 'to', 'form', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'poland', 'emerged', 'victorious', 'in', 'the', 'final', 'battle', 'at', '', ',', '', \"'s\", '', 'camp', 'accepted', 'a', 'peace', 'offer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', '', 'of', 'juan', '', 'gómez', ',', 'in', '1', '9', '1', '9', ',', 'a', '', 'law', 'was', '', ',', 'ordering', 'every', 'weapon', 'owner', 'to', 'give', 'them', 'away', 'to', 'the', 'authorities', ';', 'the', 'only', 'exceptions', 'were', '', 'and', 'hunting', '', '.', '', '', '', '', '', '', '', '', '']\n", "['', '', 'had', 'little', 'direct', 'concern', 'with', 'freud', 'while', 'in', 'frankfurt', ',', 'but', 'devoted', 'more', 'attention', 'to', '', 'in', 'the', '1', '9', '5', '0', 's', ',', 'and', 'in', '1', '9', '5', '3', 'suggested', 'to', 'brown', 'that', 'he', 'should', 'read', 'freud', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'mine', 'number', 'six', 'in', '', ',', 'in', 'the', 'coal', 'mining', 'region', 'of', 'south', 'central', 'pennsylvania', ',', 'artists', ',', 'landscape', 'architects', ',', 'scientists', 'and', 'historians', 'collaborated', 'on', 'ways', 'to', 'treat', 'amd', 'while', '', 'the', 'coal', 'mining', 'history', 'and', 'the', 'passive', 'treatment', 'processes', '.', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '7', '1', 'a', 'fire', 'destroyed', 'the', 'main', 'school', 'building', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'park', 'also', 'hosts', 'music', '', 'and', 'civic', 'forums', ',', 'on', 'the', 'weekends', 'all', 'year', 'round', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', 'ball', \"''\", 'was', 'developed', 'by', '', 'technologies', 'and', 'was', 'published', 'by', '', 'software', 'inc.', 'in', 'north', 'america', ',', 'and', 'by', 'zoo', 'digital', 'publishing', 'in', 'europe', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'such', ',', 'the', 'firm', 'had', '', 'and', 'power', 'plant', 'experience', 'which', 'could', 'easily', 'be', 'transferred', 'into', 'the', '', 'and', 'rapidly', '', 'automobile', 'industry', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'him', ',', 'this', 'was', 'the', 'moment', 'when', 'he', 'decided', 'to', 'become', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'areas', 'are', 'now', 'under', 'the', 'administrative', 'control', 'of', '', ',', '', ',', '', ',', '', ',', '', ',', 'and', '', '', 'districts', 'of', 'the', '', 'province', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '9', 'bc', ',', 'a', 'group', 'of', '', 'who', 'were', 'delayed', 'in', 'their', 'march', 'to', 'the', 'north', 'by', 'flooding', 'in', 'central', 'china', 'and', 'faced', 'penalty', 'by', 'death', ',', 'rose', 'in', 'rebellion', 'under', 'the', 'leadership', 'of', '', '', 'and', 'wu', 'guang', '.', '', '', '', '', '', '', '']\n", "['', \"'s\", '', 'carbon', 'emissions', 'reduction', 'target', 'of', '3', '3', '%', 'by', '2', '0', '2', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'species', 'live', 'on', 'the', '', 'surface', 'or', 'reside', 'in', '', ',', 'while', 'others', 'live', 'on', 'aerial', 'roots', 'and', 'lower', 'tree', '', 'or', 'prop', 'roots', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '-', 'the', '', 'glen', 'six', 'hours', 'was', 'a', 'round', 'of', 'the', 'world', 'championship', 'for', 'makes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'uses', 'it', 'as', 'a', 'medium', 'for', '', 'messages', 'of', 'peace', ',', 'love', 'and', 'unity', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'james', 'm.', 'and', '', 'd.', 'stone', 'center', 'on', 'socio-economic', 'inequality', 'was', 'launched', 'on', 'september', '1', ',', '2', '0', '1', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'child', '', 'the', 'american', 'anti-slavery', '', 'for', '1', '8', '4', '3', ',', 'which', 'includes', 'a', 'page', 'on', 'the', 'national', 'anti-slavery', 'standard', ',', 'a', 'publication', 'she', 'also', 'edited', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', ',', 'yap', 'supported', 'the', '$', '1', '5', '', ',', 'three-year', '', 'bc', 'for', 'small', 'businesses', 'across', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'followed', 'the', 'example', 'of', 'jesus', 'in', '', 'the', '', 'as', 'far', 'as', 'he', 'was', 'able', ';', 'and', 'the', 'few', 'simple', '', 'he', 'found', 'a', 'very', 'great', 'help', 'to', 'him', 'in', 'his', 'work', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'song', 'was', 'speculated', 'to', 'be', 'the', 'lead', 'single', 'from', 'gambino', \"'s\", '', 'fourth', 'studio', 'album', ',', 'but', 'was', 'eventually', 'not', 'included', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '1', '0', ',', 'he', 'became', 'president', 'of', '', 'collieries', 'ltd.', ',', 'and', 'he', 'was', 'a', 'director', 'of', '', 'tobacco', 'and', 'the', 'british', '&', 'amp', ';', 'colonial', 'press', 'service', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'temple', 'formed', 'a', 'pivotal', 'role', 'in', 'the', '', 'movement', 'in', 'india', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '2', ',', 'a', '2', '4', '-year-old', 'man', 'was', 'run', 'over', 'by', 'a', '', 'train', '', 'the', 'station', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'team', 'soon', 'find', 'out', ',', 'however', ',', 'that', 'their', 'new', 'coach', 'requires', 'just', 'as', 'much', '', 'as', 'they', 'do', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'was', 'inaugurated', 'in', '1', '8', '7', '2', ',', 'after', 'fourteen', 'years', 'of', 'construction', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'cane', 'was', 'thus', 'less', 'functional', 'and', 'rather', 'for', 'the', '', 'of', 'fashion', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'not', 'built', 'in', 'a', 'series', 'either', ',', 'and', 'the', 'prototype', 'was', 'used', 'as', 'a', '', 'plane', 'by', 'the', 'ministry', 'of', 'foreign', 'affairs', 'during', '1', '9', '4', '7', ',', 'then', 'by', 'the', 'factory', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'it', 'returns', 'in', 'the', 'third', 'section', ',', 'it', 'is', '', 'to', 'c', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'the', 'roman', 'catholic', 'church', 'strengthened', 'as', 'an', 'institution', ',', 'the', '', 'and', 'dominican', '', 'orders', 'were', 'founded', ',', 'and', 'there', 'was', 'a', 'rise', 'of', 'competitive', 'middle-class', ',', '', 'christians', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bob', '', 'and', 'eddie', 'macdonald', 'made', 'their', 'final', '', 'appearances', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'both', '', 'and', '', 'tried', 'to', 'be', 'recognized', 'as', 'the', 'designer', 'of', 'the', '', 'plan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'a', 'state', 'in', 'south', 'sudan', 'that', 'existed', 'between', '2', 'october', '2', '0', '1', '5', 'and', '2', '2', 'february', '2', '0', '2', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'we', 'have', 'your', 'name', 'on', 'iraqi', 'documents', ',', 'some', 'prepared', 'before', 'the', 'fall', 'of', 'saddam', ',', 'some', 'after', ',', 'that', 'identify', 'you', 'as', 'one', 'of', 'the', '', '', ',', \"''\", 'senator', 'coleman', 'accused', 'mp', 'galloway', 'in', 'may', '2', '0', '0', '5', '.', '', '', '', '', '', '', '']\n", "['', 'she', 'later', 'became', 'one', 'of', 'the', 'first', 'foreign', 'artists', 'to', 'visit', 'dhaka', ',', 'performing', 'at', 'an', 'open-air', 'concert', 'in', '', '', 'in', 'dhaka', 'to', 'celebrate', 'the', 'first', '', 'february', 'after', '', 'independence', 'in', '1', '9', '7', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'family', '', 'farm', 'and', 'business', ',', 'les', '', 'cadoret', ',', 'had', 'been', 'founded', 'in', '1', '8', '8', '0', ',', 'and', 'cadoret', 'began', 'working', 'there', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'most', 'countries', 'are', 'working', '``', 'within', 'the', 'framework', \"''\", 'of', 'a', 'constitution', ',', 'the', 'european', 'union', 'must', 'decide', 'how', 'strongly', 'it', 'will', '', 'to', 'a', 'future', 'of', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'himself', 'the', 'king', 'of', 'all', 'robots', ',', 'he', 'seeks', 'to', '', 'out', '', 'and', 'establish', 'a', 'world', 'populated', 'only', 'by', 'robots', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'former', 'senior', 'editor', 'at', '``', 'time', \"''\", 'magazine', ',', 'and', 'now', 'writes', 'on', 'foreign', 'affairs', 'for', '``', 'the', 'washington', 'post', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'supported', 'yuan', '', \"'s\", 'monarchy', 'in', '1', '9', '1', '5', 'and', 'zhang', '', \"'s\", 'effort', 'to', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '5', '7', 'brian', '', 'was', '', 'as', 'having', 'set', 'the', 'english', '1', '0', '0', 'yards', 'native', 'record', 'in', 'a', 'time', 'of', '9', '.', '7', 'seconds', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'i', 'do', \"n't\", 'think', 'it', 'added', 'anything', 'to', 'the', 'debate', 'on', 'the', 'uk', \"'s\", 'energy', 'future', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'white', 'solid', ',', 'although', 'commercial', 'samples', 'are', 'often', 'colored', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'september', '8', ',', '1', '9', '7', '0', ',', 'the', 'douglas', '', '8', '(', 'registration', 'n', '4', '8', '6', '3', 't', ')', 'crashed', 'during', '', 'from', '', \"'s\", 'runway', '1', '3', 'r', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'draw', 'of', 'the', 'tournament', 'was', 'held', 'on', '1', '3', 'july', '2', '0', '2', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '0', ',', 'the', 'chief', 'financial', 'officers', '(', '', ')', 'act', 'called', 'for', 'reforms', 'that', 'brought', 'the', 'goal', 'of', 'accountability', 'to', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'initial', '', 'to', 'find', 'out', 'the', '', 'of', '', 'prove', 'difficult', ',', 'but', 'she', 'continues', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'land', 'for', 'both', 'projects', 'along', 'jamaica', 'bay', 'in', 'the', 'area', 'was', 'acquired', 'via', '', 'domain', 'in', '1', '9', '3', '8', ',', 'and', 'shore', '', 'opened', 'in', '1', '9', '4', '0', ',', 'with', 'an', 'interchange', 'to', 'the', 'south', 'end', 'of', 'pennsylvania', 'avenue', '.', '', '', '', '', '', '', '', '']\n", "['', 'milliken', 'worked', 'for', 'his', 'family', 'business', ',', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'due', 'to', 'his', 'many', 'discoveries', ',', 'karl', '', 'submitted', 'a', 'large', 'list', 'of', '6', '6', 'newly', 'named', '', 'in', 'the', 'early', '1', '9', '3', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'surviving', '', 'and', 'the', 'remaining', 'interior', 'floor', 'are', 'relatively', '', ',', 'possibly', 'due', 'to', 'deposits', 'of', '', 'from', 'the', '', '', 'impact', 'basin', 'to', 'the', 'northeast', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'the', 'von', '', 'center', 'website', ',', 'elvis', 'presley', 'appeared', 'may', '3', '0', 'through', 'june', '1', ',', '1', '9', '7', '5', 'for', 'an', 'unprecedented', 'five', 'performances', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'is', 'a', '', 'professor', 'at', 'the', 'university', 'of', 'western', 'australia', 'and', 'an', 'infectious', 'diseases', 'consultant', 'at', 'the', '', 'children', \"'s\", 'hospital', '(', 'formerly', 'known', 'as', 'princess', 'margaret', 'hospital', 'for', 'children', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'b.', 's.', '', 'in', '1', '9', '4', '8', ',', 'who', 'suggested', 'that', '', 'might', 'provide', 'similar', 'protection', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'despite', 'efforts', 'to', 'right', 'the', 'economy', ',', 'hoover', 'was', 'himself', 'defeated', 'in', 'a', 'landslide', 'in', '1', '9', '3', '2', 'to', 'franklin', 'd.', 'roosevelt', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'a', 'descendant', 'of', 'john', 'of', '', \"'s\", 'eldest', 'son', ',', 'john', 'beaufort', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'december', '1', '7', ',', '2', '0', '1', '5', 'johnson', 'recorded', 'a', '4', '4', '', '', ',', 'breaking', 'the', '', 'franchise', 'record', 'for', 'most', 'saves', 'in', 'a', 'regular', 'season', '', ',', 'which', 'had', 'been', 'held', 'by', 'ryan', 'miller', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'together', 'with', 'his', 'manager', 'paul', '', ',', 'he', 'decided', 'that', 'making', 'a', 'movie', 'would', 'be', 'good', 'for', 'his', 'career', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'joy', 'education', 'society', ',', '', ',', 'runs', 'it', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'also', 'describes', 'a', 'group', 'sculpture', 'in', 'the', 'sanctuary', 'of', '', 'at', '', 'donated', 'by', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'inc.', ',', 'a', 'provider', 'of', 'software', 'and', '', 'for', '', 'design', ',', 'verification', 'and', 'manufacturing', 'has', '', 'with', '', '', 'to', 'establish', 'one', 'of', 'its', 'five', 'regional', '', 'of', 'excellence', 'in', 'india', 'at', '', '', 'for', 'its', '', 'design', 'curriculum', '.', '', '', '', '', '', '', '']\n", "['', '2', '6', '2', '5', '(', 'county', 'of', 'cornwall', ')', '', 'royal', 'auxiliary', 'air', 'force', '(', '', ')', 'was', 'disbanded', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '3', '8', '', 'was', 'appointed', 'minister', 'to', 'the', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'arcus', '', '(', 'as', ')', ',', 'also', 'known', 'as', '', ',', 'arcus', '', ',', 'arcus', '', ',', '', 'arcus', ',', 'arcus', '', ',', 'or', 'arcus', '', ',', 'is', 'a', '', 'of', '', 'and', '', 'in', 'the', '', '', 'that', 'forms', 'a', 'white', ',', 'light', 'gray', ',', 'or', '', 'ring', '.']\n", "['', 'henry', 'julian', ',', 'better', 'known', 'by', 'his', 'stage', 'name', 'julian', '', ',', 'was', 'a', 'pioneering', '', 'performing', 'and', 'recording', 'artist', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'communists', 'continued', 'their', 'attack', '', 'from', '', '(', '', ')', 'toward', 'tiger', 'forest', '(', '', ',', '', ')', 'and', 'rao', '(', '', ')', 'river', 'regions', ',', '', 'local', 'bandits', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', '', 'success', 'as', 'part', 'of', 'the', '', 'music', 'scene', ',', 'a', 'new', 'version', 'was', 'released', 'in', 'march', '1', '9', '9', '1', 'that', 'was', 'shorter', 'and', 'with', 'new', 'lyrics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'of', 'the', 'first', 'changes', 'to', 'economic', 'policy', 'from', 'the', '', 'administration', ',', 'just', 'seven', 'days', 'after', '', 'had', 'taken', 'office', ',', 'was', 'to', 'remove', 'the', 'currency', 'controls', 'that', 'had', 'been', 'in', 'place', 'for', 'four', 'consecutive', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'that', 'of', '', ',', 'the', 'body', 'of', '', 'most', 'likely', 'still', '', 'at', 'old', '', ',', 'though', 'the', 'exact', 'spot', 'is', 'unknown', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'awarded', 'for', 'merits', 'in', 'the', 'fields', 'of', 'public', ',', 'economic', ',', 'cultural', ',', 'educational', ',', 'sports', 'and', 'humanitarian', 'activities', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'latest', 'book', ',', '``', 'wild', 'horse', 'country', \"''\", ',', '', 'the', 'culture', 'and', 'history', 'that', 'created', 'modern', 'wild', 'horse', 'management', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', '1', '9', '8', '2', 'master', 'of', '', 'graduate', 'of', 'the', 'episcopal', 'theological', 'seminary', 'of', 'the', 'southwest', 'in', 'austin', ',', 'texas', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'will', 'operate', 'out', 'of', 'portsmouth', ',', 'england', ',', 'to', '', ',', 'spain', 'and', '', ',', 'france', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'species', 'of', 'moth', 'in', 'the', 'family', 'geometridae', 'first', 'described', 'by', 'william', 'barnes', 'and', 'james', 'halliday', '', 'in', '1', '9', '1', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'between', '1', '9', '7', '9', 'and', '1', '9', '8', '8', ',', '', '', 'won', 'ten', 'consecutive', 'east', 'german', 'league', 'titles', ',', 'with', 'popular', 'allegations', 'of', 'sporting', '', 'helping', 'to', 'fuel', 'the', '', ',', 'and', 'clashes', 'between', 'both', 'sets', 'of', 'fans', 'occurred', '.', '', '', '', '', '', '', '', '']\n", "['', 'for', 'much', 'of', 'the', 'line', \"'s\", 'length', ',', 'its', 'formation', 'is', 'quite', '', 'and', 'includes', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'despite', 'press', 'reports', 'of', 'interest', 'from', 'arsenal', ',', 'and', 'the', 'offer', 'of', 'a', '', 'role', 'by', '', 'united', ',', 'robson', 'left', '', 'in', '1', '9', '6', '7', 'and', 'accepted', 'a', 'three-year', 'deal', 'with', 'canada', \"'s\", 'vancouver', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'late', '1', '9', '4', '2', ',', '', 'was', 'publicly', '', 'by', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'two', 'high', 'schools', 'in', '', 'and', '', 'and', 'six', 'primary', 'schools', '', ',', '', ',', '', '', ',', '', '', ',', '', 'and', '', ',', 'all', 'of', 'them', 'municipal', ',', 'form', 'the', 'educational', 'base', 'of', 'the', 'community', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'in', 'shock', 'of', 'what', 'comes', 'to', 'light', ',', '', 'plans', 'another', 'romantic', 'date', ',', 'which', 'ends', 'with', 'a', 'magical', 'dance', 'for', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'seeing', 'an', 'animal', 'controller', 'from', 'the', 'zoo', '', 'her', ',', 'she', 'spots', 'some', 'black', 'and', 'white', 'paint', 'nearby', 'and', '', 'herself', 'to', 'look', 'like', 'a', '', ',', '', 'the', 'animal', 'controller', 'off', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'in', 'the', '', 'number', 'at', 'least', 'two', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', 'bound', 'is', 'a', 'mathematical', 'limit', 'used', 'in', '', 'theory', 'for', '', '', 'during', 'data', 'transmission', 'or', 'communications', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'january', '2', '0', '1', '1', ',', '', 'released', '', ',', 'a', 'used', 'vehicle', 'index', 'that', '', 'the', 'used', 'car', 'market', 'in', 'the', 'same', 'way', '', 'did', 'for', 'new', 'cars', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '4', '8', ',', 'the', 'm', '2', '6', 'e', '2', 'version', 'was', 'developed', 'with', 'a', 'new', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'scylla', '', ',', 'commonly', 'known', 'as', 'the', 'orange', 'mud', 'crab', ',', 'is', 'a', 'commercially', 'important', 'species', 'of', 'mangrove', 'crab', 'in', 'the', 'genus', '``', 'scylla', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'before', 'and', 'after', 'that', 'time', '', ',', 'winners', 'have', 'been', 'announced', 'by', '``', 'billboard', \"''\", ',', 'both', 'in', 'the', 'press', 'and', 'as', 'part', 'of', 'their', '', 'issue', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'five', 'seconds', 'after', '', ',', 'the', 'left', 'engine', 'fire', 'alarm', '', 'in', 'the', 'cockpit', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '1', ',', 'penrith', 'changed', 'their', 'jersey', 'design', 'from', 'brown', 'and', 'white', 'to', 'the', 'now', 'famous', '', 'all', '', 'design', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'is', 'typically', 'done', 'with', 'a', '2', '4', '', 'urine', 'collection', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'ability', 'of', 'tie-', '1', 'to', 'eat', 'electricity', 'can', 'be', 'used', 'to', '', 'batteries', ',', 'but', 'its', 'efficiency', 'as', 'a', 'fuel', 'source', 'remains', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '4', ',', 'for', 'the', 'first', 'time', 'since', '1', '9', '8', '0', ',', 'de', '', 'started', 'the', 'season', 'without', 'a', 'formula', 'one', 'drive', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'created', 'in', 'january', '2', '0', '1', '3', 'by', 'the', 'merger', 'of', 'the', 'former', '``', '', '', 'du', 'grand', '', \"''\", 'with', '3', 'former', '``', '', 'de', 'communes', \"''\", 'and', '5', 'other', 'communes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '2', '0', '(', '', ')', 'rd', 'near', 'the', 'main', 'settlement', 'on', 'the', '', 'tip', 'of', '', 'island', 'at', 'north', 'arm', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'considered', 'a', 'cultural', 'district', 'because', 'of', 'its', 'close', '', 'to', 'higher', 'educational', 'campuses', 'and', 'art', 'destinations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'commune', 'in', 'the', '', 'of', '', 'in', 'the', '', 'region', 'of', 'southern', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', '', 'the', 'role', 'in', 'an', 'episode', 'of', '``', '', \"''\", 'on', 'television', ',', 'conducted', 'by', '', '', '(', '1', '9', '5', '9', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'if', 'transactions', 'are', 'always', 'carried', 'out', 'on-line', '(', 'e.g.', ',', '', ')', 'or', 'always', '', ',', 'this', 'step', 'can', 'be', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', 'july', '1', '9', '4', '6', ',', 'in', 'the', 'region', 'of', '', '(', '', ')', 'bridge', 'and', '', '(', '', ')', ',', 'the', 'surviving', 'bandits', 'headed', 'by', '', '', '(', '', ')', 'was', 'once', 'again', 'defeated', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'related', 'the', 'pivotal', 'meeting', ',', '``', 'he', 'asked', 'me', 'a', 'question', 'that', 'was', 'a', 'turning', 'point', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'dimensions', '6', 'to', '8', 'there', 'are', '3', 'exceptional', '', 'groups', ';', 'one', 'uniform', '', 'from', 'each', 'dimension', 'represents', 'the', 'roots', 'of', 'the', 'exceptional', 'lie', 'groups', 'en', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '1', 'receptor', ',', 'type', 'ii', '(', 'il-', '1', 'r', '2', ')', 'also', 'known', 'as', 'cd', '1', '2', '1', 'b', '(', 'cluster', 'of', 'differentiation', '1', '2', '1', 'b', ')', 'is', 'an', '', 'receptor', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'scored', 'his', 'first', 'and', 'second', 'goals', 'on', '1', '2', 'june', '2', '0', '1', '2', ',', 'in', 'a', 'world', 'cup', '', 'match', 'against', 'lebanon', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'book', 'is', 'widely', 'cited', 'as', 'a', 'reference', 'for', 'western', 'women', 'artists', 'and', 'has', 'a', '', 'that', 'it', 'is', '', 'towards', 'western', 'artists', 'because', 'of', 'the', 'constraints', 'imposed', 'on', 'the', 'selection', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'people', 'occupied', 'large', 'areas', 'inland', 'west', 'towards', '', ',', 'and', 'north', 'to', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'joined', 'tallon', 'and', 'the', 'pair', 'survived', 'to', 'the', 'close', 'of', 'play', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'approximately', '3', '3', '%', 'is', 'used', 'on', '', ',', '3', '1', '%', 'in', 'forestry', ',', '2', '9', '%', 'in', 'industrial', 'areas', ',', '4', '%', 'on', '', 'and', '', ',', 'and', '&', 'lt', ';', '2', '%', 'on', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', ',', 'the', 'boundary', '', 'with', 'it', 'for', 'another', 'to', 'beijing', 'workers', \"'\", 'stadium', ',', 'where', 'it', 'becomes', 'workers', \"'\", 'stadium', 'west', 'road', ',', 'with', 'workers', 'indoor', 'arena', 'on', 'the', 'east', 'side', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '(', '', 'is', 'an', 'archaic', 'rural', 'form', 'of', '', '.', ')', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'won', 'many', 'writing', 'awards', 'and', 'was', 'inducted', 'into', '1', '2', 'halls', 'of', 'fame', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'replaced', 'in', '2', '0', '1', '3', 'by', 'the', '1', '8', '7', '5', 'organ', 'by', 'hunter', 'originally', 'in', 'christ', 'church', ',', '', 'road', ',', 'then', 'queen', \"'s\", 'hall', 'methodist', 'church', ',', 'derby', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'his', 'friend', \"'s\", 'favorite', 'song', '-', '``', 'the', 'bullet', '', 'and', '', '!', '..', '``', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'council', 'is', 'governed', 'by', 'the', 'tribal', 'constitution', 'and', '', ',', 'which', 'were', 'originally', '', 'in', '1', '9', '3', '4', 'under', 'the', 'indian', '', 'act', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '', '', \"'\", 'bee', 'does', 'not', 'build', 'its', 'own', 'nests', 'but', 'uses', 'nests', 'of', '``', 'tetrapedia', \"''\", 'as', 'a', 'resource', 'for', 'its', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'told', 'john', ',', 'who', 'took', 'the', 'box', 'away', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'kim', '', ',', 'the', 'director', 'of', 'the', '', 'and', 'the', 'president', \"'s\", 'security', 'chief', ',', 'was', 'responsible', 'for', 'the', 'assassination', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'also', 'at', 'the', 'same', 'time', 'that', 'the', '', 'tubes', 'are', 'forming', ',', '', '(', 'the', 'development', 'of', 'the', '', 'system', ')', 'has', 'begun', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'and', 'walter', '', ',', 'then', 'editor', 'of', '``', 'the', 'philadelphia', '', \"''\", ',', 'met', 'in', '1', '9', '5', '0', 'at', 'a', 'party', 'in', 'florida', 'and', 'the', 'two', 'were', 'married', 'the', 'following', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', '', 'a', 'priest', 'of', 'the', 'diocese', 'of', '', 'on', '2', '5', 'june', '1', '9', '6', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'of', 'six', 'children', ',', 'her', 'mother', 'died', 'in', '', 'when', '', '', 'was', 'five', ';', 'soon', 'after', 'her', 'father', 'became', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'spirit', 'of', 'the', 'house', 'threatens', 'them', 'again', ',', '', 'loses', 'her', '', 'and', '', 'the', 'house', ',', 'demanding', 'that', 'it', 'treat', 'them', 'with', 'respect', 'during', 'their', 'stay', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'both', 'were', 'described', 'as', 'being', '', 'drug', '', 'motivated', 'by', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'is', 'scheduled', 'to', 'perform', 'on', 'the', 'grand', '', 'opry', 'live', 'from', 'the', '', 'on', 'november', '3', '0', ',', '2', '0', '1', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', 'born', '7', 'june', '1', '9', '7', '5', ')', 'is', 'a', 'serbian', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'opposed', 'the', 'expansion', 'of', 'the', 'empire', 'on', 'the', 'balkan', '(', 'see', 'bosnian', 'crisis', 'in', '1', '9', '0', '8', ')', ',', 'because', '``', 'the', 'dual', 'monarchy', 'already', 'had', 'too', 'many', '', \"''\", ',', 'which', 'would', 'further', 'threaten', 'the', 'integrity', 'of', 'the', 'dual', 'monarchy', '.', '', '', '', '', '', '']\n", "['', 'the', 'remaining', 'form', 'factor', 'formula_', '1', '4', 'would', ',', 'if', '', 'zero', ',', 'be', 'the', '', 'moment', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'between', '1', '9', '9', '0', 'and', '1', '9', '9', '5', 'deportations', 'had', 'increased', 'to', 'about', 'an', 'average', 'of', '4', '0', ',', '0', '0', '0', 'a', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', '', '', '', 'one', 'could', 'ask', 'him', 'for', '', 'about', 'some', 'point', ',', 'in', 'any', 'of', 'the', '', 'from', 'any', 'of', 'the', 'numerous', '', ',', 'and', 'he', 'always', 'had', 'an', 'answer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'new', 'zealand', 'it', 'has', 'been', 'found', 'as', 'far', 'south', 'as', 'jackson', 'bay', 'on', 'the', 'west', 'coast', 'of', 'south', 'island', 'but', 'it', 'is', 'only', 'really', 'common', 'around', 'the', 'north', 'island', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'september', '2', '0', '2', '0', ',', 'miller', 'returned', 'to', 'the', 'role', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', '', 'having', 'a', 'role', 'in', 'various', 'cellular', 'processes', 'like', '', 'transport', 'and', '', 'regulation', ',', 'it', 'is', 'expected', '', '6', '6', 'is', 'modified', 'by', 'a', '', 'protein', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mae', '', '(', ')', 'is', 'a', '``', '', \"''\", '(', '', ')', 'of', '', 'chiang', 'rai', 'district', ',', 'in', 'chiang', 'rai', 'province', ',', 'thailand', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'latin', '', 'such', 'as', '``', '', '', '', \"''\", ',', 'written', 'by', '', ',', 'archbishop', 'of', 'milan', ',', 'were', '', 'statements', 'of', 'the', 'theological', 'doctrine', 'of', 'the', 'incarnation', 'in', 'opposition', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'billy', '', 'of', '``', 'taste', 'of', 'country', \"''\", 'gave', 'the', 'song', 'three', 'and', 'a', 'half', 'stars', 'out', 'of', 'five', ',', 'writing', 'that', '``', 'the', '', 'songwriter', 'is', 'a', 'natural', 'storyteller', ',', 'and', 'his', 'lyrics', '', 'to', 'life', 'with', 'each', 'verse', 'and', 'chorus', '.', \"''\", '', '', '', '', '', '']\n", "['', 'bombing', 'raids', 'were', 'made', 'on', '', 'and', '', 'airfields', 'and', 'in', '', 'with', 'german', 'fighters', ',', 'ten', 'aircraft', 'were', 'claimed', 'shot', 'down', ',', 'for', 'a', 'loss', 'of', '', 'casualties', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ocean', 'grove', 'was', 'featured', 'in', 'the', '2', '0', '0', '6', 'film', '``', 'kenny', \"''\", ',', 'while', 'the', 'bridge', 'between', 'ocean', 'grove', 'and', '', 'heads', 'featured', 'in', 'the', 'popular', 'abc', 'television', 'show', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'construction', 'of', 'the', 'university', \"'s\", 'current', 'premises', ',', 'the', '', 'del', '', 'campus', '(', 'spanish', ':', '``', 'campus', 'del', '', 'del', '', \"''\", ')', ',', 'started', 'in', '1', '9', '8', '7', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'millions', 'of', 'pakistanis', 'emigrated', 'to', 'various', 'countries', 'during', 'the', '1', '9', '7', '0', 's', 'and', '1', '9', '8', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '5', '5', 'the', 'name', 'was', 'changed', 'again', 'to', 'thompson', 'academy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'film', 'received', 'limited', '', 'release', 'in', 'the', 'us', 'and', 'canada', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thames', 'television', 'and', 'london', 'weekend', 'television', 'took', 'over', 'the', 'london', 'franchise', 'area', 'in', '1', '9', '6', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'now', 'one', 'of', 'the', '', 'men', 'in', 'england', ',', 'he', 'embarked', 'on', 'an', 'ambitious', 'project', 'to', '', 'cassiobury', 'house', 'in', 'the', 'style', 'of', 'the', '', 'state', 'rooms', 'of', 'windsor', 'castle', ',', 'hoping', 'to', 'attract', 'a', 'visit', 'from', 'the', 'king', 'to', 'cassiobury', '.', '', '', '', '', '', '', '', '']\n", "['', 'miss', 'turner', '', 'the', 'role', 'on', 'television', 'in', 'a', 'performance', 'on', 'nbc', 'opera', 'theatre', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'scheme', 'was', 'eventually', 'exposed', ',', 'and', 'all', 'of', 'those', 'involved', 'were', 'prosecuted', ',', 'including', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'tunnel', 'opened', 'to', '', '', 'traffic', 'at', '1', '1', 'p.m.', 'on', 'february', '3', 'and', '', 'traffic', 'at', '1', '2', ':', '1', '5', 'a.m.', 'on', 'february', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'restored', 'the', '``', '', \"''\", ',', 'a', 'large', '', 'at', 'the', 'salvador', 'church', 'in', '', 'which', 'was', 'completed', 'in', '1', '7', '0', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'two', 'brief', 'plane', 'shots', 'used', 'in', 'episode', '4', 'also', 'survive', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'socialism', 'the', 'city', \"'s\", 'economy', 'greatly', 'expanded', 'dominated', 'by', 'heavy', 'industry', '-', 'it', 'still', 'produces', 'large', 'amount', 'of', 'lead', 'and', '', ',', '', ',', '', ',', 'motor', 'trucks', ',', 'chemicals', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'data', 'sets', 'are', 'not', '', 'streams', 'of', '', ',', 'but', 'rather', 'are', 'organized', 'in', 'various', 'logical', 'record', 'and', 'block', 'structures', 'determined', 'by', 'the', 'codice_', '1', '(', 'data', 'set', 'organization', ')', ',', 'codice_', '2', '(', 'record', 'format', ')', ',', 'and', 'other', '', '.', '', '', '', '', '', '', '', '']\n", "['', 'in', 'this', 'example', ',', 'the', '', 'power', 'function', 'can', 'be', 'said', 'to', 'have', 'been', '', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', 'january', '2', '0', '1', '3', 'the', 'former', 'municipality', 'of', '', 'merged', 'into', 'the', 'municipality', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'time', 'of', 'the', 'capitol', 'theatre', 'shows', ',', 'the', 'new', 'riders', 'of', 'the', 'purple', '', 'were', 'regularly', 'performing', 'as', 'the', 'opening', 'act', 'for', 'the', 'grateful', 'dead', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'duncan', 'made', 'his', 'stage', 'debut', 'in', '1', '8', '9', '3', 'in', 'san', 'francisco', ',', 'and', 'toured', 'for', 'seven', 'years', 'before', 'appearing', 'in', 'new', 'york', 'in', '1', '9', '0', '0', ',', 'then', 'continuing', 'in', 'roles', 'in', 'new', 'york', 'and', 'london', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'development', 'of', 'the', 'main', '', 'systems', 'represented', 'part', 'of', 'the', 'advance', 'in', 'the', 'protection', 'of', 'public', 'health', 'in', 'sydney', 'by', '', 'reducing', 'the', 'discharge', 'of', 'sewage', 'from', 'port', 'jackson', 'via', 'the', 'city', \"'s\", 'early', '', 'and', '', 'to', 'the', 'tasman', 'sea', '.', '', '', '', '', '', '', '']\n", "['', 'he', 'led', 'the', 'brigade', ',', 'now', 'referred', 'to', 'as', 'wofford', \"'s\", 'brigade', ',', 'at', '', 'and', '', ',', 'where', 'he', 'followed', 'william', '', \"'s\", 'mississippi', 'brigade', 'in', 'the', 'assault', 'through', 'the', '', 'orchard', 'late', 'in', 'the', '', 'of', 'july', '2', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'north', 'asia', 'consists', 'of', 'the', 'russian', 'regions', 'east', 'of', 'the', 'ural', 'mountains', ':', 'ural', ',', 'siberia', 'and', 'the', 'russian', 'far', 'east', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'the', '5', '1', 'day', 'war', ':', '', 'and', 'resistance', 'in', '', \"''\", 'was', 'awarded', 'a', 'palestine', 'book', 'award', 'that', 'year', 'by', 'the', '``', 'middle', 'east', 'monitor', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'out', 'of', '8', '0', 'troops', 'at', '', '', ',', '1', '0', 'of', 'them', ',', 'along', 'with', 'their', 'commander', 'lt.', 'van', '', 'did', 'not', 'reached', '', '', 'at', '0', '2', ':', '0', '0', 'the', 'next', 'day', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'situated', 'south-west', 'of', 'boston', ',', 'north', 'of', '', 'and', 'north-west', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'because', 'of', 'the', '', 'of', '', 'service', 'there', 'were', 'always', 'exceptions', 'to', 'the', 'standards', 'set', 'by', 'the', 'raf', 'and', 'that', '', 'were', 'not', 'necessarily', 'met', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'trans', '', 'in', '9', '9', 'objects', 'is', 'a', 'project', 'that', 'takes', 'inspiration', 'from', '', \"'s\", 'history', 'of', 'america', 'in', '1', '0', '1', 'objects', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'way', 'of', 'working', 'taught', 'me', 'to', 'think', '', 'rather', 'than', 'to', 'think', 'about', 'sculpture', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'path', 'can', 'arise', 'from', 'different', '', ',', 'including', '', 'or', 'metal', '', 'migration', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'proceedings', 'of', 'the', 'royal', 'commission', 'were', 'kept', '', ',', 'but', 'when', 'it', 'was', 'published', 'on', '1', '1', 'june', '1', '9', '6', '9', ',', 'the', 'report', 'was', 'found', 'to', 'include', 'a', '', 'of', '', 'by', 'senior', 'as', 'long', 'as', 'the', 'main', 'report', 'itself', '.', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '7', '9', ',', 'at', 'the', 'university', 'of', 'pennsylvania', ',', 'he', 'was', 'a', '', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'served', 'as', 'an', 'advisor', 'to', 'the', 'u.s.', 'delegation', 'to', 'the', 'united', 'nations', 'and', 'as', 'a', 'consultant', 'to', 'the', 'u.s.', 'air', 'force', ',', 'which', 'awarded', 'him', 'the', 'exceptional', 'service', 'award', 'in', '1', '9', '5', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'i', 'remember', 'that', \"''\", 'is', 'the', '6', '1', 'st', 'episode', 'of', 'the', 'abc', 'television', 'series', ',', '``', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'following', 'day', ',', 'a', 'standing', 'orders', 'meeting', 'accepted', 'a', 'māori', 'party', 'submission', '', 'the', 'elimination', 'of', '', 'from', 'parliament', \"'s\", 'business', 'attire', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'process', 'they', 'created', 'a', 'gap', 'for', 'desert', 'mounted', 'corps', 'to', 'advance', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', '', 'include', 'the', 'calling', 'of', 'regional', 'representatives', ',', 'a', 'uniform', 'annual', 'report', 'from', 'each', 'ward', 'starting', 'in', '1', '9', '6', '7', 'and', 'further', '', 'and', '', 'of', '', 'in', '1', '9', '7', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'bird', 'became', 'commonly', 'known', 'as', '', 'bird', 'or', '', 'bird', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'supports', '', 'rights', ',', 'lgbt', 'rights', ',', 'immigration', ',', 'raising', 'taxes', 'on', 'the', 'wealthy', ',', 'and', 'gun', 'restrictions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'maintaining', 'a', 'professional', 'opera', 'career', ',', 'she', 'has', 'been', 'teaching', 'at', '', '', 'university', 'since', 'july', '2', '0', '0', '2', 'and', 'is', 'currently', 'coordinator', 'of', 'the', 'opera', 'program', 'there', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'we', 'wrote', 'to', 'all', 'of', 'them', ',', '', 'and', 'individually', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'\", 'upcoming', 'trial', 'was', 'first', 'suspended', 'and', 'then', 'the', 'case', 'was', 'closed', 'and', 'she', 'was', 'set', 'free', 'having', 'been', '1', '7', 'months', 'in', 'prison', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'others', ',', 'then', ',', 'have', '', 'that', 'hart', 'was', 'a', 'trans', 'pioneer', ',', 'who', 'lived', 'after', 'his', 'transition', 'exclusively', 'as', 'a', 'man', ',', 'just', 'as', 'modern', 'transgender', 'people', 'do', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'respect', 'for', '``', 'san', 'giuseppe', \"''\", '(', 'st.', 'joseph', ')', 'is', 'reflected', 'in', 'the', '', 'of', 'the', '', 'of', 'st.', 'joseph', ',', 'primarily', 'in', 'new', 'orleans', 'and', 'buffalo', ',', 'every', 'march', '1', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'the', 'union', 'having', 'organized', 'every', 'single', 'plant', 'in', 'the', 'glass', '', 'industry', ',', 'minton', 'won', 'the', 'membership', \"'s\", 'approval', 'to', 're-establish', 'the', 'union', '', 'for', 'the', 'first', 'time', 'since', '1', '9', '2', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'voice', 'is', 'the', 'only', 'one', 'dubbed', 'in', 'the', 'film', ',', 'as', '', 'himself', 'only', '', 'a', 'little', 'english', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'trade', 'relationship', 'lasted', 'well', 'into', 'the', '1', '8', '7', '0', 's', ',', 'and', '', 'even', 'when', 'comanches', 'used', 'weapons', 'and', 'steel', 'provided', 'by', '', 'to', 'fight', 'enemies', 'living', 'in', 'texas', 'and', 'northern', 'mexico', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'opening', 'as', 'far', 'as', '', 'in', '1', '8', '7', '1', ',', 'the', 'contractor', 'walked', 'away', 'from', 'the', 'job', ',', 'leaving', 'the', 'partially', 'completed', 'line', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'regarded', '', 'in', 'her', 'later', 'days', 'as', 'a', 'model', 'christian', 'and', 'thousands', 'of', '', 'subjects', 'were', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'connected', 'by', 'a', '', 'to', 'its', 'sister', 'town', 'of', 'flores', '(', 'the', 'capital', 'of', 'the', 'petén', 'department', ')', 'and', 'the', 'two', '(', 'together', 'with', 'san', '', ')', 'are', 'often', 'referred', 'to', 'as', 'just', 'flores', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'a', 'start', 'in', '', ',', 'his', 'finger', 'split', 'open', 'after', 'one', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'krissy', 'krissy', ',', 'styled', 'krissy', 'krissy', '(', 'born', '', 'rivera', ';', 'september', '2', '4', ',', '1', '9', '8', '8', 'in', 'california', ')', 'is', 'a', 'pop', 'singer', 'based', 'in', '', ',', 'new', 'york', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'play', 'after', 'bollinger', 'connected', 'on', 'a', '1', '4', '', 'pass', 'to', 'bobby', '', ',', '', 'defensive', 'end', 'josh', 'mallard', 'forced', 'a', '', 'bell', '', 'that', 'was', 'quickly', 'recovered', 'by', 'bollinger', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '7', ',', 'the', 'last', 'chapter', 'of', '``', 'the', 'man', 'from', 'the', 'train', \"''\", 'by', 'bill', 'james', 'and', 'his', 'daughter', 'rachel', 'mccarthy', 'james', ',', 'briefly', 'discusses', 'the', 'murders', 'at', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'due', 'to', 'the', 'controversy', ',', 'he', 'was', 'released', 'from', 'the', '', 'giants', 'on', 'september', '1', ',', '2', '0', '0', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'branch', 'of', 'the', 'talpur', '', 'were', 'defeated', 'by', 'the', 'british', 'at', 'the', 'battle', 'of', '', 'on', '1', '7', 'february', '1', '8', '4', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'site', 'is', 'located', 'on', 'the', '', 'river', ',', 'and', 'is', 'dominated', 'by', 'the', '1', '4', '0', '', '(', '4', '3', 'm', ')', 'remains', 'of', 'an', 'extinct', 'volcano', 'named', 'mount', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'brand', 'also', '', 'the', 'technique', 'of', 'serial', 'casting', 'for', 'the', 'finger', '', '(', '', '', ')', 'that', 'often', 'result', 'from', 'hansen', \"'s\", 'disease', ',', 'a', 'technique', 'that', 'is', 'now', 'widely', 'used', 'by', 'hand', '', 'to', 'treat', '', 'from', 'many', 'different', 'hand', 'injuries', 'and', 'conditions', '.', '', '', '', '', '']\n", "['', 'soon', ',', '', 'wayne', 'gretzky', '', 'hockey', 'center', \"'s\", 'began', 'to', 'spring', 'up', 'in', 'california', ',', 'with', '', 'wearing', 'wayne', 'gretzky', \"'s\", '', 'wheels', '', 'hockey', 'equipment', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'new', 'york', 'giants', 'season', 'was', 'the', 'franchise', \"'s\", '9', '2', 'nd', 'season', 'in', 'the', 'national', 'football', 'league', ',', 'their', 'seventh', 'season', 'playing', 'their', 'home', 'games', 'at', '', 'stadium', 'in', 'east', '', ',', 'new', 'jersey', ',', 'and', 'the', 'first', 'under', 'head', 'coach', 'ben', '', '.', '', '', '', '', '']\n", "['', 'it', 'is', 'not', 'taken', 'seriously', 'by', 'professional', 'historians', ',', 'as', 'the', 'evidence', 'presented', 'is', 'rather', '', 'and', 'no', 'archaeological', 'finds', 'of', 'any', 'significance', 'have', 'been', 'made', 'in', 'the', 'area', 'since', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'beginning', 'in', 'the', '1', '9', '2', '0', 's', ',', 'the', 'city', 'planned', 'to', 'develop', 'a', 'large', 'ship', 'and', 'rail', 'terminal', 'along', 'jamaica', 'bay', ',', 'particularly', 'along', 'the', '', 'basin', 'in', 'nearby', '', ',', 'to', 'relieve', 'port', 'operations', 'in', 'the', 'greater', 'new', 'york', 'harbor', '.', '', '', '', '', '', '']\n", "['', 'water', 'is', 'much', 'more', 'dense', 'and', '', 'compared', 'to', 'air', ',', 'causing', 'hunting', 'techniques', 'adapted', 'in', 'water', 'to', 'be', 'less', 'successful', 'when', 'applied', 'on', 'land', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', '', 'fischer', ',', 'the', 'series', 'used', 'an', 'unusual', 'casting', 'process', 'that', 'did', 'not', '', 'a', 'script', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'described', 'by', '', 'li', ',', '', 'zhen', 'and', '', '', 'in', '2', '0', '1', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'prinsen', 'played', 'the', 'role', 'of', 'jan', 'j.', 'de', 'bom', ',', 'the', 'owner', 'of', 'a', 'toy', 'shop', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'harry', 'also', '', 'that', 'lack', 'of', 'practical', 'experience', 'makes', 'them', 'more', 'vulnerable', 'to', 'lord', '', \"'s\", 'forces', ',', 'though', 'the', 'ministry', '', 'refuses', 'to', 'accept', 'that', 'lord', '', 'has', 'returned', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'identified', 'the', '', 'to', 'the', 'responding', 'officers', 'as', 'three', 'men', 'who', 'drove', 'past', 'the', 'scene', 'in', 'a', 'white', '', 'truck', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'two', 'weeks', 'after', 'her', 'march', '1', '9', '9', '5', '``', 'guardian', \"''\", 'column', 'about', '', '', 'controversy', ',', 'she', 'again', 'recalled', 'her', 'own', 'experience', ',', 'which', 'took', 'place', 'in', 'january', '1', '9', '5', '8', 'when', 'she', 'was', '1', '9', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'madsen', 'was', 'influenced', 'by', '', 'melville', \"'s\", '``', 'army', 'of', 'shadows', \"''\", '(', '1', '9', '6', '9', ')', ',', 'about', 'the', 'french', 'resistance', ',', 'especially', '``', 'the', 'way', 'it', 'told', 'its', 'story', 'through', 'only', '', 'and', 'dialogue', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'is', 'known', 'for', 'her', 'work', 'in', '', 'and', 'the', 'use', 'of', 'satellite', '', 'for', '', 'and', '', 'studies', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'densely', 'populated', 'community', 'of', 'small', '', 'was', 'developed', 'after', 'world', 'war', 'i', 'as', 'a', 'summer', 'colony', ',', 'largely', 'for', 'nearby', 'providence', \"'s\", 'middle-class', 'irish', ',', 'greek', 'and', 'italian', 'communities', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hill', 'won', 'over', '1', '0', '0', '', 'in', 'his', 'motorcycle', 'career', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'writes', 'of', 'how', 'she', 'planned', 'to', '', 'without', 'supplementary', 'oxygen', 'partly', 'as', 'a', 'kick', 'start', 'to', 'open', 'the', 'european', 'market', 'to', '``', 'mountain', '', \"''\", ',', 'scott', 'fischer', \"'s\", 'mountain', '', 'operation', ',', 'with', 'her', 'as', 'the', 'company', \"'s\", 'representative', '.', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '7', '2', '6', 'it', 'was', 'purchased', 'by', 'four', '', 'from', 'the', 'town', ',', 'and', 'circa', '1', '8', '7', '0', ',', 'most', 'of', 'it', 'covered', 'with', 'high', 'quality', 'housing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'video', \"'s\", 'from', '', ',', '', 'and', 'youtube', 'can', 'now', 'be', 'seen', 'at', 'their', 'corresponding', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'fish', 'and', 'wildlife', 'service', '(', '', ')', 'discovered', 'that', 'the', 'rma', 'was', 'home', 'more', 'than', '3', '3', '0', 'species', 'of', 'wildlife', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '8', '0', '7', 'households', '(', '1', '4', '.', '7', '%', ')', 'were', 'one', 'person', 'and', '3', '4', '6', '(', '6', '.', '3', '%', ')', 'had', 'someone', 'living', 'alone', 'who', 'was', '6', '5', 'or', 'older', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'independently', '', 'chart', 'includes', 'sales', 'of', 'albums', 'across', 'digital', ',', 'cd', 'and', 'vinyl', 'formats', ';', 'singles', ',', 'both', 'downloaded', 'and', 'physical', ';', 'and', 'streams', 'across', 'the', 'calendar', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '3', '0', ',', 'hogan', 'presided', 'over', 'a', 'meeting', 'to', 'found', 'an', 'old', '', \"'\", 'association', 'of', 'st.', 'albert', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'alonso', 'and', 'button', ',', 'who', 'were', 'in', 'fifth', 'and', 'eighth', 'respectively', ',', 'fell', 'to', 'ninth', 'and', 'eleventh', ',', 'while', 'the', 'drivers', 'on', 'the', 'full', 'wet', 'tyres', 'began', '', 'for', 'fresh', 'wet', 'tyres', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'i', 'mean', 'no', '', 'to', 'whitmire', ',', 'but', 'with', 'steele', 'present', ',', 'actively', 'engaged', 'with', 'everyone', '', 'to', 'him', 'and', 'steele', 'doing', 'most', 'of', 'the', 'talking', 'and', 'directing', ',', 'there', 'did', 'not', 'appear', 'to', 'be', 'any', 'question', 'of', 'who', 'was', 'in', 'charge', '.', '', '', '', '', '', '', '']\n", "['', 'the', 'benedictine', 'history', 'of', '', 'is', 'thought', 'to', 'have', 'begun', 'in', 'about', '7', '5', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'at', '1', '2', '3', '6', '', 'road', ',', 'glasgow', ',', 'on', 'the', 'corner', 'of', '', 'street', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'all', 'pupils', 'in', 'this', 'key', 'stage', 'must', 'follow', 'a', 'programme', 'of', 'education', 'in', 'these', 'areas', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'described', 'by', '', '', '', '', 'in', '1', '9', '3', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'if', 'i', 'was', ',', 'i', 'would', 'have', '', 'with', 'the', 'democrats', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '1', ')', ',', '2', '0', '1', '6', '(', '5', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bionicle', '(', 'also', 'known', 'as', 'bionicle', ':', 'the', 'game', ')', 'is', 'an', '', 'video', 'game', 'released', 'in', '2', '0', '0', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'july', ',', 'though', ',', 'his', 'entire', 'hand', 'was', 'becoming', '', 'and', 'he', 'was', 'unable', 'to', 'complete', 'some', 'games', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'the', 'second', 'chorus', 'starts', ',', 'rihanna', ',', 'wearing', 'a', 'bullet', '', 'and', 'a', '', 'similar', 'in', 'appearance', 'to', 'the', 'ears', 'of', 'mickey', 'mouse', ',', 'stands', 'on', 'a', 'pink', 'army', 'tank', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'lake', 'of', '', 'see', 'lies', 'immediately', 'southwest', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'commune', 'covers', 'an', 'area', 'of', '5', '0', '4', 'square', 'kilometers', 'and', 'includes', '9', 'villages', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '7', '2', 'robert', '', 'purchased', 'the', '', '', 'from', 'the', '', 'estate', 'and', 'spent', 'twenty', 'years', '', 'it', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '(', 'derived', 'from', 'the', 'word', '``', 'quick', 'understanding', 'of', 'block', '', \"''\", ')', 'is', 'a', '', '', 'video', 'game', 'developed', 'and', 'published', 'by', '', 'games', ',', 'with', 'help', 'from', 'indie', 'fund', ',', 'a', 'group', 'of', 'independent', 'game', 'developers', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'on', 'the', 'right', '', 'most', 'of', 'the', 'conventional', 'methods', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'most', 'of', 'the', 'band', 'is', 'back', 'including', 'miss', 'guy', ',', '', ',', 'eddie', 'and', 'adam', 'with', 'the', 'addition', 'of', '', 'on', 'guitar', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'located', 'in', 'southern', '', ',', 'was', 'historically', 'considered', 'a', 'part', 'of', 'the', '', 'islands', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '0', ',', '``', 'minor', 'move', \"''\", 'was', 'released', 'on', 'cd', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'evening', '``', '', \"''\", ',', 'flying', 'the', 'finnish', 'flag', 'under', 'the', 'command', 'of', 'segersven', ',', 'arrived', 'in', '', ',', 'where', 'she', 'was', '', 'by', 'a', 'group', 'of', '', 'german', 'officers', ',', 'including', 'prince', 'henry', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '', '(', ';', 'born', 'july', '2', '7', ',', '1', '9', '8', '7', ')', 'is', 'an', 'american', 'professional', 'baseball', 'pitcher', 'for', 'the', 'miami', 'marlins', 'organization', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'notable', 'features', 'of', 'the', 'setting', 'include', '', 'differing', 'from', '', \"'s\", ',', 'as', 'seen', 'in', 'the', 'episode', ',', '``', 'stranger', 'than', 'fan', 'fiction', \"''\", ',', 'and', 'an', 'elevated', 'train', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'ayam', ',', 'mi', 'ayam', 'or', '', 'ayam', '(', 'indonesian', 'for', '', '', \"'\", ',', 'literally', '', '', ')', 'is', 'a', 'common', 'indonesian', 'dish', 'of', '', 'yellow', 'wheat', '', 'topped', 'with', '', '', 'meat', '(', '``', 'ayam', \"''\", ')', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', '2', '0', '1', '8', '', ',', 'the', 'leading', 'economy', 'is', 'norway', ',', 'with', '6', '.', '0', '8', ',', 'followed', 'by', 'iceland', '(', '6', '.', '0', '7', ')', 'and', 'luxembourg', '(', 'also', '6', '.', '0', '7', ')', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'she', 'later', '', 'out', 'the', 'stables', ',', '', '', 'if', 'she', 'can', 'remove', 'the', 'collar', ',', 'a', '', 'slave', 'warns', 'her', 'through', 'a', '', 'in', 'a', 'wall', 'that', 'she', 'should', \"n't\", '', 'fighting', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', ',', 'also', 'romanized', 'as', '', ';', 'also', 'known', 'as', '', ')', 'is', 'a', 'village', 'in', '', 'rural', 'district', ',', 'in', 'the', 'central', 'district', 'of', '', '', '', 'county', ',', '', 'province', ',', 'iran', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'book', \"'s\", '', '', 'earl', 'became', 'the', 'namesake', 'of', '', '', \"'s\", '', '(', '', '', '', ')', 'in', '``', 'the', '', 'heart', \"''\", 'published', 'in', '1', '9', '5', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'philipps', \"'\", 'subsequent', 'reporting', 'led', 'to', 'state', 'and', 'federal', 'investigation', 'of', 'the', 'wild', 'horse', 'program', 'and', 'its', 'largest', 'horse', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', ')', 'is', 'a', 'papal', '', '', 'by', 'pope', 'eugene', 'iv', 'in', 'florence', 'on', 'january', '1', '3', ',', '1', '4', '3', '5', ',', 'which', '', 'the', '', 'of', 'local', 'natives', 'in', 'the', '', 'islands', 'who', 'had', 'converted', 'or', 'were', 'converting', 'to', 'christianity', '.', '', '', '', '', '']\n", "['', 'an', 'article', 'had', 'been', 'published', 'by', '``', 'the', '', \"''\", 'describing', 'the', 'men', 'as', 'drinking', 'heavily', 'during', 'a', 'socialist', 'conference', 'in', 'italy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'increases', 'the', 'strength', 'of', 'hydrogen', '', 'and', '', 'the', 'transition', 'state', 'energy', ',', 'thus', '', 'the', 'reaction', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'a', 'william', 'richard', '', 'and', 'catherine', '', '', 'at', 'library', 'and', 'archives', 'canada', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'aged', '8', '6', ',', 'she', 'died', 'there', 'on', '2', '6', 'september', '1', '9', '9', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'formula', 'of', 'engine', '', 'took', 'over', 'the', 'series', ',', '', 'any', 'previous', 'engine', 'that', 'did', 'not', 'fit', 'into', 'the', '3', '.', '5', 'l', 'category', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'development', 'was', 'completed', 'in', '1', '9', '8', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'this', 'town', 'there', 'is', '1', 'additional', '', 'of', 'highway', 'a', '3', '0', ',', 'leading', 'to', 'the', 'a', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mount', '', 'is', 'the', 'peak', 'at', '3', '9', '1', '6', 'meters', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'top', '', 'for', 'religious', '', 'were', 'catholic', '(', '3', '2', '.', '6', '%', ')', ',', 'islam', '(', '1', '1', '.', '4', '%', ')', ',', 'no', 'religion', '(', '9', '.', '9', '%', ')', 'and', 'buddhism', '9', '.', '6', '%', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'means', '``', 'little', 'dark', 'one', \"''\", 'or', '``', 'little', '', 'one', \"''\", ',', 'produced', 'by', '', 'a', '', '', 'to', '``', '', \"''\", '(', '``', 'black', \"''\", ',', '``', 'dark', \"''\", ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'attended', '', 'college', ',', 'sagamu', 'and', 'completed', 'his', 'primary', 'education', 'with', 'the', '', 'in', 'lagos', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'achenes', 'are', '', 'through', 'animal', 'vectors', 'and', 'through', '', '(', '', 'through', 'wind', ',', 'water', ',', 'or', 'gravity', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hoffman', \"'s\", 'reduced', '', 'began', 'to', 'take', 'its', 'toll', 'on', 'the', 'prisoners', ',', 'as', 'they', 'were', 'reduced', 'to', 'eating', 'rats', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '4', ',', 'he', 'was', 'the', 'runner-up', 'on', 'the', 'sixth', 'season', 'of', '``', 'the', 'x', 'factor', 'australia', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'park', 'was', 'designed', 'in', 'a', 'national', 'romantic', 'style', ',', 'partly', 'by', '', '', 'who', 'also', 'designed', '', 'in', 'central', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'town', 'and', 'commune', 'in', '', 'province', ',', 'algeria', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '7', ',', 'the', 'fourteenth', 'conference', 'was', 'held', 'at', '', 'long', 'beach', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'received', 'the', 'man', 'of', 'the', 'match', 'award', 'for', 'this', 'effort', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'school', 'also', 'has', 'sculptures', 'by', 'carl', '', 'and', 'carl', '', 'and', '', 'by', '', '', 'and', 'prince', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'of', '', 'signed', 'on', '2', '6', 'september', '1', '6', '2', '9', '(', '1', '6', 'september', '', '.', ')', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'temple', 'was', 'heavily', 'damaged', 'by', 'the', '1', '9', '3', '5', '', 'earthquake', ',', 'but', 'was', '', 'repaired', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'knights', 'columbus', 'museum', '', ':', '', '2', '0', '1', '0', '', 'visited', 'on', '0', '1', '/', '0', '7', '/', '2', '0', '1', '4', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'snow', '', 'and', 'rainfall', 'moves', 'over', 'and', 'through', 'the', 'ground', ',', 'the', 'water', 'picks', 'up', '', 'applied', '', 'and', 'deposits', 'them', 'in', 'to', 'larger', 'bodies', 'of', 'water', ',', 'rivers', ',', '', ',', 'or', '', 'in', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'game', 'features', 'an', '', 'structure', 'that', 'presents', 'the', 'player', 'with', 'multiple', 'ways', 'to', 'progress', 'through', 'the', 'game', ',', 'all', 'at', 'the', 'player', \"'s\", 'own', 'pace', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'result', 'was', 'a', 'victory', 'for', 'james', '', '', 'of', 'the', 'republican', 'party', ',', 'defeating', 'opposition', 'party', 'candidate', 'edward', 'james', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', '', 'to', 'see', 'sharon', 'engaged', 'to', 'tony', 'and', '', 'trying', 'to', 'spirit', 'her', 'away', 'for', 'a', '``', 'last', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'establishment', 'of', 'a', 'memorial', 'in', '', '', \"'s\", 'hometown', 'was', 'suggested', 'by', '', 'grass', ',', '', 'prize', '', 'for', 'literature', ',', 'who', 'had', 'maintained', 'political', 'ties', 'to', 'him', 'since', 'the', '1', '9', '6', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'working', 'in', 'radio', 'in', 'the', '1', '9', '8', '0', 's', 'and', '1', '9', '9', '0', 's', ',', 'she', 'also', 'performed', 'at', 'many', 'comedy', 'clubs', 'around', 'new', 'york', 'city', ',', 'chicago', ',', 'and', 'los', 'angeles', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'a', '', 'of', 'thunder', ',', 'the', 'ghost', ',', 'the', 'tomb', ',', 'and', 'don', 'juan', '', ',', 'leaving', 'only', '', ',', 'who', 'runs', 'away', 'in', 'terror', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'most', 'places', 'track', 'and', 'bridges', 'have', 'been', 'removed', ',', 'though', 'evidence', 'of', 'the', 'bridge', '', 'and', 'ballast', 'remain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', '1', '3', 'th', 'national', 'film', 'awards', ',', 'it', 'won', 'the', 'award', 'for', 'certificate', 'of', 'merit', 'for', 'the', 'third', 'best', 'feature', 'film', 'and', 'certificate', 'of', 'merit', 'for', 'the', 'best', 'story', 'writer', 'was', 'awarded', 'posthumously', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'music', 'video', 'for', '``', 'you', '&', 'amp', ';', 'i', \"''\", 'was', 'recorded', 'at', '', '', 'university', 'and', 'featured', 'bury', '', 'performing', 'to', '2', '0', '0', 'fans', ',', 'the', 'video', 'was', 'shot', 'over', 'the', 'course', 'of', 'two', 'days', ',', 'with', 'the', 'second', 'day', 'focusing', 'on', 'the', 'band', 'performing', '.', '']\n", "['', 'she', 'represented', 'her', 'country', 'in', 'that', 'event', 'at', 'the', '1', '9', '8', '4', 'summer', 'olympics', 'and', '1', '9', '8', '3', 'world', 'championships', 'in', 'athletics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', '', 'that', 'the', 'age', 'of', 'npf', 'members', 'mostly', 'ranges', 'between', '1', '8', 'and', '2', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'aip', \"'s\", 'editing', 'reduced', 'the', 'film', \"'s\", '', 'to', '8', '3', 'minutes', ',', 'compared', 'to', 'the', '8', '7', 'minute', '', 'of', 'most', 'italian', 'prints', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'deck', 'immediately', 'became', 'an', '', 'of', '', 'gas', 'tanks', 'and', 'ammunition', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'a', 'letter', 'to', 'henry', 'clay', '', 'she', '', 'that', '``', 'with', 'the', 'passing', 'away', 'of', 'my', 'husband', ',', 'my', 'life', 'and', 'fortune', 'have', 'been', 'completely', 'wrecked', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'we', 'had', 'liberated', '', ',', 'an', 'important', 'junction', 'of', 'communications', 'along', 'the', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', 'born', '1', '9', '6', '6', 'in', '', ',', 'belgium', ')', 'is', 'a', 'belgian', '', ',', 'and', 'general', 'director', 'of', 'the', 'han', '', 'foundation', '-', 'barcelona', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'air', 'started', 'serving', '', 'following', 'the', 'opening', 'of', '', 'airport', ',', '', 'in', '1', '9', '8', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'myers', 'argues', 'that', ':', '``', 'when', 'the', 'average', '[', 'south', 'korean', ']', 'man', 'sees', 'the', '[', 'south', 'korean', ']', 'flag', ',', 'he', 'feels', '', 'with', '[', 'ethnic', ']', '', 'around', 'the', 'world', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '6', ',', 'after', '1', '9', 'years', 'of', 'service', 'in', 'india', ',', 'he', 'moved', 'to', 'the', 'usa', 'on', 'invitation', 'to', 'take', 'up', 'the', 'position', 'of', 'chief', 'of', 'rehabilitation', 'branch', 'at', 'the', 'national', 'hansen', \"'s\", 'disease', 'center', 'at', '', ',', 'louisiana', '.', '', '', '', '', '', '']\n", "['', 'as', 'he', 'was', 'admitted', 'as', 'a', '', \"'\", '(', 'wine', 'master', \"'\", ')', 'it', 'is', 'likely', 'his', 'father', 'was', 'or', 'had', 'been', 'a', 'master', 'of', 'the', 'guild', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'graduate', 'school', 'of', 'management', 'and', 'innovation', 'program', 'includes', 'a', 'full', 'academic', 'course', 'in', 'social', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'taluk', 'has', 'contents', 'of', 'black', 'soil', 'around', 'the', 'town', ',', 'suitable', 'for', 'crop', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'broadcasts', 'began', 'on', '2', '0', 'august', '1', '9', '8', '3', ';', 'her', 'final', 'pirate', 'broadcast', 'took', 'place', 'in', 'november', '1', '9', '9', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '2', '0', '', '', 'singh', 'of', '', '', '', 'defeated', '', 'singh', 'of', '', '', '(', 'united', ')', 'to', 'emerge', 'victorious', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', '``', '', 'de', '', \"''\", 'is', 'a', 'mine', 'of', 'information', 'on', 'the', 'philosopher', 'and', 'his', 'work', ',', 'derived', 'from', 'numerous', '', 'authorities', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'a', '2', '0', '2', '0', 'essay', ',', '', 'rejected', 'the', '', 'solution', 'in', 'favor', 'of', 'a', '', 'solution', ',', 'detailing', 'his', 'views', 'in', 'a', 'longer', 'essay', 'in', '``', 'jewish', 'currents', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'under', 'the', 'command', 'of', 'robert', 's.', 'rice', ',', 'the', 'battery', 'continued', 'to', 'suffer', '', 'casualties', 'with', 'each', 'battle', 'as', 'the', 'war', 'continued', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'award', 'ceremony', 'was', 'held', 'from', '1', '9', '9', '0', 'to', '2', '0', '0', '7', ',', 'until', 'its', '', 'in', '2', '0', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'the', 'largest', 'of', 'the', 'surviving', 'gardens', ',', 'and', 'it', 'is', 'subdivided', 'into', 'two', 'parts', ',', 'a', 'small', 'enclosed', 'garden', 'and', 'a', 'large', 'field', 'at', 'the', 'back', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'december', '7', ',', 'manny', 'started', 'to', '', 'a', '', 'loop', ',', 'while', 'located', 'approximately', '9', '5', '0', 'km', 'to', 'the', 'east', 'of', '', ',', 'the', 'capital', 'of', 'the', 'philippines', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '#', '', 'hashtag', 'was', 'launched', 'in', '2', '0', '1', '4', 'by', 'fashion', 'revolution', '', ',', 'carry', '', 'and', '', 'de', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '``', '', 'of', 'knowledge', \"''\", 'contains', 'all', 'information', 'of', 'the', 'enemies', ',', 'their', 'attacks', 'and', 'abilities', ',', 'their', '', 'text', ',', 'and', '', 'that', 'the', 'player', 'has', 'found', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '9', '6', ',', 'he', 'wrote', 'this', 'letter', 'to', 'one', 'dr.', 'white', 'of', '', ',', 'massachusetts', 'which', 'was', 'in', 'the', 'midst', 'of', 'a', 'malaria', 'outbreak', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'spring', ',', 'presley', 'auditioned', 'for', 'an', 'amateur', 'gospel', 'quartet', 'called', 'the', '', ',', 'as', 'one', 'of', 'the', 'group', 'was', 'leaving', 'and', 'they', 'were', 'seeking', 'a', 'replacement', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'also', 'an', 'airport', ',', '', '', 'regional', 'airport', ',', 'in', 'the', 'community', 'of', 'thermal', 'to', 'the', 'east', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'lighting', 'a', '', ',', 'he', '', 'to', 'the', 'infected', 'and', 'they', 'follow', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'actual', 'working', 'in', 'the', 'studio', 'was', ',', 'in', 'a', 'sense', ',', 'the', 'expression', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'vantage', 'gt', '3', 'has', 'a', 'dry', 'weight', 'of', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '6', '2', ',', 'only', '5', '%', 'of', 'total', 'revenue', 'came', 'from', 'direct', 'taxes', ',', 'and', 'it', 'was', 'not', 'until', '1', '8', '6', '4', 'that', 'the', 'amount', 'reached', 'the', '', 'level', 'of', '1', '0', '%', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'became', 'the', 'subject', 'of', 'news', 'coverage', 'when', 'the', 'colorado', 'state', 'government', 'threatened', 'to', 'shut', 'it', 'down', 'due', 'to', 'violations', 'of', 'state', '', 'laws', 'in', 'early', '2', '0', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', 'attempted', 'to', 'distance', 'the', 'band', 'from', 'the', 'christian', 'band', 'label', 'stating', ',', '``', 'we', \"'ve\", 'actually', 'never', 'classified', 'our', 'music', 'as', '', 'rock', \"'\", ',', 'we', 'have', 'always', 'been', 'an', 'alternative', 'band', 'on', 'all', 'formats', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'an', 'ordinary', '', 'gas', 'in', 'which', 'thermal', 'effects', '', ',', 'most', 'of', 'the', 'available', 'electron', 'energy', 'levels', 'are', '', 'and', 'the', 'electrons', 'are', 'free', 'to', 'move', 'to', 'these', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'eddie', 'bond', ',', 'the', 'owner', 'of', 'the', '', ',', 'turned', 'him', 'down', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'has', 'branches', 'in', '', 'heights', ',', '', ',', '', 'and', 'alliance', ',', 'ohio', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'nurse', '&', 'amp', ';', '', '(', '1', '9', '9', '3', ')', '', 'it', 'as', 'a', 'northern', 'dialect', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'has', 'always', 'done', 'this', ',', 'ever', 'since', 'he', 'and', '', 'were', 'both', 'children', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'halt', 'was', 'a', 'railway', 'station', 'on', 'the', '', '', 'railway', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '``', '', '``', '``', 'die', '', '', \"''\", '(', 'director', ':', '', '', ')', ',', 'on', 'which', '', '', 'worked', 'together', 'with', '', '', '', 'premiered', 'at', '', 'hamburg', '2', '0', '1', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '7', '9', '6', ',', 'susanna', '', 'contact', 'with', 'her', 'old', 'edinburgh', 'director', ',', 'john', 'brown', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '0', '2', ',', 'he', 'became', 'manager', 'of', 'the', 'cuban', 'fe', 'club', 'on', 'a', '', 'basis', ',', 'meaning', 'that', 'it', 'was', 'not', 'a', 'paid', 'position', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'order', 'to', '', 'and', '', 'him', 'to', 'their', 'cause', ',', '', 'offers', 'to', '', 'her', 'freedom', 'and', '', 'her', '', 'to', 'him', 'if', 'he', 'agrees', 'to', 'accompany', 'them', '(', 'despite', '', \"'s\", 'protest', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'kud', 'wafter', \"''\", 'was', 'released', 'in', 'japan', 'on', 'june', '2', '5', ',', '2', '0', '1', '0', 'as', 'a', 'limited', 'edition', 'version', 'for', 'windows', 'as', 'a', 'dvd', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'death', 'of', '', '', '(', '1', '0', 'september', '1', '6', '8', '0', ')', ',', 'he', 'took', 'the', 'charge', 'of', 'the', '', 'congregation', 'in', 'ipswich', ',', 'in', 'addition', 'to', 'his', 'own', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '5', ',', 'he', 'was', 'named', 'as', 'artistic', 'director', 'of', 'the', 'national', 'theatre', 'of', 'greece', ',', 'an', 'institution', 'he', 'managed', 'to', 'turn', 'into', 'a', '', 'organization', 'without', '', 'on', 'artistic', 'integrity', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '', ',', 'ben', '', 'described', '``', 'henry', \"''\", 'as', '``', 'perfect', 'for', 'anyone', 'who', 'wants', 'a', 'gentle', 'and', 'warm', 'introduction', 'to', 'virtual', 'reality', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '3', '8', 'degrees', 'have', 'also', 'raised', 'over', '£', '2', '0', ',', '0', '0', '0', 'in', 'donations', 'to', 'fund', 'newspaper', '', 'against', 'the', 'bill', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'ramps', 'and', 'roads', 'associated', 'with', 'the', 'tunnel', 'project', ',', 'including', 'an', 'extension', 'of', '', 'way', 'to', 'terminal', '4', '6', 'and', 'the', 'harrison', 'street', 'crossing', 'were', 'opened', ';', 'the', 'lone', 'exception', 'was', 'the', '', '', 'from', 'sr', '9', '9', 'to', 'dearborn', 'street', ',', 'which', 'opened', 'on', 'february', '1', '9', '.']\n", "['', 'consideration', 'of', 'replacing', 'georgia', \"'s\", 'republic', 'with', 'some', 'form', 'of', 'constitutional', 'monarchy', 'has', 'become', 'part', 'of', 'georgian', 'political', 'debate', 'since', 'the', 'georgian', 'orthodox', '', 'and', 'other', 'leading', 'georgians', 'suggested', 'the', 'idea', 'in', '2', '0', '0', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'some', '', ',', 'multiple', '', 'can', 'be', 'held', 'in', 'the', 'same', 'hand', ',', 'for', '', 'lacking', 'sufficiently', 'heavy', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '0', '6', ',', 'her', 'husband', 'was', 'elevated', 'to', '', 'and', 'she', 'became', '', '', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', 'also', ',', '', ')', 'is', 'a', 'village', 'and', 'municipality', 'in', 'the', '', '', 'of', 'azerbaijan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', '', 'was', 'the', 'left', 'main', 'landing', 'gear', 'with', 'some', 'cables', 'on', 'a', 'road', 'near', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'over', '3', '0', ',', '0', '0', '0', 'inscriptions', 'written', 'in', 'the', 'kannada', 'language', 'have', 'been', 'discovered', 'so', 'far', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'later', 'joined', 'the', 'congress', 'party', 'and', 'became', 'one', 'of', 'its', 'prominent', 'members', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'words', 'that', 'are', '', ',', '', ',', '', 'or', '', ',', 'or', '', 'devices', 'of', 'language', 'can', 'be', 'used', 'to', 'produce', 'humour', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'miller', 'also', 'performed', 'at', 'the', 'laugh', 'factory', 'when', 'she', 'moved', 'back', 'to', 'los', 'angeles', 'from', 'new', 'york', 'city', 'in', '2', '0', '0', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'any', 'of', 'these', '1', '1', 'proteins', 'would', 'be', 'a', 'suitable', 'target', 'for', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'until', 'he', 'was', 'fourteen', 'years', 'of', 'age', ',', 'grand', 'duke', 'kirill', 'was', 'educated', 'at', 'home', 'by', 'private', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'this', 'time', 'in', 'my', 'life', 'the', 'historical', 'context', 'of', 'high', 'modernism', 'was', 'really', 'beyond', 'my', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'presented', 'as', 'a', 'letter', 'from', '', '9', \"'s\", 'resident', '', '', 'and', 'tailor', '', '', 'to', 'dr.', 'julian', '', ',', '', '', 'his', 'life', 'story', ',', 'and', 'also', 'notes', 'developments', 'on', 'cardassia', 'after', 'the', 'end', 'of', 'the', '', 'war', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'all', 'other', 'regions', 'it', 'will', 'still', 'take', 'place', 'as', 'scheduled', 'on', '3', '0', 'december', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '9', ',', 'the', 'school', 'launched', 'the', 'saint', '', \"'s\", 'rugby', 'academy', 'as', 'a', 'partnership', 'with', 'premier', 'rugby', 'club', ',', 'london', 'irish', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'received', 'the', 'san', 'diego', 'architectural', 'foundation', 'orchid', 'award', ',', 'san', 'diego', 'architectural', 'foundation', 'for', '2', '0', '1', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '7', 'the', 'degree', 'of', 'dr.', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', ',', 'orozco', 'had', 'a', 'locomotive', 'filled', 'with', '', '(', 'the', '``', '', '', \"''\", 'or', 'the', '``', '', '', \"''\", ')', ',', 'which', 'he', 'then', 'sent', 'against', '', 'federal', 'troops', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'died', 'in', 'the', '1', '9', '9', '8', 'sudan', 'air', 'force', 'crash', 'at', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'also', 'a', 'part-time', 'lecturer', 'and', '', 'in', 'theology', 'at', 'king', \"'s\", 'college', 'london', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'tamar', 'regional', 'council', '(', ',', '``', '', '', 'tamar', \"''\", ')', 'is', 'a', 'regional', 'council', 'in', 'israel', \"'s\", 'southern', 'district', ',', 'on', 'the', 'south', 'and', 'western', '', 'of', 'the', 'dead', 'sea', 'along', 'the', '', 'valley', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'blue', '', \"''\", 'is', 'fourth', 'with', '2', '5', 'logies', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thus', 'she', 'was', 'married', 'as', 'a', 'child', 'to', 'john', 'de', 'la', 'pole', ',', 'son', 'of', 'the', 'ambitious', 'duke', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'microsoft', 'software', 'assurance', '(', '', ')', 'is', 'a', 'microsoft', 'maintenance', 'program', 'aimed', 'at', 'business', 'users', 'who', 'use', 'microsoft', 'windows', ',', 'microsoft', 'office', ',', 'and', 'other', '', 'and', '', 'applications', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', '``', 'the', 'guardian', \"''\", ',', 'the', 'deal', 'would', 'make', 'sam', '', 'the', 'highest', 'paid', 'player', 'in', 'super', 'league', 'at', '£', '3', '0', '0', ',', '0', '0', '0', 'a', 'year', ',', 'and', 'this', 'ruled', 'out', 'the', 'prospect', 'of', 'a', '', 'transfer', 'for', 'at', 'least', 'three', 'years', '.', '', '']\n", "['', 'silver', 'would', 'be', 'ideal', 'for', 'telescope', '', 'and', 'other', 'demanding', '', 'applications', ',', 'since', 'it', 'has', 'the', 'best', 'initial', '', '', 'in', 'the', 'visible', 'spectrum', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '7', '4', '4', ',', 'he', 'married', 'for', 'the', 'second', 'time', 'in', 'what', 'now', 'is', 'the', '', 'district', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'registered', 'as', 'a', 'california', 'state', 'landmark', 'on', 'september', '1', '3', ',', '1', '9', '7', '3', ',', 'as', 'an', 'example', 'of', '1', '9', 'th-century', 'victorian', '', 'architecture', 'and', 'for', 'being', '``', 'one', 'of', 'the', 'last', 'of', 'its', 'style', ',', 'size', ',', 'and', 'proportion', 'in', 'california', \"''\", '.', '', '']\n", "['', 'the', 'primary', 'precursor', 'network', ',', 'the', '', ',', 'initially', 'served', 'as', 'a', 'backbone', 'for', '', 'of', 'regional', 'academic', 'and', 'military', 'networks', 'in', 'the', '1', '9', '7', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'southern', 'border', 'established', 'by', 'the', 'treaty', 'of', 'versailles', 'defines', 'the', 'current', 'international', 'boundary', 'between', 'lithuania', 'and', 'the', '', 'oblast', 'of', 'the', 'russian', 'federation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'until', 'approached', 'by', 'reynolds', ',', '', 'had', 'only', 'built', '', 'and', 'was', '', 'to', 'recover', 'financially', 'from', 'the', 'second', 'world', 'war', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'evening', ',', 'on', 'division', 'street', 'in', 'west', 'town', 'and', '', 'park', ',', 'an', '', 'began', 'between', 'police', 'and', '', 'near', '', 'avenue', 'and', 'division', 'street', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'lake', 'basin', 'is', 'surrounded', 'by', 'volcanoes', ',', 'such', 'as', '', '', ',', '', ',', '', ',', 'lejía', ',', '', 'and', '', 'de', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'now', 'operated', 'under', 'a', 'scientific', 'cooperation', 'agreement', 'among', 'the', 'university', 'of', 'arizona', ',', 'the', 'university', 'of', 'hawaii', 'and', 'lockheed', 'martin', 'advanced', 'technology', 'center', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'entrance', 'contains', 'an', 'inscription', ',', 'but', 'no', 'royal', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '0', 'the', '``', 'johannesburg', 'times', \"''\", '', 'down', '', 'to', 'learn', 'about', 'her', 'years', 'since', 'the', 'end', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'later', 'convicted', 'and', 'sentenced', 'to', '3', '6', 'months', 'probation', 'and', 'a', '$', '5', '0', ',', '0', '0', '0', 'fine', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '1', '9', '9', '6', 'brought', 'the', 'club', 'to', 'south', 'america', 'including', 'brazil', ',', 'argentina', ',', 'uruguay', ',', 'chile', ',', 'and', 'peru', ',', 'and', 'the', 'club', 'most', 'recently', '', 'australia', 'in', '2', '0', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', 'r.', 'c.', '7', '7', '1', '-', '7', '8', '4', 'ce', ')', 'was', 'an', 'indian', 'king', 'belonging', 'to', 'the', '', 'dynasty', 'that', 'ruled', 'parts', 'of', 'present-day', '', 'in', '', 'india', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '9', '5', '3', 'to', '1', '9', '5', '4', ',', 'he', 'was', 'enrolled', 'at', 'the', 'royal', 'danish', 'academy', 'of', 'fine', 'arts', 'studying', 'under', '', '', 'and', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'performance', 'led', 'to', 'his', 'being', 'offered', 'the', 'role', 'of', 'jeremy', 'poldark', 'in', 'the', '1', '9', '9', '6', 'tv', 'remake', 'of', '``', 'poldark', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'also', 'part', 'of', 'an', 'advertising', 'group', 'during', 'his', 'college', 'years', 'and', 'served', 'as', 'chairman', 'during', 'his', 'third', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'large', 'people', \"'s\", 'square', 'in', 'the', 'centre', 'of', 'the', 'town', 'marks', 'the', 'place', 'where', 'a', 'castle', 'with', 'towers', 'was', 'built', ',', 'probably', 'in', 'the', '4', 'th', 'or', 'the', '5', 'th', 'century', ',', 'and', 'torn', 'down', 'in', '1', '8', '0', '8', '.', '', '', '', '', '', '', '', '']\n", "['', 'chris', '', ',', 'in', 'his', '2', '0', '0', '4', 'book', '``', \"''\", ',', 'said', ',', 'while', 'it', 'was', 'not', 'as', '', 'as', '``', '', 'bowl', \"''\", ',', '``', 'it', 'ended', 'up', '', 'video', 'games', 'with', 'its', '', ',', 'unique', ',', 'and', '', 'use', 'of', 'cinema', 'scenes', \"''\", '.', '', '']\n", "['', 'watson', 'was', 'born', 'in', '', 'on', '2', '1', 'february', '1', '9', '3', '8', 'to', 'a', 'farming', 'family', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'contents', 'of', 'the', '', 'hours', 'can', 'be', 'divided', 'into', 'several', 'major', 'sections', 'of', 'content', 'normal', 'for', 'a', 'conventional', 'book', 'of', 'hours', ',', 'with', 'the', 'later', 'addition', 'of', 'three', 'smaller', 'sections', 'of', 'supplementary', 'material', ',', 'mostly', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'governing', 'body', 'is', '', 'of', 'a', '', 'board', 'of', 'trustees', 'and', 'a', 'village', 'president', '(', 'equivalent', 'to', 'a', 'mayor', ')', ',', 'all', 'of', 'which', 'are', '', 'positions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'parents', 'divorced', 'when', 'she', 'was', 'in', 'high', 'school', 'and', 'she', 'since', 'then', 'lived', 'with', 'her', 'mother', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'particular', ',', 'the', '', 'structure', 'of', '', 'was', 'shown', 'to', 'depend', 'on', 'the', 'metal', 'surface', ',', 'displaying', 'a', '', 'from', 'that', 'in', 'a', '', 'state', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'valley', 'contains', 'two', 'districts', 'of', '', 'province', ':', '', 'gulf', 'district', 'on', 'the', 'east', 'and', '', 'district', 'on', 'the', 'west', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'city', 'was', 'founded', 'by', 'the', 'ndebele', 'king', ',', '', ',', 'the', 'son', 'of', 'king', '', ',', 'born', 'of', '', ',', 'who', 'settled', 'in', 'modern-day', 'zimbabwe', 'around', 'the', '1', '8', '4', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'sometimes', ',', 'these', 'holds', 'will', 'be', 'reinforced', 'to', 'prevent', 'them', 'from', 'breaking', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'machine', 'helped', 'american', 'farms', 'transition', 'from', 'horse', 'to', 'machines', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'of', 'the', 'browhead', 'rooms', 'retain', 'original', 'victorian', 'features', ',', 'such', 'as', '', 'windows', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', 'been', 'invited', 'to', '', 'before', 'congress', 'on', 'polar', 'and', 'environmental', 'issues', 'based', 'on', 'his', '', 'experience', 'in', 'the', 'polar', 'regions', 'and', 'environmental', 'expertise', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'fowler', 'resigned', 'in', '1', '9', '7', '7', 'after', 'a', 'dispute', 'with', '', 'administration', 'over', 'the', 'content', 'in', '', \"'s\", 'premiere', 'of', '', '', \"'s\", '``', '', 'byron', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'sought', 'to', 'influence', 'the', 'development', 'of', 'primary', 'care', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'historical', 'photographs', 'from', 'the', 'original', '', 'town', 'site', 'taken', 'by', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'dump', 'was', 'improved', 'over', 'the', 'years', ',', 'but', 'the', 'most', 'important', 'work', 'was', 'done', 'in', '2', '0', '0', '3', ':', 'the', 'dump', 'was', 'expanded', 'and', 'a', '', 'plant', 'was', 'incorporated', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'succeeded', 'on', 'the', 'death', 'of', 'his', 'father', 'on', 'august', '2', '0', ',', '1', '7', '6', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'new', 'york', ':', 'allows', 'first', '', 'to', 'claim', 'for', 'mental', 'injury', 'after', '', '', 'stress', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '3', '4', 'he', 'published', '``', '', '', \"''\", 'where', 'he', 'claimed', 'a', '``', 'new', 'spirit', \"''\", 'was', 'beginning', 'to', '``', 'rule', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'elected', 'mp', 'for', 'liverpool', 'again', 'at', 'the', 'general', 'election', 'in', '1', '7', '3', '4', 'and', 'was', 'returned', 'unopposed', 'in', '1', '7', '4', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'dam', 'serves', 'mainly', 'for', 'municipal', 'and', 'industrial', 'water', 'supply', 'purposes', 'and', 'its', '', 'potential', 'has', 'been', 'ranked', 'high', '(', '3', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'had', 'taken', 'over', 'the', 'federal', 'street', 'theatre', 'in', 'boston', ',', 'and', 'the', 'rowson', '', 'relocated', 'there', 'in', 'part', 'to', 'be', 'closer', 'to', 'the', 'more', 'familiar', 'residence', 'of', 'her', 'youth', 'and', 'her', 'core', 'american', 'literary', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'echo', 'tv', '(', 'since', 'february', '1', '5', ',', '2', '0', '0', '2', ',', 'also', '', 'tv', ',', '', '', '', '', ',', '', ')', 'is', 'tv', 'company', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'is', 'a', 'japanese', 'light', 'novel', 'series', 'about', 'space', '', 'written', 'by', '', '', 'and', 'published', 'by', '', '', '', 'since', 'october', '2', '0', '0', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '6', '2', '7', 'his', 'descendant', 'arthur', 'capell', 'married', 'elizabeth', 'morrison', ',', 'daughter', 'and', 'heir', 'of', 'sir', 'charles', 'morrison', 'of', 'cassiobury', 'in', 'watford', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'october', '2', '0', '1', '5', ',', 'southern', 'cross', '', 'announced', 'that', 'mcmanus', 'and', 'sam', 'frost', 'will', 'host', '', 'on', '2', 'day', 'fm', 'replacing', 'the', '', '``', 'the', 'dan', '&', 'amp', ';', '', 'show', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '1', '4', '0', '-game', 'schedule', 'had', 'last', 'been', 'used', 'in', '1', '9', '0', '3', ';', 'the', '1', '5', '4', '-game', 'schedule', 'was', '', 'in', '1', '9', '2', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'bullets', 'were', 'confirmed', 'to', 'be', '9', 'mm', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'king', '', 'dies', 'after', 'this', '', ',', 'during', 'mega', 'man', \"'s\", 'ending', 'it', 'is', 'revealed', 'that', 'he', 'survived', 'and', 'is', 'now', 'a', 'wanderer', ',', 'much', 'like', '', 'man', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'told', 'that', 'hanina', 'had', 'a', 'friendship', 'with', 'the', 'angel', 'of', 'death', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'street', 'released', 'their', 'self-titled', 'debut', 'album', ',', '', 'street', 'on', 'joel', 'and', '', '', \"'s\", 'dc', 'flag', 'records', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'team', 'vacated', 'the', 'championship', 'on', 'february', '2', '0', ',', '2', '0', '0', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '7', ',', 'when', 'the', '', 'moved', 'their', 'practice', 'facility', 'to', 'orange', 'county', ',', 'the', '', 'removed', 'all', 'references', 'to', 'the', 'city', 'of', 'san', 'diego', 'from', 'their', 'website', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'excessive', '', 'hair', ',', 'severe', 'burns', ',', 'and', 'maxillofacial', '', 'may', 'prevent', 'acquisition', 'of', 'a', 'good', 'mask', 'seal', ',', 'rendering', '', 'mask', 'ventilation', 'difficult', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'daniel', 'gerard', '', '(', 'born', '2', '0', 'july', '1', '9', '7', '3', ')', 'is', 'an', 'australian', 'politician', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '``', 'north', 'star', \"''\", 'managed', 'to', 'survive', 'the', 'fire', 'on', 'the', '', 'that', 'it', 'was', 'out', 'on', 'the', 'water', 'returning', 'from', 'a', 'trip', 'to', '', 'that', 'morning', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'promoted', 'to', '', 'major', 'on', '1', 'march', '1', '7', '9', '4', ',', '', 'was', 'confirmed', 'major', 'of', 'his', 'regiment', 'on', '1', '5', 'september', '1', '7', '9', '5', 'and', 'promoted', 'to', '', 'of', 'the', '7', '7', 'th', 'foot', 'on', '1', '2', 'december', '1', '7', '9', '5', '.', '', '', '', '']\n", "['', 'governor', 'stirling', 'gave', '', 'a', '', 'of', 'his', 'own', 'land', 'at', '', ',', 'guildford', ',', 'upon', 'which', 'to', 'start', 'a', 'mission', 'and', 'school', ',', 'which', 'he', 'intended', 'to', 'be', 'along', '', 'lines', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'assisted', 'this', 'master', 'in', '', 'the', 'famous', 'pictures', 'of', 'raphael', 'in', 'the', 'vatican', 'city', ',', 'and', 'the', 'print', 'which', 'represents', 'the', '``', '', 'of', '', \"''\", 'is', '', 'with', 'his', 'name', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'number', 'of', 'foreigners', 'wanting', 'to', 'study', 'in', 'china', 'has', 'been', 'rising', 'by', 'approximately', '2', '0', '%', 'annually', 'since', 'the', 'reform', 'and', 'opening', 'period', 'began', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mir', '', 'ali', 'khan', 'was', 'succeeded', 'by', 'mir', '', 'muhammad', ',', 'who', 'was', 'in', 'turn', 'succeeded', 'by', 'mir', '', 'khan', 'talpur', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'eight', '', 'of', 'the', '', 'are', '', 'well', 'rounded', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'hold', 'the', '9', 'th', 'longest', 'winning', 'streak', 'in', 'iowa', 'boys', \"'\", 'basketball', 'history', ',', 'with', '4', '9', 'consecutive', 'wins', '(', 'including', '', 'games', ')', 'from', '1', '9', '9', '6', 'through', '1', '9', '9', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'taught', 'by', '', 'from', 'paris', 'ii', 'and', 'leads', 'to', 'exactly', 'the', 'same', 'degree', 'offerings', 'the', 'same', 'rights', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", 'has', 'origins', 'in', 'the', 'late', '1', '9', '9', '0', 's', ',', 'when', '', '', 'of', '``', '', 'magazine', \"''\", 'created', 'the', 'term', '', 'and', 'then', 'it', 'became', 'the', 'popular', 'reference', 'term', 'for', 'the', 'industry', 'in', 'the', 'northern', 'nigeria', '.', '', '', '', '', '', '', '', '']\n", "['', 'whether', 'he', 'did', 'it', 'formally', 'or', 'not', 'did', \"n't\", 'seem', 'important', 'to', 'anyone', 'at', 'the', 'time', ',', 'getting', 'the', 'operation', '', 'was', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'elementary', 'events', 'and', 'their', 'corresponding', '', 'are', 'often', 'written', '', 'for', '', ',', 'as', 'such', 'an', 'event', '', 'to', '', 'one', 'outcome', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', 'april', '1', '9', '1', '6', ',', 'it', 'was', 'renamed', 'detachment', '', 'de', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'is', 'thought', 'of', 'as', 'a', 'somewhat', 'permanent', 'perception', 'of', '', 'that', 'is', '', 'by', 'environmental', 'and', 'temporary', '', 'and', 'influences', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'of', 'the', 'victims', ',', 'whose', 'ages', '', 'from', '6', '5', 'to', '9', '7', ',', 'were', '', 'and', 'suffered', 'from', 'alzheimer', \"'s\", 'disease', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '3', 'march', ',', 'prime', 'minister', 'of', 'spain', 'pedro', 'sánchez', 'announced', 'a', 'declaration', 'of', 'a', 'nationwide', 'state', 'of', 'alarm', 'for', '1', '5', 'days', ',', 'to', 'become', 'effective', 'the', 'following', 'day', 'after', 'the', 'approval', 'of', 'the', 'council', 'of', 'ministers', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'brother', 'to', 'richard', 'dela', 'peña', ',', 'who', 'also', 'has', 'an', '', 'background', 'in', 'basketball', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'first', 'became', 'a', 'member', 'of', 'the', '', 'republican', 'town', 'committee', 'in', '1', '9', '8', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'to', 'access', 'free', '', 'advice', ',', 'equipment', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'webster', \"'s\", 'new', '', 'dictionary', 'of', 'english', \"''\", 'defines', '``', 'flash', 'mob', \"''\", 'as', '``', 'a', 'group', 'of', 'people', 'who', 'organize', 'on', 'the', 'internet', 'and', 'then', 'quickly', '', 'in', 'a', 'public', 'place', ',', 'do', 'something', '', ',', 'and', '', '.', \"''\", '', '', '', '', '', '', '', '']\n", "['', '', 'land', 'district', 'is', 'a', 'land', 'district', '(', '', 'division', ')', 'of', 'western', 'australia', ',', 'located', 'within', 'the', '', 'land', 'division', 'on', 'the', '', 'plain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '1', '3', '5', '9', '', 'the', 'crew', 'to', 'visit', 'the', 'planet', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'early', '', 'were', '', 'and', 'were', 'built', 'as', '', 'pairs', ';', 'by', '1', '8', '7', '8', ',', 'rows', 'of', 'identical', '', '', 'units', 'were', 'built', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'following', 'day', ',', 'as', 'he', 'wrote', 'to', '', 'of', 'his', 'encounter', 'with', 'a', '', '', 'pilot', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'good', 'morning', 'america', \"''\", 'featured', 'a', '``', '', \"'s\", 'island', \"''\", 'reunion', 'presided', 'over', 'by', 'guest', 'host', '', 'lee', '', 'on', 'november', '2', '6', ',', '1', '9', '8', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'in', 'finland', ',', 'an', 'academic', 'degree', 'in', 'engineering', 'is', 'required', 'in', 'order', 'to', 'be', 'eligible', 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'the', 'release', 'of', '``', 'game', '', 'story', \"''\", 'for', '', 'and', '', 'in', '2', '0', '1', '0', ',', '', 'found', 'itself', 'a', 'large', 'hit', ',', 'which', 'reached', 'the', 'top', 'ten', 'in', '', '', 'sales', 'in', 'its', 'first', 'week', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'note', ':', '', '=', 'position', ';', 'g', '=', 'games', 'played', ';', '', '=', 'at', '', ';', 'h', '=', 'hits', ';', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'competed', 'in', 'the', 'four', 'man', 'event', 'at', 'the', '2', '0', '0', '2', 'winter', 'olympics', ',', 'representing', 'yugoslavia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'chosen', 'to', 'represent', 'queensland', 'in', 'the', 'state', 'cup', 'representative', 'team', ',', 'unfortunately', 'going', 'down', '3', '6', 'to', '1', '6', 'in', 'the', '', '', 'to', 'state', 'of', 'origin', 'at', 'sydney', 'olympic', 'stadium', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'january', '2', '0', ',', '2', '0', '0', '7', ',', '', '', 'lost', 'a', 'match', 'against', '', 'canadian', 'champion', 'don', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'also', 'as', 'a', 'child', ',', 'he', 'enjoyed', 'visiting', 'chicago', 'museums', ',', 'libraries', 'and', 'the', '', '', 'that', '', 'his', '', '', 'reading', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'story', 'concepts', 'were', 'first', '', 'in', 'late', '2', '0', '1', '3', ',', 'following', 'the', 'development', 'and', 'release', 'of', '``', 'the', 'last', 'of', 'us', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'there', 'is', 'evidence', 'that', 'life', 'could', 'have', 'evolved', 'over', '4', '.', '2', '8', '0', 'billion', 'years', 'ago', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'more', 'than', '3', '5', ',', '0', '0', '0', 'people', 'signed', 'a', 'number', '1', '0', 'petition', ',', 'started', 'by', 'andrew', '', 'at', '', '', ',', '', 'to', 'being', '', 'without', 'fair', 'trial', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'patsey', 'was', 'often', '', 'and', 'had', 'many', '', 'on', 'her', 'back', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'exchange', 'for', '', 'dropping', 'all', '', 'that', 'contest', 'the', 'government', \"'s\", 'handling', 'of', 'the', '', 'process', ',', '', 'was', 'deprived', 'from', 'one', 'of', 'its', 'awarded', 'section', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'lunar', 'eclipse', 'is', 'related', 'to', 'two', 'total', 'solar', '', 'of', 'solar', '', '1', '3', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'entries', 'in', 'the', 'world', 'show', 'are', 'from', '', '', '', 'member', 'clubs', ',', 'and', '', 'clubs', '(', 'such', 'as', 'the', 'american', '', 'club', ')', 'by', 'invitation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'a', 'temple', 'of', 'lord', '', 'named', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'the', 'new', 'york', 'times', \"''\", 'stated', ':', '``', 'the', 'trailer', 'opens', 'with', 'scenes', 'of', 'egyptian', 'security', 'forces', 'standing', '', 'as', 'muslims', '', 'and', '', 'the', 'homes', 'of', 'egyptian', 'christians', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'part', 'of', 'an', '1', '1', '', 'delegation', 'to', 'observe', 'the', 'conduct', 'of', 'the', '2', '0', '1', '6', 'parliamentary', 'elections', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'french', '', 'west', 'louisiana', 'to', 'the', 'spanish', ',', 'new', 'orleans', '', 'attempted', 'to', '', 'spanish', 'rule', 'and', 'even', '', 'french', 'control', 'on', 'the', 'colony', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'receptors', 'have', 'multiple', '', 'sites', 'just', 'like', 'ionotropic', '', 'receptors', 'and', 'can', 'be', 'influenced', 'by', '', 'such', 'the', '', '', 'or', '', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'kim', \"'s\", '', 'later', 'stated', 'that', 'they', 'had', 'resented', 'kim', 'up', 'until', 'their', 'debut', 'due', 'to', 'the', 'change', 'in', 'line-up', 'and', 'kim', \"'s\", 'relatively', 'short', 'training', 'period', 'compared', 'to', 'them', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'oil', 'ministry', 'imposed', 'a', 'fine', 'of', '', '7', '0', '0', '0', '', 'on', '', '', \"'s\", 'company', 'for', 'the', 'sharp', 'drop', 'in', 'production', 'of', 'gas', 'and', 'violations', 'mentioned', 'in', '', \"'s\", '2', '0', '1', '1', 'report', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'c', \"''\", 'means', 'there', 'are', 'three', 'powered', '', 'under', 'the', 'unit', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'so', '', 'by', 'her', 'failed', 'attempts', 'to', 'connect', 'with', 'any', 'guy', ',', 'she', 'plans', 'on', '', 'herself', 'in', 'the', 'bath', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'current', 'two', 'official', 'varieties', 'of', 'written', 'norwegian', ',', '', 'and', '', '(', 'until', '1', '9', '2', '9', 'called', '', 'and', '', 'respectively', ')', ',', 'were', 'not', 'developed', 'until', 'the', 'late', '1', '9', 'th', 'century', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", 'takes', 'place', 'approximately', '4', '2', 'months', 'after', 'day', '6', 'and', 'day', '7', 'takes', 'place', '6', '5', 'days', 'after', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'ruled', 'croatia', 'from', '1', '9', '9', '0', 'before', 'the', 'country', 'gained', 'independence', 'from', 'yugoslavia', 'until', '2', '0', '0', '0', 'and', ',', 'in', 'coalition', 'with', 'junior', 'partners', ',', 'from', '2', '0', '0', '3', 'to', '2', '0', '1', '1', ',', 'and', 'since', '2', '0', '1', '6', '.', '', '', '']\n", "['', 'at', 'work', 'raj', '', '', ',', 'a', 'woman', 'with', 'no', 'good', '', 'when', 'she', 'gives', 'him', 'a', '', 'that', 'she', 'is', 'ready', 'to', 'please', 'him', 'outside', 'the', 'office', 'and', 'later', 'that', 'night', 'they', 'get', 'intimate', 'with', 'each', 'other', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'detailed', 'the', 'use', 'of', 'a', '', 'alarm', 'that', 'sounds', 'when', 'children', '', 'while', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'francis', ',', 'former', '', 'forest', 'and', 'birmingham', 'city', 'professional', 'footballer', ',', 'and', 'the', 'first', 'english', 'footballer', 'to', 'cost', '£', '1', 'million', ',', 'was', 'born', 'and', 'brought', 'up', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'aside', 'from', 'the', 'measurement', ',', 'the', 'beauty', 'of', 'the', 'oil', 'drop', 'experiment', 'is', 'that', 'it', 'is', 'a', 'simple', ',', 'elegant', '', 'demonstration', 'that', 'charge', 'is', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'hall', ',', 'for', 'women', ',', 'was', 'completed', 'and', 'opened', 'that', '', 'as', 'well', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'a', 'separate', 'trial', ',', 'charles', '', 'received', 'a', '', 'prison', 'sentence', 'for', 'his', 'part', ',', 'plus', '5', '0', '', ',', 'to', 'be', 'handed', 'out', 'on', 'two', 'separate', 'occasions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'new', 'ownership', 'made', 'a', 'number', 'of', 'front', 'office', 'changes', 'with', 'the', 'aim', 'of', 'returning', 'the', 'team', 'to', 'the', 'top', 'of', 'the', 'russian', 'premier', 'league', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'second', ',', 'after', '2', '3', '0', 'years', ',', 'was', 'that', 'of', 'seth', 'begotten', 'of', 'adam', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'police', 'alleged', 'that', '', 'cruz', ',', 'a', 'young', 'puerto', 'rican', 'man', ',', 'was', 'armed', 'and', 'involved', 'in', 'a', 'street', 'fight', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'next', 'three', 'most', 'popular', 'parties', 'were', 'the', '', '(', '2', '2', '.', '0', '5', '%', ')', ',', 'the', 'sp', '(', '1', '5', '.', '4', '6', '%', ')', 'and', 'the', 'green', 'party', '(', '1', '2', '.', '7', '6', '%', ')', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'singaporean', '', 'is', 'the', 'largest', '', 'chinese', 'dialect', 'spoken', 'in', 'singapore', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'served', 'edward', 'as', 'a', '', 'in', 'the', 'negotiations', 'over', 'the', 'proposed', 'marriage', 'of', 'the', 'future', 'edward', 'ii', 'to', 'margaret', ',', 'the', '', 'of', 'norway', ',', 'which', 'never', 'came', 'to', 'pass', 'after', 'margaret', \"'s\", 'death', 'soon', 'after', 'the', 'marriage', 'was', 'arranged', '.', '', '', '', '', '', '', '']\n", "['', 'the', '', 'warden', ',', 'armed', 'with', 'a', 'thompson', 'sub', 'machine', 'gun', ',', 'threatens', 'to', '', 'all', 'the', 'prisoners', 'if', 'the', 'riot', 'does', \"n't\", 'stop', 'soon', ',', 'but', 'one', 'of', 'them', ',', '', 'jones', ',', '', 'by', 'carrying', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'march', '2', '0', '1', '8', 'ferguson', 'laid', 'a', 'charge', 'of', '', 'against', 'jordaan', 'and', 'said', 'she', 'expected', 'more', 'women', 'to', 'come', 'forward', 'about', 'assault', 'by', 'jordaan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', ',', '``', 'the', 'men', 'who', 'find', 'my', 'videos', '', 'often', 'recognize', 'the', '', ',', 'more', '', 'side', 'of', 'their', 'own', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'following', 'year', 'he', 'successfully', 'contested', 'the', 'election', 'at', '', ',', 'where', 'he', 'was', '', 'as', 'a', 'court', '(', '', ')', 'supporter', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'early', '1', '8', '9', '0', 's', ',', 'a', 'group', 'of', 'four', 'brothers', '(', 'giuseppe', 'morello', ',', 'and', 'his', '', '', ',', '', 'and', '', '', ')', 'arrived', 'in', 'new', 'york', 'city', 'from', '', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'anderson', 'municipal', 'airport', 'in', 'indiana', 'was', 'another', 'major', 'hub', 'for', 'gmats', ',', 'as', 'the', 'region', 'had', 'important', 'production', 'facilities', 'and', 'no', 'regularly', 'scheduled', 'flights', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'soviet', 'union', '', 'from', 'the', 'north', 'with', 'the', 'armored', 'forces', 'occupying', 'iran', \"'s\", 'northern', 'provinces', 'and', 'the', 'british', 'coming', 'from', 'the', 'south', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'communication', 'may', 'be', 'direct', 'or', '', ',', 'where', 'memes', 'transmit', 'from', 'one', 'individual', 'to', 'another', 'through', 'a', 'copy', 'recorded', 'in', 'an', '', 'source', ',', 'such', 'as', 'a', 'book', 'or', 'a', 'musical', 'score', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'study', 'examined', 'the', '', 'relationships', 'between', 'men', 'and', '', ';', 'the', 'study', 'looked', 'at', 'muscular', '', '', '', 'and', 'men', 'who', 'either', 'did', 'or', 'did', 'not', 'develop', 'a', '', 'psychological', 'bond', 'with', 'a', '', 'character', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'gambling', 'on', 'horse', 'races', 'appears', 'to', 'go', '', 'hand', 'with', 'racing', 'and', 'has', 'a', 'long', 'history', 'as', 'well', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'the', 'sociolinguistic', 'reality', 'of', 'these', '', 'has', 'yet', 'to', 'be', 'explored', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'van', '', 'was', 'the', 'dutch', 'government', \"'s\", 'representative', 'at', 'the', '1', '9', '3', '0', 'league', 'of', 'nations', '', 'conference', ',', 'which', '', 'to', '', 'certain', 'aspects', 'of', 'international', 'law', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'takes', 'place', 'in', 'spring', 'and', 'nearly', 'every', 'sports', 'hall', 'available', 'is', 'used', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'have', 'been', 'a', 'popular', 'subject', 'of', 'art', 'and', 'literature', 'in', 'recent', 'centuries', ',', 'such', 'as', 'in', '', 'christian', '', \"'s\", 'literary', '', 'tale', '``', 'the', 'little', '', \"''\", '(', '1', '8', '3', '6', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '9', '5', ',', 'boundaries', 'were', '', ',', 'and', 'the', 'territory', 'covering', '', ',', '', 'and', 'herefordshire', 'was', 'named', 'the', '``', 'diocese', 'of', 'newport', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'philharmonic', 'is', 'a', 'department', 'of', 'the', 'bbc', 'north', 'group', 'division', 'based', 'at', '', ',', 'salford', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'little', 'buffalo', 'oil', 'spill', 'on', 'april', '2', '9', ',', '2', '0', '1', '1', ',', 'resulted', 'in', 'the', 'discharge', 'of', '2', '8', ',', '0', '0', '0', '', 'of', 'oil', 'in', 'an', 'isolated', 'stretch', 'of', '', 'forest', 'in', 'northern', 'alberta', ',', 'about', 'ten', 'kilometres', 'from', 'little', 'buffalo', ',', 'alberta', '.', '']\n", "['', 'he', 'was', 'named', 'the', 'professor', 'of', 'painting', 'at', 'the', 'academy', 'of', 'fine', 'arts', 'of', 'parma', ',', 'and', 'in', '1', '7', '7', '7', 'was', 'made', 'academic', 'of', 'honor', 'for', 'the', '', 'academy', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'yu', 'started', '', 'sanitary', 'pads', 'by', 'herself', 'on', 'february', '7', ',', 'but', 'she', 'soon', 'realized', 'that', 'her', 'donations', 'were', 'only', 'a', 'drop', 'in', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'acted', 'in', 'plays', ',', 'produced', 'theatre', 'and', 'taught', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'filmed', 'in', '', 'and', 'released', 'by', 'warner', '', '..', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mary', 'later', '', 'twins', 'by', 'bothwell', 'while', 'a', 'prisoner', 'at', '', 'castle', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'commissioned', 'on', '9', 'february', '1', '9', '6', '8', 'and', 'decommissioned', 'on', '9', 'march', '1', '9', '9', '0', ',', '``', '', \"''\", 'served', 'as', 'a', '', '', ',', 'the', 'ran', 'flagship', ',', 'and', 'a', 'training', 'vessel', 'during', 'her', 'career', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'international', 'airport', 'for', '', 'is', 'located', 'on', '', 'island', 'in', 'the', 'neighboring', 'commune', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'different', 'buddhist', 'schools', 'had', 'their', 'own', 'collections', 'of', 'these', '', 'and', 'often', 'disagreed', 'on', 'which', 'stories', 'were', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'endemic', 'to', 'south', 'africa', ',', 'where', 'it', 'occurs', 'in', 'the', 'dry', ',', 'western', 'interior', 'regions', 'of', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'unlike', 'the', 'other', 's', 'series', 'adventures', ',', '``', 'expedition', 'to', 'the', 'barrier', 'peaks', \"''\", 'was', 'not', 'included', 'in', 'the', '``', '', 'survival', 'guide', \"''\", 'by', 'author', 'bill', '', 'because', 'to', 'him', 'it', 'was', 'a', '``', 'wonderful', 'adventure', \"''\", ',', 'but', 'not', '``', 'a', 'd', '&', 'amp', ';', 'd', 'adventure', '.']\n", "['', '', 'had', 'plans', 'for', 'a', 'second', 'series', ',', 'but', 'the', 'programme', 'was', '', 'discontinued', ',', 'as', 'it', 'was', 'not', '', 'enough', 'audiences', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'a', 'report', 'in', 'the', '``', 'washington', 'post', \"''\", ',', 'every', 'great', 'african', 'american', 'professional', '', 'in', 'the', 'united', 'states', 'has', 'played', 'at', 'the', 'course', 'since', 'its', 'opening', ',', 'with', 'the', 'exception', 'of', 'tiger', 'woods', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'reformed', 'churches', 'in', 'south', 'africa', 'is', 'a', 'member', 'of', 'the', 'world', 'reformed', 'fellowship', 'and', 'the', 'international', 'conference', 'of', 'reformed', 'churches', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'town', 'acquired', 'its', 'first', 'steam', 'driven', 'fire', 'engine', 'in', '1', '9', '1', '4', 'which', 'cost', '£', '1', '0', '0', 'and', 'was', 'paid', 'for', 'by', 'voluntary', 'subscription', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'usually', 'the', 'term', '', 'is', 'used', 'in', 'the', 'context', 'of', 'global', 'approach', 'to', 'identify', ',', 'target', 'or', '', 'large', 'sets', 'of', 'the', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'news', 'of', '', \"'s\", 'departure', 'to', 'madrid', 'was', '', ',', 'as', 'river', 'plate', 'rejected', 'a', '€', '1', '0', 'million', 'bid', 'for', 'the', '', ',', 'stating', 'they', 'would', 'prefer', 'him', 'to', 'remain', 'until', 'at', 'least', 'june', '2', '0', '0', '7', '.', '', '', '', '', '', '', '', '']\n", "['', 'after', 'liu', '', 'prevailed', 'and', 'founded', 'the', 'han', 'dynasty', ',', 'zang', 'tu', 'was', 'appointed', 'the', 'prince', 'of', 'yan', ',', 'and', 'governed', 'the', '', 'of', 'yan', 'from', 'ji', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'early', 'years', 'of', 'its', 'existence', 'the', 'office', 'of', '``', 'the', 'hay', 'standard', \"''\", 'was', 'located', 'at', 'the', 'government', 'wharf', 'at', 'hay', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'system', 'consisted', 'of', 'two', 'arc', '', 'placed', 'in', 'the', 'middle', 'of', 'a', 'white', 'parabolic', '', 'that', 'measured', 'in', 'diameter', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'saratoga', \"''\", '', 'the', 'during', 'the', 'battle', 'of', 'the', 'eastern', '', 'three', 'months', 'later', ',', 'then', 'supported', 'a', 'number', 'of', 'american', 'operations', 'in', 'the', 'pacific', 'before', 'being', 'attached', 'to', 'the', 'british', 'eastern', 'fleet', 'for', 'operations', 'in', 'the', 'indian', 'ocean', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'portfolio', 'contained', 'six', 'volumes', ',', 'each', 'of', 'which', 'were', 'shipped', 'out', 'from', 'the', 'artists', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'will', 'and', 'abby', 'were', 'walking', 'down', 'the', 'street', 'after', 'having', 'lunch', 'with', 'his', 'parents', ',', 'when', 'abby', 'announced', 'that', 'she', 'was', 'having', 'a', 'girl', 'and', 'wanted', 'to', 'name', 'her', 'dylan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'wilson', '', 'a', '', 'in', '1', '9', '6', '7', 'with', 'five', '', '', 'lines', 'of', '', 'in', 'an', '', ',', 'using', '', 'as', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'artwork', 'is', 'incorporated', 'into', '', \"'s\", 'interior', 'and', 'exterior', 'design', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'march', '1', '9', '6', '6', ',', 'duncan', 'announced', 'his', 'candidacy', 'for', 'the', 'democratic', 'nomination', ',', 'which', 'was', 'quickly', 'endorsed', 'by', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'journal', 'of', 'risk', 'and', '', 'in', 'engineering', 'systems', 'is', 'a', 'peer-reviewed', 'scientific', 'journal', 'established', 'in', '2', '0', '1', '4', 'by', 'the', 'american', 'society', 'of', 'civil', 'engineers', '(', '', ')', 'and', 'the', 'american', 'society', 'of', 'mechanical', 'engineers', '(', '', ')', '.', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'were', 'the', 'only', '', '', 'known', 'to', 'have', 'survived', 'the', '', '', ';', 'all', 'subsequent', '', 'are', 'thus', 'thought', 'to', 'be', 'derived', 'from', 'these', 'forms', ',', 'which', '', 'throughout', 'the', '', 'period', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'three', 'types', 'of', 'items', ',', 'to', 'which', 'the', '', 'is', 'divided', ':', '``', 'equipment', \"''\", ',', 'items', 'characters', 'may', 'wear', 'on', 'their', 'bodies', ';', '``', '', \"''\", 'which', 'consists', 'of', '', 'items', 'that', 'may', 'recover', 'hp', 'or', 'mp', ',', 'or', 'perform', 'an', 'effect', '(', 'i.e', '.', '', '']\n", "['', 'the', 'area', 'by', 'the', '', 'river', 'is', 'believed', 'to', 'be', 'the', 'original', 'territory', 'of', 'the', '', 'people', 'by', 'victor', '', '(', '1', '9', '4', '2', ')', 'and', '', '', '(', '1', '9', '5', '5', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'because', 'of', 'the', 'configuration', 'of', 'their', '', 'bonds', ',', '', '(', '', ')', 'largely', '', '', 'by', '', 'and', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'united', 'methodist', 'church', 'in', 'new', 'oxford', ',', '', ',', 'erected', 'in', '1', '8', '8', '7', ',', 'was', 'named', 'for', 'him', 'after', 'he', 'helped', 'to', 'establish', 'the', '', 'sunday', 'school', 'during', 'the', 'church', \"'s\", 'early', 'years', '-', 'between', '1', '8', '3', '2', 'and', '1', '8', '3', '5', '.', '', '']\n", "['', 'with', 'her', 'sister', '', 'de', '', 'brown', ',', 'she', 'created', 'the', \"''\", 'signing', 'time', '!', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'they', 'become', '', ',', '', 'comes', 'to', 'like', 'the', 'man', 'and', '', 'his', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'later', ',', 'in', '1', '5', '2', '7', ',', 'francisco', '', 'de', 'san', '', 'moved', 'the', 'city', 'to', 'its', 'present', 'location', 'and', 'gave', 'it', 'the', 'name', 'of', '``', 'san', '', 'de', 'colima', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '4', ',', 'after', 'working', 'on', 'various', 'production', 'roles', 'on', 'river', 'city', ',', 'he', 'was', 'offered', 'the', 'chance', 'to', 'direct', 'his', 'very', 'first', 'episode', 'of', 'the', 'television', 'series', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'road', 'heads', 'through', 'several', 'more', 'miles', 'of', 'rural', 'areas', 'with', 'some', 'homes', 'and', '', 'to', 'the', 'east', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '6', 'july', '2', '0', '1', '8', ',', 'members', 'of', 'the', '', '', 'two', '', 'activists', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'that', 'time', ',', 'the', 'club', 'had', 'the', 'most', 'members', 'on', 'record', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'an', 'added', 'feature', '', 'a', 'champu', 'in', '', 'usually', 'has', '3', '4', 'songs', ',', 'one', 'for', 'each', '', 'of', 'the', 'alphabet', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '3', ',', '', 'and', 'three', 'business', 'partners', ',', 'including', '', 'art', '', '(', '', 'the', '', ')', ',', 'created', '``', '', 'town', \"''\", ',', 'a', '', 'format', 'similar', 'to', 'american', '', ',', 'with', 'each', 'show', 'focusing', 'on', 'a', 'different', 'detroit', 'area', 'high', 'school', '.', '', '']\n", "['', ')', \"''\", ',', 'the', 'character', 'of', 'whom', 'is', 'based', 'on', 'dj', '', 'from', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'software', 'can', 'be', 'deployed', '', ',', 'hosted', 'in', 'a', 'data', 'center', ',', 'or', 'run', 'on', 'a', '', 'platform', '(', 'see', 'operating', 'environment', 'below', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'led', 'to', 'queensland', 'hospitals', 'refusing', 'to', 'perform', 'medical', '', 'given', 'the', 'section', '2', '8', '2', '', 'from', 'criminal', '', 'appeared', 'to', 'cover', 'only', 'surgical', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'lawson', '', 'against', 'the', 'return', ',', 'but', 'no', 'report', 'was', 'forthcoming', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'network', 'also', 'confirmed', 'in', 'its', 'tv', 'news', 'program', '``', '', '', \"''\", 'that', 'the', 'images', 'of', 'the', 'paper', 'ball', 'preceded', 'the', 'scene', 'with', 'the', 'roll', 'of', 'duct', 'tape', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'closest', 'siding', 'on', 'the', 'government', 'railway', 'to', 'the', '', 'creek', 'tin', 'fields', 'was', '', ',', 'also', 'known', 'as', 'the', '3', '5', 'mile', ',', 'at', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'documentary', 'evidence', 'from', '', 'indicates', 'that', 'in', 'reality', ',', 'the', 'boy', 'was', 'initially', 'maintained', 'as', 'heir', 'and', 'only', 'removed', 'after', 'the', 'birth', 'of', 'ptolemy', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'employed', 'in', 'the', 'criminal', 'department', 'of', 'kingsley', '', ',', 'a', 'firm', 'of', '', 'based', 'in', '', ',', 'central', 'london', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'title', '', 'states', 'that', 'the', '', 'should', 'apply', '', 'approval', 'and', 'fast', 'track', '', 'to', '', 'the', 'development', 'of', '', 'for', 'serious', 'or', '', 'diseases', ',', 'while', 'maintaining', 'safety', 'and', 'effectiveness', 'standards', 'for', 'such', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'their', '', '', 'are', '', ',', 'and', 'each', 'has', 'a', 'dark', 'dorsal', '', 'seen', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'thesis', 'is', 'titled', '``', 'design', '', 'for', '', '', 'in', '', 'sensor', 'networks', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'prince', '', '', 'died', 'at', 'the', '', 'on', '1', '7', 'september', '1', '8', '7', '6', ',', 'at', 'the', 'age', 'of', 'only', '1', 'year', '9', 'months', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bruno', 'conti', '(', ';', 'born', '1', '3', 'march', '1', '9', '5', '5', ')', 'is', 'an', 'italian', 'football', 'manager', 'and', 'former', 'player', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'yale', 'school', 'of', 'drama', ',', 'where', 'he', 'obtained', 'an', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'places', ',', 'such', 'as', 'in', 'the', '', 'area', ',', 'have', 'rough', 'stone', '', 'without', 'vegetation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'murray', 'sent', 'highway', 'crews', 'across', 'the', 'new', 'bridge', 'to', 'destroy', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'also', 'formed', 'an', 'important', 'connection', 'with', 'the', '', 'valley', 'railway', 'between', 'bohemia', 'and', 'western', 'germany', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'general', 'frank', 'w.', '', ',', 'the', 'i', 'corps', \"'\", 'commander', ',', 'watched', 'the', 'action', 'from', 'an', 'apple', 'orchard', 'at', 'the', 'side', 'of', 'the', 'road', ',', 'and', 'about', '', 'general', 'gay', 'came', 'up', 'and', 'joined', 'him', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'contains', '8', '1', '', ',', 'based', 'on', 'patterns', 'and', 'scoring', 'elements', 'popular', 'in', 'classic', 'and', 'modern', 'regional', 'chinese', 'variants', ';', 'some', 'table', 'practices', 'of', 'japan', 'have', 'also', 'been', 'adopted', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'north', 'african', '', 'regiment', 'was', 'composed', 'of', 'over', '3', ',', '0', '0', '0', 'men', '(', 'including', '5', '0', '0', 'officers', 'and', '', ')', 'and', '2', '0', '0', 'vehicles', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'necklace', 'had', 'been', 'purchased', 'by', '', 'and', 'given', 'to', '', 'to', 'pass', 'along', 'to', 'the', 'queen', ',', 'she', 'and', 'her', 'husband', ',', '', 'de', 'la', '', ',', 'immediately', 'took', 'off', 'to', 'london', 'and', 'began', 'selling', 'the', '', 'from', 'the', 'necklace', 'for', 'their', 'own', 'profit', '.', '', '', '']\n", "['', '', '', 'has', 'also', 'served', 'as', 'a', 'member', 'of', 'the', 'council', 'and', 'the', 'spiritual', 'coordinator', 'of', 'the', 'portuguese', 'knights', 'of', 'the', 'order', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', 'scottish', 'gaelic', '``', 'an', '', '', \"''\", ')', 'is', 'a', 'village', 'in', 'the', 'stirling', 'council', 'area', ',', 'scotland', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'tip', 'dating', 'is', 'a', 'technique', 'used', 'in', 'molecular', 'dating', 'that', 'allows', 'the', '', 'of', '', '', 'trees', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'highway', 'runs', 'from', 'the', 'beginning', 'of', 'state', 'maintenance', 'east', 'to', 'ky', '6', '1', '6', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'males', 'had', 'a', 'median', 'income', 'of', '$', '2', '7', ',', '5', '0', '0', 'versus', '$', '1', '6', ',', '8', '5', '7', 'for', 'females', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '9', '7', 'the', 'family', 'firm', 'became', 'a', 'public', 'company', ',', '``', '', 'sons', 'and', 'co.', 'ltd', \"''\", ',', 'and', 'in', '1', '8', '9', '0', 'the', 'house', 'of', '', 'was', 'appointed', '', '', 'and', 'house', '', 'to', 'the', 'then', 'prince', 'of', 'wales', '.', '', '', '', '', '']\n", "['', 'the', 'contribution', 'level', 'was', 'reduced', 'from', '1', '.', '3', '%', 'for', 'employees', 'and', 'employers', 'during', 'the', 'covid-', '1', '9', 'pandemic', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'moth', 'in', 'the', 'family', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', ',', 'director', 'general', 'of', 'unesco', 'announced', 'the', 'decision', 'at', 'its', 'headquarters', 'in', 'paris', 'on', '3', '0', 'october', '2', '0', '1', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'has', 'also', 'established', 'itself', 'to', 'be', 'an', '', 'valid', 'measure', ',', 'and', 'has', 'demonstrated', 'this', 'through', 'its', '', 'validity', ',', '', 'validity', ',', 'and', '', 'validity', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '4', ',', '', '', 'started', 'working', 'with', 'his', 'father', 'in', 'their', 'first', '', ',', '', \"'s\", 'hair', 'and', 'beauty', ',', 'in', 'the', '', 'hotel', 'in', 'new', 'delhi', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'german', '', '', 'unit', 'was', 'formed', 'under', 'the', 'direction', 'of', 'alfred', 'von', '', 'during', 'world', 'war', 'ii', ',', 'an', 'olympic', 'swimmer', 'originally', 'from', 'austria', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'terminal', 'risk', 'management', 'is', 'only', 'performed', 'in', 'devices', 'where', 'there', 'is', 'a', 'decision', 'to', 'be', 'made', 'whether', 'a', '', 'should', 'be', '', 'on-line', 'or', 'offline', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'situated', 'near', 'costa', 'rica', ',', 'scattered', '', 'accompanied', 'the', 'well-defined', 'system', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '7', 'it', '', 'the', 'tv', 'series', '``', \"''\", 'with', '', 'and', 'animated', 'the', 'film', '``', '', '2', '8', '', ':', '', 'no', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '7', '7', 'he', 'became', 'a', 'member', 'of', 'the', '', '(', 'chronicles', ')', 'art', 'group', ';', 'and', 'in', '1', '9', '8', '2', 'he', 'founded', 'the', '', '', '(', 'new', 'artists', ')', 'movement', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'appointed', 'his', 'press', '', ',', 'the', '', 'turned', 'politician', 'm', '', 'rahman', '', ',', 'as', 'his', 'chief', 'presidential', 'advisor', ',', 'with', 'the', 'status', 'of', 'minister', 'of', 'state', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '4', '9', '.', '1', '%', 'of', 'people', 'were', 'born', 'in', 'australia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'turned', 'northward', 'on', 'june', '2', '4', ',', 'strengthened', 'to', 'a', 'secondary', 'peak', 'of', '1', '6', '0', 'mph', '(', '2', '6', '0', '', ')', ',', 'and', '', 'before', 'it', 'made', '', 'in', 'taiwan', 'on', 'june', '2', '5', 'as', 'a', 'category', '2', 'typhoon', '.', '', '', '', '', '', '', '']\n", "['', 'as', 'of', 'j', '2', '', '5', '.', '0', ',', 'this', 'problem', 'has', 'been', 'fixed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'lawson', 'was', 'high', 'sheriff', 'of', 'cumberland', 'in', '1', '6', '8', '9', 'and', 'although', 'he', 'had', 'succeeded', 'to', 'the', 'family', 'estate', 'the', 'previous', 'year', 'he', 'quickly', 'sought', ',', 'and', 'was', 'granted', ',', 'permission', 'to', 'live', 'outside', 'the', 'county', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'station', 'has', 'been', 'classified', 'as', 'a', '``', 'typical', '', \"''\", ',', 'in', 'which', '', 'to', '', 'percent', 'of', 'the', '', 'walk', 'to', 'the', 'station', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'second', 'annual', '', 'awareness', 'game', 'took', 'place', 'between', 'on', 'december', '1', '5', ',', '2', '0', '1', '3', ',', 'when', '', 'played', 'the', 'usa', 'under-', '1', '8', 'men', \"'s\", 'ice', 'hockey', 'team', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'less', 'than', 'a', 'year', 'later', ',', '', 'already', 'gave', 'a', '', 'solo', 'concert', 'in', ',', 'and', 'for', 'the', 'performance', 'of', '', 'by', 'david', '', '``', 'dance', 'time', 'in', 'the', 'sun', \"''\", 'he', 'received', 'first', 'prize', 'of', 'the', 'international', 'festival', '``', 'golden', '', \"''\", '.', '', '', '', '', '', '']\n", "['', 'at', 'an', 'international', 'level', 'the', 'venue', 'is', 'used', 'for', '', 'races', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'kim', 'first', 'meets', 'him', 'when', 'he', 'calls', 'her', 'to', '', 'to', '', 'a', 'jade', 'monkey', 'idol', 'from', 'a', 'tomb', 'full', 'of', 'traps', 'and', 'unknowingly', '', 'a', 'set', 'of', 'four', 'such', 'mystical', 'idols', 'in', 'his', 'possession', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'infants', ',', 'some', 'elderly', 'individuals', ',', 'and', 'those', 'with', 'neurological', 'injury', ',', 'urination', 'may', 'occur', 'as', 'an', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'october', '1', ',', '1', '9', '4', '1', ',', 'he', 'purchased', 'controlling', 'interest', 'of', 'the', '', 'investment', 'trust', 'at', 'a', 'public', 'auction', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '9', '0', '9', '', 'was', 'a', 'member', 'of', 'the', '``', 'women', \"'s\", '', 'political', 'association', \"''\", ',', 'becoming', 'its', 'president', 'in', '1', '9', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'concepts', 'of', 'the', '', 'can', 'be', 'used', 'to', 'engineer', ',', '', 'and', '', '', 'and', 'other', '', 'with', '', 'conditions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'found', 'to', 'be', 'absent', 'from', 'all', 'studied', 'taxa', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'also', 'won', 'gold', 'in', '``', 'women', \"'s\", '3', 'm', '', \"''\", ',', 'giving', 'her', 'all', 'three', 'medals', 'in', 'three', '', 'in', 'this', 'event', 'after', 'silver', 'in', '2', '0', '0', '4', 'and', 'bronze', 'in', '2', '0', '0', '8', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'originally', ',', '', 'represented', 'data', 'in', 'the', '', '(', 'lines', ')', 'and', 'the', '', 'of', 'parallel', 'lines', ',', 'and', 'may', 'be', 'referred', 'to', 'as', 'linear', 'or', '', '', 'or', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'caroline', 'and', 'josef', 'died', 'of', '', 'in', '1', '8', '5', '0', ',', 'and', 'a', 'year', 'later', 'his', 'father', 'died', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'review', '', 'website', '', 'tomatoes', ',', 'the', 'film', 'holds', 'an', 'approval', 'rating', 'of', '9', '0', '%', 'based', 'on', '3', '6', '3', 'reviews', ',', 'and', 'an', 'average', 'rating', 'of', '8', '.', '0', '0', '/', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'started', 'playing', 'basketball', 'while', 'studying', 'in', 'secondary', 'school', ',', 'and', 'was', 'selected', 'for', 'his', 'school', 'team', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', 'of', 'confederate', 'forces', 'under', 'the', 'commands', 'of', 'col.', '', ',', '', 'robert', '', 'and', 'robert', 'e.', 'lee', 'enabled', 'the', 'establishment', 'of', 'a', '', 'government', 'in', '', ',', 'one', 'of', 'virginia', \"'s\", 'largest', 'cities', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'national', 'monuments', 'are', '', 'after', 'approval', 'by', 'the', 'cabinet', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '5', 'he', 'recorded', 'an', 'album', 'with', ',', 'a', 'record', 'making', 'company', ',', 'where', 'he', 'sang', '', '', \"'s\", 'songs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'we', 'entered', 'and', 'he', 'presented', 'islam', 'to', 'us', 'and', 'we', 'became', 'muslim', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'area', 'roughly', '', 'to', 'the', '', ',', '', ',', '', ',', '', ',', 'san', '', ',', 'and', 'san', 'francisco', '', 'of', 'barrio', 'san', 'juan', '', 'in', 'the', 'municipality', 'of', 'san', 'juan', ',', 'puerto', 'rico', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'village', 'in', 'the', 'dutch', 'province', 'of', 'south', 'holland', ',', 'the', 'netherlands', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'font', 'was', 'included', 'with', 'microsoft', 'software', 'after', 'microsoft', 'hired', 'norton', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'miller', \"'s\", 'exit', ',', '', 'returned', 'to', 'the', 'role', 'for', 'multiple', 'extended', 'stay', 'visits', ';', 'her', 'latest', '', 'lasting', 'from', 'november', '2', '0', '1', '9', 'to', 'may', '2', '0', '2', '0', ',', 'when', '', 'leaves', 'salem', 'for', 'florida', 'to', 'seek', 'medical', 'treatment', '.', '', '', '', '', '', '']\n", "['', 'in', 'the', 'spring', 'of', '1', '9', '4', '2', ',', '8', '0', '4', 'jews', 'of', '', 'and', 'over', '3', '0', '0', 'of', 'the', 'surrounding', 'villages', 'were', 'put', 'into', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'spitzer', 'ran', 'out', 'of', 'liquid', '', 'coolant', 'on', '1', '5', 'may', '2', '0', '0', '9', ',', 'which', 'stopped', '', 'observations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thompson', 'academy', 'became', 'a', 'college', '', 'boarding', 'school', 'and', 'continued', 'the', 'tradition', 'of', 'shelter', 'and', 'guidance', 'to', 'boys', 'from', 'the', 'boston', 'area', 'and', 'beyond', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'beginning', 'of', 'the', 'story', 'zenon', 'is', 'against', 'beet', 'becoming', 'a', '', 'buster', 'since', 'he', 'left', 'beet', 'in', 'the', 'care', 'of', '', \"'s\", 'parents', 'to', 'live', 'a', 'peaceful', 'life', 'in', 'the', 'age', 'of', 'darkness', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'later', '', 'to', 'cover', 'the', 'wood', 'siding', 'with', '', 'brick', 'known', 'as', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'the', 'time', 'the', 'indian', 'battalion', 'reached', 'the', 'point', 'of', 'conflict', ',', 'chinese', 'units', 'controlled', 'both', 'banks', 'of', 'the', '', '', 'river', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'thought', 'that', ',', 'at', 'the', 'time', 'of', 'the', 'formation', 'of', 'the', 'city', ',', 'there', 'was', 'a', 'civil', 'war', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'north', 'branch', 'canal', 'historically', 'had', 'an', '', 'that', 'crossed', '', 'creek', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'wwe', 'great', 'balls', 'of', 'fire', 'was', 'a', 'professional', 'wrestling', '', '(', '', ')', 'and', 'wwe', 'network', 'event', 'produced', 'by', 'wwe', 'for', 'their', '', 'brand', 'division', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'gone', ',', 'she', 'met', 'an', 'african-american', 'doctor', 'named', 'harrison', 'davis', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'person', 'with', '', '', '', 'may', 'be', 'screened', 'for', 'such', 'disorders', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', '', \"''\", '', 'both', '', 'through', 'spreading', '', 'and', '', 'through', '', 'of', '', 'achenes', ',', 'a', 'dry', 'fruit', 'each', 'of', 'which', 'carries', 'a', 'single', 'seed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'following', 'years', 'he', 'produced', 'his', 'most', 'prestigious', 'and', 'well-known', 'designs', ',', 'e.g', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', '9', '6', '7', 'there', 'is', 'one', '', 'from', '9', '6', '8', ',', 'one', 'from', '9', '6', '9', ',', 'three', 'from', '9', '7', '1', ',', 'all', 'royal', '', 'of', '', 'iii', 'and', '', '', 'of', 'león', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'other', 'passengers', 'consisted', 'of', '1', '7', '8', 'germans', ',', '6', '0', '', ',', '4', '3', '', ',', '2', '2', 'swiss', 'and', '1', '7', 'italians', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mackenzie', '', 'the', 'moral', 'and', 'political', '', 'of', 'the', 'government', 'but', 'was', '', 'of', 'how', 'to', 'create', 'his', 'ideal', 'society', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'two', '', 'of', '', 'and', '', '', 'were', 'arrested', 'and', '', 'in', 'paris', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'martin', 'was', 'born', 'in', 'hull', ',', 'quebec', '(', 'now', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'most', 'natural', 'action', '', 'to', 'follow', 'an', '', '', ',', 'and', 'animation', 'should', '', 'to', 'this', 'principle', 'by', 'following', 'implied', '``', '', \"''\", 'for', 'greater', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'reviews', 'from', '', 'of', 'the', 'franchise', 'stated', 'that', 'the', 'coaches', 'were', 'found', 'to', 'be', 'a', 'bit', 'exaggerated', 'on', 'television', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'but', 'his', 'main', 'academic', 'contribution', 'was', 'the', 'development', 'of', 'the', 'research', 'line', 'on', '', '', 'of', 'gender', 'violence', ',', 'with', 'the', 'ultimate', 'aim', 'of', '', 'gender', 'violence', 'in', 'society', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '3', '0', 'november', '2', '0', '1', '6', ',', 'charles', 'signed', 'for', '', '', 'in', 'the', 'j', '2', 'league', ',', 'with', 'his', 'contract', 'being', '', 'by', 'mutual', 'consent', 'on', '2', '6', 'june', '2', '0', '1', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'some', 'of', 'its', 'names', '', ',', '``', 'v.', '', \"''\", 'has', 'a', 'long', 'history', 'of', 'use', 'in', '', 'and', 'folk', 'medicine', ',', 'both', 'for', 'epilepsy', ',', 'skin', 'diseases', 'and', '', ',', 'and', 'for', '', 'problems', 'such', 'as', '', ',', 'asthma', ',', 'and', 'cold', '', '.', '', '', '', '']\n", "['', 'this', 'light', 'was', 'erected', 'to', 'replace', 'the', 'old', 'frank', \"'s\", 'island', 'light', ',', 'which', 'was', 'abandoned', 'when', 'the', 'neighboring', 'channel', 'became', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'has', 'designed', 'book', 'covers', 'for', 'forty', 'penguin', 'books', 'shakespeare', 'editions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'station', 'is', 'owned', 'by', 'gray', 'television', ',', 'as', 'part', 'of', 'a', '', 'with', 'abc', 'affiliate', '', '(', 'channel', '1', '3', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'priest', 'has', 'delivered', 'talks', 'on', 'the', 'relationship', 'between', 'philosophy', 'and', 'theology', 'at', 'numerous', 'events', ',', 'some', 'of', 'which', 'can', 'be', 'watched', 'online', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'firm', 'was', 'first', 'located', 'on', '', 'street', 'early', 'in', 'the', 'century', ';', 'it', 'moved', 'to', '', 'hill', 'in', 'the', 'middle', 'of', 'the', 'century', ',', 'and', 'then', 'to', 'fleet', 'street', 'from', '1', '8', '7', '1', 'to', '1', '8', '9', '0', '.', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'was', 'a', 'notable', 'historian', 'of', 'portuguese', 'art', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', ',', 'middle', 'section', 'of', 'the', 'movement', 'is', 'a', '', 'one', ',', 'characterized', 'by', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'i', 'was', 'taught', 'that', 'the', 'finished', 'sculpture', 'was', 'maybe', 'the', 'end', 'of', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'include', 'the', '', 'individual', 'crossing', 'their', 'legs', ',', 'making', 'tight', '', 'with', 'both', 'hands', ',', 'or', '', '', 'of', 'the', '', 'or', 'arms', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'played', 'high', 'school', 'football', 'for', 'the', 'a.', '', '', 'high', 'school', 'dolphins', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '', 'all', 'collected', 'samples', 'of', 'the', 'species', 'to', 'be', 'registered', 'and', 'made', 'it', 'illegal', 'to', 'collect', 'the', 'species', 'without', 'prior', 'consent', 'from', 'relevant', 'state', 'officials', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'federal', 'election', ',', 'a', 'total', 'of', '2', '8', '3', 'votes', 'were', 'cast', ',', 'and', 'the', 'voter', 'turnout', 'was', '4', '1', '.', '0', '%', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'requires', 'significant', '', 'to', '', 'affect', 'the', '3', '', '4', 'he', 'ratio', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'american', 'bar', 'association', ',', 'which', 'has', 'consistently', 'refused', 'to', 'support', 'or', 'participate', 'in', 'law', 'school', 'rankings', ',', 'has', 'issued', '', 'on', 'law', 'school', 'rating', 'systems', ',', 'and', 'encourages', 'prospective', 'law', 'students', 'to', 'consider', 'a', 'variety', 'of', 'factors', 'in', 'making', 'their', 'choice', 'among', 'schools', '.', '', '', '', '', '']\n", "['', 'it', 'formerly', 'hosted', 'the', 'pbr', 'australia', 'world', 'finals', 'since', '2', '0', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '4', ',', '', 'xi', 'celebrated', 'its', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'teaching', 'extended', 'to', 'california', \"'s\", 'chinese', 'immigrants', ';', 'she', 'was', 'also', 'a', 'teacher', 'of', 'music', ',', '', 'and', '``', '', '', \"''\", 'in', 'various', '', ';', 'and', 'was', 'a', 'state', 'lecturer', 'on', 'scientific', '', 'in', 'colleges', 'and', 'public', 'schools', '.', '', '', '', '', '', '', '', '']\n", "['', 'the', 'compilation', 'is', 'guided', 'by', 'a', '``', '', \"''\", 'that', 'moves', 'around', 'the', 'image', ',', 'from', 'one', 'continuous', 'coloured', 'region', 'to', 'the', 'next', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'can', 'often', 'be', '', 'easily', 'to', 'allow', 'the', 'adaptation', 'of', 'the', 'process', 'to', 'fit', '', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'trained', 'at', 'the', 'royal', 'irish', 'academy', 'of', 'music', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'geelong', 'made', 'it', 'into', 'the', 'final', 'in', 'three', 'of', 'the', 'seasons', 'he', 'was', 'at', 'the', 'club', ',', '', 'was', 'never', 'selected', 'for', 'a', 'finals', 'game', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '1', '9', '9', '4', 'national', 'census', 'reported', '', 'had', 'a', 'total', 'population', 'of', '1', '5', ',', '7', '6', '4', 'of', 'whom', '7', ',', '8', '6', '1', 'were', 'men', 'and', '7', ',', '9', '0', '3', 'were', 'women', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'resigned', 'his', 'seat', 'on', '2', '7', 'october', '1', '9', '0', '2', 'by', 'the', '', 'device', 'of', 'accepting', 'appointment', 'as', 'steward', 'of', 'the', '', 'hundreds', ',', 'triggering', 'the', 'by-election', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '1', 'it', 'had', '1', '5', '8', '1', 'inhabitants', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'sentence', 'was', 'pronounced', 'on', 'september', '1', '7', ',', '1', '5', '5', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'failed', 'attempt', 'to', 'capture', 'the', 'small', 'finnish', 'icebreaker', '``', '', \"''\", 'from', 'the', 'russian', '', 'in', 'march', '1', '9', '1', '8', ',', 'finnish', 'captain', '', 'segersven', 'and', 'his', 'men', 'shifted', 'their', 'focus', 'to', 'the', 'much', 'larger', '``', '', \"''\", '.', '', '', '', '', '', '', '', '']\n", "['', 'trailers', 'from', 'a', 'fictional', 'cbs', '', 'show', 'featuring', 'dutch', 'plains', '(', 'kate', '', ')', 'as', 'lesbian', 'cop', 'les', '', ',', 'and', '', '', '(', '', '', ')', 'as', '', 'cop', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', 'featured', 'a', 'round', 'of', 'the', 'fia', 'european', '', 'championship', 'since', '2', '0', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'unlike', 'other', 'events', 'using', 'freestyle', ',', '', 'could', 'not', 'use', 'butterfly', ',', '', ',', 'or', '', 'for', 'the', 'freestyle', 'leg', ';', 'most', '', 'use', 'the', 'front', '', 'in', 'freestyle', 'events', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'were', '6', 'households', ',', 'of', 'which', '3', '3', '.', '3', '%', 'had', 'children', 'under', 'the', 'age', 'of', '1', '8', 'living', 'with', 'them', ',', '8', '3', '.', '3', '%', 'were', 'married', 'couples', 'living', 'together', ',', 'and', '1', '6', '.', '7', '%', 'had', 'a', 'male', '', 'with', 'no', 'wife', 'present', '.']\n", "['', 'the', 'comparative', '', 'indicates', 'the', 'maximum', 'degree', 'of', 'the', 'quality', 'expressed', 'in', 'comparison', 'to', 'other', 'items', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'conducts', 'research', ',', 'provides', 'training', ',', 'runs', 'conferences', 'and', '', 'professional', '', 'within', 'all', 'public', 'and', 'private', 'fire', 'sectors', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'east', '', 'dialect', 'branch', 'is', 'one', 'of', 'the', 'most', 'spoken', 'dialect', 'branches', 'in', 'germany', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'being', 'used', 'for', 'a', 'variety', 'of', 'other', 'events', 'it', 'closed', 'in', '2', '0', '0', '3', ',', 'and', 'is', 'now', 'vacant', ',', 'with', 'potential', 'plans', 'to', '', 'it', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '8', '5', '0', 'core', 'words', 'of', 'basic', 'english', 'are', 'found', 'in', '', \"'s\", 'basic', 'english', 'word', 'list', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'eliminated', 'on', '5', 'november', '2', '0', '1', '7', ',', 'coming', 'in', 'tenth', 'place', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', '1', '8', 'th', 'century', ',', 'migration', 'inland', 'increased', 'along', 'the', '', '', 'and', '', 'valley', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', 'march', '2', '0', '0', '8', ',', 'four', '', 'by', 'the', 'state', 'attorney', 'general', \"'s\", 'office', ',', 'the', 'state', 'senate', 'investigations', 'committee', ',', 'the', 'albany', 'county', 'district', 'attorney', \"'s\", 'office', ',', 'and', 'the', '', 'state', '', 'board', ',', 'the', 'new', 'york', 'commission', 'on', 'public', 'integrity', ',', 'were', 'ongoing', '.']\n", "['', 'this', 'project', 'creates', 'a', 'public', 'park', 'and', 'water', 'treatment', 'facility', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mccormick', 'also', 'served', 'as', 'deputy', 'collector', 'of', 'customs', ',', 'a', '', 'and', 'deputy', 'postmaster', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'ngr', 'offered', 'both', 'passenger', 'and', 'freight', 'service', 'and', 'also', 'delivered', 'letters', 'and', '', 'for', 'the', 'post', 'office', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'population', 'at', 'the', '2', '0', '1', '1', 'census', 'was', 'less', 'than', '1', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '6', ',', '', 'worked', 'with', '', 'on', 'their', 'album', '``', 'out', 'in', 'the', 'storm', \"''\", ',', 'performing', 'on', 'the', 'album', 'and', 'also', 'contributing', 'to', 'some', 'of', 'the', '', 'process', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'illiterate', 'until', 'the', 'episode', '``', 'the', 'blank', 'page', ',', \"''\", 'where', 'she', 'tried', 'out', 'for', '', 'and', 'was', '', 'because', 'she', '', 'that', '``', '', \"''\", 'spelled', '``', 'win', '!', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'two', '', 'of', 'the', 'type', '9', '0', 'were', 'completed', 'in', '1', '9', '8', '0', ',', 'both', 'armed', 'with', 'a', 'japanese', '1', '2', '0', 'mm', 'gun', '(', 'produced', 'by', 'japan', 'steel', 'works', 'limited', ')', 'firing', 'japanese', 'ammunition', '(', 'produced', 'by', '', 'industries', 'limited', ')', '.', '', '', '', '', '', '']\n", "['', 'after', 'several', 'months', 'of', 'negotiations', ',', 'the', 'differences', 'were', 'settled', ',', 'and', 'in', 'december', '2', '0', '0', '6', ',', '', 'digital', '', '1', '3', '.', '2', 'was', 'placed', 'on', 'cable', 'channel', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'traditionally', 'the', '', 'only', 'play', 'against', 'the', 'best', 'currie', 'cup', 'teams', 'when', 'touring', 'south', 'africa', 'but', 'the', 'south', 'african', 'rugby', 'union', 'felt', 'the', 'best', 'players', 'from', 'all', 'teams', 'should', 'have', 'an', 'opportunity', 'to', 'play', 'against', 'the', 'touring', 'side', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'still', 'a', 'law', 'student', ',', 'he', 'ran', 'his', 'father', ',', 'william', 'la', '', \"'s\", ',', 'congressional', 'office', 'in', 'the', 'nation', \"'s\", 'capital', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'each', 'year', ',', '2', '6', 'boys', 'from', 'the', 'sixth', 'form', 'will', 'train', 'with', 'the', 'professionals', 'whilst', 'studying', 'for', 'a', 'levels', 'and', '', 'at', 'the', 'school', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'the', 'author', 'of', 'a', 'book', 'on', 'australian', 'energy', 'policy', ',', '``', 'energy', 'in', 'australia', \"''\", 'and', 'over', '5', '0', 'scientific', 'papers', ',', '', 'and', 'articles', 'on', 'energy', 'technology', 'and', 'environmental', 'policy', ',', 'and', 'is', 'recognised', 'as', 'one', 'of', 'australia', \"'s\", 'leading', 'experts', 'in', 'this', 'field', '.', '', '']\n", "['', 'the', 'following', 'list', 'of', '', '', 'is', 'based', 'on', 'a', '2', '0', '0', '8', 'literature', 'survey', 'by', 'dennis', '', 'and', 'colleagues', ',', 'in', 'addition', 'to', 'accounts', 'of', 'several', 'new', 'species', 'published', 'since', 'then', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'the', '3', '6', 'th', 'edition', 'of', 'the', 'event', 'known', 'that', 'year', 'as', 'the', '', 'swiss', '', ',', 'and', 'was', 'part', 'of', 'the', 'international', 'series', 'of', 'the', '2', '0', '0', '5', 'atp', 'tour', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'the', 'penguin', 'guide', 'to', 'jazz', \"''\", 'described', 'this', 'and', '``', '', \"''\", 'from', 'the', 'same', 'label', 'as', 'having', '``', 'a', 'soft', 'and', 'occasionally', '', 'quality', 'which', 'is', 'highly', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'further', 'said', 'that', 'the', 'poem', '', 'about', 'not', '', 'to', 'society', 'and', 'being', 'a', 'leader', 'as', 'well', 'as', 'accepting', 'that', 'being', '', 'is', 'a', 'positive', 'thing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'his', 'military', 'service', ',', 'davis', 'was', 'the', 'operator', 'of', '``', '', 'protective', '', ',', 'llc', \"''\", 'a', 'company', 'organized', 'as', 'an', 'llc', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'president', 'had', 'the', '', 'to', '', 'the', 'parliament', 'of', '', 'and', 'call', 'a', '', 'election', ',', 'provided', 'that', 'no', 'motion', 'of', 'no', 'confidence', 'was', 'in', 'process', 'and', 'that', 'dissolution', 'did', 'not', 'occur', 'before', 'one', 'year', 'had', '', 'since', 'the', 'previous', 'one', '.', '', '', '', '', '', '', '']\n", "['', 'following', 'the', 'completion', 'of', 'her', 'phd', ',', 'she', 'served', 'as', 'a', '', '', 'at', 'stanford', 'university', 'and', 'in', '2', '0', '1', '6', 'was', 'promoted', 'to', 'staff', '', 'at', '', 'national', '', 'laboratory', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'ever', 'opposition', 'at', 'firs', 'park', 'was', 'heart', 'of', '', 'f.c', '..', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ran', 'jacob', '', '(', 'also', '``', '', \"''\", 'and', '``', '', ',', \"''\", 'and', '``', '', \"''\", ';', '', '', ';', 'december', '1', '4', ',', '1', '9', '6', '6', ')', 'is', 'an', 'israeli', 'former', 'olympic', 'competitive', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'allowed', 'the', 'third', '', ',', 'the', 'air', 'forces', ',', 'a', 'solid', 'lead', 'in', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'but', 'they', 'all', 'are', '', 'and', 'speak', '&', 'amp', ';', 'learn', 'bengali', ',', 'as', 'khotta', '', 'has', 'no', 'written', 'form', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'few', 'of', 'these', 'resources', 'include', 'sample', 'campaign', 'petition', 'forms', ',', 'community', 'outreach', 'letters', ',', 'and', 'press', 'release', 'examples', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', '', '', 'that', 'has', 'been', 'isolated', 'from', 'the', 'stem', 'and', 'leaves', 'of', '``', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'an', 'author', '', '', \"'\", 'essays', ',', 'fiction', ',', 'interviews', ',', 'and', 'performance', 'texts', 'have', 'been', '', 'in', 'the', 'books', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'cole', 'joined', '', ',', 'and', 'received', 'training', 'from', 'future', 'team', '7', 'teammate', '', '', '(', 'who', 'would', 'eventually', 'become', 'the', 'hero', 'known', 'as', '', ')', ',', 'as', 'well', 'as', 'former', 'members', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'through', 'fuel', ',', 'tobacco', 'and', 'alcohol', 'taxes', ')', 'while', 'their', 'health', 'insurance', 'costs', 'are', 'borne', 'by', 'their', 'home', 'province', 'in', 'atlantic', 'canada', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', '1', '0', '6', '.', '7', 'fm', ')', 'is', 'a', 'radio', 'station', 'broadcasting', 'a', 'variety', 'format', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'various', 'companies', 'have', 'attempted', 'to', 'claim', '', 'for', 'specific', 'aspects', 'of', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'earned', 'a', 'certificate', 'in', 'education', 'and', 'a', 'ba', 'degree', 'from', 'the', 'respective', 'institutions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'chocolate', ',', 'typical', 'of', 'the', 'municipality', 'of', 'modica', 'in', '', ',', 'characterized', 'by', 'an', 'ancient', 'and', 'original', '', 'using', 'manual', '', '(', 'rather', 'than', '', ')', 'which', 'gives', 'the', 'chocolate', 'a', '', '', 'texture', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'd.', '', ',', 'a', 'biblical', 'scholar', ',', 'says', 'that', '``', 'today', 'there', 'is', 'not', 'a', 'single', 'recognized', 'scholar', 'on', 'the', 'planet', 'who', 'has', 'any', '', 'about', 'the', 'matter', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'considered', 'the', 'longest', '', 'in', 'the', 'world', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'buried', 'at', '', ',', '', ',', 'having', 'had', 'issue', ',', 'two', 'sons', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'obregón', 'is', 'the', 'artist', 'perhaps', 'most', 'closely', 'identified', 'with', 'the', 'spirit', 'of', 'artistic', '', '', 'in', 'the', '1', '9', '5', '0', 's', 'in', 'colombia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hamilton', \"'s\", '', 'coliseum', 'and', '', 'were', 'reportedly', 'under', 'consideration', 'to', 'host', 'the', 'franchise', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'like', 'all', 'charities', ',', 'the', 'covid-', '1', '9', 'pandemic', 'has', 'resulted', 'in', 'new', 'financial', '', 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'found', 'in', 'north', 'america', ',', 'where', 'it', 'has', 'been', 'recorded', 'from', 'arizona', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'custom', 'pilgrimage', 'site', 'for', 'locals', ',', 'believed', 'by', 'many', 'as', 'a', 'holy', 'mountain', ',', 'a', '', 'location', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'patricia', 'died', 'in', 'loughborough', 'the', 'following', 'year', ';', 'she', 'was', '4', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'defeated', '', 'clark', 'via', '', 'in', 'october', '2', '0', '1', '0', 'and', 'nick', '', 'via', 'submission', 'in', 'february', '2', '0', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', 'born', '3', 'january', '1', '9', '6', '1', ')', 'is', 'an', 'italian', 'lightweight', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'released', 'in', 'april', '2', '0', '0', '9', 'for', 'microsoft', 'windows', 'the', 'game', 'is', 'a', 'sequel', 'to', '``', 'fantasy', 'wars', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', 'ages', 'nine', 'to', 'fourteen', ',', 'page', 'lived', 'in', 'europe', 'with', 'her', 'parents', 'until', 'her', 'father', 'died', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'july', ',', 'as', 'florida', 'became', 'a', 'global', '', 'of', 'the', 'virus', ',', 'trump', 'called', 'off', 'the', 'event', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'of', 'its', 'services', 'is', 'providing', 'advisors', 'for', 'college', 'and', '', '', 'organizations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'gave', 'an', 'acoustic', 'performance', 'of', 'the', 'song', 'from', 'her', 'home', 'for', 'the', 'television', 'special', '``', 'acm', 'presents', ':', 'our', 'country', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'died', 'on', '1', '5', 'february', '2', '0', '1', '9', ',', 'aged', '7', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', 'the', 'perspective', 'of', '', 'theory', ',', 'a', 'real', 'line', 'bundle', 'therefore', '', 'much', 'the', 'same', 'as', 'a', 'fiber', 'bundle', 'with', 'a', '', 'fiber', ',', 'that', 'is', ',', 'like', 'a', 'double', 'cover', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'call', 'letters', 'were', 'changed', 'to', '', 'the', 'following', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'graduating', 'class', 'of', '1', '9', '7', '5', 'was', 'the', 'first', 'class', 'to', 'attend', '4', 'years', 'in', 'the', 'new', 'building', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'west', 'australian', 'state', 'government', 'continued', 'to', 'support', 'development', 'at', 'the', 'site', ',', 'arguing', 'a', 'lack', 'of', '', 'alternative', 'sites', 'and', 'that', 'geographical', 'expansion', 'of', 'facility', 'areas', 'will', 'be', 'extremely', 'limited', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'of', 'the', 'earliest', 'was', 'the', '', 'atmospheric', 'railway', 'which', 'operated', 'near', 'dublin', 'between', '1', '8', '4', '4', 'and', '1', '8', '5', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'curve', 'has', 'a', '', 'shape', ',', '', 'similar', 'in', 'appearance', 'to', 'a', 'parabolic', '', ',', 'but', 'it', 'is', 'not', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'the', 'state', \"'s\", 'budget', 'declined', 'due', 'to', 'lower', 'oil', 'prices', ',', 'and', 'later', 'due', 'to', '', 'oil', 'production', ',', 'so', 'did', '', \"'s\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'biggest', 'individual', 'successes', 'have', 'been', 'in', 'winning', 'the', '2', '0', '2', '0', 'sony', 'open', 'in', 'hawaii', 'and', 'the', 'australian', 'pga', 'championship', ',', 'which', 'he', 'won', '', 'in', '2', '0', '1', '7', 'and', '2', '0', '1', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'designed', 'to', 'observe', 'air', '', 'triggered', 'by', 'gamma', 'rays', 'and', '', 'rays', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'months', 'were', 'spent', 'in', 'the', 'creation', 'of', '', 'and', 'in', 'the', '', 'of', 'students', 'and', 'models', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'similar', 'thoughts', ',', 'jim', '', 'of', '``', 'the', 'mercury', 'news', \"''\", '', '', 'for', 'her', 'personality', ',', 'saying', 'she', '``', 'dominated', 'our', 'attention', 'and', '', 'during', 'each', 'and', 'every', 'moment', 'of', 'the', 'concert', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'influences', 'on', 'fuel', 'moisture', 'with', 'variance', 'in', 'elevation', ',', 'aspect', ',', 'etc', '.', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'fighting', 'in', 'world', 'war', 'i', ',', 'he', 'began', 'appearing', 'in', '', ',', '', 'a', 'comic', '', 'act', 'that', 'he', 'used', 'successfully', 'for', 'many', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'spangler', 'looks', 'again', ',', 'the', 'duct', 'tape', 'is', 'gone', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'railway', 'was', 'opened', 'to', 'te', '', 'from', 'westport', 'in', '1', '9', '1', '2', ',', 'but', 'a', 'connection', 'through', 'the', '', '', 'to', 'connect', 'with', 'the', 'railway', 'in', '', 'junction', 'was', 'not', 'completed', 'until', '1', '9', '4', '2', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'this', 'experiment', ',', 'he', '', 'assigned', 'districts', 'to', 'receive', 'information', 'on', 'voter', 'registration', 'and', '', 'to', 'vote', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'late', '2', '0', '1', '0', ',', 'hilton', 'announced', 'a', 'name', 'change', 'of', 'the', 'hilton', 'hotels', 'brand', 'to', 'hilton', 'hotels', '&', 'amp', ';', '', 'along', 'with', 'a', 'new', '', 'design', ',', 'as', 'part', 'of', 'a', '', 'effort', 'for', 'the', 'flagship', 'brand', '.', '', '', '', '', '', '', '', '']\n", "['', 'he', 'held', 'a', 'great', '', 'to', '', ',', 'and', 'in', '1', '9', '4', '0', ',', '', 'the', '', ',', 'germany', \"'s\", 'military', 'intelligence', 'service', ',', 'which', 'considered', 'him', 'a', 'valuable', 'asset', 'due', 'to', 'his', 'business', 'connections', 'in', 'france', 'and', 'the', 'united', 'kingdom', '.', '', '', '', '', '', '', '']\n", "['', '1', 'of', 'the', 'uk', 'singles', 'chart', 'in', 'august', 'and', 'two', 'weeks', 'at', 'no', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'each', 'new', 'phase', 'is', 'flooded', 'and', 'naturally', 'populated', 'with', 'wildlife', ',', 'fish', 'samples', 'are', '', 'collected', 'and', '', 'to', 'ensure', 'that', '', 'levels', 'in', 'their', '', 'are', 'below', 'established', 'safe', 'levels', 'for', '', 'birds', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'here', ',', 'she', 'received', 'british', '', ',', '', 'equipment', ',', '', ',', 'and', '', '2', '0', 'mm', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'world', 'war', 'ii', ',', 'the', 'building', 'became', 'the', 'property', 'of', 'the', 'treasury', 'department', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'first', 'known', 'chart', 'was', 'a', 'major', 'world', 'map', ',', 'produced', 'around', '1', '5', '0', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', '', '', 'have', 'voiced', 'concern', 'over', 'the', 'prospect', 'of', 'more', 'drivers', 'using', '', ',', 'which', 'they', 'say', 'has', 'the', 'potential', 'to', '', 'them', 'with', 'a', '', 'of', '', 'and', '', 'and', 'put', 'them', 'at', 'greater', 'risk', 'of', 'an', 'accident', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'every', '', 'space', 'is', 'both', 'a', 'linear', '', 'space', 'and', 'a', '', 'space', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'had', 'been', 'prevalent', 'from', 'the', 'time', 'of', '', 'until', 'after', '1', '4', '0', '6', ',', 'when', 'jerome', 'of', 'prague', ',', 'the', 'friend', 'of', 'john', '', ',', 'introduced', '', 'at', '', ',', 'on', 'which', 'account', 'he', 'was', 'expelled', 'by', 'the', 'faculty', '.', '', '', '', '', '', '', '', '']\n", "['', 'in', 'july', '2', '0', '1', '8', ',', 'during', 'snh', '4', '8', \"'s\", 'fifth', 'general', 'election', ',', 'lin', 'came', 'in', '1', '0', 'th', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mrs', 'tembe', 'was', 'given', 'the', 'storyline', 'following', 'laidlaw', 'telling', 'producers', 'that', 'she', 'wanted', 'her', '', '', 'to', 'have', 'a', 'relationship', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'located', 'on', 'california', 'state', 'route', '8', '6', 'south', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'similar', 'systems', 'still', 'exist', 'in', 'some', 'developing', 'countries', ',', 'but', 'the', 'term', '``', 'privy', 'midden', \"''\", 'is', 'now', 'an', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'rolling', 'stone', \"''\", 'ranked', 'it', '5', '0', 'th', 'on', 'their', 'list', 'of', 'the', '5', '0', 'greatest', '', 'albums', 'of', 'all', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'dog', 'goes', 'in', 'pursuit', ',', 'but', 'reaches', 'a', 'painted', 'white', 'line', 'with', 'a', 'sign', 'that', 'reads', '``', 'rope', 'limit', \"''\", 'which', 'causes', 'the', 'dog', 'to', 'be', '', 'to', 'a', 'stop', 'by', 'the', 'rope', 'around', 'his', 'neck', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'april', '2', '0', '0', '8', 'a', '', 'took', 'place', 'at', 'the', 'faculty', 'of', 'philosophy', 'of', 'the', 'university', 'of', 'oxford', 'on', 'an', '', '', 'by', 'priest', 'entitled', '', 'questions', ':', 'theological', 'answers', \"'\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'university', 'of', 'michigan', 'press', ',', '2', '0', '0', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '0', '.', '0', '%', 'of', 'all', 'households', 'were', 'made', 'up', 'of', 'individuals', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'joshua', 'incorrectly', 'predicted', 'that', 'hillary', 'clinton', 'would', 'win', 'the', '2', '0', '1', '6', 'us', 'election', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', '', 'company', 'was', 'going', 'into', 'voluntary', '', ',', 'with', 'the', 'help', 'of', '', '', ',', 'on', '2', '5', 'july', '2', '0', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'goods', 'arriving', 'from', 'overseas', 'by', 'post', 'were', '', 'by', 'customs', 'and', '', 'officers', 'before', 'being', 'released', 'to', 'australia', 'post', 'for', 'delivery', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', '', 'so', 'that', 'the', 'law', 'can', 'be', 'known', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'part', 'of', '', \"'s\", 'good', 'fortune', 'that', 'he', 'died', 'one', 'year', 'before', 'his', 'whole', 'work', 'dissolved', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'common', 'slavic', 'and', 'later', 'ukrainian', ',', 'it', 'retained', 'its', 'present', 'meaning', 'only', 'for', '', 'verbs', 'and', 'developed', 'a', 'future', 'meaning', 'for', '', 'verbs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'of', '``', 'billboard', \"''\", 'magazine', 'said', 'that', 'the', 'show', \"'s\", 'musical', 'numbers', '``', '', 'the', '', 'punches', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '1', 'it', 'accounted', 'for', '2', '1', '%', 'of', 'total', 'cargo', '', 'in', 'the', 'country', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'so', 'little', 'is', 'known', 'about', 'these', 'ranks', 'that', 'it', 'is', 'impossible', 'to', '', 'them', 'with', 'the', 'traditional', 'ranks', 'with', 'any', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', '', ',', '', 'of', 'the', 'emperor', 'of', 'china', 'was', 'issued', 'and', 'read', 'out', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', '', 'from', '', ',', 'sweden', ',', 'scoring', 'chart', 'successes', 'in', 'sweden', 'by', 'the', '', '2', '0', '0', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'discussions', 'concerning', 'the', 'formation', 'of', '', 'took', 'place', 'during', 'a', '', 'meeting', 'in', 'december', '1', '9', '6', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'impressed', 'with', 'the', 'success', 'of', '``', '', \"''\", ',', 'bohemia', 'appointed', 'hall', 'to', 'fully', '', 'on', 'it', 'by', 'leading', 'the', 'development', 'of', 'a', 'standalone', '``', '', \"''\", 'video', 'game', ',', 'which', '', 'that', 'he', 'would', 'not', 'be', 'limited', 'by', 'the', '', 'of', '``', '', '2', '``', '.', '', '', '']\n", "['', 'at', 'the', 'chosen', 'spot', ',', 'the', '', 'encountered', 'a', 'boy', 'named', '', 'playing', 'beside', 'the', 'river', 'and', 'hence', 'named', 'the', 'dzong', '``', '', \"'s\", 'palace', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'migration', 'of', 'year', '7', 'students', 'to', 'public', 'high', 'schools', 'were', 'the', 'likely', 'cause', 'in', 'the', '3', '0', '1', '', 'number', '', 'from', '2', '0', '1', '4', 'to', '2', '0', '1', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'basic', 'treatment', 'services', 'include', '', ',', 'psychology', ',', 'social', 'services', ',', 'rehabilitation', 'therapies', ',', 'medical', ',', 'nursing', ',', '', ',', '', ',', 'etc', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'deaths', 'were', 'blamed', 'on', '', 'and', 'so', 'he', 'earned', 'the', 'title', 'of', 'being', 'the', 'first', 'mass', '', 'in', 'the', 'state', 'of', 'nevada', 'and', '``', 'the', 'mad', 'indian', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'pair', 'won', 'five', 'doubles', 'titles', 'on', 'the', '', 'women', \"'s\", 'circuit', ',', 'and', 'the', 'silver', 'medal', 'in', 'doubles', 'at', 'the', 'southeast', 'asian', 'games', 'in', '2', '0', '0', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'assigned', 'to', 'the', 'infantry', 'training', 'centre', 'in', '', 'for', 'training', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'liberation', ',', 'the', 'stadium', 'was', 'started', 'to', 'be', 'removed', 'from', 'the', 'mines', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'one', 'side', 'of', 'the', 'table', 'sat', 'jimmy', 'kay', ',', 'a', '', '', 'with', 'business', 'interests', 'in', '', ',', '', ',', 'and', 'lighting', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'traditional', 'minang', 'music', 'is', 'characterized', 'by', 'the', 'minang', 'style', 'or', '', 'and', 'traditional', 'minang', 'musical', 'instruments', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'city', 'of', 'brush', 'is', 'a', 'statutory', 'city', 'located', 'in', 'morgan', 'county', ',', 'colorado', ',', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'of', 'the', 'enemy', 'aircraft', 'managed', 'to', 'get', 'on', 'the', '', 'of', 'one', 'of', 'the', 'protection', 'aircraft', 'but', 'lt.', 'myers', 'placed', 'his', 'aircraft', 'in', 'a', 'position', 'which', 'enabled', 'lt.', '', 'to', 'shoot', 'it', 'down', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'four', '', 'out', 'of', 'the', 'base', 'area', ':', '', \"'s\", 'ride', 'lift', 'which', 'services', 'a', 'beginner', 'learning', 'area', ';', '5', 'chair', ',', 'which', 'services', 'more', 'advanced', 'beginner', 'terrain', ',', 'the', 'freeway', 'and', 'park', 'lane', 'terrain', 'parks', ',', 'and', 'the', 'alpine', 'slide', '.', '', '', '', '', '', '']\n", "['', 'a', 'somewhat', 'common', '', 'urban', 'myth', '', 'that', 'the', 'da', 'costa', 'estate', 'was', 'intended', 'to', 'be', 'given', 'to', 'the', 'catholic', 'church', 'rather', 'than', 'the', 'anglican', ',', 'and', 'that', 'the', 'funds', 'were', 'awarded', 'to', 'saints', 'after', 'a', 'supposed', 'legal', 'battle', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'father', ',', '', '', ',', 'taught', 'arabic', 'at', '', 'university', 'and', 'moved', 'to', '', '', 'after', 'being', 'invited', 'to', 'teach', 'there', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'his', 'stay', 'at', 'the', 'university', 'of', 'chicago', 'white', 'was', 'able', 'to', 'finish', '``', 'an', '', 'of', '', \"''\", ',', 'published', 'in', '1', '9', '6', '3', 'within', 'the', '', 'series', 'in', 'mathematical', 'analysis', 'of', 'social', 'behavior', ',', 'with', 'james', 'coleman', 'and', 'james', 'march', 'as', 'chief', 'editors', '.', '', '', '']\n", "['', 'the', '2', 'nd', 'oregon', 'received', 'a', 'hero', \"'s\", 'welcome', 'when', 'it', 'arrived', 'in', 'san', 'francisco', 'on', '1', '3', 'july', '1', '8', '9', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'carlin', 'claims', 'however', 'that', 'there', 'is', 'no', 'duct', 'tape', ',', 'and', 'that', 'spangler', 'is', '``', 'seeing', 'the', 'reaper', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'in', 'toronto', 'were', 'becoming', 'interested', 'in', 'capturing', 'some', 'of', 'this', 'traffic', 'for', 'themselves', ',', 'as', 'well', 'as', 'providing', 'transport', 'for', 'goods', 'they', 'were', 'personally', 'interested', 'in', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'roof', 'has', 'been', 'designed', 'to', 'allow', 'natural', 'light', 'to', 'enter', 'the', 'building', ',', 'with', '9', '1', '9', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'angle', 'is', 'also', 'a', 'two-time', 'king', 'of', 'the', 'mountain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'franconia', 'consists', 'of', 'the', 'bavarian', 'districts', 'of', 'upper', ',', 'middle', ',', 'and', 'lower', 'franconia', ',', 'the', 'region', 'of', 'south', '', '(', '', ')', ',', 'and', 'the', 'eastern', 'parts', 'of', 'the', 'region', 'of', '', '(', '', 'franconia', 'and', '', ')', 'in', 'baden-württemberg', '.', '', '', '', '', '', '', '', '']\n", "['', 'important', 'irrigated', 'crops', 'include', '', ',', 'corn', ',', 'cotton', ',', 'various', 'fruits', ',', 'grapes', ',', '', '', ',', 'sugar', '', ',', 'roses', ',', 'and', 'tobacco', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', \"'s\", 'association', 'was', 'renamed', 'the', 'trinidad', 'labour', 'party', 'in', '1', '9', '3', '4', ',', 'becoming', 'the', 'country', \"'s\", 'first', 'political', 'party', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'peggy', 'joy', '', 'is', 'a', 'canadian', 'clinical', '', 'and', '', 'whose', 'work', 'often', 'concerns', 'optimal', 'sexuality', ',', 'opposition', 'to', 'the', '', 'of', 'human', 'sexuality', ',', 'and', 'outreach', 'to', '', 'groups', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'released', 'in', '1', '9', '8', '0', 'via', 'rca', 'nashville', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'kentucky', 'trailer', 'relocated', 'to', 'southwestern', 'jefferson', 'county', '(', 'jefferson', '', 'international', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '8', '3', ',', '', 'installed', 'an', 'early', 'artificial', 'lighting', 'system', 'in', 'his', 'nashville', 'studio', 'with', 'the', 'help', 'of', 't.', 'p.', '', 'of', 'the', 'city', \"'s\", 'brush', 'electric', 'light', 'company', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'has', '', 'other', 'scholar', 'like', 'ali', '', 'and', '', '', '', \"'s\", '', 'writings', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'landscape', 'varies', 'from', 'dramatic', 'peaks', 'of', 'dark', 'granite', 'and', 'grey', 'mountains', 'with', 'little', '', ',', 'to', '', 'mountain', 'slopes', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'citizens', 'must', 'never', 'again', 'be', 'deprived', 'of', 'their', 'legitimate', 'rights', 'by', '', ',', 'no', 'matter', 'his', 'position', 'in', 'the', 'society', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'can', '', 'from', 'alternative', '', ',', 'and', 'contains', '', 'for', 'the', '', 'matrix', 'as', 'well', 'as', 'for', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'w.', 't.', 'grant', 'filed', 'for', 'bankruptcy', 'in', '1', '9', '7', '5', ',', 'many', 'of', 'their', 'stores', 'were', 'sold', 'to', 'kmart', 'in', '1', '9', '7', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '1', '9', '6', '8', ')', ',', 'is', 'a', 'tax', 'case', 'from', 'the', 'united', 'states', 'court', 'of', 'appeals', 'for', 'the', 'fifth', 'circuit', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'methods', 'of', '', 'may', 'be', 'used', ',', 'depending', 'on', 'the', 'physical', 'properties', 'of', 'the', '', ',', 'including', 'hydrothermal', 'synthesis', ',', '', ',', 'or', 'simply', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'lies', 'south-east', 'of', 'little', '', ',', 'around', 'north-east', 'of', 'the', 'town', '', 'and', 'north-west', 'of', '', 'to', 'the', 'north', 'of', 'the', 'a', '1', '4', '8', 'road', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'edmund', '', 'passed', 'through', 'the', 'area', 'in', '1', '8', '2', '5', ',', 'noting', 'the', 'junction', 'of', 'the', 'bremer', ',', 'referring', 'to', 'it', 'as', 'bremer', \"'s\", 'creek', 'but', 'he', 'did', 'not', 'explore', 'it', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'in', 'a', 'broadway', 'bag', '(', '', ')', \"''\", 'was', '', 'on', 'cd', 'in', '2', '0', '0', '7', 'along', 'with', '``', 'bobby', '', 'sings', 'the', 'shadow', 'of', 'your', 'smile', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', 'rai', ',', 'also', 'known', 'as', 'the', 'catholic', '', ',', 'is', 'a', 'historic', 'church', 'tower', 'in', '', ',', 'the', 'largest', 'village', 'on', '', 'island', 'in', 'the', 'northern', '', 'islands', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'included', 'a', 'frame', 'made', 'from', 'items', '', \"'\", 'from', 'the', 'river', 'thames', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'creditors', 'forced', 'him', 'to', 'sell', '5', '0', '0', 'bars', 'of', 'silver', 'against', 'which', 'he', 'had', '', 'money', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '', 'a', '', 'in', 'his', 'first', 'major', 'league', 'start', 'on', 'october', '4', ',', '1', '8', '9', '1', ',', 'however', ',', 'it', 'was', 'not', 'his', 'first', 'major', 'league', 'game', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'the', 'french', 'painter', 'and', '', '', 'who', 'said', 'that', 'an', 'artist', 'must', 'approach', 'his', 'work', 'in', 'the', 'spirit', 'of', 'the', 'criminal', 'about', 'to', '', 'a', 'crime', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'in', 'that', 'country', 'that', 'he', 'met', '', '', ',', 'a', '', '', 'who', 'was', 'then', 'working', 'as', 'a', 'delivery', 'man', 'for', 'a', 'phone', 'company', 'based', 'in', 'jakarta', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'sixth', 'soundtrack', 'of', 'the', 'album', '``', '', '', '', \"''\", 'is', 'a', 'recreation', 'of', '1', '9', '9', '8', 'film', '', '', 'track', 'with', 'the', 'same', 'title', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'of', 'books', 'were', 'published', 'about', 'romney', ',', 'more', 'than', 'for', 'any', 'other', 'candidate', ',', 'and', 'included', 'a', 'friendly', 'campaign', 'biography', ',', 'an', 'attack', 'from', 'a', 'former', '', ',', 'and', 'a', 'collection', 'of', 'romney', \"'s\", 'speeches', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', '``', '', \"''\", ',', '``', 'the', 'convention', 'of', 'states', \"'\", 'efforts', 'are', 'among', 'several', 'national', 'conservative', 'groups', ',', 'such', 'as', '', ',', 'that', 'have', 'helped', 'organize', '', 'protests', 'across', 'the', 'country', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'at', '', '', 'operated', 'by', 'a', 'fellow', '', 'company', ',', 'eastern', 'national', 'was', 'transferred', 'to', 'united', 'counties', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'then', 'was', 'the', 'team', \"'s\", 'alternate', 'for', 'the', '2', '0', '0', '5', 'european', 'curling', 'championships', 'and', '2', '0', '0', '6', 'winter', 'olympics', 'before', 'becoming', 'lead', 'again', 'for', 'the', '2', '0', '0', '6', 'and', '2', '0', '0', '7', 'world', 'championships', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'waititi', 'instead', 'wore', 'a', '', '', '', ',', 'which', 'he', 'described', 'as', 'māori', 'business', 'attire', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'is', 'the', 'foundation', 'for', 'law', 'and', 'order', 'in', 'the', 'society', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'his', 'first', 'appearance', 'in', '1', '9', '7', '7', ',', 'he', 'used', 'a', 'gibson', '', 'only', 'for', 'the', '``', 'let', 'there', 'be', 'rock', \"''\", 'music', 'video', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'the', 'first', 'time', 'elvis', 'had', 'played', 'that', 'many', 'consecutive', 'performances', 'in', 'a', 'venue', 'outside', 'of', 'las', '', 'or', '', ',', 'nevada', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'sales', 'of', '', 'new', 'energy', 'passenger', 'vehicles', '', '5', '7', '9', ',', '0', '0', '0', 'units', ',', 'consisting', 'of', '4', '6', '8', ',', '0', '0', '0', '', 'cars', 'and', '1', '1', '1', ',', '0', '0', '0', 'plug-in', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '3', ',', 'he', 'graduated', 'at', '', 'university', 'with', 'a', 'masters', 'of', 'science', 'in', 'engineering', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'described', 'by', '', 'in', '1', '9', '4', '1', ',', 'and', 'contains', 'the', 'species', 'g.', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'every', '1', '0', '0', 'females', ',', 'there', 'were', '8', '9', '.', '4', 'males', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'midst', 'of', 'the', 'fighting', ',', 'kpa', 'small', 'arms', 'fire', 'shot', 'down', 'an', 'f-', '5', '1', 'fighter', 'plane', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '2', '.', '9', '7', '%', 'of', 'the', 'population', 'were', 'hispanic', 'or', 'latino', 'of', 'any', 'race', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'theological', 'university', 'of', 'northern', 'italy', 'is', 'a', 'university', 'of', 'the', 'catholic', 'church', ',', 'and', 'has', 'its', 'main', 'campus', 'in', 'milan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'georgian', '(', 'born', '', '', ')', 'worked', 'with', 'buffalo', 'bill', \"'s\", 'wild', 'west', 'show', 'for', 'only', 'a', 'few', 'years', 'before', 'beginning', 'his', 'own', 'group', ';', 'he', 'was', 'later', 'offered', 'but', 'refused', 'a', 'position', 'serving', 'as', 'ambassador', 'for', 'georgia', 'in', 'the', 'united', 'states', '.', '', '', '', '', '', '']\n", "['', '', \"'s\", 'successors', 'later', 'gained', 'some', 'other', 'estates', 'in', 'croatia', '(', '', ',', '', ',', '', 'and', '', ')', ',', 'as', 'well', 'as', 'in', 'hungary', '(', '', 'and', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'lqg', 'is', 'an', 'attempt', 'to', '', 'and', '', 'standard', 'quantum', '', 'and', 'standard', 'general', 'relativity', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'normandy', 'invasion', 'the', 'squadron', '', 'supplies', 'in', 'the', 'united', 'kingdom', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'of', 'gemina', \"'s\", 'neck', 'showed', 'that', 'her', 'vertebrae', 'had', '', 'together', ',', 'but', 'scientists', ',', '', 'and', '', 'could', 'find', 'no', '', 'for', 'the', 'deformity', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'far', 'eastern', 'oklahoma', 'city', ',', 'i-', '4', '0', 'meets', 'interstate', '2', '4', '0', 'in', 'a', 'partial', 'junction', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'following', 'year', ',', 'he', 'was', 'named', 'in', 'the', 'new', 'zealand', 'secondary', 'schools', 'team', 'for', 'a', '', 'international', 'series', 'in', 'australia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'later', 'given', 'a', 'chance', 'to', '', 'his', 'career', 'at', 'salford', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'was', 'also', 'a', 'classification', 'for', 'teams', ',', 'in', 'which', 'the', 'times', 'of', 'the', 'best', 'three', '', 'per', 'team', 'on', 'each', 'stage', 'were', 'added', 'together', ';', 'the', 'leading', 'team', 'at', 'the', 'end', 'of', 'the', 'race', 'was', 'the', 'team', 'with', 'the', 'lowest', 'total', 'time', '.', '', '', '', '', '', '']\n", "['', 'literary', 'scholar', '', 'cohen', 'writes', 'about', 'how', '``', 'since', 'feeling', 'is', 'first', \"''\", '', 'feeling', 'with', 'positive', 'natural', 'expressions', 'like', '', 'and', '', 'while', 'the', 'order', 'of', 'thought', 'is', 'compared', 'with', 'death', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'temple', '(', '', '', '', ')', 'is', 'a', 'hindu', 'temple', 'located', 'at', '', 'district', 'of', 'tamil', '', ',', 'india', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'species', 'of', 'ant', 'in', 'the', 'genus', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'brown', 'entered', 'training', 'camp', '', 'as', 'a', 'starting', 'inside', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', ',', 'the', 'deputy', 'of', 'the', 'provincial', 'council', 'of', '', ',', 'has', 'accused', '', 'of', '', 'foreign', 'aid', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'two', 'were', 'riding', 'in', 'the', 'back', 'seat', 'of', 'the', 'car', 'of', 'ruth', 'carter', \"'s\", 'boyfriend', 'when', 'jimmy', '', 'rosalynn', 'by', '', 'her', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'of', 'the', 'civil', 'war', 'took', 'its', 'toll', 'on', 'the', 'capell', 'family', ',', 'and', 'arthur', ',', 'a', '', ',', 'was', 'executed', 'in', '1', '6', '4', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'saint', 'francis', 'catholic', 'secondary', 'school', 'is', 'one', 'of', 'three', 'niagara', 'catholic', 'district', 'school', 'board', 'secondary', 'schools', 'located', 'in', 'st.', '', ',', 'ontario', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'eight', '', 'satellites', 'used', 'the', '', '7', '0', '0', 'a', 'configuration', ',', 'specialised', 'for', 'communications', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '3', ',', 'he', 'changed', 'the', 'name', 'of', 'his', 'band', 'to', 'his', 'own', 'name', ':', 'gabriel', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'and', 'artist', '', 'adams', 'revived', 'the', 'professor', 'x', 'character', 'in', '``', '', \"''\", '#', '6', '5', 'in', 'one', 'of', 'the', 'creative', 'team', \"'s\", 'earliest', 'collaborations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'columbus', 'historical', 'society', '(', '', ')', 'is', 'the', 'historical', 'society', 'for', 'columbus', ',', 'ohio', ',', '', 'the', 'city', \"'s\", 'history', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'shakespeare', \"'s\", 'globe', 'is', 'a', 'reconstruction', 'of', 'the', 'globe', 'theatre', ',', 'an', '', '', 'for', 'which', 'william', 'shakespeare', 'wrote', 'his', 'plays', ',', 'in', 'the', 'london', 'borough', 'of', '', ',', 'on', 'the', 'south', 'bank', 'of', 'the', 'river', 'thames', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'august', '1', '5', ',', '2', '0', '1', '2', ',', 'nine', 'passengers', 'were', 'injured', '(', 'two', 'seriously', ')', 'when', 'the', '', 'coach', 'in', 'which', 'the', 'band', 'were', 'traveling', 'fell', 'from', 'a', 'viaduct', 'near', 'bath', ',', 'england', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", 'included', '``', 'alien', '', \"''\", 'in', 'their', '', '1', '0', '0', 'albums', 'of', 'the', '1', '9', '9', '0', 's', \"'\", 'polls', ',', 'at', 'no', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'before', 'they', 'did', ',', 'he', 'would', '', 'his', '', 'up', 'to', 'the', 'camera', ',', 'and', 'then', 'he', 'would', 'run', 'off', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'second', 'world', 'war', ',', 'he', 'served', 'as', 'commander-in-chief', 'of', 'the', 'new', 'zealand', 'division', 'commanding', 'at', 'the', 'battle', 'of', 'the', 'river', 'plate', 'in', 'december', '1', '9', '3', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'first', ',', 'alexander', '', '(', ')', 'took', 'second', 'place', 'to', 'win', 'two', 'bonus', 'seconds', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '7', ',', 'li', '', 'won', 'the', 'outstanding', 'performance', 'award', 'at', 'the', 'first', '', 'national', 'youth', 'beijing', 'competition', 'with', 'her', 'performance', 'of', '``', '', '', \"''\", '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'floor', 'plan', 'is', 'unusual', 'as', 'the', 'choir', 'is', 'situated', 'on', 'the', 'southeast', 'instead', 'of', 'the', '', 'east', 'side', 'of', 'the', 'building', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'nevertheless', ',', 'the', 'dog', \"'s\", 'conscience', '', ',', 'and', '', '', 'in', 'the', 'water', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'album', 'was', 'released', 'on', 'march', '2', '1', ',', '2', '0', '0', '6', 'via', '', 'records', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'street', '(', '', ')', 'royal', 'commission', ',', 'freeman', 'admitted', 'he', 'travelled', 'to', 'the', 'usa', 'on', 'a', '', 'passport', 'to', 'visit', 'known', 'chicago', '', ',', 'joseph', 'dan', '', ',', 'who', 'was', 'also', 'associated', 'with', 'australian', '', ',', 'and', 'friend', 'of', 'freeman', \"'s\", ',', '', '', '.', '', '', '']\n", "['', 'this', 'connection', 'lasted', 'to', 'when', 'he', 'started', 'work', 'as', 'an', 'artist', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'felt', 'that', 'the', '``', 'legend', 'is', 'lost', \"''\", 'in', 'the', 'production', ',', '', 'the', 'show', \"'s\", 'musical', 'numbers', ',', 'and', 'felt', 'that', 'selena', 'and', 'broadway', 'do', \"n't\", 'mix', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'buried', 'at', 'st.', 'john', \"'s\", '', ',', 'warsaw', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'argue', 'that', 'the', 'origins', 'of', 'language', 'probably', '', 'closely', 'to', 'the', 'origins', 'of', 'modern', 'human', 'behavior', ',', 'but', 'there', 'is', 'little', 'agreement', 'about', 'the', 'implications', 'and', '', 'of', 'this', 'connection', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'that', 'time', ',', 'the', 'western', 'federation', 'of', 'miners', 'was', 'still', 'an', 'affiliate', 'of', 'the', 'iww', '(', 'the', '', 'withdrew', 'from', 'the', 'iww', 'in', 'the', 'summer', 'of', '1', '9', '0', '7', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'traditional', '', '', ',', 'image', '', '', 'must', 'be', 'observed', 'when', '', 'surviving', 'materials', 'and', 'the', 'final', ',', 'lowest', 'generation', 'restoration', 'master', 'may', 'be', 'either', 'a', '', 'negative', 'or', 'a', 'fine', 'grain', 'master', 'positive', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'paris', 'exposition', 'of', '1', '9', '0', '0', ',', 'tourists', 'are', 'guided', 'around', 'a', 'zoo', '(', 'a', 'rather', 'cruel', 'zoo', 'by', 'today', \"'s\", 'standards', ')', ',', 'but', 'are', '', 'to', 'find', 'a', 'wildcat', 'has', 'escaped', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'a', 'country', 'practice', \"''\", 'follows', 'as', 'the', 'third', 'most', 'successful', 'program', ',', 'having', 'won', '2', '9', 'awards', 'throughout', 'its', '', 'run', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'apart', 'from', 'that', ',', 'though', ',', 'he', 'is', 'a', '``', '', 'inter', '', \"''\", ',', 'having', 'no', 'power', 'above', 'and', 'beyond', 'the', 'other', 'six', 'councillors', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'also', 'known', 'as', 'the', 'former', 'president', 'and', 'chief', 'executive', 'officer', 'of', 'canadian', '', 'corporation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'a', 'visiting', 'artist', 'at', 'the', '', 'national', 'academy', 'of', 'art', 'in', 'norway', ',', 'and', 'the', 'thomas', '', 'college', 'in', 'the', 'uk', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'searching', '', 'and', 'inside', 'of', '', 'was', 'first', 'introduced', 'in', 'this', 'game', 'as', 'a', 'means', 'to', 'find', 'items', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '2', ',', '``', '', \"''\", 'won', 'the', 'first', 'of', 'its', 'two', '', 'awards', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '', 'the', 'season', '2', 'opening', 'on', 'the', 'season', '4', 'episodes', 'in', 'all', '', '1', '9', '9', '0', '', 'and', 'video', 'releases', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'number', 'of', 'constraints', 'of', 'a', 'node', 'is', 'the', 'same', 'for', 'all', '', '', 'of', 'the', 'same', 'problem', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'poor', 'state', 'of', 'the', '', 'see', 'was', 'improved', 'as', 'part', 'of', 'a', 'major', 'conservation', 'project', ',', 'the', 'east', '', '', 'country', '(', '``', '', '', \"''\", ')', ',', 'which', 'implemented', '', 'measures', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'donated', '', '', 'of', 'george', 'washington', 'and', 'daniel', 'webster', ',', 'which', 'still', '', 'on', 'the', 'walls', 'of', 'the', '', ',', 'and', 'a', '', 'concert', 'grand', 'piano', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'part', 'of', 'a', '', 'project', 'by', 'the', 'federation', 'of', '', ',', 'which', 'oversaw', 'the', '', 'of', 'three', 'small', 'through', 'appeals', 'that', 'condemned', 'existing', 'premises', 'as', '', 'for', 'public', 'worship', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'believed', 'that', 'irish', 'agriculture', 'would', 'be', 'damaged', 'if', 'ireland', 'joined', 'the', 'european', 'economic', 'community', '(', '', ')', 'as', ',', 'instead', 'of', 'becoming', 'more', 'efficient', ',', 'farmers', 'would', 'grow', 'to', 'depend', 'on', 'external', '', 'under', 'the', 'common', 'agricultural', 'policy', '(', 'cap', ')', '.', '', '', '', '', '', '', '']\n", "['', 'one', 'of', 'the', 'election', 'platforms', 'of', 'felipe', 'gonzález', \"'s\", 'spanish', 'socialist', 'workers', \"'\", 'party', '(', '', ')', 'was', 'to', 'close', 'the', 'base', 'to', 'the', 'american', 'fighter', 'wing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'served', 'as', 'city', 'architect', 'in', '', ',', 'and', 'developed', 'the', '``', '', 'roof', \"''\", '(', 'a', 'timber', '', '', 'system', ')', ',', 'and', 'the', '', '', 'process', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'township', 'today', 'consists', 'of', 'small', 'scattered', 'local', 'shops', 'and', 'businesses', 'along', 'the', 'pacific', 'highway', ',', 'as', 'well', 'as', 'the', 'central', 'coast', 'campus', 'of', 'the', 'university', 'of', 'newcastle', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'born', 'in', 'or', 'near', '', ',', '', ',', 'a', 'younger', 'son', 'of', 'william', '', ',', 'steward', 'of', 'new', 'college', ',', 'oxford', ',', 'and', 'brother', 'of', 'joshua', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'has', '', 'its', 'sandstone', 'tower', ',', '', 'and', 'central', 'nave', 'from', 'this', 'period', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '2', '0', '1', '4', 'kazakhstan', 'premier', 'league', 'was', 'the', '2', '3', 'rd', 'season', 'of', 'the', 'kazakhstan', 'premier', 'league', ',', 'the', 'highest', 'football', 'league', 'competition', 'in', 'kazakhstan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hunter', \"'s\", 'health', 'and', 'career', 'deteriorated', 'as', 'he', '', 'of', 'the', 'st.', 'louis', 'night', 'life', ',', 'and', 'it', 'was', \"n't\", 'until', 'late', 'in', '1', '9', '0', '5', 'that', 'he', 'published', 'his', 'final', '', ',', '``', 'back', 'to', 'life', ',', \"''\", 'so', 'named', 'to', 'celebrate', 'his', 'return', 'to', 'health', '.', '']\n", "['', 'she', 'finished', 'her', 'career', 'with', '3', '2', '5', 'saves', 'ranking', 'second', 'the', 'program', \"'s\", 'history', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'released', 'in', '1', '9', '8', '4', 'from', 'their', 'second', 'studio', 'album', '``', 'what', 'a', 'life', '!', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'later', 'discovered', 'that', 'mr.', 'x', 'orchestrated', 'the', 'general', \"'s\", '', 'and', 'plans', 'to', 'use', '', 'to', 'start', 'a', 'global', 'war', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'this', 'work', 'he', 'was', 'appointed', 'a', 'commander', 'of', 'the', 'order', 'of', 'the', 'british', 'empire', 'in', '1', '9', '6', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'unfortunately', 'for', 'orozco', ',', 'one', 'of', 'the', 'mines', '', '', ',', 'damaging', 'only', 'a', '', 'with', 'coal', 'and', 'also', '', 'huerta', 'to', 'the', 'possible', 'danger', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'burnt', 'corn', 'was', 'a', 'regular', '', 'point', 'for', 'stage', 'coaches', 'traveling', 'between', 'the', 'east', 'and', 'the', 'port', 'cities', 'along', 'the', 'gulf', 'cost', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'sisters', 'is', 'a', '1', '9', '8', '1', 'novel', 'by', '', '', 'published', 'only', 'in', 'a', '', 'canadian', '', 'edition', 'as', 'part', 'of', 'the', 'new', 'american', 'library', '(', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'has', 'also', 'provided', 'voice', 'acting', 'work', 'for', 'the', 'radio', 'industry', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', '', '2', '', 'engine', '', '2', '.', '8', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'war', ',', 'the', 'train', 'continued', 'service', 'on', 'a', 'changed', ',', 'shorter', 'route', ',', 'going', 'in', 'the', 'early', '1', '9', '6', '0', 's', 'from', 'warsaw', 'to', '', 'in', '4', 'hours', 'and', '1', '8', 'minutes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'another', 'source', '', 'the', 'idea', 'to', 'major', 'donald', '', ',', 'commanding', 'officer', 'of', 'the', '6', '0', '0', '4', 'th', 'air', 'intelligence', 'service', 'squadron', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'national', 'treasury', 'supports', 'the', 'conservation', 'and', 'restoration', 'of', 'these', 'items', ',', 'and', 'the', 'commissioner', 'for', 'cultural', 'affairs', 'provides', 'technical', 'assistance', 'for', 'their', 'administration', ',', 'restoration', ',', 'public', 'display', 'and', 'other', 'activities', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'snow', 'patrol', \"'s\", 'official', 'website', 'members', 'were', 'given', 'a', 'pre-sale', 'opportunity', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'died', 'on', 'january', '7', ',', '1', '9', '6', '0', 'in', '', ',', 'michigan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'english', 'was', 'born', 'in', 'lincolnshire', ',', 'where', 'her', 'mother', ',', 'ruth', ',', 'was', 'raised', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'main', 'issue', 'with', '', 'ultrasound', 'measurement', 'is', 'that', 'it', '', 'largely', 'on', 'the', 'skills', 'of', 'an', 'ultrasound', '', ',', 'and', 'consequently', 'is', 'not', 'widely', 'used', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', '', 'on', '1', '6', 'june', 'at', 'eastern', 'suburbs', '', ',', 'sydney', ',', 'after', 'a', 'full', 'military', 'funeral', ',', 'and', 'his', 'ashes', 'were', '', 'at', '', 'cemetery', ',', 'sydney', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'capital', 'district', 'is', 'also', 'home', 'to', 'the', 'roman', 'catholic', 'cathedral', 'and', 'mother', 'church', ',', 'the', 'cathedral', 'of', 'the', '', 'conception', 'with', 'bishop', 'howard', 'j.', '', 'as', 'head', 'of', 'the', 'roman', 'catholic', 'diocese', 'of', 'albany', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '2', '0', '0', '6', 'european', 'marathon', 'cup', 'was', 'the', '8', 'th', 'edition', 'of', 'the', 'european', 'marathon', 'cup', 'of', 'athletics', 'and', 'were', 'held', 'in', '', ',', 'sweden', ',', 'inside', 'of', 'the', '2', '0', '0', '6', 'european', 'championships', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'willis', 'also', 'presented', '``', 'celebrity', 'big', 'brother', \"'s\", 'bit', 'on', 'the', 'side', \"''\", 'alongside', '', 'clark', 'and', '', '', ',', 'who', 'replaced', 'alice', 'levine', 'and', '', 'east', 'from', 'the', 'fourteenth', 'regular', 'series', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'often', 'possess', 'a', '', 'surface', 'that', 'is', 'referred', 'to', 'as', 'being', '', '(', 'engraved', 'points', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'one', 'of', 'its', 'first', 'students', ',', 'jühlke', '', 'his', 'course', 'work', 'with', 'his', 'own', 'extensive', 'programme', 'of', 'private', 'reading', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'has', 'photographed', 'over', '7', '0', '0', 'female', 'models', 'to', 'date', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'the', 'fastest', 'of', 'the', 'train', ',', 'ahead', 'of', '', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', 'november', '1', '9', '1', '6', ',', 'it', 'was', 'one', 'of', 'the', 'units', 'gathered', 'into', '``', '', 'de', 'combat', '1', '2', '``', ',', 'along', 'with', '``', 'escadrille', 'n', '3', '``', ',', '``', 'escadrille', 'n', '2', '6', '``', ',', 'and', '``', 'escadrille', 'n', '1', '0', '3', '``', '.', '', '']\n", "['', 'she', 'had', 'been', 'raped', 'and', '', ',', 'and', 'her', 'body', 'set', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'trained', 'at', 'the', 'école', 'des', 'beaux-arts', 'de', '', ',', 'as', 'well', 'as', 'with', '', '', 'in', 'paris', 'in', '1', '9', '5', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'a', '', 'of', '``', '', \"''\", 'and', '``', 'the', '', 'horror', \"''\", ',', 'the', 'simpsons', 'move', 'into', 'an', 'old', 'house', ',', '', 'about', 'its', 'low', 'cost', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'senior', 'was', 'named', 'as', 'a', 'member', 'of', 'the', 'royal', 'commission', 'on', 'local', 'government', 'in', 'england', 'in', 'may', '1', '9', '6', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'wu', 'and', '', 'say', 'morrison', \"'s\", 'was', 'the', 'first', 'widely', 'used', '', 'dictionary', 'and', 'has', 'served', 'as', 'a', '``', '', 'in', 'the', 'early', 'promotion', 'of', 'communications', 'between', 'china', 'and', 'the', 'west', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'early', 'experiences', 'with', 'the', 'cheetah', 'found', 'it', 'to', 'be', '', 'more', 'difficult', 'to', 'successfully', 'perform', '', '', 'than', 'the', '', 'f', '1', 'fleet', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'racing', '', 'design', 'also', 'was', 'adapted', 'for', 'a', '``', '', \"''\", 'version', 'showing', 'bare', '', 'skin', 'as', 'part', 'of', 'showing', 'good', 'health', 'and', 'promoting', 'the', 'design', 'as', '``', 'the', 'angel', 'of', 'summer', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'were', '', '', '.', '6', ',', 't.', '7', 'and', 't.', '1', '0', 'aircraft', 'which', 'were', 'updated', 'and', 'modified', 'with', 'de', '', '', 'major', '1', '0', '-', '1', '-', '1', 'engines', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'the', 'sale', 'of', 'both', 'lee', '', 'and', 'steve', '', 'to', 'arsenal', 'manager', '', 'mills', 'was', 'able', 'to', 'enter', 'the', 'transfer', 'market', 'where', 'he', 'bought', 'peter', '', 'and', 'chris', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'interesting', 'but', 'unusual', 'loop', 'executed', 'by', 'manny', 'was', 'nearly', 'the', 'same', 'as', 'pamela', 'in', 'the', '1', '9', '8', '2', 'pacific', 'typhoon', 'season', '(', 'though', 'pamela', 'completed', 'the', 'circle', 'faster', 'than', 'manny', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'brought', 'a', 'number', 'of', 'independent', '', 'to', 'the', 'cabinet', ',', 'and', '', 'supported', 'him', 'by', 'replacing', '', 'politicians', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'order', 'to', 'be', 'eligible', 'for', 'the', 'competition', ',', 'a', 'film', 'must', 'have', 'a', 'director', 'of', 'african', 'or', 'middle', 'eastern', 'nationality', ',', 'and', 'have', 'been', 'produced', 'at', 'least', 'two', 'years', 'before', 'entry', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'number', 'of', 'employees', 'declined', 'from', '4', '5', '4', 'in', '1', '9', '8', '8', 'to', '7', '5', 'in', '2', '0', '0', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'threatened', 'language', 'according', 'to', 'the', 'catalogue', 'of', 'endangered', 'languages', '(', '', ')', ',', 'but', 'available', 'data', 'is', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hilux', 'models', 'sold', 'in', 'asian', ',', 'european', ',', 'middle', 'eastern', 'and', '', 'markets', 'were', 'initially', 'built', 'and', 'assembled', 'in', 'thailand', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'operation', ',', 'two', 'us', 'ships', 'struck', 'mines', 'and', '', 'while', 'the', 'remaining', 'vessels', 'and', 'aircraft', '', 'the', 'enemy', 'guns', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'arrival', 'he', 'visits', 'his', 'parents', \"'\", 'house', ',', 'where', 'he', 'hears', 'from', 'his', 'mother', '(', '', 'van', '', ')', 'that', 'his', 'father', '(', 'john', '', ')', 'has', 'just', 'died', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'originally', 'few', 'in', 'number', ',', 'they', 'have', '', 'over', 'the', 'years', ',', 'from', '1', '8', 'in', 'the', 'early', '1', '9', '9', '0', 's', 'to', 'at', 'least', '5', '9', 'as', 'of', 'late', '2', '0', '1', '7', ';', 'in', 'total', 'they', 'stretch', 'over', ',', 'with', 'most', 'located', 'in', 'belfast', '.', '', '']\n", "['', 'on', '8', 'february', '1', '7', '9', '2', ',', 'they', 'signed', 'the', '``', 'international', '', \"''\", '(', 'known', 'as', '``', '', \"''\", 'in', 'chinese', ')', 'in', '', 'which', 'confirmed', 'the', 'validity', 'of', 'the', '', 'treaty', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'males', 'had', 'a', 'median', 'income', 'of', '$', '2', '6', ',', '4', '1', '1', 'versus', '$', '2', '3', ',', '0', '3', '6', 'for', 'females', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'further', 'expanded', 'with', '3', 'other', '``', '', 'de', 'communes', \"''\", 'in', 'january', '2', '0', '1', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'communist', 'party', 'of', 'bolivia', '(', ')', 'is', 'a', 'communist', 'party', 'in', 'bolivia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'track', 'was', 'written', 'and', 'composed', 'by', 'savvy', 'gupta', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'same', 'year', 'he', 'served', 'as', 'the', 'president', 'of', 'the', '6', '0', 'th', 'meeting', 'of', 'the', 'permanent', 'international', '', 'conference', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'return', 'from', '', ',', 'for', 'example', ',', 'is', 'implemented', 'as', '', '@', '', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'no', 'other', '', 'in', 'the', 'past', '3', '5', 'years', 'has', 'been', 'as', 'successful', 'at', 'this', 'aspect', 'of', 'the', 'game', ',', 'with', 'rodríguez', 'throwing', 'out', '4', '8', '%', 'of', 'attempted', '', 'through', 'may', '2', '0', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', '', 'at', 'the', 'house', 'from', 'episode', '1', ',', 'where', 'the', 'small', ',', '', '', 'creature', 'with', 'big', 'eyes', 'lives', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'returning', 'each', 'time', 'to', 'her', 'home', 'port', 'at', 'long', 'beach', ',', 'california', ',', 'the', 'ship', 'conducted', 'local', 'operations', 'between', 'her', '', 'in', '', 'waters', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'waititi', 'was', 'supported', 'by', 'fellow', 'māori', 'party', 'mp', '', ',', 'who', 'wore', 'a', 'tie', 'in', '', 'of', 'the', 'rules', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '2', '×', 'latin', '', '', 'to', 'a', '', 'with', 'no', 'fixed', 'points', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '3', 'he', 'was', 'elected', 'to', 'the', 'new', 'jersey', 'general', 'assembly', 'from', 'union', 'county', 'for', 'the', 'first', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'then', 'entered', 'the', '', 'at', '3', '6', '0', 'm', 'and', 'was', '5', '0', 'm', 'left', 'of', 'the', 'runway', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'defending', 'pan', 'american', 'games', 'champion', 'was', 'fran', '', 'of', 'the', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'owned', 'by', 'the', '', 'family', 'and', 'then', 'inherited', 'by', 'the', '', 'family', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'prior', 'to', 'the', 'victory', 'of', 'former', 'president', 'vieira', 'in', 'the', 'mid-', '2', '0', '0', '5', 'presidential', 'election', ',', 'gomes', 'said', 'that', 'he', 'would', '', 'if', 'vieira', 'was', 'elected', ',', 'referring', 'to', 'the', 'latter', 'as', 'a', '``', 'bandit', 'and', '', 'who', '', 'his', 'own', 'people', \"''\", '.', '', '', '', '']\n", "['', 'the', '', 'is', '', 'populated', ',', 'with', 'an', 'economy', '', 'around', 'agriculture', ',', 'cattle', 'keeping', 'and', 'fishing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'number', 'of', 'singaporean', 'writers', 'such', 'as', '', '', '', 'and', '', '', '', 'have', 'contributed', 'work', 'in', 'more', 'than', 'one', 'language', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '2', ',', '', 'classics', 'records', 'issued', 'the', 'album', 'as', 'a', 'double', 'cd', '(', 'catalogue', 'number', '4', '3', '2', '4', '5', '6', '2', ')', ',', '', 'in', 'a', '', 'with', 'a', '1', '7', '2', '', '', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'more', 'typically', ',', 'male', 'roosevelt', 'elk', 'weigh', 'around', ',', 'while', 'females', 'weigh', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'william', 'pitcher', '(', 'born', '5', 'february', '1', '9', '1', '0', 'in', '', ',', 'england', '-', 'died', '2', '4', 'october', '1', '9', '9', '5', ')', 'was', 'an', 'international', 'motorcycle', 'speedway', 'rider', 'who', '', 'in', 'the', 'first', 'ever', 'world', 'championship', 'final', 'in', '1', '9', '3', '6', '.', '', '', '', '', '']\n", "['', 'the', 'other', 'children', 'in', 'the', 'village', 'were', 'friendly', 'towards', 'alder', ',', 'and', 'worked', 'together', 'to', 'teach', 'him', 'their', 'language', ',', 'customs', ',', 'and', 'traditions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'prinsen', 'became', 'well', 'known', 'in', 'the', 'netherlands', 'for', 'playing', 'a', 'character', 'called', '', '', 'in', 'this', 'show', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'traveled', 'extensively', 'with', 'his', 'parents', 'visiting', 'many', 'european', 'countries', ',', 'including', 'spain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'found', 'from', 'venezuela', 'to', 'guatemala', ',', 'where', 'it', 'is', 'found', 'at', '', 'between', '6', '5', '0', 'and', '1', ',', '6', '2', '0', 'meters', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'rise', 'in', 'electronic', 'dealing', ',', '', 'input', 'and', 'updated', 'data', 'on', 'orders', ',', 'transactions', 'and', '', 'are', 'among', 'other', 'features', 'of', 'the', 'new', 'system', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'february', '8', ',', '2', '0', '0', '6', ',', 'the', 'galaxy', 'sent', 'king', 'to', 'the', 'colorado', 'rapids', 'in', 'exchange', 'for', 'a', 'first', 'round', 'pick', 'in', 'the', '2', '0', '0', '7', '', 'supplemental', 'draft', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'defended', 'the', 'plain', 'of', '', 'until', '1', '9', 'may', '1', '7', '6', '1', ',', 'when', 'the', 'king', 'rewarded', 'him', 'with', 'the', '', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'irvine', '', 'was', 'born', 'in', '', ',', 'near', 'melbourne', ',', 'the', 'son', 'of', 'sir', 'david', '', '', 'a', 'professor', 'of', 'chemistry', 'at', 'melbourne', 'university', ',', 'and', 'his', 'wife', ',', 'mary', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '2', ',', '', \"'s\", 'clay', 'pipe', 'division', 'shut', 'down', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'editorial', 'team', 'consists', 'of', 'steve', '', ',', 'joshua', '', ',', 'james', '', 'and', '', 'white', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'because', 'of', '``', 'economic', 'difficulties', \"''\", 'the', 'management', 'decided', ',', 'in', 'march', '2', '0', '1', '0', ',', 'to', 'reduce', 'the', 'number', 'of', 'employees', 'in', 'editorial', 'and', 'publishing', 'areas', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'started', 'hosting', 'events', 'in', 'march', '2', '0', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'many', 'years', ',', 'the', 'comanches', 'remained', 'at', 'peace', 'with', 'new', 'mexico', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'inside', 'of', 'the', 'building', 'has', '', 'many', 'renovations', ',', 'with', 'many', 'of', 'the', 'original', 'characteristic', 'features', 'being', 'changed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'the', 'film', \"'s\", 'release', 'in', 'the', 'united', 'states', ',', 'aip', '', 'scenes', ',', '', 'the', 'soundtrack', ',', 'and', 'changed', 'several', 'of', 'the', 'characters', \"'\", 'names', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'home', 'is', 'the', 'only', 'son', 'of', 'sir', '', '', ',', 'formerly', '1', '4', 'th', 'earl', 'of', 'home', 'and', 'british', 'prime', 'minister', 'and', 'later', 'lord', 'home', 'of', 'the', '', ',', 'and', 'elizabeth', '', ',', 'daughter', 'of', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'unique', 'aspect', 'of', 'this', '', 'is', 'that', 'the', 'internal', 'flow', 'carries', 'both', 'the', 'unstable', '', '', 'and', 'the', 'returning', 'feedback', 'signal', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '1', 'july', '2', '0', '1', '5', ',', 'iwata', 'died', 'of', '', 'duct', 'cancer', ',', 'and', 'after', 'a', 'couple', 'of', 'months', 'in', 'which', 'miyamoto', 'and', '', 'jointly', 'operated', 'the', 'company', ',', '', '', 'was', 'named', 'as', 'iwata', \"'s\", 'successor', 'on', '1', '6', 'september', '2', '0', '1', '5', '.', '']\n", "['', 'he', 'is', 'finishing', 'a', 'short', 'documentary', 'film', ',', '``', 'two', 'down', \"''\", 'that', 'centers', 'on', 'high', 'school', 'speech', 'and', 'debate', 'tournaments', ',', 'for', '', '', 'productions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'rate', 'cards', 'and', 'specification', 'cards', 'refer', 'to', 'the', '``', 'broadsheet', 'size', \"''\", 'with', 'dimensions', 'representing', 'the', 'front', 'page', '``', 'half', 'of', 'a', 'broadsheet', \"''\", 'size', ',', 'rather', 'than', 'the', 'full', ',', '', 'broadsheet', 'spread', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'on', '``', '', \"''\", '', 'four', 'men', '', 'and', 'wrecked', 'her', '', 'lifeboat', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'species', 'of', 'moth', 'in', 'the', 'family', 'geometridae', 'first', 'described', 'by', 'william', 'barnes', 'and', 'james', 'halliday', '', 'in', '1', '9', '1', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'final', 'four', 'years', 'of', 'his', 'life', ',', 'the', '', 'palace', 'where', 'he', 'resided', 'became', 'a', 'spiritual', 'center', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'huerta', \"'s\", 'troops', ',', 'which', 'were', 'running', 'low', 'on', 'supplies', 'were', 'unable', 'to', 'engage', 'in', 'immediate', 'pursuit', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'has', 'served', 'as', 'shadow', 'minister', 'for', 'mental', 'health', 'since', '2', '0', '2', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'writing', 'for', 'the', 'opposition', 'to', 'walpole', ',', 'which', 'included', 'tories', 'as', 'well', 'as', '', ',', 'fielding', 'was', '``', '', 'a', 'whig', \"''\", 'and', 'often', 'praised', 'whig', 'heroes', 'such', 'as', 'the', 'duke', 'of', '', 'and', 'gilbert', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', '', 'was', 'requested', 'to', 'report', 'by', 'the', 'end', 'of', '1', '8', '0', 'days', 'on', 'whether', 'the', 'iraqi', 'government', 'had', 'distributed', 'aid', '', ',', 'and', 'an', 'assessment', 'of', 'the', 'implementation', 'of', 'the', 'goods', 'review', 'list', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'speech', 'had', 'the', 'effect', 'of', 'opening', 'up', 'a', 'public', 'war', 'between', 'clinton', 'and', 'jesse', 'jackson', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'appointed', 'in', '2', '0', '1', '7', 'and', 'resigned', 'in', 'october', '2', '0', '2', '0', 'claiming', 'that', 'the', 'company', 'was', 'returning', 'to', '', 'practices', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'march', '2', '0', '2', '0', 'travel', 'in', 'madrid', 'was', 'severely', 'restricted', 'by', 'measures', 'to', 'prevent', 'the', 'spread', 'of', 'the', 'coronavirus', 'pandemic', 'in', 'spain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'being', 'thrown', 'out', 'of', 'high', 'school', 'in', '1', '9', '6', '5', ',', 'holdt', 'attended', '', 'folk', 'high', 'school', ',', 'north', 'of', 'copenhagen', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'events', 'are', 'given', 'a', 'code', ',', 'made', 'of', 'numbers', 'and', 'letters', ',', 'describing', 'the', 'type', 'of', 'event', 'and', 'classification', 'of', 'the', 'athletes', 'competing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'those', 'born', 'after', '1', 'january', '1', '9', '5', '5', ',', 'but', 'before', '1', 'january', '1', '9', '6', '1', 'are', 'now', 'are', 'eligible', 'to', 'collect', 'their', 'state', 'pension', 'at', '6', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'note', 'that', 'the', 'above', 'equation', 'has', 'three', 'solutions', ',', 'one', 'at', 'zero', 'and', 'two', 'more', 'with', 'the', 'opposite', 'sign', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'also', 'given', 'a', 'secret', 'service', 'pension', 'of', '£', '5', '0', '0', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'later', 'band', 'would', 'prove', 'of', 'increasing', 'importance', 'to', 'the', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'have', 'a', 'shoulder', 'height', 'of', 'with', 'a', '', 'length', 'of', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'defeat', 'had', 'serious', 'consequences', 'for', 'charles', ':', 'his', 'supporters', 'did', \"n't\", 'trusted', 'him', 'anymore', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'speculative', 'and', '', 'aspects', 'of', 'his', 'thought', 'come', 'together', 'around', 'the', 'notion', 'that', 'specific', 'practices', 'can', 'be', 'developed', 'to', 'further', 'this', 'creative', 'movement', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'kpa', 'high', 'velocity', 'gun', 'and', 'heavy', '1', '2', '0', '', '', 'fire', 'struck', 'the', 'column', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'a', 'member', 'of', 'the', '1', '9', '9', '3', 'national', 'league', 'champion', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'two', 'scheduled', 'their', 'marriage', 'to', 'take', 'place', 'in', 'july', 'and', 'kept', 'the', 'arrangement', 'secret', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'pact', 'has', 'also', 'produced', 'a', 'number', 'of', 'reports', 'and', 'research', 'papers', 'dealing', 'with', 'abduction', 'and', 'child', 'protection', 'services', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'has', 'an', 'associate', 'degree', 'in', 'nursing', 'from', 'new', 'york', 'city', 'college', 'of', 'technology', 'and', 'a', 'bachelor', \"'s\", 'degree', 'from', 'the', 'metropolitan', 'university', 'of', 'puerto', 'rico', 'and', 'a', 'master', \"'s\", 'degree', 'in', 'business', 'administration', 'from', 'the', 'university', 'central', 'of', 'michigan', 'in', 'puerto', 'rico', '.', '', '', '', '', '', '']\n", "['', 'of', 'the', '3', '0', '0', 'monasteries', 'and', 'monastic', 'communities', 'on', '', ',', '', 'was', 'among', 'only', '3', '5', 'that', 'survived', 'the', 'violence', 'of', 'the', 'first', 'decade', 'of', 'the', '1', '4', 'th', 'century', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'main', 'subclans', 'among', '', 'rathod', 'are', '', ',', '', ',', '', ',', '', ',', '', ',', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'like', 'contemporary', 'designs', 'such', 'as', 'the', '', '3', '3', 'and', 'cooper', 't', '8', '1', ',', 'the', 'p', '8', '3', 'chassis', 'was', 'a', '', '', 'made', 'of', '', 'with', '', 'fuel', 'tanks', 'running', 'down', 'the', 'chassis', 'on', 'either', 'side', 'of', 'the', 'driver', '.', '', '', '', '', '', '', '', '']\n", "['', 'the', 'show', 'takes', 'features', 'from', 'the', 'book', ',', 'such', 'as', 'the', 'constant', '', 'of', 'the', '', 'mammoth', ',', 'and', 'the', 'detailed', 'and', '', '', 'of', 'the', 'machines', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'the', 'band', 'decided', 'to', 'try', 'something', 'completely', 'different', 'and', 'join', 'forces', 'with', '', 'against', 'the', '', 'producer', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'the', 'early', '1', '9', '5', '0', 's', 'it', 'became', 'simply', 'the', 'college', 'of', 'great', 'falls', ',', 'and', 'in', '1', '9', '9', '5', 'was', 'renamed', 'the', 'university', 'of', 'great', 'falls', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'this', 'same', 'period', ',', 'he', 'was', 'a', 'member', 'of', 'the', 'george', 'washington', 'university', 'faculty', ',', 'where', 'he', 'taught', 'political', 'economics', 'in', 'the', 'school', 'of', 'management', 'sciences', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'decade', 'later', ',', 'bruce', 'returns', 'as', 'a', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'joined', 'the', 'moroccan', 'workers', \"'\", 'union', 'before', 'inside', '', 'grew', '', 'and', 'he', 'helped', 'establish', 'the', 'general', 'union', 'of', 'moroccan', 'workers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'changed', 'his', 'surname', 'from', '', 'to', '', 'by', 'a', '1', '7', '4', '8', 'private', 'act', 'of', 'parliament', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'originally', 'corresponding', 'with', 'the', 'boundaries', 'of', '', '(', '', ')', ',', 'st', '', 'eventually', '', 'all', 'the', 'country', 'south', 'of', 'the', 'river', '', 'and', 'west', 'of', 'the', 'english', 'border', ',', 'with', 'the', 'exception', 'of', 'the', 'greater', 'part', 'of', '', ',', 'in', 'all', 'some', '.', '', '', '', '', '', '']\n", "['', '', 'died', 'at', 'the', 'general', 'hospital', 'of', '', 'on', '2', '3', 'march', '2', '0', '2', '0', ',', 'at', 'the', 'age', 'of', '8', '9', ',', 'from', 'pneumonia', 'complicated', 'by', 'covid-', '1', '9', 'during', 'the', 'pandemic', 'in', 'spain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'awards', 'and', 'more', '', '(', 'two', 'apartment', 'buildings', 'in', 'block', '2', '1', 'in', '', '', ',', '', 'i', 'and', 'ii', 'in', '', '', ',', 'etc', '.', ')', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'said', ':', '``', 'continued', 'arrests', 'fly', 'in', 'the', 'face', 'of', 'the', 'promises', 'made', 'this', 'week', 'by', 'the', '', 'authorities', 'to', '', 'with', 'the', 'united', 'nations', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'also', 'mentioned', 'that', 'the', 'cardinal', \"'s\", 'influence', 'is', 'what', 'allowed', 'his', 'brother', 'to', 'become', 'a', 'senator', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'the', '', 'offensive', 'was', 'still', 'continuing', ',', 'the', 'german', 'and', 'austrian', 'victory', 'at', '', 'on', 'the', 'italian', 'front', 'led', 'to', 'british', 'forces', 'being', '', 'from', 'flanders', 'to', 'shore', 'up', 'the', 'italian', 'army', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'fleet', 'consists', 'of', 'three', '', 'sets', ',', 'numbered', 'k', '0', '1', 'to', 'k', '0', '3', 'and', 'based', 'at', '', 'depot', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '9', ',', 'chris', 'hughes', 'asked', '', 'to', 'come', 'to', 'england', 'to', 'record', 'a', 'new', 'paul', 'mccartney', 'song', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'initially', ',', 'wis', '5', '8', 'ran', 'from', 'wis', '1', '1', '(', 'now', 'us', '1', '4', ')', 'in', '', 'to', 'wis', '3', '3', 'in', 'la', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'means', 'that', ',', 'if', 'the', 'presence', 'of', 'anti-tank', 'mines', 'is', 'suspected', ',', 'the', '', 'must', ',', '', ',', 'be', '', '', 'first', 'to', 'make', 'it', 'safe', 'for', 'the', 'mine', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'picture', 'was', 'in', 'a', 'silhouette', 'on', 'the', 'band', \"'s\", 'official', 'facebook', 'the', 'day', 'before', 'the', 'band', 'announced', 'a', 'new', 'line-up', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'late', 'summer', 'of', '1', '9', '4', '4', ',', 'together', 'with', '', ',', 'he', 'planned', 'and', 'implemented', 'operation', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'tickets', 'for', 'the', 'tour', 'went', 'on', 'general', 'sale', 'on', '1', '7', 'and', '1', '8', 'november', '2', '0', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'applications', 'can', 'be', 'developed', 'under', 'any', '', 'supporting', 'java', '1', '.', '2', 'or', 'greater', ',', 'and', 'the', 'libraries', 'and', 'tools', '', 'with', 'development', '', 'such', 'as', 'eclipse', ',', '', ',', 'etc', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'received', 'high', 'praise', 'for', 'returning', 'to', 'his', 'acclaimed', '', 'football', 'with', 'top', 'performances', 'on', '', '', '', 'harvey', '(', 'north', 'melbourne', ')', 'and', 'gary', '', '(', 'gold', 'coast', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'choices', 'made', 'of', 'internal', 'linguistic', 'variant', 'forms', 'are', '', '', 'by', 'a', 'range', 'of', 'factors', 'at', 'both', 'the', 'linguistic', 'and', 'the', 'social', 'levels', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'make', 'up', 'the', 'northern', 'section', 'of', '', 'and', 'then', '', 'into', 'the', '', ',', 'which', 'themselves', '', 'into', 'hills', 'and', 'the', 'valleys', 'of', 'the', '', 'valley', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'lands', 'of', 'tour', 'and', '', '(', '', '4', '1', '6', '4', '0', '6', ')', 'formed', 'a', 'small', 'estate', 'close', 'to', 'the', 'old', '', 'and', 'st', '', 'collegiate', 'church', 'about', '1', 'km', 'south-east', 'of', '', ',', 'east', '', ',', 'parish', 'of', '', ',', 'scotland', '.', '', '', '', '', '']\n", "['', 'according', 'to', 'weapon', 'brown', 'in', 'an', 'internal', '', ',', 'this', 'caused', 'them', 'to', 'shift', 'from', 'making', '', '', 'to', 'making', 'chemical', 'weapons', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'have', 'a', '', 'coat', 'which', 'forms', 'a', '', 'on', 'top', 'of', 'the', 'dog', \"'s\", 'head', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'black', 'church', 'studies', ':', 'an', 'introduction', \"''\", 'is', 'a', '', 'that', 'covers', 'a', 'range', 'of', '', 'that', 'make', 'up', 'the', 'interdisciplinary', 'field', 'of', 'black', 'church', 'studies', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'named', '', '', 'died', 'and', 'was', 'buried', 'in', '', 'and', 'was', 'believed', 'to', '', 'the', 'village', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', '', ',', 'the', 'character', 'is', 'not', '', ';', '``', 'she', 'just', 'likes', 'to', 'eat', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'several', 'bay', 'beach', 'clubs', 'service', 'the', 'surrounding', '', 'as', 'recreation', 'centers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'only', 'friend', 'in', 'prison', 'is', 'a', '', 'german', 'named', 'johann', '', ',', 'whose', 'reason', 'for', 'being', 'interned', 'is', 'never', 'fully', 'revealed', 'but', 'is', 'implied', 'to', 'be', 'his', 'outspoken', 'opposition', 'to', 'the', 'nazis', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '1', '9', '3', '4', 'appeal', 'was', 'influential', 'in', '', 'the', 'june', '1', '9', '3', '4', 'detroit', 'convention', 'of', 'the', 'socialist', 'party', 'towards', 'a', '', 'new', 'declaration', 'of', 'principles', ',', 'a', 'document', 'ultimately', 'written', 'by', 'norman', 'thomas', \"'\", 'associate', '', 'allen', '.', '', '', '', '', '', '', '', '']\n", "['', 'he', 'finished', 'his', 'secondary', 'education', 'in', '', 'in', '1', '9', '5', '6', ',', 'took', 'military', 'training', 'in', '', 'and', 'studied', 'at', 'the', 'university', 'of', 'oslo', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '1', '8', '.', '8', '%', 'of', 'all', 'households', 'were', 'made', 'up', 'of', 'individuals', ',', 'and', '7', '.', '9', '%', 'had', 'someone', 'living', 'alone', 'who', 'was', '6', '5', 'years', 'of', 'age', 'or', 'older', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'servants', ',', 'upon', 'hearing', 'the', 'shots', ',', 'called', 'the', 'police', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'structure', 'was', '', 'and', 'converted', 'to', 'a', '2', '4', '6', '', 'hotel', 'by', 'the', '', 'group', ',', 'an', 'arm', 'of', 'the', 'cuban', 'military', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'about', '6', '0', ',', '0', '0', '0', 'people', 'came', 'to', 'the', 'gathering', 'to', 'participate', 'in', 'the', 'protest', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'collaborated', 'with', 'carl', 'wu', 'and', 'sarah', '', '(', 'then', 'at', 'harvard', ')', 'on', 'fundamental', 'properties', 'of', 'metazoan', '', 'structure', '(', 'wu', ',', 'et', '', ',', '1', '9', '7', '9', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'the', 'largest', 'strike', 'in', 'history', '(', 'as', 'of', '2', '0', '0', '7', ')', 'against', 'deutsche', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'sergio', '', 'is', 'a', 'young', 'businessman', 'from', '', 'who', 'manages', '', 'trafficking', 'of', 'young', '', 'which', 'he', 'uses', 'to', '', 'local', 'politicians', 'and', 'obtain', '', 'outside', 'normal', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'wilson', 'was', 'cast', 'as', '', '', '', '', ',', 'and', 'he', 'watched', 'every', 'episode', 'of', 'the', 'british', 'series', 'before', 'he', 'auditioned', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'reality', 'the', 'auxiliary', '``', 'ya', \"''\", 'is', 'a', 'reduced', 'form', 'of', 'the', '', 'marker', '``', '', \"''\", ',', 'though', 'variation', 'and', 'conditioning', '', 'greatly', 'across', 'dialects', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'lü', 'is', 'also', 'one', 'of', 'the', 'most', 'prominent', 'cases', 'in', 'chinese', 'history', 'of', 'literary', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'the', 'church', 'of', 'the', 'convent', 'of', '', 'at', 'madrid', 'he', 'painted', 'a', '``', 'marriage', \"''\", 'and', '``', 'death', 'of', 'st.', 'joseph', \"''\", 'and', 'in', 'the', 'church', 'of', 'san', '', 'el', 'real', ',', 'a', 'large', '', 'of', 'the', '``', '', \"''\", '.', '', '', '', '', '', '', '', '']\n", "['', '2', '3', '.', '5', '%', 'of', 'all', 'households', 'were', 'made', 'up', 'of', 'individuals', ',', 'and', '5', '.', '1', '%', 'had', 'someone', 'living', 'alone', 'who', 'was', '6', '5', 'years', 'of', 'age', 'or', 'older', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'teams', 'which', 'participated', 'in', 'partial', 'season', 'or', 'on', 'a', 'race', 'by', 'race', 'basis', 'were', 'not', 'counted', 'as', 'part', 'of', 'the', 'championship', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'hull', 'had', 'an', '', 'steel', 'construction', 'that', 'incorporates', 'a', '', 'alloy', 'steel', 'and', 'was', 'manufactured', 'using', 'advanced', '', 'techniques', ',', 'providing', 'adequate', 'protection', 'from', 'small', 'arms', 'and', 'cannon', 'fire', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'february', '2', '0', '0', '9', ',', 'with', 'the', 'help', 'from', 'the', 'norwegian', 'national', 'association', 'for', 'lesbian', 'and', 'gay', 'liberation', ',', 'bob', 'organised', 'the', 'first', '', 'workshop', 'in', 'bangladesh', ',', 'titled', '``', 'workshop', 'on', 'sexual', 'diversity', ',', 'partnership', 'building', 'and', 'networking', \"''\", '.', '', '', '', '', '', '', '']\n", "['', 'cristiani', \"'s\", 'work', 'on', 'bertolucci', \"'s\", 'next', 'film', ',', '``', 'the', 'sheltering', 'sky', \"''\", '(', '1', '9', '9', '0', ')', ',', 'is', 'noted', 'for', 'a', 'technical', 'innovation', ',', 'which', 'was', 'the', '``', '', \"''\", 'editing', 'of', 'the', 'film', 'using', 'digital', 'techniques', '.', '', '', '', '', '', '', '', '']\n", "['', '', 'population', 'is', 'based', 'on', '9', '9', '%', 'muslims', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'the', '', 'river', ',', 'a', 'single', 'family', 'of', '', 'can', 'be', 'found', ',', 'with', 'much', 'less', 'influence', 'from', 'the', 'brazilian', 'society', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'winter', 'and', 'his', 'consort', 'began', 'organizing', 'many', 'different', 'events', 'at', 'the', 'cathedral', ',', 'and', 'in', 'turn', ',', 'the', 'cathedral', 'allowed', 'the', 'use', 'of', 'its', 'very', '', 'sanctuary', '(', 'with', 'a', 'measured', 'seven', 'seconds', 'of', '', 'time', ')', 'and', 'its', 'organ', 'for', 'the', 'creation', 'of', 'new', 'albums', '.', '', '', '']\n", "['', 'in', 'the', 'mid-', '1', '9', '4', '0', 's', ',', '', 'began', 'to', 'suffer', 'from', 'intense', 'finger', 'pain', 'caused', 'by', 'arthritis', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'lake', 'barkley', ',', 'a', 'reservoir', 'in', 'livingston', 'county', ',', 'lyon', 'county', 'and', '', 'county', 'in', 'kentucky', 'and', 'extending', 'into', 'stewart', 'county', 'and', 'houston', 'county', 'in', 'tennessee', ',', 'was', '', 'by', 'the', 'u.s.', 'army', 'corps', 'of', 'engineers', 'in', '1', '9', '6', '6', 'upon', 'the', 'completion', 'of', 'barkley', 'dam', '.', '', '']\n", "['', 'during', 'the', 'same', 'month', ',', 'the', '', 'chain', \"'s\", '', 'sales', '', 'eur', '1', '0', 'million', 'for', 'the', 'first', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'aired', 'on', 'february', '1', '1', ',', '2', '0', '0', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'joseph', '', 'of', '``', '', \"''\", 'wrote', 'that', 'she', '``', 'looks', 'lovely', \"''\", 'and', '``', 'sings', '', ',', 'with', 'an', 'occasional', '', 'reference', 'to', 'the', '', 'and', '', 'of', 'ella', 'logan', \"'s\", 'original', 'performance', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '``', '', \"''\", 'song', 'score', 'by', 'pop', 'star', 'phil', 'collins', 'resulted', 'in', 'significant', 'record', 'sales', 'and', 'an', 'academy', 'award', 'for', 'best', 'song', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'promoted', 'by', 'the', 'section', 'of', 'culture', 'of', 'the', 'city', 'council', 'of', 'madrid', ',', 'which', 'wanted', 'to', 'represent', 'the', 'main', '', '', 'of', 'the', 'city', 'in', 'a', 'monument', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'upon', 'graduation', ',', 'he', 'was', 'assigned', 'to', 'the', '2', '8', 'th', 'infantry', 'at', 'fort', 'niagara', ',', 'new', 'york', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'demonstrations', 'such', 'as', 'the', 'women', \"'s\", 'march', 'on', 'versailles', ',', 'and', 'the', 'demonstration', 'of', '2', '0', 'june', '1', '7', '9', '2', ',', 'women', 'displayed', 'their', 'commitment', 'to', 'the', 'revolution', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'rose', 'to', 'the', 'rank', 'of', 'colonel', 'and', 'afterwards', 'worked', 'at', 'wellington', 'hospital', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'photographed', 'the', 'new', 'york', 'philharmonic', 'concerts', 'at', '', 'stadium', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'little', 'money', 'left', ',', 'sharon', 'offered', 'to', 'pay', 'for', 'his', 'legal', 'fees', 'and', 'brought', 'in', '', 'and', 'his', 'new', 'legal', 'partner', ',', 'leslie', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '(', 'two', '', ')', 'in', '1', '9', '8', '4', 'and', '1', '9', '8', '9', ',', '', 'trinity', '(', 'heritage', 'no', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', '', 'that', 'countries', 'that', 'are', 'more', '', 'sound', ',', 'and', 'have', 'more', 'individuals', 'with', 'the', 'ability', 'to', '', 'their', '', ',', 'will', 'show', 'higher', 'levels', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bloglines', 'offered', 'an', 'application', 'programming', '', 'that', '', 'of', 'web', 'sites', 'could', 'use', 'to', 'write', 'software', 'to', 'read', 'feeds', ',', 'search', 'its', 'database', 'of', 'feed', 'entries', ',', 'and', '', 'the', 'service', 'when', 'a', 'website', 'was', 'updated', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'december', '1', '1', ',', '2', '0', '0', '3', 'doug', '', 'was', 'replaced', 'as', 'ceo', 'by', 'frank', 'wilde', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'over', 'two', 'hundred', '', '', 'through', 'the', 'city', 'and', 'held', 'a', 'peaceful', '', 'on', 'june', '1', '1', ',', 'starting', 'at', 'the', 'franklin', 'library', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'of', 'mackenzie', \"'s\", '', 'agree', 'that', 'he', 'delayed', 'the', 'implementation', 'of', 'responsible', 'government', 'because', 'the', 'upper', 'canada', 'rebellion', 'caused', 'an', 'exodus', 'of', 'reform', 'politicians', 'from', 'the', 'colony', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'company', 'built', 'new', '', 'in', 'several', 'towns', ',', 'a', 'new', 'headquarters', ',', 'with', 'major', 'engineering', 'workshops', ',', 'in', '', 'road', ',', 'northampton', ',', 'and', 'a', 'central', 'covered', 'bus', 'station', 'at', '', ',', 'northampton', ',', 'thus', 'putting', 'it', 'into', 'a', 'good', 'shape', 'to', '', 'the', '', 'of', 'wartime', 'operation', '.']\n", "['', 'super', '', 'oversaw', '', 'specific', 'areas', 'of', 'the', 'forums', 'which', 'were', 'either', 'part', 'of', 'their', 'expertise', 'or', 'was', 'part', 'of', 'their', 'geographical', 'location', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'changes', 'were', 'also', 'made', 'to', '', \"'s\", '``', '', 'la', '', \"''\", 'and', 'to', 'the', 'count', \"'s\", 'lines', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'ship', 'was', 'built', 'as', 'yard', 'number', '6', '1', '4', 'in', '1', '9', '3', '9', 'by', 'deutsche', '', 'und', '', 'ag', ',', 'bremen', ',', 'germany', 'as', '``', '', \"''\", 'for', '', 'line', ',', 'bremen', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '1', '3', 'squadron', 'was', 'assigned', 'the', 'role', 'of', 'map', 'production', 'which', 'remains', 'its', 'core', 'duties', 'to', 'this', 'day', '.', '1', '4', 'field', 'survey', 'squadron', 'remained', 'in', 'germany', 'after', 'the', 'second', 'world', 'war', ',', 'and', 'provided', 'geographic', 'support', 'to', 'the', 'british', 'army', 'on', 'the', 'rhine', '.', '', '', '', '', '']\n", "['', 'he', '', 'by', 'jumping', 'of', 'a', 'window', '', 'over', 'a', 'table', 'of', 'food', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '``', 'm', \"''\", 'has', 'a', 'right', 'action', 'of', 'a', 'ring', '``', 's', \"''\", 'that', '', 'with', 'the', '``', 'r', \"''\", '', ';', '', ',', '``', 'm', \"''\", 'is', 'an', '(', '``', 'r', \"''\", ',', '``', 's', \"''\", ')', '', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'also', 'referred', 'to', 'as', '', '(', ')', 'and', 'is', 'associated', 'with', 'creation', ',', 'knowledge', 'and', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'results', 'of', 'such', 'polls', 'are', 'displayed', 'in', 'this', 'article', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '6', ',', '', 'magazine', 'reported', 'that', 'a', 'hindu', 'first-person', 'shooter', 'entitled', '``', 'my', 'hindu', 'shooter', \"''\", 'was', 'in', 'the', 'works', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'said', ',', '', 'is', 'what', 'i', 'want', '.', \"'\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'construction', 'began', 'that', 'year', 'and', 'the', 'church', 'was', 'designed', 'by', 'joseph', '', 'of', '', '(', '1', '7', '8', '3', '-', '1', '8', '5', '8', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'constructed', 'as', 'a', 'cathedral', 'in', 'the', '1', '9', '2', '0', 's', 'during', 'the', 'italian', '', 'colonial', 'era', ',', 'and', 'converted', 'into', 'a', 'mosque', 'in', '1', '9', '7', '0', ',', 'with', 'the', 'st.', 'francis', '', 'now', 'serving', 'as', 'temporary', 'cathedral', 'for', 'the', 'apostolic', '', 'of', '', '.', '', '']\n", "['', 'in', 'the', '2', '0', '0', '0', 's', 'priest', \"'s\", 'thought', 'turned', 'to', 'the', 'relationship', 'between', 'philosophy', 'and', 'theology', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'band', 'has', 'also', 'played', 'at', 'the', '', 'festival', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'naval', '', 'operations', '(', 'x', ')', 'is', 'considered', 'to', 'be', 'among', 'the', 'best', 'planned', 'and', 'executed', 'military', 'operations', 'in', 'the', 'world', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'made', 'the', 'decision', 'to', '', 'the', '', 'of', 'the', 'resolution', 'and', 'report', 'its', 'results', 'at', 'the', '1', '9', '7', '7', 'detroit', 'conference', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'replacement', 'of', 'all', 'of', 'these', 'components', 'and', 'structures', 'is', '', '-', 'the', '', 'pressure', 'vessel', 'being', 'of', 'particular', 'significance', 'in', 'this', 'regard', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thirty', 'years', 'later', 'the', 'institution', \"'s\", 'title', 'was', 'changed', 'to', 'the', '``', 'royal', 'national', 'lifeboat', 'institution', \"''\", 'and', 'the', 'first', 'of', 'the', 'new', '', 'to', 'be', 'built', 'was', 'stationed', 'at', 'douglas', 'in', 'recognition', 'of', 'hillary', \"'s\", 'work', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'if', 'the', 'discount', 'rate', 'for', '', '(', 'shares', ')', 'with', 'this', 'level', 'of', 'systematic', 'risk', 'is', '1', '2', '.', '5', '0', '%', ',', 'then', 'a', 'constant', '', 'of', '', 'income', 'per', 'dollar', 'is', 'eight', 'dollars', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'real', 'life', 'residence', 'of', 'gay', 'pop', 'artist', '', '', '(', 'juan', '', 'and', '', '', ')', ',', 'who', 'also', 'appear', 'in', 'the', 'film', ',', 'served', 'as', 'the', 'place', 'where', '', 'and', 'bom', 'set', 'up', 'their', 'home', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'no', 'bishop', 'of', '', 'attended', 'the', 'council', 'which', '', 'the', 'diocese', 'of', '', 'in', '9', '7', '4', ',', 'or', 'if', 'one', 'did', 'he', 'did', 'not', 'sign', 'the', 'acts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'seems', 'at', 'the', 'end', ',', 'anthony', 'and', 'angela', 'may', 'come', 'to', 'terms', 'with', 'america', \"'s\", 'racist', 'past', 'and', 'their', 'own', '', 'future', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'lost', 'his', 'second', 'straight', 'match', ',', 'completing', 'a', 'sudden', 'drop', 'from', 'one', 'of', 'two', '', '', 'to', 'one', 'of', '3', '5', 'who', 'did', 'not', 'make', 'it', 'to', 'the', 'final', 'round', ',', 'with', '', '', 'on', 'the', 'strength', 'of', 'that', 'win', '.', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'a', '``', 'chicago', 'tribune', \"''\", 'and', '``', 'chicago', '', \"''\", '', '', 'as', 'a', 'senior', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'away', 'strip', '(', 'and', '', \"'\", 'strip', ')', 'is', 'the', 'same', 'as', 'the', 'home', 'but', 'with', 'red', 'bands', 'in', 'place', 'of', 'the', 'black', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'show', 'in', 'chicago', 'was', 'announced', 'later', ',', 'and', 'tickets', 'for', 'this', 'show', 'went', 'on', 'general', 'sale', 'on', '2', 'december', '1', '2', 'pm', '(', '', ')', ',', 'and', 'could', 'be', 'obtained', 'through', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'opie', 'rejected', 'reynolds', \"'s\", 'tradition', 'of', '', 'the', 'subjects', 'of', 'paintings', ',', '', 'that', 'he', 'did', 'not', 'believe', '``', 'that', 'the', 'flesh', 'of', 'heroes', 'is', 'less', 'like', 'flesh', 'than', 'that', 'of', 'other', 'men', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'early', '2', '0', '1', '7', ',', 'he', 'signed', 'with', 'creative', 'artists', 'agency', '(', '', ')', ',', 'and', 'put', 'together', 'his', 'debut', 'tour', 'can', 'i', 'drop', 'out', 'yet', 'in', 'the', 'fall', 'of', '2', '0', '1', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'of', 'the', 'music', 'was', '', 'with', '', ',', '', 'animal', ',', 'ground', '', 'recordings', ',', '', ',', '', 'tape', ',', 'nurse', 'with', 'wound', \"'s\", 'label', '(', 'united', '', ')', ',', 'and', 'more', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'amir', '', '(', ';', 'born', '1', '9', 'october', '1', '9', '9', '7', ')', 'is', 'an', 'israeli', 'swimmer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'gygax', 'updated', 'the', 'scenario', 'to', '``', 'advanced', '', '&', 'amp', ';', 'dragons', \"''\", '(', 'ad', '&', 'amp', ';', 'd', ')', 'rules', ',', 'hoping', 'it', 'could', 'serve', 'as', 'a', '', 'on', 'how', 'to', '', 'science', 'into', 'one', \"'s\", 'fantasy', 'role', 'playing', 'game', '.', '', '', '', '', '', '', '', '']\n", "['', '', 'responded', 'by', 'publishing', '``', 'a', 'world', 'of', 'errors', 'discovered', 'in', 'the', '', 'of', 'hard', 'words', ',', 'written', 'against', 'sir', 'edward', 'phillips', 'book', 'entitled', 'a', 'new', 'world', \"''\", 'in', '1', '6', '7', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'officially', 'became', 'the', 'first', 'female', 'modern', 'orthodox', 'rabbi', 'in', 'the', 'united', 'states', 'of', 'america', 'when', 'the', 'modern', 'orthodox', 'mount', 'freedom', 'jewish', 'center', 'in', '', ',', 'new', 'jersey', 'hired', 'her', 'as', 'a', 'spiritual', 'leader', 'in', 'january', '2', '0', '1', '6', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'town', 'has', 'a', 'small', 'regional', 'medical', 'center', ',', 'a', 'mayor', \"'s\", 'office', ',', 'an', 'active', '', ',', 'a', 'petrol', 'station', ',', 'a', 'high', 'school', ',', 'five', 'primary', 'schools', ',', 'a', 'catholic', 'church', ',', 'several', 'protestant', 'churches', ',', 'and', 'a', 'mosque', '.', '', '', '', '', '', '', '', '']\n", "['', 'the', 'viewer', 'is', 'also', 'led', 'to', 'believe', 'that', 'the', 'future', 'russian', 'army', 'will', 'be', 'largely', 'composed', 'of', 'children', 'such', 'as', 'these', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '5', '4', 'games', 'with', '', 'and', '1', '2', 'games', 'of', '', 'for', 'the', 'portland', 'sea', 'dogs', ',', 'he', 'hit', 'a', 'combined', '.', '2', '4', '2', 'with', '5', '', 'and', '2', '4', 'rbi', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', '', 'have', 'featured', 'on', 'many', 'chart', 'releases', 'including', ',', 'but', 'not', 'limited', 'to', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '7', '3', '4', 'until', '1', '7', '3', '9', 'he', 'wrote', '', 'for', 'the', 'leading', '', 'periodical', ',', '``', 'the', '', \"''\", ',', 'against', 'the', 'prime', 'minister', ',', 'sir', 'robert', 'walpole', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'studios', 'are', 'located', 'inside', 'the', 'sea', 'and', 'sky', 'college', 'campus', ',', 'macarthur', 'highway', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'other', 'hand', ',', 'the', '', 'theorem', ',', 'a', 'central', 'result', 'in', 'the', 'classification', 'of', 'riemann', 'surfaces', ',', 'states', 'that', 'every', '', 'riemann', 'surface', 'is', '', 'to', 'the', 'complex', 'plane', ',', 'the', '', 'plane', ',', 'or', 'the', 'riemann', 'sphere', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '5', '3', 'the', 'play', 'was', 'adapted', 'into', 'a', 'film', 'directed', 'by', 'michael', 'anderson', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '8', ',', 'chettleburgh', 'stated', 'that', 'there', 'were', 'approximately', '1', '2', 'confirmed', 'npf', 'members', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'june', ',', 'colombian', 'newspaper', '``', 'el', '', \"''\", 'reported', 'that', '', 'had', 'been', 'filming', 'the', 'music', 'video', 'for', 'the', 'song', 'in', '', ',', 'portugal', ',', 'and', 'speculated', 'that', 'it', 'would', 'be', 'in', 'late', '2', '0', '1', '2', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '', 'allows', 'the', 'work', 'content', 'to', 'be', 'adapted', 'as', '', 'or', 'product', 'mix', 'changes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'participated', 'in', '``', '', ':', 'sister', 'ma', \"''\", '(', '1', '9', '9', '9', ')', 'and', '``', 'chinese', 'communist', 'party', 'member', ':', 'sister', 'ma', \"''\", '(', '2', '0', '0', '2', ')', 'as', '', 'liu', ',', '', 'directed', 'by', '', 'da', ',', 'the', 'former', 'husband', 'of', 'song', '', '.', '', '']\n", "['', 'early', 'in', '1', '9', '6', '8', ',', '', 'was', '', 'and', 'replaced', 'by', '', 'alexander', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'single', 'was', 'a', 'great', 'combination', 'of', 'the', 'best', '``', 'conscience', \"''\", '', 'of', 'rap', 'artists', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'van', '', 'became', 'connecticut', 'adjutant', 'general', 'from', '1', '8', '9', '9', 'to', '1', '9', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'south', 'of', 'this', 'interchange', ',', 'the', 'i-', '2', '8', '0', 'freeway', '', 'to', 'state', 'route', '4', '2', '0', '(', 'sr', '4', '2', '0', ')', ',', 'a', 'divided', 'highway', 'without', 'access', 'control', ',', 'that', 'also', 'provides', 'access', 'to', 'a', 'truck', 'stop', 'and', 'other', 'businesses', '.', '', '', '', '', '', '']\n", "['', 'old', 'san', 'juan', 'is', 'the', 'oldest', 'settlement', 'within', 'puerto', 'rico', 'and', 'the', 'historic', 'colonial', 'section', 'of', 'the', 'city', 'of', 'san', 'juan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', '4', '×', '2', '4', '', 'sight', 'and', 'mount', 'assembly', 'were', 'developed', 'for', 'designated', '', 'use', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'case', 'was', 'identified', 'in', '1', '9', '8', '1', 'and', 'published', 'in', 'a', 'dutch', 'clinical', 'chemistry', 'journal', 'that', '', 'a', 'number', 'of', 'neurological', 'conditions', 'such', 'as', 'delayed', 'intellectual', ',', 'motor', ',', 'speech', ',', 'and', 'language', 'as', 'the', 'most', 'common', '', '.', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'following', 'the', 'decision', 'of', 'the', 'cumberland', 'sheriff', 'to', '', '4', '6', 'of', 'lawson', \"'s\", 'votes', ',', 'his', 'total', '', 'that', 'of', 'his', 'cousin', '', 'lawson', 'and', 'it', 'was', 'the', 'latter', 'who', 'was', 'returned', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '3', '0', ',', 'the', 'club', 'had', '1', ',', '6', '0', '0', 'members', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", 'has', 'been', 'characterized', 'as', 'an', 'uncommon', '', '', 'by', '', '', 'survey', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'literature', 'of', 'singapore', ',', 'or', '``', '', \"''\", ',', 'comprises', 'a', 'collection', 'of', 'literary', 'works', 'by', '', 'written', '', 'in', 'the', 'country', \"'s\", 'four', 'official', 'languages', ':', 'english', ',', 'malay', ',', 'mandarin', ',', 'and', 'tamil', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', 'february', '2', '0', '1', '1', ',', 'these', 'codes', 'are', 'no', 'longer', 'in', 'use', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'churchyard', ',', 'don', 'juan', 'tells', '', 'about', 'how', 'lovely', '', 'looks', 'and', 'how', 'they', 'are', 'to', 'be', 'married', 'in', 'a', 'few', 'hours', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bury', '', 'toured', 'continuously', 'over', 'the', 'course', 'of', '2', '0', '1', '0', ',', 'touring', 'across', 'the', 'united', 'states', ',', 'europe', 'and', 'japan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'a', 'record', 'label', 'that', 'started', 'as', 'an', '', 'of', 'sony', 'music', 'australia', 'in', 'mid-', '1', '9', '9', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'the', '1', '9', '5', '0', 's', ',', 'the', 'greater', '', 'paul', 'metropolitan', 'area', 'had', 'fully', 'absorbed', 'the', 'town', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '0', 'and', '1', '9', '9', '1', 'he', 'studied', 'as', 'an', 'intern', 'at', 'the', 'institut', 'des', 'arts', '', '(', 'institute', 'of', 'plastic', 'arts', ')', 'in', 'paris', ',', 'france', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'has', 'been', 'suggested', 'that', 'they', 'could', 'be', '', 'to', 'be', 'used', 'for', 'the', 'control', 'of', '', 'fungi', 'in', '', 'and', 'other', 'indoor', 'cultures', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'taking', '2', '0', 'th', 'place', ',', 'her', '', 'began', 'in', 'december', '2', '0', '1', '1', 'when', 'she', 'received', 'gold', 'in', 'the', 'women', \"'s\", 'parallel', 'giant', 'slalom', 'in', '', ',', 'italy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', 'high', 'bids', 'came', 'in', 'to', 'operate', 'the', 'service', ',', 'the', 'city', \"'s\", 'mayor', 'appointed', 'a', 'committee', 'made', 'up', 'of', 'supporters', 'and', '', 'of', 'the', 'bus', 'service', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'described', 'by', 'arthur', '', 'butler', 'in', '1', '8', '7', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'invited', 'to', '``', '', '', \"''\", ',', 'and', '``', '', '', 'tu', 'night', \"''\", 'to', 'perform', 'the', 'hit', 'single', '``', 'feel', 'the', 'rhythm', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '``', 'cbs', 'this', 'morning', \"''\", '-', 'statue', '', 'black', 'man', 'on', '', '``', 'speaking', 'back', \"''\", 'to', 'people', 'looking', 'at', 'confederate', 'monuments', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'treaty', 'guaranteed', 'the', 'yakama', 'rights', 'to', 'their', 'land', ';', 'however', ',', 'following', 'publicity', 'about', 'discovery', 'of', 'gold', 'in', 'the', 'area', ',', 'miners', 'soon', '', 'on', 'the', 'yakama', 'reservation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'education', 'was', 'supervised', 'by', 'general', 'alexander', '', ',', 'a', 'retired', 'artillery', 'officer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', ')', 'is', 'one', 'of', 'the', 'principal', 'deities', 'of', '', ',', 'though', 'his', 'importance', 'has', 'declined', 'in', 'recent', 'centuries', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', '``', 'pain', \"''\", ')', 'is', 'a', '1', '9', '8', '1', '', 'crime', 'film', 'directed', 'by', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'lower', '', 'creek', 'township', 'also', 'borders', 'the', 'delaware', 'bay', ',', 'cumberland', 'county', 'and', 'a', 'small', 'point', 'of', 'land', 'that', 'is', 'located', 'within', 'delaware', \"'s\", '', 'circle', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'stories', 'of', 'ibis', 'begins', 'with', 'a', '', 'storyteller', 'who', '', 'ibis', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '2', '3', 'seed', 'jack', '', 'and', '', 'dan', 'evans', 'in', 'the', 'third', 'and', 'fourth', 'rounds', 'respectively', ',', 'both', 'in', 'four', 'sets', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'director', '', '', 'has', 'decided', 'to', 'do', 'away', 'with', 'the', 'female', 'leads', 'and', 'bring', 'back', 'the', 'entire', 'cast', 'from', 'the', 'hit', 'film', 'dhamaal', 'with', 'one', 'change', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'village', 'in', 'the', 'administrative', 'district', 'of', 'gmina', '', ',', 'within', '', 'county', ',', 'masovian', 'voivodeship', ',', 'in', 'east-central', 'poland', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'father', 'was', 'a', 'historian', 'at', 'the', 'university', 'of', 'chicago', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'year', 'later', ',', 'a', 'movie', 'theater', 'opened', 'behind', 'the', 'mall', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'square', 'was', 'now', 'vulnerable', 'to', 'a', '', 'suit', ',', 'and', ',', 'in', 'the', 'spring', 'of', '1', '8', '5', '7', 'a', 'director', 'of', 'the', 'great', 'northern', 'railway', 'filed', 'a', 'petition', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'before', 'the', 'opening', 'of', 'br-', '1', '7', '4', ',', 'the', 'only', 'communication', 'link', 'between', 'the', 'capitals', 'of', '', 'and', '', 'were', 'along', 'the', 'rio', '', ',', 'which', 'is', 'only', '', 'three', 'to', 'four', 'months', 'of', 'the', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'adult', '', 'have', 'a', 'hollow', 'cerebral', '', ',', 'equivalent', 'to', 'a', 'brain', ',', 'and', 'a', 'hollow', 'structure', 'known', 'as', 'a', 'neural', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'growth', '', 'is', 'associated', 'with', '', ',', 'in', 'both', 'term', 'and', '', 'infants', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ang', 'eng', 'died', 'in', '1', '7', '9', '6', 'when', 'ang', 'chan', 'ii', 'was', 'only', 'five', 'years', 'old', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'state', 'parties', 'are', '', 'to', 'issue', '', '', 'on', 'request', 'and', 'accept', 'the', '', 'of', 'other', 'countries', 'and', 'handle', 'them', 'not', '', 'from', 'national', '', ':', '``', 'they', 'shall', 'be', 'handled', 'without', 'legislation', 'or', 'equivalent', '', 'in', 'the', 'territory', 'of', 'each', 'state', \"''\", '.', '', '', '', '', '', '']\n", "['', 'the', 'boundary', 'line', 'was', 'at', 'the', '3', '7', 'th', 'parallel', 'of', 'north', 'latitude', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'his', 'term', 'was', '', 'by', 'the', 'economic', '', 'of', 'the', 'great', 'depression', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'species', 'of', '', 'or', 'fruit', '', 'in', 'the', 'genus', '``', '', \"''\", 'of', 'the', 'family', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'due', 'to', 'the', 'popularity', 'of', 'the', 'book', '``', 'the', 'way', 'things', 'work', \"''\", 'by', 'david', '', ',', '', '', 'a', 'concept', 'for', 'an', 'educational', 'television', 'series', 'with', 'similar', 'features', 'to', '', 'media', ',', 'who', 'accepted', 'the', 'idea', 'and', 'agreed', 'to', '', 'the', 'programme', 'to', 'the', 'bbc', 'upon', 'completion', '.', '']\n", "['', 'the', 'acm', 'filters', 'two', 'types', 'of', 'messages', ':', 'update', 'messages', 'and', 'interaction', 'messages', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'despite', 'the', 'vast', 'diversity', 'in', 'the', 'muscat', 'family', ',', 'one', 'common', '', 'that', 'can', 'be', 'seen', 'in', 'most', 'all', 'muscat', 'members', 'is', 'the', 'characteristic', '', ',', '``', '', \"''\", 'aroma', 'note', 'that', 'is', 'caused', 'by', 'the', 'high', 'concentration', 'of', '', 'in', 'the', 'grapes', '.', '', '', '', '', '', '']\n", "['', 'in', 'fiscal', 'year', '2', '0', '1', '7', ',', 'the', 'organization', 'earned', 'a', '9', '5', '.', '9', '3', '%', 'rating', 'by', 'charity', '', ',', 'an', 'organization', 'that', '', 'the', '', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'was', 'a', 'syrian', 'activist', 'who', 'became', 'known', 'for', 'giving', 'flowers', 'and', 'roses', 'to', 'army', 'soldiers', 'in', 'his', 'home', 'town', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'a', 'nervous', 'wait', '', 'and', 'greene', 'made', 'the', 'final', 'on', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'a', 'staff', 'writer', 'for', '``', 'the', 'new', 'yorker', \"''\", 'and', 'has', 'contributed', 'to', 'the', 'magazine', 'since', '2', '0', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'simple', '', 'device', 'can', 'quickly', 'teach', 'children', 'to', 'wake', 'up', 'when', 'their', '', 'are', 'full', 'and', 'to', 'contract', 'the', '', '', 'and', '', 'the', '', 'muscle', ',', '', 'further', 'urine', 'release', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'american', '', 'william', 'manchester', 'argues', 'that', 'without', 'macarthur', \"'s\", 'leadership', ',', 'japan', 'would', 'not', 'have', 'been', 'able', 'to', 'make', 'the', 'move', 'from', 'an', 'imperial', ',', '', 'state', ',', 'to', 'a', 'democracy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'march', ',', 'hundreds', 'of', 'men', 'had', '', 'to', 'death', 'or', '', 'to', 'disease', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'president', 'met', 'with', 'two', 'world', 'leaders', 'on', 'the', '', 'of', 'the', '', 'forum', 'in', 'the', 'russian', 'resort', 'city', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', 'december', '2', '0', '1', '6', ',', 'hollande', 'declined', 'to', 'seek', 're-election', 'and', 'the', '', 'subsequently', 'organized', 'a', 'presidential', 'primary', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'united', 'states', ',', 'the', 'film', '', '$', '4', '1', ',', '0', '0', '0', 'on', 'its', 'first', 'day', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'some', 'very', '', 'times', ',', 'the', 'school', 'was', 'a', 'model', 'of', 'successful', 'community', 'integration', 'based', 'on', 'friendship', 'and', 'brotherhood', 'for', 'several', 'hundred', 'boys', 'of', 'all', 'backgrounds', 'each', 'year', 'during', 'the', 'late', '6', '0', 's', 'and', 'into', 'the', 'mid-', '7', '0', 's', '.', '', '', '', '', '', '', '']\n", "['', 'then', 'against', '', 'he', 'became', 'the', 'tie', '1', '-', '1', 'with', 'which', 'end', 'the', 'game', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'population', 'was', '3', ',', '2', '6', '8', 'as', 'of', '2', '0', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'peter', 'also', 'has', 'a', 'martial', 'industrial', '', 'called', 'sophia', 'and', 'has', 'also', 'recorded', 'one', 'collaborative', 'album', 'with', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'bible', 'mentions', 'animals', 'from', 'varying', 'regions', 'of', 'the', 'middle', 'east', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'competed', 'in', 'this', 'event', 'at', 'the', '1', '9', '7', '6', 'summer', 'olympics', 'and', 'finished', 'in', 'tenth', 'place', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'story', '', 'around', 'two', 'characters', ':', '', '', '', 'and', '', '', 'the', 'fox', ',', 'who', 'live', 'in', '', 'different', 'parts', 'of', 'the', 'city', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'majority', 'decided', 'instead', 'to', 'maintain', 'city', 'membership', 'on', 'a', 'similar', 'county', 'agency', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'slug', 'has', 'relatives', 'in', 'new', 'guinea', ',', 'new', '', ',', 'new', 'zealand', ',', 'and', 'eastern', 'africa', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '1', '8', '', 'transferred', 'to', 'the', 'sydney', 'office', 'of', 'the', 'crown', 'solicitor', \"'s\", 'office', ',', 'and', 'in', '1', '9', '2', '0', 'he', 'was', 'admitted', 'as', 'a', '', 'and', 'solicitor', 'of', 'the', 'high', 'court', 'of', 'australia', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'distinctive', '', '', 'hill', '', '(', '``', '', '', \"''\", ')', 'has', 'been', 'considered', 'as', 'a', 'subspecies', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'spoke', 'at', '', 'and', 'high', 'school', '', ',', 'and', 'he', 'met', 'with', 'educators', ',', 'agricultural', 'leaders', ',', 'leaders', 'of', 'industry', 'and', 'elected', 'officials', 'across', 'the', 'nation', 'and', 'in', 'the', 'white', 'house', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'i', 'gave', 'you', 'the', 'house', 'of', 'israel', 'and', 'judah', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'donkeys', 'that', 'are', 'fully', '', 'and', 'can', 'no', 'longer', '', '(', 'as', 'in', '', \"'s\", 'case', ')', 'are', 'stripped', 'bare', 'of', 'their', 'clothes', ',', '', 'into', 'wooden', '', ',', 'and', 'then', 'sold', 'as', 'either', 'slaves', 'to', 'work', 'in', 'salt', 'mines', 'or', 'to', 'perform', 'in', '', '.', '', '', '']\n", "['', 'he', 'served', 'as', 'chairman', 'of', 'the', '', 'brothers', 'fund', 'panel', 'on', 'education', ',', 'and', 'was', 'chief', '', 'of', 'that', 'group', \"'s\", 'widely', '', 'report', ',', '``', 'the', 'pursuit', 'of', 'excellence', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'occurs', 'to', 'me', 'that', 'these', '', 'now', 'stand', 'for', 'presbyterian', 'ladies', 'ca', \"n't\", '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'an', 'interview', 'with', '', 'radio', 'broadcast', '2', 'july', '2', '0', '1', '5', ',', 'military', 'journalist', 'david', '', 'claimed', 'to', 'have', 'read', 'the', 'leaked', 'report', 'and', 'stated', ':', '``', 'against', 'a', 'determined', '', ',', 'the', 'f-', '3', '5', 'is', 'in', 'very', 'big', 'trouble', \"''\", '.', '', '', '', '', '']\n", "['', 'as', 'a', 'supplemental', 'unit', 'of', '', 'measure', ',', 'the', '', '(', 'also', 'known', 'as', '``', '', \"''\", ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'in', 'his', 'speech', 'during', 'the', 'gathering', ':', '``', 'we', 'are', 'against', 'those', 'who', 'do', 'wrong', ',', 'whether', 'it', 'is', '', '(', '', 'intelligence', ')', ',', 'mi', '(', 'military', 'intelligence', ')', ',', 'good', '', ',', 'bad', '', ',', 'or', 'peace', 'committees', ',', 'we', 'are', 'against', 'them', '.', \"''\", '']\n", "['', 'he', 'previously', 'served', 'as', 'the', 'president', 'of', 'the', 'federation', 'of', 'journalists', 'of', 'turkey', 'from', '2', '0', '0', '9', 'to', '2', '0', '1', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'continued', 'to', 'say', 'that', 'he', 'was', 'particularly', 'concerned', 'about', '', 'on', '', '``', 'where', 'scores', 'of', 'civilians', 'were', 'reportedly', 'killed', 'and', 'thousands', 'were', 'forced', 'to', 'flee', 'their', 'homes', 'after', 'the', 'coalition', 'declared', 'the', 'entire', '', 'a', 'military', 'target', \"''\", '.', '', '', '', '', '', '', '', '', '']\n", "['', 'saint', 'georgia', '(', 'died', 'c.', '5', '0', '0', ')', 'was', 'a', 'nun', 'and', '', 'near', '', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'turkish', 'historians', 'still', 'express', '', ':', '``', 'although', 'ottoman', 'empire', 'was', 'on', 'the', 'side', 'of', 'winners', ',', 'the', '', 'also', 'lost', 'the', 'right', 'to', 'have', 'a', 'navy', 'in', 'the', 'black', 'sea', 'together', 'with', 'the', 'russia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '8', ',', '', 'was', 'assigned', 'to', 'the', 'office', 'of', 'the', 'secretary', 'of', 'defense', ',', 'where', 'he', 'handled', 'north', 'atlantic', 'treaty', 'organization', '(', 'nato', ')', 'affairs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'question', 'of', '', 'of', 'electronic', '', 'and', 'the', '', 'of', '', '', 'across', 'state', 'lines', ',', 'the', 'us', 'house', 'of', 'representatives', 'had', 'passed', 'bills', 'to', '', 'these', 'steps', ',', 'and', 'in', '2', '0', '1', '0', 'the', 'us', 'senate', 'passed', 'the', 'legislation', 'without', 'debate', '.', '', '', '', '']\n", "['', 'more', 'than', '1', '5', ',', '0', '0', '0', '', 'passed', 'through', 'the', 'gates', 'of', 'the', 'school', 'from', '1', '8', '7', '1', 'to', 'its', '', 'in', '1', '9', '6', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'financial', 'aid', 'came', 'from', 'the', 'ministry', 'of', 'foreign', 'affairs', 'of', 'finland', 'and', 'the', 'purpose', 'of', 'the', 'project', 'was', 'to', 'better', 'the', 'living', 'conditions', 'of', 'the', '', 'neighbourhood', 'in', 'a', 'creative', 'way', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'within', 'the', 'latin', 'church', ',', 'the', 'present', 'official', 'form', 'of', 'the', 'entire', '', 'of', 'the', 'hours', 'is', 'that', 'contained', 'in', 'the', '', 'publication', '``', '', '', \"''\", ',', 'the', 'first', 'edition', 'of', 'which', 'appeared', 'in', '1', '9', '7', '1', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'evans', 'then', '', 'his', 'wife', 'to', 'cast', '', 'for', '``', '', \"''\", ',', 'and', 'then', 'in', '``', 'the', 'raid', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'due', 'to', 'its', 'signal', 'strength', ',', 'the', 'station', 'can', 'be', 'seen', '', 'in', 'large', 'portions', 'of', 'the', '', '(', '', 'region', ')', 'and', 'new', 'orleans', '', 'areas', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'august', '3', '1', ',', '1', '9', '9', '8', ',', 'bell', 'was', 'traded', 'to', 'the', 'seattle', 'mariners', 'for', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'closed', 'as', 'a', 'public', 'cemetery', 'in', '1', '9', '5', '9', ',', 'with', 'a', 'few', '', 'being', 'held', 'there', 'until', '2', '0', '0', '0', 'and', 'ashes', 'placed', 'there', 'until', '2', '0', '0', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'method', ',', 'also', 'called', 'the', '', 'method', ',', 'was', 'used', 'in', 'the', 'early', '1', '9', '0', '0', \"'s\", 'to', 'make', '', 'before', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'form', 'a', 'deep', 'bond', 'after', 'finding', 'out', 'that', 'they', 'all', 'have', 'a', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'general', '', 'received', 'her', 'direct', 'commission', 'as', 'second', 'lieutenant', 'in', '1', '9', '8', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'jordan', '', '', '(', '', ')', '(', 'arabic', ':', '', '', '', '', '', ')', 'is', 'a', 'grid', 'system', 'created', 'by', 'the', 'royal', 'jordan', 'geographic', 'center', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'arthur', '', '(', 'born', '1', '4', 'october', '2', '0', '0', '0', ')', 'is', 'a', '', 'racing', 'driver', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'is', 'dedicated', 'to', '', 'challenging', 'problems', 'in', '', 'matter', 'and', 'materials', 'physics', 'using', 'computers', 'as', 'research', 'tools', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'remained', '', 'about', 'women', \"'s\", 'suffrage', 'and', 'was', 'elected', 'vice-president', 'of', 'the', 'league', 'of', 'women', 'voters', 'and', 'attended', 'the', '1', '0', 'th', 'world', 'convention', 'of', 'the', 'international', 'women', \"'s\", 'suffrage', 'alliance', 'at', 'geneva', 'in', '1', '9', '2', '0', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'road', 'continues', ',', 'now', 'called', '', 'meadow', 'road', ',', 'until', 'its', 'dead', 'end', 'at', 'the', '', 'meadow', 'pack', 'station', 'near', 'the', 'rainbow', 'falls', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '3', ',', 'the', 'university', 'set', 'up', 'an', '', 'platform', ',', 'called', '``', '', '@', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'moth', 'of', 'the', 'family', 'geometridae', 'first', 'described', 'by', '', '', 'in', '1', '8', '5', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'completing', 'the', 'ground', 'mission', ',', 'the', 'player', 'must', 'return', 'to', 'the', 'helicopter', 'and', 'fly', 'back', 'to', 'home', 'base', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '7', ',', '8', 'th', 'and', '9', 'th', 'were', 'opened', ',', 'and', 'the', 'first', 'graduating', 'class', 'of', '', 'walked', 'across', 'the', 'stage', 'four', 'years', 'later', 'in', 'may', '2', '0', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'update', 'changed', 'the', 'look', 'of', 'the', 'site', 'and', 'included', 'both', 'an', 'online', 'project', 'editor', 'and', 'an', 'offline', 'editor', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'first', 'job', 'in', 'hollywood', 'was', 'painting', 'a', '', ',', 'but', 'soon', 'he', 'was', 'working', 'as', 'a', '', 'artist', 'and', 'production', '', 'on', '2', '6', 'films', 'including', '``', '', '2', '``', ',', '``', '', \"''\", ',', '``', 'independence', 'day', \"''\", ',', '``', 'fight', 'club', \"''\", 'and', '``', '', '.', '']\n", "['', 'the', 'organization', 'holds', 'a', 'philosophy', 'that', 'it', 'is', 'a', 'conference', ',', 'not', 'a', 'congress', ',', 'as', 'it', '', 'no', 'legislation', 'and', 'only', '', 'its', 'own', 'meetings', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'cost', '$', '7', '5', '0', ',', '0', '0', '0', 'to', 'build', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'died', 'on', 'february', '2', ',', '7', '4', '9', ',', 'at', 'the', 'age', 'of', '8', '0', ',', 'and', 'was', 'buried', 'at', '', ',', 'a', 'temple', 'now', 'in', '', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'ship', 'had', 'originally', 'been', 'built', 'with', 'money', 'from', 'public', 'subscription', 'in', 'order', 'restore', 'portugal', \"'s\", 'honor', 'after', 'being', '', 'by', 'great', 'britain', 'in', '1', '8', '9', '0', ',', 'being', 'prevented', 'from', 'making', 'a', 'land', 'route', 'from', 'its', 'two', 'colonies', 'of', '', 'and', '', '.', '', '', '', '', '']\n", "['', 'in', 'the', 'aba', 'western', 'division', '', ',', 'they', 'defeated', 'the', 'denver', '', 'in', 'seven', 'games', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'next', 'to', 'his', 'position', 'at', '', '', 'university', 'he', 'was', 'also', 'a', 'guest', 'lecturer', 'at', 'the', 'department', 'of', '', 'at', 'the', 'university', 'of', '', 'from', '2', '0', '1', '7', 'to', '2', '0', '2', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'part', 'of', 'the', 'niagara', 'catholic', 'district', 'school', 'board', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'british', 'and', 'irish', 'modern', 'music', '(', '', ')', 'institute', 'is', 'a', 'group', 'of', 'eight', 'independent', 'colleges', 'with', 'over', '7', ',', '0', '0', '0', 'students', 'that', '', 'in', 'the', 'provision', 'of', 'creative', 'education', 'in', 'brighton', ',', 'bristol', ',', 'dublin', ',', 'birmingham', ',', 'manchester', ',', 'berlin', ',', 'hamburg', 'and', 'london', '.']\n", "['', 'one', 'of', 'his', 'most', 'popular', 'habits', 'is', 'recording', '', '', 'to', 'a', '', 'woman', 'called', '``', '', \"''\", 'into', 'his', '', '', 'that', 'he', 'always', 'carries', 'with', 'him', ',', 'that', 'often', 'contain', 'everyday', 'observations', 'and', 'thoughts', 'on', 'his', 'current', 'case', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'carbon', 'found', 'in', '3', '.', '8', '', 'rocks', '(', '', '', ')', 'from', 'islands', 'off', 'western', '', 'may', 'be', 'of', 'organic', 'origin', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'robinson', 'and', '', 'also', 'hosted', '``', 'get', 'up', 'off', 'this', \"''\", ',', 'the', 'podcast', 'within', 'a', 'podcast', 'where', 'they', '', 'things', 'that', 'people', 'should', 'not', 'like', 'and', 'other', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'sugar', 'hill', 'gang', 'was', 'discovered', 'at', 'harlem', 'world', 'by', 'joe', 'and', '', 'robinson', 'of', 'sugar', 'hill', 'records', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'then', 'moved', 'to', 'fellow', 'delta', '', '', 'club', '', ',', 'whom', 'he', 'also', 'managed', 'to', 'promote', 'to', 'the', 'gamma', '', ',', 'this', 'time', 'as', 'champions', 'of', 'group', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'two', 'years', 'later', 'in', '1', '9', '3', '2', ',', 'coontz', 'would', 'represent', 'alaska', 'at', 'the', 'democratic', 'national', 'convention', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'special', 'train', 'with', 'frank', 'travelling', 'to', 'lviv', 'was', '', 'after', 'an', 'explosive', 'device', 'discharged', 'but', 'no', 'one', 'was', 'killed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'large', 'and', 'highly', 'variable', 'energy', 'of', 'waves', 'gives', 'them', 'enormous', '', 'capability', ',', 'making', 'affordable', 'and', 'reliable', 'wave', 'machines', '', 'to', 'develop', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'finished', '6', 'th', 'in', 'a', 'thin', 'field', 'and', 'was', 'advised', 'to', 'retire', 'on', 'medical', 'grounds', 'after', 'a', 'heavy', 'crash', 'in', 'the', 'final', 'round', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'two', 'were', 'soon', '', 'in', 'a', 'row', 'that', 'would', 'continue', 'until', 'romantsev', 'was', '', 'in', '2', '0', '0', '3', 'with', 'the', 'club', 'suffering', 'several', '', 'seasons', 'until', '', 'finally', 'sold', 'his', 'stock', 'in', '2', '0', '0', '4', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'has', 'two', 'sons', 'named', '', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'w.', 'h.', '', 'was', 'the', 'original', 'owner', 'of', 'the', 'town', 'site', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'the', '1', '9', '5', '0', 's', ',', 'marshall', 'was', 'selling', '', 'products', 'out', 'of', 'his', 'supermarket', ',', 'including', '', ',', 'baby', 'supplies', ',', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'this', 'case', ',', 'we', 'can', 'not', 'measure', 'the', '', 'component', 'of', 'the', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', \"'s\", 'important', 'to', 'note', 'that', 'the', 'amount', 'of', 'pain', 'a', 'person', 'experiences', 'does', 'not', 'correlate', 'well', 'with', 'the', 'amount', 'of', '', 'that', 'has', 'occurred', 'within', 'the', 'joint', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'shortly', 'after', 'oxley', 'began', 'to', 'refer', 'to', 'the', 'tributary', 'as', 'the', 'bremer', 'river', 'but', 'did', \"n't\", '', 'from', 'who', 'the', 'name', 'was', 'derived', 'from', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'croit', 'always', 'looked', 'down', 'on', 'daniels', \"'\", '', 'knowledge', ',', 'making', 'him', 'feel', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', ',', 'in', 'which', 'he', '', 'children', 'songs', ',', 'such', 'as', '``', 'it', \"'s\", 'not', 'fun', 'to', 'get', 'lost', \"''\", ',', '``', 'friends', \"''\", ',', 'and', '``', 'the', '', 'song', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'males', 'had', 'a', 'median', 'income', 'of', '$', '2', '9', ',', '0', '1', '0', 'versus', '$', '2', '0', ',', '6', '8', '6', 'for', 'females', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'feature', 'is', '', 'after', 'completing', 'book', '1', 'in', 'the', 'adventure', 'mode', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'visitor', 'can', 'follow', 'the', 'whole', 'process', 'through', 'glass', 'windows', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '3', '1', 'august', '2', '0', '1', '8', ',', 'the', 'last', 'day', 'of', 'the', '2', '0', '1', '8', 'summer', 'transfer', 'window', ',', 'he', 'agreed', 'the', '', 'of', 'his', 'contract', 'with', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'region', 'covers', 'an', 'area', 'of', 'approximately', ',', 'or', '8', '.', '8', '%', 'of', 'earth', \"'s\", 'total', 'land', 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'until', 'may', '2', '0', '0', '8', ',', 'raf', 'st', '', 'was', 'primarily', 'used', 'as', 'a', 'search', 'and', 'rescue', 'training', 'camp', 'and', 'was', 'home', 'to', '2', '0', '3', '(', 'r', ')', 'squadron', ',', 'equipped', 'with', 'sea', 'king', 'helicopters', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'before', 'his', 'move', 'to', 'the', 'dallas', 'county', 'community', 'college', 'district', ',', 'dr.', 'may', 'served', 'as', 'system', 'president', 'for', 'the', 'louisiana', 'community', 'and', 'technical', 'college', 'system', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', '``', '', '1', '', \"''\", 'show', ',', 'at', 'new', 'york', \"'s\", '', 'theatre', ',', 'featured', 'music', 'stars', '', '', ',', 'gloria', '', ',', '', 'franklin', ',', '', '', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'clash', 'believed', 'the', '``', '', 'me', 'elmo', \"''\", '', 'made', 'elmo', 'a', 'household', 'name', 'and', 'led', 'to', 'the', '``', 'elmo', \"'s\", 'world', \"''\", 'segment', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'most', 'recently', ',', '', 'has', 'also', 'alleged', 'that', 'sinn', 'féin', '', ',', 'mp', ',', 'and', 'ex', 'adjutant', 'of', 'the', 'ira', 'brigade', 'in', '', ',', 'the', 'late', 'martin', '', 'was', 'a', 'british', 'army', 'agent', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'led', 'an', '', 'to', '', 'jail', ',', 'when', '', 'was', 'held', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'long', '', 'ground', 'floor', 'level', 'has', 'six', 'bays', 'of', 'grouped', '', 'windows', ',', 'with', 'the', 'main', 'entrance', 'in', 'a', 'seventh', 'bay', 'at', 'the', 'left', 'end', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'keeper', ',', 'john', '', ',', 'had', 'most', 'recently', 'been', 'keeper', 'at', 'the', 'now', 'deactivated', 'light', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '1', '9', '1', '8', '-', '1', '9', 'teams', 'only', 'road', 'trip', 'outside', 'of', 'washington', 'was', 'to', 'annapolis', ',', 'maryland', ',', 'to', 'play', 'a', 'game', 'at', 'navy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'a', 'report', 'by', 'the', 'pennsylvania', 'department', 'of', 'education', ',', '1', '0', '0', '%', 'of', 'its', 'teachers', 'were', 'rated', '``', 'highly', 'qualified', \"''\", 'under', 'no', 'child', 'left', 'behind', 'in', '2', '0', '1', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', 'to', 'the', '', 'being', 'encountered', 'and', 'identified', 'as', 'having', 'a', 'base', 'in', 'atherton', ',', 'roth', 'also', 'wrote', 'about', 'and', 'collected', 'samples', 'of', 'their', 'material', 'culture', ',', 'much', 'of', 'which', 'were', 'later', 'purchased', 'from', 'roth', 'by', 'the', 'australian', 'museum', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'carlin', 'tells', 'a', '', 'spangler', 'that', 'an', 'image', 'of', 'the', '', 'reaper', 'is', '', 'to', 'appear', 'in', 'the', 'mirror', ',', 'standing', 'close', 'to', 'the', 'viewer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'april', '1', '3', ',', '2', '0', '1', '0', ',', 'he', 'announced', 'that', '', 'was', 'set', 'to', 'begin', 'again', ',', '', 'investors', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'october', '2', '0', '1', '8', ',', 'he', 'was', 'named', 'in', 'bangladesh', \"'s\", 'one', 'day', 'international', '(', '', ')', 'for', 'their', 'series', 'against', 'zimbabwe', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'principal', 'countries', 'of', 'origin', 'for', 'international', 'students', 'during', 'this', 'period', 'were', 'india', ',', 'iran', ',', '', ',', 'nigeria', ',', 'taiwan', ',', 'and', 'thailand', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'cup', 'winner', '', 'for', 'the', '2', '0', '2', '1', '', 'cup', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'july', '2', '0', '1', '6', 'there', 'were', 'reports', 'of', 'papers', 'being', 'removed', 'from', '', 'without', 'notice', ';', 'revision', '', 'from', '', 'indicated', 'this', 'was', 'due', 'to', 'copyright', 'concerns', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'regimental', 'officer', 'grades', 'in', '', 'units', '(', '``', '', \"''\", ',', '``', '', \"''\", 'and', '``', '', \"''\", ')', 'remained', 'the', 'same', 'as', 'under', 'the', '', 'up', 'to', 'and', 'including', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'work', 'was', 'commissioned', 'by', 'the', '', 'theatre', 'and', 'premiered', 'on', 'march', '2', '3', ',', '2', '0', '0', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'august', '1', '9', '1', '5', ',', 'creelman', 'bought', 'an', 'apartment', 'from', '', 'e.', 'smith', '&', 'amp', ';', 'co', ',', 'moving', 'from', 'the', 'upper', 'west', 'side', 'apartment', 'she', 'had', 'shared', 'with', 'james', 'to', 'a', '``', 'large', ',', '', \"''\", 'apartment', 'at', '1', '3', '1', 'east', '', 'street', '.', '', '']\n", "['', 'on', 'september', '1', '5', ',', '2', '0', '1', '4', ',', 'he', 'was', 'made', 'minister', 'of', 'health', 'by', 'premier', 'jim', '', ',', 'despite', 'not', 'holding', 'a', 'seat', 'in', 'the', 'legislative', 'assembly', 'of', 'alberta', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'the', 'third', 'largest', '', '', 'in', '', 'tehsil', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'five', 'other', 'members', 'of', 'his', 'family', 'became', 'members', 'of', 'parliament', 'during', 'the', '1', '9', 'th', ',', '2', '0', 'th', 'and', '2', '1', 'st', 'centuries', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'defeated', '', 'to', 'join', '', 'and', '', ',', 'who', 'had', 'a', '', 'in', 'the', 'seventh', 'round', ',', 'in', 'the', 'finals', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'reported', 'that', '', \"'\", 'contract', 'was', 'worth', '€', '2', '6', 'million', ',', 'making', 'him', 'the', '', 'basketball', 'player', 'in', 'europe', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ian', 'harrison', '(', 'born', '3', 'january', '1', '9', '6', '9', ')', ',', 'better', 'known', 'by', 'his', 'ring', 'name', ',', '``', 'british', 'storm', \"''\", 'ian', 'harrison', ',', 'is', 'an', 'english', 'former', 'professional', 'wrestler', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'this', 'was', 'found', 'to', 'be', 'inefficient', 'in', 'practice', ',', 'and', 'a', '', '', 'called', '', 'was', 'developed', 'at', '', 'national', '', 'to', 'replace', '', '1', 'ad', 'on', 'the', '', \"'s\", 'compute', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'investigation', 'was', 'set', 'up', 'by', '', 'head', 'vladimir', '', 'and', 'was', 'headed', 'by', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'creature', 'that', 'could', 'have', 'been', 'the', '', 'of', 'the', 'fishes', ',', 'or', 'was', 'probably', 'closely', 'related', 'to', 'it', ',', 'was', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'population', 'was', '3', '0', 'as', 'of', '2', '0', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'governments', 'are', 'currently', 'trying', 'to', 'encourage', '', 'to', 'use', 'trains', 'more', 'often', 'because', 'of', 'the', 'environmental', 'benefits', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'the', 'bikini', 'girls', 'made', 'the', 'learned', '', '', '``', 'how', 'modern', 'the', '', 'were', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'broad', 'concept', 'of', 'the', 'book', 'covers', 'the', 'history', 'of', 'economics', 'through', 'the', '', ',', '``', 'from', 'the', 'epic', 'of', '', 'and', 'the', 'old', 'testament', 'to', 'the', 'emergence', 'of', 'christianity', ',', 'from', '', 'and', 'adam', 'smith', 'to', 'fight', 'club', 'and', 'the', 'matrix', '.', \"''\", '', '', '', '', '', '']\n", "['', 'in', 'his', 'early', 'career', '', 'played', 'a', 'wide', 'range', 'of', 'roles', 'in', 'operas', 'by', '', 'from', '', 'to', 'vaughan', 'williams', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'wrote', 'that', 'after', 'this', 'experience', 'he', 'and', 'patsey', 'were', 'severely', '', 'and', 'that', 'he', 'had', 'never', '', 'what', 'patsey', 'endured', 'during', 'the', 'time', 'he', 'knew', 'her', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'wallace', '', 'fellowship', 'to', 'stanford', 'university', 'in', '1', '9', '6', '6', '-', '6', '7', 'allowed', 'him', 'to', 'finish', 'his', 'first', 'published', 'novel', ',', '``', 'the', 'sporting', 'club', \"''\", ',', 'published', 'in', '1', '9', '6', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'replied', 'simply', ',', '``', 'he', 'is', 'a', 'gentleman', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'and', '', 'started', 'a', 'section', 'on', 'the', 'general', 'theory', 'of', 'state', 'and', 'law', 'at', 'the', 'academy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'battle', 'of', 'south', 'mills', 'was', 'the', 'only', 'battle', 'action', 'near', 'the', 'canal', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'happy', 'the', 'man', 'is', 'the', 'debut', 'album', 'by', 'the', 'american', 'progressive', 'rock', 'band', 'happy', 'the', 'man', ',', 'released', 'in', '1', '9', '7', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'having', 'personally', 'experienced', 'the', '', '', 'of', 'the', '', 'in', 'sri', 'lanka', ',', 'she', 'goes', 'back', 'to', 'south', 'india', 'with', 'a', 'heavy', 'heart', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'killed', 'in', 'a', 'helicopter', 'crash', 'in', '1', '9', '8', '6', ',', 'while', 'giving', 'a', 'live', 'report', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'lap', '1', '9', ',', 'a', 'rain', 'storm', 'arrived', 'at', 'the', 'circuit', ',', 'forcing', 'the', 'drivers', 'on', 'intermediate', 'tyres', 'to', 'switch', 'back', 'to', 'full', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'other', 'accounts', ',', 'the', 'thunder', 'god', 'is', 'described', 'as', 'driving', 'a', '', '', 'through', 'the', 'skies', 'with', '', 'horses', ',', 'or', 'riding', 'a', '', 'horse', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'talking', 'donkeys', '', 'for', '', 'but', 'receive', 'none', ',', 'as', 'the', 'coachman', 'will', '', 'them', 'and', 'then', 'remarks', '``', 'you', 'boys', 'have', 'had', 'your', 'fun', '!', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'williams', 'states', 'that', 'despite', 'trying', 'other', '', 'over', 'the', 'years', ',', 'he', 'always', 'went', 'back', 'to', 'music', 'man', \"'s\", 'instruments', ',', 'which', 'he', 'described', 'as', '``', 'a', '', 'work', 'horse', 'of', 'a', 'bass', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'married', 'to', 'elizabeth', '', ',', 'a', 'children', \"'s\", 'book', 'author', 'and', 'the', 'daughter', 'of', 'noted', 'financial', '', 'eugene', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'of', 'south', 'sudan', 'winner', 'would', 'automatically', 'represent', 'south', 'sudan', 'at', 'the', 'miss', 'earth', 'pageant', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'reaction', 'allows', 'the', 'separation', 'of', '', 'from', '', 'since', '', 'acid', 'remains', 'soluble', 'at', 'low', 'ph', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'st.', 'stephen', \"'s\", 'became', 'the', 'ninth', 'roman', 'catholic', 'parish', 'established', 'in', 'the', 'city', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'smith', 'signed', 'with', 'the', 'dodgers', 'in', '1', '9', '5', '5', 'and', 'rose', 'slowly', 'through', 'their', 'farm', 'system', 'until', '1', '9', '6', '1', ',', 'when', 'he', 'led', 'the', '', 'southern', 'association', 'in', 'earned', 'run', 'average', '(', '2', '.', '0', '9', ')', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'raghu', '', 'a', 'business', 'partnership', 'to', 'dr.', '', 'vardhi', ',', 'a', '', 'whose', 'book', 'have', 'impressed', 'raghu', ',', 'but', 'vardhi', 'initially', '', 'the', 'offer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'trench', 'was', 'appointed', 'high', 'sheriff', 'of', 'county', 'galway', 'in', '1', '7', '0', '3', 'and', 'colonel', 'of', 'the', 'galway', 'militia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'aravena', 'replied', ':', '``', 'one', 'was', 'old', ',', 'but', 'he', 'was', \"n't\", 'that', 'old', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'emigrated', 'to', 'israel', 'in', '1', '9', '5', '7', ',', 'competing', 'in', 'the', '1', '9', '5', '7', '', 'games', ',', 'and', 'was', 'able', 'to', 'send', 'for', 'her', 'mother', 'and', 'sister', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'novels', 'are', 'set', 'in', 'various', 'historical', 'periods', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'wrigley', '', 'the', 'building', 'in', '1', '9', '2', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'sources', 'close', 'to', 'the', 'investigation', 'described', '``', 'person', '#', '1', '``', 'as', '', 'richard', 'w.', 'ireland', ',', 'of', '', 'county', ',', 'one', 'of', 'hafer', \"'s\", 'biggest', 'campaign', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'a', 'notable', '', 'producer', 'and', 'stock', 'contractor', 'who', 'was', 'inducted', 'into', '', 'hall', 'of', 'fame', 'in', '1', '9', '9', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'latest', 'projects', 'for', '6', 'ph', 'include', 'on', 'fox', ',', 'the', 'nickelodeon', 'short', ',', 'bear', 'wrestler', ',', 'and', 'directing', 'animation', 'on', 'a', 'series', 'of', '2', '', '', 'based', 'on', 'sony', 'pictures', \"'\", '', 'with', 'a', 'chance', 'of', '', '2', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'promoted', 'to', 'lieutenant', 'general', 'in', 'november', '1', '9', '0', '7', 'and', 'from', 'november', '1', '9', '1', '0', 'was', 'the', 'commander', 'of', 'the', '', '1', '8', 'th', 'infantry', 'division', 'and', 'from', 'december', '1', '9', '1', '2', 'was', 'commander', 'of', 'the', '', '4', 'th', 'infantry', 'division', '.', '', '', '']\n", "['', 'retail', '', 'began', 'entering', 'the', 'city', ',', 'a', 'movie', 'theatre', 'and', 'stadium', 'was', 'built', ',', 'the', 'town', 'square', 'was', '', 'as', 'a', 'park', ',', 'and', '', 'market', 'was', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'mask', 'perspective', 'is', '', 'to', 'the', 'concept', 'of', '', 'identity', \"'\", ',', 'whereby', 'the', '', '', 'the', 'creation', 'of', 'a', 'new', '', ',', 'which', 'in', 'turn', '', 'the', '', 'through', 'further', 'interaction', 'with', 'those', 'the', 'individual', 'first', 'met', 'online', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'michael', '', 'started', 'his', 'career', 'in', 'theatre', 'after', 'finishing', 'his', '', ',', 'and', 'was', 'a', 'member', 'of', 'the', '', 'theatre', 'society', 'during', 'his', 'first', 'two', 'years', 'of', 'college', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'also', 'serves', 'as', 'a', 'member', 'of', 'the', 'boards', 'of', 'nestlé', ',', 'the', 'fortune', 'global', '1', '0', '0', 'food', 'and', 'beverage', 'company', ',', 'and', 'the', 'boards', 'of', '', '', 'and', '', 'company', ',', 'both', 'fortune', '2', '0', '0', 'organizations', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'where', 'formula_', '2', 'is', 'a', 'function', 'of', 'the', '(', 'discrete', ')', 'time', 'formula_', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'current', 'building', 'of', '', 'real', 'was', 'completed', 'in', '1', '9', '1', '0', ',', 'but', 'it', 'was', 'not', 'officially', 'inaugurated', 'until', 'january', '1', '9', '1', '1', 'by', 'king', '', 'v.', 'the', 'building', 'was', 'designed', 'by', '', '', 'in', 'the', 'national', 'romantic', 'style', '.', '', '', '', '', '', '', '']\n", "['', 'the', 'play', 'is', '', 'based', 'on', '``', 'the', '', \"''\", 'by', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', '', 'asks', '', 'not', 'to', 'be', 'angry', 'and', 'he', 'does', 'not', 'know', 'the', 'name', 'of', 'the', 'person', 'but', 'knows', 'his', 'father', '', 'and', 'he', 'is', 'his', 'son', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'tall', '', 'is', 'the', '', 'mountain', 'in', '', ',', 'and', 'is', 'also', 'located', 'in', 'the', 'park', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'on', 'the', 'board', 'of', 'the', '', 'school', 'on', 'the', 'upper', 'east', 'side', 'and', 'barnard', 'college', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', '2', '0', '0', '6', 'world', 'short', 'course', 'championships', 'held', 'in', 'shanghai', ',', 'she', 'won', 'a', 'gold', 'medal', 'in', 'the', 'women', \"'s\", '4', '×', '2', '0', '0', '', 'freestyle', 'relay', 'and', 'an', 'individual', 'silver', 'medal', 'in', 'the', '4', '0', '0', '', 'freestyle', '.', '', '', '', '', '', '']\n", "['', 'these', 'targets', 'were', 'reduced', 'in', '2', '0', '1', '5', 'in', 'light', 'of', 'certain', 'environmental', 'and', 'social', 'concerns', 'associated', 'with', '', 'such', 'as', 'rising', 'food', 'prices', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'hall', 'and', 'grounds', 'are', 'open', 'to', 'the', 'public', 'and', 'are', 'a', 'popular', 'tourist', '', ',', 'with', 'nearly', '2', '0', '0', ',', '0', '0', '0', 'visitors', 'in', '2', '0', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'stakes', 'is', 'an', 'american', 'grade', 'ii', 'thoroughbred', 'horse', 'race', 'held', 'annually', 'during', 'the', '', 'meet', 'at', 'saratoga', 'race', 'course', 'in', 'saratoga', 'springs', ',', 'new', 'york', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', 'a', 'ba', 'from', '', 'college', ',', 'an', 'ma', 'from', 'columbia', 'university', 'and', 'a', 'phd', 'from', 'indiana', 'university', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'intake', 'valves', 'had', 'a', 'port', 'diameter', 'of', '1', '.', '9', '2', '``', ',', 'while', 'exhaust', 'valves', 'were', '1', '.', '6', '5', '``', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'soldiers', 'could', 'spend', 'their', '', 'night', 'there', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'abbey', 'was', 'sold', 'by', 'the', 'house', 'of', '', 'in', '1', '9', '2', '1', ',', '', 'abbey', 'by', 'the', 'heirs', 'of', 'the', 'house', 'of', '', 'in', '1', '9', '5', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'project', 'has', 'seen', 'the', 'number', 'of', 'plants', 'being', '', 'in', 'the', '', '', 'rise', 'from', '4', '0', '0', 'to', 'over', '5', '3', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '8', ',', 'the', 'group', 'released', 'their', 'self-titled', 'debut', 'album', ',', '``', 'point', 'blank', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'twenty', 'tanks', 'of', 'c', 'company', ',', '7', '0', 'th', 'tank', 'battalion', 'supported', 'the', 'battalion', ',', 'but', 'they', 'had', 'to', '', 'with', 'fire', 'from', 'three', 'or', 'four', '', 'kpa', 'tanks', 'and', 'a', '', 'roadway', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '0', '6', '', 'was', 'appointed', 'a', 'deputy', 'city', 'attorney', 'in', 'los', 'angeles', ',', 'california', ',', 'and', 'in', '1', '9', '0', '9', 'he', 'became', 'city', 'attorney', 'when', 'leslie', 'r.', '', 'resigned', 'from', 'that', 'position', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'route', 'from', '', '', 'or', '', 'wagon', 'road', 'trail', 'passes', '', 'lakes', 'about', 'before', 'reaching', 'dollar', 'pass', ',', 'at', 'above', 'sea', 'level', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", '', '', 'with', 'quantum', 'physics', 'and', '', 'math', 'has', 'also', '', 'his', 'art', 'in', 'a', 'variety', 'of', 'ways', ',', 'from', 'the', 'design', 'of', 'silk', 'wall', '', 'to', 'the', '', 'ground', 'plan', 'of', 'the', '9', '-acre', 'veterans', 'memorial', 'park', 'in', '', ',', 'indiana', '.', '', '', '', '', '']\n", "['', 'he', 'can', 'play', 'around', 'a', 'bit', ',', 'but', 'when', 'someone', 'comes', 'to', 'him', ',', 'or', 'i', 'ask', 'him', 'to', 'go', ',', 'he', 'becomes', '', 'and', 'he', 'just', 'takes', 'off', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'nearly', 'half', 'the', 'vote', 'counted', 'on', 'september', '7', ',', 'the', 'mpla', 'held', 'a', 'strong', 'lead', 'with', '8', '1', '.', '6', '5', '%', 'with', 'unita', 'at', '1', '0', '.', '5', '9', '%', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'article', 'in', 'the', 'american', 'journal', 'of', 'public', 'health', 'identified', 'the', 'effects', 'of', 'slavery', 'on', 'current', 'maternal', 'mortality', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'digital', 'controller', 'is', 'usually', '', 'with', 'the', 'plant', 'in', 'a', 'feedback', 'system', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'elected', 'to', 'the', 'provincial', 'assembly', 'of', 'the', 'punjab', 'as', 'a', 'candidate', 'of', 'pakistan', 'muslim', 'league', '(', 'n', ')', '(', '', ')', 'from', 'constituency', '', '6', '4', '(', '', ')', 'in', '2', '0', '0', '8', '', 'general', 'election', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'great', 'britain', ',', 'taking', '5', '5', '°', 'as', 'a', 'median', 'latitude', ',', '``', '', \"''\", '=', '3', '.', '0', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'had', 'four', 'children', ':', '', ',', 'ben', ',', '', 'and', 'david', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'still', 'working', 'for', 'lifemark', ',', 'scrushy', '', 'a', 'plan', 'for', 'an', '', '', 'and', '', 'health', 'clinic', 'chain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'society', 'office', 'and', 'museum', 'building', 'is', 'located', 'in', 'the', '', 'neighborhood', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'writings', 'include', '``', 'alternative', 'strategies', 'to', 'fight', 'against', 'poverty', 'in', 'congo', \"''\", '(', '``', 'strategies', '', 'de', '', '', 'la', '', '', 'congo', \"''\", ')', ',', 'published', 'in', '2', '0', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'chiang', '', 'university', \"'s\", 'faculty', 'of', 'veterinary', 'medicine', 'is', 'associated', 'with', 'the', 'institute', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'completed', '1', '0', '0', 'days', '', 'run', 'in', 'the', 'state', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '(', 'aka', 'the', 'council', 'of', 'liberec', 'district', 'national', 'committee', ')', 'on', 'its', 'april', '2', '2', ',', '1', '9', '6', '3', 'meeting', 'chose', '', \"'s\", '', 'as', 'the', 'winner', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mcphee', '', 'in', 'director', 'david', '', \"'\", 'shark', 'thriller', 'indie', 'film', '``', 'shark', 'night', '3', 'd', \"''\", ',', 'which', 'was', 'released', 'september', '2', ',', '2', '0', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'degree', 'to', 'which', 'dark', '', '', 'himself', 'to', 'gordon', 'has', 'led', 'many', 'to', 'believe', 'that', 'he', 'held', 'a', 'deep', '', 'for', 'her', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'population', 'density', 'was', '1', ',', '3', '0', '4', '.', '8', 'people', 'per', 'square', 'mile', '(', '5', '0', '2', '.', '9', '/km', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '9', '', '', 'composed', '``', 'new', 'york', '', \"''\", 'for', 'the', '', '', 'quartet', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'college', 'holds', 'a', '', 'competition', 'every', 'year', 'on', 'its', 'foundation', 'day', ',', 'september', '7', 'th', 'in', 'memory', 'of', 'its', 'first', 'regular', 'principal', 'tanu', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'almost', 'all', 'of', 'these', 'women', 'had', 'college', 'and', 'graduate', 'degrees', ',', 'and', 'were', 'employed', 'either', 'in', 'schools', ',', 'where', 'men', 'were', 'not', 'permitted', 'to', 'teach', 'girls', ';', 'or', 'in', 'hospitals', ',', 'because', 'conservative', 'families', 'prefer', 'that', 'female', 'doctors', 'and', 'nurse', 'treat', 'their', '', ',', 'sisters', ',', 'and', 'daughters', '.', '']\n", "['', 'together', ',', 'they', 'defeated', 'huerta', 'in', '1', '9', '1', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thomas', '', ',', 'who', 'had', 'previously', 'thought', 'of', 'charge', 'as', 'a', 'continuous', 'variable', ',', 'became', '', 'after', 'working', 'with', '', 'and', 'fletcher', \"'s\", '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'romanian', 'trademark', 'office', '(', '', ')', '', 'to', 'both', 'parties', 'in', 'march', 'of', '2', '0', '1', '6', 'that', 'there', 'was', 'no', 'likelihood', 'of', 'confusion', 'between', 'either', 'brands', ',', 'however', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'warden', 'peak', 'is', 'part', 'of', 'the', 'vancouver', 'island', 'ranges', 'which', 'in', 'turn', 'form', 'part', 'of', 'the', '', 'mountains', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'constructed', 'during', 'the', 'early', '3', 'rd', 'century', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'without', 'the', '', 'legislation', ',', '', 'stated', 'his', 'opinion', 'that', 'vast', 'numbers', 'of', 'chinese', '``', 'would', 'have', '', 'out', 'the', 'american', 'population', \"''\", 'in', 'the', 'western', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'infantry', 'division', 'then', 'turned', 'north-east', 'towards', '', 'and', 'the', 'eighth', 'army', 'headquarters', ',', 'with', 'the', '5', 'th', 'light', 'horse', 'brigade', 'covering', 'the', 'right', 'flank', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'children', 'had', 'died', 'from', 'h', '1', 'n', '1', 'since', 'august', '3', '0', ',', 'which', 'is', 'approximately', 'the', 'number', 'that', 'usually', 'dies', 'in', 'an', 'entire', '', 'season', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'battle', 'was', 'fierce', ',', 'but', '', 'fell', 'early', 'with', '5', '0', '0', '', '(', 'or', '8', '0', '0', ',', 'the', 'sources', '', 'on', 'this', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'city', 'was', 'incorporated', 'in', '1', '9', '1', '1', ',', 'and', 'in', '1', '9', '1', '5', ',', 'was', 'designated', 'the', 'county', 'seat', 'of', 'newly', 'formed', '', 'county', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', 'born', '5', 'december', '1', '9', '5', '0', ')', 'is', 'a', '', '', 'runner', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'case', 'was', 'investigated', 'by', 'the', '', ',', '', 'and', 'pennsylvania', 'state', 'police', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'his', 'tenure', 'as', '', \"'\", 'archbishop', ',', 'he', 'made', 'an', 'offer', 'of', '', 'to', 'venezuela', \"'s\", '', ',', 'served', 'as', 'president', 'of', 'the', '', 'episcopal', 'conference', ',', 'and', '', 'the', '``', '', 'and', '', 'of', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'continued', 'threats', 'to', 'the', 'scottish', 'wildcat', 'population', 'include', 'habitat', 'loss', 'and', 'hunting', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'dance', 'magazine', \"'s\", '', 'described', 'the', 'action', 'as', '``', 'the', '', 'of', '', '', ',', '', 'and', 'oppression', 'which', 'colored', 'the', 'composition', 'with', '', 'and', '', ',', \"''\", 'adding', 'that', 'the', 'dance', 'was', '``', '', 'performed', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'said', 'gygax', ',', '``', 'what', 'could', 'be', 'more', 'logical', 'than', 'to', 'make', 'available', 'a', 'scenario', 'which', '', 'the', 'two', 'role', 'playing', 'approaches', 'into', 'a', 'single', 'form', '?', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'i', 'enjoy', 'many', 'shooter', 'games', ',', 'but', 'the', 'ability', 'to', 'change', 'characters', 'gives', 'this', 'one', 'a', 'real', 'personality', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'this', 'task', ',', 'study', '', 'heard', 'recorded', '', 'containing', 'lexical', 'or', '', '', 'while', 'seated', 'in', 'front', 'of', 'a', 'computer', 'screen', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'according', 'to', 'a', '1', '9', '9', '7', 'interview', 'with', 'fowler', ',', 'perkins', 'never', 'said', 'any', 'such', 'thing', ':', 'according', 'to', 'fowler', ',', '``', 'johnny', '', 'started', 'the', '', 'about', 'me', 'and', '', 'in', 'his', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'let', \"'s\", 'go', ',', 'let', \"'s\", 'go', ',', 'let', \"'s\", 'go', \"''\", 'is', 'also', '', '&', 'amp', ';', 'the', '', \"'\", 'most', 'successful', 'pop', 'single', ',', 'peaking', 'at', 'number', 'six', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'travel', 'by', 'air', 'began', 'to', '', 'soon', 'after', 'the', 'war', 'was', 'over', ',', 'and', ',', 'in', '1', '9', '5', '0', ',', 'the', 'airport', 'received', 'its', 'first', 'commercial', 'flight', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'enjoyed', 'opera', ',', 'concerts', ',', 'art', ',', 'literature', ',', 'and', 'the', 'other', 'cultural', 'opportunities', '', 'available', 'in', 'san', 'francisco', ',', 'where', 'he', 'settled', 'after', 'his', 'graduation', 'and', 'explored', 'buddhism', 'and', 'other', 'asian', '', ',', 'as', 'well', 'as', 'the', 'city', \"'s\", 'lgbt', 'scene', '.', '', '', '', '', '', '']\n", "['', '', '', '(', 'born', '2', '5', 'august', '1', '9', '6', '1', ')', 'is', 'a', 'former', '', '', 'and', 'the', 'first', 'captain', 'of', 'the', 'pakistan', 'u', '1', '9', 'cricket', 'team', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'great', 'south', 'bay', ',', 'passenger', '', 'take', '', 'to', 'and', 'from', 'fire', 'island', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'storm', 'left', 'road', '', 'in', 'north', '', 'beach', ',', 'and', '', 'a', 'long-term', 'erosion', 'problem', 'along', '', 'grove', 'beach', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'several', 'thousand', 'spectators', 'attended', 'that', 'day', ',', 'although', 'guests', 'from', 'cornwall', 'were', 'late', 'for', 'the', 'ceremony', 'as', 'their', 'train', 'broke', 'down', 'at', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'franklin', 'bells', '(', 'also', 'known', 'as', 'gordon', \"'s\", 'bells', 'or', 'lightning', 'bells', ')', 'are', 'an', 'early', 'demonstration', 'of', 'electric', 'charge', 'designed', 'to', 'work', 'with', 'a', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'has', 'increased', '', 'that', 'an', 'mlb', 'team', 'might', 'eventually', 'sign', 'him', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'cadoret', 'was', 'born', 'in', '', 'on', '1', '3', 'february', '1', '8', '8', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'location', 'of', 'ring', '', '', 'should', '', 'be', 'offset', '1', '5', 'degrees', '(', '', ')', 'from', 'point', 'of', 'maximum', 'stress', 'to', '', 'the', 'effect', 'of', 'weld', '', 'on', 'weld', '', 'stress', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'a', 'brief', 'period', 'in', 'the', '1', '8', '5', '0', 's', ',', 'britain', 'declared', 'the', 'bay', 'islands', 'its', 'colony', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'meeting', 'was', 'held', 'in', '', 'in', 'december', '1', '8', '0', '2', ',', 'to', 'consider', 'the', 'subject', ',', 'including', 'the', 'purchase', 'or', 'hire', 'of', 'a', 'building', 'for', 'public', 'worship', 'in', 'tollesbury', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'federation', '', 'all', 'three', 'divisions', 'of', 'women', \"'s\", 'football', 'in', 'france', 'and', '', 'the', 'challenge', 'de', 'france', ',', 'the', 'women', \"'s\", 'premier', 'cup', 'competition', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'that', 'she', 'wants', 'to', 'take', 'a', '``', 'break', \"''\", 'from', 'their', 'relationship', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'customary', 'to', 'write', '', 'preceded', 'by', ',', 'which', 'forms', 'a', 'mathematical', 'expression', 'of', 'the', 'entrance', '', 'diameter', 'in', 'terms', 'of', 'f', 'and', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'march', '1', '9', '3', '9', 'lithuania', '', 'to', 'nazi', 'demands', 'and', 'transferred', 'the', 'klaipėda', 'region', 'to', 'germany', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'cnn', 'money', 'article', '', 'the', 'relationship', 'as', 'having', 'the', '``', 'immediate', '', '[', 'of', 'marriage', ']', 'without', 'commitment', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'pressure', '', 'was', 'supplied', 'to', 'the', '', ',', 'coolant', 'temperature', 'was', 'controlled', 'by', '', 'and', '', '', 'was', 'provided', 'with', 'automatic', 'advance', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'same', 'year', ',', '', 'was', 'announced', 'as', 'lead', 'in', 'the', 'us', 'tour', 'of', 'the', 'musical', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', '6', 'july', ',', 'he', 'was', 'promoted', 'to', 'temporary', 'lieutenant', 'colonel', 'and', 'assumed', 'command', 'of', 'the', 'battalion', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'confederate', 'soldiers', '', 'on', 'union', 'food', 'supplies', 'and', 'helped', 'themselves', 'to', 'fresh', 'blue', 'federal', 'uniforms', ',', 'which', 'would', 'cause', 'some', 'confusion', 'in', 'the', 'coming', 'days', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'time', 'united', 'were', '£', '4', 'million', 'in', 'debt', 'and', '', 'near', 'the', 'bottom', 'of', 'the', 'second', '', 'of', 'english', 'football', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'elephant', 'has', 'been', 'a', 'contributor', 'to', 'thai', 'society', 'and', 'its', 'icon', 'for', 'many', 'centuries', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'no', 'sense', 'organs', 'but', 'there', 'are', 'sensory', 'cells', 'on', 'the', '', ',', 'the', '', '', 'and', 'in', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'only', 'in', 'the', 'case', 'of', 'particularly', 'cruel', 'brutality', 'would', 'the', 'accused', 'be', 'rejected', 'for', 'amnesty', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'an', 'organisation', 'which', 'provides', 'school', 'teachers', 'and', 'staff', ',', 'in', 'england', 'and', 'wales', ',', 'with', 'advice', 'and', 'accompaniment', 'in', 'individual', 'employment', '', 'and', 'allegations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'and', 'i', \"'m\", 'not', '', 'if', 'they', 'recast', ',', 'i', '', 'would', 'understand', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'bay', '(', ',', 'meaning', '``', 'forts', \"''\", ')', 'is', 'a', 'bay', 'and', 'a', 'set', 'of', 'three', 'beaches', '(', '', ',', '', 'and', '', ')', 'near', 'st', '', 'on', 'the', 'south', 'coast', 'of', 'cornwall', ',', 'england', ',', 'united', 'kingdom', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'only', 'launched', 'the', 'course', ',', 'formally', ',', 'in', '1', '8', '3', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'graduated', 'from', 'yale', 'college', 'in', '1', '8', '4', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', 'been', 'an', 'ambassador', 'for', 'war', 'child', 'holland', 'for', 'almost', 'ten', 'years', 'and', 'child', 'soldiers', 'was', 'a', 'subject', 'he', 'was', 'often', '', 'with', 'and', 'something', 'that', 'he', 'connected', 'with', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'rat', '', 'found', 'in', 'all', 'sites', 'are', '', ',', 'burned', 'and', 'covered', 'in', '', 'material', ',', 'indicating', 'the', 'rats', 'were', 'eaten', 'as', 'food', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'one', 'of', 'his', 'two', 'victims', ',', '', 'shot', 'down', 'another', '', ',', 'william', '', ',', 'who', 'survived', 'a', 'head', 'wound', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'new', 'album', ',', '``', '', 'in', '', \"''\", ',', 'was', 'released', 'on', '2', '5', 'august', '2', '0', '1', '7', ',', 'which', 'was', 'their', 'first', 'full-length', 'album', 'in', 'a', 'decade', 'since', '2', '0', '0', '7', \"'s\", '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'gemina', 'was', 'seen', '', 'end', 'over', 'end', 'when', 'she', 'was', 'two', 'years', 'old', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'flowers', 'worn', 'by', 'men', 'are', 'generally', 'called', '', 'or', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'continuing', 'north', ',', 'i-', '2', '8', '0', 'runs', 'through', 'farm', 'land', 'and', 'through', 'an', 'interchange', 'with', '', 'road', ',', 'which', 'also', 'provides', 'access', 'to', 'other', '', 'and', '', 'businesses', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'with', '', '', 'and', '', '', '', ':', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'breaks', 'from', 'his', 'daily', 'lessons', ',', 'he', 'trained', 'in', 'a', '', 'with', 'his', 'brothers', 'at', 'the', 'vladimir', 'palace', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'chain', 'folded', 'in', '2', '0', '0', '3', 'because', 'too', 'inc.', 'felt', 'that', 'they', 'knew', 'and', 'understood', 'the', '', 'customer', 'better', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'within', 'days', ',', 'reports', 'of', '', 'and', '', 'within', 'the', 'tunnel', 'prompted', '', 'to', 'investigate', 'possible', '', 'in', 'the', 'exhaust', 'ventilation', 'system', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'was', 'stopped', ',', 'and', 'the', 'three', '', 'officers', 'were', 'identified', ',', '', ',', 'and', 'released', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'holds', 'a', 'doctorate', 'in', 'economics', 'from', 'the', 'national', 'autonomous', 'university', 'of', 'mexico', 'and', 'a', 'master', \"'s\", 'in', 'social', 'science', 'from', 'the', '', '', 'de', '', '', '(', 'latin', 'american', 'social', 'science', 'college', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'installation', ',', 'film', ',', 'video', 'and', '', 'work', 'have', 'been', 'exhibited', 'widely', 'in', 'museums', 'and', '', ',', 'and', 'received', 'awards', 'including', 'the', '', 'paul', '', 'award', ',', 'w.', 'eugene', 'smith', 'grant', ',', '', '', 'award', 'and', 'the', 'discovery', 'award', 'at', '', '', '.', '', '', '', '', '', '']\n", "['', 'in', 'july', '2', '0', '0', '9', 'the', 'italian', 'parliament', 'passed', 'a', 'law', '', '', \"'s\", 'mission', 'statement', ',', 'including', 'to', 'back', 'atomic', 'energy', ',', 'and', '', 'changing', 'its', 'complete', 'name', 'to', 'the', 'current', 'one', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', \"'s\", 'first', 'album', ',', '', 'signed', 'a', 'number', 'of', 'australia', \"'s\", 'most', 'successful', 'rock', 'bands', ',', 'including', '', ',', '', ',', 'something', 'for', 'kate', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'new', 'brunswick', 'settlements', 'through', 'which', 'it', 'passes', 'include', ',', 'moving', '', ',', '', ',', '', ',', '', ',', 'and', 'saint', 'john', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'late', '1', '9', '5', '0', 's', 'cardiff', 'began', 'to', 'direct', ',', 'with', 'two', 'modest', 'successes', 'in', '``', 'intent', 'to', 'kill', \"''\", '(', '1', '9', '5', '8', ')', 'and', '``', 'web', 'of', 'evidence', \"''\", '(', '1', '9', '5', '9', ')', '.', '', '', '', '', '', '', '', '']\n", "['', 'he', 'just', 'said', ',', '``', 'tom', '', 'would', 'be', '', 'of', 'you', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'late', '1', '9', '8', '0', ',', 'nilsen', 'removed', 'and', 'dissected', 'the', 'bodies', 'of', 'each', 'victim', 'killed', 'since', 'december', '1', '9', '7', '9', 'and', 'burned', 'them', 'upon', 'a', '', 'bonfire', 'he', 'had', 'constructed', 'on', 'waste', 'ground', 'behind', 'his', 'flat', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'are', 'subdivided', 'also', 'into', 'the', '``', 'military', 'course', \"''\", '(', '1', 'st', 'class', ')', 'and', 'the', '``', 'general', 'course', \"''\", 'cadets', '(', '4', 'th', 'through', '2', 'nd', 'classes', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'airline', 'was', 'established', 'on', 'as', 'a', 'wholly', 'owned', 'commercial', 'subsidiary', 'of', 'the', '', 'flight', 'research', 'institute', 'and', 'named', '``', '', 'air', \"''\", ',', 'which', 'was', 'registered', 'on', '1', '0', 'october', 'the', 'same', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'her', 'performance', 'in', '``', '', '', \"''\", ',', '', 'was', 'nominated', 'for', 'the', 'drama', 'desk', 'award', 'for', 'best', 'supporting', 'actress', 'in', 'a', 'play', 'for', 'the', '1', '9', '7', '5', '-', '7', '6', 'broadway', 'season', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '6', '3', 'captain', 'john', '', ',', 'a', 'liverpool', '', ',', 'proposed', 'the', 'idea', 'that', 'a', 'sea', 'training', 'school', 'should', 'be', 'established', 'for', 'the', '', 'and', 'sons', 'of', 'liverpool', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'small', 'portion', 'of', '', '(', 'west', 'and', 'south', 'of', 'the', 'i-', '1', '0', 'broadway', 'curve', ')', 'also', 'remained', 'in', '6', '0', '2', ',', 'with', 'most', 'of', 'the', 'city', 'moving', 'to', '4', '8', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'dmytryk', 'was', '', 'because', 'he', 'refused', 'to', 'respond', 'to', 'allegations', 'of', 'communism', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '2', '0', '2', '0', 'pageant', 'was', '', 'to', 'be', 'held', 'on', '2', '8', 'march', '2', '0', '2', '0', ',', 'but', '', 'in', 'september', 'due', 'to', 'the', 'covid-', '1', '9', 'pandemic', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '5', '1', 'inside', 'its', 'standard', 'gauge', 'main', 'line', ',', 'the', 'upper', '', 'railway', 'company', 'started', 'to', 'build', 'a', 'narrow', 'gauge', 'network', ',', 'connecting', 'local', 'mining', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'served', 'on', 'the', '', 'city', 'board', 'of', 'education', 'and', 'was', 'president', 'of', 'the', 'board', 'of', 'education', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'microsoft', 'store', 'also', 'opened', 'in', 'the', 'lord', '&', 'amp', ';', 'taylor', 'wing', 'that', 'same', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'in', 'charge', 'of', 'the', 'city', \"'s\", 'legal', 'office', 'when', 'los', 'angeles', 'annexed', 'the', 'san', 'fernando', 'valley', 'and', 'began', 'the', 'to', 'bring', 'water', 'to', 'the', 'city', 'through', 'the', 'los', 'angeles', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'california', 'university', 'teams', ',', 'nicknamed', 'the', 'mariners', ',', 'are', 'part', 'of', 'the', 'national', 'association', 'of', '', 'athletics', '(', '', ')', 'and', 'compete', 'in', 'the', 'california', 'pacific', 'conference', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'money', 'was', 'used', 'to', '', 'the', 'school', 'building', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'philip', 'morris', 'accused', '', 'germany', 'that', 'their', 'mark', 'adams', 'brand', 'caused', 'confusion', 'with', 'their', 'own', 'mark', '1', '0', 'brand', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'living', 'in', 'a', 'large', 'house', 'he', 'kept', 'two', '', 'to', 'whom', 'he', 'bequeathed', 'a', 'home', 'on', 'the', 'estate', 'for', '', '', 'upon', 'his', 'death', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'educated', 'at', 'harvard', 'university', ',', 'graduating', '``', '', '', \"''\", 'with', 'an', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'born', 'of', '', 'status', 'in', '', 'city', ',', '', 'domain', 'which', 'is', 'now', '', 'prefecture', 'in', '1', '8', '2', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'awarded', 'at', 'the', '', 'conference', ',', '``', '1', '1', '1', 'years', 'of', 'walking', 'gender', 'justice', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '9', ',', 'it', 'moved', 'to', '', 'as', 'a', 'result', 'of', 'the', '', 'border', 'conflict', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'this', 'time', 'honours', 'for', '', 'were', 'awarded', 'both', 'in', 'the', 'united', 'kingdom', 'honours', ',', 'on', 'the', 'advice', 'of', 'the', '', 'of', 'australian', 'states', ',', 'and', 'also', 'in', 'a', 'separate', 'australia', 'honours', 'list', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'elephant', 'has', 'had', 'a', 'considerable', 'impact', 'on', 'thai', 'culture', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'following', 'day', ',', 'iran', 'sent', 'a', 'letter', 'of', 'protest', 'to', '', 'secretary', 'general', 'ban', '', 'for', '', 'ahmadinejad', \"'s\", 'speech', ',', 'claiming', 'the', 'iranian', 'president', '``', 'was', 'subjected', 'to', '', 'and', '', '', 'criticism', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'the', 'completion', 'of', 'his', 'legal', 'studies', ',', 'white', 'was', 'admitted', 'to', 'the', 'bar', 'on', 'march', '3', '0', ',', '1', '8', '5', '4', ',', 'and', 'immediately', 'began', 'practicing', 'law', 'in', 'romney', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'studies', 'of', 'the', 'effects', 'of', '', 'on', 'humans', ',', 'most', 'subjects', 'were', '', 'when', 'exposed', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'featured', 'in', 'a', 'tv', 'commercial', 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'henderson', 'graduated', 'from', 'the', 'university', 'of', 'arkansas', 'in', 'the', 'capital', 'city', 'of', 'little', 'rock', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'currently', ',', 'there', 'is', '', 'airport', 'in', 'a', 'part', 'of', 'the', 'fortress', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'the', 'death', 'of', 'his', 'father', ',', 'it', 'was', 'initially', 'thought', 'that', 'prince', 'jean', 'would', 'not', '', 'the', 'title', 'of', 'count', 'of', 'paris', 'for', 'several', 'months', 'after', 'his', 'father', \"'s\", 'death', ',', 'and', 'possibly', 'not', 'for', 'as', 'much', 'as', 'one', 'year', '.', '', '', '', '', '', '', '', '']\n", "['', '', '(', '1', '0', '1', '.', '7', 'fm', ')', ',', 'broadcasting', 'as', '1', '0', '4', '.', '3', 'my', 'fm', ',', 'is', 'a', 'radio', 'station', 'owned', 'and', 'operated', 'sea', 'and', 'sky', 'broadcasting', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'present', 'on', 'the', '', 'lens', 'for', 'both', ',', 'but', 'the', 'mate', '3', '0', 'pro', 'also', 'has', '', 'on', 'its', 'main', 'lens', 'unlike', 'the', 'mate', '3', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'published', '', 'on', 'behalf', 'of', 'the', 'association', 'for', 'the', 'study', 'of', '', 'and', 'nationalism', ',', 'by', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'their', 'questions', 'are', 'answered', 'when', 'the', 'walls', 'begin', 'to', '', 'and', 'objects', 'begin', 'to', 'fly', 'through', 'the', 'air', ',', 'and', 'lisa', '', 'an', 'evil', 'presence', 'in', 'the', 'house', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'other', 'cases', 'the', 'skull', 'is', 'put', 'in', 'sacred', 'place', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'praised', 'as', '``', '', 'and', '', 'in', 'treatment', \"''\", 'by', '', 'm.', 'brown', 'and', 'i.', 'r.', 'christie', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'assisted', 'in', 'the', 'purchase', 'of', 'mount', 'vernon', '(', 'george', 'washington', \"'s\", 'home', ')', 'for', 'the', 'u.s.', ';', 'and', 'served', 'as', 'an', 'officer', 'of', 'the', 'great', 'sanitary', 'commission', 'during', 'the', 'american', 'civil', 'war', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'received', 'a', 'scholarship', 'from', 'the', 'french', 'national', 'foundation', 'of', 'photography', 'and', 'studied', 'in', 'the', 'united', 'states', 'alongside', '', 'adams', 'and', 'jerry', '', 'at', 'the', 'university', 'of', 'arizona', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '4', '4', ',', '', 'and', 'jacobs', '', 'a', '', 'program', ',', 'the', 'municipal', '', 'plant', ',', 'at', '', 'drive', 'between', '9', '0', 'th', 'and', '9', '1', 'st', 'street', ',', 'as', 'a', '', 'concrete', 'structure', 'with', 'four', 'parabolic', 'steel', 'arches', '.', '', '', '', '', '', '', '']\n", "['', 'bloglines', 'was', 'a', '', 'news', '', 'for', 'reading', '', 'feeds', 'using', 'the', '', 'and', 'atom', 'formats', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'he', 'was', '', ',', '', 'continued', 'to', '', 'on', 'the', 'weekends', 'as', 'a', '', 'lawyer', 'in', 'his', 'hometown', 'of', '', 'and', 'another', 'office', 'in', 'nearby', '', ',', 'where', 'his', 'mother', 'lived', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'was', 'born', 'on', '2', '8', 'october', '1', '9', '0', '1', 'in', '', ',', 'in', 'the', '', '', 'of', 'the', '', '', 'of', 'the', 'russian', 'empire', '(', 'present-day', 'ukraine', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', '', 'traveled', 'by', 'tram', 'to', '', 'during', 'the', '1', '9', '2', '0', 's', 'and', '3', '0', 's', ',', 'to', 'spend', 'their', 'weekends', 'camping', 'in', 'the', 'park', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'later', 'given', 'a', '', 'grid', 'penalty', 'for', 'an', 'engine', 'change', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'third', 'son', 'was', 'born', 'in', '1', '7', '6', '1', 'and', '', 'on', '1', '7', 'september', '1', '7', '6', '1', ':', 'he', 'was', 'oswald', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'released', 'three', 'albums', 'on', 'various', 'record', 'labels', 'before', 'going', 'on', '', 'hiatus', 'in', '2', '0', '0', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'given', 'a', 'discrete', 'set', 'of', '', 'formula_', '1', 'with', 'the', 'condition', 'formula_', '2', ',', 'and', 'formula_', '3', 'any', 'real', 'number', ',', 'the', '', '', 'is', 'defined', 'as', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', \"'s\", 'character', 'was', 'designed', 'during', 'the', 'early', 'development', 'phase', 'of', '``', 'resident', 'evil', '5', '``', ',', 'with', 'her', 'designer', '', '', 'calling', 'her', 'a', '``', 'new', 'major', 'protagonist', \"''\", 'who', '', 'the', 'theme', 'of', '``', 'the', 'bonds', 'of', 'partnership', \"''\", '.', '', '', '', '', '', '', '']\n", "['', 'further', ',', 'the', 'association', 'of', 'american', 'law', 'schools', 'has', 'also', 'voiced', '', 'of', '``', 'u.s.', 'news', \"''\", \"'s\", 'ranking', 'system', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'would', 'allow', 'jackson', 'to', 'fight', 'and', '', 'defeat', 'each', 'of', 'the', 'union', 'corps', 'separately', ',', 'as', 'he', 'had', 'done', 'during', 'the', 'valley', 'campaign', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'district', '(', ')', 'is', 'an', 'administrative', 'and', 'municipal', 'district', '(', '', ')', ',', 'one', 'of', 'the', 'twenty-seven', 'in', '', 'oblast', ',', 'russia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'title', 'of', 'the', 'book', 'was', 'inspired', 'by', 'robert', 'frost', \"'s\", '1', '9', '2', '2', 'poem', '``', '', 'by', 'woods', 'on', 'a', '', 'evening', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', '', 'may', \"'s\", 'appointment', 'as', 'prime', 'minister', ',', 'he', 'was', 'appointed', 'as', 'a', 'minister', 'of', 'state', 'at', 'the', 'department', 'for', '', 'the', 'european', 'union', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'line', 'of', 'sight', 'distance', '``', 'd', \"''\", 'of', 'this', 'station', 'is', 'given', 'by', 'the', '', 'theorem', ';', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'country', 'can', 'be', 'divided', 'into', 'three', '', 'regions', ':', 'the', 'eastern', 'mountains', ',', 'the', 'central', 'valleys', 'and', '', ',', 'and', 'the', 'coastal', 'plains', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'to', 'prevent', 'the', 'warring', 'states', 'from', '', 'their', 'power', ',', 'the', 'first', 'emperor', 'ordered', 'the', 'walls', 'of', 'the', 'old', 'capitals', 'be', 'destroyed', 'and', 'ji', \"'s\", 'walls', 'were', 'torn', 'down', 'in', '2', '1', '5', 'bc', 'but', 'later', 'rebuilt', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '', ',', 'the', 'bark', 'that', 'touched', 'the', 'wood', 'was', 'the', 'side', 'that', 'touched', 'the', 'river', ',', 'and', 'the', 'resulting', '', 'could', 'be', 'very', 'strong', ',', 'useful', 'in', 'rapids', 'or', 'in', 'ocean', 'travel', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'alliance', 'was', 'formed', 'by', 'the', '', 'party', 'and', 'the', 'german', 'party', 'in', 'order', 'to', 'contest', 'the', '1', '9', '2', '7', 'general', 'elections', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'and', 'sam', 'stated', 'the', 'following', 'on', 'the', 'band', \"'s\", 'official', 'website', ':', '``', 'after', 'three', 'years', 'of', '', 'touring', 'and', 'recording', ',', 'joe', 'is', 'taking', 'a', 'break', 'to', 'be', 'home', 'with', 'family', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 're-released', 'in', 'france', 'in', '2', '0', '0', '5', 'as', 'part', 'of', '', 'records', \"'s\", '', 'of', '', \"'s\", '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'through', 'his', 'son', 'james', ',', 'he', 'was', 'a', 'grandfather', 'of', 'mary', '', ',', 'who', 'married', 'sir', 'richard', 'murray', ',', '6', 'th', 'baronet', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'began', 'his', 'medical', 'practice', 'and', 'served', 'as', 'a', 'consultant', '', 'at', 'the', 'state', 'mental', 'hospital', 'in', '', ',', 'pennsylvania', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', ',', 'for', 'instance', ',', 'is', 'usually', '', 'onto', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'several', '``', 'junior', 'golf', \"''\", 'programs', 'for', 'children', 'and', 'teens', ',', 'and', 'a', 'learning', 'center', 'aimed', 'at', '', 'children', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'reynolds', 'school', 'district', 'is', 'governed', 'by', '9', 'individually', 'elected', 'board', 'members', '(', 'serve', 'four-year', 'terms', ')', ',', 'the', 'pennsylvania', 'state', 'board', 'of', 'education', ',', 'the', 'pennsylvania', 'department', 'of', 'education', 'and', 'the', 'pennsylvania', 'general', 'assembly', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'spill', 'was', 'caused', 'by', 'rain', 'then', 'damaging', 'the', '', 'in', 'the', 'rainbow', 'pipeline', 'system', ',', 'owned', 'by', 'plains', '', 'canada', ',', 'a', 'unit', 'of', 'plains', 'all', 'american', 'pipeline', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'december', '1', '2', ',', '2', '0', '0', '5', ',', '', 'died', 'at', 'the', 'age', 'of', '4', '9', 'in', 'toronto', ',', 'ontario', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'upon', 'his', 'arrival', 'he', 'declared', ',', '``', 'as', 'far', 'as', 'i', 'know', ',', 'there', 'is', 'no', 'anti-semitism', 'in', 'romania', 'that', '', 'any', 'special', 'discussion', 'or', 'notice', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '7', 'a', '', 'factory', 'which', 'produced', '', 'under', 'the', 'license', 'of', 'the', 'french', 'automotive', 'manufacturer', '', 'was', 'inaugurated', 'but', 'production', 'was', '', 'in', 'early', '1', '9', '7', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'mann', \"'s\", 'version', 'was', 'released', 'on', '1', '0', 'july', '1', '9', '6', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'condé', 'abandoned', 'paris', 'on', 'october', '1', '4', 'and', 'took', 'refuge', 'in', 'the', 'spanish', 'netherlands', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'assumed', 'command', 'of', 'in', '1', '9', '4', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'established', 'by', 'the', 'president', 'of', 'india', 'on', '2', '6', 'january', '1', '9', '5', '0', '(', 'with', 'effect', 'from', '1', '5', 'august', '1', '9', '4', '7', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'general', ',', '', 'is', 'caused', 'by', 'increased', 'force', 'applied', 'across', 'the', '', ',', 'or', 'a', 'decrease', 'in', 'the', 'resistance', 'within', 'the', '', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', '', ',', 'and', '', 'gave', 'him', 'the', 'choice', 'of', 'either', 'joining', 'the', '', 'agency', 'known', 'as', 'international', 'operations', 'or', 'go', 'to', 'jail', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'alexander', '', 'ross', 'wrote', 'to', 'morrison', 'that', 'his', 'dictionary', 'had', 'an', 'extensive', '', 'in', 'europe', ',', 'and', 'would', 'be', '``', 'an', '', 'treasure', 'to', 'every', 'student', 'of', 'chinese', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'six', 'laps', 'under', 'the', 'safety', 'car', ',', 'the', 'conditions', 'were', 'getting', '', ',', 'and', 'the', 'race', 'was', 'suspended', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'fernandez', 'played', 'only', 'six', 'games', 'over', 'two', 'seasons', 'with', 'the', 'force', 'before', 'being', 'released', 'in', 'october', '1', '9', '8', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'two', 'points', 'of', 'view', 'about', 'the', 'circumstances', ':', 'in', 'the', 'first', ',', 'bothwell', '', 'the', 'queen', ',', 'took', 'her', 'to', '', 'castle', ',', 'and', 'raped', 'her', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'wilson', 'had', 'originally', 'auditioned', 'for', 'michael', ',', 'a', 'performance', 'that', 'he', 'described', 'as', 'a', '``', '', 'ricky', '', '', \"''\", ';', 'however', ',', 'the', 'casting', 'directors', '', 'his', '', 'as', '', 'much', 'more', 'and', 'hired', 'him', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'directed', 'by', 'mike', 'christie', 'and', 'produced', 'by', 'carbon', 'media', ',', 'it', 'is', 'a', 'sequel', 'to', 'channel', '4', \"'s\", '``', 'jump', 'london', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'estimated', '£', '2', 'million', 'worth', 'of', '', 'was', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'acm', '', 'messages', 'to', 'its', 'simulation', 'that', 'are', 'of', 'interest', ',', 'and', 'pass', '', 'criteria', 'and', '', 'those', 'that', 'are', 'not', 'of', 'interest', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'existence', 'of', '', 'as', 'a', 'separate', 'diocese', 'ended', 'at', 'the', 'french', 'revolution', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'herself', 'is', 'a', 'former', 'drug', 'user', 'and', '', '(', 'who', 'often', 'was', '', 'with', 'other', 'men', ',', 'a', '', 'that', 'resulted', '', 'in', 'her', 'sister', \"'s\", 'death', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'several', 'boutiques', 'and', '', 'originated', 'from', 'or', 'arose', 'out', 'of', 'the', 'ashes', 'of', '', 'banking', 'group', 'in', 'the', 'late', '1', '9', '9', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'could', 'travel', 'faster', 'and', 'further', 'and', 'with', 'greater', 'freedom', 'from', 'weather', ',', 'wind', 'and', 'tide', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'first', 'u.s.', 'commercial', '', 'fiber', 'production', ':', '1', '9', '3', '9', ',', '', 'corporation', ',', 'fiber', 'division', '(', 'formerly', 'american', '', 'corporation', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'project', 'involves', 'the', 'construction', 'of', '', 'station', 'and', 'reservoirs', 'and', 'the', 'laying', 'of', '2', '5', 'kilometers', 'of', 'water', 'lines', 'including', '', 'and', 'will', 'benefit', '', 'existing', 'subdivisions', 'occupying', 'a', 'total', 'land', 'area', 'of', '2', '7', 'hectares', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'first', 'appearance', 'was', 'as', 'paul', '', ',', 'an', 'mp', 'and', 'peace', 'activist', ',', 'in', 'episode', '7', 'of', 'the', 'first', 'series', ':', '``', 'face', 'value', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'noura', \"'s\", 'family', 'lived', 'in', '', 'palace', 'in', '', 'city', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'selena', 'forever', \"''\", 'was', 'received', 'positively', 'by', 'some', 'critics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'ship', 'continued', 'her', 'operations', 'in', 'the', 'caribbean', ',', '', 'out', 'of', 'new', 'orleans', 'and', '', 'off', 'cuba', ',', 'the', 'dominican', 'republic', ',', 'and', 'the', 'danish', 'west', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'end', ',', 'the', 'city', 'decided', 'the', 'best', 'option', 'was', 'a', 'rebuilt', 'roadway', 'that', 'extended', 'north', 'along', 'the', 'railroad', 'to', 'st.', 'anthony', 'avenue', ',', 'where', 'a', 'connection', 'to', 'i-', '9', '4', 'was', 'possible', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'genus', 'of', '', 'land', 'snails', 'or', '', ',', 'terrestrial', '', 'gastropod', 'mollusks', 'in', 'the', 'family', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'literary', 'magazine', 'is', 'published', 'twice', 'a', 'year', ',', 'with', 'the', 'first', 'issue', 'scheduled', 'to', 'be', 'released', 'in', 'march', ',', '2', '0', '1', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '7', 'he', 'was', 'invited', 'by', '', '', 'in', 'the', 'show', '``', '', '', 'in', 'tv', \"''\", 'and', 'in', '2', '0', '0', '1', ',', '', '', 'and', '', '', 'invited', 'him', 'to', 'the', 'festival', 'della', '', '', 'to', 'represent', 'the', '', 'song', 'genre', '.', '', '', '']\n", "['', 'this', 'is', 'staten', 'island', \"'s\", 'first', 'k', 'to', '8', 'school', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'design', 'was', 'the', 'only', 'one', '', 'with', 'both', 'the', 'requirements', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'order', 'to', 'stand', 'for', 'election', ',', 'the', 'candidate', 'must', 'be', '', 'by', 'the', '', 'of', 'the', 'electoral', 'college', 'and', 'must', 'agree', 'to', 'uphold', 'the', 'constitution', 'of', 'the', '', 'and', 'the', 'basic', 'law', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'latter', 'rain', 'movement', 'began', 'in', 'western', 'north', 'carolina', 'and', 'eastern', 'tennessee', 'among', 'groups', 'of', '', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'traffic', 'continues', 'over', 'the', '', '6', '1', 'through', 'the', 'health', 'resort', 'bad', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'technique', 'does', 'not', 'function', 'in', 'air', 'so', 'animals', 'use', 'methods', 'of', '', 'prey', 'with', '', 'followed', 'by', '', 'down', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'bank', 'arena', 'is', '', 'facility', 'is', 'situated', 'in', 'sydney', 'olympic', 'park', ',', 'and', 'is', 'formerly', 'known', 'as', 'the', 'sydney', 'super', '', ',', 'which', 'completed', 'construction', 'in', '1', '9', '9', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'irish', 'soldier', 'who', 'joined', 'the', 'movement', 'reported', 'that', 'the', 'dublin', 'branch', 'consisted', 'entirely', 'of', '``', 'nazis', 'and', 'people', 'who', 'were', 'in', 'the', 'ira', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'allmusic', \"'s\", 'john', '', 'awards', 'the', 'album', 'four', 'stars', 'out', 'of', 'five', ',', 'and', 'states', ',', '``', 'testament', \"'s\", 'sixth', 'studio', 'album', 'literally', 'saw', 'the', 'boys', 'from', 'the', 'bay', 'area', 'fighting', 'for', 'their', 'lives', 'in', 'the', '', '', 'of', 'the', 'alternative', 'nation', '.', '', '', '', '', '', '', '']\n", "['', 'on', '2', '7', 'february', '2', '0', '1', '3', ',', 'the', 'european', 'commission', 'blocked', 'the', 'third', 'attempt', 'by', '', 'to', 'take', 'over', '', '', ',', 'stating', 'that', 'the', 'merger', 'would', 'have', 'damaged', '', \"'\", 'choice', 'and', 'resulted', 'in', 'increased', '', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'edward', '', '', ',', 'a', 'local', 'business', 'man', 'and', '', ',', 'had', 'built', 'it', 'and', 'donated', 'it', 'to', 'the', 'town', 'in', 'memory', 'of', 'his', 'parents', ',', 'joseph', 'and', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '6', 'he', 'served', 'two', 'terms', 'as', 'northeast', 'regional', 'vice', 'chairman', 'of', 'the', 'college', 'republicans', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'study', 'found', 'that', 'being', '', 'for', 'over', '2', '4', 'hours', 'caused', 'medical', '', 'to', 'double', 'or', 'triple', 'the', 'number', 'of', '', 'medical', 'errors', ',', 'including', 'those', 'that', 'resulted', 'in', 'injury', 'or', 'death', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'keen', 'to', 'master', 'the', 'intellectual', 'context', 'of', 'his', 'chosen', '', ',', 'his', '', 'programme', 'of', '', 'education', 'included', 'private', '', 'in', '', 'sciences', ',', 'physics', ',', '', 'and', '', 'measurement', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'received', 'his', 'elementary', 'and', 'secondary', 'education', 'in', 'catholic', 'schools', 'in', '', ',', 'pennsylvania', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'approximately', '3', ',', '1', '0', '0', 'native', 'speakers', 'in', 'the', 'world', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'former', 'm.', 'armstrong', 'and', 'company', 'carriage', 'factory', 'is', 'located', 'in', 'new', '', \"'s\", 'industrial', 'mill', 'river', ',', 'on', 'the', 'north', 'side', 'of', 'church', 'street', 'between', 'hamilton', 'and', 'south', 'wallace', 'streets', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'center', 'of', 'palestinian', 'political', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'hearing', 'the', '', ',', 'leafie', 'enters', 'the', 'nest', 'and', 'finds', 'a', 'single', 'egg', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'already', 'on', 'probation', 'for', 'a', '', '', ',', 'for', 'which', 'he', 'served', 'two', 'days', 'in', 'october', '2', '0', '0', '5', ',', 'he', 'was', 'sentenced', 'by', 'district', 'court', 'judge', 'brian', 'mackenzie', 'to', '9', '3', 'days', 'in', 'jail', 'for', '', 'the', 'terms', 'of', 'the', 'probation', '.', '', '', '', '', '', '']\n", "['', '', \"'s\", 'back', 'up', '', 'played', 'the', 'remainder', 'for', 'the', 'blades', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'culture', ',', 'art', ',', 'and', '', '', 'and', 'present', 'the', 'discovery', 'district', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'series', 'was', 'the', 'network', \"'s\", 'second', '', '', 'drama', 'series', 'of', 'the', '2', '0', '1', '0', 's', 'with', 'a', 'total', 'of', '3', '4', '8', 'episodes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'of', '', 'and', 'mainz', 'are', 'other', 'important', 'examples', 'of', 'romanesque', 'style', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'often', 'involves', 'the', '', 'of', 'an', 'observed', 'behavior', 'of', 'another', 'individual', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', 'spoken', 'against', 'the', 'emphasis', 'placed', 'on', 'beauty', 'in', 'the', 'los', 'angeles', 'acting', 'community', ',', 'in', 'which', 'she', 'says', 'her', 'southern', 'u.s.', 'background', 'has', 'helped', 'to', 'distinguish', 'herself', 'from', 'other', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'next', 'play', ',', 'bollinger', 'was', 'hit', 'just', 'before', 'the', 'throw', 'by', 'adrian', '', 'and', '', 'the', 'ball', ',', 'which', 'was', 'recovered', 'and', 'returned', 'by', '', '', 'ross', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'living', 'in', 'd.c.', ',', 'marshall', 'r.', '', '', 'got', 'involved', 'in', 'local', '', 'activities', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'found', 'a', 'cell', 'phone', 'at', '', '', \"'s\", 'home', 'that', 'contained', ',', 'among', 'other', 'things', ',', 'messages', '', 'between', 'the', 'former', 'deputy', 'and', '', 'vieira', 'lima', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'also', 'contribute', 'to', 'controlling', 'plant', '', 'diseases', 'through', 'their', 'active', 'consumption', 'of', '', 'and', '', 'of', '', 'and', '', 'fungi', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'fifth', 'is', 'straight', 'and', '', 'above', 'the', 'middle', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'the', '', 'view', 'supporting', 'citizenship', 'for', 'american-born', 'chinese', ',', 'he', 'said', 'that', '``', 'of', 'course', ',', 'the', 'argument', 'on', 'the', 'other', 'side', 'is', 'that', 'the', 'very', 'words', 'of', 'the', 'constitution', 'embrace', 'such', 'a', 'case', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'completed', 'his', 'undergraduate', 'in', 'cotton', 'college', ',', '', ',', 'assam', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'at', 'university', 'punt', 'began', 'writing', 'for', 'the', 'bbc', 'radio', '4', 'series', '``', 'week', 'ending', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'four', 'of', 'the', 'ships', 'were', 'eventually', 'cancelled', 'and', 'scrapped', 'on', 'their', '', 'to', 'comply', 'with', 'the', 'terms', 'of', 'the', 'washington', 'naval', 'treaty', ',', 'and', ',', 'the', 'two', 'most', 'advanced', 'ships', ',', 'were', 'converted', 'into', 'the', 'united', 'states', \"'\", 'first', 'fleet', '', '.', '', '', '', '', '', '', '']\n", "['', '', 'learned', 'painting', 'under', 'the', '', 'of', 'his', 'father', ',', 'a', 'painter', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'sheridan', 'discovered', 'the', 'confederates', 'were', '', 'back', ',', 'he', 'sent', '', \"'s\", 'division', ',', 'mostly', '', ',', 'in', 'pursuit', 'on', 'the', 'left', 'and', '', \"'s\", 'mounted', 'division', 'in', 'pursuit', 'on', 'the', 'right', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '3', '2', '', 'adventure', 'bears', 'the', 'code', '``', 's', '3', '``', '(', '``', 's', \"''\", 'for', '``', 'special', \"''\", ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'trials', 'the', 'ship', 'was', 'repeatedly', 'hit', 'by', '', 'missiles', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'jamaica', 'and', 'the', 'other', 'islands', 'of', 'the', '', 'evolved', 'from', 'an', 'arc', 'of', 'ancient', 'volcanoes', 'that', 'rose', 'from', 'the', 'sea', 'millions', 'of', 'years', 'ago', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'genus', 'name', 'is', 'a', 'contracted', 'form', 'of', '``', '', \"''\", 'that', 'had', 'been', 'used', 'in', '1', '7', '6', '0', 'by', 'the', 'french', '', '', 'jacques', '', 'for', 'a', 'group', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'here', ',', 'the', 'idea', 'is', 'that', 'multiple', 'meanings', 'are', 'activated', 'at', 'the', 'moment', 'an', '', 'is', 'encountered', 'in', 'a', 'sentence', ',', 'which', 'primes', 'related', 'concepts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'also', 'provides', 'a', 'framework', 'for', 'dealing', 'with', '', 'risk', ',', 'pension', 'risk', ',', 'concentration', 'risk', ',', 'strategic', 'risk', ',', '', 'risk', ',', 'liquidity', 'risk', 'and', 'legal', 'risk', ',', 'which', 'the', '', '', 'under', 'the', 'title', 'of', '', 'risk', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', \"'\", 'a', 'collection', 'traveled', 'throughout', '', \"'\", 'i', 'and', 'japan', ',', 'playing', 'for', 'hula', '', '(', 'schools', ')', 'at', 'various', 'hula', 'competitions', 'including', 'the', '', '', 'hula', 'festival', ',', 'and', 'opening', 'concerts', 'for', '', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'pentagon', \"'s\", 'represent', 'the', 'fifth', '', 'which', 'is', 'three', 'note', '', 'that', 'play', 'simultaneously', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'genes', 'include', '', 'class', 'i', 'and', 'class', 'ii', '', 'proteins', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rae', \"'s\", 'work', 'is', 'held', 'by', 'institutions', 'including', 'the', 'university', 'of', 'edinburgh', ',', 'university', 'of', 'glasgow', ',', 'british', 'museum', ',', 'national', 'museum', 'of', 'women', 'in', 'the', 'arts', ',', 'and', 'whitworth', 'art', 'gallery', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'launched', 'at', 'john', 'crown', '&', 'amp', ';', 'sons', 'ltd', 'in', '', 'on', '3', '0', 'october', '1', '9', '4', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'that', 'day', ',', 'the', '6', 'th', 'infantry', ',', '2', 'nd', 'division', ',', 'began', '', 'the', 'other', 'two', 'battalions', 'of', 'the', '1', '2', 'th', 'ranger', 'group', 'in', '', '', 'and', '', '', 'districts', 'in', '', '', 'province', ',', 'and', 'the', '1', '2', 'th', 'began', 'to', 'move', 'north', '.', '', '', '']\n", "['', 'the', 'appeal', 'against', 'conviction', 'was', 'dismissed', ',', 'although', 'there', 'was', 'an', 'appeal', 'against', 'sentence', 'which', 'was', 'upheld', ':', 'the', 'sentence', 'of', 'life', 'imprisonment', 'was', 'set', 'aside', 'and', 'a', 'sentence', 'of', 'twenty', 'years', \"'\", 'imprisonment', 'imposed', 'instead', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'added', 'to', 'the', 'national', 'register', 'of', 'historic', 'places', 'on', 'september', '1', '2', ',', '1', '9', '8', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'described', 'by', 'edward', '', 'in', '1', '9', '2', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'gun', 'control', 'supporters', 'argue', 'that', 'an', 'armed', 'deputy', 'sheriff', 'arrived', 'just', 'five', 'minutes', 'after', 'the', '', 'shooting', 'began', 'and', 'was', 'still', 'unable', 'to', 'stop', 'subsequent', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'before', 'that', ',', 'from', '1', '9', '2', '5', 'to', '1', '9', '3', '3', ',', 'it', 'was', 'the', 'regional', '', 'of', 'the', 'nazi', 'party', 'in', 'that', 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'closely', 'related', 'to', '``', '', '', \"''\", 'which', 'occurs', 'in', 'and', 'around', 'the', 'little', '', 'to', 'the', 'south', ',', 'and', 'to', '``', '', '', \"''\", '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'hit', 'a', '', 'tiger', '', 'to', 'steve', 'for', 'the', 'win', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'based', 'on', 'another', 'invention', 'by', 'jack', '', ',', '', 'of', 'the', 'mouse', 'house', ',', '', 'produced', 'another', 'type', 'of', 'mechanical', 'mouse', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'had', 'been', 'a', 'member', 'of', 'the', 'independent', 'order', 'of', '', ',', 'the', '', ',', 'the', '', 'club', ',', 'and', 'the', 'masonic', 'order', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'and', 'the', '', 'won', 'the', 'august', '1', '9', '3', '6', 'election', 'in', 'a', 'landslide', ',', 'putting', 'an', 'end', 'to', '', 'consecutive', 'years', 'of', 'liberal', 'rule', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'a', 'recurring', 'character', 'in', 'the', 'poldark', 'novels', 'by', 'winston', 'graham', ',', 'where', 'he', 'is', 'depicted', 'as', 'a', '', 'and', '', '', ',', 'but', '', 'to', 'his', 'friends', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'face', 'of', 'his', 'daughter', \"'s\", 'arrest', 'and', 'the', '', 'scandal', ',', '', 'requested', 'and', 'was', 'granted', 'an', 'early', 'leave', 'from', 'the', 'college', ',', 'after', 'which', 'he', 'returned', 'to', 'england', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'so', '', '', 'known', 'for', 'his', '', 'was', 'shifted', 'from', 'oil', 'ministry', 'to', 'the', 'science', 'and', 'technology', 'ministry', 'owing', 'to', 'pressure', 'from', 'reliance', 'group', 'of', 'industries', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'typically', 'spent', 'eight', 'hours', 'swimming', 'each', 'day', 'in', 'sessions', 'of', 'two', 'to', 'four', 'hours', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', '', ',', '', 'and', 'freedom', 'fighter', 'he', '', 'arrest', 'during', 'the', 'freedom', 'struggle', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', '', \"''\", 'was', 'powered', 'by', 'a', '', '2', '5', '0', 'hp', '', 'steam', 'engine', 'turning', 'a', 'single', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'variations', 'of', 'cliff', '', 'on', '', 'range', 'from', 'natural', 'arches', ',', 'sea', '', ',', 'sea', '', ',', 'sea', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'terms', 'also', 'have', 'different', 'shades', 'of', 'meaning', 'depending', 'upon', 'the', 'meeting', \"'s\", 'background', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'only', 'two', 'main', '', 'crossing', 'the', '', 'in', 'warrington', ':', 'at', 'warrington', 'bridge', 'at', 'bridge', 'foot', 'and', 'at', 'the', '', 'bridge', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'took', 'place', 'on', 'july', '9', ',', '2', '0', '1', '7', 'at', 'the', 'american', 'airlines', 'center', 'in', 'dallas', ',', 'texas', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'il-', '1', '3', 'specifically', 'induces', '', 'changes', 'in', '', 'organs', 'that', 'are', 'required', 'to', '', 'the', '', 'organisms', 'or', 'their', 'products', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'were', '1', '6', '3', 'housing', 'units', 'at', 'an', 'average', 'density', 'of', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'patton', ',', '', ',', '', 'and', 'martin', 'also', '', 'the', '', '2', 'versions', 'of', 'their', 'characters', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '3', '8', ',', 'he', 'tied', 'for', '8', '-', '9', 'th', 'in', 'łódź', 'where', '', 'won', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'teammate', 'mark', 'martin', 'finished', 'second', 'and', 'matt', '', 'came', 'in', 'third', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'storyline', '``', 'new', 'beginnings', \"''\", 'deals', 'with', 'captain', '', 'and', 'lieutenant', 'gordon', 'responding', 'to', 'a', '', 'call', 'from', 'a', 'lost', 'union', 'ship', 'while', 'commander', '', 'has', 'to', '', 'with', 'a', 'domestic', 'dispute', 'between', '', 'and', 'his', '', 'over', 'their', 'son', \"'s\", 'education', '.', '', '', '', '', '']\n", "['', 'following', 'the', 'formation', 'in', '1', '9', '7', '7', 'of', 'the', 'uniting', 'church', 'in', 'australia', ',', 'from', 'the', 'presbyterian', ',', 'methodist', 'and', 'congregational', '', ',', 'st', 'andrew', \"'s\", 'church', 'is', 'now', 'a', 'uniting', 'church', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'often', 'involved', 'playing', 'with', 'language', ',', 'including', 'humour', 'involving', 'such', 'linguistic', 'items', 'as', '', 'and', 'double', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'river', 'is', 'a', 'river', 'in', 'the', 'lakes', 'region', 'of', 'central', 'new', 'hampshire', 'in', 'the', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '9', 'singh', 'suffered', 'a', 'major', 'knee', 'injury', 'and', 'had', 'to', '', 'a', 'surgery', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'their', 'relationship', ',', 'however', ',', 'is', 'based', 'in', 'several', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'south', 'australian', 'amateur', 'football', 'league', '(', '', ')', 'also', 'regularly', 'used', '', 'oval', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'subsequently', ',', '``', '', '2', 'b', 'human', \"''\", 'spent', 'a', 'total', 'of', 'three', 'weeks', 'at', 'number', 'one', 'on', 'the', 'chart', ',', 'and', 'was', 'certified', 'platinum', 'by', 'the', 'australian', 'recording', 'industry', 'association', '(', 'aria', ')', 'for', 'shipments', 'of', '7', '0', ',', '0', '0', '0', 'copies', '.', '', '', '', '', '']\n", "['', 'in', 'addition', ',', 'veronica', '', 'a', 'birthday', 'party', 'run', 'by', 'logan', '(', 'jason', '', ')', 'for', 'his', 'new', 'girlfriend', 'parker', '(', 'julie', 'gonzalo', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'bacon', 'county', 'courthouse', 'is', 'a', 'historic', 'county', 'courthouse', 'on', 'main', 'street', 'in', '', ',', 'bacon', 'county', ',', 'georgia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'are', 'described', 'as', 'athletic', 'and', '``', 'hard', '', \"''\", 'with', 'a', '``', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'numerous', 'classrooms', ',', 'a', 'health', 'and', '', 'center', ',', 'student', '', ',', 'and', 'a', 'computer', 'lab', ',', 'as', 'well', 'as', 'the', '', 'and', 'jesse', 'whitney', 'museum', ',', 'a', 'collection', 'of', 'native', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '1', ',', 'they', 'entered', 'into', '', 'hiatus', 'without', 'no', 'announcement', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'included', 'a', 'bug', 'which', 'prevented', '2', 'of', 'the', 'game', \"'s\", '1', '2', 'achievements', 'from', 'being', 'successfully', 'completed', ',', 'the', 'gold', 'medals', 'in', 'the', 'later', 'half', 'of', 'the', 'adventure', 'story', ',', 'and', 'the', '8', '', 'master', 'achievement', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'need', 'for', 'transformation', 'produced', 'radio', 'lagos', '1', '0', '7', '.', '5', 'fm', '(', '', '', ')', 'under', 'the', 'control', 'of', 'the', 'lagos', 'state', 'radio', 'service', 'in', '2', '0', '0', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'to', 'prevent', 'the', '', 'of', 'the', '', \"'s\", '', 'butterfly', 'the', 'state', 'government', 'of', 'queensland', 'granted', 'the', 'species', 'permanently', 'protected', 'status', 'in', '1', '9', '9', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'thompson', 'island', 'graduates', 'went', 'on', 'to', 'study', 'at', 'prestigious', 'colleges', 'and', 'universities', 'in', 'the', 'usa', 'and', 'elsewhere', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'under', 'his', '', 'the', 'club', 'enjoyed', 'a', '', 'that', 'saw', 'them', 'return', 'to', 'the', 'premiership', 'after', 'an', 'absence', 'of', '1', '2', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'huerta', 'had', '', 'president', 'francisco', '', 'and', 'taken', 'over', 'the', 'government', 'in', '1', '9', '1', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'sold', 'over', 'one', 'million', 'copies', ',', 'and', 'was', 'awarded', 'a', 'gold', 'disc', 'by', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'the', 'eldest', 'son', 'of', 'frederick', 'trench', 'and', 'his', 'wife', 'elizabeth', '', ',', 'daughter', 'of', 'richard', '', ',', 'a', 'member', 'of', 'parliament', 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '7', 'the', 'transmission', 'system', 'operator', 'division', '(', '', ')', 'was', 'separated', 'from', 'the', '', '', 'group', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'federal', 'government', 'controls', 'programs', 'it', 'funds', 'like', 'title', 'i', 'funding', 'for', '', 'children', 'in', 'the', 'elementary', 'and', 'secondary', 'education', 'act', 'and', 'the', 'no', 'child', 'left', 'behind', 'act', ',', 'which', '', 'the', 'district', 'focus', 'resources', 'on', 'student', 'success', 'in', 'acquiring', 'reading', 'and', 'math', 'skills', '.', '', '', '', '', '']\n", "['', '', 'is', 'a', 'village', 'in', 'the', 'administrative', 'district', 'of', 'gmina', '', ',', 'within', 'sokółka', 'county', ',', '', 'voivodeship', ',', 'in', 'north-eastern', 'poland', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'municipality', 'of', '', 'had', 'its', 'early', 'beginnings', 'as', 'cattle', '', 'founded', 'by', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'said', '5', '1', 'soldiers', 'were', 'killed', 'in', 'recent', 'days', 'of', 'fighting', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'beginning', 'in', '1', '9', '8', '5', ',', 'the', 'local', 'government', 'began', 'working', 'to', '', 'the', 'economy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'rebuilt', 'units', 'kept', 'their', 'rolling', 'stock', 'number', '(', 'e.g', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'site', 'has', 'an', 'area', 'of', 'about', ',', 'on', 'which', 'there', 'are', 'approximately', '6', '0', ',', '0', '0', '0', 'burial', 'and', '', 'sites', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'an', 'undergraduate', 'at', 'brown', 'university', 'from', '2', '0', '0', '2', 'to', '2', '0', '0', '6', 'with', 'a', 'bachelor', \"'s\", 'degree', 'in', 'religion', 'and', 'religious', 'studies', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'released', 'on', 'february', '2', '3', ',', '2', '0', '1', '0', 'by', 'suicide', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'illustrated', '(', '', ')', 'was', 'a', '2', '4', '', 'sports', 'news', 'network', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '&', 'lt', ';', 'br', '&', 'gt', ';', '&', 'lt', ';', 'br', '&', 'gt', ';', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'species', 'of', '', 'leaf', 'beetle', 'in', 'the', 'family', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '8', ',', 'a', '2', '1', '-year-old', 'drunk', 'man', 'was', 'found', '', 'around', 'on', 'the', 'tracks', 'between', 'the', 'platforms', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'like', 'other', 'members', 'of', 'the', 'genus', ',', 'the', '', 'bears', 'two', 'pairs', 'of', 'antennae', ',', 'a', 'pair', 'of', 'eyes', 'and', 'a', 'pair', 'of', 'large', ',', '', ',', '', 'organs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'asked', 'that', 'the', 'governor', '', 'an', 'honest', 'district', 'attorney', 'who', 'would', 'crack', 'down', 'on', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'islamic', 'historian', '', 'records', 'that', '', '', 'built', 'the', '', 'along', 'with', 'the', 'prayer', '', ',', 'and', '', 'muhammad', 'completed', 'the', 'construction', 'of', 'the', 'building', 'and', 'added', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'dvd', 'included', '', 'interviews', 'and', 'matches', ',', 'including', 'the', 'battle', 'royal', 'from', '``', 'saturday', 'night', \"'s\", 'main', 'event', 'x', \"''\", 'that', '', 'won', ',', 'and', '', '', '', 'facts', 'about', 'the', 'event', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'same', 'year', ',', 'former', 'president', 'of', 'germany', ',', '', '', 'led', 'a', 'trade', 'delegation', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', 'born', '2', '8', 'january', '1', '9', '7', '6', 'in', '', ')', 'is', 'a', '', 'professional', 'ice', 'hockey', 'forward', 'who', 'currently', 'plays', 'in', 'the', 'czech', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'july', '1', '4', ',', '2', '0', '2', '0', ',', '', 'elected', 'free', 'agency', 'after', 'difficulties', 'finding', 'a', '', 'team', '..', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'over', 'forty', 'organizations', 'on', 'campus', ',', 'and', 'more', 'than', 'eighteen', 'different', 'sports', 'are', 'offered', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '', 'approach', 'is', 'widely', 'unpopular', 'among', 'the', 'students', ',', 'especially', 'those', 'characters', 'like', 'harry', ',', 'who', 'are', 'in', 'their', 'fifth', 'year', 'and', 'have', 'to', 'take', 'their', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'work', 'of', '``', 'the', 'essence', \"''\", 'is', '', 'through', 'travels', ',', 'exhibitions', 'and', 'selected', 'offered', 'items', 'in', 'a', 'context', 'between', 'art', 'and', 'fashion', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'professor', '', 'm', '', 'was', 'the', 'dean', 'of', 'the', 'college', 'of', 'medicine', 'at', 'amrita', '', '', 'and', 'the', 'principal', 'of', 'the', 'amrita', 'institute', 'of', 'medical', 'sciences', 'and', 'research', ',', 'kochi', ',', 'india', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'the', 'comparison', 'with', '', 'citing', 'the', 'fact', 'that', 'his', 'fight', 'is', 'within', 'the', 'framework', 'of', 'the', 'indian', 'constitution', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'entered', 'into', 'the', '4', '8', 'th', 'berlin', 'international', 'film', 'festival', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'species', 'of', 'tree', 'in', 'the', 'family', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'billboard', \"''\", 'said', 'it', '``', 'features', 'powerful', 'beat', 'with', 'mann', \"'s\", 'solo', '', 'by', 'male', 'chorus', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'more', 'common', 'terms', 'today', 'include', '', 'and', 'strike', 'fighter', ',', 'and', 'such', 'aircraft', 'tend', 'to', 'have', '', ',', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'members', 'of', 'the', 'commune', 'live', 'in', 'eleven', 'living', 'groups', 'of', 'between', 'four', 'and', 'ten', 'people', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'one', 'study', ',', 'a', 'short', '', '', 'carrier', ',', '', '1', ',', 'and', 'protein', '', 'have', '', 'effective', 'for', 'delivery', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'young', 'elizabeth', '', '(', '', 'temple', ')', 'lives', 'at', 'the', '', 'orphanage', ',', 'a', '', ',', '', 'place', 'supervised', 'by', 'two', '', 'but', '', 'women', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'sometimes', 'it', 'used', 'to', 'refer', 'to', 'the', 'belief', 'that', 'women', 'marry', 'beta', 'males', 'to', '', 'them', 'financially', ',', 'while', 'continuing', 'to', 'have', 'sex', 'with', 'alpha', 'men', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'founded', 'in', '1', '9', '9', '0', 'by', 'charles', 'newman', 'and', 'paul', '', 'as', 'a', 'vehicle', 'to', 'release', 'the', 'first', 'record', ',', '``', '', '', \"''\", ',', 'for', 'their', 'band', 'please', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'but', 'when', 'he', 'meets', 'again', 'with', 'his', 'former', 'lover', ',', 'he', '', 'a', '', 'the', '', 'and', 'eventually', 'fall', 'victim', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'a.', '', 'or', '', '', '(', 'born', '1', '7', 'may', '1', '9', '4', '3', ')', 'is', 'a', 'former', 'education', 'minister', 'of', 'indonesia', 'in', 'the', '', '', 'cabinet', ',', 'established', 'during', '', '', \"'s\", 'presidency', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'plan', 'was', 'to', 'open', 'the', 'first', 'restaurant', 'of', 'the', 'concept', 'in', 'the', 'nordic', 'countries', 'in', '2', '0', '1', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'to', 'the', 'top', 'of', 'the', 'big', 'ben', '', 'tower', ',', 'rides', 'down', 'the', 'river', 'thames', ',', 'and', 'performs', 'at', 'shakespeare', \"'s\", 'globe', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'dean', '', ',', 'better', 'known', 'by', 'his', 'stage', 'name', 'dean', 'ray', ',', 'is', 'an', 'australian', 'singer', 'and', 'songwriter', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'afterwards', ',', 'he', 'walked', 'back', 'to', 'the', 'party', 'as', 'though', 'nothing', 'had', 'happened', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'logic', '', 'and', 'bus', '', 'are', 'tools', 'which', 'collect', ',', '', ',', 'and', '', 'signals', 'for', 'users', 'to', 'view', 'in', 'useful', 'ways', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'us', '$', '4', 'million', 'in', '2', '0', '0', '7', 'money', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'union', 'of', 'the', 'two', 'schools', 'was', 'one', 'of', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'couple', 'had', 'several', 'children', ',', 'three', 'of', 'whom', 'were', 'biological', ',', 'while', 'the', 'others', 'were', 'adopted', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '3', '0', 'april', '1', '6', '0', '1', 'he', 'was', 'also', 'appointed', 'archbishop', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'given', 'the', 'dramatic', '', 'in', 'the', 'caia', 'tool', 'in', '2', '0', '1', '5', ',', 'when', 'the', 'cap', '', '(', 'e.g', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'response', ',', 'historians', 'published', 'in', 'the', '``', 'journal', 'of', 'negro', 'history', \"''\", 'stressed', 'the', '', 'of', 'cultures', 'between', 'africa', 'and', 'europe', ':', 'for', 'instance', ',', 'george', '', 'parker', 'adopted', '', \"'s\", 'view', 'that', 'the', '``', '', \"''\", 'race', 'had', 'originated', 'in', 'africa', 'itself', '.', '', '', '', '', '']\n", "['', 'italian', 'nationalism', '', 'in', 'the', '', 'years', ',', 'leading', 'to', 'the', 'establishment', 'of', 'secret', '', 'bent', 'on', 'a', 'unified', 'italy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'painting', 'allows', 'him', 'to', 'do', 'so', ':', 'creating', 'a', 'free', 'composition', 'of', 'a', 'picture', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '2', '0', 'years', 'that', 'follow', ',', 'joel', 'did', 'whatever', 'he', 'had', 'to', 'do', 'to', 'survive', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'has', 'stated', 'on', 'numerous', 'occasions', 'that', 'the', 'greatest', 'film', 'of', 'all', 'time', ',', 'as', 'well', 'as', 'his', 'favorite', ',', 'is', 'the', '', 'part', 'ii', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'an', 'interview', 'with', '``', '', \"''\", 'in', '1', '9', '7', '1', ',', 'and', 'again', 'during', 'an', 'interview', 'with', '', '', 'in', 'the', '1', '9', '8', '0', 's', ',', '', 'discussed', 'how', 'she', 'had', 'been', 'raped', 'as', 'an', 'undergraduate', 'at', 'the', 'university', 'of', 'melbourne', '.', '', '', '', '', '']\n", "['', 'during', 'the', 'cover', \"'s\", 'designing', 'stage', ',', 'rihanna', 'met', 'with', 'mitchell', ',', 'in', 'which', 'they', '``', '', \"''\", 'and', 'came', 'up', 'with', 'a', 'poem', 'that', 'would', 'be', 'used', 'for', 'the', 'artwork', 'and', '', 'notes', 'entitled', '``', 'if', 'they', 'let', 'us', \"''\", '.', '', '', '', '', '', '', '', '']\n", "['', '', 'grew', 'up', 'with', 'his', 'mother', 'in', 'a', 'village', 'south', 'of', 'sagamu', 'helping', 'her', 'with', 'her', 'trade', ',', 'selling', '', 'in', 'lagos', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'went', 'on', 'to', 'win', 'another', 'term', 'in', '1', '9', '8', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'worked', 'along', 'with', 'professional', 'actors', 'to', 'form', '', \"'s\", 'company', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'most', 'of', 'west', 'virginia', 'however', '', \"'s\", 'government', 'was', 'weak', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'economic', 'policies', 'of', '', 'hurt', '', \"'s\", 'image', 'with', 'the', 'working', 'class', ',', 'because', 'unemployment', 'increased', 'while', 'economic', 'growth', '', ',', 'despite', 'a', 'fall', 'in', 'terror', 'attacks', 'and', 'the', 'adoption', 'of', 'a', '', 'agenda', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'degree', 'from', 'duke', 'university', 'school', 'of', 'law', 'in', '1', '9', '6', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'because', 'the', 'rio', 'grande', 'serves', 'as', 'an', 'international', 'boundary', ',', 'the', 'park', 'faces', 'unusual', 'constraints', 'while', 'administering', 'and', '', 'park', 'rules', ',', 'regulations', ',', 'and', 'policies', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'commercially', ',', '', 'has', 'many', 'fashion', 'boutiques', 'as', 'well', 'as', 'shops', 'for', 'design', 'and', '', 'market', 'products', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'louis', '', 'studied', 'humanities', 'in', '', 'and', 'later', '', 'and', 'philosophy', 'at', 'the', '', 'college', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '', '(', 'born', '2', '0', 'february', '1', '9', '8', '9', ')', 'is', 'a', 'spanish', 'professional', 'footballer', 'who', 'plays', 'as', 'a', 'midfielder', 'for', 'las', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'meant', 'to', 'be', 'controlled', 'by', 'the', 'zone', 'controller', 'and', 'to', 'be', 'commanded', 'as', 'to', 'who', 'has', 'permission', 'and', 'who', 'does', 'not', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'though', 'now', 'the', 'town', 'is', '', 'by', 'the', 'larger', 'nearby', 'town', 'of', '', ',', '', 'was', 'once', 'an', 'important', 'harbour', 'in', 'its', 'own', 'right', ',', '', 'granite', 'and', 'tin', 'to', 'be', 'shipped', 'to', 'other', 'parts', 'of', 'the', 'country', 'and', 'world', 'during', 'the', 'medieval', 'period', '.', '', '', '', '', '']\n", "['', 'the', '', 'migration', 'starts', 'north', 'of', 'iceland', 'in', 'december', 'or', 'january', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'reporting', 'in', '``', '', '', \"''\", ',', 'since', 'the', '1', '9', '9', '0', 's', '', 'has', 'served', 'as', 'a', 'signals', 'intelligence', 'collection', 'site', ',', 'primarily', '', 'military', '', 'around', 'st.', 'petersburg', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'frederick', 'selected', 'a', 'natural', 'prominence', 'at', 'an', 'important', 'intersection', 'of', 'roads', 'which', 'had', 'probably', 'been', 'called', '``', '', \"''\", 'or', '', ',', 'and', 'built', 'his', 'new', '', '``', '', \"''\", 'there', 'in', 'about', '1', '0', '3', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'he', 'met', '', '', ',', 'who', 'divorced', 'her', 'first', 'husband', ',', 'michael', 'law', ',', 'and', 'married', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'above', 'ground', 'shelters', 'are', 'used', 'in', 'many', 'areas', 'of', 'the', 'country', 'and', 'by', 'a', 'wide', 'variety', 'of', '', 'and', 'businesses', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'founded', 'in', '2', '0', '1', '0', 'by', '', '', '(', '', ')', 'and', 'is', 'known', 'for', 'its', 'documentaries', 'focusing', 'on', 'local', 'artists', 'and', 'cultural', 'events', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'ammunition', 'had', 'a', 'combined', 'code', 'at', 'the', '3', '', 'position', 'that', 'was', 'composed', 'of', 'the', 'roman', '', 'code', 'for', 'the', 'steel', 'mill', '(', 'i', 'through', '', ')', ',', 'the', '', 'letter', 'code', 'for', 'the', 'firm', 'that', '', 'the', 'cases', '(', 'a', 'through', '', '?', '', '', '', '', '']\n", "['', 'he', 'is', 'also', 'research', 'professor', 'at', 'the', 'university', 'of', 'california', ',', 'san', 'diego', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'eventually', 'took', 'off', 'at', '1', '9', ':', '3', '2', 'local', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'school', 'for', 'children', 'with', 'learning', 'difficulties', 'that', 'was', 'attached', 'to', 'the', 'home', 'remained', 'until', '2', '0', '0', '1', ',', 'when', 'it', 'was', 'moved', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'defeated', 'the', '', 'king', 'of', 'the', '', 'state', '(', 'presently', '', ')', 'and', 'extended', 'the', 'boundary', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'singer-songwriter', 'duo', 'also', 'play', 'acoustic', 'guitar', ',', '', ',', '', ',', '', ',', 'and', '', 'in', 'their', 'songs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'hospital', ',', '', 'and', '', '', 'to', 'a', '', 'seth', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'moth', 'of', 'the', 'family', 'erebidae', 'first', 'described', 'by', '', 'in', '1', '9', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'formal', 'rules', 'as', 'taught', 'by', '', 'were', 'a', 'kind', 'of', '', 'for', 'me', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'captain', '', 'protested', 'to', 'general', 'gay', 'that', 'the', '', 'position', 'was', 'all', 'but', 'taken', 'and', 'that', 'commitment', 'of', 'the', 'other', 'two', 'battalions', 'was', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'same', 'time', 'she', 'obtained', 'a', 'diploma', 'in', 'architecture', 'from', 'the', '', 'di', '', '', 'di', 'bari', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'energy', '4', 'me', 'conducts', 'workshops', 'for', 'both', 'teachers', 'and', 'students', 'at', 'many', 'spe', 'conferences', 'around', 'the', 'globe', ',', 'and', 'spe', 'members', 'are', 'encouraged', 'to', 'visit', 'science', 'classrooms', 'at', 'their', 'local', 'schools', 'to', 'conduct', 'brief', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', '', \"''\", ',', 'sir', 'matthew', '', '', '``', '', \"''\", 'and', '', 'as', '', '``', 'against', 'the', '', 'or', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'father', 'later', 'complained', 'to', 'the', 'families', 'of', 'the', 'three', 'men', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'the', 'last', 'owner', 'of', 'the', 'two', 'horses', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'their', 'annual', '', 'is', 'called', 'the', 'free', 'speech', 'defender', 'awards', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'published', 'graphics', 'in', 'the', 'quarterly', 'magazine', '``', '', '-', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'generally', 'considered', 'to', 'fall', 'under', 'the', 'first', 'two', 'categories', ',', 'as', 'for', 'a', 'brutality', 'to', 'be', 'considered', '``', 'particularly', 'cruel', \"''\", ',', 'it', 'had', 'to', '``', '', 'even', 'those', 'who', 'are', 'familiar', 'with', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'counted', '1', '9', '5', 'men', 'with', 'light', 'armored', 'vehicles', '', '8', 'types', ',', '4', 'x', '4', 'types', 'and', '6', 'x', '6', 'type', 'wheels', 'amongst', 'other', 'means', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'commercial', 'played', 'mostly', 'in', 'europe', 'and', 'medley', 'became', 'a', '', 'actress', 'as', 'a', 'result', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'third', 'series', 'was', 'commissioned', 'in', 'october', '2', '0', '1', '7', ',', 'with', 'the', 'first', 'episode', 'due', 'to', 'be', 'broadcast', 'in', 'autumn', '2', '0', '1', '8', ',', 'but', 'was', 'pushed', 'back', 'to', '4', 'march', '2', '0', '1', '9', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', '', '``', 'the', 'study', 'and', 'documentation', 'of', 'christian', 'history', ',', 'thought', 'and', 'life', 'in', '', 'and', 'in', 'africa', 'as', 'a', 'whole', ',', 'in', 'relation', 'to', 'their', 'african', 'setting', 'and', 'to', 'world', 'christianity', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'judge', 'rosales', 'would', 'later', '', 'a', '', 'drug', '', 'and', 'criminal', 'named', 'german', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'that', 'the', 'player', 'can', 'pick', 'up', 'simply', 'by', 'walking', 'over', 'the', 'object', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'illegal', '', '(', 'saying', 'the', 'name', 'or', 'part', 'of', 'the', 'name', ',', 'spelling', 'the', 'name', ',', 'or', '', 'the', 'name', ')', '', 'that', 'name', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'a', 'baptist', 'and', 'a', 'member', 'of', 'ducks', '', ',', 'the', 'chamber', 'of', 'commerce', ',', 'and', 'rotary', 'international', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'the', 'chief', 'advisor', 'to', 'the', 'royal', 'new', 'zealand', 'society', 'for', 'the', 'health', 'of', 'women', 'and', 'children', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'holland', 'became', 'ill', ',', 'marshall', 'was', 'part', 'of', 'the', 'group', 'that', '', 'him', 'to', 'step', 'down', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'fernando', '', 'da', '', '(', 'born', '3', 'november', '1', '9', '3', '1', ')', ',', 'known', 'simply', 'as', '', ',', 'is', 'a', 'portuguese', 'former', 'footballer', 'who', 'played', 'as', 'a', 'defender', 'and', 'made', 'two', 'appearances', 'for', 'the', 'portugal', 'national', 'team', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'are', 'green', ',', 'with', '', '', 'between', 'their', 'rings', ';', 'each', 'with', 'a', 'dorsal', ',', 'darker', 'green', '', 'and', 'yellow', '', 'lines', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'represented', 'jamaica', 'at', 'the', '2', '0', '1', '4', 'concacaf', 'girls', \"'\", 'u-', '1', '5', 'championship', ',', 'the', '2', '0', '1', '6', 'concacaf', 'women', \"'s\", 'u-', '1', '7', 'championship', 'qualification', 'and', 'the', '2', '0', '1', '6', 'concacaf', 'women', \"'s\", 'u-', '1', '7', 'championship', '.', '', '', '', '', '', '']\n", "['', 'the', 'group', 'became', 'known', 'as', 'the', '``', '1', '1', '6', 'th', 'street', 'mob', \"''\", '(', 'or', '``', 'morello', 'gang', \"''\", ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', 'the', 'late', '2', '0', 'th', 'century', ',', 'the', 'town', 'has', 'often', 'approved', 'progressive', 'social', 'initiatives', ',', 'including', 'domestic', 'partnership', 'registration', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'despite', 'its', 'name', 'it', 'is', 'not', 'located', 'in', '', 'in', 'the', 'republic', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'has', 'also', 'worked', 'closely', 'with', '', 'after', 'participating', 'in', 'a', 'storyline', 'in', 'which', 'her', '``', 'private', 'practice', \"''\", 'character', 'was', 'raped', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'high', 'soil', 'moisture', '', 'means', 'there', 'is', 'little', 'water', 'available', 'for', '', 'or', 'plant', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'third', 'season', ',', 'or', '``', 'book', '3', '``', ',', 'was', 'released', 'on', 'october', '1', '6', ',', '2', '0', '2', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'some', 'detective', 'work', 'by', 'sharon', ',', 'adam', \"'s\", 'charges', 'were', 'dropped', ',', 'but', 'as', 'a', 'result', 'of', 'her', 'work', ',', 'she', 'was', 'now', 'accused', 'of', 'murder', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', 'annual', \"''\", '#', '1', 'indicates', 'the', '', 'family', 'survives', 'into', 'the', 'far', 'future', 'as', 'the', '``', '', \"''\", ';', 'noted', 'for', 'law', 'enforcement', 'on', 'a', '', 'planet', 'ruled', 'by', 'the', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'the', '2', '0', '1', '1', 'census', ',', '', 'municipality', 'had', 'a', 'population', 'of', '9', '0', ',', '3', '6', '4', 'with', 'a', '', 'of', '9', '8', '8', 'females', 'for', 'every', '1', ',', '0', '0', '0', 'males', ',', 'much', 'above', 'the', 'national', 'average', 'of', '9', '2', '9', '.', '', '']\n", "['', 'he', 'became', 'a', 'founding', 'member', 'of', 'the', 'democratic', 'alliance', 'for', 'the', '', 'of', 'hong', 'kong', '(', '', ')', ',', 'a', 'flagship', '', 'party', 'set', 'up', 'by', 'a', 'group', 'of', 'traditional', '', 'in', '1', '9', '9', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'everybody', \"'s\", 'welcome', 'is', 'a', 'musical', 'comedy', 'with', 'a', 'book', 'by', '', '', ',', 'lyrics', 'by', '', '', ',', 'and', 'music', 'by', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'also', 'accused', '', '', '(', 'now', 'brooks', ')', ',', 'then', 'the', 'newspaper', \"'s\", 'editor', ',', 'of', 'writing', 'a', 'threatening', 'letter', 'to', 'the', 'mp', 'in', 'order', 'to', '', 'him', 'from', 'researching', 'the', 'issue', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'company', 'now', 'works', 'with', 'artists', 'including', 'the', 'magnetic', 'fields', ',', '', ',', 'am', ',', 'gospel', 'music', ',', '', '', ',', 'the', '', ',', 'and', 'dylan', 'trees', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'major', 'problem', 'in', '', 'for', 'consistent', '', 'of', 'names', 'is', 'the', 'author', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'did', 'so', 'by', '', 'clinton', \"'s\", '', 'criticism', 'of', 'hip', 'hop', 'artist', 'sister', '', 'in', 'a', 'prepared', 'speech', 'clinton', 'delivered', 'at', 'the', 'rainbow', 'coalition', \"'s\", 'june', '1', '9', '9', '2', '``', '', 'america', \"''\", 'conference', 'in', 'washington', ',', 'dc', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'through', '', ',', 'changing', 'should', 'be', 'easier', 'to', 'access', 'and', 'also', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'this', 'historical', 'dictionary', 'of', 'chinese', 'characters', ',', 'the', 'first', '', 'of', '``', 'zhen', \"''\", 'are', 'in', '', 'classics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'william', 'fox', 'then', 'formed', 'the', 'second', 'fox', 'ministry', ',', 'which', 'was', 'in', 'place', 'from', '1', '2', 'july', '1', '8', '6', '1', 'to', '6', 'august', '1', '8', '6', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'his', 'first', 'match', 'for', 'his', 'new', 'team', ',', 'he', 'scored', '3', '9', 'runs', 'off', '3', '2', 'balls', 'to', 'lead', 'his', 'team', 'to', 'victory', 'against', 'the', 'mumbai', 'indians', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'before', 'being', 'executed', 'for', 'murder', ',', 'serial', 'killer', 'carl', '', 'claimed', 'in', 'a', '', 'autobiography', 'that', 'in', 'the', 'summer', 'of', '1', '9', '2', '0', 'that', 'he', 'raped', 'and', 'killed', 'a', 'total', 'of', 'ten', '', 'and', '', 'their', 'bodies', 'at', 'sea', 'near', 'execution', 'rocks', 'light', '.', '', '', '', '', '']\n", "['', 'the', 'trailer', 'brake', 'consists', 'of', 'a', 'direct', 'two', 'line', 'system', ':', 'the', 'supply', 'line', '(', 'marked', 'red', ')', 'and', 'the', 'separate', 'control', 'or', 'service', 'line', '(', 'marked', 'blue', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'second', 'group', 'of', 'inhabitants', 'to', 'malta', 'in', '3', ',', '8', '5', '0', '-', '2', ',', '3', '5', '0', 'bc', 'managed', 'their', 'resources', '', 'and', '', 'soil', 'and', 'food', 'for', 'over', '1', ',', '5', '0', '0', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'we', 'wrote', 'to', 'the', 'senators', 'and', '', 'representing', 'the', 'sections', 'of', 'the', 'country', 'we', 'came', 'from', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', '1', '9', '8', '7', ',', 'the', 'cheetah', 'd', 'was', 'declared', 'to', 'be', 'operational', 'with', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'all', 'the', 'designs', 'were', 'put', 'on', 'public', 'display', 'in', 'the', 'liberec', 'branch', 'of', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'some', 'cases', ',', 'stance', 'is', 'only', 'implied', 'through', 'context', ',', 'and', 'may', 'not', 'even', 'require', 'multiple', 'words', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'of', 'the', 'children', 'and', 'their', 'backgrounds', 'are', 'presented', '', 'and', 'a', '', 'picture', '', 'about', 'their', 'past', 'and', 'their', 'possible', 'future', 'lives', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'konstantin', 'e.', '', 'state', 'museum', 'of', 'the', 'history', 'of', '', '(', ')', 'is', 'the', 'first', 'museum', 'in', 'the', 'world', 'dedicated', 'to', 'the', 'history', 'of', 'space', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'combustion', 'chamber', 'design', 'was', 'most', 'important', 'in', 'these', 'new', 'heads', ':', 'la', 'engine', 'cylinder', 'heads', 'were', 'given', 'a', '', '', 'design', ',', 'but', 'the', 'magnum', 'was', '', 'with', 'a', '', '', 'type', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'stuart', 'was', 'an', 'unsuccessful', 'liberal', 'candidate', 'for', 'the', 'cambridge', 'university', 'parliamentary', 'seat', 'in', 'an', '1', '8', '8', '2', 'by-election', ';', 'in', '1', '8', '8', '4', 'he', 'was', 'elected', 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'most', '', 'renovation', 'was', 'started', 'in', '1', '9', '7', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'received', 'his', 'medical', 'degree', 'in', '1', '8', '7', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'episcopal', 'seat', 'is', 'now', 'located', 'in', 'cardiff', ',', 'at', 'st', 'david', \"'s\", 'cathedral', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'europe', 'is', 'relatively', '', ',', 'but', 'distinct', '', 'patterns', 'of', 'various', 'types', 'of', '', '', 'have', 'been', 'found', ',', 'particularly', 'along', 'a', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'among', 'his', 'works', 'the', 'following', 'may', 'be', 'mentioned', ':', '``', 'opera', 'di', '', '', \"''\", ',', '2', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'two', 'possible', 'landing', 'places', 'for', '', 'visiting', 'to', 'the', 'east', 'and', 'west', ',', 'although', 'this', 'may', 'be', '', 'given', 'the', 'regular', 'heavy', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', '', 'to', 'the', 'united', 'states', 'in', '1', '9', '4', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'navy', 'commander', 'buddy', 'harris', ',', 'who', 'was', 'a', 'friend', 'and', 'fellow', 'naval', '', 'of', 'speicher', \"'s\", ',', 'became', 'a', 'strong', 'advocate', 'for', 'searching', 'for', 'speicher', ',', 'often', 'meeting', 'with', 'u.s.', 'officials', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'twenty', 'three', 'tests', 'were', 'carried', 'out', 'on', '', '', 'adult', 'mice', ',', 'however', 'no', 'significant', '', 'were', 'observed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'wrote', 'the', 'children', \"'s\", 'comedy', '``', '', '', \"''\", 'from', '1', '9', '4', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'prior', 'ultimately', 'decided', 'to', 'accept', 'being', 'moved', 'to', 'the', 'northern', 'ireland', 'office', 'after', 'consulting', 'cabinet', 'colleagues', 'william', '', ',', 'then', 'deputy', 'leader', 'of', 'the', 'conservative', 'party', ',', 'and', 'francis', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'hubei', 'was', '', 'removed', 'from', 'the', 'centers', 'of', 'the', 'ming', 'power', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'importance', 'of', 'free', 'passage', 'through', '', 'found', 'them', 'included', 'in', 'laws', 'and', 'treaties', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thachil', '', 'was', 'one', 'of', 'the', 'famous', '', '', 'in', 'kerala', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'wartime', 'coalition', 'government', 'between', 'the', 'reform', 'party', 'and', 'liberal', 'party', 'sought', 'to', 'retain', 'the', 'seat', ',', 'though', 'were', '', 'of', 'their', '', 'of', '', 'an', 'urban', 'electorate', 'following', 'their', 'narrow', 'win', 'in', 'the', 'wellington', 'north', 'by-election', 'several', 'months', 'earlier', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'john', '', \"'s\", 'second', 'film', 'after', 'having', 'been', 'a', '``', 'saturday', 'night', 'live', \"''\", 'cast', 'member', 'for', 'several', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '5', '9', 'games', 'with', 'the', '', 'that', 'year', ',', 'he', 'hit', '.', '2', '3', '2', 'with', '8', '', 'and', '2', '6', 'rbi', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'have', 'been', 'a', 'part', 'of', 'the', '', 'database', 'ever', 'since', 'the', 'beginning', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'lies', 'on', 'the', 'a', '6', '1', 'road', ',', 'about', '4', 'miles', 'west', 'of', '', 'on', 'the', 'east', 'bank', 'of', 'the', 'river', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', '', 'the', 'settlement', 'of', 'young', 'ministers', ',', 'as', 'the', '', 'died', 'out', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mother', \"'s\", 'daughter', 'is', 'a', '1', '0', '0', '%', 'collaborative', 'project', 'by', '', '', '&', 'amp', ';', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'reviews', 'for', '``', 'low', \"''\", 'have', 'generally', 'been', 'mixed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'took', 'place', 'in', 'february', '1', '9', '6', '3', 'on', 'the', 'liberec', '', 'premises', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'border', 'inspection', 'station', 'is', 'a', '', 'example', 'of', 'the', 'more', 'modest', ',', 'rural', 'version', 'of', 'the', 'border', 'stations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'probability', 'theory', ',', 'an', 'elementary', 'event', '(', 'also', 'called', 'an', 'atomic', 'event', 'or', 'sample', 'point', ')', 'is', 'an', 'event', 'which', 'contains', 'only', 'a', 'single', 'outcome', 'in', 'the', 'sample', 'space', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'is', 'a', 'regular', 'performer', 'at', '``', 'cast', 'party', \"''\", 'at', '', 'in', 'new', 'york', 'and', 'the', 'upright', '', 'in', 'west', 'hollywood', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'sales', 'of', '', 'built', 'new', 'energy', 'passenger', 'cars', '', 'over', '1', '.', '2', 'million', 'units', 'between', '2', '0', '1', '1', 'and', '2', '0', '1', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'wickrematunge', 'was', '', 'briefly', 'at', '', 'international', 'airport', 'on', '2', '1', 'february', '2', '0', '0', '6', 'as', 'he', 'arrived', 'for', 'a', 'flight', 'to', 'geneva', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'permanent', 'white', '', 'in', 'the', 'area', 'was', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'party', '(', 'help', 'end', '', 'prohibition', ')', 'was', 'first', 'registered', 'in', '2', '0', '0', '0', ',', 'and', 'then', '', 'in', '2', '0', '0', '6', 'under', 'schedule', '3', 'of', 'the', 'electoral', 'and', 'referendum', 'amendment', '(', 'electoral', 'integrity', 'and', 'other', 'measures', ')', 'act', '2', '0', '0', '6', '.', '', '']\n", "['', 'the', 'landscape', 'is', 'made', 'up', 'of', '', ',', 'valleys', ',', 'peaks', 'and', '', 'and', 'has', 'long', 'been', 'modified', 'by', 'man', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'few', 'have', 'done', 'more', 'over', 'the', 'last', 'thirty', 'years', 'to', '', 'the', 'sensory', 'and', '', 'boundaries', 'of', 'moving', 'pictures', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'also', 'suffered', 'from', 'the', 'way', 'it', 'affected', 'behaviour', ',', '', 'the', 'idea', 'of', 'the', '', 'personality', \"'\", 'which', 'was', 'actually', 'a', 'result', 'of', 'medication', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', 'service', 'closed', 'down', ',', 'along', 'with', 'the', 'rest', 'of', 'the', 'uk', ',', 'on', '3', 'january', '1', '9', '8', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'the', 't', '&', 'amp', ';', 'n', '', ',', 'in', '1', '8', '7', '4', ',', 'george', 'laidlaw', ',', 'who', 'had', 'been', 'instrumental', 'in', 'setting', 'up', 'the', 't', '&', 'amp', ';', 'n', ',', '', 'the', 'competing', 'victoria', 'railway', 'with', 'roughly', 'the', 'same', 'goals', '.', '', '', '', '', '', '', '']\n", "['', 'the', '', 'of', 'being', 'gay', 'or', '', 'as', 'such', 'has', 'steadily', 'eroded', 'since', 'the', '', '', 'began', 'the', 'modern', 'american', 'gay', 'rights', 'movement', 'in', '1', '9', '6', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', '', 'series', 'broadcast', 'during', 'the', 'summer', 'of', '2', '0', '1', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'royal', 'automobile', 'club', '(', ',', '', '', ')', ',', 'established', 'in', '1', '9', '0', '3', ',', 'is', 'an', 'association', 'for', 'swedish', 'car', 'owners', 'which', 'is', 'aimed', 'at', '', 'their', 'interests', 'e.g', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'served', 'the', 'party', 'as', 'district', 'secretary', 'during', '1', '9', '8', '9', '-', '9', '3', 'at', '', 'district', 'before', '', 'the', 'responsibility', 'of', 'the', '', 'secretary', 'from', '1', '9', '9', '4', 'to', '1', '9', '9', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'moth', 'of', 'the', 'subfamily', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'all', 'the', 'fixed', 'guns', 'were', 'dismantled', 'and', 'sold', 'for', '', 'by', 'the', 'early', '1', '9', '6', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'wing', 'commander', '', '', 'dso', ',', 'a', 'canadian', 'serving', 'in', 'the', 'raf', ',', 'was', 'the', 'first', 'co', 'of', '3', '5', '6', 'squadron', ',', 'when', 'it', 'started', 'operations', 'in', '1', '9', '4', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'then', 'continued', 'to', 'have', 'leading', 'roles', 'in', '', '``', 'five', 'missions', \"''\", ',', '``', 'code', '2', '``', 'and', '``', 'the', '', 'woman', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'ep', 'marks', 'the', 'first', 'time', 'that', '', 'released', 'a', 'song', 'with', 'hip', 'hop', 'elements', ',', 'as', 'she', '', 'for', 'the', 'first', 'time', 'on', '``', 'flourishing', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'example', ',', 'a', 'modified', '', 'method', 'can', 'be', 'used', 'to', 'grow', 'high', 'quality', '3', '0', '0', 'kg', '', 'single', 'crystals', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'not', 'as', '', '', 'as', 'either', '', 'or', '', 'and', 'is', 'based', 'on', 'the', 'recognition', 'that', '', '(', 'god', ')', 'is', 'the', 'highest', 'principle', 'in', 'the', 'universe', 'and', '', 'all', 'of', 'existence', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'returned', 'as', 'a', '', 'and', 'won', 'all', 'three', 'of', 'his', 'races', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '``', '', \"''\", 'and', '``', '', \"''\", ',', 'an', '', '', 'is', 'exhibited', 'unlike', 'in', 'the', '``', '', \"''\", ',', '``', '', \"''\", ',', 'and', '``', 'acanthostega', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'new', 'system', 'has', 'made', 'it', 'possible', 'to', 'link', 'the', 'stock', 'market', 'to', 'the', 'international', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'a', 'royal', 'visit', 'was', 'not', 'forthcoming', ',', 'the', '1', 'st', 'earl', \"'s\", 'favour', 'for', 'cassiobury', 'completed', 'the', 'family', \"'s\", 'move', 'to', 'watford', ',', 'and', 'hadham', 'hall', 'fell', 'into', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'a', 'descendant', 'of', '', '', ',', 'a', 'key', 'founder', 'of', 'sagamu', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'event', 'has', 'historically', '', 'the', 'top', 'teams', 'in', 'the', 'province', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'cost', 'of', 'the', 'three', 'locomotives', 'was', '1', ',', '2', '9', '7', ',', '9', '0', '5', 'million', 'norwegian', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'bordered', 'by', 'the', 'towns', 'of', '', 'to', 'the', 'north', ',', 'warren', 'to', 'the', 'east', ',', 'wentworth', 'to', 'the', 'southeast', ',', '', 'to', 'the', 'south', ',', 'and', 'bradford', ',', 'vermont', ',', 'across', 'the', 'connecticut', 'river', 'to', 'the', 'west', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'membership', 'was', 'mostly', ',', 'but', 'not', 'entirely', ',', 'identical', 'to', 'that', 'of', 'the', 'united', 'states', 'national', 'security', 'council', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'is', 'a', 'member', 'of', 'the', 'new', '', 'party', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'initial', '', 'of', 'land', '', '', 'and', 'queens', 'streets', 'was', 'offered', 'by', 'the', 'owner', 'mr.', 'w.', 'r.', 'black', 'who', 'had', 'purchased', 'the', 'property', 'specifically', 'for', 'use', 'as', 'a', 'public', 'hospital', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'includes', 'the', 'hit', 'single', '``', '', 'boy', \"''\", 'which', 'peaked', 'at', 'no', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'village', 'in', 'mahendragarh', 'tehsil', 'in', 'mahendragarh', 'district', 'of', '', 'state', ',', 'india', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'israel', 'central', 'bureau', 'of', '', '(', 'cbs', ')', ',', 'in', '2', '0', '0', '1', 'the', 'ethnic', 'makeup', 'of', 'the', 'city', 'was', '9', '7', '.', '3', '%', 'jewish', 'and', 'other', '', ',', 'without', 'significant', 'arab', 'population', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'il-', '1', '3', 'induces', 'several', 'changes', 'in', 'the', 'gut', 'that', 'create', 'an', 'environment', 'hostile', 'to', 'the', 'parasite', ',', 'including', 'enhanced', '', 'and', '', '', 'from', 'gut', '', 'cells', ',', 'that', 'ultimately', 'lead', 'to', 'detachment', 'of', 'the', '', 'from', 'the', 'gut', 'wall', 'and', 'their', 'removal', '.', '', '', '', '', '']\n", "['', '', 'is', 'a', 'monotypic', 'genus', 'of', '', '', '', 'in', 'the', 'family', '', 'containing', 'the', 'single', 'species', ',', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'the', 'evidence', 'was', 'considered', '', ',', 'since', '', '', 'after', '3', '6', 'hours', 'without', 'eating', 'or', 'sleeping', ',', 'a', '', 'of', 'an', '', '', ',', 'thought', 'to', 'be', 'the', '', 'used', ',', 'was', 'found', 'among', 'her', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'believed', 'that', 'this', 'was', 'a', 'response', 'to', 'its', 'earlier', 'request', 'for', 'arbitration', 'regarding', 'the', 'usage', 'of', '2', 'million', '', 'from', 'national', 'railroad', 'trust', ',', 'designated', 'for', 'the', 'development', 'of', '', 'in', 'guatemala', 'but', 'used', 'to', 'support', 'an', '', '', 'oversight', 'agency', '.', '', '', '', '', '', '', '']\n", "['', 'among', 'the', 'newly', 'added', '', 'cases', ',', '2', 'were', 'from', '', 'and', '2', 'were', 'from', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'born', 'in', '', ',', '', 'completed', 'his', 'primary', 'education', 'in', '', 'district', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'july', 'of', 'that', 'year', ',', 'it', 'was', 'confirmed', 'that', 'he', 'was', 'alive', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'camera', 'can', 'also', 'shoot', 'in', '7', '2', '0', 'p', 'hd', 'at', '2', '4', 'frames', 'per', 'second', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'which', 'can', 'similarly', 'increase', '', 'blood', 'flow', ',', 'can', 'also', 'be', 'useful', 'as', 'a', '', 'mechanism', 'to', 'avoid', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thus', 'while', '', '', 'are', 'regarded', 'by', 'other', '', 'as', '', 'of', 'traditional', 'knowledge', 'and', 'practices', ',', 'the', 'christian', 'missions', 'and', 'their', '', 'are', 'seen', 'as', '', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'analysis', 'conducted', 'of', '', '', '', '6', '6', 'protein', ',', 'discovered', 'a', 'high', 'probability', 'of', 'a', '', '', 'at', 'position', 'k', '2', '4', '1', ',', 'alongside', 'low', 'probability', '', 'at', 'k', '3', '1', '6', 'and', 'k', '1', '8', '6', '.', '', '', '', '', '', '', '', '']\n", "['', 'after', 'suffering', 'a', 'series', 'of', 'heart', 'attacks', 'beginning', 'in', '1', '9', '3', '4', ',', 'admiral', 'robert', 'e.', 'coontz', 'died', 'on', '2', '6', 'january', '1', '9', '3', '5', ',', 'at', 'the', '', 'sound', 'naval', 'hospital', 'in', '', ',', 'washington', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '9', '', 'published', 'his', 'third', 'cd', ',', '``', '', \"''\", ',', 'on', 'the', 'web', '', 'mp', '3', '', 'and', 'studied', 'at', 'the', 'california', 'institute', 'of', 'the', 'arts', ',', 'focusing', 'on', 'world', 'music', 'and', 'traditional', 'music', 'from', '', '.', '', '', '', '', '', '', '', '']\n", "['', 'sr', '1', '1', '7', 'then', 'enters', '', 'and', 'has', 'an', 'intersection', 'with', 'old', '', 'road', 'before', 'entering', 'downtown', ',', 'where', 'it', 'comes', 'to', 'an', 'end', 'at', 'an', 'intersection', 'with', 'us', '6', '4', '', '1', '5', '', '2', '2', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'entire', 'program', 'is', 'located', 'in', 'the', '', '', 'building', 'and', 'the', '', '', 'beside', 'the', 'high', 'school', 'building', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'patrick', 'henry', 'roark', ',', 'otherwise', 'known', 'as', 'cardinal', 'roark', ',', 'appears', 'in', '``', 'the', 'hard', '', \"''\", 'as', 'the', 'brother', 'of', 'senator', 'roark', 'and', 'attorney', 'general', 'roark', 'and', 'the', 'uncle', 'of', 'roark', 'junior', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'library', 'is', 'in', 'chicago', \"'s\", 'washington', 'heights', 'neighborhood', 'at', '9', '5', '2', '5', 's.', '', 'st', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'race', 'was', 'resumed', 'on', 'lap', '1', '3', 'and', 'button', ',', 'who', 'had', 'changed', 'to', 'intermediate', 'tyres', 'before', 'the', 'safety', 'car', 'period', ',', 'was', 'given', 'a', '', 'penalty', 'for', '', 'behind', 'the', 'safety', 'car', ',', 'emerging', 'in', '1', '5', 'th', 'place', '.', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', '', 'journey', 'towards', 'the', '', ',', 'all', '', 'are', 'laying', 'a', '', 'trail', ',', 'making', 'it', 'much', 'easier', 'for', 'them', 'to', 'find', 'their', 'way', 'back', 'to', 'the', 'nest', 'later', 'without', 'having', 'to', '', 'on', 'the', 'scout', 'ant', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'created', 'the', 'role', 'of', 'madame', 'flora', 'in', '', '', '', \"'s\", '``', 'the', 'medium', \"''\", ',', 'in', '1', '9', '4', '6', 'at', 'its', 'first', 'performances', 'at', 'columbia', 'university', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'died', 'on', 'january', '2', '3', ',', '1', '9', '0', '6', 'just', 'six', 'weeks', 'after', 'his', 'marriage', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'some', 'regions', ',', '+', 'and', '−', 'are', 'used', 'to', 'indicate', 'marks', 'below', 'or', 'above', 'an', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'born', 'in', '1', '7', '7', '0', ',', 'his', 'exact', '', 'is', 'unknown', ',', 'although', 'it', 'is', 'known', 'that', 'he', 'was', 'born', 'somewhere', 'in', 'present-day', 'mexico', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'initially', 'in', '2', '0', '1', '2', ',', 'it', 'was', 'expected', 'that', 'the', 'first', 'single', 'from', 'the', 'singer', \"'s\", 'album', 'would', 'be', 'a', 'song', 'titled', '``', 'truth', 'or', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'launched', 'in', 'january', '2', '0', '1', '4', ',', 'the', '', 'global', 'artist', 'chart', 'was', 'the', 'first', 'global', 'chart', 'to', '', 'capture', 'the', 'popularity', 'of', 'artists', 'across', 'streaming', 'channels', ',', 'alongside', 'digital', 'and', 'physical', 'album', 'and', 'singles', 'sales', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'its', 'later', 'years', 'so', 'much', '', 'was', 'needed', 'and', 'so', 'much', '', 'of', 'parts', 'of', 'the', 'walls', 'occurred', 'that', 'the', 'line', 'was', 'singled', 'from', '', 'to', '', 'south', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'did', 'much', 'work', 'on', 'german', '', ',', 'most', 'notably', 'one', 'referred', 'to', 'as', '``', '', \"'s\", 'little', 'man', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'historic', 'sites', 'open', 'for', 'tour', 'include', 'the', 'james', '', 'house', ',', '', 'river', 'light', ',', 'barker', 'house', ',', '', 'county', 'courthouse', 'and', 'st.', 'paul', \"'s\", 'episcopal', 'church', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'described', 'by', 'edward', '', 'in', '1', '9', '1', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'sir', 'richard', 'taylor', 'of', '', 'workshop', 'said', '``', 'savage', 'islands', \"''\", '', 'the', 'new', 'zealand', '', 'boom', 'of', 'the', '1', '9', '8', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'spain', 'sold', 'the', 'florida', 'territory', 'to', 'the', 'united', 'states', 'in', '1', '8', '2', '1', 'and', ',', 'by', '1', '8', '2', '2', ',', '', \"'s\", 'current', 'name', 'had', 'come', 'into', 'use', ',', 'to', 'honor', 'general', 'andrew', 'jackson', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'released', '', 'can', 'now', 'abstract', 'the', 'proton', 'from', 'the', '', 'and', 'form', 'a', '', 'intermediate', ',', 'which', 'is', '', 'by', 'the', '', 'of', 'the', 'negative', 'charge', 'over', '', \"'s\", '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'eventually', 'died', 'of', 'pneumonia', 'in', 'a', 'norwegian', 'bay', 'on', 'december', '1', '2', ',', '2', '0', '0', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'created', 'in', '1', '9', '5', '7', 'with', 'the', 'construction', 'of', 'the', '', 'dam', 'near', 'the', '', ',', 'oregon', ',', 'and', '', '', 'to', 'the', 'john', 'day', 'dam', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'ship', 'was', 'scrapped', 'on', 'site', ',', 'with', 'the', 'process', 'taking', 'over', 'eight', 'months', 'to', 'complete', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'both', 'the', 'lake', 'and', 'the', 'dam', 'are', 'named', 'for', 'vice', 'president', '', 'barkley', ',', 'a', 'kentucky', 'native', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'rating', 'was', 'reduced', 'to', 'two', 'stars', 'in', '1', '9', '9', '6', ',', 'and', 'to', 'one', 'star', 'in', '2', '0', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'attended', 'airport', 'high', 'school', 'in', 'west', 'columbia', ',', 'south', 'carolina', 'and', 'was', 'an', '', 'wide', 'receiver', ',', 'and', 'played', 'running', 'back', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'formula', 'is', 'an', 'identity', 'because', 'the', 'velocity', 'of', 'money', '(', '``', 'v', \"''\", ')', 'is', 'defined', 'to', 'be', 'the', 'ratio', 'of', 'final', '', '', '(', 'formula_', '8', ')', 'to', 'the', 'quantity', 'of', 'money', '(', '``', 'm', \"''\", ')', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'bases', 'are', 'great', 'for', 'setting', 'up', 'a', 'light', 'very', 'low', 'to', 'the', 'ground', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'spe', \"'s\", 'energy', '4', 'me', 'program', '', 'students', 'aged', '1', '0', 'to', '1', '7', 'about', 'the', 'energy', 'industry', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '9', '3', '8', 'through', '1', '9', '4', '1', ',', 'more', 'than', '$', '2', '2', ',', '0', '0', '0', 'was', 'spent', 'on', 'additional', 'details', 'and', 'for', 'changes', 'in', 'the', 'hardware', 'and', 'lighting', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'each', 'player', 'agrees', 'and', 'will', 'contract', 'to', 'participate', 'in', 'four', 'of', 'these', 'tournaments', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'polls', 'only', 'include', 'turkish', 'voters', 'nationwide', 'and', 'do', 'not', 'take', 'into', 'account', 'turkish', '', 'voting', 'abroad', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'municipality', \"'s\", 'population', 'density', 'is', 'and', 'its', 'population', 'has', 'increased', 'by', '1', '2', '.', '2', '%', 'over', 'the', 'previous', '1', '0', '-year', 'period', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'but', 'he', 'winds', 'up', 'in', '', ',', 'an', '', 'country', 'in', 'africa', 'in', 'the', 'middle', 'of', 'a', 'military', 'coup', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', '', 'local', 'management', 'and', 'formed', 'groundwater', 'sustainability', 'agencies', '(', '', ')', 'from', 'local', 'and', 'regional', 'authorities', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '6', ',', 'on', 'leaving', 'middle', 'school', ',', 'he', 'joined', 'the', 'army', 'in', '', 'county', ',', '', 'province', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'sports', 'illustrated', \"''\", 'rated', 'it', '``', 'the', 'game', 'of', 'the', 'decade', \"''\", 'for', 'college', 'football', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'hay', 'extension', 'line', 'opened', 'for', 'passenger', 'business', 'on', '2', '7', 'may', '1', '8', '8', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'statement', ',', 'released', 'by', 'rivera', \"'s\", 'representatives', ',', 'stated', 'that', 'the', 'divorce', 'was', 'due', 'to', '``', '', 'differences', 'on', 'behalf', 'of', 'both', 'parties', 'derived', 'from', 'private', 'circumstances', 'that', 'occurred', 'during', 'the', '', 'of', 'their', 'two-year', 'marriage', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'received', '``', 'premiere', \"''\", 'magazine', \"'s\", 'icon', 'award', 'in', '2', '0', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mackenzie', 'struggled', 'to', 'influence', 'legislation', 'and', 'his', '', 'to', 'government', 'bills', 'were', 'often', 'rejected', 'by', 'the', 'assembly', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'kelso', 'was', '', 'of', 'a', 'denver', 'debt', 'recovery', 'business', 'called', 'professional', 'recovery', 'systems', ';', 'he', 'was', 'a', '', '``', '...', 'giving', 'away', 'hundreds', 'of', 'thousands', 'of', 'dollars', 'to', 'charities', 'around', 'the', 'world', '...', \"''\", 'and', 'was', 'openly', 'gay', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '0', 'march', '2', '0', '1', '7', 'government', 'of', 'nepal', 'restricted', 'old', 'administrative', 'structures', 'and', 'announced', '7', '4', '4', 'new', 'local', 'level', 'units', '(', '9', 'added', 'later', ')', 'as', 'per', 'the', 'new', 'constitution', 'of', 'nepal', '2', '0', '1', '5', ',', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'the', 'first', 'crossing', 'of', 'the', 'atlantic', 'powered', 'only', 'by', 'solar', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'siggins', 'eventually', 'returned', 'to', 'australia', ',', 'living', 'in', 'adelaide', 'for', 'several', 'years', 'before', 'settling', 'in', 'wellington', ',', 'new', 'south', 'wales', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'album', \"'s\", 'artwork', '', 'its', 'title', ',', '', 'a', 'style', 'of', 'visual', '', 'that', 'consists', 'of', 'various', 'logical', '', 'or', '', 'for', 'the', 'viewer', 'to', 'try', 'to', 'identify', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', '3', '0', '.', '5', 'm', 'long', 'and', '6', 'm', 'wide', ',', 'and', 'weighed', '1', '0', '0', 'tons', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'born', 'in', 'inverness', ',', 'to', 'a', 'scottish', 'mother', ',', '', \"'s\", '', 'was', 'mostly', 'in', '', ',', 'the', 'county', 'town', 'of', 'pembrokeshire', 'in', 'wales', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'recruited', 'a', 'set', 'of', 'software', 'engineers', 'experienced', 'in', 'x', '', 'implementation', ':', 'jeff', '', ',', '', 'fortune', ',', 'paul', '', ',', 'john', '', ',', 'peter', '', ',', 'michael', 'toy', ',', 'todd', 'newman', ',', '', 'murray', ',', 'and', 'dave', '', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'levels', 'that', 'can', 'be', 'implemented', 'depend', 'on', 'the', 'hardware', 'capability', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'film', 'was', 'named', 'to', 'the', 'toronto', 'international', 'film', 'festival', \"'s\", 'annual', 'canada', \"'s\", 'top', 'ten', 'list', 'for', '2', '0', '0', '1', ',', 'and', 'martin', 'received', 'a', 'genie', 'award', 'nomination', 'for', 'best', '', 'at', 'the', '2', '2', 'nd', 'genie', 'awards', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'wrote', 'columns', 'for', 'many', 'newspapers', 'and', 'journals', 'including', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '', 'has', 'visual', '', 'to', '', '', '', ',', 'but', 'no', 'martial', 'arts', 'aspect', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'managed', 'wayne', '', 'after', 'he', 'left', 'the', '', ',', 'allowing', 'guitarist', '', 'stewart', 'to', '', 'to', 'lead', 'vocals', 'on', '``', 'a', '', 'kind', 'of', 'love', \"''\", ',', 'which', 'reached', 'no', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'climate', 'is', 'high', 'altitude', 'tropical', ',', 'with', 'average', 'annual', 'temperatures', 'of', 'falling', 'to', 'as', 'low', 'as', 'in', 'winter', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'highest', 'frequency', '(', '7', '5', '5', '4', '', ')', 'was', 'found', 'in', 'the', '``', '', \"''\", 'condition', ',', 'and', '``', 'n', \"''\", 'was', '', 'as', 'one', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'their', 'balloon', ',', 'built', 'in', 'moscow', 'by', 'professional', 'aircraft', '', ',', 'proved', 'to', 'be', 'far', '', 'than', '', \"'s\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'provided', 'the', 'voice', 'of', 'the', 'main', 'character', ',', '', 'eddie', '', ',', 'in', 'the', 'heavy', '', '', 'video', 'game', '``', '', 'legend', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'court', 'is', 'a', 'historic', 'apartment', 'complex', 'of', 'three', '', 'buildings', 'in', '', ',', 'nebraska', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'advanced', 'to', 'knight', 'commander', 'of', 'the', 'order', 'of', 'the', 'bath', 'in', 'the', '1', '9', '5', '0', 'new', 'year', 'honours', 'before', 'retiring', 'in', '1', '9', '5', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'will', ',', '', 'himself', 'for', 'his', 'wife', \"'s\", 'death', ',', 'shoots', 'himself', 'in', 'front', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'yakovlev', 'characterised', 'these', 'ideas', 'as', '', ',', 'pointing', 'to', 'the', 'refusal', 'of', '``', '', \"''\", 'to', '', 'the', 'authority', 'of', 'the', '1', '9', '1', '2', 'prague', 'conference', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'of', 'the', '2', '4', 'who', 'completed', '', '', ',', '5', '0', '.', '0', '%', 'were', 'swiss', 'men', ',', '4', '1', '.', '7', '%', 'were', 'swiss', 'women', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'to', 'receive', 'fifty', 'thousand', '', '(', 'about', '1', '5', ',', '0', '0', '0', 'l', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'also', 'gave', 'her', 'the', 'distinction', 'of', 'being', 'the', 'female', 'artist', 'with', 'the', 'most', '', 'weeks', 'at', 'number', 'one', ',', 'as', 'well', 'as', '', 'her', 'second', 'on', 'the', 'list', 'of', 'female', 'artists', 'with', 'the', 'most', '', 'albums', ',', 'behind', 'only', '', '.', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '3', '7', ',', 'he', 'took', '2', 'nd', 'in', '', '(', '', ')', ',', 'and', 'took', '3', 'rd', 'in', '', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'once', 'again', ',', 'each', 'episode', 'would', 'be', 'repeated', 'the', 'following', 'morning', 'at', '7', ':', '0', '0', 'am', 'on', 'bbc', 'two', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'is', 'typically', '', ',', 'large', 'and', 'extended', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '2', ',', 'a', 'group', 'of', '``', 'pig', '', \"''\", 'in', 'vienna', ',', 'georgia', ',', 'created', 'the', 'big', 'pig', '', 'by', '', 'a', '', 'competition', 'with', 'an', 'arts', 'and', '', 'fair', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'sale', 'of', '', ',', '', \"'s\", 'board', 'of', 'directors', 'undertook', 'to', 'use', 'the', 'funds', 'to', 'found', 'the', '', 'foundation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'february', '1', '8', '7', '4', ',', 'at', 'the', 'age', 'of', '1', '4', ',', '', 'was', '', 'back', 'to', 'his', 'mother', 'and', 'brother', 'in', 'south', 'boston', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'constitution', 'of', 'mexico', 'requires', 'the', '``', 'candidate', 'to', 'be', '', 'citizen', \"''\", 'of', 'mexico', 'with', 'at', 'least', 'one', 'parent', 'who', 'is', 'a', '', 'citizen', 'of', 'mexico', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'allmusic', 'rated', 'the', 'soundtrack', 'three', 'out', 'of', 'five', 'stars', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', '2', 'april', ',', 'when', 'she', 'was', '', 'on', 'the', 'roof', 'of', 'her', 'house', ',', 'she', 'was', 'attacked', 'with', 'acid', 'and', 'left', 'with', 'a', 'burnt', 'face', 'and', 'other', 'severe', 'injuries', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ski', '', 'is', 'a', 'ski', 'resort', 'in', 'the', '', 'region', 'of', 'the', 'canadian', 'province', 'of', 'quebec', ',', 'canada', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '``', '', \"''\", 'was', 'laid', 'down', 'in', '1', '8', '0', '7', 'and', 'commissioned', 'the', 'same', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'cords', 'develop', 'into', 'a', '', 'network', 'of', '', 'in', 'the', 'formation', 'of', 'the', '', 'network', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'a', 'trustee', 'of', 'the', 'metropolitan', 'museum', 'of', 'art', 'and', 'of', 'the', 'educational', 'testing', 'service', 'and', 'a', 'director', 'of', 'the', '', 'wilson', 'foundation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'ended', 'in', '1', '8', '5', '8', 'with', 'the', 'defeat', 'of', 'the', 'yakama', 'by', 'united', 'states', 'forces', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '1', ',', '9', '4', 'percent', 'of', 'the', '5', '0', '0', 'pennsylvania', 'public', 'school', 'districts', 'achieved', 'the', 'no', 'child', 'left', 'behind', 'act', 'progress', 'level', 'of', '7', '2', '%', 'of', 'students', 'reading', 'on', 'grade', 'level', 'and', '6', '7', '%', 'of', 'students', '', 'on', 'grade', 'level', 'math', '.', '']\n", "['', 'fox', 'had', 'previously', 'been', 'the', 'premier', 'under', 'the', 'second', 'administration', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'world', 'war', 'i', ',', 'alsace', 'became', 'a', 'part', 'of', 'france', 'again', ',', 'and', 'with', 'it', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'they', 'released', '``', 'seven', \"''\", '(', '1', '9', '7', '3', ')', 'without', 'additional', 'musicians', ',', 'the', 'band', 'switched', 'record', 'labels', 'from', 'columbia', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'donkeys', 'are', 'not', 'sold', ',', 'instead', 'they', 'are', 'used', 'to', '', 'the', 'coachman', \"'s\", 'carriage', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '0', 'the', 'team', 'competed', 'in', 'the', 'senior', 'ranks', ',', 'losing', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'c', '1', '', '1', ',', 'and', 'shortened', 'c', '1', '', '1', 'bonds', 'are', 'explained', 'with', 'an', '', 'effect', 'resulting', 'from', 'the', 'interaction', 'of', 'the', 'oxygen', 'lone', 'pairs', 'with', 'the', '', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'many', 'cases', ',', '', 'programme', 'and', 'clinical', 'trial', 'design', 'can', 'prevent', 'false', 'negative', 'results', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'certain', 'countries', 'of', 'africa', ',', 'various', 'species', 'of', '', '', 'are', 'very', 'widely', 'eaten', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'debts', 'never', '', 'them', ',', 'but', 'rather', 'their', 'inability', 'to', '', 'more', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'construction', 'is', 'typical', 'of', 'late', '1', '9', 'th-century', 'factories', ',', 'with', 'rows', 'of', '', 'windows', '(', 'many', 'now', 'boarded', 'over', ')', 'set', 'in', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'visual', 'flight', 'or', '``', 'visual', 'attitude', 'flying', \"''\", 'is', 'a', 'method', 'of', 'controlling', 'an', 'aircraft', 'where', 'the', 'aircraft', 'attitude', 'is', 'determined', 'by', '', 'outside', 'visual', 'references', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '5', ',', 'willow', 'run', ',', 'michigan', 'served', 'as', 'the', 'maintenance', 'base', 'for', 'gmats', ',', 'with', 'the', 'main', 'passenger', 'facility', 'at', 'detroit', 'city', 'airport', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'team', 'was', 'led', 'by', 'chuck', 'taylor', 'in', 'his', 'sixth', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'recently', ',', 'the', 'company', 'established', 'a', 'first', 'look', 'deal', 'with', 'warner', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'river', '', 'forms', 'most', 'of', 'the', 'commune', \"'s\", 'southeastern', 'border', ',', 'flows', 'through', 'the', 'commune', ',', 'then', 'forms', 'part', 'of', 'the', 'commune', \"'s\", 'western', 'border', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'study', 'conducted', 'by', 'the', '', 'center', 'for', 'the', 'study', 'of', 'drug', 'development', 'covering', 'the', '1', '9', '8', '0', 's', 'and', '1', '9', '9', '0', 's', 'found', 'that', 'only', '2', '1', '.', '5', 'percent', 'of', '', 'that', 'started', 'phase', 'i', 'trials', 'were', 'eventually', 'approved', 'for', 'marketing', '.', '', '', '']\n", "['', 'the', '', 'group', '', 'has', '', 'the', '', 'of', '', ',', 'as', 'one', 'in', 'which', 'india', 'is', 'defeated', 'and', 'united', 'with', 'pakistan', ',', 'unifying', 'the', 'indian', '', 'under', 'muslim', 'rule', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'both', 'are', '', 'leaders', ',', 'respectively', ',', 'in', 'popular', 'journalism', 'and', 'business', 'journalism', 'markets', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'never', 'once', 'did', 'we', 'receive', 'an', 'answer', 'from', 'a', 'congressman', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'two', 'police', 'officers', 'drove', 'up', 'and', 'down', 'the', 'low', 'riding', 'streets', 'with', 'their', 'sirens', '', '', 'to', 'evacuate', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'father', 'died', 'when', '', 'was', '1', '2', ',', 'and', 'at', 'that', 'time', 'his', 'family', 'moved', 'to', 'the', 'south', 'side', 'of', 'chicago', 'where', 'they', 'stayed', 'with', 'relatives', 'until', 'george', 'went', 'to', 'college', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'july', '2', '2', 'episode', 'of', '``', 'impact', '!', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'a', 'detailed', '1', '/', '1', '0', '0', 'th', 'scale', 'model', 'of', '``', '', \"''\", 'in', 'the', '', 'force', 'museum', 'in', '', ',', 'connecticut', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'yakama', 'war', 'ensued', ',', 'from', '1', '8', '5', '5', 'to', '1', '8', '5', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'next', ',', 'the', 'second', '', 'x', 'division', 'championship', 'qualifier', 'took', 'place', 'between', '', ',', '', 'steve', 'and', 'brian', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '3', 'february', '2', '0', '1', '5', ',', '', 'signed', 'for', 'english', 'club', 'northampton', 'saints', 'in', 'the', '', 'premiership', 'until', 'the', 'end', 'of', 'the', '2', '0', '1', '4', '-', '1', '5', 'season', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'is', '', 'and', 'is', 'divided', 'into', 'two', 'distinct', 'parts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'village', 'was', 'raised', 'to', 'parish', 'in', 'the', 'early', '1', '9', 'th', 'century', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'kelly', 'noted', 'that', 'aravena', ',', 'who', 'stood', '6', \"'\", '2', ',', 'weighed', '2', '8', '0', 'pounds', 'and', 'was', 'very', 'muscular', ',', 'did', 'not', 'try', 'to', 'help', '', 'despite', 'the', 'way', 'that', '', 'kept', '', 'and', '', 'him', 'for', 'being', 'jewish', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'of', 'these', 'stories', 'is', '', \"'s\", '``', 'how', 'fear', 'came', \"''\", ',', 'in', '``', 'the', 'second', 'jungle', 'book', \"''\", '(', '1', '8', '9', '5', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'xiang', 'yu', 'then', 'divided', 'the', 'country', 'into', 'eighteen', '', ',', '', 'zang', 'tu', 'as', 'the', 'lord', 'of', 'ji', 'and', 'han', 'guang', 'as', 'the', 'lord', 'of', 'nearby', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'among', 'the', 'adopted', 'children', 'was', 'a', 'former', 'prisoner', 'of', 'the', 'comanches', ',', 'who', 'was', 'adopted', 'by', 'pérez', 'when', 'he', 'fought', 'against', 'that', 'people', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'join', 'to', 'form', 'small', '', 'called', '', 'which', 'join', 'up', 'to', 'form', 'long', 'vessels', 'called', '', 'cords', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'is', 'possible', 'because', ',', 'while', 'the', 'mobile', 'phone', 'has', 'to', '', 'itself', 'to', 'the', 'mobile', 'telephone', 'network', ',', 'the', 'network', 'does', 'not', '', 'itself', 'to', 'the', 'phone', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'a', 'poll', 'by', '', 'only', '8', '%', 'of', 'the', 'russian', 'electorate', 'was', 'familiar', 'with', 'his', 'candidacy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'turret', 'housed', 'three', 'crew', 'and', 'has', 'the', 'same', '', 'as', 'an', 'm', '4', '1', ',', 'with', '', 'to', 'suit', 'the', 'shorter', '', 'of', 'local', 'tank', 'crews', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'studio', 'produced', '``', '', \"''\", '', '', 'series', '``', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'peter', 'shawn', '', '(', 'born', '1', '9', '5', '6', ')', 'is', 'an', 'american', '', ',', 'notable', 'for', 'his', 'contributions', 'to', 'the', 'fields', 'of', '', 'health', ',', 'research', 'design', ',', 'structural', 'analysis', ',', '', 'analysis', ',', 'oral', 'history', 'and', 'social', 'networks', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', 'to', 'a', 'gift', 'for', 'languages', ',', 'rose', 'was', 'known', 'for', 'possessing', 'an', '', 'sense', 'of', 'humor', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '', 'is', '', ',', 'with', 'very', 'long', 'stems', 'and', 'short', ',', 'even', 'side', 'branches', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '5', '2', '', 'anime', 'series', 'was', 'produced', 'by', '', 'ad', 'systems', '(', 'nas', ')', 'and', 'tv', 'tokyo', ',', 'animated', 'by', 'studio', '', ',', 'and', 'broadcast', 'on', 'tv', 'tokyo', 'from', 'october', '2', ',', '2', '0', '0', '2', 'to', 'september', '2', '4', ',', '2', '0', '0', '3', '.', '', '', '']\n", "['', 'it', 'is', 'the', 'largest', '', 'of', 'asia', 'by', 'area', ',', 'but', 'is', 'also', 'the', 'least', 'populated', ',', 'with', 'an', 'approximate', 'population', 'of', 'only', '3', '3', 'million', 'people', 'or', 'only', '0', '.', '7', '4', '%', 'of', 'asia', \"'s\", 'population', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'stopped', 'him', 'in', 'the', 'fourth', 'round', 'and', 'winters', 'announced', 'his', 'retirement', 'from', 'boxing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', 'the', 'census', 'of', '2', '0', '1', '0', ',', 'there', 'were', '1', '8', '2', 'people', ',', '9', '4', 'households', ',', 'and', '5', '8', 'families', 'residing', 'in', 'the', 'town', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'within', 'this', 'area', 'was', 'the', 'court', 'of', 'the', 'women', ',', 'open', 'to', 'all', 'jews', ',', 'male', 'and', 'female', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'to', 'meet', 'the', 'criteria', 'as', 'a', 'modern', 'young', 'defender', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'porter', 'served', 'as', 'florida', 'marlins', \"'\", 'third', 'base', 'coach', 'and', '', 'and', '', 'instructor', 'from', '2', '0', '0', '7', 'to', '2', '0', '0', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'rebels', \"''\", 'falls', 'into', 'the', 'genres', 'of', 'latin', 'pop', 'and', 'pop', 'rock', ',', 'with', '', 'and', 'r', '&', 'amp', ';', 'b', '', ',', 'which', 'were', 'new', 'music', 'styles', 'for', 'the', 'group', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'prior', 'to', 'the', '', 'inscription', ',', 'there', 'is', 'an', '', 'of', 'inscriptions', 'containing', 'kannada', 'words', ',', '', 'and', '', ',', '', 'its', 'antiquity', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', 'chronicles', \"''\", 'was', 're-released', 'in', 'japanese', '', 'stores', 'under', 'its', '``', 'the', 'best', \"''\", 'label', 'on', 'march', '5', ',', '2', '0', '0', '9', 'with', 'a', 'retail', 'price', 'of', '', '3', ',', '9', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'outstanding', 'contribution', 'to', 'wildlife', 'research', 'and', 'conservation', 'through', 'the', 'setting', 'up', 'of', 'captive', 'breeding', '', ',', 'as', 'well', 'as', 'for', 'pioneering', 'and', 'successfully', 'managing', '', 'conflict', 'in', 'affected', 'areas', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'with', 'the', 'first', 'generation', ',', 'the', 'cars', 'are', 'almost', 'identical', 'in', 'outside', 'appearance', ',', 'but', 'have', 'different', 'front', 'end', 'designs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'of', 'the', 'road', 'system', 'is', '', '', ',', 'especially', 'in', 'high', 'rainfall', 'areas', 'of', 'the', 'south', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'dawn', 'on', '7', 'march', ',', '', 'came', 'under', 'a', 'fierce', 'attack', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'this', ',', 'the', 'largest', 'of', 'the', 'temple', 'courts', ',', 'one', 'could', 'see', 'constant', 'dancing', ',', 'singing', 'and', 'music', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'under', 'the', 'terms', 'of', 'the', 'coalition', 'agreement', 'between', 'reform', 'and', 'the', 'liberal', \"'s\", 'a', 'condition', 'was', 'made', 'not', 'to', '', 'each', 'other', 'in', '', 'for', '', 'or', 'retiring', 'mp', \"'s\", 'from', 'their', 'own', 'parties', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'book', 'of', 'the', 'paintings', ',', '``', 'nelson', \"'s\", 'ships', ':', 'a', '', 'tribute', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'heard', 'reports', 'of', '', 'of', 'the', 'new', 'system', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', '', 'conference', 'it', 'was', 'suggested', 'as', 'part', 'of', 'the', 'roosevelt', 'plan', 'to', 'create', 'a', 'central', 'german', 'state', 'which', 'would', 'have', 'combined', 'roughly', 'the', 'areas', 'formerly', 'covered', 'by', 'the', '', 'states', 'of', 'central', 'germany', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'spangler', 'runs', 'his', 'hand', 'over', 'the', '``', 'duct', 'tape', \"''\", ',', 'he', 'feels', 'a', 'smooth', 'surface', 'rather', 'than', 'the', 'rough', 'outside', 'of', 'the', 'tape', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'main', '', 'of', 'the', 'steam', 'boats', ',', 'though', ',', 'was', 'their', 'high', 'operating', 'costs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'has', 'since', 'worked', 'on', 'productions', 'including', 'god', ',', '', 'blues', ',', 'the', '', '', ',', '', ',', 'the', '', '', 'of', '', ',', 'and', 'jesus', 'christ', 'superstar', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'fountain', 'is', 'regularly', 'frequented', 'by', 'the', 'local', 'community', 'and', 'is', 'considered', 'a', 'historical', 'landmark', 'in', 'an', 'area', 'that', 'finds', 'itself', 'becoming', 'more', 'and', 'more', '', 'from', 'its', 'history', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'instrumental', 'in', 'the', '', 'of', 'cash', 'in', 'transit', 'security', 'guards', 'in', '1', '9', '6', '4', ',', 'having', 'always', '', 'the', 'idea', 'of', 'private', 'guards', 'carrying', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', '2', '0', '0', '6', 'census', ',', 'its', 'population', 'was', '3', '6', '3', ',', 'in', '6', '4', 'families', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'december', '2', '0', '1', '7', ',', 'the', 'group', 'announced', 'its', 'plans', 'to', 'launch', 'a', 'new', 'restaurant', 'concept', ',', 'no', '', ',', 'aimed', 'at', 'international', 'markets', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'valid', 'enrichment', 'programs', 'help', 'the', 'scholar', 'grow', '', 'and', 'help', 'the', 'scholar', 'prepare', 'for', 'a', 'career', ',', 'graduate', 'school', ',', 'or', 'a', 'senior', 'thesis', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '', '', '(', 'born', '1', 'july', '1', '9', '9', '1', ')', 'is', 'a', '', 'race', 'walker', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ms', '``', 'rotterdam', \"''\", 'shares', 'her', 'name', 'with', 'six', 'previous', 'holland', 'america', 'ships', 'and', 'will', 'become', 'the', 'company', \"'s\", 'new', 'flagship', 'upon', 'her', 'debut', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'written', 'by', 'jerome', '', 'and', 'directed', 'by', '', '', ',', 'it', 'was', 'first', 'broadcast', 'november', '1', ',', '1', '9', '6', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'parasite', '``', '', '', \"''\", 'was', 'known', 'to', '', '', 'and', '', ',', 'but', 'beginning', 'in', 'great', 'britain', 'in', '2', '0', '0', '5', ',', 'carcasses', 'of', 'dead', 'european', '', 'and', 'common', 'chaffinches', 'were', 'found', 'to', 'be', 'infected', 'with', 'the', 'parasite', '.', '', '', '', '', '', '', '']\n", "['', 'silver', 'bay', 'elementary', 'school', ',', 'part', 'of', 'the', '', 'river', 'regional', 'schools', ',', 'is', 'located', 'on', 'silver', 'bay', 'road', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'the', 'historian', '', '', ',', 'the', 'walls', 'of', 'pontevedra', 'were', 'extended', 'three', 'times', ',', 'the', 'first', 'between', '1', '3', '0', '0', 'and', '1', '3', '2', '5', 'and', 'the', 'last', 'between', '1', '4', '5', '0', 'and', '1', '4', '8', '0', '.', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'factors', 'included', 'political', '', 'between', 'members', 'of', 'the', 'german', 'confederation', ',', 'particularly', 'between', 'the', '', 'and', 'the', '', ',', 'and', 'socio-economic', 'competition', 'among', 'the', 'commercial', 'and', 'merchant', 'interests', 'and', 'the', 'old', '', 'and', '', 'interests', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'location', 'allows', 'the', 'upper', 'fort', 'to', 'control', 'the', 'valley', ',', 'including', 'the', 'railroad', 'viaduct', ',', 'and', 'to', 'protect', 'the', 'lower', 'fort', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'tasman', 'called', 'it', '``', 'rotterdam', \"''\", 'island', ',', 'after', 'the', 'city', 'of', 'rotterdam', ',', 'a', 'major', 'port', 'in', 'the', 'netherlands', ',', 'and', 'noted', 'in', 'his', 'maps', 'the', 'indigenous', 'name', 'of', '``', '', \"''\", ',', 'a', '', 'of', '``', 'a', '', \"''\", ',', '``', 'a', \"''\", 'being', 'a', '', 'article', '.']\n", "['', 'one', 'theory', 'suggests', 'that', 'because', 'of', 'this', ',', 'boys', 'have', 'more', 'opportunities', 'to', 'exhibit', 'their', 'strength', 'and', 'skill', 'and', '', '', 'to', 'that', 'of', 'their', 'peers', 'during', 'these', 'competitive', 'activities', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'business', 'was', 'largely', 'of', 'an', 'investment', 'class', ',', 'and', 'he', '', 'speculative', 'ventures', 'on', 'the', 'part', 'of', 'his', '', ',', '', 'his', 'reputation', 'in', 'financial', '', 'as', 'one', 'of', 'the', 'highest', 'integrity', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'possible', 'that', 'the', 'document', 'may', 'be', 'changed', 'from', 'time', 'to', 'time', 'like', 'when', 'other', 'teams', 'introduce', 'new', 'components', 'or', 'remove', 'them', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'land', 'surrounding', '', 'is', 'primarily', 'agricultural', 'as', 'is', '', 'by', 'satellite', '', ',', 'as', 'well', 'as', 'historical', 'documents', 'pertaining', 'to', 'the', 'founding', 'of', 'the', 'village', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'usually', '', 'or', '', ',', 'cover', 'the', 'otherwise', 'open', 'end', 'of', 'a', 'pipe', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'other', 'prisoners', '', '', 'into', 'performing', 'for', 'them', ',', 'but', 'he', 'does', 'not', '', 'he', 'actually', 'is', 'not', 'very', 'good', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'song', 'was', 'written', 'by', 'eve', 'lawson', ',', 'the', 'wife', 'of', 'technical', '', 'lawrence', 'e.', 'lawson', ',', 'while', 'they', 'were', 'stationed', 'at', 'niagara', 'falls', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mas', 'became', 'the', 'first', 'airline', 'in', 'southeast', 'asia', 'to', 'serve', 'south', 'america', 'via', 'its', 'flights', 'to', '', '', ',', 'argentina', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'elsewhere', ',', 'the', 'escaped', 'wildcat', '', 'around', 'the', 'park', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'by', 'his', '', 'and', 'lacking', 'an', '', '', ',', 'he', 'releases', 'the', 'chain', 'and', '', 'as', 'he', 'falls', 'into', 'the', 'dark', 'jungle', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'returned', 'one', 'member', 'of', 'parliament', '(', 'mp', ')', 'to', 'the', 'house', 'of', 'commons', 'of', 'the', 'parliament', 'of', 'the', 'united', 'kingdom', 'from', '1', '8', '8', '5', 'to', '1', '9', '2', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'the', 'seat', 'of', 'the', 'gmina', '(', 'administrative', 'district', ')', 'called', 'gmina', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'hermitage', 'chapel', ',', '', '', ',', '', 'as', 'a', 'pilgrimage', 'site', 'in', 'its', 'own', 'right', ',', 'now', 'contains', 'a', 'plaster', 'copy', 'of', 'this', 'original', 'altarpiece', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'largest', 'cities', 'in', 'the', 'east', '', 'area', 'are', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'juan', 'rodríguez', 'de', '', 'was', 'defeated', 'by', 'the', 'indigenous', 'in', 'the', 'valley', 'of', '', '(', 'in', 'the', 'present-day', 'state', 'of', 'colima', ')', 'in', '1', '5', '2', '2', ',', '', 'sent', 'gonzalo', 'de', '', 'there', 'with', 'instructions', 'to', 'conquer', 'the', 'territory', 'and', 'found', 'a', 'town', '.', '', '', '', '']\n", "['', 'on', 'december', '7', ',', '2', '0', '1', '6', ',', '', 'donald', 'trump', 'announced', 'that', 'he', 'would', '', 'mcmahon', 'to', 'be', 'the', 'administrator', 'of', 'the', 'small', 'business', 'administration', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', '', \"''\", 'and', '``', '', '', \"''\", 'are', 'considered', '``', '', '', \"''\", 'by', '', 'et', 'al', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'airfield', 'hosts', 'an', 'annual', 'concert', 'called', '``', 'music', 'in', 'the', 'air', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '2', 'july', '1', '9', '2', '3', '-', '2', '0', 'february', '2', '0', '2', '0', ')', ',', 'elder', 'daughter', 'of', '', 'david', 'von', '', ',', 'and', 'his', 'wife', ',', '', 'von', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'all', 'of', 'the', '', 'of', 'these', 'early', 'version', 'features', 'are', 'performed', 'by', 'new', '', '9', '5', 'features', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '9', '9', '3', 'to', '2', '0', '0', '2', ',', 'de', 'la', '', 'designed', 'the', '', 'couture', 'collection', 'for', 'the', 'house', 'of', '', ',', 'becoming', 'the', 'first', 'dominican', 'to', 'design', 'for', 'a', 'french', 'couture', 'house', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'breeding', 'takes', 'place', 'in', 'late', 'spring', 'and', 'early', 'summer', 'in', 'explosive', 'breeding', 'events', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'later', 'returned', 'to', 'naples', 'and', 'was', 'educated', 'at', 'the', 'city', \"'s\", 'san', 'pietro', 'a', '', 'conservatory', 'and', 'later', 'the', 'university', 'of', '', 'studying', 'literature', 'under', '', 'italian', 'poet', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'plumage', '', 'is', 'varied', 'with', 'the', 'majority', 'having', 'mainly', 'dark', 'plumage', ',', 'some', 'species', 'being', '', ',', 'and', 'a', 'few', 'being', 'quite', 'colorful', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', 'the', 'new', 'navigation', 'soon', 'faced', 'competition', 'from', 'better', 'roads', 'and', 'the', 'railway', ',', 'which', 'appeared', 'in', 'the', 'region', 'in', '1', '8', '7', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'praised', '', \"'s\", 'acting', 'performances', 'during', 'the', 'darker', 'stories', 'and', 'hoped', 'the', 'writers', 'would', 'let', 'mark', 'be', 'happy', 'in', 'the', 'future', 'by', 'giving', 'him', 'a', 'child', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'have', 'three', 'sons', 'named', 'jesse', '(', 'born', '2', '0', '0', '3', ')', ',', '', '(', 'born', '2', '0', '0', '6', ')', 'and', '', '(', 'born', '2', '0', '0', '9', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'plaster', 'cast', 'model', 'of', 'the', 'local', 'nurse', ',', 'sister', 'dora', ',', 'which', 'had', 'been', 'located', 'in', 'the', '', 'of', 'the', 'council', 'house', 'for', 'many', 'years', ',', 'was', 'moved', 'to', '', 'manor', 'hospital', 'in', 'september', '2', '0', '1', '0', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thunder', 'mask', '(', '', '``', '', 'masuku', \"''\", ')', 'is', 'a', '1', '9', '7', '2', '', 'series', 'produced', 'by', 'nippon', 'television', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ky', '3', '6', '3', '0', '', 'the', 'southern', 'terminus', 'of', 'ky', '2', '9', '0', 'and', 'heads', 'into', '', ',', 'where', 'it', 'passes', 'through', 'residential', 'areas', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'played', 'his', 'early', 'football', 'at', 'south', '', 'but', 'was', 'recruited', 'from', 'the', 'geelong', 'falcons', 'in', 'the', '', 'cup', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'track', 'was', 'released', 'on', '1', '3', 'june', '2', '0', '0', '8', 'as', 'the', 'album', \"'s\", 'second', 'single', ',', '', 'to', 'critical', 'acclaim', 'and', 'commercial', 'success', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'will', 'be', 'made', 'possible', 'by', 'extending', 'the', 'existing', 'platform', '5', 'to', '4', '0', '0', 'metres', ',', 'allowing', 'services', 'to', 'split', 'and', 'serve', 'these', 'additional', 'destinations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'mary', 'ann', \"''\", ',', '', ',', 'master', ',', 'came', 'into', 'dover', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'grade', 'school', 'program', '', 'information', 'literacy', 'as', 'its', 'approach', 'to', 'the', 'basic', 'curriculum', 'required', 'by', 'the', 'department', 'of', 'education', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'june', '2', '0', '1', '7', ',', 'the', 'company', '', 'its', 'support', 'for', 'the', 'paris', 'agreement', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'defendants', ',', 'politicians', ',', 'and', 'police', ',', '', \"'s\", 'mother', 'related', 'how', 'she', 'discovered', 'the', 'business', 'of', 'human', 'trafficking', ',', 'and', 'declared', 'that', 'the', 'only', 'thing', 'she', 'looks', 'for', 'is', 'the', 'return', 'of', 'her', 'daughter', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'only', 'twice', 'during', 'this', 'extended', 'period', 'was', '``', 'china', 'cat', '', \"''\", 'played', 'without', 'this', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'thames', 'valley', 'is', 'a', 'technology', 'hub', '', 'around', 'reading', ',', 'considered', 'to', 'stretch', 'as', 'far', 'out', 'as', '', ',', 'oxford', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'harry', 'smith', 'was', '', 'while', '', 'and', '', 'smith', 'were', 'each', '', '$', '2', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'site', 'was', 'named', '``', 'firs', 'park', \"''\", 'after', 'the', 'street', 'in', 'which', 'it', 'was', 'located', 'and', 'was', 'officially', 'opened', 'in', '1', '9', '2', '1', 'and', 'would', 'be', 'the', 'club', \"'s\", 'home', 'for', 'the', 'next', '8', '7', 'years', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '3', '0', 'may', '1', '9', '8', '7', ':', '', '', '(', '1', '0', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', '1', 'march', '1', '6', '1', '7', 'he', 'was', 'appointed', 'guardian', 'of', 'thomas', 'rolfe', ',', 'the', '', 'son', 'of', 'john', 'rolfe', 'and', 'rebecca', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', '', 'that', 'he', 'was', 'trying', 'to', 'find', 'out', 'more', 'about', 'the', 'colony', \"'s\", 'past', 'and', 'asks', 'her', 'friend', 'nicolai', '', ',', 'a', 'chosen', ',', 'to', '', 'the', 'information', 'from', 'his', 'satt', \"'s\", 'archives', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'aunt', '', 'is', 'joined', 'by', 'her', 'husband', ',', 'uncle', '', '(', 'later', 'renamed', 'uncle', '', 'to', 'avoid', 'confusion', 'with', 'the', 'cream', 'of', 'wheat', 'character', ',', 'while', 'uncle', '', 'was', 'first', 'introduced', 'as', 'the', 'plantation', 'butler', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'accompanied', 'by', 'a', 'crew', 'of', 'three', 'aboard', 'the', 'sailboat', ',', 'where', 'he', 'could', 'rest', 'and', 'eat', 'between', 'each', 'swimming', 'period', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'four', 'surviving', 'children', 'were', 'close', 'to', 'each', 'other', 'and', 'to', 'their', 'parents', ',', 'who', 'were', 'devoted', 'to', 'them', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'officer', 'and', 'twenty-seven', 'other', 'ranks', 'answered', 'roll', 'call', 'the', 'next', 'day', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'sophie', '', ',', 'a', 'magazine', 'editor', 'in', 'new', 'york', 'city', ',', 'comes', 'home', 'to', '', 'after', 'the', 'death', 'of', 'her', 'sister', ',', 'helen', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'kentucky', 'route', '6', '1', '6', '0', '(', 'ky', '6', '1', '6', '0', ')', 'is', 'a', 'supplemental', 'road', 'in', 'the', 'city', 'of', 'louisville', 'in', 'jefferson', 'county', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'that', 'night', '', 'returns', ',', 'and', 'wanderer', 'engages', 'her', 'in', 'a', 'fight', 'to', 'the', 'death', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'second', 'chapter', 'is', 'the', 'bill', 'of', 'rights', 'and', 'it', 'describes', 'the', 'democratic', '', 'that', 'the', 'state', 'must', 'uphold', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'peter', \"'s\", 'son', 'simon', '', '(', '', '', ')', 'finds', 'a', 'voice', 'message', 'on', 'his', 'phone', 'of', 'peter', '', 'and', '', '', 'on', 'the', 'night', 'that', 'ken', 'was', 'pushed', 'down', 'the', '', ',', 'everybody', 'automatically', 'assumes', 'that', 'he', 'is', 'behind', 'ken', \"'s\", 'attack', '.', '', '', '', '', '']\n", "['', 'khoza', 'denied', 'this', ',', 'ferguson', 'produced', 'documents', 'to', 'the', '', ',', 'and', 'leaked', 'evidence', 'of', 'khoza', \"'s\", '', 'involvement', 'was', 'reported', 'to', 'have', 'had', '``', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'early', 'work', 'was', 'on', 'the', 'automatic', '', 'engine', 'and', 'english', 'electric', '', 'computers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'an', '', ',', '', 'specializes', 'in', 'the', 'area', 'of', '', 'issues', ',', '', ',', 'the', '', ',', 'world', '', ',', 'the', 'entertainment', 'industry', ',', 'and', 'pop', 'culture', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'his', 'thesis', ',', '``', 'the', 'equivalent', 'source', 'method', 'for', 'electromagnetic', 'scattering', 'analysis', 'and', 'its', '', 'application', \"''\", ',', '', 'developed', 'the', 'plate', 'program', 'used', 'in', '', '', 'to', '', 'model', 'the', 'electromagnetic', 'response', 'of', 'finite', 'thin', 'conducting', '', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'bridge', 'and', 'final', 'chorus', 'of', 'the', 'song', ',', 'scenes', 'of', 'rihanna', 'from', 'throughout', 'the', 'video', 'are', '', 'with', 'each', 'other', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'new', '', 'arrived', 'in', 'the', 'united', 'states', 'with', 'his', 'wife', 'on', 'april', '7', ',', '1', '9', '3', '8', ',', 'being', '', 'by', 'a', 'number', 'of', 'romanians', ',', 'including', 'his', 'brother', '', '(', '1', '8', '9', '4', '-', '1', '9', '6', '7', ')', ',', 'active', 'in', 'the', 'community', '.', '']\n", "['', 'there', 'is', 'also', 'a', 'wide', 'variation', 'in', 'the', 'shape', 'of', 'the', 'shell', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'most', 'common', 'situation', 'in', 'which', 'a', '', 'is', 'used', 'is', 'when', 'a', 'telephone', 'hybrid', 'is', 'connected', 'to', 'a', '', ',', 'usually', 'at', 'a', 'radio', 'station', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'discount', 'window', 'is', 'available', 'to', 'meet', 'liquidity', 'needs', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'old', 'san', 'juan', '(', ')', 'is', 'a', 'historic', 'district', 'located', 'at', 'the', '``', 'northwest', 'triangle', \"''\", 'of', 'the', '', 'of', 'san', 'juan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'appeared', 'in', 'over', '1', '0', '0', 'films', ',', 'including', 'over', '8', '0', 'feature', 'films', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'whilst', 'at', 'warrington', 'he', 'was', 'given', 'a', '1', '0', 'month', 'ban', 'for', '', 'use', 'for', 'which', 'he', 'was', '', 'by', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'equivalent', 'position', 'existed', 'in', 'ireland', 'between', '1', '8', '6', '7', 'and', '1', '9', '0', '4', '(', '', 'of', 'ireland', ')', 'when', 'the', 'office', 'was', 'abolished', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'statements', 'have', 'not', 'been', '', 'by', 'the', 'food', 'and', 'drug', 'administration', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'wrote', 'new', 'lyrics', 'in', '1', '9', '7', '0', ',', 'but', 'they', 'were', 'not', 'submitted', 'to', 'the', '', 'of', 'the', 'supreme', 'soviet', 'until', 'may', '2', '7', ',', '1', '9', '7', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', '2', '5', 'th', 'of', 'august', '``', 'sexy', ',', 'sexy', ',', 'sexy', \"''\", 'reached', 'number', 'six', 'on', 'the', 'chart', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'crater', 'is', 'named', 'after', 'the', '1', '9', 'th-century', 'german', '', 'friedrich', '', '', 'nicolai', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'of', 'the', 'company', ',', 'which', 'was', 'renamed', '', 'mazda', 'motor', 'industries', ',', 'are', 'the', 'state-owned', '', 'holdings', '(', '5', '8', '%', ')', ',', 'mazda', 'motor', '(', '2', '5', '%', ')', ',', '', '(', '8', '%', ')', 'and', 'an', 'employee', 'benefit', 'fund', '(', '9', '%', ')', '.', '', '']\n", "['', 'in', 'connection', 'with', 'the', 'raid', 'russian', 'politician', '', '', 'was', 'investigated', 'a', 'money', '', 'scheme', 'involved', '', '', ',', 'a', 'subsidiary', 'of', 'ural', 'mining', 'and', '', 'company', '(', '', ')', 'which', '', '', 'and', '', '', 'were', 'the', 'main', 'owners', 'in', 'the', 'early', '2', '0', '0', '0', 's', '.', '']\n", "['', '', 'was', 'born', 'in', '', 'in', '1', '9', '2', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'congressman', 'shared', 'his', 'mount', '', ',', 'washington', ',', 'd.c.', 'house', 'with', 'his', 'cousin', ',', 'robert', 'm.', 'la', '', 'and', 'his', 'family', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'example', 'to', 'further', 'explain', '', 'is', 'as', 'follows', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '', 'about', '4', '4', 'or', '(', '4', '5', '.', '4', '%', ')', 'of', 'the', 'population', 'have', 'completed', '', 'upper', 'secondary', 'education', ',', 'and', '2', '4', 'or', '(', '2', '4', '.', '7', '%', ')', 'have', 'completed', 'additional', 'higher', 'education', '(', 'either', 'university', 'or', 'a', '``', '', \"''\", ')', '.', '']\n", "['', '', 'explained', 'a', 'mechanism', 'by', 'which', 'a', 'card', 'sharp', 'could', '', 'at', '', ',', 'by', '', 'and', 'then', '', 'atop', 'the', 'deck', 'a', 'packet', 'of', 'cards', 'in', 'prepared', 'order', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'allowed', 'its', 'western', 'claims', 'to', 'become', 'the', 'state', 'of', 'kentucky', 'in', '1', '7', '9', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'the', 'building', 'operations', 'were', '', ',', 'the', 'persian', 'army', 'rose', 'up', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', '', 'for', '', 'webb', ',', 'the', 'socialist', 'candidate', 'in', 'grey', ',', 'at', 'the', '1', '9', '1', '1', 'general', 'election', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'in', 'place', 'from', '6', 'august', '1', '8', '6', '2', 'until', '3', '0', 'october', '1', '8', '6', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'disney', 'had', 'already', 'begun', 'working', 'out', 'the', 'details', 'for', 'the', 'segments', ',', 'and', 'showed', 'greater', '', 'and', '', 'as', 'opposed', 'to', 'his', 'anxiety', 'while', 'starting', 'on', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'undergraduate', 'scholars', 'are', 'also', 'given', 'the', 'opportunity', 'to', 'use', 'up', 'to', '7', '0', '0', '0', 'dollars', 'for', 'a', 'summer', 'enrichment', 'program', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'webb', 'came', 'out', 'in', 'full', 'support', 'of', 'hillary', 'clinton', 'in', 'the', '2', '0', '1', '6', 'democratic', 'primary', 'and', 'condemned', '', '', 'and', 'his', 'supporters', 'for', 'breaking', 'the', 'unity', 'of', 'the', 'democratic', 'party', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'supposedly', ',', 'rita', 'was', 'such', 'a', 'fashion', 'plate', 'that', 'when', 'she', 'learned', 'her', 'husband', 'was', 'having', 'an', 'affair', 'with', 'a', '', '', 'woman', ',', 'she', 'sent', 'the', '', 'to', 'callot', 'soeurs', 'for', 'new', 'clothing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'head', 'coach', 'jay', '', 'named', 'brown', 'and', 'mason', 'foster', 'the', 'starting', 'inside', '', 'to', 'begin', 'the', 'regular', 'season', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'george', '', 'called', 'it', '``', '', 'king', \"''\", 'and', '``', 'a', 'horrific', 'little', '', 'of', 'a', 'story', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'largest', 'amount', 'of', 'opposition', 'and', 'resentment', 'towards', 'native', 'americans', \"'\", 'fishing', 'and', 'hunting', 'rights', 'stems', 'from', 'the', 'pacific', 'northwest', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'released', 'with', 'little', 'advanced', 'notice', 'in', 'early', 'november', '2', '0', '1', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'afterwards', ',', 'film', 'offers', 'were', 'in', 'short', 'supply', 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'moved', 'to', 'chicago', 'to', 'start', 'working', 'as', 'an', 'associate', 'professor', 'at', 'the', 'department', 'of', 'sociology', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'album', 'contains', 'songs', 'from', 'the', 'group', \"'s\", 'previous', 'studio', 'albums', 'that', 'were', 'translated', 'into', 'english', 'for', 'the', 'release', ',', 'as', 'well', 'as', 'new', 'songs', 'that', 'were', 'recorded', 'exclusively', 'for', 'the', 'album', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'pilot', 'episode', 'of', '``', 'destined', 'to', 'be', 'yours', \"''\", 'in', 'february', '2', '0', '1', '7', ',', '``', '', '', \"''\", 'topped', 'the', 'itunes', 'ph', 'list', 'of', 'songs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hill', 'continued', 'to', 'race', '', 'and', 'in', '1', '9', '7', '2', 'and', 'won', 'the', 'texas', 'state', 'road', 'racing', 'championship', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'design', 'incorporates', 'sustainable', 'technologies', 'including', 'solar', 'panels', ',', 'a', '', 'green', 'roof', ',', 'and', 'living', 'walls', 'irrigated', 'by', 'rainwater', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thompson', 'was', 'confirmed', 'by', 'the', 'united', 'states', 'senate', 'on', 'september', '2', '6', ',', '1', '9', '8', '0', ',', 'and', 'received', 'his', 'commission', 'on', 'september', '2', '9', ',', '1', '9', '8', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'offered', 'poor', 'network', 'coverage', 'in', 'delhi', '&', 'amp', ';', '', 'circle', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'experience', 'in', 'the', 'united', 'states', 'suggests', 'that', 'these', 'strains', 'are', '', 'within', 'families', 'and', 'in', 'community', 'settings', 'such', 'as', '', ',', 'schools', 'and', 'sport', 'teams', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'ran', 'aground', 'on', 'the', '', 'sands', 'in', 'november', '1', '9', '9', '1', ',', 'bringing', 'the', 'era', 'of', '', 'pirate', 'radio', 'in', 'europe', 'to', 'an', 'end', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'de', '', \"''\", 'was', 'followed', 'in', '1', '9', '7', '9', 'by', '``', '', 'de', 'bom', '', 'de', '', \"''\", ',', 'in', 'which', 'van', '', ',', '', 'and', 'prinsen', 'also', 'played', 'the', 'lead', 'roles', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'air', 'base', 'also', 'served', 'as', 'temporary', 'housing', 'for', 'the', 'united', 'states', 'men', \"'s\", 'national', 'soccer', 'team', 'during', 'the', '2', '0', '0', '6', 'world', 'cup', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', '2', '0', '1', '6', 'census', ',', 'there', 'were', '1', '1', ',', '2', '2', '2', 'residents', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'reason', 'for', 'the', 'orange', 'lantern', '', '', 'is', 'revealed', 'to', 'be', 'the', 'black', 'lantern', 'rings', '', '', \"'s\", 'many', 'victims', 'on', 'his', 'world', 'of', '', ',', 'forcing', 'him', 'to', 'use', 'his', 'orange', '', 'to', 'defend', 'himself', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'for', '', ',', 'which', 'was', 'granted', 'a', 'high', 'court', '', 'giving', 'police', 'the', 'power', 'to', 'arrest', 'anyone', 'who', 'tried', 'to', 'enter', 'the', 'site', ',', 'said', ':', '``', 'there', 'are', \"n't\", 'any', 'winners', 'or', '', 'here', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'abby', 'is', 'struck', 'by', 'a', 'bus', ',', 'while', 'a', 'little', 'boy', '', 'from', 'inside', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'named', 'after', 'a', '', 'resemblance', 'to', 'the', 'european', '', ',', 'the', 'males', 'of', 'many', 'species', 'sport', 'bright', 'red', 'or', 'pink', 'on', 'their', 'plumage', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'may', 'also', 'be', 'present', 'as', 'well', 'as', 'hair', '', '', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'january', '2', '3', ',', '2', '0', '1', '9', ',', 'matthews', 'was', 'named', 'to', 'his', 'first', 'pro', 'bowl', 'as', 'a', 'replacement', 'for', 'redskins', 'offensive', 'tackle', 'trent', 'williams', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'cpu', 'design', 'technique', 'is', 'also', 'known', 'as', '``', '', \"''\", 'or', '``', '', \"''\", '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'and', 'his', 'wife', 'attended', 'the', 'concerts', 'which', 'included', 'his', 'russian', '', '``', 'the', 'sealed', 'angel', \"''\", 'for', 'choir', 'and', '', ',', 'performed', 'in', '', 'abbey', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'special', 'relativity', 'is', 'restricted', 'to', 'the', 'flat', 'spacetime', 'known', 'as', '', 'space', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'the', 'stations', 'have', 'all', 'sustained', 'systematic', '', ',', 'they', 'have', 'retained', ',', 'in', 'varying', 'degrees', ',', 'most', 'of', 'their', 'original', 'fabric', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'have', 'been', 'referred', 'to', 'as', '``', 'a', 'significant', 'precursor', 'to', '', \"''\", 'due', 'to', 'the', '``', '', \"''\", 'of', 'the', 'band', \"'s\", '', 'approach', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '4', '3', '2', ',', 'the', 'university', ',', '', 'to', 'papal', 'and', 'imperial', '', ',', 'sent', 'two', 'delegates', 'to', 'the', 'council', 'of', '', 'who', '', 'supported', 'the', 'legitimate', 'pope', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'of', 'the', 'airway', 'can', 'make', '', 'difficult', ',', 'and', 'therefore', 'in', 'those', 'with', 'suspected', 'thermal', 'burns', ',', '', 'is', 'recommended', 'in', 'attempts', 'to', 'quickly', 'secure', 'an', 'airway', 'prior', 'to', 'progression', 'of', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'departure', 'of', 'house', ',', '', 'decides', 'he', 'wants', 'to', 'get', 'better', 'and', 'goes', 'back', 'on', 'his', 'medication', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'large', 'areas', 'also', 'became', 'an', 'industrial', 'landscape', 'as', 'a', 'result', 'of', '', ',', '', 'mining', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'expected', 'lack', 'of', 'volume', 'combined', 'with', 'extensive', 'construction', 'cost', '', 'has', 'prompted', 'several', '', '', 'companies', 'to', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rebecca', 'and', 'johnny', 'keep', 'using', 'others', 'to', 'get', 'a', 'reaction', 'out', 'of', 'each', 'other', 'including', 'sam', 'and', 'bobby', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'vice', 'president', 'félix', '', \"'s\", 'refusal', 'to', '', 'office', ',', 'the', 'congress', 'placed', 'senator', '', '', ',', 'a', 'moderate', 'gondra', 'supporter', 'into', 'interim', 'presidency', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'film', 'was', 'released', 'in', '4', '7', '', 'in', 'north', 'america', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', 'january', '2', '0', '2', '0', '', 'questions', ':', 'theological', 'answers', \"'\", 'has', 'not', 'been', 'published', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'back', 'in', 'new', 'york', ',', '', 'learns', 'that', 'planning', 'a', 'royal', 'wedding', 'can', 'be', '', ',', 'especially', 'with', 'a', 'baby', 'on', 'the', 'way', ',', 'and', 'dan', 'discovers', 'the', 'consequences', 'of', 'writing', '', 'about', 'his', 'closest', 'friends', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", 'was', 'installed', 'in', 'the', 'forward', 'hold', 'to', 'create', 'a', 'crew', 'sleeping', 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'lower', 'floor', 'was', 'designed', 'as', 'the', '', 'freight', 'house', 'with', 'the', 'upper', 'four', 'floors', 'for', 'storage', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'approximate', 'lines', 'of', 'the', 'north', 'wall', 'and', 'east', 'end', 'are', 'followed', 'by', 'the', 'churchyard', 'wall', 'of', 'flint', 'and', '', '', ',', 'constructed', 'in', 'the', 'late', '1', '8', 'th', 'or', '1', '9', 'th', 'century', 'and', 'excluded', 'from', 'the', 'scheduling', ',', 'although', 'the', 'ground', 'beneath', 'it', 'is', 'included', '.', '', '']\n", "['', 'this', 'was', 'the', 'first', 'device', 'that', 'converted', 'electrical', 'energy', 'into', 'mechanical', 'energy', 'in', 'the', 'form', 'of', 'continuous', 'mechanical', 'motion', ',', 'in', 'this', 'case', ',', 'the', 'moving', 'of', 'a', 'bell', '', 'back', 'and', 'forth', 'between', 'two', '', 'charged', 'bells', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'some', 'cuts', ',', 'the', 'film', 'ends', 'with', 'a', '', 'on', 'steve', '', \"'s\", 'face', 'following', 'his', '', 'loss', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'commented', 'in', '2', '0', '1', '7', 'that', 'though', 'he', 'did', 'not', 'initially', '', 'of', 'gibran', \"'s\", 'business', ',', 'gibran', \"'s\", 'company', 'ended', 'up', 'being', 'valued', 'higher', 'than', 'his', 'furniture', 'company', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', '', ':', '``', '', '', \"''\", ')', 'is', 'a', 'commune', 'in', 'the', '', 'department', 'in', '', 'in', 'central', 'france', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'also', '', 'the', 'organization', 'of', 'the', '', '', 'and', 'the', '', 'nationale', 'for', 'the', 'under-', '1', '5', 'and', 'under-', '1', '3', 'club', 'teams', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'beet', \"'s\", 'elder', 'brother', 'and', 'is', 'considered', 'to', 'be', 'one', 'of', 'the', '', '', 'of', 'all', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'qing', 'was', 'aware', 'of', 'this', 'and', 'occasionally', 'used', 'to', 'suspend', 'the', 'trade', 'to', '', 'pressure', 'on', 'the', 'russian', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'initial', 'order', 'was', 'for', '1', '0', '0', 'as', '.', '1', 'aircraft', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'each', 'episode', 'followed', 'josh', 'and', 'chuck', 'inside', 'and', 'outside', 'the', 'recording', 'booth', ',', '', 'the', '', 'information', 'of', 'their', 'podcast', 'with', '', ',', 'fictional', 'story', 'lines', 'that', '', 'with', 'each', 'podcast', 'topic', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'interim', 'period', ':', 'during', 'his', '', 'year', 'at', '', '', 'was', 'elected', 'national', 'ffa', 'president', ',', 'a', 'full-time', 'position', 'that', 'required', 'him', 'to', 'take', 'a', '', 'leave', 'from', 'his', 'formal', 'education', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'retired', 'as', 'a', 'blades', 'chief', 'executive', 'in', '1', '9', '9', '6', 'but', '3', 'years', 'later', 'he', 'returned', 'to', 'the', '', 'as', 'chairman', 'of', 'the', 'club', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'blood', '', 'took', 'place', 'in', '', 'regions', 'at', 'initiative', 'of', 'the', 'health', 'ministry', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'the', 'philippines', \"'\", 'fourth', 'time', 'to', 'host', 'the', 'games', ',', 'and', 'its', 'first', 'since', '2', '0', '0', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', '', 'to', 'one', 'of', 'the', 'sons', 'of', 'his', '``', '', \"'s\", 'army', \"''\", '', 'ian', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'boys', \"'\", '', 'finished', 'with', 'second', 'place', ',', '', 'placed', 'third', 'and', 'girls', \"'\", '', 'finished', 'as', 'state', 'champions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'were', '5', ',', '1', '6', '6', 'housing', 'units', 'at', 'an', 'average', 'density', 'of', '4', '1', '0', '.', '4', 'per', 'square', 'mile', '(', '1', '5', '8', '.', '4', '/km', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'whilst', 'at', 'albany', 'prison', ',', '', 'requested', 'political', 'status', ';', 'this', 'was', 'refused', ',', 'and', 'he', 'was', 'then', 'put', 'in', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mann', 'held', 'that', 'disease', 'is', 'not', 'to', 'be', 'regarded', 'as', 'wholly', 'negative', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'contains', 'orange', ',', 'olive', ',', '', ',', '', ',', '', ',', '', ',', '', 'and', '', 'trees', ',', 'along', 'with', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'also', 'recognized', '', '', 'are', 'flash', '', 'and', 'flash', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'convention', 'of', '', 'in', 'the', 'fall', 'of', '1', '9', '1', '4', ',', 'the', 'winning', 'revolutionary', '', 'were', 'unable', 'to', 'agree', ',', 'and', 'a', 'civil', 'war', 'ensued', 'between', 'the', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'therefore', ',', 'on', 'february', '1', '0', ',', 'she', 'launched', 'an', 'online', 'campaign', 'named', '``', '', 'for', 'sisters', 'fighting', 'the', 'virus', ',', \"''\", 'which', 'called', 'attention', 'from', 'the', 'public', 'for', 'the', 'need', 'for', 'sanitary', 'pads', 'in', 'hubei', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'foot', 'of', 'the', 'mountain', \"''\", ',', 'was', 'released', 'exclusively', 'as', 'a', 'download', 'single', 'in', 'selected', 'territories', 'of', 'mainland', 'europe', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '2', '3', ',', 'fearing', 'that', 'the', 'western', 'powers', 'would', 'create', 'a', 'free', 'state', ',', '', 'took', 'control', 'of', 'the', 'region', 'and', ',', 'as', 'part', 'of', 'larger', 'regional', 'negotiations', ',', 'incorporated', 'the', 'region', 'into', 'the', 'state', 'of', 'lithuania', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'asked', 'if', 'he', 'thought', 'shepherd', 'was', 'an', 'honest', 'man', '?', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'as', 'is', 'found', 'in', 'patients', 'less', 'than', '5', '0', 'years', 'old', 'it', 'is', 'termed', 'arcus', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'game', 'differs', 'from', 'most', '', 'of', 'the', 'time', 'in', 'its', 'distribution', 'of', 'units', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'arrangement', 'is', 'only', 'used', 'on', 'very', 'small', 'locomotives', '(', 'e.g', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'finding', 'of', 'arcus', '', 'in', 'combination', 'with', '', 'in', 'younger', 'men', 'represents', 'an', 'increased', 'risk', 'for', '', 'disease', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'latif', 'moved', 'from', 'ed', '', 'to', '', 'c.', '1', '9', '0', '0', ',', 'he', 'was', 'able', 'to', 'find', 'support', 'from', 'his', 'maternal', 'uncle', ',', '', 'abd', 'allah', ',', 'who', 'his', 'mother', 'had', 'connected', 'him', 'with', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', '1', '6', '0', ',', 'known', 'as', '', '(', '', ')', ',', 'was', 'the', 'first', 'soviet', '', 'jet', 'fighter', 'research', 'prototype', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'breeding', 'takes', 'place', 'in', 'permanent', 'pools', 'and', 'small', 'streams', ';', 'the', 'egg', '', 'are', 'attached', 'to', 'vegetation', 'in', 'the', 'water', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'rural', 'barrio', 'located', 'in', 'the', 'northeastern', 'section', 'of', 'the', 'municipality', ',', 'northeast', 'of', 'the', 'city', 'of', '', 'at', 'latitude', '1', '8', '.', '1', '0', '6', '1', '7', '8', 'n', ',', 'and', '', '-', '6', '6', '.', '5', '9', '5', '9', '8', '6', 'w', '.', '', '', '']\n", "['', 'in', '2', '0', '1', '0', ',', '', '', 'mike', '', 'claimed', 'that', 'npf', 'had', 'an', 'even', '', 'presence', 'in', 'montreal', 'than', 'in', 'ontario', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'play', 'in', 'the', '', '', 'national', ',', 'which', 'is', 'the', 'highest', 'league', 'in', '', 'football', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'person', 'should', 'not', 'be', 'a', 'secretary', 'or', '', 'of', 'state', ',', 'attorney', 'general', ',', 'or', 'governor', 'of', 'a', 'state', 'at', 'least', '6', 'months', 'prior', 'to', 'the', 'election', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'named', 'one', 'of', 'the', 'seven', '', 'of', 'ukraine', 'on', '2', '1', 'august', '2', '0', '0', '7', ',', 'based', 'on', 'voting', 'by', 'experts', 'and', 'the', 'internet', 'community', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'his', 'death', ',', 'he', 'was', 'brought', 'to', '', 'and', 'buried', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'junior', 'technical', 'high', 'school', 'was', 'added', 'in', 'the', '1', '9', '5', '0', 's', ',', 'with', 'the', 'technical', 'school', 'becoming', 'a', 'senior', 'technical', 'high', 'school', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'johnson', 'struggled', 'to', 'score', ',', 'while', 'tallon', 'did', 'so', '', 'in', 'the', 'last', 'hour', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'life', 'awarded', '``', 'super', 'blood', 'hockey', \"''\", 'a', 'score', 'of', '6', 'out', 'of', 'ten', ',', 'saying', '``', '', 'blood', 'hockey', \"''\", 'is', 'an', '', 'sports', 'game', ',', 'but', 'not', 'necessarily', 'one', 'that', 'will', 'hold', 'your', 'attention', 'for', 'very', 'long', '.', \"'\", '', '', '', '', '', '', '', '']\n", "['', '', 'later', 'said', 'that', '', 'was', 'determined', 'to', 'establish', 'a', '', 'with', 'his', 'vice', 'presidential', 'candidate', ',', 'considering', 'san', 'francisco', 'mayor', '(', 'later', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'immediately', 'faced', 'the', 'problems', 'brought', 'on', 'by', 'an', 'economic', '', 'set', 'in', 'place', 'by', '', '', 'in', 'an', 'attempt', 'to', 'force', 'lithuania', 'back', 'under', 'control', 'of', 'the', '', 'ussr', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'then', 'it', 'cuts', 'to', '', 'scenes', 'depicting', 'the', '', 'muhammad', 'as', 'a', 'child', 'of', '', '', ',', 'a', '', ',', 'a', '', ',', 'a', '', ',', 'a', 'child', '', ',', 'and', 'a', '', ',', '', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'clayton', 'decided', 'to', 'return', 'to', 'japan', 'after', 'discussions', 'with', 'his', 'family', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'many', '', 'vintage', 'shops', ',', 'used', 'book', 'stores', 'and', 'unique', 'gift', 'shops', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'the', 'four', 'kingdoms', 'subsequently', 'expanded', 'and', 'covered', 'the', 'entire', 'north', 'maluku', 'region', '(', 'as', 'now', 'defined', ')', 'and', 'parts', 'of', '', 'and', 'new', 'guinea', ',', 'the', 'area', 'of', 'expansion', 'was', 'originally', 'not', 'included', 'in', 'the', 'term', 'maluku', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'each', 'episode', 'featured', 'celebrity', 'guests', '(', 'often', '', 'other', '', 'personalities', ')', ',', 'recurring', 'segments', ',', 'comedy', '', 'and', 'games', 'for', 'its', 'young', 'audience', 'members', ',', 'with', 'old', '', '', 'and', 'max', '', '', '', 'out', 'the', 'program', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'number', 'of', 'modern', 'aircraft', 'types', 'are', 'designed', 'primarily', 'for', '', 'bombing', ',', 'but', 'air', 'forces', 'no', 'longer', 'refer', 'to', 'them', 'as', 'night', 'bombers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'court', 'of', 'appeal', 'considered', '``', 'williams', 'v', '', '', \"''\", 'and', 'decided', 'that', 'the', 'principle', 'should', 'not', 'be', 'extended', 'to', 'part', 'payment', 'of', 'debts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'september', '2', '8', ',', 'the', 'leaders', 'of', 'paris', 'sent', 'a', 'delegation', 'to', 'the', 'king', 'asking', 'him', 'to', 'return', 'to', 'the', 'city', ',', 'and', 'refused', 'to', 'pay', 'or', 'feed', 'the', 'soldiers', 'of', 'condé', 'camped', 'in', 'the', 'city', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'train', 'service', 'is', 'also', 'available', 'from', '', ',', 'new', 'york', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'is', 'also', 'a', 'first', 'phase', 'in', 'the', 'designing', 'work', 'of', 'michael', '', ',', 'during', 'which', 'he', 'will', 'prove', 'a', '', 'supporter', 'of', 'functional', '', ',', 'characteristic', 'for', 'the', 'so-called', ',', 'industrial', 'modernism', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'product', 'is', 'not', 'intended', 'to', '', ',', 'treat', ',', '', 'or', 'prevent', 'any', 'disease', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'body', 'was', 'discovered', 'in', 'a', 'parking', 'lot', 'in', '', 'two', 'hours', 'after', 'she', 'disappeared', 'on', 'the', 'way', 'home', 'from', 'a', 'downtown', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'following', 'table', 'lists', 'nodes', 'of', 'the', 'traditional', 'family', 'tree', 'that', 'are', 'recognized', 'in', 'some', '', 'sources', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'have', 'been', 'over', '5', '0', 'concerts', 'to', 'date', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'though', 'james', 'left', 'his', 'whole', 'estate', 'to', 'his', 'wife', ',', 'and', 'named', 'her', 'as', '``', 'the', 'sole', '', \"''\", 'of', 'his', 'will', ',', 'the', 'new', 'york', 'times', 'from', '1', '3', ',', 'march', '1', '9', '1', '5', 'also', 'states', 'that', '``', 'mr.', 'creelman', 'left', 'no', 'real', 'estate', \"''\", '.', '', '']\n", "['', 'this', 'has', 'not', 'been', 'studied', 'in', 'depth', 'yet', ',', 'but', 'the', 'ideas', 'brought', 'about', 'through', 'this', 'forum', 'appear', 'to', 'be', 'fairly', 'consistent', 'with', 'already', 'existing', 'research', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'anyway', ',', 'dennis', 'is', '', ',', 'and', 'returns', 'to', 'the', 'netherlands', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'joined', 'the', 'kerry', 'minor', 'team', 'in', '1', '9', '9', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'around', '1', '5', '0', '0', ',', 'jews', 'found', 'relative', 'security', 'and', 'a', '', 'of', '', 'in', 'present-day', 'poland', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'both', 'characters', 'are', 'resistant', 'in', 'joining', 'the', '', 'allegiance', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'sharpe', \"'s\", '', \"''\", ',', 'which', 'takes', 'place', 'after', '``', 'sharpe', \"'s\", 'waterloo', \"''\", ',', 'is', 'set', 'in', '', 'providing', 'a', '', 'of', 'sharpe', \"'s\", 'life', 'in', 'normandy', 'with', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'wrote', 'the', 'lyrics', ',', 'which', 'to', 'some', 'degree', 'are', 'influenced', 'by', 'his', 'divorce', 'from', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'went', 'on', 'to', 'win', 'the', 'second', 'stage', ',', 'but', 'lost', 'over', 'half', 'an', 'hour', 'to', '', 'in', 'the', 'fourth', 'stage', ';', 'winning', 'the', 'seventh', 'stage', 'had', 'seen', '', 'recover', 'to', 'sixth', 'place', 'before', 'engine', 'and', '', 'problems', 'during', 'the', 'ninth', 'stage', '', 'his', 'retirement', '.', '', '', '']\n", "['', 'a', '', 'releasing', 'agent', '(', '', ')', ',', 'also', 'known', 'as', 'an', '', 'releasing', 'agent', ',', 'is', 'a', '', 'type', 'of', 'drug', 'which', 'induces', 'the', 'release', 'of', '', '(', '', ')', 'and', '', '(', '', ')', 'from', 'the', '', 'neuron', 'into', 'the', '', '.', '', '', '', '', '', '']\n", "['', 'as', 'part', 'of', 'an', 'inquiry', 'before', 'the', 'house', 'of', 'representatives', ',', 'michael', 'shiner', 'was', 'summoned', 'to', 'give', 'testimony', 'regarding', 'a', 'road', 'contract', 'that', 'he', 'had', 'won', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'remains', 'are', 'among', 'the', 'fossils', 'that', 'have', 'been', 'recovered', 'from', 'the', 'late', '', 'portion', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'time', 'of', 'the', '2', '0', '1', '1', 'census', 'there', 'were', '2', '5', '2', 'people', 'usually', 'resident', 'on', 'the', 'island', ',', 'an', 'increase', 'of', '8', '%', 'on', 'the', 'figure', 'of', '2', '3', '3', 'for', '2', '0', '0', '1', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'distinct', 'feature', 'of', 'the', 'pm', '-atpase', 'not', 'observed', 'in', 'other', '', '', 'is', 'the', 'presence', 'of', 'a', 'large', '', 'in', 'the', 'transmembrane', 'domain', 'formed', 'by', 'm', '4', ',', 'm', '5', 'and', 'm', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '2', ',', 'thomas', 'created', 'one', 'of', 'the', 'winning', 'entries', '-', 'a', 'salad', 'of', '', ',', 'black', 'beans', ',', 'and', 'corn', '-', 'in', 'the', 'first', 'white', 'house', 'kids', \"'\", 'state', '', ',', 'hosted', 'by', '', 'obama', 'as', 'part', 'of', 'her', '``', 'let', \"'s\", 'move', '!', \"''\", '']\n", "['', '', 'college', 'students', 'gave', 'a', '', 'reaction', 'to', 'his', '', 'message', ',', 'displaying', 'signs', 'such', 'as', '``', 'god', 'is', 'alive', 'and', 'thinks', 'he', \"'s\", 'george', 'romney', \"''\", 'and', '``', 'up', 'with', '', 'minds', ',', 'down', 'with', 'romney', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'later', 'was', 'renamed', 'as', '4', '2', 'survey', 'engineer', 'regiment', 'on', '3', '1', 'august', '1', '9', '4', '8', 'and', 'was', 'based', 'near', 'raf', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', '2', '0', '0', '9', 'nfl', 'season', ',', '', 'was', 'signed', 'to', 'the', 'green', 'bay', '', 'practice', 'squad', 'for', 'the', 'final', 'five', 'weeks', 'of', 'the', '2', '0', '0', '9', 'nfl', 'season', 'and', 'then', 'to', 'a', '', 'contract', 'after', 'the', 'season', 'ended', '.', '', '', '', '', '', '', '']\n", "['', 'this', 'time', ',', 'it', 'was', 'extended', 'northward', 'to', 'wis', '8', '0', 'south', 'of', '', ',', '', 'county', '', 'highway', 'q', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'shortly', 'before', 'the', 'release', 'of', 'mac', 'os', 'x', 'tiger', ',', 'the', 'computer', '', '', ',', 'inc.', 'filed', 'a', '', 'against', 'apple', ',', '', 'that', 'apple', '', '', \"'s\", 'trademark', 'with', 'the', 'mac', 'os', 'x', 'tiger', 'operating', 'system', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'park', 'comprises', 'and', 'is', 'situated', 'on', 'the', 'left', 'bank', 'of', '', '', 'and', 'south', 'of', '', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'the', 'number', 'of', 'fair', 'trade', 'towns', 'is', 'increasing', ',', 'the', 'task', 'of', 'becoming', 'one', 'is', 'not', 'without', 'its', 'challenges', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'points', 'for', 'flower', '', '(', 'each', 'flower', 'is', 'worth', 'one', 'point', ')', 'may', 'not', 'be', 'added', 'until', 'the', 'player', 'has', 'scored', 'eight', 'points', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'production', '', 'is', '', 'job', 'performance', 'that', 'is', 'done', 'on', 'purpose', ',', 'such', 'as', 'doing', '', 'incorrectly', 'or', '', 'of', 'effort', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'tickets', 'for', 'these', 'shows', 'initially', 'went', 'on', 'pre-sale', 'for', 'the', 'official', 'website', 'members', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'parker', '(', 'née', '', ';', 'born', '1', '9', '3', '2', ',', '', ',', 'devon', ')', 'is', 'an', '', 'and', 'author', 'who', ',', 'often', 'in', 'partnership', 'with', 'her', 'husband', '', 'parker', ',', 'has', 'written', 'many', 'popular', 'and', '', 'books', 'on', '', '.', '', '', '', '', '', '', '', '']\n", "['', 'he', 'presented', 'the', 'plan', 'to', 'lifemark', ',', 'but', 'the', 'company', 'was', 'unable', 'to', 'act', 'on', 'it', 'due', 'to', 'a', 'company', 'merger', 'that', 'was', 'already', '', 'with', 'american', 'medical', 'international', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'said', 'he', '', 'such', 'an', 'international', 'as', 'merging', 'political', ',', 'trade', 'union', ',', 'and', 'cultural', 'activities', 'into', 'a', 'single', 'organisation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rhodesia', 'introduced', 'the', 'brown', '', 'as', 'a', 'new', 'colour', 'for', 'specialist', '', ',', 'for', 'use', 'of', 'the', '', 'scouts', ',', 'which', 'has', 'since', 'been', 'used', 'for', 'specialist', 'units', 'in', 'the', 'finnish', 'and', 'brazilian', 'forces', ',', 'and', 'with', 'the', 'new', 'zealand', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'cluster', 'can', 'be', 'spotted', 'with', '7', 'x', '5', '0', '', 'and', 'with', 'a', '4', '', 'telescope', 'the', 'cluster', 'can', 'be', 'resolved', 'in', '3', '0', 'stars', 'in', 'a', '', 'direction', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'occasionally', 'referred', 'to', 'as', '', 'in', 'historical', 'literature', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'can', 'also', 'be', 'used', 'to', 'measure', 'bone', '', ',', 'and', 'are', 'considered', 'highly', 'reliable', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'massmutual', \"'s\", 'profit', 'in', '2', '0', '0', '5', 'rose', 'from', '$', '7', '5', '3', 'million', 'to', '$', '8', '1', '0', 'million', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'observed', 'a', 'very', 'stable', 'neutral', '', 'intermediate', 'in', 'the', 'reaction', 'of', '``', 'n', \"''\", '', 'with', '', 'compounds', ',', 'followed', 'by', '', 'with', '', 'chloride', 'producing', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'richard', '', '(', ')', '(', 'born', 'october', '1', '3', ',', '1', '9', '6', '1', ')', 'is', 'an', 'american', 'writer', 'and', 'actor', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'soon', ',', 'judge', '', '', 'rosales', 'started', 'receiving', 'offers', 'of', 'money', 'and', 'threats', 'to', 'his', 'life', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'day', 'after', 'the', '', ',', 'speicher', 'was', 'placed', 'on', '', 'status', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'knighted', 'in', 'the', '1', '9', '0', '2', '', 'honours', ',', 'receiving', 'the', '', 'from', 'king', 'edward', 'vii', 'at', '', 'palace', 'on', '2', '4', 'october', 'that', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '2', '0', '1', '1', 'was', 'held', 'in', '', 'from', '3', '1', 'october', 'to', '2', 'november', '2', '0', '1', '1', 'under', 'the', 'theme', '``', '', 'energy', ':', 'converting', '', 'into', 'power', 'houses', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'that', \"'s\", 'just', 'what', 'you', 'are', \"''\", 'was', 'originally', 'intended', 'to', 'have', 'been', 'released', 'as', 'a', '', 'single', ',', 'but', 'this', 'did', 'not', 'come', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'della', '', 'borders', 'the', 'following', 'municipalities', ':', '', ',', '', '', ',', '', '', ',', '', ',', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'organized', 'into', 'four', 'business', 'areas', ',', 'serving', 'both', 'external', 'customers', 'and', '', ',', 'to', 'other', 'units', 'in', 'the', 'company', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', '', ')', 'and', '', '(', '', ')', 'regions', 'were', '', 'and', 'by', 'the', 'end', 'of', 'august', '1', '9', '4', '6', ',', 'near', 'ten', 'thousand', 'bandits', 'were', 'killed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ionotropic', 'glutamate', 'receptors', 'can', 'include', '', ',', '', ',', 'and', '', 'receptors', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thomas', 'is', 'dropped', 'in', 'the', 'wake', 'of', 'the', '', 'and', 'returns', '', 'return', 'to', 'the', 'home', 'farm', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'cj', '', 'was', 'established', 'as', 'a', 'result', 'of', 'the', 'merger', 'of', 'two', 'cj', 'group', '', ',', 'cj', 'e', '&', 'amp', ';', 'm', 'and', 'cj', 'o', 'shopping', 'respectively', ',', 'in', 'july', '2', '0', '1', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'taken', 'prisoner', 'near', 'the', 'end', 'of', '1', '8', '1', '3', 'and', 'later', 'released', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'the', 'network', 'then', 'went', '', '', ',', 'due', 'to', 'increasing', 'road', 'traffic', ',', 'corruption', 'and', 'political', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'council', 'is', 'divided', 'up', 'into', '2', '5', 'wards', ',', '', '3', '7', 'councillors', ',', 'since', 'the', 'last', 'boundary', 'changes', 'in', '1', '9', '9', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'example', 'is', 'the', '', 'of', '', '', 'of', '', '', 'vinyl', '', 'reported', 'by', 'the', '', 'research', 'group', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'jordaan', 'claimed', 'that', 'the', 'criminal', 'charges', 'had', 'been', '', 'by', 'his', 'professional', 'rival', '', 'khoza', ',', 'and', 'said', 'khoza', 'had', 'paid', 'for', 'ferguson', \"'s\", 'flight', 'to', 'south', 'africa', 'to', 'lay', 'the', 'complaint', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'a', '', 'application', 'of', 'the', 'code', 'the', '', 'name', 'author', 'string', 'components', '``', 'genus', \"''\", ',', '``', 'species', \"''\", 'and', '``', 'year', \"''\", 'can', 'only', 'have', 'one', 'combination', 'of', 'characters', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'way', 'and', 'the', 'peak', 'district', 'boundary', 'walk', 'run', 'across', 'the', '', '(', 'following', 'the', 'same', 'route', 'between', '', 'and', '', 'reservoirs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'introduced', ',', 'the', 'sr', '2', 'was', 'the', 'fastest', 'and', 'most', 'powerful', 'locomotive', 'of', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'nevertheless', 'the', 'action', 'remains', 'a', '', '', 'of', 'arms', 'for', 'the', 'french', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', '', 'may', 'include', 'indonesia', ',', 'new', 'guinea', 'and', 'many', 'pacific', 'islands', ',', 'which', 'the', '', 'divides', 'between', '4', '', 'and', '6', 'pacific', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'he', 'won', 'three', 'separate', 'science', 'fair', 'awards', 'during', 'this', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'new', 'regulation', 'allowed', 'the', 'emergence', 'of', 'dark', 'pools', 'through', 'the', '1', '9', '8', '0', 's', 'that', 'allowed', 'investors', 'to', 'trade', 'large', 'block', 'orders', 'while', 'avoiding', 'market', 'impact', 'and', 'giving', 'up', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'five', 'of', 'them', 'are', 'vulnerable', ',', 'seven', 'are', 'near', 'threatened', ',', 'one', 'is', '', ',', 'and', 'one', 'is', 'introduced', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'gong', 'later', 'won', 'best', 'actress', 'for', 'tv', 'at', 'the', '', 'arts', 'awards', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', '', 'production', 'took', '', 'and', 'engine', '', 'problems', 'continued', ',', 'production', 'was', 'delayed', ';', 'the', 'bomber', 'was', 'first', '', 'in', 'october', '1', '9', '3', '8', 'and', 'should', 'have', 'been', 'available', 'almost', 'immediately', ',', 'it', 'was', 'not', 'until', 'november', '1', '9', '3', '9', 'that', 'production', 'started', 'in', '', '.', '']\n", "['', 'already', 'from', 'the', '8', 'th', 'century', ',', 'it', 'was', 'the', 'centre', 'of', 'the', 'namesake', 'theme', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'term', 'is', 'most', 'often', 'used', 'in', 'a', '', 'context', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'al', 'jean', '', ':', '``', 'that', 'was', 'specifically', 'done', 'to', 'make', 'people', 'really', 'mad', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'schmidt', 'argued', 'that', 'teachers', 'of', '', 'tradition', 'who', 'teach', 'on', 'this', '', '``', 'without', 'drawing', 'attention', 'to', 'the', 'property', 'concept', 'of', 'woman', \"''\", '``', 'might', '[', 'be', ']', '...', 'unknowingly', 'contributing', 'to', 'sexual', 'inequality', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'wave', '', 'of', 'at', 'least', 'is', 'needed', 'to', '', '', ',', 'so', 'ice', 'volcanoes', 'are', '', 'active', 'without', '', 'winds', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'singapore', \"'s\", 'founding', 'father', 'lee', '', '', 'and', 'his', 'son', ',', 'current', 'prime', 'minister', 'lee', '', '', ',', 'were', '', 'and', '', 'chinese', '', 'of', '', 'descent', ',', 'respectively', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'daley', 'was', 'admitted', 'to', 'the', 'bar', 'in', '1', '9', '4', '6', ',', 'and', 'practiced', 'in', 'newport', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '3', ',', '', 'directed', 'his', 'first', 'film', ',', 'teens', '(', 'based', 'on', 'an', 'engineering', '', 'campus', 'subject', ')', 'mostly', 'with', 'new', 'actors', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'september', '2', '0', '1', '3', ',', 'the', 'project', 'was', 'handed', 'over', 'to', 'a', 'community', 'interest', 'company', 'called', '``', '', '', '', 'wildlife', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'among', 'others', 'he', 'coached', '', '', 'winning', 'the', 'olympic', 'gold', 'medal', 'and', '', '', 'the', 'silver', 'medal', 'at', 'the', '1', '9', '8', '0', 'winter', 'olympics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', '', 'he', 'was', 'assisted', 'by', 'a', 'military', 'council', ',', 'made', 'up', 'of', 'such', 'noted', 'soldiers', 'as', 'the', '', 'knight', 'sir', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '9', ',', 'the', 'blades', 'folded', 'less', 'than', '2', '0', 'games', 'into', 'the', '1', '9', '6', '8', '-', '6', '9', '', 'junior', 'c', 'season', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '5', '5', 'various', 'native', 'american', 'leaders', 'in', 'washington', 'state', 'had', 'signed', 'treaties', 'with', 'territorial', 'governor', 'isaac', 'stevens', ',', '', 'their', 'lands', 'to', 'the', 'federal', 'government', 'and', '', 'to', 'move', 'into', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'and', 'then', 'divisions', '(', 'military', ',', 'civil', ',', '``', 'etc', '.', \"''\", ')', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'has', 'composed', 'music', 'for', 'songs', ',', 'and', 'has', 'composed', 'background', 'scores', 'for', 'studio', 'album', 'recordings', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'second', 'volume', 'of', 'short', 'stories', ',', '``', 'on', 'the', 'hill', 'of', 'roses', \"''\", '(', 'na', '', '', ')', ',', 'was', 'published', '9', 'years', 'later', ',', 'and', 'received', 'modest', 'critical', 'approval', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'a', 'brief', 'period', 'after', 'the', 'institution', 'was', 'shut', 'down', ',', 'a', 'few', 'buildings', 'were', 'used', 'by', '', 'township', 'for', 'offices', 'as', 'well', 'as', 'a', 'police', 'station', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'a', '', 'revival', 'meeting', 'in', '', 'county', ',', 'tennessee', 'during', '1', '8', '8', '6', 'the', 'movement', '', 'with', 'the', 'formation', 'of', 'the', 'christian', 'union', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'north', 'of', 'this', 'crossing', ',', 'the', 'freeway', 'passes', 'into', '', 'county', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'filming', 'started', 'in', 'march', '2', '0', '1', '2', 'and', 'is', 'set', 'to', 'release', 'on', '2', '2', 'february', '2', '0', '1', '9', 'under', 'the', 'title', 'of', '``', 'total', 'dhamaal', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'genus', 'of', 'moths', 'in', 'the', 'family', 'erebidae', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', \"n't\", 'until', '6', '0', '0', '-', '4', '0', '0', 'bc', ',', 'after', 'the', 'decline', 'of', 'the', '', '', ',', 'where', 'greek', 'representation', 'begins', 'of', '', 'male', 'gods', 'claiming', 'the', '', 'and', '', 'for', 'their', 'own', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'to', 'secure', 'a', 'route', 'to', 'gujarat', \"'s\", 'trading', 'ports', ',', '', '', '', 'was', 'sent', 'to', 'conquer', 'the', '', 'kingdom', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'zimbabwe', 'refused', 'to', 'respond', 'to', 'ethiopia', \"'s\", '', 'request', 'for', '', ',', 'which', 'permitted', 'him', 'to', 'avoid', 'a', 'life', 'sentence', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'allan', '', ',', 'who', 'played', '', '', ',', 'recalled', 'to', '', '', 'that', '``', 'in', 'my', '', 'years', 'of', 'acting', ',', 'i', 'never', 'remember', 'a', 'greater', 'triumph', 'than', '[', 'that', ']', 'first', 'night', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'margaret', 'beaufort', ',', 'was', 'the', 'daughter', 'and', 'only', 'child', 'of', 'john', 'beaufort', ',', '1', 'st', 'duke', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'food', 'processing', ',', 'tobacco', ',', '', 'and', '', 'were', 'the', 'main', '', 'of', 'the', 'industry', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'cd', \"'s\", 'with', 'music', 'of', '', '', 'were', 'released', 'by', 'the', 'cd', 'labels', 'deutsche', '', '(', '``', 'the', 'horses', 'of', 'saint', 'mark', \"''\", 'by', 'no', 'borders', 'orchestra', ')', ',', '', 'records', '(', 'uk', ')', ',', '', 'records', '(', 'serbia', ')', ',', '', '(', 'germany', ')', ',', 'etc', '.', '']\n", "['', 'she', 'sees', '', 'transform', 'from', 'a', '', 'into', 'herself', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'a', 'unit', \"'s\", 'morale', 'is', 'said', 'to', 'be', '``', '', \"''\", ',', 'it', 'means', 'it', 'is', 'close', 'to', '``', 'crack', 'and', 'surrender', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'allow', 'precise', 'control', 'of', 'both', 'magnitude', 'and', 'profile', 'of', 'the', 'shock', 'wave', 'through', '', 'to', 'the', '', \"'s\", '', 'velocity', 'and', 'density', 'profile', ',', 'respectively', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'button', 'and', 'alonso', 'were', 'classified', 'in', 'sixteenth', 'and', '', 'positions', 'respectively', ',', 'in', 'the', 'world', 'drivers', \"'\", 'championship', ',', 'while', '', 'was', 'not', 'formally', 'classified', ',', 'as', 'he', 'did', 'not', 'start', 'the', 'one', 'race', 'that', 'he', 'entered', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'september', '1', '7', ',', '1', '8', '5', '9', ',', 'abraham', 'lincoln', 'delivered', 'an', 'address', 'on', 'its', 'steps', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'has', 'been', 'found', 'more', 'effective', 'than', '', 'in', 'the', 'treatment', 'of', '', 'anxiety', 'disorder', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'event', 'was', 'also', 'attended', 'by', 'the', 'then', 'minister', 'for', 'justice', 'simon', 'hughes', 'mp', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'research', 'conducted', 'by', '', 'f.', 'young', ',', '', 'gabriel', ',', 'and', 'jordan', 'l.', '', 'in', '2', '0', '1', '3', 'showed', 'that', 'men', 'who', 'did', 'not', 'form', 'a', '', 'relationship', 'with', 'a', 'muscular', '', 'had', 'poor', '', 'and', 'felt', 'negative', 'about', 'their', 'bodies', 'after', '', 'to', 'the', 'muscular', 'character', '.', '']\n", "['', '', 'grew', 'up', 'in', 'the', 'borders', 'village', 'of', 'st', '', 'and', 'was', 'educated', 'in', 'kelso', 'at', 'kelso', 'high', 'school', 'and', 'in', 'edinburgh', 'at', 'royal', 'high', 'school', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'specific', 'date', 'for', 'the', 'origin', 'of', 'life', 'has', 'not', 'been', 'determined', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'aftermath', 'of', 'the', 'fourth', '', ',', 'the', 'town', 'came', 'under', '', 'rule', ',', 'and', 'was', 'known', 'as', '``', '', \"''\", ',', '``', '', \"''\", ',', '``', '', \"''\", ',', 'and', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'jpeg', '2', '0', '0', '0', 'is', 'much', 'more', 'complicated', 'in', 'terms', 'of', '', '', 'in', 'comparison', 'with', 'jpeg', 'standard', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'cabinet', 'of', '', '', 'was', 'formed', 'on', '3', '0', 'november', '2', '0', '1', '7', ',', 'following', 'the', '2', '0', '1', '7', 'parliamentary', 'election', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'corps', 'was', 'renamed', 'shanghai', '', 'district', 'spring', 'thunder', '', 'factory', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'may', '2', '0', '1', '8', ',', '', 'was', '', 'as', 'the', 'liberal', 'candidate', 'in', 'the', '', 'range', 'by-election', 'on', '2', '3', 'june', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', '', 'ex', '', \"''\", '(', '``', 'of', 'the', 'father', \"'s\", 'heart', 'begotten', \"''\", ')', 'by', 'the', 'spanish', 'poet', '', '(', 'd.', '4', '1', '3', ')', 'is', 'still', 'sung', 'in', 'some', 'churches', 'today', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", '', '', 'applications', 'are', 'built', 'on', 'top', 'of', 'its', '', 'developed', 'platform', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'in', 'this', 'episode', 'are', 'show', '', '', '', 'and', '', 'actor', 'aaron', 'paul', '(', 'jesse', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'passenger', 'numbers', 'increased', 'to', '1', '2', '.', '9', 'million', 'in', '2', '0', '1', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '3', '0', 'august', '1', '9', '7', '0', ',', 'he', '', 'in', 'a', '``', '', \"''\", 'condition', 'their', 'home', 'on', 'via', '', 'and', 'asked', 'the', 'servants', 'not', 'to', '', 'him', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', '', 'with', 'a', 'rear', 'wing', 'and', 'flat', 'roof', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'hit', 'his', 'first', 'mlb', 'home', 'run', 'on', 'june', '2', '6', ',', '2', '0', '1', '6', ',', 'off', 'rangers', 'pitcher', 'martin', 'pérez', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'we', \"'ll\", 'miss', 'having', 'him', 'on', 'the', 'road', 'with', 'us', ',', 'but', 'as', 'his', 'brothers', 'and', '', 'we', 'respect', 'his', 'decision', 'and', 'are', 'looking', 'forward', 'to', 'getting', 'out', 'there', 'and', 'playing', 'for', 'the', 'fans', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'album', 'received', 'high', 'ratings', ',', 'and', 'it', 'was', 'a', 'fan', 'favorite', 'album', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'production', 'started', 'with', 'the', 'assembly', 'of', 'the', '', 'model', 'trucks', ',', 'imported', 'from', 'its', 'mexican', 'headquarters', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'california', 'was', 'admitted', 'as', 'a', 'state', 'on', 'september', '9', ',', '1', '8', '5', '0', ',', 'and', 'was', 'initially', 'divided', 'into', 'two', 'districts', ',', 'the', 'northern', 'and', 'the', 'southern', ',', 'by', 'act', 'of', 'congress', 'approved', 'september', '2', '8', ',', '1', '8', '5', '0', ',', '9', '', '.', '', '', '', '']\n", "['', 'in', 'popular', 'culture', ',', 'the', 'children', \"'s\", 'movie', '``', 'the', 'little', '', \"''\", 'depicted', 'one', 'of', 'the', '', ',', '', ',', 'wearing', 'a', 'pair', 'of', 'these', 'shoes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'many', 'species', 'it', 'is', 'initiated', 'by', 'an', 'increase', 'in', 'the', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'wu', '', 'was', 'born', 'to', 'a', '', 'family', 'in', '', ',', '', 'province', '(', 'today', '', ')', ',', 'on', 'november', '2', '3', ',', '1', '8', '6', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'showed', '', 'facing', 'right', ',', 'her', 'left', 'and', 'resting', 'on', 'a', 'shield', 'and', 'right', 'hand', 'holding', 'a', '', ',', 'with', 'a', 'sun', 'in', 'the', 'upper', 'right', 'corner', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'transfer', 'was', 'widely', 'seen', 'as', 'a', 'move', 'by', 'thatcher', 'to', '', 'prior', ',', 'who', 'disagreed', 'with', 'her', 'on', 'a', 'number', 'of', 'economic', 'issues', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'nancy', '', \"'s\", '', 'sculpture', '``', 'big', 'edge', \"''\", 'is', 'displayed', 'at', 'the', 'entrance', 'of', 'the', 'hotel', 'and', 'an', 'painting', 'by', 'frank', '', '', 'above', 'the', 'registration', 'desk', 'in', 'the', 'lobby', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'falling', 'for', 'about', '4', '0', 'm', ',', 'she', 'landed', 'on', 'an', '', 'of', 'a', '', ',', 'the', '', 'then', 'broke', ',', 'and', 'she', 'fell', 'onto', 'a', 'chair', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '', 'has', '', 'aspects', ',', 'since', 'the', 'gene', 'and', 'the', 'ability', 'to', '', 'electrons', 'are', '', 'by', 'sunlight', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'of', 'his', 'works', ',', 'only', 'liu', '', \"'s\", 'surrender', 'document', 'to', '', 'ai', 'and', 'one', 'other', 'essay', 'survive', ',', 'both', 'carried', 'in', 'the', 'base', 'text', 'of', 'the', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'ming', 'dynasty', 'drove', 'out', 'the', '', 'in', '1', '3', '6', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'discusses', 'the', 'film', 'in', 'his', 'short', 'essay', '``', 'is', 'it', 'worth', 'speaking', 'about', 'the', 'amateur', 'theater', '?', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'gondra', \"'s\", 'refusal', 'to', '', '', ',', 'gondra', 'himself', 'resigned', ',', 'due', 'to', 'the', 'emergence', 'of', 'a', 'split', 'in', '', \"'s\", 'armed', 'forces', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'legia', 'warsaw', 'ii', ',', 'in', 'poland', 'known', 'as', 'legia', 'ii', '', ',', 'is', 'a', 'polish', 'football', 'team', ',', 'which', 'serves', 'as', 'the', 'reserve', 'side', 'of', 'legia', 'warsaw', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'army', 'corps', 'from', '1', '1', 'august', '1', '9', '4', '2', 'exist', 'nine', '', '', 'with', 'total', 'of', '1', '2', ',', '4', '4', '0', 'persons', 'under', 'command', 'of', '', '', ',', 'however', 'according', 'to', 'same', 'record', 'only', 'about', '2', '6', '0', '0', 'persons', 'were', 'armed', '.', '', '', '', '', '']\n", "['', 'in', 'the', 'third', 'semi', ',', 'american', 'trials', 'champion', 'michael', '', 'and', '', 'green', 'separated', 'from', 'the', 'rest', 'of', 'the', 'field', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'four', '8', '0', 'east', 'began', 'as', 'a', 'studio', 'concept', ',', 'they', 'have', 'evolved', 'into', 'a', 'live', 'act', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '(', '2', '0', '1', '0', ')', 'investigated', 'the', 'role', 'of', '', 'on', '', '', '(', 'no', ')', 'production', ',', 'a', '', '', ',', 'in', '', '1', '3', '(', '', '', 'cells', 'from', 'an', '', '4', '0', '', 'mouse', ')', 'cells', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'when', '', 'returned', 'to', 'the', 'united', 'states', 'in', '1', '9', '0', '1', 'to', 'take', 'command', 'of', 'the', 'northern', 'division', 'of', 'department', 'of', 'the', 'missouri', ',', 'and', 'later', 'the', 'department', 'of', 'the', 'lakes', ',', 'wright', 'continued', 'to', 'serve', 'as', 'his', '', '.', '', '', '', '', '', '', '', '', '']\n", "['', '', 'dam', 'is', 'located', 'on', 'the', 'upper', 'reaches', 'of', 'the', '', ',', '', 'province', 'of', 'south', 'africa', 'and', 'is', 'the', 'main', 'source', 'of', 'water', 'for', 'the', '', 'transfer', 'scheme', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'administrative', 'center', 'is', 'the', 'urban', 'locality', '(', 'a', 'work', 'settlement', ')', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'and', 'maintenance', 'needed', 'by', 'the', 'canal', 'made', 'travel', 'difficult', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'locomotives', 'received', '', 'in', '1', '9', '4', '7', ',', 'which', 'were', 'installed', 'in', 'oslo', ',', 'and', '2', '0', '6', '4', 'was', 'delivered', 'on', '2', '4', 'may', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'de', '', 'was', 'also', 'sent', 'to', 'the', 'mongol', '', 'court', 'of', '', 'in', '1', '2', '9', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'floors', 'are', 'connected', 'by', 'a', '', 'narrow', '', 'staircase', 'only', 'in', 'width', 'located', 'in', 'the', 'northwest', 'corner', 'of', 'the', 'building', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'grew', 'to', 'believe', 'that', 'agricultural', 'efficiency', 'could', 'best', 'be', 'achieved', 'by', 'the', '', 'of', 'an', 'annual', 'land', 'tax', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', 'prize', ',', 'she', 'appeared', 'at', 'a', 'charity', 'concert', 'in', 'london', ',', 'where', 'her', 'potential', 'was', 'spotted', 'by', 'singer', 'adam', 'faith', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'male', 'and', 'female', 'animals', 'underwent', 'a', '', '', 'screen', 'to', 'determine', 'the', 'effects', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'to', 'be', '', 'in', 'their', 'inaugural', '1', '9', '6', '8', 'season', 'in', 'the', 'north', 'american', 'soccer', 'league', '(', '', ')', 'and', 'believed', 'it', '``', 'was', 'a', 'chance', 'too', 'good', 'to', 'miss', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'lee', 'released', 'a', '1', '4', '', 'album', 'titled', '``', 'my', 'biography', \"''\", 'in', '2', '0', '0', '8', ',', 'his', 'first', 'full-length', 'album', 'in', 'a', 'decade', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'famous', 'affair', 'of', 'the', 'diamond', 'necklace', 'made', 'history', 'in', 'france', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '9', ',', 'digital', '', \"'s\", '', '', 'included', 'mark', \"'s\", '', 'in', 'a', 'feature', 'about', 'the', '', '``', 'neighbours', \"''\", 'keep', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '(', '2', '0', '0', '0', ')', 'state', 'it', 'has', 'the', 'same', '', 'and', 'behaviour', 'as', 'other', 'races', ',', 'and', 'do', 'not', 'give', 'it', 'the', 'status', 'of', 'a', 'separate', '', ',', 'however', ',', 'collar', '&', 'amp', ';', 'robson', '(', '2', '0', '0', '7', ')', 'split', 'them', '.', '', '', '', '']\n", "['', 'his', 'popular', 'movies', 'are', '', ',', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '7', '3', ',', 'luxembourg', 'issued', 'a', 'set', 'of', '', 'depicting', 'images', 'of', 'religious', '', 'based', 'on', 'this', 'altarpiece', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'commissioner', '', 'was', 'invested', 'into', 'the', 'order', 'of', 'ontario', 'in', '2', '0', '0', '1', 'for', 'her', 'work', 'with', 'the', 'first', 'nations', 'communities', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'marie', ')', 'they', 'begin', 'to', 'associate', 'the', 'work', 'with', 'the', 'exact', 'part', 'of', 'a', 'woman', \"'s\", 'body', 'are', 'some', 'of', 'the', '', '', 'in', 'any', 'television', 'sitcom', 'in', 'history', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'different', 'forms', 'of', '', 'and', 'core', '', ',', '', 'pieces', ',', '', '', ',', '', 'and', '', ',', 'only', 'a', 'few', '', 'platforms', ',', 'just', 'one', '', 'platform', 'were', 'revealed', 'from', 'the', 'second', 'part', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'secretary', 'is', 'appointed', 'on', 'the', '', 'of', 'the', 'prime', 'minister', ',', 'with', 'the', 'current', 'secretary', 'being', '', '(', '', ')', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '2', '0', '1', '9', 'review', 'suggested', 'no', '', 'of', '', 'in', 'support', 'of', ',', 'or', 'against', ',', 'its', 'use', 'to', 'treat', 'individuals', 'with', '', '', 'disorder', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', '', '', 'carlin', ',', 'who', 'claimed', 'the', 'mirror', 'was', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'over', '1', '0', '0', 'people', 'protested', 'outside', 'parliament', 'on', '2', '4', 'march', '2', '0', '1', '0', ',', 'including', 'labour', 'mps', 'tom', 'watson', 'and', 'john', '', ',', 'liberal', 'democrat', 'prospective', 'parliamentary', 'candidate', '', 'fox', ',', 'and', 'writer', 'and', 'activist', '', '', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'line', 'which', 'inspired', 'the', 'title', 'reads', ':', '``', 'i', 'should', 'have', 'been', 'more', 'kind', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', 'born', '6', 'april', '1', '9', '9', '2', ')', 'is', 'an', 'indian', 'actor', 'who', 'has', 'worked', 'in', 'tamil', 'language', 'films', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'has', 'also', 'been', 'rated', 'by', 'the', 'national', 'geographic', 'society', 'as', 'the', 'world', \"'s\", 'number', 'one', 'natural', 'heritage', 'site', 'along', 'with', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ')', '', '', 'was', 'discovered', 'via', '', 'in', '1', '9', '0', '8', 'by', '', 'stevens', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '0', '7', ',', 'the', 'spanish', 'government', ',', 'at', 'that', 'time', 'allied', 'with', 'france', ',', 'had', 'sent', '1', '5', ',', '0', '0', '0', 'troops', 'to', 'denmark', 'to', 'act', 'as', 'a', 'garrison', 'against', 'a', 'possible', 'british', 'landing', 'there', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'full', 'back', 'on', 'the', 'team', 'that', 'beat', '', 'to', 'win', 'the', '', 'championship', 'for', 'the', 'first', 'time', 'since', '1', '9', '9', '0', '', 'was', 'again', 'full', 'back', 'as', 'kerry', 'faced', 'galway', 'in', 'the', 'all-ireland', 'final', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'of', 'the', 'ships', 'were', 'newly', 'built', ',', 'probably', 'in', 'singapore', ',', 'a', 'city', 'mads', 'often', 'visited', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'are', 'effective', 'against', 'epilepsy', ',', 'and', 'also', 'cause', '', ',', 'which', 'is', 'not', 'related', 'to', 'its', '', 'effects', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', 'sold', 'under', 'the', 'trade', 'name', '', 'among', 'others', ')', 'is', 'a', '', '', '', '(', '', ')', ';', 'more', 'specifically', ',', '', 'acts', 'as', '', 'and', '', '', 'of', 'the', 'enzyme', '', '', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'early', 'autumn', 'of', '1', '9', '4', '4', ',', '', ',', 'who', '', 'being', 'prosecuted', 'for', 'his', 'nazi', 'activities', ',', 'was', 'forced', 'to', '', 'to', 'sweden', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '7', '4', ',', 'he', 'earned', 'his', 'phd', 'in', 'engineering', 'science', 'from', 'memorial', 'university', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', '', 'found', 'out', 'she', 'had', 'left', 'his', 'plantation', ',', 'he', 'had', 'four', 'stakes', '', 'into', 'the', 'ground', 'and', 'ordered', 'her', 'hands', 'and', 'feet', 'to', 'be', 'tied', 'to', 'them', ',', 'she', 'was', 'stripped', '', 'and', 'solomon', 'was', 'then', 'ordered', 'to', '', 'her', '.', '', '', '', '', '', '', '']\n", "['', 'the', '', 'move', '', 'in', 'large', 'schools', 'to', '', 'and', 'migrate', 'in', 'spring', 'and', 'summer', 'to', 'feed', 'in', '', 'rich', 'areas', 'between', 'iceland', ',', '', ',', 'and', 'jan', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'center', 'township', 'is', 'one', 'of', 'seventeen', '', 'in', 'butler', 'county', ',', 'nebraska', ',', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'are', 'a', 'group', 'of', 'seven', 'minor', 'war', 'gods', 'in', '', 'and', '', 'tradition', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'population', 'density', 'was', '9', '.', '7', 'people', 'per', 'square', 'mile', '(', '3', '.', '7', '/km', '2', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ray', 'subsequently', 'received', 'a', 'recording', 'contract', 'with', 'sony', 'music', 'australia', 'and', 'released', 'his', 'debut', 'single', '``', 'coming', 'back', \"''\", ',', 'which', 'debuted', 'at', 'number', 'one', 'on', 'the', 'itunes', 'singles', 'chart', '(', 'with', 'platinum', 'status', ')', 'and', 'number', 'five', 'on', 'the', 'aria', 'singles', 'chart', '.', '', '', '', '', '', '']\n", "['', '', '(', 'hungarian', ':', '``', '', \"''\", ';', 'german', ':', '``', '', \"''\", 'or', '``', '', \"''\", ')', 'is', 'a', 'municipality', 'in', 'the', '', 'district', 'of', 'the', '', 'region', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'mr.', '', ',', 'an', 'early', 'postmaster', ',', 'gave', 'the', 'community', 'his', 'last', 'name', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'exhibition', 'of', 'his', 'work', 'at', '', \"'s\", 'gallery', 'in', '', 'in', 'october', '2', '0', '0', '5', ',', 'the', '', 'of', 'the', 'battle', 'of', '', ',', 'included', 'paintings', 'of', 'every', 'ship', 'in', 'which', 'nelson', 'had', 'served', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'initially', 'promising', 'a', 'court', 'fight', ',', '', 'decided', 'not', 'to', 'appeal', 'his', 'ruling', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'methods', 'for', 'prevention', 'and', 'management', 'of', '', '', 'are', 'now', 'extensively', 'used', 'for', 'treatment', 'of', 'patients', 'with', '', '', 'who', 'have', 'similar', 'problems', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'using', 'these', 'above', '', ',', 'the', '', 'relation', 'should', 'be', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'program', 'has', 'been', 'described', 'both', 'by', 'herself', 'and', 'by', 'others', 'as', 'being', 'a', '', 'of', 'a', '``', 'greek', 'new', 'deal', \"''\", 'as', 'proposed', 'by', 'the', '', 'government', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'current', 'rules', '', 'that', 'members', 'of', 'the', 'team', 'can', 'not', 'have', 'been', 'to', 'a', 'provincial', 'championship', 'the', 'previous', 'season', ',', 'or', 'have', 'had', 'a', 'top', '2', '5', '', 'team', 'the', 'previous', 'season', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'space', 'after', 'each', 'story', 'is', 'referred', 'to', 'as', '', 'and', 'is', 'a', 'time', 'for', 'ibis', 'to', 'comment', 'on', 'the', 'story', 'she', 'just', 'told', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'immediately', 'after', 'she', 'won', ',', '', 'released', 'her', 'winning', 'song', 'as', 'her', 'debut', 'single', '``', 'i', 'can', 'be', \"''\", ',', 'which', 'went', 'straight', 'to', 'number', '1', 'on', 'the', 'danish', 'singles', 'chart', 'in', 'its', 'first', 'week', 'of', 'release', 'and', 'was', 'certified', 'gold', '.', '', '', '', '', '', '', '', '']\n", "['', 'he', 'designed', 'shoes', 'for', 'the', '', 'automotive', 'museum', 'in', '2', '0', '0', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'december', '2', '0', '0', '9', ',', 'crittenton', 'and', 'teammate', 'gilbert', 'arenas', 'were', 'involved', 'in', 'a', '', 'room', '', 'involving', 'guns', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'august', '3', '1', ',', '2', '0', '0', '9', ',', 'jung', 'was', 'involved', 'in', 'an', '', 'at', 'a', '', 'club', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'starts', 'on', 'day', '1', '8', 'with', 'cells', 'in', 'the', '', '', '', 'into', '', 'that', 'develop', 'into', 'flattened', '', 'cells', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'extensive', '', 'show', 'that', 'the', 'master', 'also', 'wanted', 'to', '', 'this', 'work', ',', 'like', 'the', 'fifth', 'symphony', ',', 'with', 'a', '', 'instrumental', 'finale', 'and', 'a', 'powerful', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'accused', '', 'of', 'being', 'behind', 'the', 'attack', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'crew', 'numbered', 'about', '8', '3', '0', 'officers', 'and', 'enlisted', 'men', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'example', ',', '', 'from', 'the', 'gut', 'of', 'a', 'variety', 'of', 'mouse', '', 'requires', 'il-', '1', '3', '', 'by', 'th', '2', 'cells', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', '', 'that', 'the', '', 'war', 'and', 'destruction', 'of', 'cardassia', 'were', 'partially', 'caused', 'by', 'cardassia', \"'s\", '', 'government', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'sold', 'in', 'argentina', 'and', 'brazil', 'were', 'built', 'in', 'argentina', ',', 'as', 'with', 'the', 'previous', 'generation', 'hilux', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'grew', 'up', 'in', '', ',', 'california', 'and', 'graduated', 'from', '', 'high', 'school', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '8', ',', 'gretzky', 'was', 'traded', 'to', 'the', 'los', 'angeles', 'kings', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'become', 'friends', 'and', 'his', '', 'was', 'combined', 'with', 'a.', 'r.', 'rahman', \"'s\", 'musical', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'j.', '', '', 'and', 'richard', 'branson', 'made', 'large', 'donations', ';', 'branson', 'donated', '£', '1', '0', '0', ',', '0', '0', '0', 'to', 'the', 'mccanns', \"'\", 'legal', 'fund', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'greater', 'farms', 'in', 'scandinavia', 'usually', 'had', 'a', 'small', '', 'resting', 'on', 'the', 'top', 'of', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thus', '', ',', 'she', 'served', 'once', 'again', 'as', 'a', '', 'escort', ',', 'occasionally', '', 'targets', 'as', 'well', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'specification', 'of', 'the', 'organ', 'can', 'be', 'found', 'on', 'the', 'national', 'pipe', 'organ', 'register', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'had', 'johnson', 'caught', 'behind', 'for', 'four', 'to', 'leave', 'australia', 'at', '2', '4', '6', '/', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'in', '', 'magazine', \"'s\", 'list', 'of', 'the', 'ten', 'most', 'influential', '', 'in', 'america', ',', 'steve', '', 'is', 'the', 'senior', 'rabbi', 'of', '', 'boulevard', 'temple', 'in', 'los', 'angeles', ',', 'which', 'serves', 'approximately', '2', ',', '4', '0', '0', 'families', 'at', 'three', 'campuses', '.', '', '', '', '', '', '', '', '']\n", "['', '', 'wrote', 'a', 'celebrated', 'book', ',', '``', '', '', 'de', '', \"''\", 'in', '1', '8', '9', '1', ',', 'which', 'was', 'praised', 'by', 'pope', 'leo', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', '9', 'august', 'de', 'neufville', \"'s\", 'request', 'for', 'suspension', 'of', 'payment', 'was', 'rejected', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '4', '4', ',', 'lowe', 'was', 'chosen', 'a', 'member', 'of', 'the', 'first', 'constitutional', 'convention', 'of', 'iowa', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'but', 'after', 'the', 'long', '', ',', 'koufax', 'was', '', 'in', 'three', 'appearances', 'as', 'the', 'giants', 'caught', 'the', 'dodgers', 'at', 'the', 'end', 'of', 'the', 'regular', 'season', ',', 'forcing', 'a', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'rate', 'increase', 'was', 'a', '', 'for', 'ahmadinejad', ',', 'who', 'had', 'been', 'using', '', 'rates', 'to', 'provide', 'cheap', 'loans', 'to', 'the', 'poor', ',', 'though', 'naturally', 'iranian', '', 'were', 'delighted', 'by', 'the', 'increase', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'list', 'shows', 'the', '', 'red', 'list', 'status', 'of', 'the', '9', '0', '', 'species', 'occurring', 'in', 'serbia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'june', '1', '4', ',', '2', '0', '1', '0', ',', 'the', 'u.s.', 'government', 'accountability', 'office', '(', '', ')', 'released', 'its', 'findings', 'on', '', ',', 'by', 'then', 'disbanded', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', 'to', 'her', 'size', ',', 'she', 'is', '', 'strong', 'and', 'has', 'a', 'resistance', 'to', 'energy', 'attacks', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'local', 'church', 'is', 'built', 'on', 'a', 'hill', 'west', 'of', 'the', 'village', 'next', 'to', 'the', 'cemetery', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'alfred', '', ',', 'the', 'fourth', 'premier', ',', 'led', 'the', 'fifth', 'administration', ',', 'the', '', 'ministry', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'high', 'school', '', 'due', 'to', 'financial', 'constraints', ',', 'he', 'started', 'working', 'as', 'a', '', 'at', '1', '7', 'and', 'took', 'up', 'theater', 'as', 'a', 'past', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'stepped', 'down', 'as', 'director', 'of', 'imag', 'in', '2', '0', '0', '5', ',', 'and', 'imag', 'closed', 'in', '2', '0', '0', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'goal', 'of', 'the', 'hashtag', 'was', 'to', 'bring', 'awareness', 'to', '', 'about', 'the', 'brands', 'that', 'they', 'purchase', 'from', 'and', 'raise', 'awareness', 'for', 'the', 'humanitarian', 'and', 'ethical', 'issues', 'in', 'fast', 'fashion', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'raghu', 'proceeds', 'to', '', 'vardhi', 'with', 'the', 'promise', 'of', 'spreading', 'sex', 'awareness', 'to', 'the', 'public', 'and', 'eventually', 'vardhi', 'agrees', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'also', 'argues', 'that', 'christ', 'did', 'not', 'come', 'to', 'us', 'as', 'a', '', 'because', 'god', 'is', 'a', 'creator', 'of', 'love', 'and', 'beauty', 'and', 'could', 'not', 'desire', '``', 'a', '', 'victim', 'as', '', 'to', '', 'his', 'anger', '[', '...', ']', '.', \"''\", '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', '', 'by', 'city', 'network', 'services', 'to', 'brisbane', ',', '', 'and', '', 'north', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'also', 'planned', 'on', '', 'another', 'domestic', 'station', 'in', '', ';', 'however', 'that', 'did', 'not', '', ',', 'despite', 'being', 'listed', 'in', 'the', 'airline', \"'s\", 'website', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'the', 'independent', \"''\", 's', 'daniel', 'wright', 'gave', 'the', 'london', 'show', 'a', 'four', 'out', 'of', 'five', 'star', 'rating', ',', '', 'her', '', 'attitude', 'but', 'felt', 'her', 'cover', 'of', 'phil', 'collins', \"'\", '1', '9', '8', '1', 'song', '``', 'in', 'the', 'air', '', \"''\", 'was', '``', 'out', 'of', 'place', \"''\", '.', '']\n", "['', 'more', 'recent', 'changes', 'to', 'the', 'building', 'include', 'the', 'conversion', 'of', 'the', 'session', 'house', 'and', 'ladies', \"'\", '', 'into', 'contemporary', 'office', 'space', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'years', 'from', '1', '7', '6', '2', 'to', '1', '7', '7', '0', 'were', '', 'successful', ':', 'the', 'products', 'achieved', 'high', 'quality', 'and', 'established', 'the', 'factory', \"'s\", 'reputation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '7', '7', '5', ',', 'on', 'the', '', 'of', 'patrick', 'henry', ',', 'he', 'recruited', 'a', 'battalion', 'and', 'became', 'major', 'of', 'a', 'regiment', 'known', 'as', 'the', '``', 'culpeper', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'periods', 'of', '', ',', 'thick', 'layers', 'of', 'limestone', 'were', 'laid', 'down', 'over', 'the', 'old', '', 'and', '', 'rock', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'attracted', '', 'of', 'other', 'people', '', 'to', 'relieve', 'this', 'arkansas', 'country', 'boy', 'of', 'his', '', 'wealth', ',', 'which', '-', 'combined', 'with', 'poor', 'financial', 'management', ',', 'by', 'his', 'father', 'and', 'others', '-', 'meant', 'that', 'he', 'ended', 'up', 'losing', 'it', 'all', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'new', 'production', 'line', 'abc', '(', '``', 'a.', '', '&', 'amp', ';', 'company', ')', \"''\", 'wax', 'opened', 'a', 'new', 'facility', 'at', '', 'to', 'produce', 'standard', 'wax', 'range', 'for', 'the', '', 'local', 'market', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'act', 'also', 'established', 'a', 'unified', 'court', 'service', ',', 'under', 'the', 'responsibility', 'of', 'the', 'lord', 'chancellor', \"'s\", 'department', ',', 'which', 'as', 'a', 'result', 'expanded', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'began', 'with', 'invasions', 'of', '', 'and', '', 'island', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'general', 'manager', 'of', 'pbr', 'australia', 'said', 'that', 'this', 'venue', 'has', 'also', 'hosted', 'the', 'olympic', 'games', ',', 'and', 'that', 'it', 'is', 'very', 'fitting', 'to', 'host', 'this', 'event', 'in', 'the', 'largest', 'city', 'in', 'the', 'australia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'originally', 'delivered', ',', 'the', 'class', '3', '7', '3', 'units', 'were', 'additionally', 'fitted', 'with', '7', '5', '0', 'v', 'dc', 'collection', 'shoes', ',', 'designed', 'for', 'the', 'journey', 'in', 'london', 'via', 'the', 'suburban', '', 'lines', 'to', 'waterloo', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '8', 'december', '2', '0', '1', '5', '', 'was', 'appointed', 'by', 'the', 'minister', 'of', 'family', ',', 'labour', 'and', 'social', 'policy', ',', '', '', ',', 'as', 'the', 'deputy', 'head', 'of', 'the', 'office', 'for', 'war', 'veterans', 'and', 'victims', 'of', 'oppression', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'briefly', 'runs', 'north', 'into', '', 'county', ',', '', 'the', '', 'national', 'forest', 'and', 'serving', 'as', 'the', 'southern', 'terminus', 'of', 'highway', '3', '7', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'festival', \"'s\", 'founding', 'and', 'current', 'artistic', 'director', 'is', 'francis', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'medical', '', 'are', 'independent', 'organizations', 'of', 'scientists', ',', '', 'and', 'support', 'personnel', 'to', 'investigate', 'key', 'medical', 'challenges', 'and', 'emerging', 'health', 'needs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'february', '1', '9', '4', '7', 'a', '', 'of', '1', '9', '', 'squadron', '', 'moved', 'to', 'egypt', ',', 'and', 'was', 'initially', 'titled', 'as', '1', '9', 'field', 'survey', 'regiment', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'fran', 'makes', 'a', 'complaint', 'that', 'a', 'patient', 'died', 'after', 'jasmine', 'made', 'a', '', ',', 'before', 'trying', 'to', 'create', 'a', '', 'between', 'the', 'sisters', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'iajuddin', 'ahmed', 'formed', 'a', 'government', ',', '', 'ten', 'advisors', 'to', 'a', 'council', 'to', 'act', 'as', 'ministers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'played', 'at', 'texarkana', 'country', 'club', 'in', 'texarkana', ',', 'arkansas', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'november', '9', ',', '2', '0', '1', '0', ',', 'mason', 'performed', 'a', '', 'dance', 'with', 'mark', '', 'to', 'john', 'legend', \"'s\", '``', 'ordinary', 'people', \"''\", 'on', 'the', 'television', 'show', ',', '``', 'dancing', 'with', 'the', 'stars', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'limited', 'now', '', 'industrial', 'company', 'limited', 'was', 'established', 'in', '1', '9', '6', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'felt', 'that', 'the', 'principle', 'of', '', 'allowed', 'numbers', 'of', 'immigrants', 'from', 'a', 'given', 'country', 'to', 'the', 'number', 'of', 'people', 'who', 'had', '', 'origins', 'in', 'that', 'country', 'and', 'lived', 'in', 'the', 'united', 'states', 'should', 'be', 'retained', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'same', 'year', 'the', '', 'empire', 'ceased', 'to', 'make', 'war', 'on', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'also', 'in', '1', '9', '5', '6', ',', 'obregón', \"'s\", '``', 'cattle', '', 'in', 'the', '', 'river', \"''\", 'was', 'awarded', 'first', 'prize', 'at', 'the', 'gulf', 'caribbean', 'competition', 'in', 'houston', ',', 'texas', ',', 'an', 'exhibition', 'that', 'also', 'included', 'works', 'by', 'others', 'from', 'the', '``', 'big', 'five', \"''\", '.', '', '', '', '']\n", "['', 'a', 'bbc', 'caribbean', 'correspondent', 'shared', 'a', 'photo', 'of', 'the', 'tower', 'of', 'david', 'on', 'twitter', ',', '', 'that', 'the', 'abandoned', 'bank', 'building', 'was', '``', '', 'on', 'collapse', \"''\", ',', 'describing', 'it', 'as', 'an', '', '``', 'economic', 'metaphor', \"''\", 'for', 'venezuela', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'in', 'the', 'late', '1', '9', '2', '0', 's', 'that', '', 'sold', '', 'to', 'stock', '', 'peter', '', 'and', '', 'red', 'wall', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'is', 'the', 'world', 'where', 'people', 'go', 'to', 'dream', ',', 'and', 'is', 'a', '', ',', 'shifting', '', 'of', 'symbol', ',', 'belief', ',', 'and', 'imagination', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'tradition', '', 'the', 'foundation', 'of', 'tollesbury', 'congregational', 'church', 'to', '1', '8', '0', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', ')', 'is', 'the', 'capital', 'and', 'most', 'populous', 'city', 'in', 'the', 'argentine', 'province', 'of', 'the', 'same', 'name', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'image', 'was', 'named', 'world', 'press', 'photo', 'of', 'the', 'year', '2', '0', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'provides', 'some', 'evidence', 'for', 'the', 'past', 'presence', 'of', 'liquid', 'water', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bruynseels', 'is', 'a', '', 'politician', 'and', 'the', 'candidate', 'of', 'the', '', 'power', 'party', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'many', 'rare', 'species', 'with', 'limited', 'ranges', 'such', 'as', 'this', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'late', '1', '9', 'th', 'century', ',', 'the', 'islanders', 'would', 'often', '', 'with', 'the', 'outside', 'by', 'lighting', 'a', 'bonfire', 'on', 'the', 'summit', 'of', '', 'which', 'would', ',', 'weather', '', ',', 'be', 'visible', 'to', 'those', 'on', 'the', '', 'of', 'harris', 'and', 'the', '', '.', '', '', '', '', '', '']\n", "['', 'others', 'killed', 'included', 'first', 'vice', 'president', '', '', '', ',', 'governor', '', '', 'colonel', '', '', '', ',', 'mr', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '``', '', \"''\", ',', 'which', 'is', 'the', 'least', 'studied', ',', 'the', 'human', 'figures', 'are', 'three', 'brothers', 'who', 'are', 'also', 'warned', 'by', 'a', 'skull', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'barracks', 'was', 'used', 'by', 'the', '', 'people', \"'s\", 'army', '(', '', ')', 'until', 'early', '1', '9', '9', '1', 'when', 'its', 'soldiers', 'withdrew', 'from', 'the', 'site', 'following', '', 'of', 'yugoslavia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'township', 'is', 'a', 'township', 'in', 'jackson', 'county', ',', 'kansas', ',', 'usa', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '1', ',', 'the', 'song', 'was', 'released', 'as', 'a', 'single', 'by', 'jason', '', ',', 'who', 'was', 'then', 'playing', 'joseph', 'in', 'the', 'west', 'end', 'production', 'of', 'the', 'musical', 'at', 'the', 'london', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'several', 'major', 'earthquakes', 'have', 'occurred', 'along', 'the', '', '', 'close', 'to', 'the', '', 'of', 'the', '1', '9', '4', '6', 'earthquakes', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'group', 'on', '1', '6', 'th', 'april', '2', '0', '2', '1', 'announced', 'the', 'launch', 'of', '', '', 'in', 'hyderabad', ',', 'spread', 'over', '1', ',', '5', '0', '0', 'acres', 'in', 'the', 'city', \"'s\", 'suburbs', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'first', 'released', 'in', 'japan', 'before', 'becoming', 'available', 'in', 'korea', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'married', 'in', 'st', 'paul', \"'s\", 'anglican', 'cathedral', ',', 'melbourne', ',', 'on', '1', '9', 'april', '1', '9', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'seth', 'then', '', 'a', 'news', 'report', 'about', 'a', 'suicide', 'bomber', 'that', '', 'a', 'bomb', 'on', 'a', 'bus', ',', 'killing', 'him', 'and', 'some', 'other', 'passenger', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'and', 'a', 'major', 'february', 'storm', '', 'over', 'two', 'feet', 'of', 'snow', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'target', 'malaria', ',', 'a', 'project', 'funded', 'by', 'the', 'bill', 'and', '', 'gates', 'foundation', ',', 'invested', '$', '7', '5', 'million', 'in', 'gene', 'drive', 'technology', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'an', 'emphasis', 'on', 'art', ',', 'psychology', ',', 'and', 'critical', 'thinking', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'canadian', 'social', 'credit', 'movement', 'was', 'largely', 'an', '', 'of', 'the', 'alberta', 'social', 'credit', 'party', ',', 'and', 'the', 'social', 'credit', 'party', 'of', 'canada', 'was', '', 'in', 'alberta', 'during', 'this', 'period', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'both', '', 'from', 'the', '', 'neural', 'tube', 'and', 'are', 'located', 'between', 'the', 'two', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'had', 'london', 'received', 'more', 'votes', ',', 'the', 'conservative', 'party', 'would', 'have', 'secured', 'line', 'b', 'on', 'all', '', 'in', 'new', 'york', 'through', 'the', '1', '9', '9', '4', 'new', 'york', '', 'election', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'is', 'the', 'native', 'story', 'of', 'the', 'conquest', 'of', 'guatemala', 'from', 'the', 'point', 'of', 'view', 'of', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'february', '2', '8', ',', '', 'resigned', 'from', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'were', 'windows', 'on', 'all', 'four', 'sides', ',', 'giving', 'wonderful', 'views', 'of', 'the', 'entire', 'area', ',', 'and', 'a', 'little', '', 'along', 'the', 'front', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', '', 'that', 'white', 'house', 'requirements', 'are', 'clearly', '', 'to', 'the', '', '', 'and', 'meet', 'the', 'highest', 'standards', 'of', 'presidential', 'quality', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thompson', 'was', 'critical', 'of', 'the', 'judge', \"'s\", 'decision', ',', 'telling', 'the', 'judge', '``', 'you', 'did', 'not', 'see', 'the', 'game', '...', 'you', 'do', \"n't\", 'even', 'know', 'what', 'it', 'was', 'you', 'saw', ',', \"''\", 'as', 'well', 'as', '', 'the', '', 'employee', 'who', 'demonstrated', 'the', 'game', 'of', 'avoiding', 'the', 'most', 'violent', 'parts', '.']\n", "['', 'in', '2', '0', '1', '0', ',', 'the', '', 'moved', 'to', '', \"'s\", 'third', 'digital', '', ',', 'which', 'inherited', '', '2', \"'s\", 'cable', 'carriage', ';', '', 'replaced', '', 'programming', 'with', 'a', 'standard', 'definition', '', 'of', 'its', 'main', 'programming', ';', 'and', '1', '3', '.', '2', 'went', 'dark', '.', '', '', '', '']\n", "['', 'of', 'these', ',', 'the', 'riemann', 'sphere', 'is', 'the', 'only', 'one', 'that', 'is', 'a', 'closed', 'surface', '(', 'a', 'compact', 'surface', 'without', 'boundary', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rosalynn', 'resented', 'telling', 'her', 'mother', 'she', 'had', 'chosen', 'to', 'marry', 'instead', 'of', 'continuing', 'her', 'education', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'crew', 'will', 'be', 'trained', 'to', 'use', 'her', '', 'replacement', ',', '``', '', 'ii', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'started', 'his', 'playing', 'career', 'with', '', '', ',', 'playing', 'with', 'the', 'team', 'until', '1', '9', '4', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'live', 'in', 'the', 'suburbs', 'of', 'pittsburgh', 'with', 'their', 'children', ',', 'who', 'are', 'the', 'subject', 'of', 'his', 'book', '``', 'love', 'in', 'the', 'little', 'things', \"''\", '(', '2', '0', '0', '7', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'important', 'problem', 'which', '', 'both', 'philosophy', 'of', 'language', 'and', 'philosophy', 'of', 'mind', 'is', 'to', 'what', 'extent', 'language', 'influences', 'thought', 'and', 'vice', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'unfortunately', ',', 'he', 'found', 'none', 'of', 'the', '', 'he', 'was', 'sent', 'suitable', 'because', 'he', 'could', \"n't\", 'connect', 'to', 'them', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'lebanese', 'fashion', 'designer', 'and', 'textile', 'artist', ',', 'known', 'for', 'her', 'eponymous', 'brand', '``', '', 'arab', '', \"''\", 'and', 'her', 'frequent', 'collaborations', 'with', 'other', 'arab', 'and', 'south', 'asian', 'artists', 'and', 'designers', ',', 'including', '', 'ahmed', ',', '', \"'\", '', 'and', 'many', 'others', '.', '', '', '', '']\n", "['', 'in', '1', '9', '9', '8', ',', 'the', 'east', 'course', 'was', 'host', 'to', 'the', 'irish', 'pga', 'championship', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '9', ',', 'his', 'nomination', 'for', 'best', 'new', 'artist', 'at', 'the', 'grammy', 'awards', 'marked', 'the', 'first', 'time', 'a', 'classical', 'artist', 'had', 'been', 'nominated', 'in', 'the', 'category', ',', 'since', '', 'price', ',', 'in', '1', '9', '6', '1', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hispanic', 'or', 'latino', 'people', 'of', 'any', 'race', 'were', '2', '6', '.', '0', '%', 'of', 'the', 'population', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'february', '2', '0', '1', '3', ',', 'perfect', 'world', 'then', 'increased', 'their', 'equity', 'interest', 'to', 'a', 'majority', 'stake', ',', 'meaning', 'that', 'perfect', 'world', 'now', 'owns', 'unknown', 'worlds', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'final', '', 'melody', 'drew', 'his', '', '', 'six', 'box', 'for', 'the', 'first', 'time', 'and', 'it', 'resulted', 'in', 'an', 'easy', 'four', 'length', 'victory', 'from', '', 'abbey', 'who', 'after', 'a', 'poor', 'start', 'ran', 'on', 'very', 'strongly', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'contract', 'were', 'let', 'during', 'the', 'administration', 'of', 'alexander', '', 'shepherd', ',', 'governor', 'of', 'the', 'district', 'of', 'columbia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'palace', 'was', 'built', 'in', 'the', 'baroque', 'style', 'around', '1', '7', '3', '0', ',', 'on', 'the', 'ruins', 'of', 'an', 'earlier', 'building', 'for', 'the', 'crown', '', ',', 'jan', 'jerzy', 'przebendowski', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'reported', 'cause', 'of', 'the', 'accident', 'was', '', '', 'on', 'the', '', 'when', 'he', 'meant', 'to', 'apply', 'the', 'brake', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'henry', 'died', 'on', '1', '5', 'september', '1', '2', '7', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'lyttelton', 'followed', 'his', 'leader', 'lord', '', 'in', 'forming', 'a', 'whig', 'opposition', 'to', 'walpole', \"'s\", 'government', 'called', 'the', '', '(', 'which', 'included', 'another', 'of', 'fielding', \"'s\", 'eton', 'friends', ',', 'william', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'about', 'the', 'only', '', 'men', 'in', 'jackson', \"'s\", 'force', 'were', 'the', '', ',', 'who', 'had', 'hoped', 'to', '', 'their', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'thin', ',', '', ',', '', 'white', 'shell', 'has', 'an', '', 'shape', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'though', 'this', 'window', 'has', 'some', 'characteristics', 'of', 'the', '', 'style', ',', 'the', '', 'window', 'more', 'closely', 'resembles', 'known', 'examples', 'of', '', \"'s\", 'work', ',', 'such', 'as', 'the', 'angel', 'figure', 'in', 'the', 'first', '', 'church', 'of', '', ',', 'delaware', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'unlike', 'the', 'locals', ',', '', '', 'technology', 'more', 'than', 'his', '', ',', 'and', 'that', 'is', 'what', 'saves', 'him', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'a', '', 'franchise', 'posed', 'difficulties', 'due', 'to', 'tax', 'and', 'visa', 'issues', ',', 'and', 'rochester', ',', 'new', 'york', ',', 'which', 'is', 'just', 'across', 'the', 'united', 'states', 'border', ',', 'was', 'considered', 'as', 'an', 'alternative', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'he', 'distinguished', 'himself', 'by', 'his', 'portrait', '', ',', 'although', 'he', 'also', 'painted', 'several', 'pictures', 'for', 'the', 'churches', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'underlying', 'principle', 'is', 'that', 'people', ',', 'including', 'those', 'who', 'are', 'aged', 'or', '', ',', 'have', 'an', 'equal', 'right', 'to', 'live', 'in', 'a', 'unified', 'society', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'agricultural', 'crop', 'damage', 'by', 'the', 'same', 'species', 'totals', 'approximately', '$', '1', '0', '0', 'million', 'every', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'letter', 'k', 'usually', 'represents', 'the', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'performance', 'was', 'one', 'of', 'the', 'first', 'metropolitan', 'opera', 'record', 'albums', 'of', 'a', 'complete', 'opera', 'ever', 'released', '(', 'by', 'columbia', '', 'records', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'easy', 'street', 'toured', 'in', 'europe', 'and', 'the', 'us', 'and', 'were', 'the', '1', '9', '7', '6', 'runners-up', 'of', 'the', 'uk', 'tv', 'show', '``', 'new', 'faces', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', ')', ',', 'and', 'the', 'composition', 'of', 'the', 'steel', 'alloy', 'used', '(', '1', 'through', '1', '7', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'lower', 'peak', '8', 'consists', 'of', 'beginner', 'trails', ',', 'as', 'well', 'as', 'many', 'intermediate', 'trails', 'mixed', 'with', 'some', 'advanced', 'runs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'speech', 'was', 'also', 'supported', 'by', 'lebanese', '', 'group', 'and', 'government', '', '', 'and', 'by', '', 'ruling', 'group', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'team', 'ended', 'on', 'the', 'third', 'place', 'in', 'season', '2', '0', '1', '8', '-', '1', '9', ',', 'the', 'seventh', 'women', 'czech', 'team', 'to', 'achieve', 'that', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '6', ',', 'the', 'town', 'adopted', 'a', 'dark', 'skies', 'ordinance', ',', 'which', 'is', 'now', 'being', 'considered', 'as', 'a', 'model', 'for', 'wider', 'use', 'in', 'new', 'york', 'state', 'to', 'cut', 'down', 'on', 'light', 'pollution', 'at', 'night', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '8', 'mary', 'v.', '', 'found', 'that', 'one', 'of', 'the', 'illustrations', 'contained', '', 'blue', '(', '', '[', 'fe', '(', '', ')', '6', ']', ')', ',', 'produced', 'since', '1', '7', '0', '4', 'only', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'last', 'stage', 'appearance', 'was', 'in', 'the', 'title', 'role', 'of', '', \"'\", '``', '', \"''\", '(', '1', '9', '9', '1', ')', 'at', 'the', 'restored', 'ancient', 'theater', 'of', '', 'in', 'southern', 'greece', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'northern', 'portion', 'of', 'the', 'tehsil', 'is', 'part', 'of', 'the', '', 'region', ',', 'a', 'central', 'area', 'of', 'the', 'sri', '', 'district', 'characterized', 'by', 'the', 'flow', 'of', 'the', '', 'river', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'war', ',', 'while', 'possessing', 'false', 'identification', 'papers', 'and', '', 'himself', 'as', '``', 'josef', '', \"''\", ',', '', 'was', 'arrested', 'by', 'american', 'troops', 'on', '8', 'may', '1', '9', '4', '5', 'in', '', ',', 'and', 'remained', 'in', 'custody', 'until', '1', '7', 'february', '1', '9', '4', '9', '.', '', '', '']\n", "['', '', \"'s\", 'global', '', 'album', 'is', 'considered', 'to', 'be', 'the', '', 'winning', 'third', 'effort', '``', '', \"''\", ',', 'which', 'made', 'it', 'high', 'onto', 'lists', 'by', 'the', 'guardian', ',', '', 'and', 'consequence', 'of', 'sound', 'for', 'the', 'best', 'albums', 'of', '2', '0', '1', '5', '.', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'named', 'in', 'two', 'further', 'royal', '', 'during', 'the', '1', '9', '8', '0', 's', ',', 'the', 'stewart', 'royal', 'commission', 'and', 'street', 'royal', 'commission', '(', 'also', 'known', 'as', 'the', '', 'royal', 'commission', ')', 'into', 'corruption', 'within', 'the', 'new', 'south', 'wales', 'rugby', 'league', '.', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '1', ',', 'massmutual', 'financial', 'group', \"'s\", 'assets', 'under', 'management', 'reached', '$', '2', '3', '4', 'billion', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'joined', 'the', '', 'company', 'in', '1', '9', '4', '7', 'where', 'she', 'eventually', 'held', 'every', 'position', 'in', 'the', 'company', ',', 'including', 'advertising', 'director', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'sitcom', ',', 'starring', 'tony', '', ',', '', 'light', ',', '', '', ',', 'danny', '', 'and', '', '', ',', 'ran', 'from', '1', '9', '8', '4', 'to', '1', '9', '9', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'about', '1', '2', '0', 'lay', 'people', 'known', 'as', '', '(', 'the', 'benedictine', 'term', 'for', '', ')', 'were', 'affiliated', 'with', 'the', 'monastery', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'as', 'of', '2', '0', '1', '4', ',', 'while', 'the', 'system', 'was', 'completed', 'from', 'technical', 'point', 'of', 'view', ',', 'the', 'operational', 'side', 'was', 'still', 'not', 'closed', 'by', 'the', 'ministry', 'of', 'defense', 'and', 'its', 'formal', 'status', 'was', 'still', '``', 'in', 'development', \"''\", '.', '', '', '', '', '', '', '']\n", "['', 'the', 'founding', 'officers', 'were', '', 'e.', '', ',', 'president', ',', 'clayton', 'h.', '', ',', 'vice-president', ',', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'genus', 'is', 'exclusively', 'associated', 'with', '``', 'tetrapedia', \"''\", '(', '', ':', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'notable', 'historic', 'visitors', 'include', 'abel', 'tasman', ',', 'captain', 'cook', ',', 'captain', '', ',', 'and', 'william', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', ';', 'or', ')', 'is', 'a', 'dialect', 'of', 'the', 'western', 'desert', 'language', 'traditionally', 'spoken', 'by', 'the', '', 'people', 'of', 'central', 'australia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'if', 'the', 'answer', 'is', '``', 'no', \"''\", ',', 'the', 'formula', 'is', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'named', 'for', 'carter', 'woodson', ',', 'founder', 'of', 'the', 'association', 'for', 'the', 'study', 'of', 'african', 'american', 'life', 'and', 'history', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '6', '3', '4', 'sir', 'george', 'douglas', ',', 'ambassador', 'from', 'charles', 'i', 'to', 'poland', ',', 'visited', 'ramsay', 'at', 'hanau', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'introduced', 'her', 'to', 'his', 'manager', ',', 'eve', 'taylor', ',', 'who', 'won', 'her', 'a', 'contract', 'with', '', 'records', 'in', '1', '9', '6', '4', 'and', 'gave', 'her', 'the', 'stage', 'name', 'of', '``', '', 'shaw', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'greatest', 'success', 'came', 'in', 'doubles', 'competitions', ',', 'especially', 'with', '', '', 'as', 'partner', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'sun', '', 'are', 'now', 'listed', 'as', 'endangered', 'by', 'the', '', '(', 'international', 'union', 'for', 'conservation', 'of', 'nature', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'the', 'growing', 'threat', 'of', '', 'since', 'the', '9', '/', '1', '1', 'attacks', ',', 'this', 'unit', 'has', 'increasingly', 'adapted', 'itself', 'to', 'conduct', '', 'duties', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'more', 'important', 'point', 'to', 'add', 'here', 'it', 'is', 'that', 'around', '3', '0', '%', 'of', 'family', 'has', 'at', 'least', 'one', 'member', 'of', 'family', 'is', 'serving', 'in', 'army', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'protein', '', 'activity', 'in', 'an', '', 'pump', 'associated', 'with', '', 'and', '', 'pain', ',', 'making', 'it', '', 'suitable', 'as', 'a', 'treatment', 'for', 'both', 'normal', 'pain', 'and', '', 'pain', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '1', '4', ',', 'with', 'a', 'baby', 'daughter', ',', 'she', 'accompanied', '', 'on', 'his', 'tennis', 'trips', 'to', 'europe', 'and', 'the', 'usa', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'term', '``', 'last', 'supper', \"''\", 'does', 'not', 'appear', 'in', 'the', 'new', 'testament', ',', 'but', 'traditionally', 'many', 'christians', 'refer', 'to', 'such', 'an', 'event', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'trainer', 'variant', '(', 't.', '2', ')', '', '3', '6', '5', 'first', 'flew', 'in', 'august', '1', '9', '5', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'wide', 'range', 'of', 'applications', 'are', 'based', 'upon', 'this', 'base', 'support', 'for', 'the', 'technology', 'in', 'windows', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', 'to', 'return', 'their', 'plunder', 'and', 'never', 'to', 'return', 'to', 'the', 'territory', 'of', 'king', 'louis', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'tuberculosis', 'and', '', 'diseases', 'originally', 'had', 'their', 'own', 'divisions', ',', 'but', 'they', 'came', 'to', 'be', 'grouped', 'with', 'the', 'division', 'of', 'chronic', 'diseases', 'in', 'the', '1', '9', '5', '0', 's', ',', 'and', 'after', '1', '9', '6', '0', 'were', 'transferred', 'to', 'the', '', 'disease', 'center', '.', '', '', '', '', '', '']\n", "['', '', '', 'of', 'the', 'franchise', 'however', 'explained', 'that', 'certain', 'aspects', 'of', 'the', 'said', 'coaches', 'can', 'also', 'be', 'seen', 'across', 'franchises', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'art', '', 'relief', ',', '', '', ',', 'and', 'a', '', '', 'the', 'stepped', '', 'at', 'the', 'entrance', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'episode', 'also', 'features', 'a', 'character', 'named', 'ronald', 'd.', 'moore', 'who', 'is', 'mistaken', 'for', 'the', 'tv', 'producer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'an', 'independent', 'city', 'since', '1', '9', '2', '8', ',', '', 'is', 'not', 'part', 'of', 'henry', 'county', ',', 'but', 'exists', 'as', 'an', '', ',', 'surrounded', 'by', 'the', 'county', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'two', 'types', 'of', '', '', 'only', 'in', 'these', 'places', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '1', 'defines', 'levels', 'for', '', 'with', 'maximum', 'variables', 'for', 'levels', 'ranging', 'from', '2', '.', '0', 'to', '6', '.', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'speaking', 'on', 'her', 'choice', 'to', 'use', 'the', 'language', ',', 'rihanna', 'commented', ',', '``', 'sometimes', 'the', 'ones', 'who', 'have', 'sight', 'are', 'the', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '7', '8', 'was', 'set', 'to', 'be', 'deactivated', 'march', '3', '1', ',', '2', '0', '0', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'several', 'people', 'looked', 'deeper', 'into', 'the', '', 'of', 'the', 'earthquakes', ',', 'which', 'was', '``', 'interpreted', 'as', 'a', 'political', 'metaphor', 'for', '[', 'venezuela', \"'s\", ']', '', 'regime', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'giving', 'it', '4', 'out', 'of', '5', 'stars', ',', 'bobby', '', 'of', '``', '', \"''\", 'described', 'the', 'song', \"'s\", '', 'as', '``', 'interesting', \"''\", 'and', 'said', 'that', '``', '', \"'s\", '', '', ',', '', ',', 'friendly', 'delivery', 'brings', 'to', 'mind', 'the', '', 'charm', 'of', '', 'moore', '.', \"''\", '', '', '']\n", "['', 'here', ',', '', 'are', '', 'by', 'formula_', '3', '8', 'and', '', 'are', '', 'by', 'formula_', '3', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'the', 'type', 'had', 'been', 'developed', 'in', 'response', 'to', 'the', 'increasing', 'pressure', 'of', 'the', 'border', 'war', ',', 'there', 'is', 'no', 'evidence', 'that', 'any', '', 'of', 'any', 'variant', 'actually', 'conducted', 'offensive', 'operations', 'in', 'the', 'final', 'years', 'of', 'the', 'conflict', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '7', ',', 'the', 'eagles', 'reached', 'the', '#', '2', 'rank', 'in', 'both', 'the', '', 'and', 'coaches', \"'\", 'poll', 'as', 'well', 'as', 'the', '', 'rankings', ',', 'led', 'by', 'matt', 'ryan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', '2', '0', '1', '7', 'the', 'port', 'had', '8', '9', '', 'with', 'a', 'total', 'length', 'of', '1', '5', ',', '6', '2', '7', 'm', ',', 'its', 'annual', 'capacity', 'for', 'the', 'same', 'year', 'was', 'estimated', 'at', '2', '0', '8', ',', '7', '9', '3', 'thousand', 'tons', '.', '', '', '', '', '', '']\n", "['', 'his', 'father', ',', 'jackson', 'robert', '(', 'jr', ')', 'cartwright', ',', 'was', 'a', 'baptist', '', 'and', 'served', 'in', 'the', 'oklahoma', 'house', 'of', 'representatives', 'in', '1', '9', '2', '9', 'and', '1', '9', '3', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '5', '1', ',', 'the', 'first', '', '', 'were', 'introduced', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'order', 'to', 'bring', 'comedy', 'to', 'the', 'topics', 'of', 'climate', 'and', 'climate', 'change', ',', 'willis', 'created', 'the', 'character', '``', 'climate', 'elvis', \"''\", ',', 'and', 'performed', 'a', 'song', 'called', '``', 'the', 'climate', 'rock', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'to', 'the', 'north', 'it', 'is', '', 'by', 'the', 'german', 'states', 'of', '', 'and', 'the', '', ',', 'whilst', 'to', 'the', 'west', 'it', 'is', 'bounded', 'by', 'the', '', 'of', '', 'and', '', ',', 'both', 'of', 'the', 'arrondissement', 'of', '', ',', 'to', 'which', 'the', 'pays', 'de', '', 'also', 'belongs', '.', '', '', '']\n", "['', 'the', 'coalition', 'works', 'to', 'defend', 'freedom', 'of', 'thought', ',', 'inquiry', ',', 'and', 'expression', 'from', 'censorship', 'and', 'threats', 'of', 'censorship', 'through', 'education', 'and', 'outreach', ',', 'and', 'direct', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'establishment', 'of', 'a', 'surgical', 'airway', 'is', 'challenging', 'in', 'the', 'setting', 'of', 'restricted', 'neck', 'extension', '(', 'such', 'as', 'in', 'a', '', ')', ',', '', 'disruption', ',', 'or', '', 'of', 'the', '', 'by', 'a', 'penetrating', 'force', 'or', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', ',', '', 'and', '', '', 'makes', '``', 'tanu', '', 'manu', \"''\", \"'s\", 'running', 'time', 'of', '2', 'hours', 'and', '1', '5', 'minutes', 'longer', 'than', 'it', 'is', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'world', 'war', 'ii', ',', 'the', 'japanese', '', '', 'and', 'either', 'took', 'over', 'or', 'closed', 'down', 'many', 'such', 'mission', 'schools', ',', 'notably', 'the', '', 'convent', 'primary', 'school', 'in', 'the', 'hills', 'of', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'speaking', 'to', '``', 'inside', 'soap', \"''\", ',', 'laidlaw', 'said', ':', '``', 'i', \"'m\", 'so', '', 'someone', 'has', 'the', '', 'for', 'mrs', 'tembe', ',', 'i', 'told', 'the', 'producers', 'i', 'wanted', 'her', 'to', 'fall', 'in', 'love', 'with', 'someone', ',', 'and', 'now', 'its', '', '.', '', '', '', '', '', '', '', '']\n", "['', 'passenger', 'numbers', 'at', '', 'increased', 'from', '6', 'million', 'in', '1', '9', '9', '5', 'to', '1', '3', '.', '6', 'million', 'passengers', 'in', '2', '0', '0', '7', ',', 'dropping', 'to', '1', '2', '.', '8', 'million', 'in', '2', '0', '0', '8', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'march', '2', '0', '1', '8', ',', 'smith', 'released', 'a', 'statement', 'stating', 'that', 'he', 'was', 'seeking', 'help', 'for', 'mental', 'health', 'and', 'gambling', '', 'problems', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'only', 'way', 'to', 'actually', 'win', 'the', 'game', 'is', 'to', 'complete', 'it', 'without', '', 'or', 'killing', 'any', 'other', 'living', 'creature', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'total', 'berth', 'length', 'in', '', 'equals', '8', '.', '3', 'km', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thus', '', '', 'is', 'mostly', 'based', 'on', 'organisms', 'living', 'in', '', 'and', '', '', ',', 'such', 'as', '``', '', \"''\", '', 'and', 'terrestrial', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'additionally', ',', 'the', 'port', 'at', 'whitby', 'has', 'suffered', 'from', 'a', 'lack', 'of', 'investment', 'in', 'its', 'infrastructure', ',', 'so', 'much', 'so', ',', 'that', 'some', 'fishing', 'boats', 'registered', 'at', 'whitby', 'travel', 'to', 'the', 'dock', 'at', 'north', 'shields', ',', 'to', 'the', 'north', 'to', '', 'their', 'catch', '.', '', '', '', '', '', '']\n", "['', 'pope', 'leo', '', 'elevated', 'the', '', 'to', 'an', 'abbey', ',', 'known', 'as', '', 'abbey', ',', 'on', '1', '9', 'december', '1', '8', '8', '4', ',', '', 'the', 'monks', 'elected', 'father', 'leo', '', 'as', 'their', 'first', 'abbot', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'divorce', 'papers', 'were', 'filed', 'on', 'october', '1', ',', '2', '0', '1', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '7', '4', ',', '', 'received', 'his', '', 'from', 'the', 'university', 'of', 'california', ',', 'berkeley', 'under', 'the', '', 'of', 'john', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', '1', 'march', '1', '7', '9', '6', '``', '', \"''\", 'supported', 'the', 'landing', 'of', 'troops', 'for', 'an', 'attack', 'on', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'radio', '', 'from', 'an', 'early', 'age', '(', 'with', 'an', 'amateur', 'radio', 'station', 'k', '2', '', 'in', 'a', 'corner', 'of', 'the', 'basement', ')', ',', 'he', 'became', 'a', 'dj', '(', '``', 'large', '', \"''\", ')', 'on', '', 'in', 'nearby', 'hyde', 'park', ',', 'after', 'helping', 'build', 'the', 'station', '.', '', '', '']\n", "['', 'there', 'was', 'a', 'reduction', 'in', 'the', 'number', 'of', 'european', '', 'but', 'no', 'significant', 'decline', 'in', 'the', 'overall', 'number', 'of', 'common', 'chaffinches', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bradford', 'church', 'of', 'christ', 'is', 'the', 'town', \"'s\", 'lone', 'church', 'of', 'christ', ',', 'operating', 'on', 'front', 'street', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'union', 'was', '', 'by', 'eastern', 'german', 'trade', 'union', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'presently', 'other', 'countries', 'using', '', 'for', 'television', 'signal', 'delivery', ',', 'these', 'also', 'being', 'built', 'by', '', 'america', ',', 'for', 'example', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'reports', '', 'the', 'most', 'significant', 'aspects', 'of', 'the', 'original', 'results', 'were', 'published', 'in', 'the', 'same', 'journal', 'in', '2', '0', '1', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '3', '3', '9', ',', '', '', 'the', '', 'in', 'hanau', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'new', 'york', 'city', 'police', 'department', 'pension', 'fund', 'signed', 'a', 'lease', 'for', 'on', 'the', '1', '9', 'th', 'and', '2', '5', 'th', 'floors', 'in', 'april', '2', '0', '0', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'performance', 'level', '', \"''\", 'define', 'the', 'required', 'skills', 'for', '', 'and', 'standard', 'courses', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'jencks', 'died', 'on', 'june', '3', '0', ',', '2', '0', '1', '4', ',', 'at', 'the', 'age', 'of', '9', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'company', 'operated', '5', '2', '', 'of', '', 'until', 'world', 'war', 'ii', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'pays', 'off', ',', 'as', 'dolly', 'is', 'invited', 'to', 'the', '``', 'd', '&', 'amp', ';', 'me', \"''\", 'offices', 'and', 'is', 'given', 'a', 'music', 'journalist', 'job', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'within', 'the', 'city', 'is', 'a', 'rocky', 'formation', 'called', '', 'del', '', ',', 'an', 'excellent', 'climbing', 'place', 'in', 'one', 'of', 'the', 'most', '', 'areas', 'on', 'earth', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'serves', 'more', 'than', '1', '8', 'million', 'students', 'in', 'all', '5', '0', 'states', 'and', '4', '9', 'countries', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'made', 'her', 'senior', 'debut', 'for', 'jamaica', 'on', '3', '0', 'september', '2', '0', '1', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'located', 'near', 'the', 'north', 'edge', 'of', 'the', 'city', ',', 'it', 'is', 'bounded', 'by', '', 'trail', 'to', 'the', 'west', ',', 'the', '', 'hill', 'community', 'across', '1', '2', '8', 'avenue', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'contrast', 'to', 'the', '', 'of', 'the', '', 'version', ',', '', \"'s\", '', 'was', 'largely', '', 'to', 'the', 'cast', \"'s\", '', 'dialogue', ',', 'although', 'some', '', 'were', '', ',', 'such', 'as', '', \"'s\", 'line', '``', 'you', 'too', 'can', 'find', 'the', 'joy', 'and', '', 'in', '', '!', \"''\", '', '', '']\n", "['', 'he', 'named', 'his', 'capital', '``', 'the', 'place', 'of', 'the', 'one', 'to', 'be', 'killed', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'connects', '', ',', 'capital', 'of', 'jharkhand', ',', 'to', '', 'in', 'jharkhand', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'of', 'ancient', 'grains', 'say', 'that', 'they', 'are', 'rich', 'in', 'protein', ',', '', '3', '', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', '4', 'august', '2', '0', '0', '3', 'it', 'premiered', 'at', 'the', 'london', '', 'film', 'festival', 'and', 'stars', 'kevin', '', 'and', 'mark', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'received', 'his', 'diploma', 'in', '', 'language', 'and', 'literature', 'from', 'the', '', 'state', 'university', 'in', '1', '9', '9', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'a', 'second', 'unit', 'director', 'for', '``', '', 'justice', \"''\", ',', '``', 'higher', 'learning', \"''\", ',', '``', 'tank', 'girl', \"''\", 'and', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'earned', 'her', 'master', \"'s\", 'degree', 'in', 'applied', '', 'at', '', '', 'university', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'that', 'day', ',', 'lieutenants', 'myers', 'and', '', 'with', 'lieutenants', 'white', 'and', '', 'as', 'protection', 'were', 'attacked', 'by', 'a', 'group', 'of', 'five', 'enemy', 'aircraft', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'white', ',', 'stone', 'church', 'was', 'built', 'during', 'the', 'middle', 'to', 'late', '1', '3', 'th', 'century', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '3', '5', ',', 'he', 'tied', 'for', '5', '-', '6', 'th', 'in', 'łódź', '(', '', '', 'won', ')', 'and', 'took', '4', 'th', 'in', '', '(', '', '', 'won', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'track', 'is', '', 'by', 'savvy', 'and', 'sung', 'by', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'opposition', 'to', 'the', 'vatican', 'council', 'reached', 'its', '', 'in', 'the', 'work', '``', 'der', '', 'und', 'das', '', \"''\", ',', 'by', '``', '', \"''\", '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'unit', 'stationed', 'in', 'flåm', 'was', '', 'sent', 'for', 'service', 'in', 'oslo', ',', 'and', 'when', 'this', 'happened', ',', 'a', 'new', 'unit', 'would', 'be', 'stationed', 'in', 'flåm', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'climbers', 'usually', 'start', 'from', 'the', '``', 'les', '', '', \"''\", 'glacier', 'and', '', 'the', 'southwest', 'side', 'of', 'the', 'mountain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'about', '8', '.', '4', '%', 'of', 'families', 'and', '1', '2', '.', '4', '%', 'of', 'the', 'population', 'were', 'below', 'the', 'poverty', 'line', ',', 'including', '2', '0', '.', '3', '%', 'of', 'those', 'under', 'age', '1', '8', 'and', '9', '.', '0', '%', 'of', 'those', 'age', '6', '5', 'or', 'over', '.', '', '', '']\n", "['', 'shortly', 'after', 'the', 'study', 'was', 'completed', ',', 'there', 'were', 'bloody', '', 'at', 'both', 'the', 'san', '', 'and', '', 'prison', 'facilities', ',', 'and', '', 'reported', 'his', 'findings', 'on', 'the', 'experiment', 'to', 'the', 'u.s.', 'house', 'committee', 'on', 'the', 'judiciary', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'more', 'specifically', ',', '', '2', '(', 'along', 'with', '', '9', ')', 'is', 'capable', 'of', '', 'type', 'iv', '', ',', 'the', 'most', 'abundant', 'component', 'of', 'the', 'basement', 'membrane', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'time', ',', 'alder', 'fully', 'adopted', 'the', '', 'way', 'of', 'life', ';', 'he', 'lived', ',', '', ',', 'and', 'fought', 'as', 'an', 'indian', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'stated', 'that', 'though', 'many', 'of', 'the', 'disney', 'characters', 'are', 'not', 'normally', 'dark', 'and', 'serious', ',', 'there', 'were', 'not', 'many', 'challenges', 'making', 'them', 'so', 'for', 'the', 'story', ',', 'and', 'despite', 'this', ',', 'their', 'personalities', '', 'because', 'they', 'maintain', 'their', 'own', 'characteristics', '.', '', '', '', '', '', '', '']\n", "['', 'he', 'and', 'his', 'wife', '', 'have', 'a', 'son', ',', '', '', ',', 'and', 'a', 'baby', 'girl', ',', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'january', '2', '5', ',', '2', '0', '1', '0', 'crittenton', 'pleaded', 'guilty', 'and', 'was', 'given', 'a', 'year', 'of', 'probation', 'on', 'a', '', 'gun', 'possession', 'charge', '', 'from', 'this', 'incident', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'born', 'in', '1', '8', '8', '1', 'at', '', 'in', 'the', 'english', 'county', 'of', 'berkshire', ',', '', 'was', 'influenced', 'by', 'the', '', 'labour', 'politics', 'of', 'his', 'home', 'country', ',', 'and', 'also', '', 'the', 'single', 'tax', 'ideas', 'of', 'henry', 'george', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'second', '', 'image', 'was', 'released', 'two', 'days', 'later', ',', 'reporting', 'that', 'this', 'would', 'be', 'her', 'third', 'summer', 'album', 'after', '``', 'hands', 'on', 'me', \"''\", '(', '2', '0', '1', '7', ')', 'and', '``', '', 'blue', \"''\", '(', '2', '0', '1', '8', ')', '.', '', '', '', '', '', '', '']\n", "['', 'some', 'years', 'later', ',', 'in', '1', '9', '3', '8', ',', 'the', 'need', 'to', 'build', 'a', 'new', 'high', 'pressure', '', 'building', 'led', 'to', 'the', 'demolition', 'of', 'the', '', 'from', 'the', 'station', \"'s\", 'original', 'phase', ',', 'leaving', 'no', '', 'behind', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'invitation', 'resulted', 'in', 'a', 'commission', 'for', '', 'to', 'write', 'a', 'book', 'on', 'violin', 'techniques', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'title', 'is', 'based', 'on', 'a', 'line', 'from', 'a', '', 'james', 'poem', 'first', 'published', 'in', 'the', '3', 'june', '2', '0', '1', '3', 'issue', 'of', '``', 'the', 'new', 'yorker', \"''\", 'in', 'which', 'he', 'describes', 'his', 'own', 'mortality', 'called', '``', '', 'des', '', \"''\", '.', '', '', '', '', '', '', '']\n", "['', 'he', 'enlisted', 'in', 'the', 'navy', 'at', 'denver', ',', 'colorado', 'on', '2', 'july', '1', '9', '4', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', '', 'shopping', 'centre', 'has', 'a', 'gross', '', 'area', 'of', ',', 'making', 'it', 'one', 'of', 'the', 'largest', 'shopping', '', 'in', 'the', 'country', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'had', 'to', '', 'a', 'lot', 'of', '', 'to', 'form', 'this', 'specialized', 'unit', 'as', 'many', '', 'types', 'could', 'not', 'buy', 'into', 'the', 'concept', 'of', 'such', 'a', 'specialized', 'unit', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'both', 'the', 'declaration', 'of', 'the', 'rights', 'of', 'woman', 'and', 'of', 'the', 'female', 'citizen', 'and', 'the', 'creation', 'of', 'the', 'society', 'of', 'revolutionary', 'republican', 'women', 'further', '', 'their', 'message', 'of', 'women', \"'s\", 'rights', 'as', 'a', '', 'to', 'the', 'new', 'order', 'of', 'the', 'revolution', '.', '', '', '', '', '', '', '', '']\n", "['', '``', '', '', \"''\", '(', ')', 'is', 'a', '', 'song', 'by', 'mexican', 'recording', 'artist', '', '', ',', 'from', 'her', 'sixth', 'studio', 'album', ',', '``', 'mexican', 'fire', \"''\", '(', '1', '9', '6', '6', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'appointed', 'officer', 'in', 'charge', 'of', 'the', '', 'establishment', 'at', 'portland', 'in', '1', '9', '3', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'part', 'of', 'his', 'phd', 'program', 'on', 'information', 'technology', ',', 'he', 'developed', 'a', '', 'simulation', 'platform', 'called', '``', 'sense', \"''\", '(', '', 'environment', 'of', '', 'sensor', 'experiments', ')', ',', 'to', 'test', 'different', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'officially', 'discontinued', 'after', 'the', '2', '0', '1', '6', 'game', ',', 'as', 'the', 'organizing', 'committee', 'announced', '(', 'in', 'january', '2', '0', '1', '7', ')', 'that', 'it', 'had', 'decided', 'to', 'host', 'only', 'one', 'game', ',', 'beginning', 'with', 'the', '2', '0', '1', '7', 'season', '.', '', '', '', '', '', '']\n", "['', '', '', 'returned', 'as', 'a', 'racing', 'queen', 'for', 'this', 'season', 'and', 'was', 'joined', 'by', '', '', 'and', 'elena', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'body', '', 'were', 'also', 'available', 'as', 'dealer', 'installed', 'options', ',', 'which', 'is', '', 'as', '``', 'limited', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', '', 'systems', 'and', '', 'visual', 'systems', ',', 'it', 'is', 'one', 'of', 'three', 'companies', 'in', 'the', 'computer', 'display', 'industry', 'started', 'by', 'people', 'who', 'formerly', 'worked', 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'every', '1', '0', '0', 'females', ',', 'there', 'were', '9', '3', '.', '9', 'males', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'regular', '', 'systems', 'form', 'a', '', '', 'of', 'the', '', 'system', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'front', 'of', 'the', 'peninsula', 'is', 'the', 'wadden', 'sea', 'which', '', 'between', 'the', 'jade', \"'s\", 'and', 'the', '', \"'s\", '', 'about', '2', '3', 'kilometers', 'to', 'the', 'northwest', 'beyond', 'the', '', 'island', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '1', 'september', 'neufville', 'returned', 'two', '', 'with', '', '', 'worth', '5', '0', ',', '0', '0', '0', '', 'to', 'carl', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'\", 'pitching', '', 'featured', 'a', '', 'with', 'which', 'he', 'varied', 'the', 'speed', 'between', 'about', '8', '5', 'and', '9', '2', 'mph', ',', 'a', '', ',', 'a', '', 'that', 'cuts', 'in', 'on', '', '', ',', 'and', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'colonel', '``', '', \"''\", 'was', 'already', 'stationed', 'in', '``', '', \"''\", 'as', 'the', 'head', 'of', 'the', '', 'of', 'the', '``', \"''\", 'to', 'protect', 'and', 'guard', 'the', 'agricultural', 'farms', 'that', 'had', 'been', '', 'at', 'the', 'start', 'of', '', 'in', 'the', 'spring', 'of', '1', '8', '3', '7', '.', '', '', '', '']\n", "['', 'the', 'population', 'was', '6', '3', '9', 'at', 'the', '2', '0', '1', '0', 'census', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'because', '', 'was', 'born', 'to', 'a', '', 'mother', 'and', '', '', '', 'masuku', 'felt', 'that', 'she', 'was', 'of', 'a', 'lesser', 'class', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'january', '2', '0', ',', '2', '0', '0', '6', ',', 'the', 'los', 'angeles', 'galaxy', 'picked', 'king', 'in', 'the', 'fourth', 'round', '(', '', 'overall', ')', 'in', 'the', '2', '0', '0', '6', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', '', ',', '``', 'hit', 'men', ':', 'power', '', 'and', 'fast', 'money', 'inside', 'the', 'music', 'business', \"''\", ',', 'vintage', 'books', ',', '1', '9', '9', '1', '(', ')', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'callot', 'soeurs', \"'s\", 'greatest', 'american', 'supporter', 'was', 'rita', 'de', '', '', 'who', 'ordered', '', 'of', '', 'at', 'a', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', 'born', 'june', '1', '9', ',', '1', '9', '7', '3', 'in', '', ')', 'is', 'a', '', ',', 'expert', 'on', 'security', 'issues', ',', 'university', 'professor', ',', 'and', 'civil', 'society', 'activist', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'river', 'is', 'a', 'river', 'in', 'the', '', 'region', 'of', 'western', 'australia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', ',', 'the', 'wind', 'farm', 'would', 'make', 'a', 'very', 'significant', 'contribution', 'to', 'reducing', 'greenhouse', 'gas', 'emissions', 'in', 'queensland', '-', 'reducing', 'electricity', 'emissions', 'by', 'over', '3', '7', '0', ',', '0', '0', '0', '', 'of', 'greenhouse', 'gas', 'emissions', 'annually', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'carter', 'soon', 'discovers', 'lexie', \"'s\", 'agenda', 'and', 'is', '', 'hurt', 'when', 'he', 'learns', 'that', 'dodge', 'and', 'lexie', 'are', 'starting', 'to', 'show', '', 'for', 'each', 'other', 'and', 'even', 'shared', 'a', 'kiss', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'provide', 'more', '', 'than', 'traditional', '', 'and', 'hospitals', ',', 'but', 'more', 'stability', 'than', 'many', '', 'research', 'organizations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'that', 'time', 'the', 'company', 'employed', '1', ',', '2', '0', '0', 'people', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'late', 'december', '2', '0', '0', '6', 'an', 'unsuccessful', 'attempt', 'was', 'made', 'to', 'arrest', '', 'wickrematunge', 'for', '``', '', 'national', 'security', \"''\", 'after', '``', 'the', 'sunday', 'leader', \"''\", 'published', 'a', 'report', 'exposing', 'a', 'rs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'miller', 'of', '', 'stated', 'that', '``', '', 'and', 'nas', 'both', 'drop', 'deep', 'bars', 'in', 'their', '', 'and', '', '', 'on', 'the', '', 'with', '', 'lines', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'admits', 'that', 'he', 'is', 'not', '', ',', 'and', '', 'is', 'recognised', 'as', 'himself', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'first', 'decade', 'of', 'the', '2', '1', 'st', 'century', ',', 'oakland', 'has', 'consistently', 'been', 'listed', 'as', 'one', 'of', 'the', 'most', 'dangerous', 'large', 'cities', 'in', 'the', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'summit', 'crossing', 'never', 'was', 'able', 'to', 'handle', 'the', 'canal', 'traffic', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'airport', 'is', 'an', '', 'serving', '', 'in', 'the', 'santa', 'cruz', 'department', 'of', 'bolivia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'jetboats', 'are', 'small', 'enough', 'to', 'be', 'carried', 'on', 'a', 'trailer', 'and', '', 'by', 'car', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '3', 'the', 'northern', 'teacher', 'education', 'program', '(', '', ')', 'hosted', 'the', 'program', 'in', 'la', '', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'dennis', 'baker', 'of', '``', 'the', 'guardian', \"''\", 'wrote', 'that', 'barker', '``', 'preferred', '', 'over', 'the', '', '', ',', 'a', '', 'that', '', 'some', 'imagination', 'from', 'the', 'audience', 'and', 'was', 'the', 'essence', 'of', 'his', 'comedy', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'following', 'year', ',', 'she', 'appeared', 'in', 'the', 'popular', 'murder', 'mystery', '``', 'the', 'thirteenth', 'chair', \"''\", ',', 'a', 'role', 'that', 'offered', 'her', 'the', 'chance', 'to', 'display', 'her', 'dramatic', 'abilities', 'as', 'a', 'murder', 'suspect', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '5', '0', ',', 'minton', 'won', 'another', 'victory', 'when', 'the', 'union', 'established', 'its', 'first', 'pension', 'plan', 'for', 'its', 'members', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'to', 'avoid', 'a', 'conflict', 'of', 'interest', ',', 'he', 'stayed', 'out', 'of', 'the', 'courts', 'and', 'practised', 'solely', 'as', 'a', 'solicitor', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'praised', 'by', 'critics', 'at', 'the', 'festival', 'as', '``', '', ',', '', ',', 'and', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'french', '', '', '', 'described', 'part', 'ii', 'as', '``', 'without', 'dispute', ',', 'the', 'best', 'chinese', 'dictionary', 'composed', 'in', 'a', 'european', 'language', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'township', 'acquired', 'large', '', 'of', '', '', 'land', 'to', 'slow', 'the', 'pace', 'of', 'development', ',', 'preserve', 'the', 'environment', ',', 'and', 'protect', 'housing', 'values', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'glen', 'is', 'a', 'large', 'and', '', '', 'man', ',', 'often', 'seen', 'sitting', 'on', 'his', '', 'chair', 'or', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'and', 'sree', '', ',', 'and', 'two', 'other', 'daughters', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'has', 'a', 'single', 'entry', 'through', 'the', 'bell', 'tower', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'are', 'also', 'the', '', 'and', 'more', '', 'areas', 'of', 'belfast', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'late', '1', '9', '4', '0', 's', ',', 'porter', 'and', 'dmytryk', 'escaped', 'to', 'england', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'second', ',', '``', 'new', \"''\", 'courthouse', 'has', 'since', 'been', 'replaced', 'with', 'new', 'facilities', 'as', 'well', 'as', 'a', 'park', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'population', '(', '2', '0', '0', '6', ')', 'was', 'estimated', 'by', 'the', '', 'to', 'be', '4', '0', '7', ',', '8', '1', '5', 'inhabitants', 'in', 'a', 'total', 'area', 'of', '1', '1', ',', '3', '2', '7', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'wife', 'moved', 'back', 'to', 'the', 'united', 'states', 'with', 'their', 'children', ',', 'the', 'same', 'year', 'that', 'he', 'pleaded', 'guilty', 'in', 'relation', 'to', 'an', 'attempted', 'coup', 'in', '', 'guinea', 'and', 'questions', 'were', 'being', 'asked', 'in', 'the', 'government', 'about', 'whether', 'he', 'should', 'be', 'stripped', 'of', 'his', 'title', '.', '', '', '', '']\n", "['', 'during', 'the', 'late', 'gothic', 'era', ',', 'the', 'growing', '', 'and', 'position', 'of', 'the', '', 'led', 'to', 'a', 'growing', 'need', 'for', 'a', 'representative', 'castle', ',', 'and', 'this', 'meant', 'architectural', 'changes', 'to', 'the', 'fortress', 'settlement', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'independent', 'section', 'formed', 'a', 'separate', 'congregation', 'in', '1', '6', '8', '6', ';', 'on', 'the', 'issue', 'of', 'james', 'ii', \"'s\", '', 'for', '', 'of', 'conscience', \"'\", 'next', 'year', '(', '4', 'april', ')', ',', 'the', '', 'under', '', 'hired', 'a', 'building', 'for', 'public', 'worship', 'in', 'st.', 'nicholas', 'parish', '.', '', '']\n", "['', 'around', 'the', 'same', 'time', ',', 'skye', 'disappeared', 'and', 'adam', ',', 'who', 'was', 'back', 'in', 'a', 'romance', 'with', 'sharon', 'newman', ',', 'was', 'accused', 'of', 'her', 'murder', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'on', '2', 'february', '2', '0', '1', '9', ',', 'he', 'used', 'the', 'title', 'to', 'sign', 'a', 'press', 'release', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', '', ',', 'the', 'first', '', 'animals', ',', 'among', 'them', 'the', 'first', 'fishes', ',', 'had', 'appeared', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'population', 'of', '', ',', 'which', 'was', 'approximately', '2', '5', '0', '0', ',', 'increased', 'to', '2', ',', '9', '5', '8', 'at', 'the', '2', '0', '1', '1', 'census', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'tripunithura', 'sree', '', 'temple', 'vrishchikolsavam', 'is', 'one', 'of', 'the', 'best', 'venue', 'of', 'panchari', 'melam', 'where', 'one', 'can', 'enjoy', '1', '5', 'detailed', 'panchari', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'city', 'of', 'kičevo', 'is', 'the', 'seat', 'of', 'kičevo', 'municipality', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'song', 'was', 'also', 'a', '', 'hit', 'in', 'ireland', 'and', 'a', '', 'hit', 'in', 'austria', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'the', 'bonfire', 'had', 'been', 'reduced', 'to', 'ashes', 'and', '', ',', 'nilsen', 'used', 'a', '', 'to', 'search', 'the', 'debris', 'for', 'any', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'licking', 'view', 'is', 'located', 'along', 'the', 'licking', 'river', 'near', 'the', 'western', 'border', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'played', '', 'in', 'this', 'sweet', 'sickness', ',', 'directed', 'by', '', 'miller', ',', 'based', 'on', 'the', 'novel', 'written', 'by', 'patricia', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ting', 'later', 'announced', 'that', 'they', 'had', 'reached', 'an', 'agreement', 'that', 'would', 'allow', 'them', 'to', 'continue', 'to', 'offer', '', 'service', 'for', 'at', 'least', 'three', 'years', 'after', 'december', '2', '0', '1', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'national', '', 'agreed', 'to', 'not', '', 'a', '', 'merger', 'for', 'at', 'least', 'two', 'years', 'after', 'the', 'date', 'of', 'the', 'settlement', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"'s\", 'children', \"''\", 'won', 'both', 'the', 'booker', 'prize', 'and', 'the', 'james', '', 'black', 'memorial', 'prize', 'in', '1', '9', '8', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '', 'with', '', 'practice', ',', 'which', 'has', '', '', 'since', '', '', '(', 'circa', '1', '8', '0', '0', ')', ',', 'and', 'instead', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'guatemala', 'does', 'not', 'have', 'a', 'digital', 'terrestrial', 'standard', 'yet', ',', 'but', 'it', 'seems', 'that', '', 'will', 'be', 'the', 'norm', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'various', 'times', 'during', 'their', 'career', 'the', 'band', 'has', 'maintained', 'a', 'mythology', 'about', 'their', 'origins', 'which', '', 'them', 'to', 'be', '', 'secret', '', ',', 'on', 'the', 'run', 'from', 'a', '', 'government', 'organization', 'with', 'ties', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'people', 'who', 'view', 'themselves', 'in', 'an', '', 'sense', 'describe', 'themselves', 'with', 'personality', '', 'that', 'are', 'permanent', '', 'unrelated', 'to', 'particular', 'situations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '3', ',', 'a', 'golden', 'palm', 'star', 'on', 'the', 'palm', 'springs', ',', 'california', ',', 'walk', 'of', 'stars', 'was', 'dedicated', 'to', 'him', 'and', 'his', 'father', ',', 'richard', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'she', 'understood', 'the', '', 'of', 'the', 'proceedings', ',', 'she', '', 'to', 'retreat', ',', 'but', 'was', 'caught', 'by', 'the', 'lodge', '', ',', 'who', 'was', 'also', 'the', 'family', 'butler', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '3', ',', 'geneva', 'declaration', 'of', 'principles', 'and', 'the', 'geneva', 'plan', 'of', 'action', 'were', 'released', ',', 'which', 'highlights', 'the', 'importance', 'of', 'measures', 'in', 'the', 'fight', 'against', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'among', 'these', ',', 'illiterate', 'goldsmith', '', '', 'was', 'singled', 'out', 'by', '``', 'the', 'daily', 'tribune', \"''\", 'in', '1', '9', '0', '1', 'for', '``', '[', 't', ']', 'he', 'wonderful', '', \"''\", 'that', '``', 'made', 'him', 'one', 'of', 'the', 'attractions', 'of', 'the', 'show', \"''\", '.', '', '', '', '', '', '', '']\n", "['', 'the', 'angel', 'therefore', 'tried', 'to', 'push', 'off', 'the', 'request', ',', 'saying', '``', 'do', 'you', 'think', 'you', 'are', 'on', 'the', 'level', 'of', 'rabbi', 'joshua', 'ben', '', '?', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'the', '', 'is', '', ',', 'the', 'three', 'voiced', '', ',', 'and', 'are', 'realized', 'as', 'the', '', ',', 'and', ',', 'respectively', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'married', 'first', 'to', 'the', 'historian', 'friedrich', 'max', '', 'and', 'later', 'to', 'the', 'publisher', 'paul', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'lamp', 'was', 'missing', 'for', 'many', 'years', 'but', 'was', 'found', '&', 'amp', ';', 'restored', 'by', 'the', 'then', 'landlord', ',', 'colin', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'sports', ',', 'such', 'as', 'athletics', ',', 'divide', 'athletes', 'by', 'both', 'the', 'category', 'and', 'severity', 'of', 'their', '', ',', 'other', 'sports', ',', 'for', 'example', 'swimming', ',', 'group', '', 'from', 'different', 'categories', 'together', ',', 'the', 'only', 'separation', 'being', 'based', 'on', 'the', 'severity', 'of', 'the', 'disability', '.', '', '', '', '', '']\n", "['', 'noted', '', '', '', '(', '', 'member', 'of', 'gloria', '', \"'s\", 'band', ')', '', 'pérez', 'for', 'his', 'traditional', '(', '``', '', \"''\", ')', 'sound', ',', 'having', 'him', 'as', 'a', 'collaborator', 'in', 'his', 'records', 'released', 'by', 'the', '', 'label', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'gave', 'new', '', 'for', 'the', 'westminster', 'school', 'play', 'to', 'replace', 'the', 'sets', 'designed', 'by', '', 'stuart', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'both', 'the', '', 'stream', 'gas', 'pipeline', 'from', 'russia', '(', 'by', '``', '', \"''\", 'and', '``', '', \"''\", ')', 'and', 'several', 'power', 'plants', '(', 'by', '``', '', 'energy', \"''\", 'and', '``', '', \"''\", ')', 'are', 'under', 'construction', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'authors', 'began', 'to', 'share', 'the', 'column', ',', 'and', 'the', 'june', '1', '9', '8', '6', 'issue', 'saw', 'the', 'final', 'installment', 'under', 'that', 'title', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'population', ':', '2', '3', ',', '1', '4', '5', '(', '2', '0', '0', '2', 'census', ')', ';', 'the', 'population', 'of', '', 'accounts', 'for', '3', '9', '.', '9', '%', 'of', 'the', 'district', \"'s\", 'total', 'population', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'known', 'for', 'his', 'film', '``', 'the', '', 'prime', 'minister', \"''\", 'starring', '', '', 'and', '', '', 'the', 'film', 'was', 'based', 'on', 'the', 'on', 'book', 'written', 'by', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'the', 'native', 'american', 'programs', 'act', 'of', '1', '9', '7', '4', 'to', '', 'the', 'secretary', 'of', 'health', 'and', 'human', 'services', ',', 'as', 'part', 'of', 'the', 'native', 'american', 'languages', 'grant', 'program', ',', 'to', 'make', 'three-year', 'grants', 'for', 'educational', 'native', 'american', 'language', 'nests', ',', 'survival', 'schools', ',', 'and', 'restoration', 'programs', '.', '']\n", "['', 'supports', 'could', 'include', ':', '', 'a', 'job', ',', 'adding', '', 'or', '', 'technology', ',', '', 'on', 'the', 'job', 'site', 'training', 'among', 'other', 'approaches', ',', 'such', 'as', '', 'network', 'relationships', '(', 'e.g.', ',', 'family', 'business', ',', 'local', 'job', 'sites', 'and', 'owners', ')', 'and', 'training', 'parents', 'regarding', 'better', 'futures', '.', '', '']\n", "['', 'in', 'the', 'general', 'election', ',', 'he', 'was', 'opposed', 'by', 'jimmy', 'carr', ',', 'the', 'democratic', 'nominee', ',', 'and', 'neil', '', ',', 'the', '', 'nominee', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'a', 'performance', 'at', 'an', 'israeli', 'independence', 'day', 'party', ',', 'datner', 'continues', 'to', 'help', '', '', 'with', 'his', 'relationship', 'lessons', 'by', '', 'him', 'up', 'with', 'two', 'girls', ',', 'who', 'later', 'are', 'seen', 'as', 'drunk', 'and', 'begin', '', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'rahman', '(', ',', 'born', '2', '6', 'february', '1', '9', '8', '7', ')', ',', 'also', 'known', 'as', '', 'lee', '', ',', 'is', 'a', 'hong', 'kong', 'actor', ',', 'singer', 'and', 'songwriter', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', '', 'were', 'eliminated', 'in', 'the', '1', '9', '8', '2', 'nhl', 'playoffs', ',', '', 'was', 'able', 'to', 'join', 'the', 'finnish', 'national', 'team', 'in', '1', '9', '8', '2', 'world', 'championships', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'over', 'the', 'red', ',', 'black', 'and', 'white', 'canvas', 'there', 'is', 'a', 'poem', 'written', 'in', '', 'by', 'poet', '', 'mitchell', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '5', ',', 'a', 'clash', 'which', 'took', 'place', 'in', '', ',', '', 'killed', '4', '4', 'members', 'of', 'the', 'philippine', 'national', '', 'action', 'force', ',', 'resulting', 'in', 'efforts', 'to', 'pass', 'the', '', 'basic', 'law', 'reaching', 'an', '', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'work', 'was', ',', 'and', 'is', ',', 'so', 'alive', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'the', 'administrative', 'and', 'transport', 'center', 'for', 'the', 'surrounding', 'agricultural', 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', '', \"'s\", 'help', ',', 'the', 'team', 'overthrow', '', 'and', 'he', 'is', 'replaced', 'by', 'billy', ',', 'a', 'retired', 'school', 'baseball', 'coach', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'like', 'a', 'number', 'of', 'officers', 'with', 'colonial', 'experience', ',', '', 'wanted', 'the', 'french', 'army', 'to', 'give', 'up', 'the', '``', '', '', \"''\", '(', 'red', '', 'worn', 'by', 'french', 'soldiers', ',', 'allegedly', 'as', 'a', '', 'to', 'morale', ')', 'and', '', 'a', 'less', '', 'uniform', '.', '', '', '', '', '', '']\n", "['', '', 'performed', 'during', 'the', 'production', 'with', 'both', 'academy', 'award', 'winner', '', 'duke', 'and', 'emmy', 'award', 'winner', 'carol', '', ',', 'both', 'as', 'madame', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'lies', 'approximately', 'north-east', 'of', '', '', 'and', 'east', 'of', 'warsaw', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'over', 'the', 'next', '2', '6', 'years', 'they', 'would', 'pair', 'these', 'songs', 'together', 'over', '5', '0', '0', 'times', ',', 'most', 'often', 'as', 'a', 'second', 'set', 'opener', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'males', 'also', 'spend', 'much', 'of', 'their', 'time', 'in', 'the', 'tree', 'tops', ',', 'defending', 'their', 'territory', 'from', '', ',', 'though', 'they', 'will', 'sometimes', '', 'to', '', 'from', '', 'or', 'feed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'project', 'is', 'funded', 'by', 'both', 'the', 'state', 'and', 'federal', 'governments', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hop', 'is', 'the', 'only', '', 'who', 'was', 'being', 'heavily', '', 'by', '', '', 'due', 'to', 'her', '', 'in', 'the', 'action', 'skills', ',', 'but', 'despite', 'of', 'this', ',', 'she', 'kept', 'herself', 'moving', 'until', 'she', 'went', 'on', 'top', 'of', 'the', 'game', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'may', '1', ',', '1', '9', '3', '6', ',', 'he', 'became', 'lieutenant', 'governor', 'of', 'british', 'columbia', ',', 'achieving', 'considerable', 'popularity', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'known', 'works', 'were', 'produced', 'in', '1', '5', '0', '4', 'or', '1', '5', '0', '5', ',', 'in', '1', '5', '1', '1', ',', 'and', 'in', '1', '5', '3', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'song', 'peaked', 'on', 'the', 'us', '``', 'billboard', \"''\", '', 'under', 'r', '&', 'amp', ';', '', 'singles', 'at', 'number', 'one', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '3', '6', '4', 'king', 'louis', 'i', 'gave', 'them', '', 'castle', 'together', 'with', 'its', 'estate', ',', 'and', 'thus', 'they', 'became', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'railway', 'station', 'and', '', 'railway', 'station', 'are', 'the', '', 'railway', 'stations', 'of', '', ',', 'which', 'are', '4', 'km', 'and', '8', 'km', 'away', ',', 'respectively', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'deployment', 'was', 'at', 'the', 'request', 'of', 'the', 'committee', 'of', 'safety', ',', 'which', 'claimed', 'an', '``', '', 'threat', 'to', 'american', 'lives', 'and', 'property', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'song', 'reached', 'number', '2', 'on', 'billboard', \"'s\", 'r', '&', 'amp', ';', 'b', 'chart', 'and', 'number', '3', '2', 'on', 'the', 'same', 'magazine', \"'s\", 'pop', 'charts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'tie-', '1', 'uses', '', 'to', 'convert', 'carbon', 'dioxide', 'into', '', 'for', 'itself', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '``', '', 'de', '', \"''\", 'uses', 'it', 'in', 'meaning', '2', 'and', 'the', '``', '', \"''\", 'uses', '``', 'zhen', \"''\", 'in', 'meanings', '1', ',', '3', ',', '4', ',', '5', ',', '6', ',', 'and', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'consequence', 'of', 'construction', 'going', 'on', 'in', 'the', 'library', ',', 'she', 'was', '', 'by', 'the', 'voices', 'she', 'heard', 'next', 'door', ',', 'and', 'the', 'light', '', 'through', 'the', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'a', 'pioneering', 'specialist', 'in', 'the', 'field', 'of', 'sustainable', 'development', 'and', 'has', 'worked', 'internationally', 'in', 'educational', 'reform', ',', 'international', 'and', 'regional', 'environmental', 'project', 'management', 'and', 'conflict', 'resolution', ',', 'environmental', 'education', 'and', 'curriculum', 'development', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'new', 'zealand', '', 'is', 'used', 'in', 'elections', 'to', 'small', 'number', 'of', 'local', 'authorities', 'and', 'in', 'all', 'elections', 'for', 'district', 'health', 'boards', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '3', ',', 'the', 'newspaper', 'launched', '``', 'la', '', \"''\", ',', 'a', 'free', 'digital', 'edition', 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'building', 'would', 'house', 'the', 'factory', 'and', 'offices', 'of', 'the', '', 'company', ',', 'a', '', 'manufacturer', 'that', 'wrigley', 'was', 'affiliated', 'with', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'instead', ',', 'ice', 'volcanoes', 'are', 'created', 'by', 'waves', '', 'with', '', 'at', 'the', 'edge', 'of', 'an', 'ice', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '7', '6', 'he', 'was', 'invited', 'by', 'french', 'composer', 'pierre', '', 'to', '', 'for', 'a', 'week', 'of', 'performances', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'my', '', \"''\", ',', 'which', 'was', 'released', 'the', 'same', 'year', ',', 'was', 'his', 'third', 'album', 'in', 'a', '', 'period', 'to', 'peak', 'at', 'number', '8', '3', 'on', 'the', '``', 'billboard', \"''\", 'top', 'r', '&', 'amp', ';', 'b', 'albums', 'chart', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'day', 'of', 'the', '', \"''\", 'is', 'the', 'seventh', 'episode', 'of', 'the', 'of', 'the', 'american', 'science', 'fiction', 'television', 'series', '``', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'search', 'of', 'food', ',', 'young', 'strong', 'people', 'would', 'walk', 'for', '', 'of', 'kilometers', 'to', 'trade', '', 'for', 'food', 'at', 'farms', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', '4', '', 'highway', 'in', 'jharkhand', 'constructed', 'on', 'nh', '2', '0', ',', 'nh', '4', '3', 'and', '', 'ring', 'road', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ruth', 'also', 'recorded', 'with', 'george', 'clinton', ',', 'and', 'he', 'appeared', 'on', 'the', '2', '0', '0', '3', 'compilation', '``', '6', 'degrees', 'of', '', ':', 'the', 'best', 'of', 'george', 'clinton', '&', 'amp', ';', 'his', '', 'family', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'released', '3', '1', '2', '``', '', 'with', 'the', 'sinister', 'cleaners', 'and', 'toured', 'the', 'uk', 'and', 'europe', 'with', 'them', 'from', '1', '9', '8', '5', 'to', '1', '9', '8', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'fighting', '', ';', 'the', 'woman', 'plays', 'music', '', ',', 'causing', 'the', 'infected', 'to', 'stop', 'attacking', 'and', 'cover', 'their', 'ears', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'world', 'war', 'ii', ',', 'hoover', 'was', 'again', '', 'with', 'providing', 'food', 'to', '', 'countries', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'uk', ',', 'a', 'digital', 'bundle', 'was', 'released', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'born', 'to', 'punjabi', 'indian', 'parents', 'in', 'portsmouth', 'on', 'the', 'south', 'coast', 'of', 'england', ',', 'but', 'now', 'resides', 'in', 'mumbai', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'simon', 'left', 'the', 'sinister', 'cleaners', 'to', 'join', 'the', 'wedding', 'present', 'as', 'drummer', 'in', '1', '9', '8', '7', ',', 'working', 'briefly', 'with', 'sinister', '', '', '', 'and', '', '', 'in', 'the', 'wedding', 'present', '', 'band', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'g.', 'earl', '', ',', 'the', 'president', 'of', 'louisiana', 'college', 'from', '1', '9', '5', '1', 'to', '1', '9', '7', '5', ',', 'said', 'of', 'his', 'friend', ':', '``', 'i', 'feel', 'toward', 'j.', 'd.', 'grey', 'about', 'like', 'winston', 'churchill', 'felt', 'toward', 'his', 'friend', ',', 'the', 'first', 'earl', 'of', '', '.', '', '', '']\n", "['', 'in', '1', '8', '8', '1', ',', 'he', 'was', '', 'in', 'the', '', 'laboratory', ',', 'and', 'in', '1', '8', '8', '2', ',', 'he', 'was', 'an', 'instructor', 'in', 'nervous', 'diseases', ',', 'also', 'at', 'the', 'university', 'of', 'pennsylvania', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'died', 'on', 'pelee', 'island', 'at', 'the', 'age', 'of', '5', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'drafted', 'into', 'the', 'army', 'in', '1', '9', '7', '0', ',', 'and', 'was', 'stationed', 'in', 'washington', ',', 'd.c.', 'part', 'of', 'his', 'responsibility', 'was', '', '', 'richard', '', 'as', 'he', 'boarded', 'the', 'presidential', 'helicopter', 'and', 'he', 'was', 'awarded', 'the', 'presidential', 'service', '', '.', '', '', '', '', '', '', '']\n", "['', 'gowdy', 'has', 'been', 'nominated', ',', 'repeatedly', ',', 'for', 'every', 'major', 'canadian', 'book', 'prize', ',', 'including', 'the', '', 'prize', '(', 'twice', '', ',', 'once', '', ')', ';', 'the', 'governor', 'general', \"'s\", 'award', '(', '', '', ')', ';', 'and', 'the', 'rogers', 'writers', \"'\", 'trust', 'fiction', 'prize', '(', '', 'listed', ')', '.', '']\n", "['', '', 'drew', '1', '7', '4', 'votes', ',', 'compared', 'to', '1', '3', '0', 'for', 'runner-up', 'el', '', '', '', ',', 'and', '2', '6', 'for', 'third', 'candidate', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'name', 'of', 'cornwall', \"'s\", 'rugby', 'league', 'team', ',', 'the', '', 'rebels', ',', 'was', 'inspired', 'by', 'the', '', 'rebellion', 'of', '1', '4', '9', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'facing', 'the', 'emergence', 'of', '', '', '', 'and', '', '', '', ',', '', 'failed', 'to', 're-establish', 'the', '', 'leadership', 'on', 'the', '', 'and', 'finished', '5', 'th', 'in', 'the', '2', '0', '1', '7', 'presidential', 'election', ',', 'gathering', 'only', '6', '.', '3', '6', 'percent', 'of', 'the', 'votes', '.', '', '', '', '']\n", "['', 'they', 'were', 'used', 'to', 'transport', 'the', 'patient', 'to', 'hospital', 'care', ',', '', '', 'with', '', 'up', 'ambulance', 'crews', 'and', 'allowing', 'the', 'patient', 'to', 'reach', 'hospital', 'care', '', 'than', '', 'for', '', 'transport', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'the', '', 'registered', 'with', 'the', '', 'circle', 'they', 'rose', 'to', 'their', '', 'height', 'and', 'turned', '', '...', \"''\", '', 'the', 'work', ',', 'years', 'later', ',', 'graham', '', '', '', 'noted', 'the', 'dance', 'could', 'be', 'interpreted', 'as', 'the', 'contrast', 'between', 'martha', \"'s\", '', 'and', 'tradition', '.', '', '', '', '']\n", "['', 'the', '4', '0', '0', '', 'race', 'was', 'won', 'by', '', 'johnson', 'of', 'the', '', '', 'team', 'after', 'he', 'started', 'from', 'pole', 'position', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'lydia', 'decides', 'to', 'ask', 'her', '', '', '', ',', 'who', 'has', 'known', 'tanja', 'for', 'a', 'very', 'long', 'time', 'and', 'is', '', 'that', 'she', \"'s\", 'a', 'very', 'dangerous', 'woman', 'and', 'goes', 'over', 'dead', 'bodies', 'to', 'get', 'what', 'she', 'wants', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'next', 'performance', 'was', '2', '8', 'years', 'later', ',', 'on', '6', 'november', '1', '9', '5', '0', 'in', '[', '[', 'carnegie', 'hall', ']', ']', ',', '[', '[', 'new', 'york', 'city', ']', ']', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'elk', 'have', 'thick', 'bodies', 'with', '', 'legs', 'and', 'short', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'hull', '', 'him', ',', 'noting', 'that', 'as', 'an', 'aviation', 'expert', ',', '', 'had', 'served', 'in', 'all', '', 'since', 'that', 'of', '', ',', 'regardless', 'of', 'party', ',', 'and', 'that', 'he', 'himself', 'belonged', 'to', 'no', 'party', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'move', 'down', 'yields', 'two', '', '', 'and', 'a', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'created', 'his', 'personal', 'group', 'in', 'the', 'early', '1', '9', '7', '0', 's', ',', 'with', 'a', '', 'which', 'included', ',', 'among', 'others', ',', '', '', \"'s\", '``', 'the', 'trial', \"''\", ',', 'arthur', 'miller', \"'s\", '``', 'view', 'from', 'the', 'bridge', \"''\", 'and', '', \"'s\", '``', 'the', '', 'opera', \"''\", '.', '']\n", "['', 'he', 'was', 'related', 'to', 'michael', 'pertwee', 'and', 'jon', 'pertwee', ',', 'being', 'a', 'second', 'cousin', 'of', 'michael', \"'s\", 'and', 'jon', \"'s\", 'father', ',', 'the', '', 'and', 'actor', 'roland', 'pertwee', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'appeal', ',', 'irvine', 'was', 'banned', 'for', 'three', 'races', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'located', 'on', 'the', 'eastern', 'end', 'of', 'long', 'island', ',', 'across', 'the', '', 'linking', 'long', 'island', 'with', 'the', 'mainland', 'and', 'was', 'in', 'use', 'from', 'at', 'least', '1', '5', 'august', '1', '8', '8', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '5', ',', '', 'published', 'the', 'first', 'issue', 'of', 'his', '', 'graphic', 'novel', '``', 'a', 'light', 'before', 'the', 'darkness', \"''\", ',', 'a', 'biography', 'of', 'the', 'artist', '', 'on', 'the', '', 'distribution', 'platform', '', 'with', 'a', 'limited', 'first', 'printing', 'for', 'patrons', 'of', 'his', 'successful', '', 'campaign', '.', '']\n", "['', 'in', 'that', 'scheme', 'of', 'international', '', 'racing', '', 'french', 'cars', 'were', 'blue', '(', '', 'de', 'france', ')', ',', 'british', 'cars', 'were', 'green', '(', 'british', 'racing', 'green', ')', ',', 'etc', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'may', '2', '1', ',', '1', '9', '9', '8', ',', 'mcmahon', 'was', 'nominated', 'by', 'president', 'bill', 'clinton', 'to', 'a', 'seat', 'on', 'the', 'united', 'states', 'district', 'court', 'for', 'the', 'southern', 'district', 'of', 'new', 'york', 'vacated', 'by', 'john', 'f.', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'immigration', 'and', 'emigration', ',', 'the', 'population', 'of', 'swiss', 'citizens', 'decreased', 'by', '3', 'while', 'the', 'foreign', 'population', 'remained', 'the', 'same', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'gaston', \"'s\", '', 'lead', 'to', 'a', '', '', 'sequence', 'in', '', \"'s\", 'customary', 'manner', ':', 'the', 'characters', 'rush', 'in', 'and', 'out', ',', 'hide', ',', 'and', 'are', 'mistaken', 'for', 'others', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '3', '1', ',', 'land', 'for', 'the', 'church', 'was', 'leased', 'from', 'a', 'local', 'family', ',', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'initiative', 'soon', 'became', 'a', '', 'topic', 'on', '', ',', 'a', 'main', 'social', 'media', 'in', 'china', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'of', 'these', '', 'five', 'were', 'launched', ',', 'whilst', 'three', 'were', 'retained', 'as', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'anna', '', ',', 'or', 'anna', '', 'is', 'a', 'norwegian', 'director', ',', 'writer', 'and', 'artistic', 'director', 'living', 'in', 'los', 'angeles', 'and', 'oslo', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'three', 'years', 'from', '2', '0', '1', '4', '', ',', 'the', '', 'reported', 'losses', 'on', 'its', 'form', '9', '9', '0', ',', '', 'nearly', '$', '3', 'million', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'also', 'features', '', 'people', 'and', '', '', 'able', 'to', '', 'with', 'global', 'climate', 'change', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'western', 'members', 'of', 'the', 'assembly', 'however', 'assumed', 'their', 'offices', 'in', 'richmond', ',', 'which', 'reflected', 'the', 'deep', 'divisions', 'among', 'the', 'western', 'counties', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'brief', ',', '3', '', 'moment', 'of', 'the', '', '', '', 'off', 'a', '', 'from', 'the', 'doctor', 'survives', 'from', 'episode', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'his', '', 'team', 'ran', 'out', 'of', 'money', ',', 'he', 'returned', 'to', 'modified', 'racing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', 'also', 'spelled', 'as', '', ')', 'is', 'a', 'village', 'in', 'the', '', 'taluk', 'of', '', 'district', 'in', 'the', 'indian', 'state', 'of', 'karnataka', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'a', 'long', 'and', '', '', ',', 'one', 'had', 'died', 'at', 'sea', ',', 'three', 'of', 'them', 'landed', 'at', 'penang', 'in', 'april', '1', '8', '5', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'tilottama', 'is', 'currently', 'a', 'professor', 'of', 'humanities', 'at', 'new', 'york', 'university', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'can', 'be', 'seen', 'as', 'a', 'branch', 'of', 'the', 'carbon', 'cycle', ',', 'which', 'also', 'includes', 'the', 'organic', 'carbon', 'cycle', ',', 'in', 'which', 'biological', 'processes', 'convert', 'carbon', 'dioxide', 'and', 'water', 'into', 'organic', 'matter', 'and', 'oxygen', 'via', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'were', '1', '2', '6', 'apartments', 'in', 'the', 'municipality', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'suitable', 'for', 'occasions', 'such', 'as', '', 'and', 'formal', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'originally', 'had', 'a', '6', 'th', 'form', ',', 'lost', 'in', 'a', '', 'in', '1', '9', '8', '8', ',', 'when', 'the', 'lower', 'school', 'buildings', 'became', 'the', 'wood', 'lane', 'buildings', 'of', '', 'college', ',', 'part', 'of', 'sheffield', 'college', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'despite', 'the', 'british', 'conquest', 'of', '', 'in', '1', '7', '1', '0', ',', 'nova', 'scotia', 'remained', 'primarily', 'occupied', 'by', 'catholic', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thus', 'a', '', '6', 'engine', 'has', 'two', 'banks', 'of', 'three', 'cylinders', 'at', 'an', 'angle', 'driving', 'a', 'common', '', ',', 'a', '', '1', '2', 'two', 'groups', 'of', 'six', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'even', 'after', '', \"'s\", 'overthrow', 'by', '', 'iii', '', '(', ')', ',', 'bryennios', 'continued', 'his', '', ',', 'and', 'threatened', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'injury', '', 'the', 'entry', 'of', '', 'and', 'causes', 'stress', 'to', 'the', 'plant', ',', 'reducing', 'its', 'growth', 'and', 'fruit', 'production', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'intention', 'to', '', 'the', 'former', 'french', 'ship', 'into', 'the', '``', '', '', \"''\", 'was', ',', 'however', ',', '', 'by', 'italy', \"'s\", 'chronic', 'oil', 'fuel', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', 'born', 'cape', 'town', ',', 'south', 'africa', ',', '1', '9', '8', '1', ')', 'is', 'a', 'south', 'african', 'artist', 'based', 'in', 'johannesburg', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'alexei', 'was', 'a', 'handsome', 'boy', ',', 'and', 'he', '', 'a', 'striking', 'resemblance', 'to', 'his', 'mother', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'prior', 'to', '', ',', 'due', 'to', 'the', 'state', 'of', 'the', 'law', 'in', 'england', 'at', 'the', 'time', ';', 'australian', 'law', 'regarding', 'the', '', 'of', 'proof', 'in', 'divorce', 'cases', '', 'a', 'little', 'confused', \"'\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'a', 'journal', 'of', 'african', '', 'arts', 'and', 'letters', ',', 'is', 'a', 'quarterly', 'literary', 'magazine', 'that', 'was', 'established', 'in', '1', '9', '7', '6', 'by', 'charles', '', ',', 'who', 'remains', 'its', 'editor-in-chief', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'attended', 'the', 'local', '', 'mission', 'school', ',', 'before', 'completing', 'his', 'secondary', 'education', 'at', '', 'high', 'school', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hispanic', 'or', 'latino', 'of', 'any', 'race', 'were', '1', '.', '6', '%', 'of', 'the', 'population', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'performances', 'were', 'released', 'as', '', 'on', 'the', '``', 'i', 'feel', 'possessed', \"''\", 'cd', 'single', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'arise', 'from', 'the', 'two', 'ends', 'of', 'the', '', ';', 'those', 'from', 'the', '', 'end', '', 'the', '', '', 'and', 'those', 'from', 'the', '', 'end', 'supply', 'the', 'rest', 'of', 'the', 'body', ',', 'the', '', '', ',', 'organs', ',', 'gut', 'and', 'the', '', 'of', 'the', 'body', 'wall', '.', '', '', '']\n", "['', 'in', 'the', 'french', 'journal', '``', 'la', '', \"''\", ',', 'he', 'affirmed', 'his', 'belief', 'in', 'the', 'orthodox', 'church', ',', 'and', 'advised', 'his', '', 'to', 'restrict', 'themselves', 'to', 'the', 'simple', 'issue', 'of', 'the', 'existence', 'of', 'the', 'buddhist', '', 'at', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'represented', 'her', 'hometown', 'of', 'west', '', ',', 'new', 'york', 'as', 'the', '9', 'th', 'district', '', 'county', '', 'from', '1', '9', '9', '1', 'to', '1', '9', '9', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hispanic', 'or', 'latino', 'of', 'any', 'race', 'were', '1', '.', '5', '%', 'of', 'the', 'population', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'fia', \"'s\", 'vision', 'of', 'a', 'single', 'unified', 'formula', 'for', 'the', '', 'world', 'championship', 'that', 'would', '', 'equal', 'that', 'of', 'formula', 'one', 'was', 'finally', 'into', 'place', 'following', 'the', 'development', 'of', '3', '5', '0', '0', '', '', 'in', 'the', 'previous', 'seasons', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', ',', '``', '', \"''\", 'have', 'access', 'to', '``', '', \"''\", 'to', 'help', 'them', 'with', '', 'and', 'administrative', 'questions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'adam', 'christopher', 'john', '', '(', 'born', '1', '6', 'october', '1', '9', '8', '4', ')', 'is', 'a', 'british', 'paralympic', 'cyclist', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', '', 'senior', 'in', '2', '0', '0', '8', ',', 'barnes', 'played', 'in', 'the', 'first', 'seven', 'games', 'before', 'suffering', 'a', 'shoulder', 'injury', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'late', 'august', '2', '0', '1', '1', ',', '', 'farms', 'opened', 'a', 'private', 'collective', ',', 'maintaining', 'it', 'as', 'a', 'separate', 'entity', 'from', '', 'farms', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'reconstruction', 'has', 'been', 'made', 'from', 'the', '', 'which', 'are', 'kept', 'in', 'the', '', 'nationale', 'de', 'france', ',', 'taking', 'into', 'account', 'the', 'written', '', 'and', '', 'of', '', 'and', '', 'certain', 'errors', 'on', 'the', 'part', 'of', 'the', '', '', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'village', 'in', 'the', 'administrative', 'district', 'of', 'gmina', '', ',', 'within', '', 'county', ',', 'masovian', 'voivodeship', ',', 'in', 'east-central', 'poland', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'april', 'and', 'may', '2', '0', '0', '4', ',', 'the', 'group', 'supported', 'story', 'of', 'the', 'year', 'on', 'their', '', 'us', 'tour', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'railways', '-', 'except', 'the', '', '-', 'was', '', 'as', 'tanzania', 'railways', 'corporation', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'then', ',', 'the', 'band', 'had', 'shown', 'him', 'the', 'a', '', 'of', 'future', 'tours', ',', 'which', 'encouraged', 'aro', 'to', '', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'october', 'that', 'same', 'year', ',', '', 'moved', 'operations', 'to', '', ',', 'iowa', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '1', '0', 'th', 'edition', 'of', 'the', 'event', ',', 'organised', 'by', 'the', 'world', \"'s\", 'governing', 'body', ',', 'the', '', ',', 'in', 'conjunction', 'with', 'the', '', ',', 'was', 'held', 'in', 'australia', \"'s\", 'largest', 'city', ',', 'sydney', ',', 'from', '1', '7', 'september', 'to', '1', 'october', '2', '0', '0', '0', '.', '', '']\n", "['', 'in', '2', '0', '1', '2', ',', 'park', 'also', '', 'to', '', 'a', 'new', 'airport', 'in', 'the', 'southeastern', 'region', ',', 'a', '2', '0', '0', '8', 'presidential', 'campaign', 'promise', 'made', 'by', '', 'but', 'cancelled', 'in', '2', '0', '1', '1', ',', 'despite', 'claims', 'of', 'economic', '', 'of', 'the', 'plan', '.', '', '', '']\n", "['', 'stance', 'can', 'be', 'used', 'to', '', 'personal', 'value', 'to', 'an', 'object', 'by', 'way', 'of', 'describing', 'how', 'the', 'speaker', 'feels', 'about', 'it', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'total', 'of', '3', '4', '8', '', 'were', 'built', ',', 'of', 'which', '4', '4', 'were', 'the', '', '', '.', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'none', 'of', 'those', 'would', 'eventually', 'make', 'it', 'to', 'the', 'actual', 'mr', 'wagon', ',', 'which', 'went', 'on', 'sale', 'on', 'january', '2', '0', '(', '', 'on', 'february', '1', ')', 'the', 'following', 'year', ',', 'while', 'on', 'the', 'other', 'hand', 'the', 'model', 'features', 'the', 'new', '', 'entry', 'and', 'start', 'system', '.', '', '', '']\n", "['', 'now', ',', 'with', 'almost', 'all', 'members', 'of', 'the', '', 'central', 'committee', 'in', 'the', 'south', 'in', 'jail', ',', 'regional', 'leaders', 'took', 'matters', 'in', 'their', 'own', 'hands', 'and', 'began', 'to', 'plan', 'for', 'a', 'general', '', 'in', 'response', 'to', 'the', 'decisions', 'reached', 'at', 'the', 'sixth', '', 'the', 'previous', 'november', '.', '', '', '']\n", "['', '', 'american', 'university', 'is', 'a', '', 'school', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', 'magic', \"''\", 'is', 'a', 'song', 'by', 'the', 'american', 'recording', 'artist', 'childish', 'gambino', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'played', 'basketball', 'and', 'baseball', 'for', 'the', '', ',', 'helping', 'the', 'basketball', 'team', 'to', 'its', 'first', 'ever', 'regional', 'title', 'and', 'the', 'baseball', 'team', 'to', 'a', 'state', 'runner-up', 'finish', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'act', 'also', 'makes', 'it', 'a', 'felony', 'to', 'hire', ',', 'transport', ',', 'harbor', ',', 'or', '', 'illegal', 'or', '', 'immigrants', 'with', '', 'documentation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'an', 'element', 'that', 'the', 'crime', 'is', '(', 'or', 'appears', 'likely', 'to', 'be', ')', '``', 'unable', \"''\", 'to', 'be', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'convicted', 'in', 'september', '2', '0', '0', '8', 'to', '8', 'years', 'and', '6', 'months', 'of', 'imprisonment', 'by', 'the', 'court', 'of', 'bosnia', 'and', 'herzegovina', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'year', 'level', 'designation', 'is', 'on', 'the', 'shoulder', 'mark', 'in', 'blue', 'with', 'yellow', '', 'indicating', 'year', 'level', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '6', 'march', 'this', 'was', 'extended', 'to', 'all', 'borders', 'of', 'norway', 'and', 'nordic', '', 'citizens', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'also', 'a', 'small', 'number', 'of', 'works', 'which', 'survive', 'in', '', 'form', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'general', 'sale', 'began', 'on', '1', '6', 'and', '1', '7', 'december', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'former', '', 'of', '', 'was', 'located', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'system', 'could', 'generate', '2', ',', '0', '0', '0', '', 'of', 'light', 'for', 'a', 'single', 'photograph', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'idea', 'was', 'that', 'the', 'controller', 'could', 'be', 'operated', 'with', 'less', 'physical', 'force', ',', 'reducing', '', 'injuries', 'and', '``', '', '', \"''\", ',', 'thereby', 'improving', 'player', '', 'and', 'health', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rings', 'are', 'fabricated', 'from', 'any', 'combination', 'of', 'plate', ',', '', 'or', 'w', 'shape', 'that', 'the', 'shop', 'can', 'roll', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'cap', '', 'to', 'the', 'exterior', 'of', 'a', 'pipe', ',', 'and', 'may', 'have', 'a', '', 'socket', 'end', 'or', 'a', '', 'interior', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'april', 'came', 'word', 'of', 'general', 'lee', \"'s\", 'surrender', ',', 'and', 'the', 'camp', 'began', 'to', '', 'the', 'men', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'united', 'nations', 'humanitarian', 'coordinator', 'for', '', '', 'van', 'der', '', 'said', 'that', 'these', '', '', 'a', 'war', 'crime', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'historically', 'the', 'bottle', 'size', '', 'to', 'the', 'amount', 'of', 'wine', 'left', 'over', 'after', 'six', 'years', 'of', 'aging', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'important', ',', 'as', 'the', 'market', 'was', 'growing', 'quickly', 'at', 'the', 'beginning', 'of', 'the', '2', '0', 'th', 'century', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'adults', 'live', 'in', 'the', 'bee', 'nests', ',', 'and', '', '', 'on', 'the', 'adult', 'bees', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hence', 'galaxies', '', 'active', 'make', 'up', 'a', 'large', 'fraction', '(', '3', '1', '%', ')', 'of', 'the', 'atlas', 'sample', ',', 'and', '', '4', '3', '%', 'of', 'the', 'total', 'sample', 'if', 'other', 'atlas', 'galaxies', 'with', 'activity', 'as', 'a', '', 'are', 'included', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'later', ',', 'production', 'was', '', 'to', 'malaysia', 'and', 'southeast', 'asia', 'in', 'order', 'to', 'increase', 'sales', 'in', 'those', 'regions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', 'died', '9', 'september', '1', '9', '7', '1', ')', 'was', 'a', 'cook', '', 'businessman', 'and', 'politician', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'basketball', 'began', 'to', 'be', 'practised', 'at', 'the', 'club', 'in', '1', '9', '2', '5', 'when', 'the', 'first', 'court', 'was', 'built', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'is', 'the', 'case', 'for', 'our', 'father', ',', 'mother', 'land', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'he', 'is', '', 'ibis', 'offers', 'to', 'tell', 'him', 'stories', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'phillips', '(', 'born', '1', '8', 'september', '1', '9', '5', '2', ')', 'is', 'an', 'english', 'retired', 'professional', 'footballer', 'who', 'played', 'in', 'the', 'football', 'league', 'for', 'four', 'clubs', 'between', '1', '9', '6', '9', 'and', '1', '9', '8', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'earned', 'significant', 'praise', 'as', 'a', 'result', 'and', 'later', 'became', 'a', 'cardinal', ',', 'gaining', 'much', 'political', 'influence', 'and', 'extending', 'the', 'corruption', 'within', 'basin', 'city', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'described', 'as', 'the', '``', 'love', 'child', 'of', 'the', 'british', 'version', 'of', '``', 'the', 'office', \"''\", 'and', 'an', '', 'conversation', 'about', 'science', 'between', 'two', '', 'informed', '', ',', \"''\", 'the', 'show', 'was', 'about', 'a', 'real', 'podcast', 'that', 'is', 'set', 'in', 'a', 'fictional', 'world', '.', '', '', '', '', '', '', '']\n", "['', 'on', 'july', '8', ',', '1', '9', '8', '3', ',', 'a', 'fire', 'destroyed', 'most', 'of', 'the', 'remaining', 'hotel', 'and', 'today', 'the', 'site', 'lies', 'in', 'ruins', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'studies', 'indicated', 'both', 'type', 'of', '', 'improve', 'the', 'hand', 'function', 'and', 'reduce', 'the', 'pain', 'in', 'people', 'with', 'tennis', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'emerging', 'from', 'the', 'grand', 'canyon', ',', 'dox', 'wrote', 'that', '``', 'in', 'all', 'the', 'wide', ',', 'wide', 'world', 'there', 'can', 'be', 'nothing', 'more', 'wonderful', 'and', 'beautiful', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', '', 'of', 'the', '7', 'or', '5', 'years', 'respectively', ',', 'the', 'foreign', 'national', 'can', 'generally', 'only', 'qualify', 'for', '', '1', 'status', 'again', 'by', 'working', 'abroad', 'for', 'at', 'least', '1', 'year', 'for', 'the', 'parent', ',', 'subsidiary', ',', 'affiliate', 'or', 'branch', 'office', 'of', 'the', 'u.s.', 'company', '.', '', '', '', '']\n", "['', 'the', 'uk', ',', 'danish', 'and', 'finnish', 'releases', 'include', 'a', '', 'version', 'of', 'the', 'german', 'dub', 'and', 'finnish', ',', 'swedish', ',', 'english', ',', 'german', ',', 'arabic', ',', 'bulgarian', ',', 'czech', ',', 'danish', ',', 'dutch', ',', 'hungarian', ',', '', ',', 'norwegian', ',', 'polish', ',', 'romanian', ',', 'and', 'turkish', 'subtitles', '.', '', '']\n", "['', 'the', 'low', 'agricultural', '', 'across', 'wide', 'areas', 'resulted', 'in', 'a', 'relatively', '', 'population', 'and', ',', 'especially', 'in', 'the', '2', '0', 'th', 'century', ',', 'it', 'was', 'extensively', 'used', 'for', 'military', 'training', 'purposes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'name', 'may', 'also', 'be', 'a', 'reference', 'to', 'these', 'two', 'teams', 'being', 'among', 'the', 'original', 'eleven', 'members', 'of', 'the', 'scottish', 'football', 'league', 'formed', 'in', '1', '8', '9', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'condition', 'of', 'the', 'woods', 'is', '', 'as', '``', 'good', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'supported', 'robert', '', ',', 'the', 'former', '', 'president', 'of', 'zimbabwe', ',', 'during', 'his', 'leadership', 'of', 'ethiopia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'ridge', 'divides', 'the', 'indian', 'ocean', 'into', 'the', 'west', 'and', 'east', 'indian', 'ocean', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'revolution', 'of', '1', '8', '4', '8', 'forced', 'the', 'conservatory', 'to', 'close', 'down', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'nevertheless', ',', '', 'composition', 'is', 'designed', 'very', 'similarly', 'to', '', 'in', 'that', 'it', 'seeks', 'to', 'achieve', '', 'from', 'a', 'lower', 'level', 'of', 'awareness', 'to', 'a', '', 'union', 'with', 'god', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '', '', '(', '', ')', ',', 'is', 'a', 'rare', '', '', 'disorder', 'of', 'the', 'degradation', '', 'of', 'the', '', '', '', 'acid', ',', 'or', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'peaceful', 'and', '', 'by', 'nature', ',', 'the', '', 'move', 'in', 'a', 'unique', ',', '', 'way', 'and', 'their', 'vocal', '', 'are', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'initiative', 'is', '', 'by', 'a', 'network', 'of', 'primary', 'research', 'sites', 'and', '', 'centers', 'that', '', 'to', 'develop', 'the', 'items', 'and', 'tools', 'to', 'measure', '', ',', 'and', 'to', 'evaluate', 'the', '', 'and', 'validity', 'of', 'these', 'measures', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '1', '9', 'and', '1', '9', '2', '0', ',', 'frank', '', ',', 'chief', 'designer', 'of', 'the', 'bristol', '', 'company', ',', 'considered', 'designs', 'for', 'a', 'commercial', 'transport', 'aircraft', ',', 'ranging', 'from', '', ',', '', 'aircraft', 'to', '', 'aircraft', 'carrying', 'ten', 'passengers', ',', 'none', 'of', 'which', 'were', 'built', '.', '']\n", "['', 'the', '', 'was', 'tested', 'in', '', 'ranges', ',', '', ',', '', 'in', '1', '9', '0', '6', ',', 'but', 'never', 'adopted', 'for', 'military', 'use', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'argues', 'that', 'both', '', '', 'and', '', 'activists', 'use', 'the', 'term', '``', 'to', '', 'attention', 'away', 'from', 'more', '', 'discussions', 'on', 'the', '', 'of', 'muslim', 'communities', \"''\", ',', 'feeding', '``', 'a', 'language', 'of', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'israel', 'and', 'palestine', ',', '', 'wrote', ',', 'should', 'instead', 'work', 'toward', 'creating', 'a', 'fully', 'democratic', '', 'state', 'representing', 'both', 'jewish', 'and', 'palestinian', 'identity', ',', 'along', 'the', 'lines', 'of', 'belgium', 'or', 'northern', 'ireland', 'following', 'the', 'good', 'friday', 'agreement', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'medley', 'started', 'acting', 'at', 'age', '1', '2', 'when', 'she', 'won', 'a', 'part', 'in', 'an', 'international', 'commercial', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'south', 'doors', 'were', 'created', 'by', '', '', 'and', 'the', 'north', 'and', 'east', 'doors', 'by', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'country', \"'s\", 'second', 'pride', 'parade', 'took', 'place', 'in', 'june', '2', '0', '1', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'church', 'of', 'santa', 'cruz', '(', ')', 'is', 'a', 'catholic', 'church', 'situated', 'in', 'the', 'civil', 'parish', 'of', 'santa', 'cruz', ',', 'in', 'the', 'municipality', 'of', '', ',', 'in', 'the', 'portuguese', 'archipelago', 'of', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'the', 'said', 'organization', 'has', 'a', 'representative', 'elected', 'to', 'compete', 'through', '', 'samuel', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '4', ',', 'another', 'significant', 'change', 'was', 'made', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'expansion', 'included', 'danish', 'and', 'norwegian', 'as', 'well', 'as', 'swedish', 'elements', ',', 'all', 'under', 'the', 'leadership', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'british', 'empire', 'thus', '', 'the', '', '', 'of', 'muscat', 'that', 'came', 'to', 'power', 'in', 'the', 'second', 'half', 'of', 'the', '1', '8', 'th', 'century', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'before', '', 'wrote', 'her', 'first', 'book', ',', 'she', 'completed', 'undergraduate', 'studies', 'at', 'the', 'university', 'of', 'california', 'in', 'los', 'angeles', 'and', 'went', 'on', 'to', 'study', 'fine', 'art', 'at', 'the', 'california', 'college', 'of', 'the', 'arts', 'in', 'san', 'francisco', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'the', 'victory', 'of', 'the', 'paigc', 'in', 'the', '1', '9', '9', '4', 'parliamentary', 'election', ',', 'vieira', 'appointed', '', 'da', 'costa', ',', 'who', 'was', 'then', '', 'of', 'paigc', ',', 'as', 'prime', 'minister', 'on', '2', '5', 'october', '1', '9', '9', '4', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'san', '', '(', ')', 'is', 'a', '``', '', \"''\", '(', 'municipality', ')', 'in', 'the', 'province', 'of', '', 'in', 'the', 'italian', 'region', '', '', ',', 'located', 'about', 'northwest', 'of', '', 'and', 'about', 'northeast', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'russian', 'way', 'of', '', 'the', '', '', 'the', 'qing', 'side', 'and', 'became', 'a', 'new', 'reason', 'to', 'suspend', 'the', 'trade', 'for', '7', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '7', '1', ',', '', 'became', 'the', 'first', 'black', 'member', 'of', 'the', 'radio', 'and', 'television', 'news', 'directors', 'association', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '1', '7', 'a', 'house', 'was', 'constructed', 'near', 'the', 'lighthouse', ',', 'where', ',', 'in', '1', '9', '2', '9', ',', '', '', ',', 'sun', 'of', 'the', 'keeper', ',', 'was', 'born', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', 'october', '2', '0', '0', '6', ',', '', 'announced', 'that', 'it', 'would', '``', 'suspend', 'all', 'real', 'money', '', 'business', 'with', 'us', 'customers', \"''\", 'in', 'light', 'of', 'the', 'passage', 'of', 'the', '', 'internet', 'gambling', 'enforcement', 'act', 'of', '2', '0', '0', '6', '.', '', '', '', '', '', '', '', '']\n", "['', '', 'states', 'that', 'the', '``', '', \"''\", 'commanded', ',', 'as', 'the', 'name', '', ',', '2', '0', '0', 'men', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'median', 'income', 'for', 'a', 'household', 'in', 'the', 'city', 'was', '$', '4', '4', ',', '4', '4', '9', '(', '$', '5', '0', ',', '3', '0', '9', 'in', 'december', '2', '0', '0', '6', ')', ',', 'and', 'the', 'median', 'income', 'for', 'a', 'family', 'was', '$', '4', '8', ',', '6', '8', '9', '.', '']\n", "['', 'in', 'addition', ',', 'the', 'dvd', 'gives', 'viewers', 'the', 'option', 'to', 'play', 'the', 'original', 'hong', 'kong', 'version', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'formation', 'is', 'more', '', '', 'by', 'powerful', '', ',', 'which', '', 'the', 'ice', 'too', 'fast', 'for', '', 'creation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'about', '4', '8', '0', ',', '0', '0', '0', '', 'visit', 'the', 'area', 'each', 'year', ',', 'primarily', 'from', 'west', 'virginia', 'and', 'the', 'larger', 'cities', 'of', 'the', '', 'and', 'southeast', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'dr.', 'reynolds', '', 'the', ',', '', '', 'on', 'the', 'colin', '', 'design', 'used', 'for', '', 'norwegian', 'fishing', 'vessels', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'john', '', 'of', '``', 'the', 'hollywood', 'reporter', \"''\", 'wrote', 'that', 'clark', '``', '', 'no', 'comparisons', ',', 'bringing', 'to', 'her', '', 'of', 'sharon', 'her', 'own', 'distinctive', '', 'and', 'form', 'of', 'delivery', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'february', '1', '0', ',', '2', '0', '0', '9', ',', 'the', 'station', 'was', 'granted', 'a', 'license', 'to', 'cover', 'for', 'the', 'change', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'development', 'was', 'intended', 'to', 'house', 'around', '6', '0', ',', '0', '0', '0', 'inhabitants', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'hand', 'and', 'body', 'movements', ',', 'and', 'musical', 'accompaniment', 'dominated', 'by', '', 'and', '', ',', 'are', '', 'of', '', 'mask', 'dance', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'scheduled', '', 'and', 'scheduled', 'tribes', 'accounted', 'for', '1', '3', '.', '6', '4', '%', 'and', '0', '.', '4', '2', '%', 'of', 'the', 'population', 'respectively', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'also', 'believed', 'that', 'angiotensin', 'directly', '', '', '', ',', 'and', 'blocking', 'its', 'activity', 'can', 'thereby', 'slow', 'the', '', 'of', '', 'function', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'some', 'consider', 'the', 'plant', 'to', 'be', 'a', '', ',', 'its', 'roots', 'are', 'food', 'for', 'bears', ',', 'who', 'eat', 'it', 'after', '', 'as', 'a', '', 'or', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'a', '2', '0', '1', '5', 'survey', 'conducted', 'by', '``', '', \"''\", 'and', '', 'in', 'new', 'delhi', ',', 'mumbai', ',', '', ',', 'chennai', ',', 'hyderabad', ',', '', 'and', '', ',', 'it', 'was', 'found', 'that', '', 'offered', 'the', 'best', 'service', 'among', 'all', 'the', '', '', 'in', 'the', 'respective', 'cities', '.', '']\n", "['', 'the', 'merits', ',', 'difficulties', 'and', 'effectiveness', 'of', 'establishing', 'a', '', 'reserve', 'system', 'are', 'weighed', 'against', 'that', 'of', 'the', '', ',', 'or', '``', 'basket', 'currency', \"''\", 'strategy', ',', 'and', 'those', 'of', 'establishing', 'this', 'new', '``', 'global', 'reserve', 'currency', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'development', 'of', 'the', '', '1', 'freeway', 'took', 'away', 'commercial', 'traffic', 'that', 'previously', '', '', \"'s\", 'businesses', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'succeed', 'in', 'maneuvering', 'around', 'the', 'flank', 'of', 'an', 'island', 'of', 'resistance', 'and', 'in', 'capturing', ',', 'with', 'his', '', ',', 'four', 'machine', 'guns', 'and', '', 'german', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'also', 'noted', 'how', 'the', '``', 'most', 'striking', '', 'were', 'the', 'most', 'bare', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'election', ',', 'she', 'opposed', 'katz', \"'s\", 'decision', 'to', '', 'the', 'implementation', 'of', 'a', 'rapid', 'transit', 'plan', 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'meanwhile', ',', '', 'and', 'hillary', \"'s\", 'conflicts', '', 'since', 'both', 'salvador', 'and', 'hillary', 'find', 'themselves', 'working', 'together', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', \"'ve\", 'performed', 'at', '', '', 'music', 'hall', 'concerts', ',', 'the', 'national', 'women', \"'s\", 'music', 'festival', ',', 'and', '', 'around', 'the', 'country', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'surgical', 'elimination', 'of', 'the', 'blood', 'vessels', 'involved', 'is', 'the', 'preferred', '', 'treatment', 'for', 'many', 'types', 'of', 'avm', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ira', '', ',', '', 'ó', '', ',', 'gave', 'the', 'party', 'his', 'approval', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", '', \"'s\", 'poems', '``', 'mulga', 'bill', \"'s\", '', \"''\", ',', 'first', 'published', 'in', '``', 'the', 'sydney', 'mail', \"''\", 'in', '1', '8', '9', '6', ',', '', '', 'the', 'eponymous', 'character', 'as', '``', 'mulga', 'bill', ',', 'from', 'eaglehawk', ',', 'that', 'caught', 'the', '', '', \"''\", '.', '', '', '']\n", "['', 'on', 'ending', 'his', 'contract', 'with', '', ',', '', '', 'his', 'family', 'into', 'the', 'type', '1', '0', 'and', 'headed', 'to', 'the', 'alsace', 'region', ',', 'then', 'still', 'part', 'of', 'the', 'german', 'empire', ',', 'looking', 'for', 'a', 'factory', 'to', 'begin', 'producing', 'cars', 'of', 'his', 'own', '.', '', '', '', '', '', '', '']\n", "['', 'on', 'november', '1', '2', ',', '1', '9', '9', '5', ',', 'a', 'new', 'presidential', 'election', 'was', 'held', ',', 'and', 'in', 'the', 'second', 'round', 'on', 'january', '7', ',', '1', '9', '9', '6', ',', '', '', 'won', 'to', 'replace', 'de', 'león', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', '', \"''\", 'and', '``', 'drop', 'it', 'in', 'the', 'slot', \"''\", 'were', '', 'on', 'the', '', 'boys', \"'\", '1', '9', '8', '9', 'album', '``', 'paul', \"'s\", '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'promoted', 'to', 'first', 'lieutenant', 'in', 'june', '1', '9', '5', '7', ',', 'and', 'integrated', 'into', 'the', 'regular', 'marine', 'corps', 'in', 'january', '1', '9', '5', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'all', 'of', 'the', 'characters', 'to', 'whom', 'the', '', 'bear', 'resemblance', 'were', 'at', 'one', 'time', 'members', 'of', 'the', 'original', 'secret', 'society', 'of', '', ',', 'as', 'was', '', '', ',', 'so', 'it', \"'s\", 'assumed', 'that', 'he', 'got', 'the', '', 'samples', 'from', 'those', '', 'when', 'they', 'were', 'members', 'of', 'the', '', '.', '']\n", "['', 'the', 'building', 'is', 'now', '', 'and', 'has', 'a', 'red', '', 'roof', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'april', ',', 'she', 'became', 'a', 'guest', 'judge', 'for', '``', 'it', \"'s\", '', \"''\", 'and', 'appeared', 'as', '', 'in', 'the', '', '', '', 'episode', ',', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'current', '', 'and', 'vice-president', '(', 'academic', ')', 'is', 'dr.', '', '', ',', 'who', 'was', 'appointed', 'in', '2', '0', '1', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'played', 'college', 'football', 'at', 'the', 'university', 'of', 'texas', 'at', 'austin', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'the', 'state', 'senators', 'already', 'in', 'office', ',', 'and', 'the', 'senators', 'elected', 'in', 'april', '1', '8', '1', '5', 'under', 'the', 'previous', '', ',', 'should', 'represent', 'the', 'district', 'in', 'which', 'they', 'resided', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'died', 'in', '1', '5', '5', '9', ',', 'having', 'been', 'a', 'source', 'of', 'trouble', 'and', '', 'to', 'paulus', 'during', 'the', 'last', 'four', 'years', 'of', 'his', 'life', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'best', 'finish', 'in', 'a', 'major', 'was', 'a', '', 'tie', 'at', 'the', '1', '9', '9', '6', 'u.s.', 'open', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'a', 'small', 'area', 'of', 'the', '', '', 'rise', 'hills', 'and', 'the', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'research', 'was', 'abandoned', 'following', 'the', 'isolation', 'of', 'the', '', 'cluster', ',', 'although', 'it', 'did', 'yield', 'an', '', 'side', 'effect', '', 'the', '', 'holy', '', ',', 'immortality', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'g', '2', 'and', 'mi', '5', 'noted', 'that', '', 'members', 'were', 'often', 'found', 'attending', 'sinn', 'féin', 'meetings', 'and', 'speaking', 'from', 'their', 'platforms', 'along', 'with', 'the', 'fact', 'several', '', 'officials', 'had', 'sinn', 'féin', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', '', 'access', 'is', 'now', 'generally', 'available', ',', '', 'fast', '', 'access', 'is', 'limited', 'to', 'a', 'period', 'of', 'four', 'years', 'after', 'the', 'entry', 'into', 'force', 'of', 'the', 'act', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'of', 'more', 'lasting', 'significance', 'was', 'the', 'education', 'he', 'received', 'from', 'his', 'uncle', 'who', 'worked', 'as', 'the', 'head', 'gardener', 'at', 'a', 'nearby', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '1', '9', '9', '4', 'bankruptcy', 'of', 'orange', 'county', ',', 'california', 'further', '', 'the', 'need', 'for', 'ongoing', 'excellence', 'and', 'expertise', 'in', 'the', 'field', 'of', 'municipal', 'finance', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'following', 'month', ',', 'he', 'lost', 'to', 'pierre', 'carl', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'chart', 'ranks', 'the', 'top', 'one', 'hundred', '', 'to', 'songs', 'on', 'a', 'weekly', 'basis', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'debate', 'was', 'the', 'fourth', 'and', 'final', 'debate', 'appearance', 'of', 'senator', '', 'graham', 'and', 'former', 'governor', 'george', '', ',', 'who', 'suspended', 'their', 'campaigns', 'on', 'december', '2', '1', 'and', 'december', '2', '9', ',', 'respectively', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'later', 'voiced', '', '', \"'s\", '``', 'evil', 'boss', \"''\", 'roles', 'in', 'the', '``', 'time', '', 'series', \"''\", 'after', 'he', 'died', 'in', '2', '0', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'seems', 'to', 'be', 'a', '', 'way', 'of', 'saying', 'that', 'it', 'is', 'a', 'clear', 'expression', 'of', 'the', 'typical', 'form', 'of', 'the', 'species', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'theorem', 'is', 'typically', '', 'to', 'defend', 'the', '', 'of', 'a', '', 'series', 'expansion', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'august', '1', '9', '5', '5', ',', 'the', 'same', 'quantity', 'of', 'onions', 'had', 'been', '', 'at', '$', '2', '.', '7', '5', 'a', 'bag', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'bank', 'serbia', 'was', 'owned', 'by', 'bank', 'austria', ',', 'which', 'in', 'turn', 'was', 'majority', 'owned', 'by', 'german', 'bank', '', '(', '', ')', ',', 'which', 'was', ',', 'in', 'turn', ',', 'majority', 'owned', 'by', '', '', 'banking', 'group', 'since', 'november', '2', '0', '0', '5', '.', '', '', '', '', '', '', '']\n", "['', 'robinson', 'held', 'the', 'district', 'for', 'five', 'terms', ',', 'being', 're-elected', 'in', '1', '9', '4', '0', ',', '1', '9', '4', '4', ',', '1', '9', '4', '8', 'and', '1', '9', '5', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'rest', 'of', 'the', 'channel', 'and', 'the', 'land', 'south', 'of', 'it', 'lies', 'within', 'mexican', 'territory', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'march', ',', 'he', 'made', 'appearances', 'for', 'inter', 'species', 'wrestling', 'defeating', 'kenny', 'the', '', 'and', 'king', '', 'in', 'a', '', 'match', 'on', 'march', '3', ';', 'a', 'week', 'later', ',', 'defeated', '', '', 'for', 'canadian', 'wrestling', 'revolution', 'in', '', ',', 'ontario', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'interned', 'with', 'hudson', 'institute', ',', 'the', 'heritage', 'foundation', ',', 'and', 'the', 'united', 'states', 'department', 'of', 'the', 'treasury', 'from', '2', '0', '1', '4', '-', '2', '0', '1', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'did', 'this', 'in', 'numerous', '', 'contributions', 'to', '``', 'isis', \"''\", ',', 'including', 'an', 'article', 'in', 'march', '1', '9', '2', '4', 'in', 'the', '``', 'isis', 'idols', \"''\", 'series', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'this', 'area', 'the', 'general', 'water', 'flow', 'is', '', 'by', 'more', 'local', 'conditions', 'reaching', 'across', 'to', 'france', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'singapore', 'river', 'underwent', 'a', 'major', '', 'program', 'and', 'the', 'areas', 'along', 'the', 'river', 'were', 'developed', 'for', 'restaurants', 'and', 'other', 'tourist', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'did', 'not', '', 'the', 'question', 'of', '', ',', 'however', ',', 'as', 'it', 'was', '``', '', 'that', 'the', '', 'could', 'have', 'been', '', 'in', 'a', '', 'attempt', 'at', 'restoration', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '7', '7', '7', 'he', 'succeeded', 'his', 'father', 'as', 'second', 'baronet', 'and', '', 'commissioned', 'the', 'building', 'of', '', 'hall', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'bases', 'mount', 'two', 'no', '.', '1', '', '', 'used', 'for', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'it', 'is', 'hard', 'to', 'distinguish', 'between', '', 'monazite', 'and', 'hydrothermal', 'monazite', ',', '', 'the', 'texture', 'and', 'pattern', 'of', 'monazite', 'may', 'help', 'distinguish', 'them', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'took', 'senior', 'status', 'on', 'august', '2', '2', ',', '2', '0', '1', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '3', ',', 'she', 'curated', 'an', 'exhibition', '``', '', \"''\", 'at', 'the', ',', 'based', 'on', 'her', 'career', 'of', 'acting', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'then', 'attended', 'chico', 'state', 'university', 'where', 'he', 'was', 'a', '1', '9', '7', '8', '', 'mention', '(', 'third', 'team', ')', 'all', 'american', 'soccer', 'player', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'won', 'the', 'academy', 'award', 'for', 'best', 'film', 'editing', 'for', '``', 'the', 'last', 'emperor', \"''\", '(', '1', '9', '8', '7', ')', ',', 'which', 'won', 'a', 'total', 'of', '9', '', '(', 'including', 'best', 'picture', 'and', 'best', 'director', '(', 'for', 'bertolucci', ')', ')', 'as', 'well', 'as', 'numerous', 'other', '', '.', '', '']\n", "['', 'allmusic', 'awarded', 'the', 'album', '4', 'stars', 'stating', '``', 'this', '', 'features', 'pianist', '', 'jones', '', 'the', '', 'side', 'of', 'his', '', 'musical', 'personality', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', '1', '9', '6', '9', 'riot', ',', '', 'also', 'began', 'to', '', 'the', 'political', 'system', 'to', '', 'its', 'power', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'method', 'has', 'been', '', 'to', 'produce', 'a', 'variety', 'of', '', 'stable', '', ',', 'including', '', ',', '', 'alkyl', ',', 'secondary', 'alkyl', ',', 'and', 'even', 'primary', 'alkyl', '', 'in', 'good', 'yields', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'fresh', 'water', 'from', 'the', 'peace', 'river', 'is', '', 'to', 'maintain', 'the', 'delicate', '', 'of', 'charlotte', 'harbor', 'that', 'hosts', 'several', 'endangered', 'species', ',', 'as', 'well', 'as', 'commercial', 'and', 'recreational', '', 'of', '', ',', 'crabs', ',', 'and', 'fish', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'dubbed', 'the', 'east', 'doors', 'the', '``', 'gates', 'of', 'paradise', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '4', '5', '', 'enlisted', 'in', 'the', 'king', \"'s\", 'african', '', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'severe', 'neck', 'injury', 'kept', 'him', 'out', 'of', 'action', 'throughout', 'much', 'of', 'early', '2', '0', '0', '6', ',', 'but', 'he', 'returned', 'in', 'march', 'of', 'that', 'same', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'players', 'that', 'have', 'suffered', 'from', 'the', '', ',', 'the', 'average', 'of', 'their', 'age', 'was', '1', '9', '.', '5', 'years', 'of', 'age', ',', 'and', 'they', 'had', 'an', 'estimated', '8', '.', '4', 'years', 'of', 'experience', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'founded', 'in', '1', '9', '5', '0', 'by', '', '', 'gonzález', 'and', 'other', 'former', 'members', 'of', 'the', 'revolutionary', 'left', 'party', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', 'march', '2', '0', '1', '9', ',', 'the', '', 'is', 'responsible', 'for', '5', '5', '8', ',', '7', '7', '8', 'inmates', ',', 'including', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'located', 'directly', 'across', 'the', 'street', 'from', 'the', 'virginia', 'state', 'capitol', ',', 'it', 'has', 'long', 'been', 'a', 'popular', 'house', 'of', 'worship', 'for', 'political', 'figures', ',', 'including', 'general', 'robert', 'e.', 'lee', 'and', 'confederate', 'president', 'jefferson', 'davis', '(', 'earning', 'it', 'the', 'nickname', '``', 'the', 'cathedral', 'of', 'the', '', \"''\", ')', '.', '', '']\n", "['', 'trustees', 'are', 'elected', 'in', '', 'elections', 'on', 'an', '', 'basis', 'to', '', 'four-year', 'terms', 'of', 'office', 'with', 'three', 'trustee', 'seats', 'up', 'for', 'election', 'in', '', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', '``', 'psychology', 'today', \"''\", ',', 'the', '', 'feeling', '``', 'that', 'some', '', 'of', '', 'artists', 'are', 'grounded', 'in', 'theory', 'does', 'not', '', 'the', '', 'and', '', 'nature', 'of', 'the', 'field', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'honor', 'of', 'this', 'occasion', ',', 'the', 'national', 'convention', 'was', 'held', 'in', '', ',', 'new', 'york', 'to', '', 'the', 'founding', 'of', '', 'xi', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'also', 'included', 'coal', '', 'operations', 'at', '', 'and', '', ',', '', 'of', '', '', 'for', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'without', 'such', 'legal', 'arms', 'it', 'is', 'practically', 'impossible', 'to', 'prove', 'one', \"'s\", '', 'status', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'immediately', 'after', 'the', 'crash', ',', 'the', 'nearby', 'milan', 'central', 'railway', 'station', ',', '', 'station', 'and', 'the', '', 'airport', 'were', 'shut', 'down', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'almost', '9', '0', '0', 'students', 'are', 'enrolled', 'in', 'the', 'college', 'and', 'more', 'than', '2', '0', '0', 'students', 'reside', 'in', 'the', '', 'on', 'the', 'college', 'campus', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'main', 'subclans', 'among', '', 'banjaras', 'are', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', 'and', '', '.']\n", "['', 'in', 'addition', ',', 'as', 'of', '1', 'december', '2', '0', '1', '4', 'one', 'property', 'has', 'been', 'registered', '(', 'as', 'opposed', 'to', 'designated', ')', 'nationally', 'and', 'another', 'at', 'the', 'prefectural', 'level', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'made', 'his', 'debut', 'for', 'os', '', 'in', 'a', '2', '-', '1', 'loss', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'but', 'only', '1', '/', '3', 'of', 'them', 'were', 'active', ',', 'many', 'having', 'other', '', 'and', 'clubs', 'to', 'attend', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'example', ',', 'since', 'march', 'of', '2', '0', '0', '8', 'visa', 'inc.', 'has', 'used', 'the', 'symbol', 'v', 'that', 'had', 'previously', 'been', 'used', 'by', '', 'which', 'had', '', 'and', 'given', 'up', 'the', 'symbol', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'each', 'outer', 'diameter', ',', 'either', '7', '5', 'or', '5', '0', '', 'inner', 'tubes', 'can', 'be', 'obtained', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'service', 'brakes', 'are', 'applied', 'by', 'means', 'of', 'a', 'brake', '', 'air', 'valve', 'which', '', 'both', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'american', 'rap', 'icon', '', '', 'also', 'wore', 'air', '', 'in', 'a', 'popular', '``', '', 'life', \"''\", 'photo', 'in', '1', '9', '9', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'guest', 'star', 'seth', 'green', 'said', 'that', 'despite', 'being', 'cast', 'as', '``', '', 'kid', \"''\", '', ',', 'and', 'having', '``', '', 'the', 'market', 'on', 'the', '', '', 'in', 'tv', 'and', 'film', \"''\", ',', 'he', 'had', 'never', 'used', '', 'before', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'also', 'has', 'a', 'ferry', 'leading', 'to', '', 'beach', 'on', 'fire', 'island', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'scripps', 'was', 'born', 'in', '1', '8', '3', '5', 'in', 'london', 'to', 'james', '', 'scripps', 'and', '', 'mary', '(', '', ')', 'scripps', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'fossils', '1', '0', '0', 'million', 'years', 'older', 'have', 'been', 'found', 'in', 'the', 'same', 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'made', 'it', 'an', 'almost', 'exclusively', '', ',', '', 'scheduled', 'airline', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'a', '', '', ',', 'had', 'a', 'heart', 'attack', 'triggered', 'by', 'asthma', ',', 'while', 'working', 'out', 'in', 'a', 'health', 'club', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'weapon', 'of', 'choice', 'was', 'a', '', ',', 'a', 'common', 'symbol', 'used', 'in', 'the', '', 'culture', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'conducted', 'the', 'irish', 'chamber', 'orchestra', 'on', 'her', 'own', '``', 'pages', \"''\", 'album', 'recording', 'where', 'she', 'had', 'also', 'composed', 'and', 'orchestrated', 'the', 'music', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'miller', 'stepped', 'into', 'the', 'role', 'from', 'november', '2', '0', '1', '6', 'to', 'november', '2', '0', '1', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'copy', 'and', 'audio', 'cuts', 'are', 'also', 'used', 'by', '', 'radio', ',', 'in', 'addition', 'to', 'radio', 'stations', 'in', 'the', 'republic', 'of', 'ireland', ',', 'spain', ',', 'cyprus', ',', '', ',', 'south', 'africa', 'and', 'australia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'first', 'published', 'in', '1', '8', '5', '7', ',', 'this', 'book', 'explains', 'the', '', 'of', 'the', '', 'doctrine', 'concerning', 'the', 'nature', 'of', '', ',', 'their', '', ',', 'and', 'how', 'they', '', 'to', 'men', ',', 'moral', 'laws', ',', 'and', 'the', 'present', 'and', 'future', 'life', 'and', '', 'of', '', '.', '', '', '']\n", "['', '', ',', 'lubmin', 'is', 'the', 'administrative', 'seat', 'of', '``', '', 'lubmin', \"''\", ',', 'to', 'which', 'nine', 'other', 'municipalities', 'belong', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'senators', 'traded', 'goaltender', '', 'rhodes', 'to', 'the', 'atlanta', '', 'as', 'part', 'of', 'a', 'deal', 'during', 'the', '1', '9', '9', '9', 'nhl', 'expansion', 'draft', ',', 'and', 'acquired', 'patrick', '', 'from', 'the', '', 'ducks', 'of', '', 'to', 'split', '', 'duties', 'with', '', '', '.', '', '', '', '', '', '', '']\n", "['', 'in', 'december', '1', '9', '0', '9', ',', 'siggins', 'and', 'her', 'husband', 'moved', 'to', 'new', 'zealand', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'school', 'building', 'at', '', '', 'in', 'kochi', 'is', 'named', '``', '', 'hall', \"''\", 'after', 'roy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'israel', 'represented', '', '', 'in', 'the', '', 'congress', 'of', '1', '9', '0', '7', ',', 'which', 'took', 'place', 'in', 'the', 'hague', 'in', 'the', 'netherlands', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'has', 'led', 'to', 'controversy', 'about', 'his', 'attitude', 'toward', 'jews', 'and', 'to', 'accusations', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'were', 'four', 'lady', '', 'riders', ':', '', '', ',', '', '', ',', '', 'and', 'barbara', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'among', 'his', 'findings', ',', 'which', 'were', 'published', 'only', 'after', 'the', 'end', 'of', 'the', 'war', ',', 'was', 'that', 'the', '``', '', \"''\", 'variety', '', 'during', 'short', 'days', 'when', 'there', 'was', 'less', 'than', '1', '2', 'hours', 'of', 'light', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'manor', 'is', 'a', 'victorian', 'country', 'house', 'and', 'country', 'park', 'located', 'in', 'pembrokeshire', ',', 'west', 'wales', 'northeast', 'of', '', 'and', 'on', 'the', 'borders', 'of', 'the', 'pembrokeshire', 'coast', 'national', 'park', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'his', '', 'plans', 'now', 'ruined', ',', 'duke', 'hits', 'the', '``', '', \"''\", 'button', ',', 'and', '', 'to', 'do', 'whatever', 'it', 'takes', 'to', 'stop', 'the', 'alien', 'invasion', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'october', '2', '0', '0', '7', ',', 'he', 'published', 'a', 'book', '``', '', 'of', 'the', 'caribbean', \"''\", '(', '', 'with', 'gerard', 'siggins', ')', 'with', 'the', '', 'press', 'which', 'tells', 'the', 'story', 'of', 'ireland', \"'s\", 'remarkable', 'performances', 'in', 'the', '2', '0', '0', '7', 'cricket', 'world', 'cup', '.', '', '', '', '']\n", "['', '', ',', 'the', 'son', 'of', 'a', 'catholic', 'mother', 'and', 'jewish', 'father', ',', 'was', 'taken', 'into', 'custody', 'in', '1', '9', '4', '3', 'and', 'eventually', 'sent', 'to', '', 'concentration', 'camp', ',', 'where', 'he', 'was', 'encouraged', 'to', 'continue', 'his', 'earlier', 'research', ':', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'species', 'of', 'sea', 'snail', ',', 'a', 'marine', 'gastropod', 'mollusk', 'in', 'the', 'family', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'banks', 'that', 'are', 'located', 'on', 'this', 'wall', 'street', 'of', '', 'are', 'asia', 'bank', ',', 'united', '', 'bank', ',', 'and', '', '(', 'corner', 'of', '', 'street', ')', 'on', '', 'square', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'anticonvulsant', 'was', '', ',', 'suggested', 'in', '1', '8', '5', '7', 'by', 'the', 'british', '', 'charles', '', 'who', 'used', 'it', 'to', 'treat', 'women', 'with', '``', '', 'epilepsy', \"''\", '(', 'probably', '``', '', 'epilepsy', \"''\", ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '4', '5', ',', 'he', 'succeeded', '', 'as', 'literary', 'editor', 'of', 'the', '``', 'tribune', \"''\", 'newspaper', 'when', '', 'left', 'to', 'become', 'a', 'war', 'correspondent', 'for', '``', 'the', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'ice', ',', 'and', '', '', 'out', 'of', 'the', 'feature', 'create', 'a', 'volcanic', '', 'at', 'the', 'channel', \"'s\", '', 'end', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'sheffield', 'coal', 'company', ',', 'owners', 'of', '', 'collieries', ',', '', 'and', 'north', '', 'collieries', ',', 'was', 'bought', 'by', 'the', 'united', 'steel', 'companies', 'in', '1', '9', '3', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', '', 'to', '``', 'los', '', 'de', '', \"''\", ',', 'the', 'spanish', 'translation', 'of', 'judah', '', \"'s\", '``', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'attended', 'the', 'melbourne', 'law', 'school', 'at', 'the', 'university', 'of', 'melbourne', ',', 'where', 'she', 'enjoyed', 'participating', 'in', 'student', 'theatre', 'productions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'law', 'and', 'diplomacy', 'in', '1', '9', '8', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'allowed', 'the', '', 'to', 'begin', 'the', 'audit', 'in', 'april', 'this', 'year', 'after', '', 'it', 'for', 'a', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thomas', 'was', 'born', 'on', '2', '1', 'october', '1', '9', '3', '1', 'in', 'windsor', ',', 'england', ',', 'to', '', '', 'thomas', ',', 'a', 'colonial', 'commissioner', ',', 'and', 'his', 'wife', '', '', '', ',', '``', 'née', \"''\", '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'it', \"'s\", 'an', '', 'poem', ',', \"''\", 'she', 'said', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'who', 'also', 'performed', 'some', 'live', '', 'such', 'as', '``', '', \"''\", ',', '``', 'my', 'generation', \"''\", ',', '``', 'magic', 'bus', \"''\", ',', '``', 'i', 'ca', \"n't\", 'explain', \"''\", ',', 'and', 'the', 'perennial', 'covers', 'of', '``', '', \"'\", 'all', 'over', \"''\", 'and', '``', '', 'blues', \"''\", '.', '', '', '']\n", "['', 'he', 'moved', 'los', 'angeles', 'to', 'pursue', 'music', 'and', 'a', 'university', 'education', 'and', 'earned', 'a', 'bachelor', 'of', 'arts', 'degree', 'in', 'political', 'science', 'from', 'california', 'state', 'university', ',', '', ',', 'and', 'both', 'a', 'master', 'of', 'arts', 'and', 'doctor', 'of', 'philosophy', 'in', '', 'from', 'the', 'university', 'of', 'california', ',', 'los', 'angeles', '.', '']\n", "['', 'by', '1', '9', '4', '0', ',', 'the', 'population', 'of', 'the', 'zoo', 'numbered', '9', '6', '5', 'individuals', 'representing', '2', '0', '9', 'species', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'temperature', 'is', 'a', 'factor', ',', 'with', '1', '0', '0', '%', '', 'occurring', 'at', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'between', '1', '8', '0', '5', 'and', '1', '8', '1', '1', 'the', 'area', 'became', 'a', 'stop', 'on', 'the', 'federal', 'road', 'through', 'the', 'creek', 'nation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'marriage', '', 'rosalynn', \"'s\", 'plans', 'to', 'attend', 'georgia', 'state', 'college', 'for', 'women', ',', 'where', 'she', 'had', 'planned', 'to', 'study', 'interior', 'design', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', '', 'died', 'in', '1', '8', '7', '7', ',', '', '', '', 'was', 'appointed', 'minister', 'of', 'war', ',', 'and', 'decided', 'to', 'change', 'the', 'strategy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'firm', 'was', 'from', '1', '8', '0', '0', 'based', 'in', 'thomas', 'ter', 'borch', \"'s\", 'property', 'at', '', '', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'have', 'confirmed', 'the', '', 'pink', 'species', \"'\", 'distinction', 'from', 'the', 'red', 'triangle', 'slug', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '7', '9', ',', 'general', \"'s\", 'contract', 'to', 'manage', 'two', 'hotels', 'in', '', 'park', 'was', '', 'due', 'to', '``', 'poor', 'service', \"''\", 'and', '', 'maintenance', 'of', 'the', 'properties', ',', 'according', 'to', 'the', 'national', 'park', 'service', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'overall', 'planned', 'investment', 'is', 'us', '$', '1', '0', '7', '4', '0', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'several', 'of', 'the', 'first', 'production', '', 'were', 'engaged', 'in', '', 'trials', 'and', 'final', 'service', 'entry', 'began', 'in', 'january', '1', '9', '4', '0', 'with', '2', '2', 'squadron', 'of', 'raf', 'coastal', 'command', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'efficiency', 'of', 'removal', 'will', 'depend', 'on', 'the', 'specific', 'equipment', ',', 'the', 'chemical', 'composition', 'of', 'the', 'waste', ',', 'the', 'design', 'of', 'the', 'plant', ',', 'the', 'chemistry', 'of', '', ',', 'and', 'the', 'ability', 'of', 'engineers', 'to', '', 'these', 'conditions', ',', 'which', 'may', 'conflict', 'for', 'different', '', '.', '', '', '', '']\n", "['', 'richard', '', '(', 'born', '5', 'february', '1', '9', '8', '7', ')', ',', 'better', 'known', 'by', 'his', 'stage', 'name', '', ',', 'is', 'a', 'british', '', ',', 'singer', ',', 'songwriter', ',', 'record', 'producer', 'and', 'dj', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'born', 'in', 'salt', 'lake', 'city', ',', 'utah', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'died', 'in', 'the', 'monastery', 'of', '', ',', 'on', 'november', '1', '9', ',', '1', '2', '9', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'test', 'items', 'into', 'categories', 'of', 'appropriate', 'difficulty', ',', 'or', 'correlate', 'item', 'difficulty', 'to', 'course', 'levels', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'and', '', ',', 'she', 'meets', 'with', 'dr.', 'elizabeth', 'barnes', 'who', '', 'each', 'patient', \"'s\", 'interviews', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'the', '2', '0', '0', '8', 'census', 'it', 'has', 'a', 'population', 'of', '2', '9', ',', '0', '1', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'company', '', ',', 'prints', 'and', '', 'books', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'subsequently', ',', 'the', '', 'of', '', 'induces', '', 'bond', 'cleavage', ',', 'thereby', 'releasing', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'approximately', '2', ',', '1', '6', '9', 'developers', 'across', '1', '4', 'studios', 'worked', 'on', '``', 'the', 'last', 'of', 'us', 'part', 'ii', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'born', 'in', 'either', 'september', '1', '8', '2', '4', 'or', '1', '8', '2', '6', ',', 'in', 'the', 'village', 'of', '', '', 'at', 'the', 'time', 'part', 'of', 'the', '', 'of', '', ',', 'ottoman', 'empire', '(', 'now', '', '', ',', 'north', 'macedonia', ')', '.', '', '', '', '', '', '', '']\n", "['', 'dr.', '', 'and', 'dr.', 'little', 'of', 'bell', 'telephone', '', 'were', 'the', 'first', 'to', 'use', 'the', '', 'method', 'to', 'create', '', 'and', '', 'single', 'crystals', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '6', '4', 'anteaters', 'have', 'won', 'individual', 'national', 'championships', ',', 'and', '5', '3', 'anteaters', 'have', 'competed', 'in', 'the', 'olympics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'john', 'andrew', 'was', 'replaced', 'by', 'frederick', '', '', 'in', 'june', '1', '8', '7', '3', 'when', 'andrew', 'briefly', 'left', 'hay', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', 'in', '1', '9', '8', '6', 'the', 'building', 'was', 'demolished', 'to', 'make', 'room', 'for', 'the', 'union', 'boulevard', 'in', 'bucharest', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'like', 'many', 'other', 'european', 'police', '', 'units', ',', 'the', '', 'was', 'established', 'in', '1', '9', '7', '5', 'following', 'munich', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'between', 'these', 'districts', ',', 'the', '', 'de', '', '', ',', 'a', '', ',', 'is', 'home', 'to', 'a', 'local', 'species', 'of', '', ',', 'along', 'with', 'many', 'species', 'of', '', 'and', 'fish', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '``', 'new', \"''\", 'shipments', 'of', 'onions', 'caused', 'many', 'futures', '', 'to', 'think', 'that', 'there', 'was', 'an', 'excess', 'of', 'onions', 'and', 'further', 'drove', 'down', 'onion', 'prices', 'in', 'chicago', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'cardinals', 'are', 'a', 'family', 'of', '', '', 'birds', 'with', 'strong', 'bills', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'wagon', 'can', 'also', 'be', 'seen', 'in', '``', 'dragon', 'quest', 'v', \"''\", 'and', '``', 'dragon', 'quest', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'example', 'above', '(', 'figure', '2', ')', ',', 'the', 'variables', 'a', ',', 'b', ',', 'c', ',', 'and', 'e', 'are', 'the', 'neighbors', 'of', 'the', '', 'cell', '1', 'and', 'they', 'are', 'not', 'neighbors', 'of', 'any', 'other', 'cell', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'we', 'wrote', 'to', '', ',', '', 'and', 'hundreds', 'of', 'times', 'to', 'the', 'department', 'of', 'justice', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'additionally', ',', '', 'claimed', 'that', 'he', 'had', '', 'the', 'tops', 'of', 'posts', 'about', 'a', 'foot', 'underground', ',', 'arranged', 'in', 'a', 'pattern', 'that', 'might', 'have', 'been', 'that', 'of', 'either', 'a', 'norse', '', 'or', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'served', 'as', 'the', 'model', 'for', '', '', \"'s\", 'painting', '``', 'the', 'angel', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '8', ',', 'he', 'was', 'named', 'one', 'of', 'people', 'magazine', \"'s\", '5', '0', 'most', 'beautiful', 'people', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'starts', '``', '', '', 'interview', 'mit', 'michael', 'jakob', \"''\", 'with', 'a', 'question', 'by', 'jakob', ',', 'that', 'mentions', '', \"'s\", '', 'in', 'dialogue', 'and', 'his', 'belief', 'that', 'every', 'meeting', 'was', 'a', 'kind', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '', 'physics', ',', 'super', '', 'is', 'a', '', 'gauge', 'theory', 'which', 'resembles', 'quantum', '', '(', '', ')', 'but', 'contains', 'additional', 'particles', 'and', 'interactions', 'which', '', 'it', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thomas', 'gained', 'a', 'first', 'class', 'in', 'part', 'i', 'of', 'the', 'history', '', 'in', '1', '9', '5', '2', ',', 'and', 'the', 'following', 'year', 'was', 'president', 'of', 'the', 'cambridge', 'union', 'society', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'name', 'was', 'described', 'as', 'having', 'been', '``', 'controversial', \"''\", ',', 'since', 'it', 'has', 'been', 'used', 'to', 'describe', 'larger', 'areas', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'began', 'a', 'career', 'as', 'a', 'journalist', 'in', '1', '9', '5', '8', ',', 'writing', 'for', '``', 'the', '', 'daily', 'mail', \"''\", 'in', 'johannesburg', ',', 'where', 'he', 'eventually', 'became', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bogdanov', 'gave', 'a', '', 'to', 'a', 'club', 'at', 'moscow', 'university', ',', 'which', ',', 'according', 'to', '', 'yakovlev', ',', 'included', 'an', 'account', 'of', 'the', 'formation', 'of', '', 'and', '', 'some', 'of', 'the', '', 'bogdanov', 'had', 'made', 'at', 'the', 'time', 'of', 'the', '', 'of', 'certain', 'leaders', '.', '', '', '', '', '']\n", "['', 'this', 'was', 'a', 'hit', 'in', 'the', 'republic', 'of', 'macedonia', ',', 'winning', 'the', 'prize', 'for', 'most', '', 'song', 'from', 'the', 'audience', 'in', '1', '9', '9', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'making', 'his', 'debut', 'with', 'the', 'texas', 'rangers', 'on', 'june', '2', '0', ',', '1', '9', '9', '1', ',', 'he', 'became', 'the', 'youngest', 'player', 'to', 'catch', 'in', 'a', 'major', 'league', 'game', 'that', 'season', 'at', '1', '9', 'years', 'of', 'age', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '1', '9', '6', '0', 's', ',', 'she', 'was', 'active', 'in', 'voice', 'of', 'women', ',', 'and', 'leased', 'the', '', 'family', 'summer', 'home', 'on', '', 'island', 'to', 'the', 'society', 'of', 'friends', 'to', 'serve', 'as', 'a', '', 'retreat', 'centre', 'and', 'an', 'institution', 'for', 'peace', 'studies', '.', '', '', '', '', '']\n", "['', 'shows', 'in', 'portland', ',', 'houston', ',', 'denver', 'and', 'washington', ',', 'd.c.', 'were', 'later', 'added', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'r', '9', '3', '5', 'road', 'is', 'a', 'regional', 'road', 'in', 'ireland', 'which', 'links', 'the', 'n', '5', '5', 'road', 'with', 'the', 'r', '2', '1', '2', 'regional', 'road', 'in', 'cavan', 'in', 'county', 'cavan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'australia', ',', 'taking', '2', '5', '°', 'as', 'a', 'median', 'latitude', ',', '``', '', \"''\", '=', '1', '.', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'part', 'of', 'the', 'management', \"'s\", '', ',', 'miyamoto', 'and', '', 'were', 'respectively', 'named', 'creative', 'and', 'technological', 'advisors', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'average', 'literacy', 'was', '7', '1', '.', '8', '%', ',', 'compared', 'to', 'the', 'national', 'average', 'of', '7', '2', '.', '9', '9', '%', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'we', 'want', 'to', 'experiment', 'with', 'different', 'ways', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', ',', 'weekly', 'bird', '', 'are', 'conducted', 'to', 'monitor', 'usage', 'and', 'to', 'ensure', 'that', 'problems', 'are', '', 'quickly', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'began', 'his', 'own', 'business', ',', 'm', 'and', 't', 'transportation', ',', 'inc', ',', 'in', '1', '9', '9', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'increase', 'of', '', ',', 'has', 'shown', 'the', 'rise', 'of', 'possible', 'ai', 'applications', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', '1', '9', '9', '8', 'season', 'was', 'even', 'more', 'limited', ',', 'with', 'no', 'first', 'team', 'appearances', 'and', 'only', 'a', 'single', 'second', 'team', 'appearance', 'for', 'middlesex', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'western', 'european', 'league', 'of', 'the', '', 'world', 'cup', 'jumping', '2', '0', '1', '1', '/', '2', '0', '1', '2', 'is', 'the', '3', '4', 'th', 'edition', 'of', 'the', 'west', 'and', 'central', 'european', 'league', 'of', 'the', 'show', 'jumping', 'world', 'cup', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'became', 'chief', 'of', 'staff', 'at', 'headquarters', 'far', 'east', 'land', 'forces', 'in', '1', '9', '5', '0', ',', 'general', 'officer', 'commanding', '3', 'rd', 'division', 'based', 'in', 'the', 'middle', 'east', 'in', '1', '9', '5', '2', 'and', 'then', 'director', 'of', 'military', 'operations', 'at', 'the', 'war', 'office', 'in', '1', '9', '5', '4', '.', '']\n", "['', 'johnston', 'was', 'born', 'in', '', ',', 'new', 'south', 'wales', ',', 'and', 'played', 'his', 'early', 'cricket', 'for', 'new', 'south', 'wales', 'in', 'australian', 'domestic', 'competitions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'she', 'runs', 'after', 'scott', 'to', 'tell', 'him', 'about', 'what', 'she', 'saw', 'and', 'what', 'she', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'russia', 'has', 'one', 'of', 'the', 'highest', '', 'rates', 'in', 'the', 'world', 'at', '4', '1', '6', 'per', '1', '0', '0', ',', '0', '0', '0', 'people', 'in', '2', '0', '1', '8', ',', 'with', 'a', 'prison', 'population', 'ranked', 'fourth', 'behind', 'the', 'united', 'states', ',', 'china', ',', 'and', 'brazil', '.', '', '', '', '']\n", "['', 'the', 'album', 'has', 'also', 'been', 'described', 'as', 'new', 'wave', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '8', ',', 'the', 'name', 'was', 'changed', 'to', 'the', '', 'symphony', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'rewarded', 'with', 'the', 'military', 'and', 'civil', '', 'of', '', 'in', 'march', '1', '9', '2', '1', 'and', 'promoted', 'to', 'commander', 'of', 'the', '5', 'th', 'army', 'in', '1', '9', '2', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'recreational', '', 'routes', 'often', 'include', '', 'between', 'lakes', ',', 'for', 'example', ',', 'the', 'seven', 'carries', 'route', 'in', '', 'park', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'entire', 'story', 'was', 'invented', 'by', '', ',', 'who', 'earned', 'a', 'good', 'deal', 'of', 'money', 'and', 'a', 'substantial', 'amount', 'of', '', 'for', 'his', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'decided', 'to', 'have', 'him', '', '', '(', '``', '', '', 'et', '', '', \"''\", ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'graduating', ',', 'he', 'worked', 'as', 'a', 'car', 'mechanic', 'for', 'two', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'comyn', 'writes', 'in', 'his', '', 'that', 'he', 'also', 'saw', '``', 'the', '', 'remains', 'of', 'the', 'stockade', \"''\", 'of', '', \"'s\", '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '2', '6', ',', '1', '8', '5', '8', '-', 'the', 'portsmouth', 'national', 'light', 'infantry', '', 'observed', 'the', 'passing', 'of', 'their', 'second', 'year', 'with', 'a', 'target', 'shoot', 'occupying', 'the', 'hours', 'of', 'the', 'day', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'example', ',', 'furby', '', 'the', 'way', 'people', 'think', 'about', 'their', 'identity', ',', 'and', 'many', 'children', 'think', 'that', 'furby', 'is', 'alive', 'in', 'a', '``', 'furby', 'kind', 'of', 'way', \"''\", 'in', '', '', \"'s\", 'research', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'degree', 'from', 'the', 'university', 'of', 'hamburg', 'in', '1', '9', '4', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '``', 'kingdom', '', \"''\", 'series', 'is', 'directed', 'by', '', 'nomura', ',', 'the', 'character', 'designer', 'of', 'the', 'games', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'surgery', 'is', 'performed', 'by', 'a', '', 'who', 'temporarily', '', 'part', 'of', 'the', 'skull', '(', '', ')', ',', '', 'the', 'avm', 'from', 'surrounding', 'brain', 'tissue', ',', 'and', '', 'the', '', 'vessels', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', ',', 'many', 'medical', 'and', 'surgical', 'techniques', 'were', 'developed', 'by', 'exploiting', 'the', 'bodies', 'of', '', 'black', 'women', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'received', 'royal', '', 'on', '6', 'may', '2', '0', '1', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'is', 'an', 'example', 'of', 'how', 'public', '', 'can', '', 'with', 'electric', 'vehicle', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'cadoret', 'served', 'as', 'a', 'general', '', 'in', 'the', 'between', '1', '9', '2', '2', 'and', '1', '9', '4', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'campus', 'was', 'opened', 'in', 'the', 'fall', 'of', '2', '0', '0', '5', 'to', '5', 'th', 'and', '6', 'th', 'grade', 'students', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'this', 'episode', ',', 'veronica', 'is', 'hired', 'by', 'an', 'arab', 'couple', 'who', 'own', 'a', 'middle', 'eastern', 'restaurant', 'because', 'their', 'restaurant', 'has', 'recently', 'had', 'the', 'word', '``', '', \"''\", '', 'on', 'it', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'returned', 'to', 'the', 'singles', 'chart', 'in', '2', '0', '1', '0', ',', 'after', 'an', 'absence', 'of', 'over', '2', '0', 'years', ',', 'with', 'his', 'recording', 'of', '``', 'we', 'both', 'grown', \"''\", ',', 'a', 'duet', 'with', 'dave', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'region', 'varies', 'in', 'elevation', 'from', '7', '0', '0', 'to', '2', '0', '0', '0', 'meters', 'from', 'west', 'to', 'east', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'fall', 'of', 'communism', 'in', '1', '9', '8', '9', 'and', 'the', 'collapse', 'of', 'bulgaria', \"'s\", 'planned', 'economy', ',', 'a', 'number', 'of', 'industrial', '', 'were', 'closed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'because', 'the', 'field', 'was', 'one', 'short', 'of', 'the', 'minimum', '', 'of', '1', '0', 'cars', ',', 'the', 'final', 'spot', 'was', 'awarded', 'to', 'the', 'highest', 'finishing', 'driver', 'in', 'the', '1', '9', '8', '5', 'points', '', 'without', 'a', 'win', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'released', 'in', '1', '9', '7', '6', 'on', '', 'records', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', '', \"''\", 'took', 'a', 'look', 'back', 'at', '``', '', '', \"''\", 'in', 'its', 'march', '2', '0', '0', '4', 'issue', ',', 'when', 'the', '2', '0', '0', '4', 'xbox', 'remake', 'was', 'released', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'second', ',', 'revised', 'and', 'completed', 'edition', 'of', 'the', 'book', 'was', 'published', 'in', '2', '0', '0', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'royal', 'air', 'force', '', 'or', 'more', 'simply', 'raf', '', 'is', 'a', 'former', 'royal', 'air', 'force', 'station', 'located', 'west', 'of', '', ',', 'hampshire', 'and', 'about', 'southwest', 'of', 'london', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '4', 'he', 'served', 'as', 'chairman', 'of', 'the', 'd.c.', 'federation', 'of', 'college', 'republicans', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'about', '1', '8', '2', '0', 'the', 'design', 'and', '', 'had', 'settled', 'down', 'to', 'a', 'more', 'or', 'less', '', 'arrangement', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'born', 'into', 'a', 'distinguished', 'literary', 'and', 'medical', 'family', 'of', 'prominent', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '``', 'too', 'little', ',', 'too', 'late', \"''\", 'effort', 'may', 'be', 'a', 'mass', 'form', 'of', 'climate', 'change', '', ',', 'or', 'an', '', 'pursuit', 'of', 'green', 'energy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'among', 'mitchell', \"'s\", 'organizational', 'activities', 'were', 'membership', 'on', 'the', 'board', 'of', 'directors', 'of', 'the', 'empty', '', 'inc.', 'in', 'philadelphia', ',', 'secretary', 'of', 'the', '', 'of', 'concerned', 'jazz', 'artists', ',', 'and', 'an', 'association', 'with', 'the', 'jazz', 'museum', 'in', 'new', 'york', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'excessive', '', 'or', 'turns', ',', '', 'reaches', 'or', '', ',', 'and', '', 'walking', 'all', 'contribute', 'to', '', 'motion', 'and', 'may', 'put', '', '', 'stress', 'upon', 'the', 'operator', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'national', 'institutional', 'ranking', 'framework', '(', '', ')', 'ranked', 'it', '1', '3', '0', 'among', 'engineering', 'colleges', 'in', '2', '0', '2', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'announced', 'on', '1', '6', 'december', '2', '0', '0', '9', 'that', 'the', 'telescope', 'was', '``', 'subject', 'to', 'discussions', 'leading', 'to', 'managed', 'withdrawal', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'served', 'in', 'the', 'militia', 'during', 'the', 'war', 'of', '1', '8', '1', '2', ',', 'first', 'as', 'lieutenant', 'and', 'then', 'as', 'captain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'late', '2', '0', 'th', 'century', ',', '', '', \"'s\", 'story', 'began', 'to', 'attract', 'attention', 'from', 'both', 'sides', 'of', 'the', 'korean', 'divide', 'and', 'feature', 'in', 'a', 'variety', 'of', 'novels', ',', 'operas', ',', 'films', 'and', 'television', 'series', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'subsequently', 'abandoned', '5', '5', '/', '3', '5', 'mm', 'century', '', 'eventually', 'became', 'the', 'century', '', '7', '0', '/', '3', '5', 'mm', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'quality', 'of', 'the', 'line', '(', 'how', 'well', 'it', 'performs', ')', 'at', 'the', 'frequency', 'of', 'the', 'bin', 'in', 'question', 'determines', 'how', 'many', '', 'can', 'be', '', 'within', 'that', 'bin', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'final', 'years', 'from', '1', '9', '8', '9', 'were', 'spent', 'at', 'a', 'retirement', 'home', ',', 'in', '', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'every', '1', '0', '0', 'females', 'age', '1', '8', 'and', 'over', ',', 'there', 'were', '8', '7', '.', '0', 'males', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'maintained', 'a', 'considerable', 'financial', 'interest', 'and', 'a', 'friendly', 'connection', 'with', 'his', 'successors', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', ',', 'sky', 'refused', 'to', 'go', 'along', 'with', '', ',', 'the', 'mystery', 'woman', 'and', '', ',', 'when', 'they', 'all', 'finished', '', 'love', 'and', 'taylor', 'wilde', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'a', 'student', 'of', 'francesco', '', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'track', 'received', '1', '0', '0', 'k', 'hits', 'on', 'youtube', 'during', 'the', 'first', 'two', 'days', 'of', 'its', 'release', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'of', '', 'glass', 'in', 'the', '', 'shows', 'characters', 'from', 'the', 'bible', 'and', 'from', 'the', 'history', 'of', 'the', 'christian', 'church', ',', 'including', 'a', 'portrait', 'of', 'bishop', 'martin', ',', 'who', 'was', 'responsible', 'for', 'construction', 'of', 'the', 'new', 'building', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'before', 'they', 'can', 'do', 'anything', 'to', 'her', ',', 'ido', 'appears', 'and', 'attacks', 'rasha', 'with', 'his', 'rocket', '', ',', '', 'off', 'his', 'left', 'arm', ',', 'but', 'getting', '', 'in', 'the', 'shoulder', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'third', 'studio', 'album', ',', '``', '1', '8', 'months', \"''\", ',', 'was', 'released', 'on', '2', '9', 'october', '2', '0', '1', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'religious', ',', 'by', 'gathering', 'these', 'lands', 'to', 'other', 'land', 'grants', ',', 'were', 'an', '', 'plantation', 'marked', 'by', 'a', 'large', 'wooden', 'cross', ':', 'the', 'holy', 'cross', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', '', 'and', '', 'all', 'gave', '', 'solutions', 'to', 'this', 'problem', 'without', 'detailing', 'their', 'methods', ',', 'and', 'then', 'more', 'detailed', 'solutions', 'were', 'presented', 'by', 'jakob', '', 'and', 'abraham', 'de', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'case', 'has', 'been', 'described', 'as', '``', 'a', 'pivotal', 'moment', 'in', 'the', 'canadian', 'disability', 'rights', 'movement', \"''\", 'and', 'lead', 'to', 'a', 'widespread', '', 'of', 'provincial', '', 'laws', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'print', 'itself', 'was', 'given', 'to', 'abc', 'from', 'a', 'private', 'collector', 'living', 'in', 'australia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'field', 'occupied', '9', '.', '2', '2', 'hectares', 'and', 'had', 'a', '', 'capacity', 'of', '5', ',', '0', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '7', '8', '1', ',', 'when', 'pérez', 'was', 'only', '2', '0', 'years', 'old', ',', 'he', 'married', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'edition', '', 'the', '', 'originally', 'designed', 'by', '', 'for', 'the', '', '', 'edition', 'in', '1', '8', '9', '7', 'and', 'which', 'was', 'abandoned', 'after', 'the', 'sudden', 'death', 'of', 'the', 'author', 'in', '1', '8', '9', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'features', 'performances', 'by', 'brooks', ',', 'lee', 'morgan', ',', '', 'clark', ',', 'doug', '', 'and', 'art', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '', ',', 'a', '', 'is', 'a', '', 'that', 'specializes', 'in', 'eating', 'leaves', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'late', '1', '9', '6', '9', 'the', 'grateful', 'dead', 'began', '', '``', 'china', 'cat', '', \"''\", 'into', '``', 'i', 'know', 'you', 'rider', \"''\", 'during', 'live', 'performances', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'first', 'recording', 'session', 'at', 'age', '1', '7', 'was', 'the', 'top', '4', '0', '', 'michael', '', '``', 'we', 'do', \"n't\", 'have', 'to', 'take', 'our', 'clothes', 'off', \"''\", 'by', '', 'stewart', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'canadian', '', '1', '8', '', 'fighter', 'recorded', 'an', 'official', 'victory', 'in', 'the', 'beginning', 'of', 'the', 'battle', 'against', 'the', 'iraqi', 'navy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'have', 'been', 'to', 'the', 'college', 'world', 'series', 'once', ',', 'in', '1', '9', '8', '6', ',', 'and', 'also', 'recorded', '9', 'ncaa', 'appearances', ',', 'and', '1', '0', 'west', 'coast', 'conference', 'championships', '(', 'three', 'championship', 'series', 'and', 'seven', 'regular', 'season', ')', '.', '', '', '', '', '', '', '', '', '']\n", "['', '2', '0', '1', '5', 'dance', '', 'dance', \"'s\", '``', '', '', \"''\", 'debuted', 'at', '#', '3', '1', 'on', 'the', 'billboard', 'top', '2', '0', '0', 'charts', 'and', '#', '1', '8', 'on', 'overall', 'records', 'sold', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'human', 'cases', 'of', '', 'was', 'noted', 'in', '1', '9', '8', '5', 'to', 'be', 'a', '``', 'persistent', 'problem', \"''\", '', 'from', 'cattle', 'consumption', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'winning', 'candidate', 'was', 'sam', 'katz', ',', 'whose', 'platform', 'thomas', 'had', 'criticized', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'born', 'in', 'the', 'late', '1', '8', '7', '0', 's', 'to', 'the', '', 'royal', 'family', 'of', '', ',', 'sagamu', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '7', '1', ',', 'he', 'graduated', 'with', 'a', '', 'from', 'the', 'department', 'of', 'aeronautics', 'and', '', 'at', 'the', 'massachusetts', 'institute', 'of', 'technology', 'with', 'a', 'thesis', 'entitled', ',', '``', '', 'scientific', 'information', 'from', 'spacecraft', '', 'data', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'founded', 'in', '1', '9', '9', '4', 'in', 'portsmouth', ',', 'new', 'hampshire', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'day', 'of', 'ahmadinejad', \"'s\", 'return', ',', 'the', 'iranian', 'foreign', 'ministry', 'summoned', 'a', 'european', 'union', 'representative', 'in', 'tehran', 'to', 'protest', 'what', 'iran', 'called', 'the', 'eu', \"'s\", '``', 'double', 'standard', \"''\", 'with', '', 'to', 'racism', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'people', 'perform', 'their', '', 'in', 'deep', 'brotherhood', 'here', ',', 'especially', 'in', '', 'mosque', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'county', 'is', 'subdivided', 'into', 'six', '', '(', 'two', 'urban', ',', 'one', '', 'and', 'three', 'rural', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'garden', 'at', '', 'is', 'located', 'at', 'the', 'corner', 'of', '``', '', 'santa', '', \"''\", '(', 'st.', 'catherine', 'street', ')', 'and', '``', '', '', '', \"''\", '(', '', '', 'street', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'is', 'a', 'member', 'of', 'the', 'high', 'class', ',', 'core', 'family', ',', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'a', 'petrol', 'station', 'also', 'in', 'block', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'civil', 'war', '', ',', 'and', 'the', 'race', '', 'into', 'the', '', 'and', 'the', '', '(', 'and', 'in', 'the', '', 'campaign', 'setting', 'the', '', 'of', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'michael', '', 'was', 'appointed', 'city', 'editor', ',', 'to', 'which', 'his', 'deputies', 'were', '', '', 'and', 'thomas', 'müller', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'olive', '', 'is', 'native', 'to', 'central', ',', 'east', 'and', 'southern', 'africa', ',', 'from', 'the', '', 'mountains', 'to', 'the', 'western', 'cape', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'action', 'of', '1', '2', 'october', '1', '9', '5', '0', 'was', 'a', 'battle', 'fought', 'during', 'the', 'korean', 'war', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'wickrematunge', 'the', 'president', 'had', 'threatened', 'to', 'destroy', 'him', 'saying', '``', '', 'your', 'mother', ',', 'you', 'son', 'of', 'a', 'bloody', '', '!', '...', 'i', 'treated', 'you', 'well', 'all', 'this', 'while', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'also', 'deprived', '', \"'s\", 'rival', '', 'of', 'a', 'powerful', 'supporter', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bloglines', 'became', '', 'in', 'early', '2', '0', '1', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'units', 'range', 'in', 'grade', 'from', '0', 'to', '5', ',', 'though', 'not', 'all', 'categories', 'of', 'units', 'have', 'a', 'unit', 'available', 'for', 'every', 'grade', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'also', 'adopted', 'a', 'performance', 'rating', '', 'instead', 'of', 'reporting', 'the', 'real', '', 'speed', ',', 'similar', 'to', 'contemporary', 'amd', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'now', 'merely', 'a', 'few', 'buildings', ',', 'south', 'spafford', 'retains', 'an', 'old', 'church', ',', 'no', 'longer', 'in', 'service', 'for', 'that', 'purpose', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'night', 'of', 'december', '3', '1', ',', '2', '0', '1', '2', ',', '', \"'s\", 'department', 'placed', '1', '1', 'transport', 'units', 'out', 'of', 'service', ',', '', 'excessive', '', 'leave', 'taken', 'by', 'the', 'members', 'of', 'the', 'department', 'that', 'morning', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'each', 'album', 'is', 'very', 'different', 'with', 'a', 'wide', 'range', 'of', 'songs', 'and', 'sounds', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'may', '2', '0', '1', '2', ',', 'songwriter', 'and', 'producer', 'william', 'orbit', 'stated', 'that', 'the', 'best', 'songs', 'he', 'made', 'for', '', \"'s\", 'album', '``', '', \"''\", '(', '2', '0', '1', '2', ')', 'that', 'did', 'not', 'make', 'the', 'final', 'track', '', 'would', 'be', 'included', 'on', '``', 'fortune', \"''\", '.', '', '']\n", "['', '', 'married', '', '', 'knight', 'in', '2', '0', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'january', '2', '0', '0', '7', ',', 'iajuddin', 'ahmed', 'stepped', 'down', 'as', 'the', 'head', 'of', 'the', '', 'government', ',', 'under', 'pressure', 'from', 'the', 'military', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'myra', 'began', 'to', 'become', 'involved', 'within', 'her', 'community', ',', 'and', 'was', 'on', 'the', 'board', 'of', 'the', 'friends', 'association', 'of', 'service', 'for', 'the', 'elderly', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '(', 'blocks', '2', '9', ',', '4', '5', 'and', '7', '0', 'in', 'new', 'belgrade', ',', 'etc', '.', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'march', '1', '8', '8', '4', 'report', 'stated', 'that', 'due', 'to', 'the', '', 'of', '', 'and', '', 'fever', 'there', 'had', 'been', 'a', 'large', 'increase', 'in', 'the', 'number', 'of', '', ',', 'as', 'well', 'as', 'a', '', 'high', 'death', 'rate', ',', 'with', 'eight', 'deaths', 'that', 'month', '.', '', '', '', '']\n", "['', '', 'held', 'that', 'the', 'will', 'was', 'superior', 'since', ',', 'through', 'it', ',', 'god', 'is', 'known', 'as', 'he', 'actually', 'is', 'whereas', 'the', 'intellect', 'only', 'knows', 'the', 'image', 'of', 'god', 'in', 'the', 'mind', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', '', 'is', 'a', 'cpu', 'that', '', 'between', 'threads', 'of', 'execution', 'on', 'every', 'cycle', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'base', 'model', 'high', '', 'features', 'an', '', '', '', '', '', '', ',', '', 'landing', 'gear', 'and', 'a', 'single', '2', '', '4', '6', '0', '', 'engine', 'in', '', 'configuration', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', '', ',', 'he', 'was', 'once', 'a', 'doctor', 'and', 'priest', 'serving', 'in', 'the', 'medical', 'corps', 'during', 'either', 'world', 'war', 'ii', 'or', 'the', 'korean', 'war', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'lived', 'in', 'wellington', 'for', 'a', 'period', ',', 'working', 'as', 'an', '', 'for', 'the', '', 'society', 'of', 'merchant', '', ',', 'and', 'was', 'interviewed', 'by', 'the', '``', '', 'worker', \"''\", 'about', 'the', 'differences', 'between', 'the', 'labour', 'movements', 'in', 'australia', 'and', 'new', 'zealand', '.', '', '', '', '', '', '', '', '']\n", "['', 'found', 'in', 'near', 'equal', '', 'in', 'both', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', ',', 'which', 'was', 'from', 'god', ',', 'was', 'that', 'of', 'adam', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'philipps', 'has', 'written', 'extensively', 'about', 'wild', 'horses', 'in', 'the', 'west', ',', 'and', 'gained', 'attention', 'in', '2', '0', '1', '2', 'when', 'u.s.', 'secretary', 'of', 'interior', 'ken', '', 'threatened', 'to', '', 'him', 'while', 'philipps', 'was', 'asking', 'about', '', 'in', 'the', 'department', \"'s\", 'wild', 'horse', 'program', '.', '', '', '', '', '', '']\n", "['', 'released', 'in', '1', '9', '9', '3', ',', 'it', 'was', 'produced', 'by', 'christian', 'de', '', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'revealed', 'that', '``', 'flourishing', \"''\", 'would', 'be', 'an', 'extended', 'play', 'and', 'be', 'released', 'on', 'june', '2', '4', 'at', '6', 'p.m.', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'house', 'performed', 'the', 'song', '(', 'along', 'with', '``', 'mr.', '', 'man', \"''\", 'and', '``', 'eight', 'miles', 'high', \"''\", ')', 'with', '', 'in', 'los', 'angeles', 'on', 'april', '7', ',', '1', '9', '8', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'shortly', 'after', '', 'joined', 'the', '', ',', 'four', 'major', 'lectures', 'on', 'painting', 'were', 'delivered', 'by', 'john', 'opie', 'in', 'february', 'and', 'march', '1', '8', '0', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'film', ',', '', 'webb', 'portrayed', 'the', '1', '0', '-year', 'old', 'ella', 'in', 'the', '', ',', 'with', '', 'james', 'portrayed', 'the', 'older', 'ella', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'southern', 'half', 'of', 'the', 'welsh', 'district', 'became', 'the', '``', 'diocese', 'of', 'newport', 'and', '', \"''\", 'and', 'was', 'a', '', 'of', 'the', 'archdiocese', 'of', 'birmingham', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'fearing', 'the', 'destruction', 'of', 'the', 'natural', 'character', 'and', '', 'charm', 'of', 'the', 'community', ',', 'during', 'the', 'early', '1', '9', '9', '0', 's', 'the', '', '', 'township', 'established', 'an', '``', 'open', 'space', 'program', \"''\", ',', 'to', 'be', 'funded', 'by', 'a', '', 'dedicated', 'local', 'property', 'tax', 'to', 'buy', '', 'land', '.', '']\n", "['', 'the', 'first', 'clash', 'between', 'a', '', 'of', 'an', 'indian', 'kingdom', 'and', 'the', 'arabs', 'took', 'place', 'in', '6', '4', '3', 'ad', ',', 'when', 'arab', 'forces', 'defeated', '', ',', 'king', 'of', '', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'dorsal', 'surface', 'is', 'white', 'or', 'cream', ',', 'the', 'head', 'and', 'thorax', 'are', 'green', 'or', '', 'and', 'covered', 'with', 'white', '', ',', 'and', 'the', '', 'are', 'greatly', 'expanded', ',', 'leaving', 'only', 'small', 'areas', 'of', 'white', 'brown', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', '2', '0', '0', '9', ',', 'the', 'firm', 'employed', 'more', 'than', '2', '0', '0', 'people', 'at', 'nine', 'locations', 'in', 'europe', 'and', 'served', 'more', 'than', '1', '5', ',', '0', '0', '0', 'corporate', 'customers', 'in', '5', '5', 'countries', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'gene', 'for', '', '1', 'is', 'located', 'on', '', '1', '3', 'q', '3', '1', '.', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'book', 'is', 'both', 'an', 'introduction', 'to', 'the', 'other', 'works', 'and', 'a', '', 'of', 'them', ',', 'which', ',', 'in', 'their', 'turn', ',', 'can', 'each', 'be', 'seen', 'as', 'an', '', 'of', 'one', 'of', 'the', 'issues', 'it', 'covers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'films', 'were', 'produced', 'by', '', 'films', ',', 'an', 'independent', 'film', 'company', 'based', 'in', 'seattle', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '6', ',', 'time', 'inc.', 'acquired', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', '2', '0', '1', '5', ',', 'she', 'has', 'lived', 'in', 'budapest', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'of', 'bell', \"'s\", 'death', ',', 'oregon', '', 'activist', '', '', 'stated', ':', '``', 'sometimes', ',', 'it', 'can', 'be', 'easy', 'to', 'become', '', 'to', 'so', 'many', 'stories', 'like', '', \"'s\", 'in', 'the', 'media', '...', 'every', 'story', '(', 'including', 'those', 'not', 'covered', 'by', 'media', 'outlets', ')', 'has', 'equal', 'importance', '...', '', '']\n", "['', 'in', 'response', 'to', 'this', 'threat', ',', 'jackson', 'chose', 'to', 'go', 'on', 'the', 'offensive', ',', 'attacking', 'pope', \"'s\", '', 'under', 'banks', ',', 'before', 'the', 'entire', 'army', 'of', 'virginia', 'could', 'be', 'brought', 'to', 'bear', 'on', 'his', 'position', 'at', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'in', 'turn', 'gave', 'the', 'nearby', 'holy', '', 'temple', 'its', 'original', 'name', ',', '``', 'bass', 'tomb', \"''\", ',', 'after', 'her', 'guide', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'further', ',', 'at', 'about', 'the', 'same', 'time', 'a', 'claimed', '``', '', 'horse', 'bone', \"''\", 'may', 'have', 'been', 'unearthed', 'at', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'documents', 'the', 'rise', 'of', 'the', 'australia', \"'s\", 'alternative', 'music', 'scene', 'and', 'how', 'that', 'success', 'attracted', 'the', 'interest', 'of', 'the', 'music', 'industry', \"'s\", 'major', 'labels', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'relations', ',', 'in', 'contrast', ',', 'are', 'concerned', 'with', 'how', 'units', ',', 'once', 'selected', 'from', 'their', '', 'sets', 'of', '', ',', 'are', '', \"'\", 'together', 'into', 'structural', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '1', 'of', 'the', 'u.s.', '``', 'billboard', \"''\", 'hot', '1', '0', '0', 'in', 'october', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'a', 'few', 'weeks', ',', 'however', ',', 'ramsay', 'saw', 'reason', 'to', 'believe', 'that', 'the', 'agreement', 'would', 'not', 'be', 'fairly', 'executed', ',', 'and', 'in', 'december', '1', '6', '3', '7', 'he', 'made', 'the', 'count', 'of', 'hanau', 'prisoner', ',', 'and', '', 'possession', 'of', 'hanau', '.', '', '', '', '', '', '', '', '']\n", "['', 'ten', 'days', 'of', 'experimental', 'medicine', 'successfully', '', 'the', 'artery', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'died', 'at', 'paris', 'on', '1', '3', 'july', '1', '5', '6', '6', ',', 'and', 'was', 'buried', 'at', '', ',', 'berkshire', ',', 'where', 'his', 'widow', 'erected', 'a', 'monument', 'to', 'his', 'memory', 'and', 'to', 'that', 'of', 'his', '', 'sir', 'philip', '', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'its', 'first', 'six', 'years', ',', 'the', 'secretariat', 'reportedly', 'refused', 'to', 'say', 'how', 'many', 'corruption', '', 'it', 'had', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'given', 'the', 'number', '2', '5', '', ',', 'previously', 'worn', 'by', 'bobby', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'terms', 'of', 'sales', ',', 'devi', 'is', 'the', 'most', 'popular', 'comic', 'of', 'the', '', 'line', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', 'outdoor', 'air', 'pollution', 'is', 'a', 'major', 'cause', 'of', '', 'death', 'in', 'europe', ',', 'the', 'excessive', 'pollution', 'is', 'a', 'major', 'concern', 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'oldest', 'evidence', 'of', 'human', 'existence', 'on', 'the', '', 'islands', 'is', 'from', 'the', 'stone', 'age', 'and', 'was', 'discovered', 'in', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'plans', 'of', 'the', 'tourism', 'department', 'of', 'the', 'government', 'of', '', ',', 'the', '', '', 'will', 'soon', 'get', 'a', '', ',', 'a', 'restaurant', ',', '', ',', '', '', ',', 'lighting', 'facilities', 'and', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'and', 'the', 'recent', 'development', 'of', '', ',', 'a', 'centre', 'for', 'innovation', 'in', '', 'and', '', ',', 'only', 'increases', '', \"'s\", 'position', 'as', 'a', 'european', 'scientific', 'centre', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'school', '', 'on', 'the', 'site', 'of', 'the', 'former', 'world', 'international', 'school', ',', 'which', 'provided', 'an', 'international', 'education', 'in', 'english', 'for', 'pupils', 'aged', '2', '', 'to', '1', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'a', '', 'de', '', 'at', 'the', 'university', 'of', 'nancy', ',', 'and', 'later', 'a', 'professor', 'of', 'greek', '', 'at', 'paris', 'i', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'because', 'they', 'accept', 'all', 'the', 'major', 'hindu', 'gods', ',', 'they', 'are', 'known', 'as', 'liberal', 'or', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'flight', '1', '6', '9', '1', 'was', 'due', 'to', 'leave', 'for', 'odessa', 'at', '8', ':', '1', '5', 'local', 'time', ',', 'but', 'was', 'delayed', 'due', 'to', 'adverse', 'weather', 'conditions', 'at', 'both', 'odessa', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'his', 'senior', 'year', 'he', 'was', 'drafted', 'by', 'the', 'colorado', '', 'in', 'the', '4', '9', 'th', 'round', 'of', 'the', '2', '0', '0', '4', 'mlb', 'draft', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'later', 'he', 'worked', 'at', 'the', 'publishing', 'company', '``', '', '', \"''\", 'and', 'as', 'a', 'translator', ',', 'then', 'as', 'a', 'journalist', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'founded', 'by', 'a', 'non-profit', 'organization', 'known', 'as', 'the', 'women', \"'s\", 'civic', 'league', ',', 'which', 'is', 'an', 'organization', 'run', 'by', 'women', 'looking', 'to', 'better', 'baltimore', 'for', 'its', 'citizens', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'their', 'return', 'journey', 'six', 'days', 'later', 'the', '', 'party', 'camped', 'on', 'the', 'opposite', 'side', 'of', 'the', 'river', 'where', 'the', 'tributary', 'entered', 'the', 'main', 'stream', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'played', 'the', 'central', 'character', 'in', 'the', 'stage', 'play', '``', '', 'view', \"''\", 'as', 'well', 'as', 'in', 'the', 'film', 'adaptation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'this', 'was', '', 'not', 'the', 'limit', 'of', 'the', 'soldiers', 'load', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'central', 'seminary', 'of', 'the', 'university', 'of', '', '', 'was', 'designed', 'by', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'born', '1', '8', '0', '3', 'or', '1', '8', '0', '4', ',', 'edward', 'was', 'the', 'younger', 'son', 'of', 'the', 'medical', 'doctor', 'john', '', 'and', 'his', 'wife', ',', 'charlotte', '``', 'née', \"''\", '', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'wife', 'florence', 'revised', 'the', 'book', 'after', 'he', 'became', 'disabled', ',', 'and', '``', 'mr.', '', \"'s\", 'penguins', \"''\", 'went', 'on', 'to', 'become', 'a', 'children', \"'s\", 'classic', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'introduction', 'of', '', 'type', 'ii', '', 'introduced', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'then', 'tells', 'her', 'that', 'the', 'best', 'way', 'to', 'end', 'the', '', 'and', 'the', 'continuous', 'spread', 'of', 'the', '', 'is', 'to', 'kill', 'him', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'were', '3', '3', '8', '(', '6', '.', '2', '%', ')', '', '', 'partnerships', ',', 'and', '4', '9', '(', '0', '.', '9', '%', ')', '', 'married', 'couples', 'or', 'partnerships', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'third', 'test', ',', 'new', 'zealand', 'were', '1', '-', '1', '1', '9', 'when', 'dyer', 'claimed', 'a', 'catch', 'off', 'andrew', 'jones', 'from', 'the', '', 'of', 'craig', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', '', 'to', 'introduce', 'a', 'new', 'cheap', 'oral', '', 'vaccine', 'in', 'bangladesh', 'in', 'replacement', 'of', '', ',', 'which', 'is', 'costly', 'for', 'poor', 'people', 'and', '', 'as', 'a', 'public', 'health', 'tool', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'building', 'costs', 'were', 'estimated', 'at', '£', '3', ',', '5', '0', '0', ',', 'from', 'which', 'the', 'federation', 'of', '', 'contributed', '£', '5', '0', '0', ',', 'private', 'members', 'raised', '£', '7', '0', '0', 'and', 'samuel', '', 'put', 'down', 'at', 'least', '£', '2', '0', '0', 'of', 'his', 'own', 'money', '.', '', '', '']\n", "['', 'there', 'is', 'no', 'defense', 'against', '', 'based', '', ',', 'except', 'using', '', 'call', '', ';', 'products', 'offering', 'this', 'feature', ',', 'secure', '', ',', 'are', 'already', 'beginning', 'to', 'appear', 'on', 'the', 'market', ',', 'though', 'they', 'tend', 'to', 'be', 'expensive', 'and', '', 'with', 'each', 'other', ',', 'which', 'limits', 'their', '', '.', '']\n", "['', '', 'or', '', '', '', 'was', 'a', 'russian', '', 'who', ',', 'among', 'other', 'works', ',', 'produced', 'valuable', '', '', 'regarding', 'two', 'indigenous', 'peoples', 'of', 'brazil', 'in', '1', '9', '1', '4', 'and', '1', '9', '1', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'antennae', 'are', 'dark', 'fuscous', 'and', 'the', 'thorax', 'is', 'dark', 'fuscous', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '1', '9', '7', '0', 's', 'it', 'became', 'the', 'caulfield', 'institute', 'of', 'technology', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'rebellion', 'organized', 'a', 'group', 'to', '', 'for', 'paris', ',', 'where', 'it', 'met', 'with', 'officials', 'of', 'the', 'french', 'government', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'wanted', 'to', 'end', 'the', 'film', 'with', 'the', '', 'but', 'was', '', 'by', 'the', 'producer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'the', 'greek', 'divisions', 'on', 'the', 'eastern', 'slopes', 'of', 'mt', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'clinical', 'and', 'research', 'interests', 'include', 'psychological', 'issues', 'among', 'catholic', '', 'and', '', ',', 'ethical', 'decision', 'making', ',', 'health', 'effects', 'related', 'to', 'spiritual', 'and', 'religious', 'involvement', ',', 'stress', 'and', '', ',', 'and', 'the', 'influence', 'of', '', 'exercise', 'and', 'perceived', '', 'on', 'psychological', '', '.', '', '', '', '', '']\n", "['', 'the', 'first', 'movement', 'is', 'in', '', 'form', '(', '', ',', 'plus', 'a', '', ')', ',', 'the', 'main', 'theme', 'of', 'which', 'begins', 'with', 'a', '', 'violin', 'melody', 'heavily', '', 'with', '', 'influences', ',', 'including', 'the', 'characteristic', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'the', 'two', 'teams', '', 'at', 'the', 'end', 'of', 'the', 'regular', 'season', ',', 'they', 'played', 'a', '', '', 'series', 'to', 'decide', 'the', 'championship', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'front', ',', 'the', 'national', 'liberation', 'movement', 'that', '', 'the', '', ',', 'currently', 'controls', 'the', 'area', 'that', 'it', 'calls', 'the', 'liberated', 'territories', ',', 'a', 'strip', 'of', 'western', '', 'territory', 'east', 'of', 'the', 'moroccan', 'wall', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'new', 'york', 'city', 'scenes', 'were', 'filmed', 'on', 'the', '2', '0', 'th', '', 'lot', 'in', 'california', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'county', 'state', 'wildlife', 'area', ',', 'a', 'state', 'park', ',', 'is', 'located', 'in', 'the', 'northeast', 'corner', 'of', 'the', 'county', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'featuring', '', '', 'in', 'the', 'lead', 'protagonist', 'role', ',', 'it', 'also', 'stars', '', '', ',', '', ',', '', 'and', '', '', 'in', 'key', 'roles', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '6', '0', ',', 'jason', '', 'sold', 'his', 'business', 'to', 'the', 'union', '', 'co.', 'which', 'was', '', 'owned', 'by', 'daniel', 'crowley', '(', 'the', 'former', 'captain', 'of', 'the', '``', 'north', 'star', \"''\", ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '', 'situations', 'where', 'a', 'council', 'decision', 'can', 'not', 'be', 'made', 'in', 'time', ',', 'he', 'is', '', 'to', 'act', 'on', 'behalf', 'of', 'the', 'whole', 'council', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'replied', ',', '', 'his', 'views', 'on', 'the', 'situation', 'faced', 'by', 'the', 'revolutionary', 'socialist', 'movement', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'pipe', 'organ', 'was', 'installed', 'by', 'bishop', 'and', 'son', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'of', 'his', 'literary', 'works', 'received', 'good', 'reviews', 'in', 'his', 'local', 'network', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'building', 'may', 'be', 'sold', 'in', 'order', 'for', 'the', 'state', 'to', '', 'the', 'loss', 'brought', 'to', 'it', 'as', 'a', 'result', 'of', 'the', '', '', 'of', 'the', 'institute', 'for', '', 'research', 'in', '2', '0', '0', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'two', 'years', 'later', 'in', '2', '0', '0', '9', ',', 'the', 'australian', 'youth', 'climate', 'coalition', ',', 'in', 'partnership', 'with', 'the', 'university', 'of', 'western', 'sydney', ',', '', 'and', '', ',', 'organised', 'the', 'australian', 'power', 'shift', 'conference', 'on', 'july', '1', '1', 'to', '1', '3', ',', '2', '0', '0', '9', '.', '', '', '']\n", "['', 'the', 'same', 'year', ',', 'the', 'agriculture', 'and', 'resource', 'management', 'council', 'of', 'australia', 'and', 'new', 'zealand', 'decided', 'to', 'phase', 'out', 'remaining', '', 'uses', 'by', '3', '0', 'june', '1', '9', '9', '5', ',', 'with', 'the', 'exception', 'of', 'the', 'northern', 'territory', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'project', 'would', 'have', 'constructed', 'new', 'rail', 'facilities', 'to', 'connect', 'with', 'the', 'long', 'island', 'rail', 'road', ',', 'new', 'york', 'connecting', 'railroad', ',', 'and', 'a', 'proposed', 'rail', 'tunnel', 'to', 'staten', 'island', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'the', 'area', 'is', 'still', 'best', 'known', 'for', 'winter', 'activities', ',', 'today', 'the', 'resort', 'has', 'extensive', 'mountain', '', 'trails', ',', 'a', 'popular', 'golf', 'course', ',', 'wedding', 'and', 'convention', 'areas', ',', 'a', 'number', 'of', 'summer', 'outdoor', 'activities', ',', 'and', 'also', 'hosts', 'a', 'grand', 'national', 'cross', 'country', 'racing', 'event', '.', '', '']\n", "['', 'nurse', 'fran', 'reynolds', '(', '', '', ')', ',', 'who', 'grew', 'up', 'in', 'the', 'same', 'care', 'home', 'as', 'jac', ',', 'becomes', '', 'of', 'jasmine', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'today', 'the', 'route', 'forms', 'a', 'loop', '', '', 'from', 'civic', 'center', '', ',', 'and', 'its', 'length', 'is', 'closer', 'to', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'per', 'capita', 'income', 'for', 'the', 'cdp', 'was', '$', '1', '7', ',', '0', '1', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'knew', 'he', 'needed', 'to', 'bring', 'clinton', 'back', 'into', 'the', 'news', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '5', ',', '', 'purchased', '', 'radio', 'in', '', ',', 'ohio', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'lake', '', 'is', 'a', 'long', 'reservoir', 'on', 'the', 'columbia', 'river', 'in', 'the', 'united', 'states', ',', 'between', 'the', 'u.s.', 'states', 'of', 'washington', 'and', 'oregon', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'february', '1', '9', '4', '6', ',', 'the', 'newly', 'appointed', 'united', 'states', 'attorney', 'general', ',', '', 'tom', 'c.', 'clark', ',', 'recommended', 'a', 'pardon', 'to', 'president', '', ',', 'who', 'granted', 'it', 'on', '2', '0', 'february', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '4', '', 'stan', '', 'in', 'the', '', 'in', 'straight', 'sets', ',', 'marking', '', \"'s\", 'best', 'result', 'at', 'the', 'tournament', 'since', 'his', '2', '0', '1', '3', '', 'run', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'equipment', 'for', 'the', 'plant', ',', 'the', 'biggest', 'in', 'spain', ',', 'cost', 'more', 'than', 'seven', 'million', '', ';', 'it', '', '', 'before', 'taking', 'the', 'remainder', 'to', 'the', '', 'dump', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'father', 'was', 'charles', '', '', ',', 'a', 'member', 'of', 'the', 'royal', 'college', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'returned', '6', '6', '', 'for', '1', ',', '6', '1', '8', 'yards', 'and', '3', '1', '', 'for', '3', '6', '0', 'yards', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', '', \"''\", 'premiered', 'on', 'october', '8', ',', '2', '0', '1', '8', 'on', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'are', '', 'in', 'debt', 'contracts', 'that', 'require', '', 'to', 'maintain', 'certain', 'levels', 'of', 'capital', 'or', 'financial', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'hundred', 'of', 'them', ',', 'in', 'new', 'uniforms', 'and', 'armed', 'with', '', ',', 'have', 'already', 'been', 'recruited', 'as', 'the', 'nucleus', 'of', 'the', 'new', '', 'army', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'period', 'of', '1', '9', '4', '2', 'and', '1', '9', '4', '5', ',', 'hajong', '', 'organized', 'in', 'the', '', 'sabha', 'struggled', 'against', 'feudal', '', 'of', 'bengali', 'hindu', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'school', 'of', 'creative', 'leadership', 'is', 'an', 'international', 'leadership', 'organization', '', 'in', 'amsterdam', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'their', 'marriage', ',', 'tilottama', 'took', 'her', 'husband', \"'s\", 'last', 'name', 'and', 'began', 'teaching', 'english', 'at', 'the', '', 'ann', '', 'university', 'and', 'also', 'worked', 'as', 'a', '', 'writer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'only', 'later', ',', 'he', 'believed', ',', 'would', 'it', 'be', 'possible', 'to', 'progress', 'to', 'a', 'communist', 'system', 'where', 'distribution', 'will', 'be', 'according', 'to', 'need', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'achieved', 'his', 'most', 'widespread', 'fame', 'starring', 'in', 'the', 'television', 'sitcom', '``', '', 'and', 'son', ',', \"''\", 'an', 'adaptation', 'of', 'the', 'bbc', 'series', '``', '', 'and', 'son', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '', 'won', 'its', '', 'cup', 'title', 'in', 'club', 'history', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'was', 'declared', 'the', 'winner', ',', 'with', 'tamar', '', 'as', 'runner-up', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'version', 'features', 'an', 'english', 'dub', 'with', '', '', 'his', 'own', 'voice', 'and', '', '', 'as', 'the', 'voice', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'branch', 'had', 'several', 'customers', 'throughout', 'its', 'existence', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'federal', 'government', 'has', 'only', 'a', 'very', 'limited', 'role', 'in', 'water', 'supply', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'included', '', ',', '', '', '', ',', '', ',', '', ',', '', ',', 'and', '', 'himself', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'donald', 'died', 'on', '2', '0', 'august', '1', '9', '6', '8', ',', 'at', 'their', 'then', 'home', 'at', 'holy', 'well', 'cottage', ',', '', '', 'lane', ',', 'loughborough', ';', 'he', 'was', '4', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'had', 'two', 'seats', 'and', 'was', 'fitted', 'with', 'what', 'was', 'called', 'a', '``', 'democrat', \"''\", 'body', 'on', 'an', '8', 'foot', '4', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', '', 'by', 'browning', 'and', '', 'young', ',', 'writing', 'a', 'similar', 'storyline', 'to', 'their', 'earlier', '1', '9', '2', '5', 'hit', 'film', '``', 'the', '', 'three', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'a', 'recent', 'interview', ',', 'former', 'washington', 'wizards', 'teammate', '', 'butler', 'stated', 'that', '``', 'you', 'never', 'know', ',', 'and', 'that', \"'s\", 'the', 'crazy', 'thing', 'about', 'it', \"''\", 'when', '', 'if', 'there', 'was', 'going', 'to', 'be', 'a', '', 'pulled', 'in', 'the', 'incident', 'between', 'crittenton', 'and', 'arenas', '.', '', '', '', '']\n", "['', '', 'are', 'solid', '', 'organic', '', 'formed', 'by', 'proton', 'transfer', 'from', 'a', '', 'acid', 'to', 'a', '', 'base', 'and', 'in', 'essence', 'are', '', '', '', 'in', 'the', '', 'state', ',', 'have', 'found', 'to', 'be', 'promising', '', 'proton', '', 'for', 'high', 'temperature', 'proton', 'exchange', 'membrane', 'fuel', 'cells', '.', '', '', '']\n", "['', 'the', 'home', 'was', 'closed', 'in', '1', '9', '9', '8', 'for', 'reasons', 'of', 'economy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '2', 'the', 'charity', 'announced', 'that', 'it', 'was', 'looking', 'to', '', 'in', 'order', 'to', '', 'other', 'challenges', 'facing', 'welsh', 'wildlife', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', '', 'radio', 'was', 'bought', '(', 'possibly', 'by', '', 'group', ')', 'in', 'the', 'late', '1', '9', '7', '0', 's', ',', '', '', 'created', 'radio', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'work', 'of', 'the', 'committee', 'resulted', 'in', 'the', 'passing', 'of', 'the', 'gold', 'coast', 'library', 'board', 'ordinance', 'cap', '1', '1', '8', ',', 'in', 'december', ',', '1', '9', '4', '9', ',', 'which', 'became', 'operational', 'on', 'january', '1', ',', '1', '9', '5', '0', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'described', 'by', '', 'in', '1', '8', '9', '4', ',', 'the', 'species', 'is', 'endemic', 'to', 'brazil', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'core', 'companies', 'of', 'the', '', '', ',', 'tata', 'steel', ',', 'tata', 'chemicals', ',', 'tata', 'power', ',', 'tata', 'industries', ',', 'tata', 'airlines', 'and', 'trent', '', 'out', 'of', 'the', '', 'house', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'initially', '', 'under', 'the', 'ring', 'names', 'kevin', '', 'and', 'killer', '', ',', 'performing', 'for', 'impact', 'wrestling', ',', '', '', 'aaa', 'worldwide', '(', 'aaa', ')', ',', 'major', 'league', 'wrestling', ',', 'and', 'multiple', 'promotions', 'on', 'the', 'independent', 'circuit', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'simone', 'tried', 'to', 'break', 'it', 'up', 'and', 'ended', 'up', 'falling', 'to', 'the', 'floor', ',', 'suffering', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'at', 'the', 'eastern', 'end', 'of', 'the', 'supermarket', 'was', 'built', 'as', 'well', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'elected', 'to', 'the', 'house', 'of', 'commons', 'for', '', 'in', '1', '7', '6', '8', ',', 'a', 'seat', 'he', 'held', 'until', '1', '7', '9', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'despite', 'a', '', 'response', 'to', 'their', 'debut', 'performance', 'in', 'january', '1', '9', '9', '9', ',', '', 'went', 'on', 'to', 'establish', 'themselves', 'as', 'one', 'of', 'the', 'most', 'popular', '', '', 'groups', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'mass-produced', '1', '9', 'th', 'century', 'units', 'only', '', 'the', 'building', \"'s\", 'façade', ',', 'with', 'the', 'building', \"'s\", 'largely', 'being', 'built', 'on', 'mass-produced', '', 'filled', 'with', '', '', ',', '', 'and', '', ',', 'or', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'species', 'of', 'octopus', 'that', 'lives', 'in', 'the', 'south', 'china', 'sea', ',', 'which', 'is', 'known', 'only', 'from', 'one', 'female', '', 'collected', 'at', 'a', 'depth', 'of', '7', '6', '7', 'meters', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'fortunately', ',', 'her', 'eyes', 'had', 'recovered', 'four', 'days', 'later', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'has', 'also', 'played', 'for', 'the', 'tokyo', '', '', 'of', 'nippon', 'professional', 'baseball', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'negative', 'momentum', 'is', 'applied', 'to', 'explain', 'negative', '', ',', 'inverse', '', 'effect', 'and', 'reverse', '', 'effect', 'observed', 'in', 'a', 'negative', 'index', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'i', 'made', 'an', 'horrific', '', ',', 'but', 'should', \"n't\", 'a', 'good', 'horror', 'film', 'be', 'horrific', '?', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'later', 'represented', 'texas', 'in', 'the', 'second', 'confederate', 'congress', 'in', '1', '8', '6', '4', 'and', '1', '8', '6', '5', 'until', 'the', 'end', 'of', 'the', 'war', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '6', ',', 'an', 'official', 'funeral', 'of', 'the', 'town', \"'s\", '', 'from', '1', '6', '5', '6', 'took', 'place', ',', 'after', 'their', 'remains', 'were', 'discovered', 'during', 'archaeological', 'works', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'carter', 'g.', 'woodson', 'regional', 'library', 'is', 'one', 'of', 'two', 'regional', 'libraries', 'in', 'the', 'chicago', 'public', 'library', 'system', 'in', 'chicago', ',', 'in', 'the', 'u.s.', 'state', 'of', 'illinois', ',', 'serving', 'as', 'the', 'hub', 'for', 'the', 'approximately', '2', '4', 'branch', 'libraries', 'of', 'the', 'south', 'district', '.', '', '', '', '', '', '', '']\n", "['', 'hispanic', 'or', 'latino', 'people', 'represented', '2', '%', 'of', 'the', 'population', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'also', 'true', 'that', 'hart', 'worked', 'hard', 'to', 'keep', 'his', '', 'identity', 'secret', ',', 'and', 'would', '', 'have', 'sought', 'to', 'publicly', 'claim', 'a', 'trans', 'identity', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'delegates', 'from', 'hong', 'kong', 'and', 'macau', 'are', 'elected', 'via', 'an', 'electoral', 'college', 'rather', 'than', 'by', 'popular', 'vote', ',', 'but', 'do', 'include', 'significant', 'political', 'figures', 'who', 'are', 'residing', 'in', 'the', 'regions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'revealed', 'a', 'surprise', 'reunion', 'as', 'a', 'band', 'in', '2', '0', '1', '6', ',', 'featuring', 'original', 'guitarist', 'paul', '', 'returning', 'to', 'the', 'band', 'along', 'with', '', '', 'underwood', 'on', 'bass', 'guitar', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'left', 'with', 'no', 'choice', '', 'gives', 'in', 'to', 'him', 'due', 'to', 'which', 'not', 'only', 'her', 'job', 'is', '', 'but', 'also', 'a', 'promotion', 'is', 'given', 'to', 'her', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'values', 'that', 'are', '', 'according', 'to', 'the', '', 'rules', ';', 'these', 'values', 'simply', 'represent', 'the', 'results', 'of', 'these', 'rules', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'the', 'entire', '1', '9', '9', '7', '-', '9', '8', 'season', 'in', '2', '0', '1', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'de', '', \"''\", 'continues', 'to', 'be', 'one', 'of', 'the', 'most', 'popular', 'of', '', \"'s\", 'works', 'because', 'of', 'its', 'style', ',', 'and', 'because', 'of', 'its', '', 'of', 'roman', 'political', 'life', 'under', 'the', 'republic', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'average', 'household', 'size', 'was', '2', '.', '5', '6', 'and', 'the', 'average', 'family', 'size', 'was', '3', '.', '0', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', ',', 'commonly', 'known', 'as', 'the', '', 'cuttlefish', 'or', '', 'cuttlefish', ',', 'is', 'a', 'species', 'of', 'cuttlefish', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'larva', \"'s\", 'head', 'is', 'pale', 'brown', '', 'with', 'darker', 'brown', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'time', 'of', 'filming', 'the', 'source', 'was', 'considered', 'to', 'be', 'the', 'shannon', '', 'in', 'co.', 'cavan', 'as', 'told', 'by', '', 'though', 'creedon', 'meets', 'with', '', 'who', 'perform', 'a', '', '', 'experiment', 'to', 'find', 'the', 'true', 'source', 'of', 'the', 'river', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'due', 'to', 'different', 'stories', 'from', 'the', 'band', 'members', ',', 'it', 'is', 'unclear', 'whether', 'he', 'was', 'fired', 'or', 'left', 'the', 'band', 'of', 'his', 'own', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'educated', 'at', '', 'school', 'in', '', ',', 'before', 'taking', 'a', 'ba', 'in', '1', '9', '5', '1', 'at', 'queens', \"'\", 'college', ',', 'cambridge', ',', 'where', 'he', 'was', 'a', 'major', 'scholar', 'and', 'was', 'later', 'an', 'honorary', 'fellow', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'announced', 'at', 'the', 'time', 'that', 'it', 'planned', 'significant', 'renovations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'terms', '``', '', 'lime', \"''\", 'and', '``', '', 'lime', \"''\", 'are', 'quite', 'similar', 'and', 'may', 'be', 'confused', 'but', 'are', 'not', 'necessarily', 'the', 'same', 'material', ':', '', 'lime', 'is', '``', 'any', \"''\", 'lime', 'which', 'has', 'been', '', 'whether', 'it', 'sets', 'through', '', ',', '', ',', 'or', 'both', '.', '', '']\n", "['', 'he', 'was', 'listed', 'as', 'one', 'of', '1', '2', '``', 'promising', 'new', 'actors', 'of', '1', '9', '9', '1', '``', 'in', '``', 'john', 'willis', \"'\", 'screen', 'worlds', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'haqq', '', 'ruled', 'for', 'ten', 'years', ',', 'until', 'he', 'was', 'killed', 'in', 'action', 'against', 'soldiers', 'of', 'the', '', 'emperor', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'carter', 'has', 'served', 'as', 'a', 'member', 'of', 'the', 'executive', 'committee', 'of', 'cabinet', 'for', 'the', 'government', 'of', 'south', 'australia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', '2', '0', '1', '8', ',', 'china', 'is', 'the', 'most', 'popular', 'country', 'in', 'asia', 'for', 'international', 'students', ',', 'and', 'the', 'second', 'most', 'popular', 'education', '', 'in', 'the', 'world', 'after', 'the', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'main', 'languages', 'of', 'this', 'village', 'are', 'hindi', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'the', 'death', 'of', 'close', 'friend', 'and', 'former', 'teammate', 'joseph', '', 'in', '2', '0', '1', '8', ',', 'russell', 'suffered', 'from', 'a', 'severe', '', 'of', 'depression', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'members', 'of', 'the', 'royal', 'guard', 'regiment', 'often', 'wear', 'the', '', 'white', '', '(', '', ')', 'and', 'white', '', 'and', '', '(', 'traditional', 'arab', '', 'of', '', 'and', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'journalist', '', '(', '', ')', 'comes', 'from', 'india', 'for', 'a', 'cover', 'story', 'on', 'the', 'ethnic', '', ',', 'but', 'the', '', 'of', 'every', 'possible', '', '', 'on', 'the', 'people', 'is', 'too', 'much', 'to', 'take', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'two', 'lengths', 'were', '', 'using', 'the', 'butterfly', '', ',', 'the', 'second', 'pair', 'with', 'the', '', ',', 'the', 'third', 'pair', 'of', 'lengths', 'in', '', ',', 'and', 'the', 'final', 'two', 'were', 'freestyle', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'has', 'been', 'the', 'official', '', 'partner', 'for', 'miss', 'india', 'and', 'holds', 'the', '', 'record', 'for', '4', '1', '0', '', '', 'in', '2', '4', 'hours', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'in', 'new', 'orleans', 'reached', 'their', 'highest', 'level', 'after', 'two', 'years', 'of', 'spanish', 'administration', 'in', 'louisiana', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'robert', 'e.', 'lee', 'wanted', 'the', 'old', 'model', '1', '8', '4', '1', 'bronze', 'guns', 'to', 'be', '', 'down', 'and', 'recast', 'into', '1', '2', '-pounder', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'the', 'first', 'open', 'trading', 'port', 'as', 'well', 'as', 'the', 'most', 'prosperous', 'city', 'before', 'the', '2', '0', 'th', 'century', ',', 'shanghai', 'possessed', '', 'resources', 'for', 'the', 'development', 'of', 'chinese', 'movies', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', '', \"'s\", 'seventh', 'album', ',', 'his', 'sixth', 'with', 'integrity', ',', 'and', 'his', 'fourth', 'live', 'album', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'what', 'history', 'professor', 'donald', 'e.', 'reynolds', 'termed', '``', 'the', 'most', '', 'address', 'of', 'his', 'entire', 'presidency', \"''\", ',', '', 'informed', 'all', 'college', 'employees', 'of', '', 'integration', 'at', 'a', 'meeting', ',', '', 'his', '', 'that', 'everyone', 'would', 'comply', 'entirely', 'with', 'the', 'new', 'policy', '.', '', '', '', '', '', '']\n", "['', 'the', 'position', 'proved', 'difficult', ';', 'a', 'long-distance', '', 'agreement', 'gave', 'the', 'hungarian', 'footballer', '', '', 'control', 'over', 'the', 'san', 'francisco', 'section', 'of', 'the', 'squad', ',', 'while', 'robson', 'took', 'care', 'of', 'the', 'vancouver', 'squad', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'national', 'information', 'standards', 'organization', '(', '', ')', ',', 'an', 'american', 'library', 'standards', 'body', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'susquehanna', 'township', 'high', 'school', '(', '', ')', 'is', 'a', '', ',', 'public', 'high', 'school', 'located', 'in', '', ',', 'pennsylvania', 'serving', 'students', 'from', 'susquehanna', 'township', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'released', 'in', 'the', 'united', 'kingdom', 'on', '3', '1', 'july', '2', '0', '2', '0', 'by', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'walker', 'is', 'featured', 'in', '``', 'the', 'advocate', \"''\", '', '``', 'forty', 'under', '4', '0', '``', 'issue', 'of', '', '2', '0', '0', '9', 'as', 'one', 'of', 'the', 'most', 'influential', '``', 'out', \"''\", 'media', 'professionals', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'wet', 'nursing', 'used', 'to', 'be', '', 'in', 'the', 'united', 'kingdom', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'september', '2', 'episode', 'of', '``', 'impact', 'wrestling', \"''\", ',', 'love', 'and', 'madison', '', 'came', 'to', 'the', 'aid', 'of', '', 'sky', ',', 'who', 'was', 'being', 'beaten', 'down', 'by', 'the', '', 'members', 'rebel', ',', 'jade', 'and', '', 'bell', ',', 'turning', 'face', 'and', '', 'the', 'beautiful', 'people', 'in', 'the', 'process', '.']\n", "['', 'the', '', 'for', 'the', 'finals', 'was', 'designed', 'by', '', 'couture', 'label', '', 'couture', 'by', '', 'designer', '', 'one', 'in', 'collaboration', 'with', 'luxury', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'only', 'nine', '', 'and', 'a', '', 'at', 'the', 'game', ',', 'the', 'goaltender', 'for', 'the', 'blades', '', 'the', 'team', 'at', 'the', 'end', 'of', 'the', 'second', 'period', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'offers', '', '', 'and', '', 'services', 'for', 'students', 'with', 'children', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'two', 'studies', ',', 'one', 'in', '1', '9', '9', '7', 'and', 'another', 'in', '1', '9', '9', '9', 'found', '``', '[', 'no', ']', 'adverse', 'health', 'effects', 'which', 'may', 'have', 'resulted', 'from', 'environmental', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'abu', '', '(', 'born', '6', 'april', '1', '9', '9', '0', 'in', '', ')', 'is', 'a', '', 'footballer', 'formerly', 'playing', 'for', '', '', 'f.c', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'typical', 'intermediate', 'rings', 'are', 'designed', 'for', 'wind', '', '', ',', 'reduced', 'as', 'required', 'by', 'the', 'yield', 'stress', 'reduction', 'at', 'working', 'temperatures', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'but', '', 'issues', 'could', '', 'audit', 'of', 'kg', 'basin', 'again', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'show', \"'s\", '``', '', 'schedule', \"''\", ',', 'involving', 'shooting', 'for', '4', '7', 'weeks', 'a', 'year', ',', 'had', 'made', 'it', 'difficult', 'for', 'his', 'growing', 'family', 'of', 'three', 'young', 'children', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'the', '', 'began', 'buying', 'onions', ',', '', 'and', '', 'accumulated', 'short', 'positions', 'on', 'a', 'large', 'number', 'of', 'onion', 'contracts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'born', 'the', 'son', 'of', 'sir', 'john', 'hall', ',', '5', 'th', 'baronet', ',', 'hall', 'was', 'commissioned', 'as', 'an', '', 'in', 'the', '', 'guards', 'on', '2', 'august', '1', '8', '5', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'of', '', 'may', 'be', 'protective', 'against', 'the', '', 'and', '', 'effects', 'of', '', 'aβ', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '9', 'january', '2', '0', '1', '0', ',', 'kim', 'made', 'his', 'first', 'international', 'appearance', 'for', 'south', 'korea', 'in', 'a', 'friendly', 'match', 'against', '', 'and', 'participated', 'in', 'the', '2', '0', '1', '0', 'world', 'cup', 'later', 'that', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'oral', 'arguments', 'were', 'heard', 'in', 'december', '1', '9', '9', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '3', '1', 'august', '2', '0', '1', '6', ',', '', '', 'and', '', '', 'were', 'convicted', 'and', 'sentenced', 'by', 'the', '', 'district', 'court', 'after', 'both', '', 'guilty', 'before', 'trial', 'for', 'their', 'roles', 'in', 'the', 'supply', 'of', 'almost', 'and', 'almost', ',', 'respectively', ',', 'of', '', 'in', '2', '0', '1', '4', '.']\n", "['', ')', ',', 'he', 'arrested', '', 'on', 'their', 'wedding', 'day', ',', 'baby', '', 'died', ',', 'his', 'best', 'friend', 'died', ',', 'and', 'his', 'sister', '', 'with', '', 'days', 'before', 'their', 'wedding', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '4', '0', ',', 'he', 'formed', 'a', 'partnership', 'with', 'robert', 'allan', 'jacobs', ',', 'the', 'son', 'of', 'architect', 'harry', 'allan', 'jacobs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'plan', 'to', 'leave', 'on', 'the', '', 'of', 'taking', 'another', '``', '', \"''\", 'was', '', 'by', 'the', 'sultan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'second', 'round', ',', 'the', 'second', 'team', 'plays', 'first', 'and', '', 'the', 'first', 'category', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'only', '8', '%', 'of', 'prisoners', 'in', 'russia', 'are', 'female', ',', 'and', '0', '.', '2', '%', 'are', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'called', 'partisan', 'press', 'and', 'was', 'not', '', 'in', 'opinion', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'stems', 'are', 'usually', '1', '5', 'to', '3', '0', 'cm', 'in', 'length', 'but', 'are', 'sometimes', 'much', 'longer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'portrayed', 'the', 'main', 'character', 'in', 'the', '2', '0', '1', '0', 'film', '``', 'dog', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'eyes', '', 'and', 'he', 'ended', 'up', 'putting', 'us', 'on', 'the', '', 'list', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'album', '``', '', '', \"''\", '(', 'ancient', 'greek', 'for', '``', 'welcome', ',', '', \"''\", ')', 'was', 'released', 'in', '2', '0', '1', '9', 'and', 'titled', 'for', 'a', '', '', 'revived', 'by', 'nietzsche', 'in', '1', '8', '7', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'tower', 'is', 'supported', 'by', '', 'and', 'has', 'bands', 'of', 'blank', '', ',', 'and', 'is', '', 'by', '', 'with', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'appointed', 'dean', 'of', 'st', 'george', \"'s\", 'hospital', 'medical', 'school', 'in', '1', '9', '8', '8', ',', 'subsequently', 'becoming', 'its', 'principal', 'until', 'his', 'retirement', 'in', '1', '9', '9', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'variant', 'is', 'no', 'longer', 'supported', ';', 'more', 'information', 'can', 'be', 'found', 'on', 'the', '', 'below', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'eye', 'also', 'became', 'well-defined', 'and', 'the', 'system', 'became', 'compact', 'in', 'size', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'same', 'day', ',', 'pakistan', 'allowed', 'thai', '', 'to', '', 'its', 'flight', 'operation', 'for', '', 'to', 'bring', 'back', '1', '7', '5', 'pakistanis', '', 'in', '', ',', 'thailand', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'organizational', 'behavior', 'is', 'the', 'application', 'of', '', 'science', 'in', 'a', 'business', 'setting', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'it', 'is', 'now', 'possible', 'to', 'read', 'and', 'participate', 'in', '', '', 'to', 'a', 'large', 'degree', 'using', 'ordinary', 'web', '', 'since', 'most', '', 'are', 'now', '', 'to', 'several', 'web', 'sites', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', 'the', 'wave', 'energy', 'in', 'a', 'small', 'area', ',', 'where', 'the', 'ice', 'is', 'eroded', 'to', 'form', 'a', '', 'channel', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'his', 'remaining', 'time', 'at', '', ',', 'waugh', 'missed', 'few', 'opportunities', 'to', '', 'cruttwell', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'any', '', 'on', 'an', '', 'screen', 'effectively', 'being', 'a', 'notification', 'led', ',', 'software', 'can', 'be', 'used', 'to', '', 'its', 'appearance', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'kara', '', 'in', 'a', '1', '9', '9', '3', '``', 'rolling', 'stone', \"''\", 'review', 'described', 'the', 'song', 'as', '``', '', 'with', '', 'vocals', '', '', 'simple', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '3', 'march', ',', '``', 'ub-', '1', '6', '``', ',', 'now', 'under', 'the', 'command', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', '1', '9', '1', '4', ',', 'a', '2', '', 'gauge', 'tramway', 'had', 'been', 'built', 'between', 'the', 'lower', '', 'pit', 'and', 'the', 'lime', '', 'at', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'about', '9', '.', '2', '%', 'of', 'families', 'and', '1', '1', '.', '9', '%', 'of', 'the', 'population', 'were', 'below', 'the', 'poverty', 'line', ',', 'including', '1', '4', '.', '0', '%', 'of', 'those', 'under', 'age', '1', '8', 'and', '7', '.', '3', '%', 'of', 'those', 'age', '6', '5', 'or', 'over', '.', '', '', '']\n", "['', '', 'warner', ',', 'the', 'producer', 'of', '``', 'tank', 'girl', \"''\", ',', 'suggested', 'he', 'join', '', 'animation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'this', '', 'failed', 'to', '', ',', 'with', 'donald', 'trump', 'winning', 'the', 'election', ',', 'joshua', 'stated', 'that', 'he', 'was', 'referring', 'to', 'clinton', \"'s\", 'win', 'in', 'the', 'popular', 'vote', 'and', 'any', '', 'was', 'due', 'to', 'a', 'lack', 'of', '``', 'spiritual', 'understanding', \"''\", '.', '', '', '', '', '', '', '', '']\n", "['', 'when', 'taking', 'their', 'seats', 'at', 'the', 'next', 'session', 'in', 'january', '1', '8', '1', '6', ',', 'in', 'three', 'districts', 'there', 'was', 'a', 'number', 'of', 'senators', 'differing', 'from', 'the', '', ',', 'which', 'was', '', 'at', 'the', 'election', 'in', '1', '8', '1', '6', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'early', 'forms', 'of', 'the', 'word', 'in', 'english', 'included', '``', '', \"''\", '(', '1', '5', '8', '1', ')', ',', '``', '', \"''\", '(', '1', '6', '1', '0', ')', ',', '``', '', \"''\", '(', '1', '6', '2', '1', ')', ',', 'and', '``', '', \"''\", '(', '1', '7', '1', '5', ')', '.', '']\n", "['', 'the', 'capital', 'shares', 'bear', 'greater', 'risk', 'than', 'the', 'preferred', 'shares', 'in', 'the', 'event', 'that', 'the', 'value', 'of', 'the', 'underlying', 'basket', 'of', 'conventional', 'shares', 'falls', 'in', 'value', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'allan', '', \"'s\", 'only', 'novel', ',', '``', 'the', 'narrative', 'of', 'arthur', 'gordon', '', 'of', '', \"''\", '(', '1', '8', '3', '8', ')', 'has', 'a', 'minor', 'character', 'richard', 'parker', ',', 'who', 'is', '', 'by', 'the', '', \"'s\", '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'fort', 'cooper', 'state', 'park', 'is', 'a', '7', '1', '0', '-acre', 'historic', 'site', 'in', 'inverness', ',', 'florida', ',', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'and', 'was', 'strong', 'supporter', 'of', 'the', 'republican', 'party', 'serving', 'on', 'various', 'campaigns', 'and', 'committees', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'i.', 'i.', '', ',', 'commander', 'of', 'the', 'front', \"'s\", 'northern', 'group', 'of', 'forces', ',', 'received', 'an', 'order', 'from', 'the', '``', '', \"''\", 'which', 'stated', ',', 'in', 'part', ':', 'this', 'brought', 'the', 'division', 'under', 'the', 'command', 'of', 'the', '4', '4', 'th', 'army', '.', '', '', '', '', '', '', '', '']\n", "['', 'about', 'the', 'same', 'time', ',', 'the', 'california', 'businessman', 'w.', 'leslie', 'comyn', 'took', 'the', 'initiative', 'to', 'build', '', 'ships', 'on', 'his', 'own', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'william', 'shakespeare', \"'s\", '``', '', \"''\", ',', 'while', 'not', 'actually', 'forbidden', ',', 'was', '', 'for', '``', '', 'of', 'soul', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'national', 'agency', 'for', 'the', 'management', 'of', 'seized', 'assets', '(', '', ')', 'has', 'placed', 'the', 'building', 'for', 'sale', 'on', 'its', 'website', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '3', '7', 'th', 'ranger', 'battalion', ',', 'already', 'in', 'da', '', 'for', 'rest', 'and', '', ',', 'moved', 'to', '', '', 'district', 'on', '2', '0', 'july', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'peter', 'roland', '', '', '(', 'born', '1', '3', 'july', '1', '9', '6', '1', ')', 'is', 'a', 'swedish', 'former', 'footballer', 'who', 'played', 'as', 'a', 'defender', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'landed', 'interests', 'managed', 'to', 'ensure', 'that', 'the', 'political', 'weight', 'of', 'numbers', 'was', '', '', 'in', 'their', 'favour', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'cotton', 'club', 'had', 'already', 'featured', 'duke', '', 'and', '', '', ',', 'who', 'won', 'their', 'first', 'widespread', 'fame', 'from', 'their', '', 'shows', 'for', 'the', 'cotton', 'club', \"'s\", '', 'patrons', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '7', ',', 'when', '', 'mayor', 'john', 'd.', '', 'resigned', 'to', 'accept', 'an', 'appointment', 'in', 'the', 'wisconsin', 'department', 'of', 'revenue', ',', 'the', 'city', 'council', 'elected', '', 'to', 'act', 'as', 'interim', 'mayor', 'until', 'the', '1', '9', '8', '8', 'election', '.', '', '', '', '', '', '', '', '']\n", "['', 'note', ':', 'any', 'black', 'top', 'management', 'employees', 'that', 'are', 'counted', 'for', 'the', 'management', '&', 'amp', ';', 'control', 'score', 'can', 'not', 'be', 'included', 'in', 'the', '', 'of', 'the', 'employment', 'equity', '(', 'statement', '8', '0', '3', ')', 'score', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'village', 'in', 'the', 'administrative', 'district', 'of', 'gmina', '', ',', 'within', '', 'county', ',', 'lesser', 'poland', 'voivodeship', ',', 'in', 'southern', 'poland', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'june', '1', '2', ',', '2', '0', '1', '9', ',', 'it', 'was', 'reported', 'that', '', 'was', 'returning', 'with', 'new', 'music', 'after', 'five', 'months', 'since', 'the', 'release', 'of', 'her', 'single', '``', 'got', '', 'go', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rabbi', '', 'joined', '', 'boulevard', 'temple', 'in', '1', '9', '8', '7', ',', 'and', 'succeeded', 'rabbi', 'harvey', 'j', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'race', 'is', 'named', 'for', 'opening', 'verse', ',', 'winner', 'of', 'the', '1', '9', '9', '1', '', \"'\", 'cup', 'mile', 'at', 'churchill', 'downs', ',', 'and', 'was', 'run', 'as', 'the', 'opening', 'verse', '', 'from', 'inception', 'through', '2', '0', '0', '8', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'marathon', 'is', 'organized', 'by', 'the', 'same', 'team', 'that', 'made', 'the', '', 'ironman', '7', '0', '.', '3', 'singapore', '', 'possible', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '4', ',', 'a', '', 'study', 'was', 'carried', 'out', 'by', 'the', 'national', 'aerospace', 'laboratory', 'of', 'amsterdam', ',', 'for', 'use', 'of', '', 'in', 'place', 'of', '', 'in', 'navigation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'mass', 'was', 'held', 'at', 'st.', 'matthew', \"'s\", 'to', 'celebrate', '', \"'s\", 'installation', 'and', 'creation', 'of', 'the', 'parish', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'interactive', 'application', 'security', 'testing', '(', 'iast', ')', 'is', 'a', 'solution', 'that', '', 'applications', 'from', 'within', 'using', 'software', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'august', '1', '9', '9', '2', ',', 'the', 'recreation', 'vehicles', 'and', 'rescue', 'vehicles', 'brand', '``', '', \"''\", 'was', 'sold', 'to', '', '', 'ag', '(', 'later', 'named', '', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'joined', 'a', 'lithuanian', 'choir', 'led', 'by', '', '', ',', '', 'at', 'the', 'church', 'of', 'st.', 'catherine', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'served', 'under', 'nelson', '', 'in', 'the', '', 'and', 'supply', 'branch', 'of', 'the', 'latin', 'american', 'division', 'of', 'the', 'board', 'of', 'economic', '', 'during', 'world', 'war', 'ii', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'instead', 'of', 'archaeological', 'evidence', ',', '', '', 'highlights', 'the', 'importance', 'of', 'the', 'linguistic', '', 'of', 'continuity', ',', 'referring', 'to', 'the', 'romanian', 'river', 'names', 'in', 'the', '', 'mountains', 'and', 'the', '', 'of', 'archaic', 'latin', 'lexical', 'elements', 'in', 'the', 'local', 'dialect', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'similar', 'material', ',', 'but', 'he', \"'s\", 'really', 'being', 'innovative', 'with', 'some', 'of', 'the', 'music', 'that', 'you', 'have', \"n't\", 'heard', 'before', ',', 'taking', 'pieces', 'of', 'other', 'genres', 'and', '', 'them', 'into', 'pop', 'and', 'r', '&', 'amp', ';', 'b', ',', 'which', 'i', 'think', 'is', 'really', 'cool', '.', '', '', '', '', '']\n", "['', '', ',', '', '', ',', 'and', 'a', 'desire', 'to', '', 'were', 'characteristics', 'that', 'greatly', '', 'him', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'by', 'his', 'behavior', ',', 'pakistan', 'leader', 'general', '', 'warned', '', ',', '``', 'it', 'was', 'pakistan', 'that', 'made', 'him', 'an', '', 'leader', 'and', 'it', 'is', 'pakistan', 'who', 'can', '', 'destroy', 'him', 'if', 'he', 'continues', 'to', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'first', 'book', 'of', 'poems', 'is', 'a', 'kind', 'of', 'lament', 'to', 'her', 'father', ',', 'a', '', 'journey', 'with', 'a', 'description', 'of', 'the', 'relationship', 'and', '', 'for', 'him', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'in', 'a', '', 'when', 'she', 'was', 'spotted', 'by', 'a', 'scout', 'of', 'the', '', 'girls', 'professional', 'baseball', 'league', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'continued', 'studying', 'part-time', 'at', 'bradford', 'technical', 'college', 'whilst', 'working', 'as', 'an', 'engineering', '', 'with', 'the', 'english', 'electric', 'company', ',', 'and', 'gained', 'an', 'external', 'degree', 'of', 'the', 'university', 'of', 'london', 'with', 'first', 'class', 'honours', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'unita', 'leader', '', 'said', 'on', 'september', '7', 'that', '``', 'the', 'final', 'result', 'might', 'not', 'fully', 'reflect', 'the', 'will', \"''\", 'of', 'the', 'people', ',', 'but', 'also', 'said', 'that', 'the', 'election', 'marked', '``', 'an', 'important', 'step', 'towards', '', 'of', 'our', 'democracy', \"''\", '.', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '7', '8', '4', 'some', 'russian', '', 'and', 'the', '', 'of', 'the', 'qing', 'together', '', 'the', 'chinese', 'merchant', 'in', 'the', '', 'region', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'then', 'screened', 'at', 'the', 'toronto', 'international', 'film', 'festival', 'beginning', 'september', '8', ',', '2', '0', '1', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'the', '2', '0', '0', '2', 'poland', 'census', ',', 'there', 'were', '1', '2', '9', 'people', 'residing', 'in', '', 'village', ',', 'of', 'whom', '4', '8', '.', '8', '%', 'were', 'male', 'and', '5', '1', '.', '2', '%', 'were', 'female', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'royal', '', 'wear', 'bright', 'green', '', 'when', 'in', 'conventional', 'uniforms', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'originally', '', 'he', 'agrees', 'after', 'ibis', 'makes', 'it', 'clear', 'that', 'the', 'stories', 'are', 'not', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'marshall', 'began', 'his', '', 'career', 'by', 'working', 'as', 'a', '', 'and', 'contractor', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'women', 'both', 'provided', 'and', 'received', 'wet', 'nursing', 'services', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'november', '2', '0', '1', '5', ',', 'grand', 'river', 'enterprises', 'germany', 'and', 'philip', 'morris', 'had', 'a', 'dispute', 'over', 'the', 'name', 'of', 'the', 'mark', 'adams', 'no', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', 'february', '2', '0', '1', '6', 'prime', 'minister', '', '', '', 'him', 'with', 'the', '', 'of', 'the', 'head', 'of', 'the', 'office', 'of', 'war', 'veterans', 'and', 'victims', 'of', 'oppression', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '3', '8', '5', ')', 'for', 'nine', 'season', 'between', '1', '9', '8', '1', '-', '1', '9', '8', '9', ',', '', '(', 'heritage', 'no', '.', ')', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'tiny', '', 'would', 'notice', 'engine', 'failure', 'on', 'lap', '2', '4', '8', 'while', 'frank', 'warren', 'had', 'the', 'same', 'issue', 'on', 'lap', '3', '0', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'inspector', 'to', 'head', 'the', 'post', 'was', 'an', 'egyptian', 'officer', ',', 'who', 'was', 'soon', 'succeeded', 'by', 'the', 'scottish', 'lieutenant', 'david', 'comyn', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'required', '', '', 'on', 'the', 'part', 'of', 'the', 'crew', ',', 'changing', 'the', 'magazines', 'while', 'on', 'the', 'move', 'to', 'keep', 'up', 'the', 'volume', 'of', 'fire', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'november', '2', '0', '2', '0', ',', '', '``', 'the', 'rock', \"''\", 'johnson', 'collaborated', 'with', 'microsoft', 'and', '', 'bill', 'gates', 'to', '', 'xbox', 'series', 'x', '', 'to', 'children', \"'s\", 'wisconsin', 'along', 'with', '1', '9', 'other', 'children', \"'s\", 'hospitals', 'throughout', 'the', 'country', '.', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'inhabitants', 'were', 'not', 'unique', 'or', '', 'more', '', 'than', 'other', 'people', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'clinton', '', 'sister', '', \"'s\", 'remarks', ':', '``', 'if', 'black', 'people', 'kill', 'black', 'people', 'every', 'day', ',', 'why', 'not', 'have', 'a', 'week', 'and', 'kill', 'white', 'people', '?', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'also', ',', '', 'which', 'includes', 'the', 'use', 'of', '', ',', 'one', '', ',', '', ',', '', ',', 'among', 'various', 'others', ',', 'can', 'be', 'another', 'way', 'to', 'produce', 'humour', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '', 'the', '', 'to', '', 'evacuate', 'most', 'of', 'surrounding', 'districts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ky', '3', '6', '3', '0', 'heads', 'west', 'and', '', 'the', 'southern', 'terminus', 'of', 'ky', '5', '7', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'diameter', 'would', 'be', 'equal', 'to', 'formula_', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'late', 'november', '2', '0', '1', '8', ',', 'the', 'company', 'launched', '``', '', \"''\", 'service', 'for', 'prospective', 'authors', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'norman', ',', 'who', 'had', 'converted', 'to', 'christianity', 'and', 'lived', 'amongst', 'the', '', ',', 'and', 'who', 'has', 'been', 'said', 'to', 'have', 'been', '', ',', '', \"'s\", 'uncle', ',', '', 'them', 'to', 'end', 'the', '', 'and', 'sign', 'a', 'pact', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'others', '', 'that', '', 'ever', 'accepted', 'the', 'accusations', 'against', 'him', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'graduated', 'in', '1', '9', '6', '4', 'with', 'a', 'double', 'major', 'in', 'journalism', 'and', 'photography', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'women', \"'s\", 'team', 'also', 'play', 'the', 'highest', 'czech', '', 'league', ',', '', '', '', '', ',', 'since', 'season', '2', '0', '1', '3', '-', '1', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'athletes', 'had', 'to', 'qualify', 'for', 'each', 'of', 'the', 'two', 'events', ';', 'a', 'maximum', 'of', 'two', 'per', 'gender', 'from', 'any', 'nation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'leo', 'became', 'ill', 'and', 'died', 'on', 'november', '1', '7', ',', '', 'became', 'sole', 'emperor', 'with', '', 'as', 'his', '', 'consort', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'davis', '(', '', '', ')', ',', '', '', '(', '', '', ')', ',', 'and', 'tabitha', 'foster', '(', '', '', ')', 'become', 'friends', 'after', 'finding', 'each', 'other', 'at', 'a', '', 'anonymous', 'meeting', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'time', 'machine', 'is', 'a', 'video', 'compilation', 'by', 'the', 'american', 'heavy', 'metal', 'band', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'dublin', 'harbour', ',', 'a', 'division', 'of', 'dublin', ',', 'was', 'a', 'uk', 'parliamentary', 'constituency', 'in', 'ireland', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", 'was', 'released', 'on', 'cd', 'through', 'cd', 'baby', 'on', 'june', '1', '5', ',', '2', '0', '1', '1', 'after', 'two', 'steps', 'from', '', 'reached', '2', '0', ',', '0', '0', '0', 'likes', 'on', 'their', 'facebook', 'page', 'on', 'may', '4', ',', '2', '0', '1', '1', '.', '', '', '', '', '']\n", "['', 'he', 'was', 'a', 'long-time', 'chairman', 'of', 'the', 'party', ',', 'serving', 'from', '1', '9', '9', '8', 'to', '2', '0', '0', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'joined', 'the', 'royal', 'navy', '1', '9', '0', '5', 'and', 'served', 'in', 'the', 'first', 'world', 'war', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'no', '', 'rates', 'or', 'capital', '', 'are', 'defined', 'for', 'the', 'purpose', 'of', 'the', 'exercise', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'approach', 'used', 'by', 'the', 'movement', 'is', 'based', 'on', 'the', 'method', 'developed', 'by', 'joseph', '', 'to', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'german', 'socialism', 'is', 'accompanied', 'by', 'the', '``', '', \"''\", '(', 'national', 'spirit', ')', 'which', 'is', 'not', 'racial', 'in', 'the', 'biological', 'sense', 'but', '', ':', '``', 'the', 'german', 'spirit', 'in', 'a', 'negro', 'is', 'quite', 'as', 'much', 'within', 'the', '', 'of', 'possibility', 'as', 'the', 'negro', 'spirit', 'in', 'a', 'german', \"''\", '.', '']\n", "['', 'after', 'the', 'eagles', 'left', ',', 'the', 'ground', 'subsequently', 'deteriorated', 'through', 'lack', 'of', 'maintenance', ',', 'though', 'other', 'sports', 'would', 'regularly', 'use', 'the', 'oval', 'including', 'cricket', ',', 'rugby', 'league', ',', 'baseball', ',', '', 'and', 'soccer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '2', '0', 'in', 'three', 'races', 'with', 'smith', 'driving', 'two', 'and', '', 'one', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'church', 'and', '', 'palace', ',', 'both', 'in', 'the', 'capital', 'city', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'face', 'and', 'story', 'background', 'changed', 'several', 'times', 'while', 'she', 'underwent', 'many', '', 'and', '', 'as', 'developers', '', 'for', 'the', 'right', 'look', 'to', 'combine', 'the', '', 'of', '``', '', '', \"''\", 'and', 'the', '``', 'strength', 'of', 'a', 'fighting', 'woman', \"''\", '.', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'her', 'retirement', 'from', 'competition', ',', '', 'worked', 'as', 'a', 'physical', 'education', 'instructor', 'at', '', '', 'university', ',', 'and', 'for', '3', '4', 'years', 'at', 'the', '', 'institute', 'for', 'sports', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'occurs', 'in', 'conditions', 'of', 'extended', 'drought', ',', 'and', 'has', 'significant', 'effects', 'on', 'fire', 'behaviour', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'december', '1', '8', ',', '2', '0', '1', '7', ',', '', 'was', 'sentenced', 'to', 'life', 'in', 'prison', ',', 'with', 'the', 'possibility', 'of', '', 'after', '2', '5', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'construction', 'of', 'the', 'facility', 'began', 'in', '1', '9', '2', '6', 'and', 'it', 'was', 'inaugurated', 'on', '1', '6', 'june', '1', '9', '2', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'e.', 'a.', 'beet', ',', 'a', 'doctor', 'working', 'in', 'southern', 'rhodesia', '(', 'now', 'zimbabwe', ')', 'had', 'observed', 'in', '1', '9', '4', '8', 'that', '', 'disease', 'was', 'related', 'to', 'a', 'lower', 'rate', 'of', 'malaria', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'had', 'different', 'editors', 'and', '', 'under', 'the', 'american', 'anti-slavery', 'society', 'depending', 'on', 'the', 'edition', 'and', 'the', 'publication', 'location', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'men', 'often', 'wore', 'a', 'cane', 'as', 'part', 'of', 'their', '', ',', '', 'it', 'by', 'a', 'loop', 'from', 'one', 'of', 'their', '', '', 'to', 'allow', 'their', 'hands', 'to', '', 'hold', '', 'or', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'average', 'household', 'size', 'was', '2', '.', '1', '8', 'and', 'the', 'average', 'family', 'size', 'was', '2', '.', '8', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '7', ',', 'the', 'state', 'government', 'decided', 'that', 'the', 'baden-württemberg', 'police', 'will', 'also', 'change', 'to', 'blue', 'uniforms', 'and', 'patrol', 'vehicles', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'george', 'norton', 'is', 'a', '', '', 'who', 'works', 'for', 'chicago', 'crime', 'boss', '', 'barker', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'following', '', 'module', 'codice_', '1', 'shows', 'a', 'data', 'model', 'for', 'team', 'sports', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'arturo', '', '', '', '', 'jr.', ',', '', 'as', '``', 'thunder', '&', 'amp', ';', 'lightning', \"''\", ',', 'was', 'a', 'professional', 'boxing', 'match', 'contested', 'on', 'june', '2', '5', ',', '2', '0', '0', '5', 'for', 'the', '', 'super', 'lightweight', 'championship', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', '', 'paul', '', ',', 'mike', '', 'and', '', '', 'as', 'influences', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'it', 'was', 'built', ',', 'the', 'reservoir', 'filled', 'gradually', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', 'the', 'final', 'decision', 'about', 'the', 'standard', 'selected', 'was', \"n't\", 'announced', 'at', 'that', 'moment', '(', 'august', '2', '0', '0', '0', ')', 'because', 'of', 'three', 'main', 'points', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'clinic', '(', 'rochester', ',', '', ')', 'was', 'ranked', 'the', '#', '1', 'hospital', 'in', 'the', 'nation', 'for', '2', '0', '1', '8', '-', '2', '0', '1', '9', 'by', 'u.s.', 'news', '&', 'amp', ';', 'world', 'report', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', '', 'at', 'oxford', 'on', '2', 'october', '1', '6', '5', '2', ',', 'and', 'the', 'same', 'year', 'graduated', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '1', '7', 'days', 'later', ',', 'the', 'ship', 'was', 'severely', 'damaged', 'at', 'dawn', 'by', 'two', 'bombs', 'from', 'a', 'lone', 'japanese', 'aircraft', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'rotary', '', 'is', 'a', 'type', 'of', 'electrical', 'machine', 'which', 'acts', 'as', 'a', 'mechanical', '', ',', '', 'or', 'frequency', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'discovered', 'by', 'steve', '', ',', 'who', 'also', 'created', '', '2', 'k', 'for', 'radio', 'transmissions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'low', 'church', \"''\", ',', 'in', 'a', 'contemporary', 'anglican', 'context', ',', 'denotes', 'a', 'protestant', 'emphasis', ',', 'and', '``', 'high', 'church', \"''\", 'denotes', 'an', 'emphasis', 'on', 'ritual', ',', 'often', 'as', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'night', 'of', '', 'railway', 'station', 'and', 'airfield', 'and', '', '', 'were', 'bombed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'is', '', ',', 'with', '', '', 'of', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'robert', '', 'built', 'a', 'prototype', 'with', '', 'round', 'front', 'rectangular', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'even', 'for', '``', 'a', 'single', \"''\", 'agent', ',', 'there', 'is', 'no', 'algorithm', 'that', '', 'the', 'agent', \"'s\", '', 'using', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'elected', 'to', 'the', 'position', 'of', 'the', 'prime', 'minister', 'of', 'the', 'first', 'government', 'on', '1', '7', 'march', 'by', 'the', 'supreme', 'council', 'of', 'lithuania', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'back', 'in', 'the', 'present', ',', 'general', '', \"'s\", '', 'is', 'held', 'up', 'in', 'diplomatic', 'red', 'tape', ',', 'forcing', 'the', 'investigators', 'into', 'trying', 'to', 'get', 'to', 'the', 'truth', 'through', 'raghu', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'resided', 'in', 'greensboro', ',', '', 'with', 'his', 'wife', ',', 'florence', ',', 'and', 'was', 'the', 'parent', 'of', 'four', 'adult', 'children', ':', 'nancy', ',', 'christie', ',', '', ',', 'and', 'rick', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'better', 'known', 'as', 'dr.', '', 'rai', 'of', '``', '', 'mill', '', \"''\", 'on', 'star', 'one', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'started', 'his', 'career', 'at', 'everton', \"'s\", 'youth', 'academy', 'aged', '1', '3', ',', 'and', '', 'through', 'the', 'club', \"'s\", 'youth', 'system', 'before', 'playing', 'regularly', 'for', 'the', 'reserve', 'side', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'of', 'the', 'earliest', 'such', 'cases', 'involves', 'one', 'of', 'the', 'most', 'famous', 'american', 'soldiers', 'of', 'world', 'war', 'i', ',', '', 'york', ',', 'who', 'initially', 'received', 'a', 'distinguished', 'service', 'cross', 'which', 'was', 'upgraded', 'to', 'the', 'medal', 'of', 'honor', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'wholly', 'owned', 'subsidiary', 'of', '', 'financial', 'group', '(', '', ':', '', ')', ',', 'the', 'company', '', 'various', 'products', ',', 'including', 'mutual', 'funds', ',', '', ',', '', 'series', 'of', 'mutual', 'funds', ',', '', 'funds', 'and', '', 'responsible', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'show', 'was', 'also', 'observed', 'having', 'longer', 'commercial', '', 'ending', 'up', 'to', 'a', 'huge', '', 'per', 'show', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'civilians', 'in', '', 'were', 'forced', 'to', 'escape', 'the', 'fires', 'that', 'had', 'been', 'started', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'surface', '', 'that', 'arose', 'in', 'the', '', '', 'are', 'therefore', 'heavily', 'eroded', 'or', 'even', '', ',', 'the', '', 'are', 'heavily', '', 'and', ',', 'in', 'places', ',', 'strongly', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'on', '1', '4', 'may', '2', '0', '1', '8', ',', 'the', 'court', 'of', 'arbitration', 'for', 'sport', 'upheld', 'the', 'appeal', 'filed', 'by', 'the', 'world', '', 'agency', ',', 'extending', 'the', 'ban', 'to', '1', '4', 'months', 'and', 'ruling', 'him', 'out', 'of', 'the', 'tournament', '.', '', '', '', '', '', '', '', '']\n", "['', 'tennis', 'channel', 'provides', 'extensive', 'coverage', 'of', 'the', 'davis', 'cup', '(', 'until', '2', '0', '1', '8', ')', ',', 'fed', 'cup', 'and', '', 'cup', 'as', 'well', 'as', 'other', 'tournaments', 'throughout', 'the', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'paul', 'mccartney', 'claimed', 'to', 'have', '', 'the', 'melody', 'to', 'his', 'song', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', '2', '0', '1', '8', ',', 'the', 'hashtag', 'received', '9', '9', '.', '6', 'million', '', 'on', 'twitter', 'and', '1', '7', '0', '0', '0', '0', 'posts', 'were', 'shared', 'on', 'twitter', 'and', '', 'containing', 'at', 'least', 'one', 'of', 'fashion', 'revolution', \"'s\", '', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'book', 'contained', '', '', 'of', 'famous', '', 'who', 'had', 'lived', 'and', 'worked', 'in', 'foreign', 'countries', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'their', 'first', 'running', 'engine', 'was', 'the', '``', '', \"''\", ',', 'ground', 'tested', 'in', '1', '9', '4', '9', 'but', 'not', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'company', 'began', 'construction', 'in', 'november', '1', '9', '0', '9', 'on', 'the', 'line', 'north', 'from', '', 'falls', ',', 'soon', 'reaching', '', 'under', 'lease', 'to', 'the', 'sp', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'nature', 'reserve', 'borders', 'to', 'the', 'south', 'on', 'the', 'parish', 'of', '', 'and', 'the', 'b', '1', '9', '6', 'federal', 'road', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'may', '2', '0', '1', '8', ',', 'sony', 'pictures', 'and', 'stage', '6', 'films', 'acquired', 'u.s.', 'distribution', 'rights', 'to', 'the', 'film', 'at', 'the', '7', '1', 'st', '', 'film', 'festival', ',', 'with', 'a', 'planned', 'awards', 'season', 'release', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'king', 'is', 'a', 'powerful', 'robot', 'appearing', 'in', '``', 'mega', 'man', 'and', 'bass', \"''\", 'as', 'the', 'apparent', 'main', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'robson', 'was', '', 'by', 'this', 'situation', 'and', 'when', ',', 'in', 'january', '1', '9', '6', '8', ',', '', 'offered', 'him', 'a', 'contract', 'as', 'their', 'manager', ',', 'he', 'accepted', 'the', 'position', 'at', '', 'cottage', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'locomotive', ',', 'dc', '4', '6', '8', '6', ',', 'ended', 'up', 'completely', '', 'in', 'the', 'river', 'on', '4', 'january', '2', '0', '0', '2', ',', 'after', '', '', 'a', '', 'supporting', 'the', 'railway', 'line', ',', 'causing', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'event', 'was', 'the', 'first', 'held', 'in', 'the', 'middle', 'east', 'following', 'the', 'purchase', 'of', 'a', '1', '0', 'percent', 'stake', 'in', 'the', '', 'parent', 'company', '', 'by', 'abu', '', '', 'flash', 'entertainment', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'mit', '', '', ',', 'founded', 'by', '', 'in', '2', '0', '0', '6', ',', 'actively', 'develops', 'technologies', 'for', 'improving', 'the', 'performance', 'of', 'advanced', 'aerospace', '', ',', 'primarily', 'through', 'strategic', 'use', 'of', 'carbon', '', '(', '', ')', 'combined', 'with', 'traditional', 'advanced', '', 'to', 'form', 'hybrid', '', '.', '', '', '', '']\n", "['', 'the', 'earliest', 'existing', 'historical', 'records', 'of', 'the', 'church', 'date', 'back', 'to', 'the', 'year', '1', '3', '1', '9', ',', 'but', 'the', 'church', 'was', 'not', 'new', 'at', 'that', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '8', '7', '3', 'rd', 'class', 'coaches', 'appeared', 'in', 'express', 'trains', 'for', 'the', 'first', 'time', ',', 'whilst', 'the', 'hungarian', 'expresses', 'were', 'made', 'up', 'exclusively', 'of', '1', 'st', 'and', '2', 'nd', 'class', 'accommodation', 'until', '1', '9', '1', '2', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '5', ',', '', 'became', 'affiliated', 'with', '', '', \"'s\", '', 'office', 'agency', 'in', 'an', 'effort', 'to', 'further', 'improve', 'his', 'career', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'flowers', 'produce', 'various', '', '', '', ',', 'urine', ',', 'blood', ',', '', ',', '', ',', 'and', ',', 'in', 'some', 'species', ',', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'we', 'have', 'to', 'transform', 'our', 'city', 'into', 'an', 'advanced', 'developed', 'society', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'chettleburgh', ',', 'npf', 'first', 'formed', 'in', 'the', '', '1', '9', '8', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '0', 'august', '2', '0', '0', '7', ',', 'lockheed', 'announced', 'that', '', '3', 'a', 'was', '', 'to', 'the', '', 'and', 'ready', 'for', 'its', 'ride', 'to', 'orbit', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'is', 'a', '1', '9', '9', '8', 'japanese', 'drama', 'film', 'directed', 'by', '', '', 'and', 'based', 'on', 'the', 'true', 'story', 'of', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'suggested', 'that', '1', '2', ',', '0', '0', '0', 'shares', 'be', 'created', 'with', 'each', 'everton', 'board', 'member', 'given', 'one', 'share', 'and', 'the', 'other', 'shares', 'sold', 'to', 'the', 'public', 'or', 'everton', 'board', 'members', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'abbot', \"'s\", 'demon', 'name', 'is', '', ',', 'meaning', '``', 'little', 'horn', \"''\", 'in', 'ancient', 'demon', 'language', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'glen', 'murray', 'resigned', 'as', 'mayor', 'in', 'mid-', '2', '0', '0', '4', 'to', 'run', 'for', 'the', 'house', 'of', 'commons', 'of', 'canada', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'referenced', 'tim', '', \"'s\", '``', 'the', '', 'before', 'christmas', \"''\", 'at', 'the', 'request', 'of', 'barker', ',', 'with', 'the', 'lines', '``', 'we', 'can', 'live', 'like', 'jack', 'and', 'sally', 'if', 'we', 'want', '...', 'and', 'we', \"'ll\", 'have', '', 'on', 'christmas', \"''\", ',', 'toward', 'his', '', ',', '', '', '.', '', '']\n", "['', 'it', 'is', 'simply', '', 'software', 'running', 'on', 'a', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'published', 'a', 'book', 'entitled', '``', 'the', 'lost', 'discovery', ':', '', 'the', 'track', 'of', 'the', '', 'in', 'america', \"''\", '(', 'new', 'york', ':', 'norton', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', 'child', ',', 'he', 'moved', 'with', 'his', 'father', 'to', 'the', 'town', 'of', '', '', 'in', '', ',', 'where', 'leoncavallo', 'lived', 'during', 'his', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'ground', 'level', 'rectangular', 'water', 'tank', 'near', 'the', 'house', 'is', 'of', 'low', 'significance', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'vermont', 'railway', 'freight', 'rail', 'line', ',', 'and', 'an', '', 'rail', '', ',', '', '', 'in', 'the', 'northern', 'portions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'petrel', 'is', 'an', 'unincorporated', 'community', 'in', '', 'township', ',', 'saint', 'louis', 'county', ',', 'minnesota', ',', 'united', 'states', ';', 'located', 'within', 'the', 'superior', 'national', 'forest', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'british', 'discovered', 'the', 'town', 'was', 'too', 'strongly', 'defended', 'and', 'withdrew', 'the', 'next', 'day', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'characters', 'have', 'different', 'personalities', 'and', '', 'in', 'school', ',', 'keeping', 'their', 'friendship', 'a', 'secret', ':', '', 'is', 'an', '', ';', '', '', 'punk', 'style', ';', 'while', 'tabitha', 'comes', 'from', 'a', 'wealthy', 'family', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'aro', 'told', '', 'he', '', 'give', 'him', 'a', 'response', 'two', 'weeks', 'later', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'film', \"'s\", 'plot', 'is', 'about', 'a', 'young', 'woman', \"'s\", 'dreams', 'to', 'married', 'her', '', 'which', 'arranged', 'by', 'her', 'parents', 'when', 'she', 'was', '', 'by', 'her', '', 'college', 'mate', 'and', 'raped', 'leading', 'into', 'a', 'forced', 'marriage', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'putnam', 'and', 'israel', 'putnam', ',', 'who', 'became', 'a', 'renowned', 'general', 'during', 'the', 'american', 'revolution', 'were', 'cousins', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '8', ',', '', 'staged', 'richard', '', '``', '', \"''\", ',', 'conducted', 'by', 'sir', 'simon', '', ',', 'choreography', 'by', 'martin', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'should', 'provide', 'translations', 'of', 'basic', 'items', 'on', 'status', 'records', '(', 'e.g', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'idea', 'for', 'the', 'movie', 'began', 'after', 'cousins', 'aaron', 'and', '', 'burns', 'finished', 'their', '', 'film', 'called', '``', '', \"''\", 'that', 'was', 'picked', 'up', 'for', 'international', 'distribution', 'and', 'broadcast', 'by', 'various', 'tv', 'stations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '9', 'he', 'set', 'a', 'new', 'track', 'record', ',', 'starting', 'on', 'the', 'pole', 'position', 'as', 'a', 'rookie', 'in', 'the', 'little', '5', '0', '0', ',', 'the', '', 'sprint', 'car', 'championship', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'aircraft', '', 'with', 'the', 'ground', '1', '5', '4', '8', 'metres', 'from', 'the', 'runway', 'threshold', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'service', 'on', '', 'lake', 'came', 'to', 'an', 'end', 'with', 'the', 'arrival', 'of', 'the', 'railroad', 'in', '', 'during', '1', '8', '7', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', '', '(', '2', '0', '1', '9', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'puts', 'the', 'pieces', 'together', 'and', 'realizes', 'that', '', 'is', 'a', 'site', 'of', 'an', 'ancient', '', 'set', 'up', 'by', 'the', '', '3', 'million', 'years', 'ago', 'to', 'develop', '', 'in', 'their', 'fight', 'against', 'the', 'insects', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'warns', 'her', 'that', 'those', 'who', 'have', 'been', '', 'by', '', '', 'will', 'be', 'possessed', 'by', 'their', 'own', '', 'and', 'their', '', 'shall', 'be', 'offered', 'to', 'him', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'stopped', 'racing', 'and', 'opened', 'a', 'motorcycle', 'dealership', 'in', '', 'falls', 'in', '1', '9', '6', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'this', 'time', ',', '', 'started', 'developing', 'its', '', '', 'fiber', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'park', 'opened', 'in', '2', '0', '0', '4', ',', 'an', 'array', 'of', 'works', 'by', '', 'and', 'julie', '', 'that', 'included', 'seventeen', 'bronze', 'sculptures', ',', 'three', '', '', ',', 'fourteen', '', 'granite', 'panels', ',', 'and', 'eight', 'installations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', '1', '9', '9', '0', 'the', 'area', 'of', 'the', 'klaipėda', 'region', 'has', 'formed', 'part', 'of', 'the', 'independent', 'republic', 'of', 'lithuania', ',', 'as', 'part', 'of', 'klaipėda', 'and', '', 'counties', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'species', 'of', 'sea', 'snail', ',', 'a', 'marine', 'gastropod', 'mollusk', 'in', 'the', 'family', '', ',', 'the', '', 'snails', 'or', 'rock', 'snails', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'trust', 'in', 'the', 'public', 'institutions', 'continues', 'to', 'decrease', ',', 'the', 'future', 'of', 'its', 'constitution', 'could', 'also', 'come', 'into', 'question', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'announced', 'that', 'he', 'would', 'switch', 'from', 'track', 'events', 'to', 'the', 'marathon', 'after', 'the', '2', '0', '1', '7', 'world', 'championships', 'in', 'athletics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'alexander', '', 'characterized', 'the', 'strong', 'dual', 'and', '', 'for', 'certain', 'situations', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'family', 'fled', 'the', 'german', 'invasion', 'to', 'the', '', 'zone', 'of', 'france', 'to', 'live', 'in', '', 'in', 'southwestern', 'france', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'once', '', 'queen', 'victoria', 'and', 'was', 'exiled', 'to', 'the', 'south', 'pacific', '(', 'shades', 'of', '', ')', ',', 'but', 'edward', 'vii', 'has', 'succeeded', 'to', 'the', 'throne', ',', 'and', '', 'has', 'been', 'recalled', 'to', 'london', 'to', 'receive', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '0', '2', ',', 'meredith', 'was', 'elected', 'president', 'of', 'the', 'montreal', 'stock', 'exchange', ',', 'a', 'position', 'he', 'held', 'until', '1', '9', '0', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', 'bonus', ',', 'it', 'came', '', 'with', 'the', 'visual', 'novel', \"'s\", 'original', 'soundtrack', 'and', 'a', 'game', '', 'of', 'key', \"'s\", 'ninth', 'game', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'few', 'artillery', 'pieces', 'and', '', \"'s\", 'brigade', 'from', '', \"'s\", 'corps', 'moved', 'forward', 'in', 'support', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'among', 'her', 'students', 'who', 'became', 'notable', '', 'were', '', '', ',', '', 'raphael', ',', 'and', 'olive', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'a', 'good', '', 'at', 'rat', 'sands', ',', '', 'lighthouse', 'and', '', 'echo', 'cliff', '(', ')', 'are', 'good', 'spots', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'terms', ',', 'inner', 'light', ',', 'guide', ',', 'seed', ',', 'or', 'spirit', '(', 'or', 'some', 'variation', ')', 'used', 'by', 'many', 'friends', 'to', 'explain', 'the', 'source', 'of', 'what', 'they', 'may', 'say', 'or', 'reflect', 'upon', 'during', 'meeting', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'wright', 'became', 'his', 'assistant', 'at', 'ipswich', 'in', '1', '6', '9', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'where', '', 'is', 'a', 'critical', '', '``', '', '', \"''\", ',', '``', '', '', \"''\", ',', '``', '', '', \"''\", ',', '``', '', \"''\", 'species', 'and', '``', '', \"''\", 'have', 'been', 'used', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'has', 'collaborated', 'on', 'art', 'projects', 'with', 'several', 'artists', ',', 'including', 'a', 'project', 'in', '2', '0', '1', '1', 'where', 'video', 'artists', 'applied', '3', '6', '5', 'layers', 'of', 'makeup', 'to', 'her', 'face', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'total', 'of', 'four', 'episodes', ',', 'containing', 'highlights', 'from', 'the', 'first', 'and', 'second', 'series', ',', 'broadcast', 'at', '7', ':', '0', '0', 'pm', 'between', '2', '2', 'and', '3', '1', 'july', ',', 'being', 'shown', 'on', 'both', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'per', 'capita', 'income', 'for', 'the', 'city', 'was', '$', '1', '8', ',', '0', '4', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'black', 'market', 'increasingly', 'ran', 'out', 'of', 'food', 'as', 'well', ',', 'and', 'with', 'the', 'gas', 'and', 'electricity', 'and', 'heat', 'turned', 'off', ',', 'everyone', 'was', 'very', 'cold', 'and', 'very', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'to', 'the', 'west', 'it', 'also', 'reaches', 'the', 'river', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'more', 'successful', 'were', 'his', 'efforts', 'to', 'raise', 'funds', 'for', 'a', 'community', 'hall', '-', '', 'efforts', 'began', 'in', '1', '9', '3', '9', 'and', 'the', 'building', 'was', 'constructed', 'by', '1', '9', '4', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'followed', 'by', 'the', '``', '', 'and', '', \"''\", 'quartet', 'of', '', 'fantasy', 'novels', '(', '2', '0', '1', '0', 'and', '2', '0', '1', '1', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'pacific', 'grand', 'prix', ',', '', '', 'drove', 'irvine', \"'s\", 'vacated', 'jordan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '2', ',', '', 'reportedly', 'had', 'a', '4', '0', 'percent', 'share', 'of', 'the', 'test', 'design', 'market', ',', 'ranking', 'second', 'of', 'the', 'four', 'major', 'companies', 'in', 'the', 'industry', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', 'is', 'composed', 'of', 'thin', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'color', 'component', 'transform', ',', 'discrete', '', 'transform', ',', 'and', '', 'could', 'be', 'done', 'pretty', 'fast', ',', 'though', '', '', 'is', 'time', '', 'and', 'quite', 'complicated', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'new', 'format', 'would', 'be', '', 'towards', 'women', '.', \"''\", \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'here', 'are', 'some', 'examples', '(', 'please', 'note', 'some', '', 'listed', 'here', ',', 'such', 'as', 'subscription', 'rights', ',', 'do', 'not', 'exist', 'anymore', 'due', 'to', 'its', 'own', 'finite', 'nature', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '2', '0', 'th', 'massachusetts', 'infantry', 'again', 'suffered', 'heavy', 'losses', 'at', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'are', 'moral', '', 'and', '', 'dealing', 'with', 'the', 'previous', '', 'of', '', 'buddha', 'in', 'both', 'human', 'and', 'animal', 'form', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'born', 'in', 'liverpool', ',', 'wallace', 'has', 'represented', 'england', 'at', 'under-', '1', '9', 'and', 'under-', '2', '0', 'level', ',', 'despite', 'having', 'represented', 'the', 'republic', 'of', 'ireland', 'at', 'under-', '1', '6', 'level', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'constructed', 'in', '', 'in', '1', '9', '6', '0', ',', 'and', 'initially', 'served', 'as', 'a', 'commercial', '', 'as', 'part', 'of', 'the', 'ross', 'group', 'fleet', ',', 'notably', 'taking', 'part', 'in', 'the', '', 'wars', 'of', 'the', '1', '9', '7', '0', 's', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'song', 'was', 'well', 'received', 'by', 'audience', 'and', 'critics', ',', 'where', 'the', 'popularity', '', 'by', 'the', 'song', '', 'the', 'popularity', 'gained', 'by', 'the', 'film', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'features', 'in', 'the', 'area', 'include', '', '', 'creek', ',', 'the', 'san', '', 'river', ',', 'and', 'the', '', 'reservoir', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', 'competed', 'for', 'team', 'canada', 'at', 'both', 'the', 'junior', 'and', 'national', 'level', 'at', 'international', 'tournaments', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'market', 'in', '', ',', '', ',', 'england', 'was', 'built', 'in', 'the', 'early', '1', '7', 'th', 'century', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', '', 'were', 'likely', 'relatively', 'new', '', 'to', '', \"'\", 'army', ',', 'being', 'integrated', 'in', '1', '2', '6', '8', 'and', 'given', 'horses', ',', 'titles', ',', 'and', 'lands', 'in', 'return', 'for', 'military', 'service', 'after', 'the', '', '', 'following', 'the', 'mongol', 'invasions', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'law', 'does', 'not', 'allow', 'ahmadi', 'muslims', 'to', 'call', 'themselves', 'muslim', 'or', 'to', '``', 'pose', 'as', 'muslims', \"''\", ',', 'which', 'are', 'crimes', '', 'by', 'three', 'years', 'in', 'prison', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'immediately', 'attempted', 'to', '', 'gondra', 'by', 'forcing', 'the', 'resignation', 'of', 'interior', 'minister', 'josé', '', ',', 'gondra', \"'s\", 'most', 'vocal', 'supporter', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ibn', '', 'studied', 'medicine', 'and', 'probably', 'philosophy', 'under', '', '', 'ibn', '', 'ibn', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'occupied', 'an', 'area', 'of', 'about', '1', '2', 'acres', ',', 'on', 'a', '', 'ground', 'plan', ',', 'with', '', 'at', 'the', '', ',', 'and', 'enclosed', 'the', 'church', 'of', 'st', 'john', 'the', 'baptist', ',', 'converted', 'by', 'cromwell', 'into', 'an', '', 'and', '', '.', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'genus', 'of', '', 'in', 'the', 'family', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '4', '8', 'he', 'became', 'a', 'member', 'of', 'the', 'royal', 'academy', 'of', 'science', ',', 'letters', 'and', 'fine', 'arts', 'of', 'belgium', 'and', 'a', 'member', 'of', 'the', 'commission', '', 'des', '', '', '', '', '[', '', 'commission', 'of', 'the', 'royal', 'museums', 'of', 'modern', 'art', ']', '.', '', '', '', '']\n", "['', 'the', 'only', 'other', 'song', 'on', 'the', 'album', 'soundtrack', 'to', 'perform', 'well', 'on', 'the', 'mainstream', 'charts', 'was', 'brown', \"'s\", 'previously', 'released', 'single', 'brother', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'also', 'in', '2', '0', '0', '7', ',', '', 'iii', 'was', 're-released', 'on', 'dvd', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'making', 'his', 'senior', 'debut', 'at', 'the', '2', '0', '1', '4', '', 'world', 'championship', ',', '', 'won', 'his', 'first', '', 'world', 'championship', 'gold', 'medal', 'in', '2', '0', '1', '6', 'and', 'was', 'named', 'his', '', 'athlete', 'of', 'the', 'year', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'entered', 'into', 'the', '2', '1', 'st', 'berlin', 'international', 'film', 'festival', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'left', 'to', 'tour', 'with', '', 'river', '', ',', 'but', '', 'remained', 'and', 'toured', 'as', '', 'briefly', ',', 'before', 'the', 'group', 'disbanded', 'completely', 'in', 'late', '2', '0', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'critic', '', '', 'from', '``', '', \"''\", 'gave', 'it', 'a', '3', '/', '5', 'rating', '', '``', \"''\", 'tanu', '', 'manu', \"''\", 'is', 'a', '', 'experience', 'for', 'most', 'part', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'visited', 'europe', ',', '', ',', 'asia', 'and', 'the', 'americas', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'music', 'video', 'was', 'released', 'for', 'the', 'opening', 'track', 'of', 'the', 'album', \"'s\", 'namesake', ',', 'depicting', '', '', '', 'of', 'himself', 'in', 'a', 'forest', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'same', 'apply', 'to', 'ex', 'rights', '', 'by', 'the', 'same', 'reason', ')', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'both', 'the', 'italy', 'and', 'spain', 'editions', 'have', 'the', 'most', 'audio', 'dub', 'options', 'of', 'all', '', ',', 'featuring', 'french', ',', 'italian', ',', 'and', 'spanish', '', '', ';', 'and', 'have', 'spanish', ',', 'portuguese', ',', 'english', ',', 'french', ',', 'italian', ',', 'croatian', ',', 'greek', ',', '', ',', 'and', '', '', 'settings', '.', '']\n", "['', 'there', 'she', 'joined', 'the', 'trinidad', '', \"'s\", 'association', ',', 'which', 'was', 'led', 'by', 'captain', 'a', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'are', '', 'by', 'a', 'variety', 'of', '', '', ',', 'such', 'as', '', ',', '', ',', '', ',', '', 'crabs', ',', '', 'crabs', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '1', 'brand', 'and', 'the', 'mark', '1', '0', 'brand', 'in', 'romania', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'of', 'her', 'earliest', 'publications', ',', '``', '', 'in', 'november', \"''\", '(', '1', '9', '6', '1', ')', ',', 'deals', 'with', 'events', 'surrounding', 'the', '', 'plot', 'of', '1', '6', '0', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'eventually', 'became', 'increasingly', 'dependent', 'on', 'british', 'loans', 'and', 'political', 'advice', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'sold', 'in', '1', '9', '9', '3', 'for', 'conversion', 'into', 'a', '', 'cruise', 'ship', ',', 'under', 'the', 'names', '', '``', 'her', '', 'm', ',', 'then', '', '``', '', 'ii', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'won', '', 'cup', 'in', '2', '0', '0', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'most', 'of', 'the', 'native', 'americans', 'in', 'ohio', 'were', 'driven', 'out', 'or', 'killed', 'by', 'the', 'arriving', '', 'settlers', 'and', 'military', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'source', 'data', '(', '8', 'x', '8', ')', 'is', '', 'to', 'a', 'linear', 'combination', 'of', 'these', '6', '4', 'frequency', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', '', '', '', 'and', '', 'at', 'people', ',', 'but', '', 'it', 'when', 'others', '', 'or', 'laugh', 'at', 'him', ',', 'saying', 'that', '``', 'it', \"'s\", 'only', '', 'when', 'it', 'happens', 'to', 'someone', 'else', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '6', ',', 'while', 'environmental', 'testing', 'was', 'continuing', ',', 'a', 'winter', '', '', 'of', '', 'eagles', ',', 'then', 'an', 'endangered', 'species', ',', 'was', 'discovered', 'at', 'the', 'rocky', 'mountain', 'arsenal', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'embassy', 'is', 'known', 'in', 'some', 'detail', 'because', 'the', 'financial', 'accounts', 'of', 'it', 'have', 'remained', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', '2', '0', '0', '2', 'the', 'community', 'numbered', '', '', '', ',', 'also', 'two', '', '(', 'the', 'monastic', 'term', 'for', 'those', 'resident', 'who', 'are', '``', 'thinking', 'about', 'a', '', \"''\", ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'disease', 'center', 'focused', 'on', 'infectious', 'diseases', ',', 'and', 'was', 'based', 'in', 'atlanta', 'due', 'to', 'its', 'initial', 'mission', 'of', '', 'malaria', 'in', 'the', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'punt', 'and', 'dennis', 'later', 'became', 'resident', 'guest', '', 'on', 'shows', 'presented', 'by', '', 'carrott', ',', 'including', '``', 'carrott', '', \"''\", 'and', '``', '', 'carrott', \"''\", 'with', 'punt', 'contributing', 'in', 'the', 'writing', 'team', 'as', 'well', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'museum', 'moved', 'the', '', 'to', 'its', 'property', 'with', 'the', 'intention', 'of', '', 'it', ',', 'and', 'the', '', 'was', 'listed', 'on', 'the', 'national', 'register', 'of', 'historic', 'places', 'in', '2', '0', '0', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'gave', 'money', 'to', 'many', 'hospitals', 'including', '', 'hospital', 'next', 'to', '', 'dock', 'essex', ',', 'where', 'he', 'built', 'a', 'ward', 'which', 'was', 'named', 'after', 'him', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'originated', 'the', 'role', 'as', 'the', 'lover', 'in', '``', 'the', 'who', \"'s\", 'tommy', \"''\", 'in', 'its', 'european', 'premier', 'in', '', 'germany', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'controller', 'was', 'endorsed', 'by', 'dr.', 'robert', '', ',', 'an', '', '', '', 'in', 'sports', 'injuries', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'were', 'buried', 'along', 'the', 'route', ',', 'which', 'became', 'known', 'as', 'the', 'trail', 'of', 'death', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'mystery', '', ',', '', 'has', 'performed', 'across', 'the', 'country', 'and', 'has', 'held', 'many', 'shows', ',', 'including', 'a', 'performance', 'at', '', 'weekend', 'atlanta', 'in', 'may', '2', '0', '1', '9', ',', 'and', 'a', 'summer', 'tour', 'to', 'promote', '``', 'back', 'to', 'life', \"''\", '.', '', '', '', '', '', '', '', '']\n", "['', 'this', 'disruption', 'allowed', 'the', '', 'to', 'retreat', 'to', 'underground', '', 'where', 'they', 'still', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', '', '', 'arose', 'from', 'a', 'contract', 'for', '', 'fish', 'to', '', ',', 'into', 'which', 'paulus', 'had', 'somewhat', '', 'entered', 'with', 'the', 'government', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'blog', 'posted', 'on', 'november', '1', '7', ',', '2', '0', '0', '9', 'detailed', 'the', 'forthcoming', 'album', ',', '``', '', 'of', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '8', ',', 'mark', 'shared', 'the', 'original', '', 'lyrics', 'on', 'twitter', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'he', 'had', 'an', '', 'year', ',', '', 'did', 'end', 'the', 'season', 'with', 'a', 'total', 'of', '1', '4', '', '', ',', 'although', 'his', 'side', 'finished', 'eighth', 'in', 'the', 'league', 'and', 'failed', 'to', 'qualify', 'for', 'european', 'football', 'in', 'the', 'following', 'season', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', 'result', ',', 'in', '1', '7', '3', '3', ',', 'lü', \"'s\", '', 'and', 'that', 'of', 'one', 'of', 'his', 'sons', 'were', '', 'and', '', ',', 'another', 'son', 'was', 'executed', ',', 'his', '', 'were', 'exiled', 'and', 'female', 'relatives', '', ',', 'and', 'all', 'of', 'his', 'writings', 'were', 'banned', '.', '', '', '']\n", "['', 'at', 'a', '', 'the', 'protagonist', '', 'and', '', 'with', 'another', '', ',', 'who', 'then', 'attacks', 'her', 'when', 'she', 'leaves', 'the', 'club', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'ran', 'in', '', 'west', ',', 'which', 'had', 'the', 'highest', 'voter', 'turnout', 'at', '9', '0', '.', '2', 'per', '', ',', 'but', 'was', 'defeated', 'by', 'incumbent', '', 'paul', '', 'by', '4', '4', 'votes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'a', 'period', 'of', 'touring', ',', 'in', '1', '9', '3', '4', 'the', 'band', 'accepted', 'a', '', 'at', 'the', 'harlem', '', 'the', 'cotton', 'club', 'for', 'their', '', '``', 'cotton', 'club', 'parade', \"''\", 'starring', 'adelaide', 'hall', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'published', 'his', 'first', 'book', ',', '``', 'they', 'are', '', 'by', 'origin', \"''\", ',', 'in', '1', '9', '9', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'with', 'rigid', 'line', 'is', 'done', 'with', 'an', 'inner', '', 'support', 'and', 'a', '', 'or', 'connection', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'young', 'larvae', 'feed', 'under', '', 'bark', ',', 'penetrating', 'the', 'wood', 'through', '', '', 'of', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'fuller', 'also', '', 'that', 'it', 'was', 'indeed', 'a', '', 'brooks', 'original', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '5', 'november', '1', '9', '6', '4', ',', 'university', 'college', '', 'won', 'the', 'championship', 'following', 'a', '0', '-', '1', '2', 'to', '1', '-', '0', '6', 'defeat', 'of', '', 'in', 'the', 'final', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'line', 'from', '', 'to', '', '', 'the', 'very', 'sharp', 'divide', 'between', 'its', 'different', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', 'march', '1', '9', '0', '2', ',', 'the', 'people', 'were', 'called', 'to', 'choose', 'a', 'successor', 'to', 'sierra', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'a', 'graduate', 'student', 'at', 'new', 'york', 'university', 'from', '2', '0', '0', '9', 'to', '2', '0', '1', '1', 'with', 'a', 'master', \"'s\", 'degree', 'in', 'journalism', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'fiba', 'under-', '1', '7', 'basketball', 'world', 'cup', '(', 'formerly', 'fiba', 'under-', '1', '7', 'world', 'championship', ')', 'is', 'an', 'under-', '1', '7', 'world', 'basketball', 'championship', 'of', 'the', 'international', 'basketball', 'federation', '(', 'fiba', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '0', '-', '1', '6', 'to', '1', '-', '0', '7', 'gave', 'kerry', 'the', 'title', 'and', 'an', 'all-ireland', 'medal', 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'development', 'began', 'in', '2', '0', '1', '4', ',', 'soon', 'after', 'the', 'release', 'of', '``', 'the', 'last', 'of', 'us', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'does', \"n't\", 'take', '', 'at', 'anything', 'but', 'will', 'charm', 'you', 'anyway', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'went', 'on', 'to', '', 'the', 'detail', 'that', 'on', 'that', 'day', 'the', 'tribe', 'revealed', 'that', 'his', '``', '', '', ',', 'homer', 'and', '', '', \"''\", 'were', 'listed', 'on', 'the', '', '', '(', 'the', 'citizenship', '', 'of', 'the', 'nation', ')', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'population', 'was', '2', '0', '0', 'as', 'of', '2', '0', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'additionally', ',', '1', '3', '%', 'of', 'pupils', 'received', 'special', 'education', 'services', ',', 'while', '6', '.', '9', '%', 'of', 'pupils', 'were', 'identified', 'as', 'gifted', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '5', ',', 'taylor', 'launched', 'the', 'environmental', '', 'program', '(', '', ')', 'in', 'partnership', 'with', 'the', 'environmental', '', 'association', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'ruined', 'fortress', 'on', 'the', 'northern', 'slopes', 'of', '', 'ridge', 'in', 'the', 'western', 'balkan', 'mountains', ',', '3', 'km', 'south', 'of', 'village', '', 'and', '2', '0', 'km', 'from', 'the', 'town', 'of', '', ',', 'bulgaria', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'customers', 'included', '', ',', '', ',', '', ',', '', ',', 'and', '', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'lake', 'is', '', 'and', 'has', 'a', 'large', '', ',', 'and', 'a', '', 'flow', 'forms', 'its', 'southern', 'shore', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mrs', 'blight', 'noted', 'that', 'mrs', 'veitch', 'was', 'having', 'difficulty', 'bringing', 'up', 'both', 'of', 'her', 'children', 'and', 'had', 'intended', 'to', 'send', 'her', 'daughter', 'to', '', ',', 'a', 'northern', 'settlement', 'in', 'the', '', 'district', 'in', 'the', 'north', 'island', 'of', 'new', 'zealand', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'worked', 'there', 'for', '2', '0', 'years', 'and', 'established', 'a', '', 'and', '', 'research', 'unit', 'to', 'study', 'the', '', 'of', '', 'hands', 'and', 'feet', ',', 'their', 'prevention', 'and', 'management', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'played', 'second', 'for', '', 'at', 'the', '1', '9', '9', '8', 'world', 'junior', 'curling', 'championships', 'where', 'they', 'picked', 'up', 'a', 'bronze', 'medal', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thereafter', 'he', 'graduated', 'from', 'st.', 'stephen', \"'s\", 'college', ',', 'delhi', 'and', 'afterward', 'completed', 'a', 'master', 'of', 'business', 'administration', 'degree', 'from', '', 'university', ',', 'uk', 'in', '1', '9', '9', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'who', 'was', 'a', 'photographer', 'working', 'throughout', 'alaska', 'in', 'the', 'early', '1', '9', '0', '0', 's', ',', 'are', 'also', 'on', 'the', 'main', 'campus', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'last', 'is', 'the', 'most', 'celebrated', 'and', 'useful', 'of', 'all', 'his', 'works', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'today', ',', '', 'schools', 'can', 'be', 'found', 'in', 'most', 'states', 'and', 'many', 'major', 'cities', 'and', 'they', 'continue', 'to', 'educate', 'local', 'girls', 'of', 'all', 'races', 'and', 'religion', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'november', 'saw', 'an', 'arrangement', 'of', 'another', 'event', 'which', 'met', 'with', 'positive', 'reception', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'borders', 'the', 'following', 'municipalities', ':', '', ',', '', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'iranian', 'historian', '', '', ',', 'of', 'these', '1', '2', '', ',', '8', 'were', 'muslims', ';', 'in', 'the', 'remaining', 'districts', ',', 'the', '', 'were', 'muslim', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'television', 'prints', 'and', '', 'versions', 'of', 'the', 'film', 'were', 'missing', 'some', 'of', 'the', 'songs', 'written', 'and', 'performed', 'by', 'clear', 'light', 'with', 'barry', '', ',', 'with', 'the', 'songs', 'replaced', 'with', '', 'stock', 'instrumental', 'music', 'because', 'of', 'music', 'copyright', 'issues', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'book', 'on', '', 'was', 'released', 'during', 'his', 'birth', '', 'on', '1', '2', 'november', '2', '0', '0', '5', 'by', 'former', 'supreme', 'court', 'of', 'india', 'judge', '', '', 'in', 'the', 'presence', 'of', 'his', 'sons', ',', 'a.', '', 'and', 'a.', '', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'september', '2', '9', ',', '1', '9', '3', '8', ',', 'around', 'sixty', 'of', 'disney', \"'s\", 'artists', 'gathered', 'for', 'a', '', 'hour', 'piano', 'concert', 'while', 'he', 'provided', 'a', 'running', 'commentary', 'about', 'the', 'new', 'musical', 'feature', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'government', 'of', 'south', 'africa', ',', 'and', 'other', '', 'maintain', 'that', 'farm', 'attacks', 'are', 'part', 'of', 'a', '', 'crime', 'problem', 'in', 'south', 'africa', ',', 'and', 'do', 'not', 'have', 'a', 'racial', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'wrote', 'comic', 'operas', 'and', '', 'music', 'for', 'plays', ',', 'but', 'was', 'most', 'widely', 'known', 'for', 'his', 'choral', 'music', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'a', 'reference', 'point', 'r', 'and', 'compute', 'the', 'relative', 'position', 'and', 'velocity', 'vectors', ',', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'employees', 'were', 'made', '', 'on', '2', '6', 'july', '2', '0', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'complex', 'includes', 'also', 'the', '', 'and', 'rocks', 'of', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'same', 'month', ',', 'he', 'brought', 'in', 'a', 'bill', 'that', 'would', 'allow', 'the', 'region', 'of', 'south', '', 'to', 'hold', 'a', 'referendum', ',', 'where', 'the', 'local', 'electorate', 'could', 'decide', 'whether', 'to', 'remain', 'within', 'the', 'republic', 'of', 'italy', ',', 'take', 'independence', ',', 'or', 'become', 'part', 'of', 'austria', 'again', '.', '', '']\n", "['', 'while', 'employed', 'effectively', 'against', 'their', '', '', 'during', 'the', 'initial', 'offensives', 'across', 'the', '', 'river', ',', 'the', 'italian', 'mounted', 'forces', 'ceased', 'to', 'have', 'a', 'significant', 'role', 'as', 'the', 'front', 'shifted', 'into', '', 'terrain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'population', 'of', '', 'is', '4', '8', '4', 'as', 'of', '2', '0', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '7', '4', 'fatalities', 'have', 'been', 'confirmed', 'worldwide', 'in', '2', '0', '1', '4', ':', '4', '7', 'in', 'the', 'united', 'states', ',', '2', '0', 'in', 'bangladesh', ',', 'three', 'in', 'brazil', 'and', 'two', 'in', 'australia', 'and', 'russia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'john', 'w.', '', '', 'charter', 'school', 'opened', 'in', 'september', '2', '0', '0', '9', 'and', 'is', 'the', 'first', 'charter', 'school', '(', 'a', 'school', 'that', 'is', 'publicly', 'funded', ',', 'but', 'privately', 'run', ')', 'on', 'staten', 'island', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'financial', 'recovery', 'plan', 'was', 'delivered', 'in', 'the', '2', '0', '1', '9', '/', '2', '0', 'financial', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', 'the', '1', '8', '8', '5', 'election', 'he', 'sat', 'for', 'the', '', 'division', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', '', ',', 'plovdiv', 'remained', 'the', 'second', 'most', 'populous', 'city', 'in', 'bulgaria', 'after', 'the', 'capital', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'beverly', '', 'was', 'sent', 'ahead', 'to', '', 'the', 'federal', 'cavalry', '', 'the', '', 'of', 'the', '', 'river', 'and', 'occupying', 'madison', 'court', 'house', ',', 'threatening', 'the', 'confederates', 'left', 'flank', 'as', 'they', '', 'northward', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'part', 'of', 'the', '', 'metropolitan', 'statistical', 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'company', 'was', 'located', 'in', 'louisville', ',', 'kentucky', 'near', 'the', 'university', 'of', 'louisville', 'campus', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'unable', 'to', 'see', 'that', 'the', 'woman', 'is', 'fred', 'from', 'her', 'vision', ',', 'crazy', 'after', 'all', 'her', 'years', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'his', 'death', 'in', '1', '6', '1', '9', ',', 'his', 'domain', 'was', 'divided', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'village', ',', 'which', 'is', 'one', 'of', 'around', '2', '0', '0', 'lost', 'settlements', 'in', 'norfolk', ',', 'was', 'abandoned', 'in', 'the', '1', '6', 'th', 'century', ',', 'probably', 'as', 'the', 'consequence', 'of', 'the', 'land', 'being', 'enclosed', 'by', 'the', 'landlord', 'of', 'that', 'time', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'moran', 'eye', 'center', 'building', 'was', 'constructed', 'in', '1', '9', '9', '3', 'with', 'a', 'lead', 'gift', 'from', 'university', 'of', 'utah', '', 'john', 'a.', 'moran', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'gang', '', 'at', 'heroes', 'of', 'wrestling', 'event', 'on', 'october', '1', '0', ',', '1', '9', '9', '9', 'against', 'abdullah', 'the', '', 'in', 'a', 'double', 'count', 'out', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'norman', '', '(', 'born', 'october', '6', ',', '1', '9', '2', '9', ')', 'is', 'an', 'american', '', ',', 'composer', ',', '', ',', 'and', 'most', '', 'a', 'pianist', 'who', 'has', 'worked', 'extensively', 'with', 'helen', '', ',', '', '', ',', 'sarah', 'vaughan', ',', 'anita', '', ',', 'and', 'joe', 'williams', 'among', 'others', '.', '']\n", "['', 'buying', 'another', 'box', 'with', 'elegant', 'clothing', '', 'to', 'fit', 'over', 'the', '', ',', 'the', 'customer', 'could', 'transform', 'them', '``', 'after', 'the', '', 'was', 'sold', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'proof', 'has', 'not', 'yet', 'appeared', 'in', 'a', 'peer-reviewed', 'publication', ',', 'though', 'was', 'accepted', 'for', 'publication', 'in', 'the', '``', '', 'of', 'mathematics', 'studies', \"''\", 'series', 'in', '2', '0', '1', '5', ',', 'and', 'has', 'been', '', 'further', 'review', 'and', 'revision', 'since', '.', '', '', '', '', '', '', '', '']\n", "['', 'the', 'bread', '', 'had', 'already', 'dropped', 'from', '2', ',', '2', '0', '0', 'to', '1', ',', '8', '0', '0', 'and', 'then', 'to', '1', ',', '4', '0', '0', '', 'per', 'week', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ministry', 'of', 'youth', 'and', 'sports', 'of', 'azerbaijan', 'has', 'declared', 'that', 'the', 'stadium', 'will', 'be', 'renewed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'paul', ',', 'who', 'was', 'previously', 'stationed', 'in', 'england', ',', 'now', 'serves', 'the', 'army', 'in', 'france', 'and', 'sees', 'his', 'wife', 'for', 'the', 'first', 'time', 'in', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '2', ',', 'when', 'state', 'representative', 'nancy', '', '', 'to', 'run', 'for', 'a', 'seat', 'in', 'the', 'florida', 'senate', 'rather', 'than', 'seek', 're-election', 'to', 'the', 'state', 'house', ',', 'dean', 'ran', 'to', 'succeed', 'her', 'as', 'a', 'republican', 'in', 'the', '4', '3', 'rd', 'district', '.', '', '', '', '', '']\n", "['', 'unlike', 'european', 'immigrants', 'who', 'settled', 'permanently', 'in', 'the', 'new', 'world', ',', 'many', 'pakistanis', 'who', 'emigrated', 'considered', 'themselves', 'to', 'be', '``', '', \"''\", ',', 'who', 'left', 'to', '', 'money', 'abroad', 'but', 'not', 'to', '', ',', 'or', 'were', 'students', 'who', 'intended', 'to', 'return', 'to', 'pakistan', 'when', 'their', 'degree', 'programs', 'were', 'completed', '.']\n", "['', 'the', 'federation', 'of', 'sports', 'at', 'altitude', 'was', 'founded', 'by', '', '', 'who', 'with', 'other', 'fellow', 'climbers', 'conducted', '', 'races', 'across', 'the', 'world', \"'s\", 'most', 'famous', 'mountain', 'ranges', 'the', '', ',', '', ',', 'mount', 'kenya', ',', 'and', 'the', 'mexican', 'volcanoes', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'and', '', '', 'won', 'the', 'singles', 'titles', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'formed', 'the', 'san', 'francisco', 'ship', 'building', 'company', '(', 'in', 'oakland', ',', 'california', ')', ',', 'and', 'hired', 'alan', 'macdonald', 'and', 'victor', '', 'to', 'design', 'the', 'first', 'american', '', 'ship', ',', 'a', '6', ',', '1', '2', '5', '-ton', '', 'named', 'the', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'house', 'is', 'recorded', 'in', 'the', 'national', 'heritage', 'list', 'for', 'england', 'as', 'a', 'designated', 'grade', 'i', 'listed', 'building', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'variety', \"''\", 'observed', '``', 'miss', 'clark', 'gives', 'a', 'good', 'performance', 'and', 'she', 'sings', 'the', 'beautiful', 'songs', 'like', 'a', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'stars', '', '', ',', '', 'moore', ',', 'harry', '', ',', 'and', 'karl', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'second', 'wife', ',', 'maria', '', 'de', '', 'de', '', 'schmidt', ',', 'and', 'had', 'four', 'children', ':', 'pedro', '', '', ',', '', '', 'de', '', ',', '', 'marques', 'and', '', 'schmidt', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '2', 'nd', 'guards', 'reserve', 'division', '(', '``', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'known', 'to', 'many', 'as', '``', 'the', '', ',', 'lee', \"'s\", \"''\", 'designs', 'achieved', '', 'in', 'the', '1', '9', '7', '0', 's', ',', 'with', '``', '', \"''\", 'and', '``', '', \"''\", 'having', 'won', 'the', '', 'yacht', 'race', 'from', 'los', 'angeles', 'to', 'honolulu', 'many', 'times', '.', '', '', '', '', '', '']\n", "['', 'mullett', 'lake', 'is', 'a', 'lake', 'in', '', 'county', 'in', 'the', 'u.s.', 'state', 'of', 'michigan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'unfortunately', ',', 'she', 'begins', 'to', 'suspect', 'that', 'one', 'of', 'her', '', 'might', 'be', 'a', '', 'cyber', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'along', 'with', '', '', ',', '', 'dee', 'and', 'sam', '', 'are', 'referred', 'to', 'as', '', \"'s\", '', '', \"'\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '0', ',', 'the', 'park', 'district', 'signed', 'a', 'lease', 'for', 'the', 'adjacent', '', 'road', '', ',', 'bringing', 'the', 'park', 'to', 'its', 'current', 'size', 'of', '6', '5', '5', 'acres', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'article', 'noted', 'the', 'game', \"'s\", 'high', 'level', 'of', 'difficulty', ',', 'saying', 'the', 'game', '``', 'threw', 'up', 'an', '', 'challenge', 'even', 'for', 'the', '', '', ',', 'and', 'almost', '', 'you', 'to', 'complete', 'it', 'mentally', 'and', 'physically', 'intact', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '1', '0', '8', '0', '8', 'refers', 'to', 'page', '1', '0', '8', '0', '8', 'of', 'the', '4', '2', 'nd', 'volume', '(', 'calendar', 'year', '2', '0', '1', '8', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'to', '', 'this', ',', 'the', 'collector', 'or', '', 'must', 'take', 'into', 'consideration', 'proper', 'housing', '', ',', 'as', 'well', 'as', 'environmental', 'conditions', 'necessary', 'to', 'prevent', 'damages', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'species', 'is', 'currently', 'threatened', 'by', 'loss', 'of', 'habitat', 'and', '', 'for', 'plumage', 'or', 'the', '', 'trade', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'won', 'ironman', '7', '0', '.', '3', 'florida', 'in', 'may', '2', '0', '0', '9', ',', 'marking', 'the', 'first', '', 'to', 'ever', 'win', 'an', 'ironman', 'event', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '6', ',', 'the', '', 'de', 'la', '', 'label', '', 'into', '', 'wear', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'finished', 'fourth', 'in', 'the', 'finale', 'on', 'day', '8', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'appeared', 'on', 'hundreds', 'of', 'individual', 'broadcasts', 'across', 'a', 'radio', 'career', 'that', '', 'from', '1', '9', '2', '6', 'to', 'her', 'final', 'two', 'appearances', ',', 'on', '``', 'cbs', 'radio', 'mystery', 'theatre', \"''\", 'in', '1', '9', '7', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'of', 'particular', 'importance', 'are', 'also', 'the', 'church', 'of', 'st.', '', 'in', '', ',', 'and', 'also', '', 'cathedral', ',', 'brunswick', 'cathedral', ',', '', 'cathedral', ',', 'st.', 'michael', 'in', '', ',', '', 'cathedral', 'and', '', 'cathedral', ',', 'whose', 'last', 'phase', 'of', 'construction', 'falls', 'in', 'the', 'gothic', 'period', '.', '', '', '', '']\n", "['', 'by', 'the', '1', '9', '7', '0', 's', ',', 'a', 'national', 'institutes', 'of', 'health', 'initiative', ',', 'the', 'anticonvulsant', '', 'program', ',', 'headed', 'by', 'j.', '', '', ',', 'served', 'as', 'a', 'mechanism', 'for', 'drawing', 'the', 'interest', 'and', 'abilities', 'of', 'pharmaceutical', 'companies', 'in', 'the', 'development', 'of', 'new', 'anticonvulsant', '', '.', '', '', '']\n", "['', 'the', 'clark', 'sanitary', '', 'began', 'operations', 'in', '2', '0', '0', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'early', '1', '4', 'th', 'century', ',', 'pirate', '', 'of', 'the', '', 'grand', 'company', 'repeatedly', '', 'the', 'holy', 'mountain', ',', 'while', '', 'and', '', 'numerous', 'monasteries', ',', '', '', 'and', 'christian', 'relics', ',', 'and', '', 'monks', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bernard', 'is', 'eventually', 'recalled', 'to', 'london', ',', 'and', 'sent', 'on', 'a', 'mission', 'to', 'vienna', 'to', 'pick', 'up', 'a', 'package', 'from', 'a', '', 'auction', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'born', 'in', 'bari', 'and', 'received', 'her', '', 'in', 'piano', 'and', 'singing', 'from', 'the', 'city', \"'s\", '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'better', 'weather', 'before', '2', '2', 'october', ',', 'the', 'royal', 'flying', 'corps', '(', '', ')', 'flew', 'many', 'reconnaissance', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'traffic', ',', 'notably', 'coal', ',', 'east', 'of', '', 'junction', 'was', 'heavy', ',', 'but', 'little', '', 'on', 'the', '', 'to', '', 'section', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'was', 'a', '7', '.', '4', '', '€', 'pipeline', 'project', 'finished', 'in', '2', '0', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '', 'is', 'a', 'hindu', 'temple', 'located', 'in', '', 'near', 'kattappana', 'in', '', 'district', 'of', 'kerala', 'state', ',', 'india', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'received', 'prestigious', '', 'and', 'rose', 'quickly', 'in', 'rank', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'nevertheless', ',', 'the', 'considerable', 'amount', 'of', 'bone', 'loss', 'relative', 'to', 'the', 'young', 'age', 'of', 'the', 'individual', 'in', '', '', 'an', 'often', 'more', '', 'treatment', 'approach', ',', 'to', 'halt', 'further', '', 'destruction', 'and', 'regain', 'as', 'much', '', '', 'as', 'possible', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'cawfe', 'incorporates', 'data', 'from', 'the', 'three', 'main', 'environmental', 'factors', 'that', 'affect', '', 'fire', 'behavior', ':', 'weather', ',', 'fuel', 'characteristics', ',', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'purpose', 'of', 'the', 'needle', 'is', 'to', '', 'the', 'membrane', 'of', 'the', 'cyst', ',', 'so', 'that', 'the', 'cyst', 'will', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'recent', 'years', ',', '', 'has', 'hosted', 'student', 'q', '&', 'amp', ';', 'as', 'with', 'filmmakers', 'such', 'as', 'nick', '', ',', 'george', '', '(', 'director', 'of', '``', 'the', 'hard', 'stop', \"''\", ')', ',', 'and', 'sir', 'ronald', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', 'congressman', ',', 'johnson', 'had', 'long', '', 'for', 'a', 'presidential', 'pardon', 'for', 'parr', ',', 'who', 'had', 'been', 'convicted', 'of', 'tax', '', 'in', '1', '9', '3', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'oil', 'ministry', 'did', 'not', '', 'company', \"'s\", 'us', '$', '7', '.', '2', 'billion', 'stake', 'in', 'deal', 'with', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'and', 'organized', 'drug', 'gangs', 'such', 'as', 'the', '``', '6', '9', 'mob', \"''\", ',', 'with', 'increases', 'in', 'arrests', ',', '', ',', 'and', 'imprisonment', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'received', 'special', 'training', 'as', 'a', 'scholar', 'of', 'the', 'association', 'for', 'overseas', 'technical', 'scholarship', '(', '', ')', 'in', 'tokyo', ',', 'japan', 'in', '1', '9', '9', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'and', '', '(', '1', '9', '3', '0', ')', 'commented', ',', 'that', 'this', '``', 'book', 'is', 'mainly', 'concerned', 'with', 'the', 'trust', 'problem', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'origin', 'of', 'language', '(', 'spoken', 'and', 'signed', ',', 'as', 'well', 'as', 'language', 'related', 'technological', 'systems', 'such', 'as', 'writing', ')', ',', 'its', 'relationship', 'with', 'human', 'evolution', ',', 'and', 'its', 'consequences', ',', 'have', 'been', 'a', '', 'subject', 'of', 'study', 'for', 'the', 'human', 'race', '.', '', '', '', '', '', '', '']\n", "['', 'the', 'third', 'public', 'reading', 'of', 'the', 'declaration', 'of', 'independence', 'took', 'place', 'in', 'new', 'brunswick', ',', 'but', 'many', 'east', '', 'became', 'tories', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'case', 'of', 'complex', '', '', 'one', 'can', 'compute', 'this', 'map', 'using', 'laurent', 'series', 'about', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'through', 'the', 'leadership', 'of', 'kevin', '', ',', 'the', '', 'organization', 'was', 'absorbed', 'by', 'the', 'virginia', 'foundation', 'for', 'the', 'humanities', 'during', 'this', 'period', 'and', 'then', 'in', '2', '0', '1', '8', 'became', 'a', 'part', 'of', 'the', 'virginia', 'center', 'for', 'the', 'book', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'present', 'day', ',', 'will', '', 'what', 'went', 'wrong', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'movement', 'was', 'spread', 'throughout', 'the', 'area', 'by', 'baptist', '', 'richard', 'g.', '', '(', 'senior', ')', ',', 'and', 'the', 'use', 'of', '``', 'latter', 'rain', \"''\", 'to', 'describe', 'the', 'movement', 'originated', 'at', 'this', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'subsidiary', ',', 'which', 'was', 'founded', 'in', '2', '0', '0', '6', ',', 'is', 'a', '', 'factory', 'manufacturing', 'logic', 'and', 'power', '', 'for', 'the', 'automotive', 'and', 'industrial', 'market', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'the', 'party', 'did', 'agree', 'to', 'giving', 'the', 'palestinian', 'arabs', '', '', ',', 'subject', 'to', 'israel', \"'s\", 'authority', 'only', 'in', 'matters', 'of', 'security', 'and', 'foreign', 'affairs', '(', 'such', 'as', 'in', 'borders', 'and', 'diplomacy', ')', ',', 'without', 'the', '', 'of', 'the', 'jewish', 'settlements', '.', '', '', '', '', '', '']\n", "['', 'by', '1', '3', '0', '0', ',', 'the', '', 'and', 'local', '', 'staged', 'the', 'passion', 'plays', 'during', 'holy', 'week', ',', 'which', 'depicted', 'jews', '(', 'in', 'contemporary', 'dress', ')', 'killing', 'christ', ',', 'according', 'to', 'gospel', 'accounts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'school', 'site', 'is', 'now', 'occupied', 'by', 'the', 'royal', '', 'college', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'full', 'yearly', '', 'at', '', '', 'is', 'estimated', 'to', 'cost', 'approximately', '$', '1', '7', ',', '0', '0', '0', 'with', 'a', 'portion', 'of', 'this', 'cost', 'being', '', 'by', 'donations', ',', 'bringing', 'the', 'average', '', 'price', 'at', '', '', 'to', 'approximately', '$', '1', '1', ',', '1', '5', '5', '.', '', '', '']\n", "['', 'hence', 'the', '', 'sphere', 'admits', 'a', 'unique', 'complex', 'structure', 'turning', 'it', 'into', 'a', '', 'complex', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'line', 'with', 'the', 'supposed', 'mechanism', 'of', 'action', ',', 'it', 'is', 'not', 'merely', 'the', 'introduction', 'of', 'a', 'platform', 'switch', ',', 'but', 'the', '``', 'magnitude', \"''\", 'of', 'the', '', 'diameter', '', ',', 'that', 'makes', 'a', 'difference', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', '2', '0', '1', '3', ',', 'carhartt', 'had', 'sales', 'of', 'about', '$', '6', '0', '0', 'million', 'per', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hansen', 'was', '', 'by', 'the', 'norwegian', '', 'at', 'the', 'olympics', 'in', '1', '9', '0', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'project', 'also', 'won', 'an', 'award', 'of', 'merit', 'from', '``', 'engineering', '', \"''\", 'in', 'the', '', 'building', 'category', 'of', 'its', 'california', \"'s\", 'best', 'projects', 'competition', 'for', '2', '0', '1', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '1', '7', ',', '', 'became', 'the', 'leader', 'of', 'the', 'internal', 'opposition', 'against', 'the', 'main', 'current', 'of', 'the', '', 'social', 'democratic', 'party', ',', 'which', 'continued', 'to', 'put', 'the', 'social', 'question', 'before', 'the', 'issue', 'of', 'national', 'emancipation', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'total', ',', '``', 'n', \"''\", '+', '1', 'runs', 'of', 'the', 'algorithm', 'are', 'required', ',', 'where', '``', 'n', \"''\", 'is', 'the', 'number', 'of', 'distinct', 'variables', 'in', 'φ', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', '', 'appears', 'in', 'this', 'installment', 'as', 'a', 'place', 'to', 'play', 'several', '', '(', 'slot', 'machine', ',', '', ',', 'and', 'the', '', '', 'that', 'was', 'introduced', 'in', '``', 'dragon', '', 'iii', \"''\", ')', 'using', '', 'that', 'could', 'be', 'traded', 'for', 'special', 'items', '.', '', '', '', '', '', '']\n", "['', 'the', 'word', '', \"'\", 'in', '', 'refers', 'to', 'a', '', \"'\", 'and', '', \"'\", 'to', 'a', 'parish', 'church', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'educated', 'at', 'eton', 'college', 'and', 'christ', 'church', ',', 'oxford', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'had', 'a', 'market', '', 'of', 'approximately', '£', '1', '6', '.', '9', 'billion', 'as', 'of', '2', '3', 'december', '2', '0', '1', '1', ',', 'making', 'it', 'the', '2', '4', '', 'company', 'on', 'the', 'london', 'stock', 'exchange', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'throughout', '1', '9', '4', '3', ',', 'the', '3', '4', '4', 'th', 'received', 'new', 'graduates', 'from', 'the', 'air', 'training', 'command', \"'s\", '', 'flight', 'schools', 'and', 'provided', 'transition', 'and', 'combat', 'training', 'to', 'pilots', 'and', 'new', 'flight', 'crews', 'assembled', 'from', 'various', '', 'technical', 'schools', '.', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', 'born', 'october', '1', '8', ',', '1', '9', '9', '2', ')', 'is', 'a', 'finnish', 'ice', 'hockey', 'player', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'battle', 'of', '', '(', 'also', '', 'or', '', ')', 'was', 'fought', 'in', '1', '0', '7', '8', 'between', 'the', 'byzantine', 'imperial', 'forces', 'of', 'general', '(', 'and', 'future', 'emperor', ')', '', '', 'and', 'the', '', 'governor', 'of', '', ',', '', 'bryennios', 'the', 'elder', '.', '', '', '', '', '', '', '']\n", "['', 'when', '', 'he', 'took', 'advantage', 'of', 'the', '', 'to', 'make', 'his', 'first', 'visit', 'to', 'kentucky', 'on', '', 'over', 'the', 'mountains', ',', 'and', 'then', 'located', 'the', 'lands', 'on', 'which', 'he', 'subsequently', 'lived', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'players', 'can', '', 'their', 'own', 'traps', ',', 'resulting', 'in', 'no', '', 'effects', ',', 'but', 'the', '', 'will', 'instantly', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'audience', 'will', 'see', 'her', 'in', 'a', 'new', 'light', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'earliest', 'seasons', ',', 'his', '', 'was', 'due', 'to', 'his', '', 'focus', 'on', 'his', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'had', 'surrendered', 'to', 'police', 'in', 'june', '2', '0', '1', '8', 'after', 'he', 'was', 'charged', 'and', 'began', 'serving', 'time', 'in', 'prison', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '1', ',', '', 'appeared', 'in', 'the', 'french', 'open', 'and', '', 'championships', 'but', 'was', 'beaten', 'in', 'the', 'opening', 'round', 'at', 'both', 'events', ',', 'by', '', '', 'and', 'tim', '', 'respectively', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'sisters', 'are', 'informally', 'known', 'as', 'the', '``', 'roesbrugge', '', \"''\", '-', 'the', 'roesbrugge', 'ladies', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', '', 'to', 'give', 'the', 'various', 'peoples', 'in', 'the', 'netherlands', ',', 'still', 'under', '', 'rule', ',', 'more', 'say', 'in', 'their', '', 'affairs', 'were', 'rejected', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'a', 'more', 'rural', 'setting', ',', 'rowson', 'would', 'move', 'her', 'school', 'to', '', ',', 'then', 'to', '', ',', 'massachusetts', ',', 'before', 'returning', 'it', 'to', 'boston', 'in', '1', '8', '0', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'having', '', 'that', 'the', 'charges', 'were', '', ',', 'the', 'three', 'collected', 'damages', 'from', 'the', 'magazine', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'all', 'of', 'the', 'characters', 'are', '', 'in', 'the', 'game', 'boy', 'advance', 'version', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'german', 'invasion', 'of', 'the', 'soviet', 'union', 'in', '1', '9', '4', '1', 'during', 'world', 'war', 'ii', ',', 'the', 'soviet', 'government', 'considered', 'the', '', 'germans', 'potential', '', ',', 'and', 'deported', 'many', 'of', 'them', '', ',', 'where', 'thousands', 'died', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'due', 'to', 'its', 'location', 'north', 'of', 'the', '', 'river', ',', 'fort', '', 'was', 'considered', 'a', '', 'fort', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mega', 'man', 'and', 'bass', 'had', 'to', 'battle', 'him', 'and', 'many', 'robots', 'that', 'had', 'joined', 'his', 'army', ';', 'when', 'either', 'one', 'finally', '', 'king', ',', 'it', \"'s\", 'revealed', 'that', 'he', 'had', 'actually', 'been', '', 'to', 'form', 'a', 'rebellion', 'by', 'dr.', '', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'mate', '3', '0', \"'s\", 'camera', 'design', 'is', 'the', 'same', 'as', 'the', 'mate', '3', '0', \"'s\", ',', 'and', 'has', 'the', '', 'in', 'place', 'of', 'the', '', 'sensor', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'employees', 'of', 'epic', 'systems', 'each', '', 'a', 'personal', 'charity', ',', 'and', 'every', 'month', ',', 'epic', '', '$', '1', '0', '0', 'to', 'four', 'employee', 'chosen', 'charities', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'land', 'masses', 'once', 'connected', 'with', 'australia', 'as', 'the', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'service', 'of', 'the', 'prime', 'minister', 'of', 'spain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'leaving', 'college', 'in', '1', '9', '4', '7', '', 'formed', 'the', 'kerala', 'socialist', 'party', '(', '', ')', 'under', 'the', 'leadership', 'of', '', '', ',', 'whom', 'he', 'considered', 'as', 'his', '', 'and', 'guide', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'institute', 'was', 'incorporated', 'by', 'an', 'act', 'of', 'parliament', 'to', 'include', 'all', 'former', 'provincial', 'groups', 'except', 'the', 'mining', 'society', 'of', 'nova', 'scotia', ',', 'which', 'remained', 'a', 'separate', 'body', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '3', 'the', 'cd', 'label', '', 'classics', 'from', 'london', 'released', 'a', 'cd', '``', 'balkan', '', \"''\", 'with', 'her', 'chamber', 'music', 'for', 'winds', '(', '1', '1', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'made', 'a', 'second', 'marriage', 'in', 'about', '1', '7', '3', '1', 'to', 'catherine', 'lloyd', ',', 'daughter', 'of', '', 'lloyd', 'of', '', ',', '', ',', 'the', 'mp', 'for', 'flint', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'acquired', '', 'from', '', 'on', 'july', '1', '5', ',', '2', '0', '1', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'my', 'lands', '', 'up', 'to', '2', '0', '0', ',', '0', '0', '0', 'active', 'players', 'and', 'has', 'been', 'translated', 'into', 'over', '2', '0', 'languages', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', \"'\", ',', \"'\", 'and', 'the', '', 'of', 'iv', 'allow', 'tactics', 'to', 'be', 'set', 'for', 'characters', 'individually', 'rather', 'than', 'using', 'one', 'tactics', 'mode', 'for', 'all', 'characters', ',', 'as', 'well', 'as', 'including', 'the', '``', 'follow', 'orders', \"''\", 'tactics', 'mode', ',', 'which', 'allows', 'other', 'characters', 'to', 'be', 'controlled', '', '.', '', '', '']\n", "['', 'during', 'his', 'stay', 'in', 'lyon', ',', 'he', 'published', 'several', 'works', ',', 'among', 'them', '``', 'la', '', 'de', 'la', '', '', 'et', '', \"''\", '(', '1', '6', '6', '7', ')', ',', 'a', 'translation', 'of', 'the', 'work', 'of', 'the', 'spanish', '', '', ',', 'alonso', '', '.', '', '', '', '', '', '']\n", "['', 'the', 'swedish', 'and', 'swiss', '', 'stopped', '', 'our', 'letters', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'united', 'states', 'stockade', 'named', 'fort', '', 'was', 'built', 'in', '1', '8', '3', '8', ',', 'and', 'subsequently', 'was', 'a', 'site', 'of', 'fighting', 'during', 'the', 'second', '', 'war', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'under', 'the', 'minister', 'and', 'the', 'director-general', ',', '', 'has', 'three', 'deputy', '', '(', 'housing', ',', '', 'and', 'sport', ';', 'building', 'policy', 'and', 'asset', 'management', ';', 'portfolio', 'strategy', ')', ',', 'an', 'assistant', 'director-general', ',', 'and', 'the', 'chief', 'customer', 'and', 'digital', 'officer', ',', 'as', 'well', 'as', 'a', 'transition', 'advisor', '.', '', '']\n", "['', 'the', 'longest', 'and', 'the', 'most', '', 'panchari', 'melam', \"'s\", 'are', 'the', 'ones', 'held', 'at', 'tripunithura', 'sree', '', 'temple', 'vrishchikolsavam', ',', '', '', ',', '', '', '', '&', 'amp', ';', '', '', ',', 'with', 'the', 'performance', 'lasting', 'for', 'about', 'four', 'hours', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'americans', 'moved', 'east', 'in', 'october', ',', 'the', 'airfield', 'was', 'closed', 'and', 'dismantled', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'charles', 'fernando', '(', '1', '9', '4', '1', '-', '1', '9', '9', '5', ')', 'was', 'a', '', 'abstract', 'painter', 'and', 'jazz', 'musician', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'the', 'early', '1', '9', '6', '0', 's', ',', 'the', 'rapid', 'growth', 'of', 'the', 'church', 'had', 'created', 'administrative', 'difficulties', 'that', 'needed', 'to', 'be', 'addressed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'organization', 'received', 'a', '$', '2', '5', ',', '0', '0', '0', 'grant', 'from', 'the', 'national', '', 'of', 'arts', 'in', '2', '0', '1', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', ',', '', '', 'of', '', 'are', 'considered', 'the', '', 'of', 'the', 'country', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '5', 'december', '1', '9', '8', '7', '``', '', \"''\", 'ran', 'aground', 'on', 'san', 'miguel', 'island', 'after', 'breaking', 'its', '', 'during', 'a', 'storm', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'would', 'be', 'the', 'last', 'game', 'the', '``', 'blades', \"''\", 'would', 'ever', 'play', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'national', 'elephant', 'institute', 'was', 'founded', 'as', 'the', 'thai', 'elephant', 'conservation', 'center', '(', '', ')', 'in', '1', '9', '9', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'has', 'also', 'stated', 'and', 'exhibited', 'his', 'dean', 'martin', '', 'collection', ',', 'which', 'includes', '``', 'every', '', 'book', 'and', 'record', 'album', ',', 'plus', 'publicity', '', ',', 'newspaper', 'and', 'magazine', '', ',', '', '', ',', 'comic', 'books', ',', 'and', 'even', 'a', 'copy', 'of', 'dino', \"'s\", 'death', 'certificate', '.', \"''\", '', '']\n", "['', '', 'converted', 'to', 'islam', 'in', '6', '1', '4', 'or', '6', '1', '5', 'ce', 'under', 'the', 'direct', 'influence', 'of', 'abu', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'of', 'the', 'painting', 'he', 'commissioned', 'was', '``', 'the', 'long', 'walk', ',', 'windsor', ',', 'with', '', '', 'and', '', \"''\", ',', 'which', 'included', 'the', 'famous', '', 'eclipse', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'can', 'then', 'be', 'compared', 'to', 'the', 'entire', 'plant', 'mass', 'in', 'the', 'area', 'to', 'determine', 'the', 'percent', 'of', 'each', 'species', 'located', 'within', 'the', 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'name', 'is', 'the', 'source', 'of', 'a', 'lot', 'of', 'his', 'resentment', 'towards', 'the', 'older', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'website', 'also', 'hosts', 'a', 'learning', 'object', '', ',', 'where', 'educators', 'can', '', 'lessons', 'and', 'other', 'learning', 'objects', 'for', 'others', 'to', 'download', 'and', 'use', 'in', 'their', 'classrooms', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'rest', 'of', 'the', 'original', 'cast', 'appeared', 'in', 'the', '', 'production', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'early', 'february', '1', '2', '9', '8', ',', 'andrew', 'visited', 'albert', 'of', 'austria', 'in', 'vienna', 'and', '', 'to', 'support', 'him', 'against', '', 'of', '', ',', 'king', 'of', 'germany', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'is', 'because', 'as', '', 'become', 'relatively', 'small', ',', 'their', 'contribution', 'to', 'the', '', 'is', 'large', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'body', 'is', 'coloured', 'light', 'brown', ',', 'or', '', 'yellow', ',', 'with', 'white', 'spots', 'on', 'the', 'head', 'and', 'short', 'white', 'bars', 'on', 'the', 'dorsal', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'hillary', 'refuses', 'to', 'have', 'anything', 'to', 'do', 'with', 'him', ',', 'salvador', 'secretly', 'plans', 'to', 'win', 'her', 'back', 'and', 'instructs', 'his', 'lawyer', 'to', 'drop', 'his', 'petition', 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'small', 'set', 'of', 'features', 'were', 'identified', 'as', '``', '', \"''\", 'and', 'expected', 'to', 'be', 'removed', 'in', 'a', 'future', 'standard', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'due', 'to', 'the', '', 'circumstances', 'in', 'which', 'modern', 'macedonian', 'literature', 'developed', ',', 'the', 'first', 'macedonian', 'language', 'translations', 'of', 'science', 'fiction', 'novels', 'and', 'the', 'first', 'works', 'of', 'macedonian', 'science', 'fiction', 'authors', 'appeared', 'in', 'the', '1', '9', '5', '0', 's', ',', 'much', 'later', 'than', 'the', 'ones', 'in', '', 'and', '', '.', '']\n", "['', 'mcmahon', 'was', 'confirmed', 'by', 'the', 'united', 'states', 'senate', 'on', 'october', '2', '1', ',', '1', '9', '9', '8', ',', 'and', 'received', 'her', 'commission', 'the', 'next', 'day', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'people', 'come', 'here', 'from', 'distant', 'places', 'to', 'worship', 'the', 'lord', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'believed', 'that', 'reporting', 'it', 'would', 'be', '', ';', 'she', 'had', '', 'with', 'him', 'at', 'the', 'party', ',', 'had', 'left', 'with', 'him', '', ',', 'and', 'he', 'was', 'a', '', 'of', 'the', 'community', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'morale', 'is', 'often', 'highly', 'dependent', 'on', 'soldier', 'effectiveness', ',', 'health', ',', '', ',', 'safety', 'and', '', ',', 'and', 'therefore', 'an', 'army', 'with', 'good', 'supply', 'lines', ',', 'sound', 'air', 'cover', 'and', 'a', 'clear', 'objective', 'will', 'typically', 'possess', ',', 'as', 'a', 'whole', ',', 'better', 'morale', 'than', 'one', 'without', '.', '', '', '']\n", "['', 'she', 'was', 'the', 'only', 'child', 'of', 'farming', 'couple', 'josé', '', 'and', 'maria', 'da', '', '', '', 'de', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'an', '', 'academic', 'administrator', 'serving', 'as', 'the', '1', '7', 'th', 'president', 'of', 'saint', 'michael', \"'s\", 'college', 'in', 'colchester', ',', 'vermont', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '6', ',', 'it', 'had', 'the', 'first', 'graduating', 'class', 'with', '', 'diploma', 'recipients', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', 'regional', 'centre', ',', 'the', 'city', 'of', '', 'provided', 'services', 'far', 'beyond', 'its', 'own', 'population', 'base', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '6', ',', 'by', 'decision', 'of', 'finance', 'minister', '', '', ',', 'the', '', 'national', '', 'de', 'paris', 'merged', 'with', 'the', '', 'nationale', '', 'le', 'commerce', 'et', '', '(', '', ')', 'to', 'create', 'the', '', 'nationale', 'de', 'paris', '(', '', ')', '.', '', '', '', '', '', '']\n", "['', 'for', 'a', 'particularly', 'grave', '', 'uefa', 'has', 'the', 'power', 'to', '', 'a', '', 'ban', 'against', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'november', '2', '0', ',', '2', '0', '1', '7', ',', '', 'and', 'his', '', 'were', 'found', 'guilty', 'of', 'the', '2', '0', '0', '9', 'murder', 'of', 'ricardo', 'johnson', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'arguably', 'the', 'biggest', 'and', 'most', '``', '', \"''\", 'use', 'of', '', 'is', 'in', 'the', 'creation', 'of', '', 'images', 'of', '', 'characters', ',', 'settings', 'and', 'objects', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ms', '``', 'rotterdam', \"''\", 'is', 'a', '``', '', \"''\", '', 'cruise', 'ship', 'under', 'construction', 'for', 'holland', 'america', 'line', '(', 'hal', ')', ',', 'a', 'subsidiary', 'of', '', 'corporation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'two', 'years', 'later', 'and', '', 'has', 'become', 'dolly', 'wilde', ',', 'and', '', 'one', 'music', 'review', 'a', 'day', 'to', 'the', 'disc', '&', 'amp', ';', 'music', 'echo', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'her', 'time', 'in', 'the', 'southwest', ',', 'dox', 'was', 'an', 'early', '', 'of', 'the', 'grand', 'canyon', ',', 'where', 'she', 'was', 'guided', 'by', 'william', 'bass', 'in', '1', '8', '9', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'caused', 'some', '', 'with', 'the', 'crew', 'who', 'had', 'held', 'a', 'naming', 'contest', 'while', 'the', 'icebreaker', 'was', '', 'in', '', 'and', 'chosen', 'the', 'name', '``', '', \"''\", 'after', 'the', '', 'of', 'finland', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '4', '7', '-', '1', '9', '4', '8', ',', '', 'served', 'as', 'the', 'president', 'of', 'the', 'yale', 'club', 'of', 'washington', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'university', 'chamber', 'choir', ',', 'the', '', '', '', ',', 'have', 'been', 'singing', 'in', 'the', 'town', 'since', '1', '9', '5', '0', 'and', 'continue', 'to', 'hold', 'a', 'number', 'of', 'concerts', 'throughout', 'the', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'eastern', 'side', 'of', 'the', 'castle', \"'s\", 'courtyard', 'were', 'the', '', 'of', 'the', 'st.', '', 'church', ',', 'next', 'to', 'which', 'was', 'located', 'a', 'tomb', 'of', 'm.', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'two', 'decide', 'to', 'go', 'to', 'rome', ',', 'since', 'sergio', 'wants', 'to', 'get', 'close', 'to', 'power', 'and', 'aims', 'to', 'reach', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'humans', 'are', 'also', 'among', 'the', 'best', 'long-distance', 'runners', 'in', 'the', 'animal', 'kingdom', ',', 'but', '', 'over', 'short', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'much', 'of', 'the', 'river', 'within', '', 'is', 'part', 'of', 'the', 'three', 'parallel', 'rivers', 'of', '', 'protected', 'areas', ',', 'a', 'world', 'heritage', 'site', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'but', 'as', 'he', 'once', 'said', '``', 'you', 'ca', \"n't\", 'make', 'a', 'living', 'out', 'of', 'the', '', 'if', 'you', 'play', 'it', 'right', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '5', '4', ',', 'she', 'became', 'its', 'editor-in-chief', ',', 'a', 'position', 'never', 'before', 'held', 'by', 'a', 'woman', 'in', 'the', 'world', 'of', 'new', 'york', 'publishing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'platoon', 'and', 'a', 'second', 'platoon', 'did', 'not', 'receive', 'the', 'order', 'to', 'retire', 'and', 'were', 'cut', 'off', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'seth', '', ',', 'matt', '', ',', 'patton', '', ',', 'and', 'judah', '', 'also', 'auditioned', 'for', 'the', 'role', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'turned', 'to', 'his', 'cousin', 'lady', '', 'for', 'advice', 'and', '', ',', 'and', 'she', 'remained', 'a', 'close', 'correspondent', 'until', 'her', 'death', 'at', 'the', 'end', 'of', 'the', 'decade', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', ':', '5', '5', ')', 'is', 'a', 'punjab', 'legislative', 'assembly', 'constituency', 'in', '', '', 'district', ',', 'punjab', 'state', ',', 'india', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'historically', 'the', 'largest', 'entry', 'port', 'for', 'irish', 'immigrants', 'in', 'the', 'us', 'south', ',', 'new', 'orleans', 'has', 'maintained', 'a', 'large', 'population', 'of', 'irish', 'heritage', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'today', ',', 'constitutional', 'patriotism', 'plays', 'a', 'role', 'in', '', 'the', 'current', 'european', 'union', 'from', 'its', 'past', '', 'experiences', 'with', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'characteristic', '``', '', \"''\", 'aroma', 'can', 'be', 'best', 'observed', 'in', 'light', '', ',', 'low', 'alcohol', '', 'such', 'as', '', '', 'which', 'have', 'not', 'had', 'their', '', 'heavily', 'influenced', 'by', 'other', '', 'techniques', 'like', 'oak', 'aging', ',', '', 'with', '', ',', '', '', 'or', 'fortification', '.', '', '', '', '']\n", "['', 'its', 'main', 'towns', 'were', '', ',', '', '', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'the', '', 'of', 'the', 'only', 'state', 'tournament', 'victory', 'in', 'trinity', 'history', ',', 'when', 'they', 'defeated', 'university', 'heights', 'academy', 'in', '2', '0', '0', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mrs', 'blight', 'noted', 'that', 'mrs', 'veitch', 'had', 'tried', 'to', 'make', 'her', 'friend', 'believe', 'that', 'the', 'daughter', 'was', 'in', 'danger', 'from', 'her', 'aunt', 'and', 'might', '', 'her', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'notes', ':', 'there', 'were', 'no', '``', '', \"''\", ',', 'but', 'there', 'were', '4', '8', 'adult', '', 'displaying', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'eastern', 'road', 'nature', 'reserve', ',', 'off', '', 'road', ',', 'is', 'a', 'reserve', 'alongside', 'the', '', 'stream', ',', 'which', 'provides', 'a', 'wetland', 'habitat', 'for', 'birds', ',', 'butterflies', 'and', 'insects', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'religious', '', 'against', '', 'one', \"'s\", '', \"'s\", 'wife', 'has', 'as', 'part', 'of', 'its', 'basis', 'that', '``', 'the', 'wife', 'is', '', 'seen', 'as', 'property', \"''\", ',', 'wrote', 'schmidt', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'played', 'three', 'seasons', 'in', 'major', 'league', 'baseball', 'from', '-', 'for', 'the', 'philadelphia', '', 'and', 'atlanta', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'criticism', 'of', 'marriage', 'is', 'that', 'it', 'gives', 'the', 'state', 'an', '', 'power', 'and', 'control', 'over', 'the', 'private', 'lives', 'of', 'the', 'citizens', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'town', 'was', 'formerly', 'located', 'at', 'the', '', 'point', 'between', 'the', 'cumberland', 'river', 'and', 'the', 'tennessee', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'are', 'a', 'group', 'of', 'small', '', 'birds', ',', 'whose', 'exact', 'position', 'in', 'the', 'bird', 'family', 'tree', 'is', 'unclear', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'yakovlev', 'further', 'claimed', 'that', 'bogdanov', 'discussed', 'the', 'development', 'of', 'the', 'concept', 'of', 'proletarian', 'culture', 'up', 'to', 'the', 'present', 'day', 'and', 'discussed', 'to', 'what', 'extent', 'the', 'communist', 'party', 'saw', '', 'as', 'a', 'rival', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'st.', 'croix', 'is', 'a', 'community', 'in', 'the', 'canadian', 'province', 'of', 'nova', 'scotia', ',', 'located', 'in', '', 'county', ',', 'nova', 'scotia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'countries', 'that', 'have', 'followed', 'the', 'route', 'to', 'gradual', 'civic', 'rights', 'for', '', 'include', 'england', ',', 'ireland', ',', 'australia', 'and', 'new', 'zealand', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'larvae', 'may', 'also', 'develop', 'under', 'dry', 'bark', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', 'played', 'two', 'characters', 'in', 'the', 'uk', 'television', 'series', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'examples', 'of', 'this', 'are', '', ',', '', ',', '', ',', '', 'and', 'arthur', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '3', ',', 'angle', 'was', 'inducted', 'into', 'the', 'tna', 'hall', 'of', 'fame', ':', 'he', 'is', 'the', 'second', 'wrestler', ',', 'after', '', ',', 'to', 'be', 'inducted', 'into', 'both', 'the', 'wwe', 'and', 'tna', 'halls', 'of', 'fame', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'started', 'alongside', 'outside', '', 'ryan', '', 'and', '', 'smith', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'educated', 'at', '', 'high', 'school', 'and', 'graduated', 'from', 'there', 'in', '1', '9', '4', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'we', 'now', 'prove', 'the', 'same', 'theorem', 'formula_', '9', '2', 'in', 'the', '', 'system', 'by', 'jan', '', 'described', 'above', ',', 'which', 'is', 'an', 'example', 'of', 'a', 'classical', '', 'calculus', 'systems', ',', 'or', 'a', '', '', 'system', 'for', '', 'calculus', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'outside', 'its', 'use', 'in', 'official', 'nazi', 'terminology', ',', 'the', 'term', '``', '', \"''\", '(', '``', 'mixed', 'children', \"''\", ')', 'was', 'later', 'used', 'to', 'refer', 'to', 'war', 'babies', 'born', 'to', '', 'soldiers', 'and', 'german', '', 'in', 'the', 'aftermath', 'of', 'world', 'war', 'ii', '.', '', '', '', '', '', '', '', '']\n", "['', 'the', 'aircraft', '', 'rapidly', 'and', '2', '.', '5', 'seconds', 'before', 'first', 'impact', ',', 'the', 'crew', 'moved', 'the', '', 'to', '', '', 'and', 'left', 'them', 'there', ',', 'but', 'this', 'did', 'nothing', 'to', 'save', 'the', 'aircraft', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'orange', '', 'on', 'the', 'crown', 'is', 'usually', 'not', 'visible', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'the', 'european', 'leg', 'of', 'the', 'tour', 'in', 'late', '2', '0', '1', '1', ',', 'the', 'band', 'ran', 'a', 'competition', 'that', 'allowed', 'fans', 'to', 'create', 'original', 'artwork', 'to', 'be', 'featured', 'on', 'the', 'cover', 'art', 'of', '``', 'sounds', 'from', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thomas', 'attended', '', 'university', ',', 'wales', ',', 'where', 'he', 'studied', 'drama', 'from', '1', '9', '9', '8', 'to', '2', '0', '0', '1', 'and', 'received', 'a', 'ba', 'upper', 'second', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'groundwater', '', 'may', 'make', 'it', 'impossible', 'to', 'install', 'or', 'build', 'a', 'shelter', 'below', 'ground', ',', 'elderly', 'or', 'people', 'with', 'limited', 'mobility', 'may', 'be', 'unable', 'to', 'access', 'a', 'below', 'ground', 'shelter', ',', 'or', 'people', 'may', 'have', 'significant', '', 'pertaining', 'to', 'below', 'ground', 'sheltering', '.', '', '', '', '', '', '', '']\n", "['', 'they', 'are', ',', 'in', 'differing', 'traditions', ',', 'of', 'good', 'and', 'evil', 'influence', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'front', 'main', 'entrance', 'has', '', 'columns', 'topped', 'with', 'a', '', '', 'from', 'the', 'front', '', 'building', 'line', ',', 'the', 'roof', 'is', '', 'in', 'black', '', 'norfolk', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'the', 'start', 'of', 'the', '', 'war', ',', '', 'participated', 'in', 'the', '', 'of', 'port', 'arthur', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'josh', '', 'is', 'an', 'american', 'basketball', 'coach', 'who', 'is', 'the', 'current', 'head', 'coach', 'of', 'the', 'indiana', 'state', '', 'men', \"'s\", 'basketball', 'team', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', '', '', 'and', '', '', '', ',', 'he', 'published', 'a', 'catalog', 'involving', 'species', 'of', '', 'and', 'birds', 'kept', 'in', 'the', 'collections', 'at', 'the', 'museum', ',', 'titled', '``', '', '', '', 'de', 'paris', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'visited', 'sites', 'sacred', 'to', 'buddhism', 'in', 'nepal', 'and', 'india', ',', 'and', 'then', 'at', 'the', 'invitation', 'of', 'the', 'king', 'of', '', ',', 'took', 'up', 'residence', 'in', '', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'replaced', 'by', 'john', '', 'for', 'the', 'next', 'album', '``', '', \"''\", '(', '1', '9', '7', '6', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'appeal', 'against', 'reading', 'borough', 'council', \"'s\", 'rejection', 'of', 'the', 'plan', 'was', 'dismissed', 'by', 'the', 'planning', 'inspector', 'in', 'january', '2', '0', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'september', '2', '6', ',', '2', '0', '2', '0', ',', '', 'proposed', 'to', '', 'all', 'route', '9', '7', 'service', 'and', 'replace', 'them', 'with', 'route', '9', '6', 'trips', 'that', 'will', 'operate', 'the', 'full', 'route', 'between', '', 'station', 'and', 'capitol', 'heights', 'station', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'the', 'seven', 'months', 'following', 'her', 'arrival', 'in', '', ',', 'she', 'engaged', 'in', '', 'patrols', 'off', 'the', 'australian', 'coast', 'before', 'being', '', 'at', 'sydney', 'in', 'october', '1', '9', '4', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'most', 'of', 'the', '', 'is', 'part', 'of', 'the', '', 'zone', 'of', 'this', '', ',', 'that', 'also', '', 'the', '', 'further', 'east', 'and', '', 'rocks', 'of', 'cornwall', '(', 'southwestern', 'england', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '1', '9', '5', '7', 'national', 'government', 'defence', 'review', 'directed', 'the', '', 'of', 'coastal', 'defence', 'training', ',', 'and', 'the', 'approximately', '1', '0', '0', '0', 'personnel', 'of', 'the', '9', 'th', ',', '1', '0', 'th', ',', 'and', '1', '1', 'th', 'coastal', 'regiments', 'had', 'their', 'compulsory', 'military', 'training', '', 'removed', '.', '', '']\n", "['', 'because', 'it', 'forms', 'dense', 'schools', 'and', 'lives', 'in', '', 'waters', ',', 'the', 'mediterranean', 'horse', '', 'is', 'the', 'more', 'commonly', 'caught', 'species', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'well', 'worth', 'noting', 'that', 'generally', 'speaking', ',', 'most', 'commanders', 'do', 'not', 'look', 'at', 'the', 'morale', 'of', 'specific', 'individuals', 'but', 'rather', 'the', '``', 'fighting', 'spirit', \"''\", 'of', '', ',', 'divisions', ',', 'battalions', ',', 'ships', ',', 'etc', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'owns', 'an', 'indie', 'record', 'label', 'called', '', 'music', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'their', 'sixth', 'championship', 'title', 'overall', 'and', 'their', 'second', 'title', 'in', 'succession', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '3', '4', '4', 'th', 'bombardment', 'group', 'arrived', 'at', '', '', 'in', 'late', 'december', '1', '9', '4', '2', 'and', 'was', 'assigned', 'by', 'iii', 'bomber', 'command', 'to', 'be', 'an', 'operational', 'training', 'unit', 'for', 'the', '', '2', '6', '', 'school', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'clinton', 'county', 'is', 'a', 'county', 'in', 'the', '', 'corner', 'of', 'the', 'state', 'of', 'new', 'york', ',', 'in', 'the', 'united', 'states', 'and', 'bordered', 'by', 'the', 'canada', 'province', 'of', 'quebec', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', 'to', 'providing', 'access', 'to', 'equipment', 'and', '', 'for', 'and', 'by', 'indigenous', 'media', '', ',', 'including', '', 'by', 'indigenous', 'filmmakers', 'such', 'as', '', '', 'and', '', 'todd', ',', 'imag', 'held', 'the', 'annual', '', '', 'film', 'and', 'video', 'festival', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ralph', 'imposed', '', 'in', 'his', 'diocese', 'to', 'secure', 'the', 'completion', 'of', '', 'cathedral', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'ride', 'the', 'basket', 'at', 'sea', 'and', 'eat', 'the', 'contents', ',', '', 'that', 'they', 'are', 'being', 'spotted', 'by', 'an', 'octopus', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'roy', 'johnson', 'batted', '', 'and', 'threw', '', ';', 'he', 'stood', 'tall', 'and', 'weighed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'june', '2', '0', '1', '3', ',', 'national', 'team', 'coach', '', '', 'confirmed', '', 'as', 'a', 'member', 'of', 'his', '2', '3', '', 'squad', 'for', 'the', 'uefa', 'women', \"'s\", '', '2', '0', '1', '3', 'finals', 'in', 'sweden', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'though', 'they', 'all', 'look', 'quite', 'similar', 'in', '', ',', 'there', 'are', 'few', '', 'characters', 'that', 'can', 'be', 'easily', 'used', 'to', 'recognize', 'adult', 'members', 'of', 'this', 'tribe', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'once', 'married', ',', 'although', 'granddaughter', '', 'of', '', 'was', 'grown', ',', 'it', 'was', 'decided', 'they', 'would', 'continue', 'working', 'for', 'her', 'and', 'the', 'king', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '9', '9', '5', '-', '2', '0', '0', '4', 'he', 'served', 'as', 'executive', 'producer', 'of', 'the', 'live', 'radio', 'broadcast', 'for', 'the', 'new', 'england', 'patriots', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'wagon', ',', 'first', 'introduced', 'in', 'this', 'game', ',', 'allows', 'the', 'player', 'to', 'choose', 'which', 'characters', 'are', 'used', 'in', 'battle', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'received', 'the', '', '', 'memorial', 'fund', 'award', 'in', '1', '9', '9', '3', 'for', 'academic', 'excellence', 'and', 'the', '', 'trust', 'award', 'of', 'the', 'indian', '', 'society', 'in', '1', '9', '9', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '(', '2', '0', '1', '3', ')', 'the', 'song', 'was', 'released', 'as', 'the', 'album', \"'s\", 'first', 'promotional', 'single', 'on', 'august', '1', ',', '2', '0', '1', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'attended', '', 'public', 'school', ',', '', 'and', 'subsequently', 'studied', 'at', 'the', '', 'school', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'a', \"''\", 'can', 'represent', 'either', 'short', 'or', 'long', ',', '``', 'e', \"''\", 'represents', 'either', 'or', ',', 'etc', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', 'mid-', '2', '0', '1', '3', ',', 'less', 'than', '5', 'per', '', 'of', '', 'customers', 'travelled', 'on', 'single', 'journey', 'tickets', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'for', 'various', 'reasons', ',', 'historical', 'and', 'cultural', ',', 'they', 'did', 'not', 'have', 'what', 'he', 'termed', '``', 'social', 'capital', \"''\", ',', 'the', 'habits', ',', 'norms', ',', 'attitudes', ',', 'and', 'networks', 'to', '', 'people', 'to', 'work', 'for', 'the', 'common', 'good', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'dairy', 'farm', 'products', 'company', 'opened', 'its', 'plant', 'in', 'the', 'building', 'on', 'october', '1', '7', ',', '1', '9', '1', '2', ',', 'manufacturing', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', 'several', 'commercial', 'areas', ',', 'with', 'the', 'most', 'prominent', 'being', 'the', 'village', 'at', '', ',', 'located', 'at', 'the', 'summit', 'of', 'the', 'mountain', '(', 'rather', 'than', 'at', 'its', 'base', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'four', 'hours', 'of', '', ',', 'the', 'remains', 'were', 'taken', 'to', 'the', '', 'of', 'the', 'institute', 'of', '', 'services', 'for', 'the', 'purpose', 'of', 'law', 'that', 'an', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'six', 'of', 'his', 'albums', 'have', 'since', 'reached', 'the', '``', 'top', '1', '0', '``', 'on', 'the', '``', 'billboard', \"''\", '2', '0', '0', ',', 'and', 'a', '', '8', ',', 'have', 'topped', 'the', 'classical', 'albums', 'charts', 'in', 'the', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'apart', 'from', 'tourism', ',', 'lubmin', 'is', 'a', 'major', 'transport', 'and', 'industry', 'hub', 'and', 'investment', 'location', 'in', 'the', 'german', 'energy', 'sector', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'lies', 'approximately', 'south', 'of', '', 'and', 'north', 'of', 'warsaw', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'ran', 'in', 'the', 'democratic', 'congressional', 'primary', 'in', '2', '0', '1', '6', 'and', 'then', 'for', 'an', 'iowa', 'state', 'house', 'seat', 'in', 'the', '2', '0', '1', '6', 'election', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'courthouse', 'building', 'was', 'built', 'in', 'downtown', '', 'in', '1', '8', '8', '8', 'to', '', '', \"'s\", 'original', '', 'courthouse', ',', 'which', 'still', 'stands', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'oil', 'was', 'sold', 'in', 'singapore', 'in', 'great', 'quantities', ',', '', 'profits', 'of', '2', '0', '0', 'to', '3', '0', '0', '%', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'leafie', 'witnesses', 'the', 'battle', 'and', 'wanderer', 'is', 'killed', 'by', '', ',', 'leaving', 'leafie', 'completely', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'racial', 'makeup', 'of', 'the', 'city', 'was', '8', '1', '.', '9', '%', 'white', ',', '1', '.', '3', '%', 'native', 'american', ',', '1', '.', '5', '%', 'asian', ',', '1', '1', '.', '8', '%', 'from', 'other', 'races', ',', 'and', '3', '.', '5', '%', 'from', 'two', 'or', 'more', 'races', '.', '', '', '']\n", "['', 'are', 'commonly', 'found', 'in', 'both', '', '', 'and', 'buddhist', '', 'and', 'are', 'considered', 'to', 'be', '', 'with', 'the', 'power', 'of', 'the', 'deities', '(', ')', 'or', 'buddhist', 'figures', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'locations', 'were', 'allegedly', 'revealed', 'to', 'a', 'man', 'named', '', '', 'by', 'the', '``', '', '', \"''\", 'or', 'the', '``', 'holy', 'voices', \"''\", ',', 'which', 'also', 'gave', 'the', 'names', 'to', 'these', 'places', 'way', 'back', 'during', 'the', 'spanish', 'colonial', '', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'one', 'of', 'the', 'two', 'major', 'contemporary', 'political', 'parties', 'in', 'croatia', ',', 'along', 'with', 'the', '', 'social', 'democratic', 'party', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'over', 'the', '', 'of', 'parr', ',', 'who', 'wanted', 'a', 'family', 'friend', 'of', 'one', 'of', 'his', '', 'appointed', 'as', 'district', 'attorney', '', 'appointed', 'one', 'who', 'implemented', 'a', '', 'on', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '6', '9', 'th', 'american', 'cinema', 'editors', 'eddie', 'awards', 'were', 'presented', 'on', 'february', '1', ',', '2', '0', '1', '9', 'at', 'the', 'beverly', 'hilton', 'hotel', ',', '', 'the', 'best', 'editors', 'in', 'films', 'and', 'television', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'portrait', 'of', 'washington', 'is', 'influenced', 'by', 'gilbert', 'stuart', \"'s\", '', 'portrait', ',', 'and', 'the', 'portrait', 'of', 'webster', 'is', 'based', 'on', 'one', 'by', 'albert', '', '', 'that', 'originally', '', 'in', 'the', '', 'house', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'national', 'ffa', 'president', ',', '', 'presided', 'over', 'the', '', 'of', 'the', 'ffa', 'and', 'the', 'new', 'farmers', 'of', 'america', '(', '', ')', ',', 'a', 'parallel', 'youth', 'organization', 'for', 'african', 'americans', 'in', 'states', 'that', 'had', 'previously', 'practiced', 'racial', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'and', 'received', 'a', 'personal', 'hearing', 'at', 'the', 'aaa', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', ',', 'she', 'performed', 'a', '', 'off-broadway', 'show', 'while', 'living', 'in', 'new', 'york', 'city', 'in', 'the', 'early', '1', '9', '9', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'is', 'a', '', '', '', 'that', '', 'signs', 'of', '', 'through', 'eye', 'and', 'head', 'motion', 'to', '', 'users', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'governments', 'of', 'the', 'regions', 'are', 'responsible', 'policy', 'and', 'regulation', 'related', 'to', 'water', 'supply', 'and', '', ',', 'and', 'for', 'environmental', 'policy', 'more', 'generally', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'river', 'wharf', 'was', 'the', 'terminus', 'of', 'the', 'northern', 'line', 'until', 'the', 'first', '', 'river', 'railway', 'bridge', 'opened', 'in', '1', '8', '8', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'henry', '', ',', 'president', 'of', 'the', '', ',', 'has', 'been', 'appointed', 'president', 'of', 'the', 'new', 'establishment', ',', 'and', 'pierre', '', ',', 'ceo', 'of', '', ',', 'becomes', 'ceo', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', '', 'can', 'be', 'identified', 'by', 'their', 'roof', 'sign', 'and', 'can', 'be', 'found', 'in', 'cities', 'like', '', ',', '', ',', '', 'or', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'adjacent', 'grounds', 'were', 'used', 'as', 'fields', 'for', '', 'youth', 'soccer', 'programs', 'until', 'their', 'sale', 'to', 'developers', 'in', '1', '9', '9', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'made', 'her', 'singing', 'debut', 'in', 'bari', 'in', '1', '9', '8', '1', 'performing', 'in', '', 'by', '', 'and', '', 'with', 'the', 'orchestra', '', 'della', '', 'di', 'bari', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'but', ',', 'if', 'alice', 'knows', 'bob', \"'s\", '', ',', 'she', 'can', '', 'to', 'a', 'strategy', 'that', '', 'bob', 'win', 'in', 'the', 'first', 'round', 'so', 'that', 'in', 'the', 'second', 'round', 'she', 'can', 'win', 'for', 'a', 'price', 'slightly', 'above', '0', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'his', 'party', \"'s\", 'first', 'representative', 'from', 'palestine', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'age', 'of', '3', '8', ',', '', 'was', 'the', 'youngest', 'of', 'the', 'early', 'supreme', 'court', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'this', 'point', ',', 'the', 'road', 'continues', 'east', 'as', 'part', 'of', 'ky', '3', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '3', ',', 'a', 'woman', 'and', 'her', 'two', 'daughters', 'were', 'murdered', 'by', '1', '0', 'male', 'relatives', ',', 'who', '', 'and', 'beat', 'them', ',', 'and', 'then', 'threw', 'their', 'bodies', 'in', 'the', 'nile', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'part', 'of', 'the', 'bailiwick', 'of', 'guernsey', ',', 'sark', 'is', '', 'separate', 'from', 'the', 'rest', 'of', 'the', 'bailiwick', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'williams', \"'\", 'trademark', 'instrument', 'is', 'the', '', 'and', 'other', '', 'by', 'music', 'man', ',', '', 'with', '', '(', '.', '0', '4', '5', ',', '.', '0', '6', '5', ',', '.', '0', '8', '5', ',', '.', '1', '0', '5', ')', '', 'in', 'the', 'studio', 'and', '', '', 'in', 'concert', '.', '', '']\n", "['', '', 'is', 'a', '', 'social', 'networking', 'website', ',', 'mainly', 'popular', 'in', 'iran', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'about', 'this', 'time', ',', 'mr', '', 'of', '', 'hall', 'purchased', 'a', 'cottage', 'in', 'tollesbury', 'and', 'fitted', 'it', 'up', 'for', 'worship', ',', 'which', 'was', 'served', 'regularly', 'by', 'william', 'merchant', 'of', 'layer', '', 'and', 'mr.', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'same', 'time', ',', 'the', 'capital', 'was', 'moved', 'to', 'the', 'castle', 'of', 'saint', 'george', ',', 'a', 'more', '', 'site', 'in', 'the', 'island', \"'s\", 'interior', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'modern', 'globe', 'theatre', 'is', 'an', 'academic', '', 'based', 'on', 'available', 'evidence', 'of', 'the', '1', '5', '9', '9', 'and', '1', '6', '1', '4', 'buildings', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'before', '1', '9', '4', '9', ',', 'most', 'chinese', 'films', 'were', 'produced', 'in', 'shanghai', ',', 'which', 'equipped', 'shanghai', 'with', 'abundant', 'experience', ',', '', 'and', 'physical', 'solutions', 'in', 'film', 'production', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'species', 'of', '', 'tropical', 'land', 'snails', ',', 'terrestrial', '', 'gastropod', 'mollusks', 'in', 'the', 'family', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'racial', 'makeup', 'of', 'the', 'town', 'was', '9', '7', '.', '5', '7', '%', 'white', ',', '0', '.', '1', '9', '%', 'native', 'american', ',', '1', '.', '6', '9', '%', 'from', 'other', 'races', ',', 'and', '0', '.', '5', '6', '%', 'from', 'two', 'or', 'more', 'races', '.', '', '', '', '', '', '']\n", "['', 'yap', 'also', 'signed', '', 'with', 'washington', 'department', 'of', 'ecology', 'director', '', '', 'on', '', 'carbon', 'emissions', 'from', 'government', 'operations', 'and', 'promoting', 'awareness', 'of', 'the', 'impacts', 'of', 'sea', 'level', 'rise', 'on', 'coastal', 'areas', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'known', 'as', 'the', 'location', 'of', 'song', '', 'lake', 'and', '', 'lake', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '7', 'they', '', 'the', '2', '0', '1', '7', 'nba', 'all', 'star', 'game', '', '', 'and', 'performed', 'a', 'musical', 'show', 'with', 'various', 'guests', 'titled', '``', 'the', 'evolution', 'of', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'refers', 'to', '``', 'the', 'ray', 'of', 'light', '(', 'behind', ')', 'a', 'man', \"'s\", 'shadow', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', '1', '8', '3', '2', ',', 'lewis', '', 'began', 'building', 'boats', 'for', 'the', 'lehigh', 'coal', 'and', 'navigation', 'company', 'and', 'the', 'morris', 'canal', '&', 'amp', ';', 'banking', 'company', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'mount', '', 'covered', 'bridge', 'is', 'located', 'in', 'a', 'rural', 'area', 'of', 'eastern', '', 'and', 'southwestern', 'lancaster', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'two', 'days', 'later', 'the', 'third', 'and', 'final', '', 'image', 'was', 'released', ',', 'showing', 'the', 'singer', 'in', 'a', 'red', '', 'set', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'valves', 'themselves', 'had', 'shorter', ',', '5', '/', '1', '6', '``', 'diameter', 'stems', ',', 'to', 'allow', 'for', 'the', 'more', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'maximum', 'boat', 'size', 'imposed', 'by', 'the', '', 'proved', 'insufficient', ',', 'and', 'a', 'proposed', '', 'to', 'the', 'larger', '', 'gauge', 'was', 'never', 'realized', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', '', 'association', 'football', 'club', 'based', 'in', '', ',', 'located', 'in', 'the', '', 'district', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'home', '', 'in', 'baltimore', ',', 'maryland', ',', 'different', 'sources', 'report', 'her', 'as', 'armed', 'either', 'with', 'six', '1', '2', '', '', ',', 'or', 'six', '', 'cannon', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'if', 'each', 'item', 'is', 'sold', 'in', 'isolation', ',', 'there', 'is', 'a', '', '', 'in', 'which', 'alice', 'bids', 'slightly', 'above', '4', 'and', 'wins', ',', 'and', 'her', 'net', '', 'is', 'slightly', 'below', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'statue', 'is', 'a', 'work', 'of', 'the', '', '(', '1', '9', '0', '6', '-', '1', '9', '8', '3', ')', 'and', 'it', 'was', 'inaugurated', 'on', '1', '9', 'january', '1', '9', '6', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'nomura', 'has', 'stated', 'that', 'unlike', 'working', 'with', '``', 'final', 'fantasy', \"''\", 'characters', ',', 'keeping', 'the', 'main', 'character', '', 'alive', 'and', 'interesting', 'over', 'multiple', 'games', 'is', 'a', 'challenge', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'central', 'point', 'was', 'generally', 'referred', 'to', 'as', '``', '', \"''\", ',', 'from', 'the', 'name', 'of', 'the', 'instrument', 'used', 'by', 'the', '``', '', \"''\", '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'dependent', 'on', 'the', '', 'of', 'the', 'surface', 'or', 'the', 'quality', 'of', 'the', 'grass', 'and', 'how', 'well', 'the', 'player', 'lands', 'will', 'impact', 'on', 'the', 'injury', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'beast', 'is', 'the', 'b', '2', 'st', '(', 'beast', 'is', 'the', 'best', ')', 'is', 'the', 'debut', '', 'played', 'by', 'south', 'korean', 'boy', 'band', 'beast', ',', 'and', 'was', 'released', 'by', '', 'entertainment', 'on', 'october', '1', '4', ',', '2', '0', '0', '9', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '2', ',', 'aged', '1', '8', ',', 'he', 'began', 'attending', 'the', 'royal', 'academy', 'of', 'dramatic', 'art', '(', '', ')', 'in', 'london', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'working', 'as', 'a', 'landscape', 'painter', 'in', 'several', 'countries', ';', 'including', 'italy', ',', 'where', 'he', 'probably', 'lived', 'in', 'rome', 'from', '1', '7', '8', '0', 'to', '1', '7', '8', '5', ',', 'he', 'returned', 'to', 'france', ',', 'but', 'was', 'there', 'for', 'only', 'a', 'short', 'time', 'before', 'the', 'outbreak', 'of', 'the', 'revolution', '.']\n", "['', '', '', 'is', 'a', 'moth', 'of', 'the', 'subfamily', '', 'first', 'described', 'by', 'félix', '', '', 'in', '1', '8', '3', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'then', 'followed', 'this', 'success', 'by', 'winning', 'a', 'silver', 'medal', 'at', 'the', '2', '0', '1', '1', 'giant', 'slalom', 'world', 'cup', 'the', 'next', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'networks', 'spans', 'northeast', 'and', '', 'mexico', ',', 'along', 'with', 'the', 'southwestern', 'united', 'states', 'through', '', '', ',', 'but', 'is', 'also', 'available', 'nationally', 'in', 'both', 'countries', 'via', 'cable', ',', 'satellite', 'and', '', 'services', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'chinese', 'indonesian', 'community', 'in', '', '', 'municipality', 'in', 'north', '', 'has', 'protested', 'against', 'the', 'administration', \"'s\", 'plan', 'to', '', 'a', 'statue', 'of', 'buddha', 'on', 'top', 'of', 'the', '', '', 'temple', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'others', 'serve', 'as', 'missionaries', 'to', 'different', 'mission', 'countries', ',', 'while', 'many', 'who', 'have', 'chosen', 'the', 'lay', 'state', 'have', 'made', 'their', 'marks', 'in', 'the', 'field', 'of', 'politics', ',', 'the', '', ',', 'music', 'and', 'arts', ',', 'medicine', ',', 'and', 'the', 'private', 'and', 'public', 'sectors', '.', '', '', '', '', '', '', '']\n", "['', 'many', 'current', 'paths', ',', 'rather', 'than', 'a', 'single', '', ',', 'are', 'possibly', 'involved', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', ',', 'with', 'a', 'reference', 'to', 'the', 'berlin', 'wall', ',', 'when', 'the', 'opponents', 'formed', 'a', 'wall', 'during', 'free', '', 'in', '1', '9', '8', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'locally', '(', 'and', 'internationally', ')', 'popular', 'social', 'networking', 'website', '', 'was', 'blocked', 'by', 'the', 'iranian', 'government', ',', 'a', 'series', 'of', 'local', 'sites', 'and', 'networks', ',', 'including', '', ',', 'emerged', 'to', '', 'the', 'gap', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'january', ',', '1', '9', '7', '0', ',', 'he', 'moved', 'to', 'the', 'office', 'of', 'navy', '', 'as', 'assistant', '', 'for', 'cost', 'review', 'and', 'reporting', ',', 'and', 'as', 'a', 'special', 'assistant', 'to', 'the', 'assistant', 'secretary', 'of', 'the', 'navy', 'for', 'financial', 'management', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '8', '6', 'when', 'the', 'archdiocese', 'of', '', 'was', 'established', 'and', 'this', 'church', 'became', 'the', 'cathedral', 'church', 'of', 'the', 'archdiocese', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'film', 'stars', '', '', ',', '', '', 'and', '', '', 'as', 'the', 'ghost', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'an', 'expensive', 'operation', ',', 'but', 'the', 'costs', 'were', '', 'within', 'a', 'few', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'morgan', 'had', 'the', 'support', 'of', '', 'and', 'green', '(', 'though', 'green', \"'s\", 'endorsement', 'did', 'not', 'come', 'until', 'the', 'final', 'week', 'of', 'the', 'campaign', ')', ',', 'and', 'duncan', 'had', 'the', 'endorsement', 'of', 'most', 'of', 'the', 'party', 'organization', 'and', 'the', 'major', 'newspapers', 'in', 'the', 'state', '.', '', '', '', '', '', '']\n", "['', 'in', 'return', ',', 'they', 'were', 'granted', 'periodical', 'shipments', 'of', 'cattle', 'and', 'food', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'alameda', 'island', 'is', 'an', 'island', 'located', 'in', 'the', 'san', 'francisco', 'bay', 'in', 'california', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'aftermath', 'of', 'italy', \"'s\", 'republican', 'referendum', 'after', 'world', 'war', 'ii', ',', 'efforts', 'to', '', 'former', 'officials', 'in', 'the', '', 'government', 'for', '', 'and', 'war', 'crimes', 'resulted', 'in', 'the', 'legal', 'differentiation', 'between', 'the', 'concepts', 'of', 'normal', 'brutality', ',', 'cruel', 'brutality', ',', 'and', '``', 'particularly', 'cruel', 'brutality', \"''\", '.', '']\n", "['', 'he', 'watched', 'it', 'about', 'half', 'a', 'year', 'before', 'filming', '``', '', '&', 'amp', ';', '', \"''\", ',', 'and', 'it', 'also', 'inspired', '``', 'the', '', 'of', 'the', 'characters', \"''\", 'in', '``', '', '&', 'amp', ';', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '3', 'middle', 'school', 'is', 'located', 'on', '', 'road', 'in', '', 'district', 'of', 'tianjin', ',', 'china', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'players', 'that', 'have', 'suffered', 'two', 'or', 'more', 'concussions', 'were', 'slightly', 'younger', 'at', '1', '9', '.', '1', 'years', 'of', 'age', ',', 'and', 'had', 'some', 'more', 'experience', 'at', '9', '.', '1', 'years', 'of', 'participation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '6', ',', 'robbins', 'founded', '', 'inc.', ',', 'a', 'brain', 'trust', 'that', 'offers', 'law', 'enforcement', 'officials', 'and', '', 'as', 'subject', 'matter', 'experts', 'on', 'current', '', ',', 'theft', ',', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', 'born', 'july', '7', ',', '1', '9', '6', '3', 'in', '', ')', 'is', 'a', 'german', 'politician', 'for', 'the', '', 'in', 'lower', 'saxony', 'who', 'switched', 'parties', 'from', 'the', 'alliance', \"'\", '9', '0', '', 'greens', 'in', '2', '0', '1', '7', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'men', \"'s\", '4', '0', '0', '', 'individual', 'medley', 'event', 'at', 'the', '1', '9', '7', '2', 'summer', 'olympics', 'took', 'place', 'august', '3', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'richard', 'is', 'very', 'childish', 'and', 'has', 'been', 'seen', '', 'childish', '', 'in', 'several', 'episodes', ',', 'which', 'include', 'believing', 'in', '', ',', 'joining', 'in', 'some', 'of', '', \"'s\", '', ',', 'believing', 'in', 'santa', '', ',', 'and', 'many', 'others', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'process', 'of', '', 'in', 'insects', 'begins', 'with', 'the', 'separation', 'of', 'the', '', 'from', 'the', 'underlying', '', 'cells', '(', '', ')', 'and', 'ends', 'with', 'the', '', 'of', 'the', 'old', '', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'between', 'april', 'and', 'may', '2', '0', '1', '1', ',', 'the', 'group', 'completed', 'a', 'second', 'european', 'tour', ',', 'the', '``', '', 'in', 'life', 'tour', \"''\", ',', 'for', 'the', 'promotion', 'of', 'their', 'debut', 'album', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'andrew', '', 'ii', '(', 'born', '1', '7', 'july', '1', '9', '8', '8', ')', ',', 'popularly', 'as', '', '', ',', 'is', 'a', 'south', 'african', 'actor', 'and', 'producer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'april', '2', '0', '0', '9', ',', 'black', 'starred', 'in', 'an', 'episode', 'of', '``', '', '', '', '!', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'following', 'day', ',', '', 'announced', 'they', 'and', '', 'had', 'agreed', 'to', 'a', 'mutual', '', 'of', 'his', 'contract', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'february', '7', ',', '2', '0', '1', '1', 'yap', 'and', '', 'gas', 'provided', '$', '6', '.', '9', 'million', 'for', '3', '5', 'energy', 'projects', 'in', 'ten', 'school', 'districts', 'to', 'help', 'reduce', 'greenhouse', 'gas', 'emissions', ',', 'energy', 'consumption', 'and', 'costs', 'through', 'british', 'columbia', \"'s\", 'energy', 'conservation', 'agreement', 'fund', '.', '', '', '']\n", "['', 'the', 'fourth', 'model', 'of', '', 'appears', 'for', 'the', 'first', 'time', 'in', 'the', 'revived', 'series', 'in', 'the', '2', '0', '1', '1', 'episode', '``', 'closing', 'time', \"''\", ',', 'where', 'it', 'is', 'shown', 'to', 'have', 'an', 'organic', 'mouth', 'full', 'of', 'sharp', 'teeth', ',', 'and', '', 'power', 'to', 'a', 'crashed', '', '.', '', '']\n", "['', 'the', 'day', 'after', 'he', 'returned', ',', 'he', 'shot', 'down', 'two', 'british', 'planes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'peptides', 'are', 'derived', 'from', '', 'or', '', 'proteins', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'house', 'has', 'been', 'incorporated', 'into', 'the', 'manx', 'national', 'heritage', 'folk', 'museum', 'at', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'facilities', 'included', 'a', '', 'house', ',', 'a', '6', '', '', ',', 'a', 'coal', '', 'and', 'a', 'u.s.', 'customs', '', 'warehouse', ',', 'for', 'the', 'care', 'of', 'imported', 'goods', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '7', ',', 'he', 'followed', '', 'at', '', 'and', 'both', 'formed', 'a', 'group', 'in', 'the', 'faculty', 'of', 'medicine', 'at', 'university', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'also', 'set', '', \"'s\", '', 'record', 'with', '1', '2', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'instead', 'they', 'are', 'officially', 'called', 'fourth', 'class', ',', 'third', 'class', ',', 'second', 'class', ',', 'and', 'first', 'class', 'cadets', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'within', 'a', 'decade', ',', 'the', 'crown', '', 'the', 'territory', 'formally', 'back', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'review', 'was', 'intended', 'to', 'guide', 'tax', 'system', 'reforms', 'over', 'the', 'next', '1', '0', 'to', '2', '0', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'sometimes', 'referred', 'to', 'as', '``', '', 'trading', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'each', 'satellite', 'used', 'by', 'the', 'receiver', ',', 'the', 'receiver', 'must', 'first', 'acquire', 'the', 'signal', 'and', 'then', 'track', 'it', 'as', 'long', 'as', 'that', 'satellite', 'is', 'in', 'use', ';', 'both', 'are', 'performed', 'in', 'the', 'digital', 'domain', 'in', 'by', 'far', 'most', '(', 'if', 'not', 'all', ')', '', '.', '', '', '', '']\n", "['', '', \"'s\", 'work', 'has', 'been', 'featured', 'in', 'several', 'sets', 'of', '', 'royal', 'mail', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'released', 'from', 'the', 'organization', 'on', 'june', '6', ',', '2', '0', '1', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '``', '', 'reserve', \"''\", '(', 'parallel', 'to', '', 'reserve', ')', '(', 'with', 's.', '', ')', 'of', 'older', 'people', 'which', 'is', 'based', 'on', 'life', 'and', 'learning', 'history', 'resources', 'and', 'is', 'assumed', 'to', 'temporarily', '', 'for', 'a', '', 'reduction', 'in', 'intelligence', 'and', 'general', 'abilities', '.', '', '', '', '', '', '']\n", "['', 'he', 'received', '3', '2', ',', '6', '3', '5', 'votes', 'and', 'defeated', '', '', '', ',', 'a', 'candidate', 'of', 'pakistan', 'peoples', 'party', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'rural', 'locality', 'in', 'the', 'southern', 'downs', 'region', ',', 'queensland', ',', 'australia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'no', 'intellectual', 'will', 'want', 'to', 'waste', 'his', 'time', 'in', 'a', '', 'environment', 'as', 'it', 'presently', 'stands', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'main', 'and', 'the', 'only', '', 'islands', 'of', 'the', 'archipelago', 'are', '', ',', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'returned', 'to', 'competition', 'at', 'the', '', ',', 'utah', 'state', '', 'where', 'she', 'competed', 'on', 'both', 'bars', 'and', 'floor', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'last', 'years', 'of', 'the', 'ming', ',', 'today', \"'s\", 'hubei', 'was', '', 'several', 'times', 'by', 'the', 'rebel', 'armies', 'of', 'zhang', '', 'and', 'li', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'hard', 'for', 'the', 'club', 'to', 'qualify', 'from', 'the', 'first', 'rounds', 'of', 'the', 'soviet', 'cup', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'supposedly', ',', 'he', 'paid', '$', '2', '5', '0', 'for', 'the', 'horse', 'but', 'he', 'was', 'just', '``', 'too', 'much', 'horse', \"''\", 'for', 'his', 'show', \"'s\", 'riders', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'sent', 'an', '', 'request', 'to', 'belgrade', 'for', '', ',', 'arms', ',', 'and', 'equipment', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'made', 'it', 'the', 'only', '', 'cpu', 'on', 'socket', '7', 'to', 'support', '3', '', '!', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'invited', 'by', 'walter', '', ',', 'he', 'was', 'the', '1', '9', 'th', 'composer', 'to', 'be', 'featured', 'in', 'the', 'annual', '', 'of', 'the', '', '', 'festival', 'in', '2', '0', '0', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'survival', 'of', 'the', 'names', 'of', 'the', 'largest', 'rivers', 'from', 'antiquity', 'is', 'often', 'cited', 'as', 'an', 'evidence', 'for', 'the', 'continuity', 'theory', ',', 'although', 'some', '', 'who', 'support', 'it', 'note', 'that', 'a', '', 'population', 'transmitted', 'them', 'to', 'modern', 'romanians', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', '2', 'january', '1', '6', '1', '9', 'he', 'was', 'knighted', 'at', '', ',', 'and', 'in', 'november', 'of', 'the', 'same', 'year', 'married', 'elizabeth', ',', 'daughter', 'of', 'sir', 'nicholas', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '1', '6', ',', 'the', 'building', 'was', 'sold', 'to', 'william', 'wrigley', 'jr.', 'for', 'approximately', '$', '1', '2', '5', ',', '0', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'stafford', 'also', 'stated', 'she', 'had', 'some', 'ideas', 'for', 'a', 'recast', ',', 'but', 'would', 'not', 'detail', 'the', '', 'of', 'those', 'ideas', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'is', 'a', '', 'by', '', '', 'launched', 'in', '1', '9', '8', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'outside', 'of', 'canada', ',', 'pérez', 'is', 'best', 'known', 'for', 'his', 'touring', 'and', 'recording', 'with', 'ricardo', '', \"'s\", '', '', ',', 'where', 'he', 'plays', '', ',', 'sometimes', 'piano', ',', 'and', 'sings', 'some', 'vocals', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'sex', 'is', 'one', 'of', 'the', 'prohibited', 'grounds', 'under', 'the', 'act', ',', 'meaning', 'that', 'discrimination', 'on', 'this', 'basis', 'is', 'prohibited', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'school', 'has', 'since', 'changed', 'status', 'to', 'an', 'academy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'throughout', 'this', 'time', ',', 'continuous', 'pressure', 'was', 'maintained', 'by', 'relevant', 'committees', ',', 'for', 'example', 'the', 'technical', 'committee', 'on', 'agricultural', 'chemicals', '(', '', ')', ',', 'to', 'reduce', 'approved', '', 'use', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'genus', 'of', '', 'gastropod', 'mollusks', 'or', '', 'in', 'the', 'tribe', '', 'within', 'the', 'family', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'lords', 'of', '', 'became', 'protestants', 'around', '1', '5', '3', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', '2', '0', '0', '6', 'solo', '', 'debut', 'at', '', \"'s\", 'at', 'the', '', 'received', '', 'reviews', 'from', 'new', 'york', 'times', 'and', 'variety', 'as', 'well', 'as', 'the', '', 'award', 'for', 'best', 'debut', 'concert', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '4', ',', 'the', 'estimated', 'impact', 'of', 'that', 'year', \"'s\", 'convention', 'was', '$', '1', '7', '7', '.', '8', 'million', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', '1', '9', '1', '3', 'a', '', 'kitchen', 'had', 'been', 'established', 'to', 'provide', 'meals', 'for', 'older', 'inmates', 'and', 'in', '1', '9', '1', '8', 'hot', 'meals', 'were', 'also', 'being', 'supplied', 'for', 'school', 'children', '(', ';', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', '1', '9', '8', '1', \"'s\", '``', 'the', 'visitors', \"''\", ',', '', '', 'and', '', '', 'took', 'some', 'time', 'off', 'to', 'write', 'new', 'material', ',', 'yet', 'at', 'the', 'same', 'time', ',', 'they', 'were', 'beginning', 'to', 'create', 'their', 'first', 'musical', ',', '``', '', \"''\", ',', 'alongside', 'tim', 'rice', '.', '', '']\n", "['', 'kids', 'station', 'hd', '(', 'japanese', ':', 'hd', ',', '``', '', '', 'hd', \"''\", ')', ',', 'an', 'hd', 'version', 'of', 'this', 'channel', ',', 'was', 'first', 'established', 'on', 'october', '1', ',', '2', '0', '0', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'then', 'adopted', 'by', 'some', 'friends', 'of', 'her', 'mother', \"'s\", 'and', 'raised', 'by', 'them', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'found', 'the', 'game', '', 'at', 'times', 'when', 'unable', 'to', 'control', 'the', 'ball', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'told', 'the', '', 'that', 'attempting', 'to', '', 'a', 'million', 'men', 'was', '', ',', 'and', 'that', 'making', 'it', 'possible', 'for', 'the', 'french', 'to', 'attack', 'the', 'germans', '``', 'in', 'the', 'rear', \"''\", 'would', 'prove', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'here', 'that', 'phillips', 'first', 'began', 'working', 'with', '', '', ',', 'who', 'had', 'preceded', 'phillips', 'as', 'washington', \"'s\", 'tight', 'ends', 'coach', 'before', 'being', 'elevated', 'to', 'offensive', 'coordinator', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'postal', 'code', 'of', 'the', 'area', 'is', '6', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'brother', ',', 'franklin', 'j.', 'w.', 'schmidt', ',', 'had', 'been', 'prominent', 'in', 'the', '', 'field', 'of', 'wildlife', 'management', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'not', 'until', '1', '9', '9', '1', 'that', 'the', 'diocese', 'of', '', 'was', 'finally', 'restored', ',', 'being', 'separated', 'from', 'the', 'archdiocese', 'of', 'madrid', ',', 'at', 'which', 'time', 'the', 'building', 'was', 'granted', 'its', 'present', 'status', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'her', 'sister', 'mercedes', 'de', '', ',', '``', 'rita', 'designed', 'most', 'of', 'her', 'own', 'clothes', 'and', 'they', 'were', 'made', 'for', 'her', 'by', 'callot', 'soeurs', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'second', 'world', 'war', ',', 'the', '', 'couple', 'took', 'in', 'british', 'children', 'who', 'were', 'sent', 'to', 'canada', 'for', 'safety', 'reasons', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'english', 'people', 'possess', 'the', 'jewish', 'spirit', 'and', 'the', '``', 'chief', 'task', \"''\", 'of', 'the', 'german', 'people', 'and', 'national', 'socialism', 'is', 'to', 'destroy', 'the', 'jewish', 'spirit', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'fighting', 'continued', 'until', 'one', 'party', 'was', 'dead', 'or', 'disabled', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'his', 'time', 'at', 'the', 'fletcher', 'school', ',', 'he', 'was', 'the', 'director', 'of', '``', 'the', 'fletcher', 'forum', 'of', 'world', 'affairs', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'purpose', 'is', 'to', 'ensure', 'better', 'local', 'and', 'regional', 'management', 'of', 'groundwater', 'use', 'and', 'it', 'seeks', 'to', 'have', 'a', 'sustainable', 'groundwater', 'management', 'in', 'california', 'by', '2', '0', '4', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '5', '7', ',', 'phillips', 'joined', '', '', 'and', 'richard', '', 'in', '', '``', 'the', '', \"''\", 'magazine', 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'joseph', 'was', 'known', ',', 'in', 'addition', 'for', 'being', 'very', 'handsome', ',', 'to', 'be', 'of', 'gentle', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '0', ',', '', 'paid', 'for', 'a', 'trip', 'and', 'treatment', 'in', 'china', 'for', 'five', 'serbian', 'children', 'suffering', 'from', '', 'disease', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'vessel', 'did', 'not', 'enter', 'civilian', 'service', 'before', 'she', 'was', 'broken', 'up', 'for', '', 'in', '2', '0', '0', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'the', 'withdrawal', 'of', 'iraqi', 'forces', 'from', 'three', 'northern', 'provinces', ',', '', 'region', 'emerged', 'in', '1', '9', '9', '2', 'as', 'an', 'autonomous', 'entity', 'inside', 'iraq', 'with', 'its', 'own', 'local', 'government', 'and', 'parliament', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'songs', 'mainly', 'feature', 'vocals', 'and', 'acoustic', 'guitar', 'played', 'over', 'hip', 'hop', '', 'and', 'his', 'sound', 'has', 'been', 'compared', 'to', 'that', 'of', 'musician', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'south', 'on', 'the', 'main', 'road', 'in', 'the', 'village', 'leads', 'inland', 'to', '', 'college', 'and', '', 'o', '', 'secondary', 'school', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'takes', 'its', 'name', 'from', 'the', 'nearby', 'town', 'of', 'carmel', ',', 'and', 'in', 'turn', 'gives', 'it', 'to', 'the', 'community', 'of', '``', 'lake', 'carmel', \"''\", 'surrounding', 'it', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '4', ',', '', 'was', 'the', 'legal', 'advisor', 'in', 'the', 'state', 'department', \"'s\", 'delegation', 'that', 'met', 'at', 'a', '', 'manhattan', 'hotel', '(', 'while', 'registered', 'under', '', 'to', 'avoid', 'attention', ')', 'with', 'cuba', \"'s\", 'vice', 'foreign', 'minister', 'ricardo', '', '.', '', '', '', '', '', '', '', '']\n", "['', 'if', 'a', 'man', 'recognizes', '', 'in', 'his', 'wife', 'or', 'girlfriend', ',', 'he', 'is', 'forced', 'to', 'strip', 'it', 'off', 'in', 'order', 'to', 'deal', 'with', 'her', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'vision', 'includes', 'rich', ',', 'healthy', 'and', '', '', 'actively', 'managed', 'and', '', 'used', 'by', 'formerly', 'poor', 'local', 'communities', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mcmanus', 'is', 'on', 'a', 'three-year', 'contract', 'beginning', 'from', 'the', 'start', 'of', '2', '0', '1', '6', ',', 'which', 'includes', 'mcmanus', '', 'of', 'shares', 'valued', 'at', '$', '3', '5', '0', ',', '0', '0', '0', 'every', 'six', 'months', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', 'dutch', ':', '', '', '', ')', '(', '', '2', '9', 'january', '1', '7', '7', '0', '-', '1', '8', 'october', '1', '8', '3', '9', ')', ',', 'was', 'a', '', 'painter', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'that', 'night', ',', 'gally', 'is', '', 'by', 'ido', 'going', 'out', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'legend', 'there', \"'s\", 'a', 'vintage', 'bottle', 'of', 'wine', 'from', '', \"'s\", 'personal', '``', 'cave', \"''\", 'built', 'into', 'the', 'foundation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'it', 'is', 'a', '', 'for', 'education', 'rather', 'than', 'violence', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '8', ',', '', 'was', 'involved', 'in', 'a', 'legal', '', 'with', 'another', 'prominent', 'businessman', ',', 'harold', 'pupkewitz', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'the', 'lost', 'weekend', \"''\", 'failed', 'commercially', ',', 'and', 'after', 'a', 'few', 'singles', ',', 'the', 'band', 'officially', 'broke', 'up', ',', 'though', 'they', 'served', 'as', '', '', \"'s\", 'backing', 'band', 'on', 'the', 'first', 'album', 'by', 'the', '', ',', '``', 'the', 'camera', 'loves', 'me', \"''\", 'in', '1', '9', '8', '8', '.', '']\n", "['', '1', '0', '1', '5', ')', 'in', '1', '9', '8', '9', '-', '9', '0', ',', 'and', 'penrith', '', '(', 'heritage', 'no', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'investigations', 'of', 'the', 'event', ',', 'dubbed', '``', '', \"''\", 'by', 'media', 'outlets', ',', 'were', 'not', 'affected', 'by', 'spitzer', \"'s\", 'resignation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'october', '1', '8', '4', '4', 'a', '', 'warehouse', 'had', 'been', 'built', 'in', 'manchester', 'and', 'the', 'first', 'cargo', 'to', 'arrive', 'was', 'announced', 'in', 'a', 'letter', 'to', 'the', '``', 'manchester', 'guardian', ',', \"''\", 'later', 'printed', 'in', '``', 'the', 'times', ':', \"''\", '', '', '', '', '', '', '', '', '', '']\n", "['', 'upon', 'completion', 'of', 'these', 'courses', ',', 'he', 'was', 'transferred', 'to', 'the', 'marine', 'corps', 'supply', 'activity', ',', 'philadelphia', ',', 'pennsylvania', ',', 'for', 'duty', 'as', 'field', 'inspection', 'officer', ',', 'field', 'inspection', 'section', ',', 'and', 'later', ',', 'officer', 'in', 'charge', ',', 'audit', 'section', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'display', 'has', 'contained', 'works', 'by', 'influential', 'pop', 'artists', '', '', ',', 'peter', '', ',', 'roy', '', 'and', 'david', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'season', 'five', 'opens', 'in', 'los', 'angeles', ',', 'where', 'a', '', 'chuck', 'and', '', 'decide', 'to', 'visit', '', ',', 'who', 'is', 'working', 'on', 'a', 'film', 'set', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'failed', 'independence', 'vote', 'in', 'late', '1', '9', '9', '5', 'can', 'be', 'partially', 'attributed', 'to', '', '', 'of', '', 'away', 'foreign', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'median', 'income', 'for', 'a', 'household', 'in', 'the', 'borough', 'was', '$', '3', '5', ',', '0', '3', '0', ',', 'and', 'the', 'median', 'income', 'for', 'a', 'family', 'was', '$', '4', '6', ',', '6', '8', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'wood', 'was', 'voted', 'as', 'one', 'of', '', 'magazine', \"'s\", '', 'of', 'the', 'year', \"'\", 'in', '2', '0', '0', '8', 'and', 'has', 'won', 'the', '', '', \"'\", 'award', 'in', 'the', 'inspiration', 'awards', 'for', 'women', '2', '0', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'mcmanus', 'and', 'his', 'team', 'of', '', 'from', 'the', 'athlone', 'sub', '', 'club', 'investigate', 'an', 'unknown', 'ship', 'lost', 'to', 'time', 'on', 'the', 'lake', 'bed', 'of', 'lough', '', 'for', 'many', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'band', 'formed', 'in', 'late', '2', '0', '1', '1', 'and', '', 'their', 'debut', 'ep', 'titled', '``', 'waves', \"''\", 'on', 'march', '1', '3', ',', '2', '0', '1', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'mid-', '2', '0', '0', '7', 'there', 'were', 'an', 'estimated', '3', ',', '4', '5', '6', '', 'elephants', 'left', 'in', 'thailand', 'and', 'roughly', 'a', 'thousand', 'wild', 'elephants', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'archives', 'also', '', 'scholars', ',', 'authors', ',', 'and', 'other', 'interested', 'persons', 'who', 'seek', 'to', 'evaluate', 'the', 'impact', 'of', 'the', 'university', \"'s\", 'activities', 'on', 'the', 'history', 'of', 'american', 'social', ',', 'cultural', 'and', 'intellectual', 'development', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'selected', 'the', 'mountain', 'as', 'the', 'focus', 'of', 'the', 'primary', '', 'of', 'the', 'exposition', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'later', 'formed', 'his', 'own', 'company', ',', 'grand', '', 'animation', ',', 'where', 'he', 'produced', '``', 'ubu', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'harris', 'also', 'oversaw', '', \"'s\", 'installation', 'of', 'a', 'research', 'lab', 'to', 'facilitate', 'innovation', 'in', '', 'and', 'graphic', 'arts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'twins', 'were', 'starting', 'to', 'get', 'hip', 'to', 'the', 'young', '', 'hip-hop', 'scene', 'due', 'to', 'the', '', 'of', 'fat', 'man', ',', 'whose', 'harlem', 'world', 'club', 'became', 'a', '', 'of', 'passage', 'for', 'many', 'up', 'and', 'coming', 'hip-hop', 'artists', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'farruko', 'released', 'his', 'first', 'album', '``', 'el', '', 'del', '', \"''\", 'which', 'produced', 'hit', 'singles', ',', '``', '', '', 'me', '', \"''\", 'featuring', 'josé', '', ',', '``', '', '', \"''\", ',', 'and', '``', 'te', '', 'a', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', '', '', ',', 'and', '', '', 'are', 'the', 'only', 'french', '', 'to', 'win', 'the', 'new', 'york', 'film', 'critics', 'circle', 'award', 'for', 'best', 'actress', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'halt', 'was', 'approximately', 'from', 'london', 'liverpool', 'street', 'station', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'difference', 'is', 'small', 'for', 'the', 'car', 'owner', 'and', 'the', 'owner', 'is', 'always', 'responsible', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'anime', 'was', 'intended', 'to', 'be', 'aired', 'outside', 'japan', ',', 'but', 'no', 'international', 'airing', 'date', 'has', \"n't\", 'yet', 'announced', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', '2', '0', '0', '3', 'more', 'classes', 'were', 'being', 'offered', 'and', 'the', 'summer', 'school', 'moved', 'permanently', 'to', 'its', 'new', 'home', 'on', 'the', 'university', 'of', 'alberta', 'campus', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'irish', 'club', 'cricket', ',', 'he', 'plays', 'for', 'the', 'railway', 'union', 'cricket', 'club', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'funding', 'of', 'the', 'national', 'science', 'foundation', 'network', 'as', 'a', 'new', 'backbone', 'in', 'the', '1', '9', '8', '0', 's', ',', 'as', 'well', 'as', 'private', 'funding', 'for', 'other', 'commercial', 'extensions', ',', 'led', 'to', 'worldwide', 'participation', 'in', 'the', 'development', 'of', 'new', 'networking', 'technologies', ',', 'and', 'the', 'merger', 'of', 'many', 'networks', '.', '']\n", "['', 'he', 'achieved', 'distinction', 'as', 'a', 'director', 'of', 'choral', 'groups', ',', 'teacher', 'of', 'voice', ',', 'and', 'a', 'member', 'of', 'choral', 'competition', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'also', 'adapted', 'into', 'versions', 'with', 'much', '', 'and', '', '', 'that', 'was', 'used', 'to', 'guide', 'the', 'bombers', 'on', 'missions', 'over', 'britain', ',', 'under', 'the', 'name', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '0', ',', 'the', 'pixar', 'image', 'computer', 'was', 'defining', 'the', '', 'in', 'commercial', 'image', 'processing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'instead', 'the', 'french', 'term', 'of', '``', '', \"''\", 'has', 'been', 'used', 'by', 'the', 'court', 'of', 'the', 'lord', 'lyon', 'as', 'this', 'term', 'not', 'only', 'includes', 'peers', 'but', 'also', 'the', '', '', ',', 'which', 'includes', '', ',', 'knights', ',', 'feudal', '', ',', '', 'with', 'territorial', '', ',', '', 'and', '', '.', '']\n", "['', 'the', 'runway', 'was', 'further', '', 'to', 'accommodate', '', 'viscount', ',', '1', '9', '7', '0', ',', 'and', 'ultimately', '', '7', '3', '7', 'aircraft', 'types', 'in', '1', '9', '7', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'board', 'of', 'education', 'act', '1', '8', '9', '9', 'abolished', 'the', 'committee', 'of', 'the', 'privy', 'council', 'which', 'had', 'been', 'responsible', 'for', 'education', 'matters', 'and', '', 'a', 'new', 'board', 'of', 'education', 'from', '1', 'april', '1', '9', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'duke', '', 'on', 'los', 'angeles', 'in', 'hopes', 'of', 'taking', 'a', '', ',', 'his', 'ship', 'is', 'shot', 'down', 'by', 'unknown', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'editing', '', 'on', 'for', '2', 'years', ',', 'and', '', '', 'jr', 'joined', 'during', 'the', '', 'phase', 'as', 'a', 'technical', 'consultant', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'the', 'last', 'remaining', 'original', 'member', 'of', 'the', 'band', ',', 'had', 'left', 'during', 'the', 'early', 'stages', 'of', 'recording', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'presence', 'of', 'these', 'current', 'paths', 'in', 'the', '', 'can', 'be', 'in', '', 'demonstrated', 'via', '', 'atomic', 'force', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'apart', 'from', 'this', 'show', ',', 'lewis', 'also', 'helped', 'to', 'launch', '``', 'the', '', '', 'show', \"''\", ',', '``', 'the', '', 'shore', 'show', \"''\", 'and', '``', 'the', 'phil', '', 'show', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', '2', '0', '1', '3', ',', 'the', 'last', 'issue', 'has', 'been', 'published', 'in', '2', '0', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'time', 'of', '``', 'expedition', 'to', 'the', 'barrier', 'peaks', \"''\", \"'s\", 'release', ',', 'each', '``', '', '&', 'amp', ';', 'dragons', \"''\", 'module', 'was', 'marked', 'with', 'an', '', 'code', 'indicating', 'the', 'series', 'to', 'which', 'it', 'belonged', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'argued', 'that', 'the', '', 'model', 'has', 'become', '', 'and', 'that', 'israel', \"'s\", 'permanent', 'control', 'over', 'millions', 'of', 'palestinians', 'who', 'lack', 'basic', 'rights', 'will', 'result', 'in', 'war', ',', 'and', 'perhaps', 'even', 'ethnic', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'original', 'styles', 'were', 'inspired', 'by', 'music', 'and', 'cars', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '', '', '(', '', ')', 'survived', 'the', '', 'of', 'the', 'standard', 'gauge', 'lines', ',', 'and', 'in', 'two', 'steps', '1', '9', '2', '0', 'and', '1', '9', '4', '5', 'became', 'present', 'day', '', '', '', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'i', 'miss', 'you', \"''\", 'was', 'recorded', 'throughout', '2', '0', '0', '3', ',', 'and', 'began', 'production', 'at', 'the', '', \"'s\", 'house', ',', 'a', 'rented', 'home', 'in', 'the', 'san', 'diego', 'luxury', 'community', 'of', 'rancho', 'santa', 'fe', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'great', 'britain', ',', 'the', 'number', 'of', 'infected', 'carcasses', 'recovered', 'each', 'year', 'declined', 'after', 'a', 'peak', 'in', '2', '0', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'january', '1', '9', '5', '0', 'the', '1', '3', '8', 'th', 'became', 'the', 'first', 'new', 'york', 'air', 'national', 'guard', 'unit', 'to', 'receive', 'jet', 'aircraft', ',', 'obtaining', 'f-', '8', '4', 'b', '', ',', 'mostly', 'from', 'the', '', '2', '0', 'th', 'fighter', 'group', 'at', 'shaw', 'afb', ',', 'south', 'carolina', '.', '', '']\n", "['', 'on', 'the', 'same', 'day', ',', 'the', 'electoral', 'commission', 'said', 'that', 'the', 'election', 'would', 'not', 'be', 'held', 'over', 'again', ',', '', 'the', 'opposition', 'demands', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'project', 'started', 'in', '2', '0', '0', '4', 'from', 'the', 'initiative', 'of', '', '', '', ',', 'who', 'aimed', 'to', 'create', 'a', 'collaboration', 'between', 'finnish', 'artists', 'and', 'the', 'people', 'of', 'the', '', 'neighbourhood', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'road', ',', '', 'hollow', \"'s\", 'main', 'street', ',', 'is', 'accessed', 'from', 'sir', 'francis', 'drake', 'boulevard', ',', 'a', 'major', '', 'road', 'in', '', 'county', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '1', ',', 'gmats', 'had', 'a', 'total', 'of', '3', '6', 'pilots', 'and', '1', '5', '0', 'maintenance', 'staff', ',', 'and', 'by', '1', '9', '6', '5', 'this', 'had', 'grown', 'to', '2', '7', 'pilots', ',', '2', '7', '', 'and', 'a', 'total', 'staff', 'of', '2', '3', '0', '.', '', '', '']\n", "['', 'during', 'the', 'time', 'liwa', '', 'al-raqqa', 'was', 'part', 'of', 'al-nusra', ',', 'it', 'fought', 'the', '', 'people', \"'s\", 'protection', 'units', '(', '', ')', 'in', 'tell', '', ',', 'and', 'was', 'accused', 'by', '', 'officials', 'of', 'involvement', 'in', 'the', 'abduction', 'of', '', 'and', '', 'in', '', 'city', '.', '', '', '', '', '']\n", "['', '', '', 'grow', 'in', 'coastal', 'scrub', 'and', 'on', '', ',', 'in', 'coastal', '', ',', 'and', '', ',', 'sometimes', 'on', 'rocks', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'some', 'circumstances', ',', 'land', 'use', '', 'may', 'be', 'granted', 'to', 'individuals', ',', 'organizations', ',', 'or', 'companies', 'if', 'the', 'intended', 'use', 'is', '', 'with', 'conservation', 'of', 'the', 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'the', 'release', 'of', 'eggs', 'from', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'democrats', ',', 'who', 'had', 'hoped', 'that', 'bradley', 'might', 'side', 'with', 'their', 'candidate', ',', 'focused', 'their', 'anger', 'on', 'him', 'rather', 'than', 'on', 'his', 'fellow', 'republicans', 'on', 'the', 'panel', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', '1', '9', '7', '6', 'zappa', \"'s\", 'output', 'had', '', 'while', 'he', 'was', 'in', 'dispute', 'with', 'cohen', 'and', 'warner', '', 'records', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'serves', 'a', 'meal', 'of', '', 'and', '', ',', 'which', 'juan', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'and', 'during', 'his', 'period', 'in', 'the', 'cabinet', ',', 'he', 'is', 'believed', 'to', 'have', '', 'the', 'right', 'wing', 'of', 'his', 'party', 'and', 'the', 'prime', 'minister', 'for', 'not', '', 'far', 'enough', 'with', '', 'union', 'legislation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'project', 'in', '2', '0', '0', '7', 'has', '', 'the', '', 'of', '', '``', '', '', \"''\", 'and', 'found', 'it', 'to', 'have', '4', ',', '2', '8', '5', 'genes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'their', 'tours', 'in', '2', '0', '1', '0', ',', 'the', 'band', 'supported', 'asking', 'alexandria', ',', 'of', 'mice', '&', 'amp', ';', 'men', ',', 'sleeping', 'with', 'sirens', ',', 'and', '', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'township', 'of', '', 'in', 'the', 'bay', 'of', '', 'region', 'was', 'evacuated', 'on', 'april', '6', 'due', 'to', 'flooding', ',', 'and', 'a', 'state', 'of', 'emergency', 'declared', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'later', 'transferred', 'thomas', \"'s\", '', 'to', 'john', \"'s\", 'brother', ',', 'henry', 'rolfe', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'also', 'the', 'host', 'of', 'an', 'international', 'soccer', 'competition', 'in', 'which', 'every', 'u-', '1', '0', 'club', 'can', 'take', 'part', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'evidence', 'that', 'originally', 'it', 'continued', '', 'to', 'the', 'north', 'east', 'corner', 'of', 'the', 'nave', ',', 'where', 'there', 'is', 'a', '', 'of', 'similar', '', ',', 'and', 'that', 'part', 'was', 'removed', 'to', 'accommodate', 'the', '1', '4', 'th', 'century', 'tower', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'wyoming', ',', 'the', 'major', 'tributary', 'is', '', 'creek', ',', 'which', 'flows', 'out', 'of', 'a', 'basin', 'with', 'sheridan', ',', 'wyoming', 'at', 'its', 'center', ',', 'and', 'so', 'this', 'entire', 'basin', 'area', 'has', '', 'paved', 'and', '', 'roads', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thereafter', '', 'was', 'annexed', 'by', 'the', 'british', 'and', 'the', 'raja', 'was', 'exiled', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'one', 'of', 'several', 'crabs', 'known', 'as', 'the', 'mud', 'crab', 'and', 'is', 'found', 'in', 'mangrove', 'areas', 'from', 'southeast', 'asia', 'to', 'pakistan', ',', 'and', 'from', 'japan', 'to', 'northern', 'australia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'were', 'then', '', 'by', '2', '0', 'degrees', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'the', 'assistance', 'of', 'four', 'partners', 'from', '', 'inc.', 'and', 'a', 'one', 'million', 'dollar', 'investment', 'by', '', '', 'capital', ',', 'scrushy', 'took', 'the', 'quickly', 'growing', 'company', 'and', 'founded', 'healthsouth', 'corporation', 'in', '1', '9', '8', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'beating', '', 'the', 'dutch', 'won', 'the', 'tie', 'and', 'mohr', 'featured', 'in', 'the', 'final', 'rubber', ',', 'a', 'loss', 'to', 'jan', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'paris', ',', 'he', 'offered', '``', '', \"''\", 'to', 'the', '', 'and', 'it', 'was', 'set', 'to', 'a', 'new', 'and', 'expanded', '', '', '', 'by', '', '', 'with', 'the', 'title', ',', '``', 'les', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '(', '', ')', '', ',', 'dso', ',', 'who', 'commanded', 'it', 'until', '1', '1', 'august', '1', '9', '4', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", 'which', 'occurs', 'to', 'the', 'west', 'along', 'the', '', 'coast', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'metropolitan', 'transport', 'corporation', '(', '', ')', 'runs', 'passenger', 'buses', 'to', '', 'from', 'other', 'major', 'parts', 'of', 'the', 'chennai', 'city', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '5', 'february', '2', '0', '1', '5', ',', 'metropolitan', 'police', 'deputy', 'commissioner', 'craig', '', '', 'attended', 'a', 'shomrim', 'event', 'as', 'guest', 'of', 'honour', 'and', 'spoke', 'highly', 'of', 'the', 'work', 'shomrim', 'do', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'battery', 'took', 'an', 'active', 'part', 'in', 'the', 'campaigns', 'of', 'the', 'army', 'from', 'the', 'seven', 'days', 'battles', 'to', 'cold', 'harbor', 'and', 'the', 'battle', 'of', '', ',', 'where', 'it', 'engaged', 'federal', 'forces', 'with', 'its', 'napoleon', 'and', 'whitworth', 'artillery', 'pieces', 'on', 'both', 'the', 'first', 'and', 'the', 'second', 'day', 'of', 'the', 'battle', '.']\n", "['', 'the', 'island', \"'s\", 'economy', 'is', 'now', 'mostly', 'based', 'on', '', 'tourism', ',', 'which', 'has', 'put', 'increased', 'pressure', 'on', 'its', 'historic', 'properties', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'historically', ',', 'elite', 'military', 'units', 'such', 'as', 'special', 'operations', 'forces', 'have', '``', 'high', 'morale', \"''\", 'due', 'to', 'their', 'training', 'and', 'pride', 'in', 'their', 'unit', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', '', '', 'that', 'any', 'student', 'should', 'learn', 'an', 'additional', '1', '5', '0', '-word', 'list', 'for', 'everyday', 'work', 'in', 'some', 'particular', 'field', ',', 'by', 'adding', 'a', 'list', 'of', '1', '0', '0', 'words', 'particularly', 'useful', 'in', 'a', 'general', 'field', '(', 'e.g.', ',', 'science', ',', 'verse', ',', 'business', ',', 'etc', '.']\n", "['', 'an', 'interactive', 'special', ',', '', '``', 'happy', '', 'to', 'you', \"''\", ',', 'was', 'released', 'on', 'april', '6', ',', '2', '0', '2', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'then', 'we', 'spent', 'the', 'day', 'until', 'evening', 'and', 'went', 'out', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '', '', ',', '', ',', 'she', 'sang', 'in', 'choral', 'concerts', ',', 'in', '1', '9', '9', '6', '``', '', '', '', \"''\", ',', 'and', 'in', '1', '9', '8', '8', '', \"'s\", '``', '', \"''\", 'and', '', \"'s\", '``', 'great', 'mass', 'in', 'c', 'minor', \"''\", '.', '', '', '', '']\n", "['', 'it', '', 'for', 'a', 'little', 'longer', 'in', '', '(', 'islamic', 'spain', ')', 'but', 'ended', 'with', 'the', '', 'of', 'the', 'arabs', 'in', '1', '4', '9', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'elected', 'one', 'member', 'of', 'parliament', '(', 'mp', ')', ',', 'elected', 'by', 'the', 'first', 'past', 'the', 'post', 'voting', 'system', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'due', 'to', 'a', 'bad', 'economic', 'situation', ',', 'after', 'steady', 'staff', 'reduction', ',', 'in', 'april', '2', '0', '0', '2', ',', '', 'was', 'filed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'city', 'is', 'located', 'a', 'few', 'kilometers', 'from', 'the', 'mouth', 'of', 'the', '', 'canal', ',', 'an', 'important', '', 'artery', 'that', 'connects', 'the', '', 'basin', 'with', 'the', '', 'river', ',', 'thus', 'uniting', 'venezuela', ',', 'colombia', 'and', 'brazil', ',', 'and', 'is', 'above', 'sea', 'level', '.', '', '', '', '', '', '', '']\n", "['', 'it', 'carried', 'two', '3', '5', '6', 'mm', '', 'tubes', 'and', 'two', '3', '5', 'mm', 'machine', 'guns', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'home', 'to', 'several', 'noted', '', ',', '', ',', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'hudson', 'river', 'way', 'is', 'a', '', 'bridge', 'that', 'links', 'broadway', 'in', 'downtown', 'albany', ',', 'new', 'york', 'with', 'the', '', 'preserve', 'on', 'the', 'bank', 'of', 'the', 'hudson', 'river', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'main', 'runway', 'was', 'sealed', 'in', '1', '9', '6', '5', ',', 'and', '', 'flights', 'began', 'to', 'hamilton', 'that', 'year', ',', 'with', '', \"'s\", '', 'friendship', 'aircraft', 'operating', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'born', 'in', '', 'and', 'an', 'official', 'in', 'the', 'french', 'ministry', 'of', 'justice', 'since', '1', '8', '2', '3', ',', 'after', 'the', 'revolution', 'of', '1', '8', '4', '8', '', 'became', 'a', 'judge', 'with', 'the', 'court', 'of', '', 'in', '1', '8', '4', '9', '.', '', '', '', '', '', '', '', '', '']\n", "['', '', 'museum', 'für', '', 'und', '', '(', 'today', 'the', 'museum', 'für', '', '', ')', 'in', 'vienna', ',', 'where', 'he', 'would', 'work', 'for', 'the', 'next', 'ten', 'years', ',', 'eventually', 'as', 'director', 'of', 'the', 'textile', 'department', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'already', 'some', '', 'are', '', 'that', 'native', 'american', 'sons', 'to', 'whom', 'democracy', 'is', 'a', 'sacred', 'ideal', 'should', 'be', 'exiled', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'due', 'to', 'the', '1', '9', '4', '8', 'palestinian', 'exodus', ',', 'a', 'number', 'of', 'palestinian', 'players', 'joined', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'to', '', 'procedure', 'and', 'save', 'time', 'in', 'the', 'discussion', 'of', '', ',', 'and', 'in', 'some', 'of', 'his', 'decisions', ',', 'which', 'were', '', 'by', 'lord', '', ',', 'he', '', 'reforms', 'which', 'were', 'subsequently', 'made', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'construction', 'budget', 'was', 'estimated', 'at', '', '9', 'billion', '(', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'also', 'characterized', 'as', 'a', 'common', '', '', 'in', 'the', '', '(', '', '', '', ')', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'ngr', 'operated', 'at', 'a', 'loss', 'during', 'its', 'early', 'years', ',', 'but', 'after', 'the', 'second', 'boer', 'war', ',', 'the', 'ngr', 'made', 'around', 'half', 'of', 'the', '', 'government', \"'s\", 'income', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'and', 'immediately', 'started', 'in', 'the', 'away', 'match', 'against', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'russell', \"'s\", '', 'is', 'still', '', 'in', 'discussions', 'concerning', 'the', 'existence', 'of', 'god', ',', 'and', 'has', 'had', 'influence', 'in', 'various', 'fields', 'and', 'media', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mohr', 'played', 'his', 'first', 'match', 'for', 'the', 'switzerland', 'davis', 'cup', 'team', 'in', '1', '9', '9', '4', ',', 'a', 'world', 'group', 'qualifier', 'against', 'indonesia', 'in', 'jakarta', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'across', 'from', 'these', ',', 'near', 'the', 'northern', 'walls', 'and', '', 'tower', ',', 'was', 'the', 'residence', 'of', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'film', 'was', 'dubbed', 'into', 'tamil', 'as', '``', 'captain', '', \"''\", 'and', 'was', 'well', 'received', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'served', 'at', 'various', 'times', 'as', 'visiting', 'professor', 'at', 'the', 'university', 'of', 'chicago', 'and', '', 'university', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'terms', 'of', '', 'relationships', ',', 'girls', 'are', 'more', 'likely', 'to', 'have', '', 'relationships', 'of', 'this', 'nature', ',', 'but', 'no', 'literature', 'suggests', 'that', 'girls', 'engage', 'in', 'more', '', 'relationships', 'than', 'boys', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'further', 'to', 'the', 'south', ',', 'and', '', 'on', '', ',', 'were', 'also', 'commonly', 'included', 'in', 'maluku', 'proper', ',', 'the', 'four', 'kingdoms', 'forming', 'a', 'ritual', '', 'with', '', 'to', 'local', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'full', 'planning', 'permission', 'was', 'subsequently', 'granted', 'on', '1', '0', 'december', '2', '0', '1', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'winning', 'the', 'intermediate', 'football', 'championship', 'the', 'club', 'defeated', '', 'by', '3', 'points', 'at', '', ',', '', 'rangers', 'by', 'a', 'point', 'at', '', 'and', 'accounted', 'for', '', '', 'by', '3', 'points', 'in', '', 'at', 'the', '', 'and', '', 'after', 'a', '', 'in', 'the', 'final', '.', '', '', '', '', '']\n", "['', 'the', 'constant', 'growth', '', 'discount', 'model', 'for', 'the', '', 'of', 'the', 'common', 'stock', 'of', 'a', 'corporation', 'is', 'another', 'example', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'park', 'is', 'located', 'along', 'the', 'st.', 'lawrence', 'river', 'by', 'ny', '1', '2', 'and', 'ny', '1', '8', '0', ',', 'between', 'clayton', 'and', 'alexandria', 'bay', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '9', '3', '3', 'to', '1', '9', '4', '5', 'the', 'facility', 'was', 'known', 'as', 'the', '', '', 'stadium', 'and', 'it', 'was', 'used', 'as', 'a', 'training', 'venue', 'for', 'the', '1', '9', '3', '6', 'berlin', 'olympic', 'games', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'we', 'have', 'to', 'be', 'together', ',', 'without', 'exception', ',', 'committed', 'to', 'projects', 'development', 'in', 'the', 'land', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'example', ',', 'a', '', 'that', 'is', 'hit', 'the', 'least', 'amount', 'on', 'the', 'football', 'fields', 'only', '', 'concussions', 'around', '5', '.', '6', '%', 'of', 'the', 'reported', 'concussions', ',', 'opposed', 'to', 'offensive', '', 'that', '', 'about', '2', '0', '.', '9', '%', 'of', 'the', 'reported', 'concussions', '.', '', '', '', '', '']\n", "['', 'following', 'a', 'string', 'of', 'loans', 'to', 'bury', ',', '', 'county', ',', '', 'town', ',', '', 'and', '', '', ',', 'he', 'eventually', 'left', 'everton', 'without', 'playing', 'a', 'league', 'game', ',', 'joining', '', 'on', 'a', 'permanent', 'basis', 'in', '2', '0', '1', '2', 'and', 'then', 'sheffield', 'united', 'in', '2', '0', '1', '4', '.']\n", "['', 'the', 'issue', 'was', 'fixed', 'by', '', 'changing', 'the', '', 'voltage', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'only', 'when', 'climate', 'conditions', 'and', 'drought', 'became', 'so', 'extreme', 'that', 'they', 'failed', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'australia', \"'s\", 'future', 'tax', 'system', 'review', ',', 'informally', 'known', 'as', 'the', 'henry', 'tax', 'review', 'was', 'commissioned', 'by', 'the', '', 'government', 'in', '2', '0', '0', '8', 'and', 'published', 'in', '2', '0', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '3', ',', 'a', 'major', 'development', 'of', 'the', 'pipe', 'factory', 'occurred', ',', 'which', 'was', 'opened', 'by', 'premier', 'charles', 'court', 'on', '1', '2', 'december', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'her', 'father', 'left', 'school', 'at', 'a', 'young', 'age', ',', 'both', 'of', 'her', 'parents', 'were', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'politically', ',', 'shiner', 'was', 'known', 'to', 'take', '``', 'an', 'active', 'part', 'in', 'local', 'politics', 'of', 'east', 'washington', 'in', 'suffrage', 'times', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'named', 'after', 'his', 'great', 'grandfather', ',', '', 'harvey', ',', 'brother', 'to', 'william', 'harvey', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'legislation', 'can', 'not', 'be', 'made', 'which', 'applies', 'on', 'sark', 'without', 'the', 'approval', 'of', 'the', 'chief', '', ',', 'although', 'recently', 'chief', '', 'has', 'been', '', 'a', 'number', 'of', 'ordinance', 'making', 'powers', 'to', 'the', 'states', 'of', 'guernsey', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'south', 'bank', 'grand', '', 'is', 'a', '', 'long', '', 'located', 'in', 'the', 'south', 'bank', '', 'in', 'brisbane', ',', 'australia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'track', 'was', 'sung', 'by', '', ',', 'and', '', '', 'nancy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'engine', 'has', 'a', 'power', 'output', 'of', 'and', 'of', 'torque', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'results', 'of', 'the', 'vote', 'of', 'both', 'houses', 'combined', 'are', 'as', 'follows', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'is', 'the', 'point', 'on', 'the', 'human', 'skull', 'located', 'at', 'the', 'upper', 'margin', 'of', 'each', 'ear', 'canal', '(', 'external', '', '', ',', 'external', 'acoustic', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'night', ',', 'british', 'bombers', 'attacked', '', ',', '', ',', '', ',', '', 'and', '', '', 'and', 'the', 'railway', 'station', 'at', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", 'won', 'the', '', '', 'at', 'the', '', 'film', 'festival', 'in', '1', '9', '7', '5', 'and', '``', 'ubu', \"''\", 'won', 'the', 'golden', 'bear', 'award', 'for', 'best', 'short', 'film', 'at', 'the', '1', '9', '7', '9', 'berlin', 'international', 'film', 'festival', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'village', 'is', 'situated', '9', 'km', 'to', 'the', 'south', 'of', 'the', 'city', 'of', 'drama', 'in', 'macedonia', ',', 'greece', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'flew', 'to', 'countries', 'all', 'over', 'the', 'world', ',', 'including', 'the', 'united', 'states', ',', 'to', 'try', 'to', 'gain', 'support', 'for', 'negotiations', 'with', '', 'about', 'the', '', 'through', 'such', 'committees', 'as', 'the', '', 'commission', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '2', ',', 'he', 'signed', 'for', '', 'in', 'the', 'nigeria', 'premier', 'league', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'was', 'widely', '', 'by', 'both', 'army', 'and', 'marine', 'corps', 'air', 'defense', 'and', 'early', 'warning', 'units', 'during', 'world', 'war', 'ii', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ford', 'did', \"n't\", 'entirely', '', 'the', 'concept', 'of', 'a', '', 'station', 'wagon', ',', 'and', 'used', 'a', 'smaller', 'version', 'with', 'the', '', 'ford', '', 'in', '1', '9', '6', '0', ',', 'offered', 'in', 'multiple', '', ',', 'including', 'a', '', 'station', 'wagon', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'begins', 'training', '', 'and', '', 'by', 'having', 'them', 'accompany', 'him', 'on', 'his', '', ',', 'though', 'they', 'do', 'not', 'participate', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'left', '``', 'the', 'sun', \"''\", 'in', 'june', '1', '9', '9', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'an', 'american', 'journalist', ',', 'host', ',', 'digital', 'journalist', 'and', 'reporter', ',', 'working', 'for', 'nbc', 'universal', ',', 'appearing', 'on', 'all', 'platforms', ',', 'including', 'nbc', 'news', ',', '``', 'today', \"''\", ',', '', ',', '', ',', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'village', 'in', 'the', 'administrative', 'district', 'of', 'gmina', '', ',', 'within', '', 'county', ',', 'łódź', 'voivodeship', ',', 'in', 'central', 'poland', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'had', 'a', 'huge', 'hit', 'with', '``', 'the', '', \"''\", '(', '1', '9', '6', '4', ')', 'from', 'the', 'novel', 'by', 'harold', 'robbins', 'for', 'producer', 'joseph', 'e.', 'levine', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'industry', 'has', 'not', 'decided', 'how', 'to', '', 'yet', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', ',', 'common', 'name', 'the', '', 'top', 'shell', ',', 'is', 'a', 'species', 'of', 'sea', 'snail', ',', 'a', 'marine', 'gastropod', 'mollusk', 'in', 'the', 'family', '', ',', 'the', 'top', 'snails', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'rocket', 'telephone', 'booth', 'lands', 'in', 'the', 'town', 'of', '', 'and', '', '(', 'pronounced', '``', '', \"''\", ')', '(', 'tom', '', ')', 'with', 'his', 'group', 'of', 'aliens', 'exit', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'palestinian', '', 'is', 'not', 'as', 'rich', 'today', 'as', 'it', 'was', 'during', 'the', 'biblical', 'times', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '7', '8', 'she', 'assembled', 'a', 'small', 'ensemble', 'with', 'sharon', 'freeman', ',', 'buster', 'williams', ',', 'and', 'kenny', '', 'as', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'houston', 'of', '``', 'the', 'sydney', 'morning', 'herald', \"''\", 'was', 'also', 'critical', 'of', 'the', 'character', ',', '', 'him', '``', 'the', 'most', '', 'cop', 'in', 'australia', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'served', 'as', 'musical', 'director', 'on', 'a', 'promotional', 'tour', 'for', 'the', 'film', 'in', 'december', '2', '0', '0', '7', ',', 'with', 'john', 'c.', '', 'acting', 'out', 'his', 'fictional', 'character', 'of', '', 'cox', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'the', 'recipient', 'of', 'many', 'awards', ',', 'including', 'the', '``', 'transparency', 'shield', \"''\", 'awarded', 'annually', 'by', 'the', 'israeli', 'chapter', 'of', 'transparency', 'international', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'noted', 'in', 'the', 'previous', 'section', ',', 'sheridan', 'had', 'received', 'wrong', 'information', 'so', 'he', 'thought', 'the', 'v', 'corps', 'was', 'in', 'the', 'rear', 'and', 'almost', 'on', 'the', 'flank', 'of', 'the', 'confederates', 'and', 'therefore', 'he', 'mistakenly', 'thought', 'v', 'corps', 'could', 'launch', 'an', 'early', ',', 'severe', 'attack', 'on', '', \"'s\", 'force', '.', '']\n", "['', 'the', 'show', 'in', 'the', 'fall', 'is', 'a', 'straight', 'play', ',', 'the', 'show', 'in', 'the', 'winter', 'is', 'a', 'variety', 'of', '', 'plays', 'directed', 'by', 'students', ',', 'and', 'the', 'show', 'in', 'the', 'spring', 'is', 'a', 'musical', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'formation', '', 'the', '', '(', '', ')', 'boundary', ',', 'which', 'divides', 'it', 'into', 'an', 'upper', ',', 'early', '', 'member', 'and', 'a', 'lower', ',', 'late', '', 'member', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'an', 'administrative', 'division', 'under', 'the', 'jurisdiction', 'of', 'the', 'commune', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '3', 'april', ',', 'he', 'assisted', 'in', 'the', 'battle', 'of', '', 'and', 'the', 'attack', 'on', 'general', '', \"'s\", 'camp', 'on', '1', '9', 'september', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '3', '6', '1', ',', 'the', 'chapter', 'of', 'the', 'holy', 'spirit', 'moved', 'from', '', '', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'vieira', \"'s\", 'election', ',', 'gomes', 'initially', 'refused', 'to', 'recognize', 'the', 'result', ',', 'but', 'he', 'also', 'moved', 'away', 'from', 'his', 'earlier', 'threat', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'worked', 'his', 'way', 'up', 'to', 'a', 'world', 'title', '', 'in', '2', '0', '1', '0', 'against', 'british', 'boxer', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ncac', \"'s\", 'website', 'contains', 'reports', 'of', 'censorship', '', ',', 'analysis', 'and', 'discussion', 'of', 'free', 'expression', 'issues', ',', 'a', 'database', 'of', 'legal', 'cases', 'in', 'the', 'arts', ',', 'an', 'archive', 'of', 'ncac', \"'s\", 'quarterly', '', ',', 'a', 'blog', ',', 'and', '', ',', 'a', '', '', '.', '', '', '', '', '', '']\n", "['', 'the', 'film', 'has', 'received', 'generally', 'favorable', 'reviews', 'from', 'film', 'critics', 'and', 'audiences', 'around', 'the', 'world', ',', 'having', 'received', 'more', 'than', '2', '0', 'festival', 'awards', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'brother', ',', 'james', 'davis', ',', 'was', 'also', 'a', 'running', 'back', 'and', 'played', 'college', 'football', 'at', '', 'university', 'and', 'in', 'the', 'nfl', 'from', '2', '0', '0', '9', 'to', '2', '0', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'conjunction', 'with', '``', 'instrument', \"''\", ',', 'director', '', 'cohen', \"'s\", '1', '9', '9', '9', 'documentary', 'film', 'about', 'the', 'band', ',', '', 'released', 'the', '``', 'instrument', 'soundtrack', \"''\", ',', 'consisting', 'of', 'instrumental', 'music', 'and', 'previously', '', 'studio', '', 'and', '', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'example', ',', 'the', 'problem', 'known', 'as', 'the', '``', '', \"'s\", '', \"''\", 'is', 'based', 'on', 'a', 'simple', 'random', 'walk', ',', 'and', 'is', 'an', 'example', 'of', 'a', 'random', 'walk', 'with', '', 'barriers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'origin', 'of', '', \"'s\", 'dispute', 'with', '', 'has', 'to', 'do', 'with', 'the', 'relative', '', 'of', 'the', 'will', 'to', 'that', 'of', 'the', 'intellect', 'in', 'knowing', 'god', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'leading', 'a', 'successful', 'campaign', 'in', '', ',', 'he', 'became', 'the', 'senior', 'officer', 'at', 'kochi', 'kerala', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '3', 'g', 'capital', \"'s\", 'new', 'management', 'team', 'eliminated', 'the', 'focus', 'on', 'the', '', 'after', 'its', 'acquisition', 'the', 'company', 'in', '2', '0', '1', '0', ',', '', 'on', 'a', 'more', 'broad', 'demographic', 'base', 'that', 'includes', 'women', 'and', 'more', 'health', '', 'customers', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'sees', 'modern', 'bucharest', 'as', 'a', 'playing', 'ground', 'for', '', 'and', 'their', '', '', ',', '', 'with', '``', '', \"''\", '', 'such', 'as', '', 'drinking', 'and', 'visits', 'to', 'the', 'city', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'first', ',', 'the', 'question', 'is', 'asked', 'on', 'the', 'given', 'formula', 'φ', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'became', 'merged', 'with', '', 'in', '2', '0', '0', '6', 'when', 'the', 'two', 'former', 'operators', 'of', '', 'merged', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'n', '1', '7', '(', 'sometimes', 'known', 'as', 'november', '1', '7', ')', 'is', 'an', 'industrial', 'metal', 'band', 'from', 'phoenix', ',', 'arizona', ',', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'also', 'given', 'an', 'honorary', 'doctorate', 'of', 'civil', 'laws', 'by', 'oxford', 'university', 'on', '1', '5', 'june', '1', '8', '4', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', 'the', '1', '6', 'th', 'century', 'many', '', 'and', 'lakes', 'have', 'been', 'laid', 'out', 'in', 'this', 'area', ',', 'mostly', 'for', 'agricultural', 'and', 'industrial', 'purposes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'the', 'time', '', 'was', '1', '8', ',', 'he', 'got', 'involved', 'in', 'a', 'media', 'programme', 'called', 'the', '', 'initiative', 'which', 'gave', 'him', 'his', 'first', 'taste', 'of', 'film', 'production', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'division', 'of', 'chronic', 'diseases', 'focused', 'on', 'other', 'diseases', ',', 'mainly', 'cancer', ',', '', ',', 'arthritis', ',', 'heart', 'disease', ',', 'neurological', 'disease', ',', 'and', 'mental', '', ',', 'in', 'addition', 'to', 'aging', 'and', 'nursing', 'homes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'construction', 'of', 'the', 'cairns', 'to', '', 'railway', 'by', 'the', 'queensland', 'government', 'in', '1', '8', '9', '3', '', 'interest', 'in', 'the', '', 'area', 'from', 'a', 'group', 'of', 'adelaide', 'based', 'mining', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'had', 'a', 'light', 'green', 'and', '', '', ',', 'and', 'there', 'were', 'changes', 'to', 'the', 'detailing', 'of', 'the', 'paint', 'scheme', 'over', 'the', 'life', 'of', 'the', 'tram', 'system', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'historically', ',', 'this', 'is', 'derived', 'from', 'the', '', 'present', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'are', 'home', 'to', 'the', '2', '7', '', '', 'pro', 'team', ',', 'as', 'well', 'as', 'numerous', 'other', 'extreme', 'sports', 'groups', 'from', 'around', 'the', 'world', 'who', 'use', 'the', 'parks', 'to', 'prepare', 'for', 'such', 'events', 'as', 'the', '', 'tour', 'and', '', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'order', 'to', 'take', 'his', '', '', 'and', 'be', '', ',', 'charles', 'ii', 'visited', 'his', 'kingdom', 'in', 'summer', '1', '3', '5', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'the', 'beginning', 'of', 'the', 'fifth', 'month', 'of', 'human', 'development', ',', 'only', 'the', '', 'and', 'a', 'few', 'of', 'the', '', 'of', 'the', '', 'remain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'deeper', 'shades', 'of', 'purple', ':', '', 'in', 'religion', 'and', 'society', \"''\", '', 'various', 'essays', 'from', 'many', 'leading', '', 'scholars', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'comet', 'was', '', 'during', 'the', '', 'in', '2', '0', '0', '6', ',', 'and', 'new', 'seat', '', 'were', 'added', 'two', 'years', 'later', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'august', '1', '9', 'mazarin', 'withdrew', 'to', '', 'in', 'the', '', 'and', 'continued', 'his', '', 'to', 'win', 'back', 'paris', 'from', 'there', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', '7', '5', '0', 'metres', 'long', 'and', 'is', 'bordered', 'from', 'end', 'to', 'end', 'by', 'the', 'eponymous', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'typically', ',', 'about', 'ten', 'of', 'these', 'qualify', 'for', 'tests', 'on', 'humans', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'husband', 'died', 'in', '1', '7', '2', '7', 'at', 'the', '', 'de', 'conti', '(', '', 'conti', ')', 'in', 'paris', 'due', 'to', 'a', '``', 'chest', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'provides', 'over', '3', ',', '3', '0', '0', 'square', 'metres', 'of', 'additional', 'teaching', 'space', 'for', 'both', 'the', 'faculty', 'of', 'science', 'and', 'technology', ',', 'and', 'the', 'faculty', 'of', 'arts', 'and', 'creative', 'industries', ',', 'and', 'is', 'home', 'to', 'the', 'uk', \"'s\", 'first', '', 'factory', \"'\", '.', '', '', '', '', '', '']\n", "['', 'kentucky', 'trailer', '(', 'known', 'also', 'as', 'kentucky', 'manufacturing', 'company', ')', 'is', 'currently', 'owned', 'by', 'several', 'fourth', 'generation', 'members', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'closest', 'a', 'single', 'candidate', 'has', 'been', 'on', 'two', 'different', 'lines', 'using', '', 'voting', 'since', 'the', '1', '9', '9', '0', 'election', 'was', 'in', '2', '0', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'the', 'love', \"'\", 'topped', 'the', 'japanese', 'itunes', 'store', 'for', 'four', 'weeks', 'and', 'was', 'certified', 'platinum', 'by', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'a', '1', '9', '6', '0', 'graduate', 'of', 'bradley', 'central', 'high', 'school', 'in', 'cleveland', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'then', 'that', 'he', 'changed', 'his', 'name', ',', 'signing', 'the', 'contract', 'with', '``', 'ed', '', \"''\", ',', 'rather', 'than', '``', 'ed', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'de', '', 'is', 'a', 'football', 'club', 'from', '', 'in', 'the', 'west', 'african', ',', 'state', 'of', 'guinea', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'property', 'manager', 'has', 'a', 'primary', 'responsibility', 'to', 'the', 'landlord', 'and', 'a', 'secondary', 'responsibility', 'to', 'the', 'agency', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'this', 'term', ',', 'students', 'take', 'three', '1', '0', '-week', 'core', 'courses', '(', 'compulsory', ')', 'and', 'the', 'equivalent', 'of', 'two', '1', '0', '-week', '', 'courses', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'were', '3', 'single', 'room', 'apartments', 'and', '5', '9', 'apartments', 'with', 'five', 'or', 'more', 'rooms', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'can', 'be', 'seen', '', 'above', 'the', '', 'as', 'they', '', 'for', 'small', '', 'and', 'mice', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'lessons', 'were', 'learned', 'from', 'minamata', 'and', 'the', 'investigation', 'into', 'the', 'cause', 'of', 'the', 'outbreak', 'proceeded', 'much', 'more', '', 'than', 'it', 'had', 'in', 'minamata', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'kičevo', '(', ';', ')', 'is', 'a', 'city', 'in', 'the', 'western', 'part', 'of', 'north', 'macedonia', ',', 'located', 'in', 'a', 'valley', 'in', 'the', '', 'slopes', 'of', 'mount', '', ',', 'between', 'the', 'cities', 'of', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'is', 'a', '1', '9', '2', '5', 'american', 'mgm', 'silent', 'drama', 'film', 'directed', 'by', '', 'browning', ',', 'who', 'later', 'directed', 'mgm', \"'s\", '``', '', \"''\", '(', '1', '9', '3', '2', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rigid', 'lines', 'can', 'not', 'be', 'bent', ',', 'so', 'they', 'often', 'need', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'are', 'located', 'throughout', 'the', 'new', 'subdivisions', 'in', 'the', 'suburb', ',', 'as', 'well', 'as', 'walking', 'and', '', 'paths', 'leading', 'to', 'newly', 'created', 'artificial', 'lakes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '2', ',', 'the', 'cd', 'label', 'classic', '', '', '(', '', ')', 'from', 'germany', 'released', 'a', 'cd', 'with', 'her', '', 'music', ',', 'performed', 'by', 'the', '', 'philharmonic', 'orchestra', ',', '', 'orchestra', 'and', 'conductor', 'david', '', '(', '', '7', '7', '7', '6', '7', '0', '2', ')', '.', '']\n", "['', '', '', 'did', 'a', 'commentary', 'on', 'the', 'text', 'which', 'has', 'been', 'given', 'the', 'english', '', '', 'the', 'profound', 'meaning', ':', 'a', 'commentary', 'to', '``', 'the', 'profound', 'inner', 'meaning', \"''\", '(', '', '', ')', \"'\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'with', 'washington', 'at', 'valley', '', ',', 'pennsylvania', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'term', 'as', 'prime', 'minister', 'became', 'a', '', 'period', 'for', '', 'and', 'other', 'coalition', 'partners', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '9', '2', 'plovdiv', 'became', 'the', 'host', 'of', 'the', 'first', 'bulgarian', 'fair', 'with', 'international', 'participation', 'which', 'was', 'succeeded', 'by', 'the', 'international', 'fair', 'plovdiv', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'won', 'the', '', 'media', 'merit', 'award', 'in', '1', '9', '9', '1', 'as', 'best', 'reporter', 'for', 'coverage', 'of', 'the', 'military', 'air', 'crash', 'in', '', ',', 'lagos', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '2', '7', 'she', 'edited', 'the', '', 'of', '(', '1', '7', '7', '7', '-', '1', '8', '6', '3', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'recorded', 'with', 'mississippi', 'john', 'hurt', 'in', '1', '9', '6', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'and', '', 'decrease', '', 'by', '', 'the', '', 'effect', 'of', 'angiotensin', ',', 'thereby', '', 'the', 'amount', 'of', 'work', 'the', 'heart', 'must', 'perform', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'even', 'so', ',', 'the', 'catch', 'landed', 'in', 'yorkshire', 'represented', 'a', 'value', 'of', 'over', '£', '1', '6', 'million', 'in', '2', '0', '1', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'müller', 'argues', 'that', 'the', 'european', 'union', 'has', 'yet', 'to', 'fully', '', 'and', 'embrace', 'constitutional', 'patriotism', 'as', 'an', 'identity', ',', 'countries', 'do', 'seem', 'to', 'be', '', 'on', '``', 'political', '', ',', 'civic', 'expectations', ',', 'and', 'policy', 'tools', \"''\", 'that', 'fall', 'under', 'the', '', 'of', 'constitutional', 'patriotism', '.', '', '', '']\n", "['', 'the', 'town', 'is', 'located', 'in', 'the', 'bank', 'of', '', 'river', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '6', '4', 'of', 'the', 'us', '``', 'billboard', \"''\", 'charts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'nevertheless', ',', 'there', 'were', 'still', 'numbers', 'of', 'the', 'old', 'pieces', 'serving', 'with', 'southern', 'armies', 'as', 'late', 'as', 'the', 'battle', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '6', ',', 'the', 'estimated', 'impact', 'of', 'that', 'year', \"'s\", 'convention', 'was', 'down', 'to', '$', '1', '5', '0', 'million', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'module', 'was', 'included', 'as', 'part', 'of', 'the', '``', '', 'of', 'horror', \"''\", '', 'compilation', 'produced', 'in', '1', '9', '8', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'patrols', 'of', 'the', 'danish', 'west', '', 'was', 'to', 'protect', 'american', '', 'prior', 'to', 'u.s.', 'entry', 'into', 'world', 'war', 'i', 'in', 'april', '1', '9', '1', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'in', 'favour', 'of', 'collaboration', 'with', 'the', 'democratic', 'party', 'and', 'supported', 'the', '', 'coalition', 'government', 'of', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'instrumental', 'in', 'establishing', 'the', 'present-day', 'botanical', 'garden', '', 'belgrade', 'while', 'supporting', 'other', 'botanical', 'gardens', 'with', '', 'grown', 'in', 'belgrade', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'clear', ',', 'through', 'a', 'process', 'of', 'elimination', ',', 'that', 'only', 'she', 'could', 'be', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'beginning', 'of', '2', '0', '1', '4', ',', 'campi', 'had', 'a', 'good', '', 'and', 'internal', 'competition', 'with', 'the', 'new', '', 'ex', '', ',', 'francisco', '', ',', 'who', 'becomes', '', 'and', 'one', 'of', 'the', 'best', 'players', 'in', 'a', '', 'level', 'team', 'points', 'will', 'arise', '.', '', '', '', '', '']\n", "['', 'returning', 'to', 'the', 'ring', 'on', 'january', '1', '5', ',', '1', '9', '0', '7', ',', 'walcott', 'lost', 'a', '', 'decision', 'on', 'points', 'to', 'mike', '', 'in', 'providence', ',', 'rhode', 'island', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'seven', 'people', ',', 'including', 'two', 'children', ',', 'had', 'died', 'during', 'the', 'journey', 'and', 'four', 'babies', 'were', 'born', 'between', 'hamburg', 'and', 'rockhampton', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'buried', 'in', '', 'cathedral', ',', 'but', 'his', 'tomb', 'was', 'destroyed', 'soon', 'after', 'his', 'burial', 'by', 'a', 'fire', 'in', 'the', 'cathedral', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'nazis', 'had', 'captured', 'the', 'town', ',', 'jewish', 'homes', 'and', 'shops', 'were', '', 'by', 'the', 'civilians', 'from', '', 'towns', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'age', 'of', '2', '6', ',', 'roy', 'returned', 'to', 'washington', 'state', 'to', 'run', 'for', '', 'attorney', 'in', '', 'county', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '2', '2', ',', '', 'and', '', 'divorced', ';', 'five', 'years', 'later', ',', 'on', '1', '0', 'december', '1', '9', '2', '7', ',', 'he', 'married', 'catherine', 'mary', 'davis', 'at', 'st', 'stephen', \"'s\", 'presbyterian', 'church', ',', 'sydney', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'december', '2', '0', '1', '5', ',', '', 'of', '', '', '', 'in', '', '', 'was', 'mentioned', 'as', 'a', 'way', 'to', 'produce', 'a', 'new', 'strong', 'and', 'plastic', 'alloy', 'suitable', 'for', 'use', 'in', 'aeronautics', ',', 'aerospace', ',', 'automobile', 'and', '', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'kuryakin', 'has', 'been', 'the', 'subject', 'of', 'several', 'popular', 'songs', 'including', '', '', \"'s\", '``', 'love', 'ya', '', \"''\", 'and', '``', '', 'kuryakin', 'looked', 'at', 'me', \"''\", 'penned', 'by', 'the', 'cleaners', 'from', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'born', 'in', 'the', 'netherlands', ',', '', 'is', 'of', '', 'descent', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'retained', 'his', 'card', 'for', '2', '0', '1', '0', ',', 'finishing', 'within', 'the', 'top', '1', '0', '0', 'of', 'the', 'race', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'christian', 'scholars', 'interested', 'in', 'the', 'bible', '', 'with', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'park', 'is', 'bordered', 'by', 'the', 'protected', 'areas', 'of', '', 'de', 'santa', 'elena', 'and', '', 'del', '', 'in', 'mexico', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'selected', 'to', 'play', 'for', 'the', 'korea', 'national', 'baseball', 'team', 'in', 'the', 'inaugural', 'world', 'baseball', 'classic', 'in', '2', '0', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', '', '', '', 'indigenous', 'village', 'located', 'within', 'the', 'municipality', 'of', '', 'in', 'the', 'state', 'of', '', '', ',', 'brazil', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'agrees', 'with', 'the', 'findings', 'of', 'previous', 'authors', 'and', 'suggests', 'that', 'the', 'absence', 'of', 'a', 'widely', 'distributed', 'compound', 'like', '', 'among', 'the', '``', '', \"''\", 'examined', 'might', 'provide', 'additional', '', 'information', 'for', 'these', 'taxa', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'shiner', 'began', 'his', 'testimony', 'by', 'stating', ',', \"''\", 'i', 'am', 'a', '', 'man', 'in', 'the', 'paint', 'shop', 'of', 'the', 'washington', 'navy', 'yard', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'walking', 'path', 'marked', 'by', 'a', 'red', 'line', '(', 'white', 'background', ')', 'leads', 'in', 'parallel', 'to', 'the', 'stream', ',', 'up', 'to', 'the', '', ',', '', 'inclined', 'plateau', 'of', '', 'de', '', ',', 'from', 'which', '', 'du', '', '``', '(', '2', '7', '5', '7', 'm', ')', \"''\", 'can', 'be', 'reached', '.']\n", "['', 'while', '', 'of', 'local', 'veterinary', 'and', 'thomas', '', 'of', 'the', 'mayor', \"'s\", 'daughter', 'is', 'secretly', '', 'and', 'sought', 'after', ',', 'the', 'siblings', 'have', 'eyes', 'only', 'for', 'each', 'other', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'west', '', 'played', 'their', 'last', 'game', 'at', 'the', 'ground', 'in', 'on', '2', 'september', '1', '9', '8', '9', 'ending', 'a', 'run', 'of', '6', '8', 'seasons', 'at', '', 'oval', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'michigan', 'entered', 'the', 'game', 'ranked', 'sixth', 'nationally', 'in', 'the', '', 'poll', ',', 'while', 'wisconsin', 'was', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'french', ',', 'german', ',', 'spanish', ',', 'italian', ',', 'and', 'russian', 'versions', 'of', 'the', 'game', 'will', 'also', 'be', 'released', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'american', '', 'william', 'a.', '', 'said', 'all', 'the', 'missionaries', 'and', 'scholars', 'of', 'chinese', 'had', 'used', 'morrison', \"'s\", 'dictionary', 'as', 'the', '``', 'common', 'fountain', \"''\", 'from', 'which', 'they', 'could', '``', 'obtain', 'the', 'knowledge', 'they', 'desired', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'general', 'barnard', 'would', 'say', 'in', 'a', 'december', '2', '4', ',', '1', '8', '6', '2', 'report', ',', '``', 'it', 'is', '', 'necessary', 'to', 'keep', 'these', 'infantry', 'supports', 'attached', 'to', 'the', 'works', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '``', 'the', '', \"''\", ',', 'fielding', 'voiced', 'the', 'opposition', 'attack', 'on', '', 'and', 'corruption', 'in', 'british', 'politics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'composed', 'the', 'score', ',', 'while', 'the', 'end', 'title', \"'s\", 'song', 'was', 'written', 'by', 'dan', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'works', 'from', '', \"'s\", 'notion', 'of', '``', 'creative', 'advance', ',', \"''\", 'according', 'to', 'which', 'the', 'world', 'is', 'in', 'a', '', 'state', 'of', 'emergence', 'characterized', 'by', 'the', '', 'variation', 'of', 'form', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'adults', 'fed', 'by', 'tube', 'have', 'previously', 'shown', 'a', 'significantly', 'higher', 'rate', 'and', 'quantity', 'of', '', 'than', 'adults', 'fed', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'jackson', 'estate', 'said', '', '``', 'must', 'have', 'known', \"''\", 'about', 'the', '1', '9', '9', '2', 'contract', ',', 'since', 'he', 'had', 'been', 'senior', 'vice', 'president', 'of', 'communications', 'then', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'till', 'the', 'terms', 'were', 'carried', 'out', 'he', 'was', 'to', 'be', 'allowed', 'to', 'stay', 'in', 'hanau', 'as', 'a', 'private', 'man', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '', '(', 'born', '1', '9', '7', '7', ')', 'is', 'a', 'british', 'doctor', 'and', 'politician', 'who', 'has', 'served', 'as', 'member', 'of', 'parliament', '(', 'mp', ')', 'for', '', 'since', 'the', '2', '0', '1', '6', 'by-election', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'three', 'years', 'on', ',', 'manager', 'steve', '', 'praised', 'his', 'predecessor', 'for', 'his', 'role', 'of', 'signing', 'mackay', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'a', 'scholar', 'of', 'the', '', 'international', 'bar', 'association', 'during', 'its', '', 'conference', 'in', 'new', 'delhi', ',', 'india', 'in', '1', '9', '9', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'retiring', ',', 'coontz', 'wrote', 'a', 'memoir', '', 'his', 'early', 'life', 'growing', 'up', 'in', '', ',', 'missouri', ',', 'and', 'his', 'navy', 'career', ',', 'titled', '``', 'from', 'the', 'mississippi', 'to', 'the', 'sea', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'has', 'returned', 'in', '', 'from', 'her', 'retirement', 'and', 'has', 'included', 'in', 'the', '', 'of', '``', 'ang', '', '', '', '', \"''\", 'and', '``', 'ang', '', '', '', '(', 'last', 'na', '', '!', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'regarded', 'as', '', 'in', 'financial', 'matters', ',', '', 'married', 'into', 'a', 'wealthy', 'family', 'following', 'the', 'death', 'of', 'his', 'first', 'wife', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'the', 'consecutive', 'failures', 'in', 'the', 'brazilian', 'championship', 'and', 'state', 'championship', 'of', 'the', 'then', 'holder', '', '', 'won', 'another', 'chance', 'in', 'the', 'team', \"'s\", 'athletic', 'in', 'july', '2', '0', '0', '8', ',', 'having', 'a', 'good', 'run', 'of', 'games', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '1', ',', '', 'also', 'wrote', 'and', 'performed', 'in', 'the', 'off-broadway', 'production', '``', '', 'mouth', \"''\", ',', 'where', 'he', 'played', 'seven', 'different', 'characters', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'type', 'species', 'of', '``', '', \"''\", ',', 'it', 'was', 'described', 'without', 'a', '', 'or', 'type', 'locality', ',', 'and', 'due', 'to', 'this', 'it', 'is', 'not', 'known', 'exactly', 'to', 'which', 'population', 'the', 'name', '``', '', '', \"''\", 'applies', ',', 'making', 'it', 'a', '``', '', '', \"''\", '.', '', '', '', '']\n", "['', 'the', 'names', 'of', 'the', 'new', 'digital', 'terrestrial', 'channels', 'were', 'presented', 'in', 'march', '2', '0', '0', '9', ':', 'dr', 'k', ',', 'dr', '', '(', 'for', 'children', ')', 'and', 'dr', 'hd', 'together', 'with', 'dr', '1', ',', 'dr', '2', 'and', 'dr', 'update', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'named', 'to', 'the', 'major', 'league', 'baseball', '(', 'mlb', ')', 'rookie', '', 'team', 'by', 'both', '', 'and', 'baseball', 'america', 'and', 'finished', 'in', 'fourth', 'place', 'in', 'the', 'al', 'rookie', 'of', 'the', 'year', 'voting', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'located', 'in', 'the', 'greater', 'upper', 'nile', 'region', 'and', 'it', 'bordered', 'eastern', 'nile', 'to', 'the', 'north', ',', 'eastern', '', 'to', 'the', 'south', ',', 'and', 'ethiopia', 'to', 'the', 'east', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'can', 'remain', 'alive', 'by', 'coming', 'to', 'his', 'mother', \"'s\", 'grave', 'and', 'whom', '', 'by', 'his', 'death', 'mother', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'warning', 'has', 'been', 'issued', 'to', 'police', 'officers', 'to', 'be', 'extremely', '', 'when', '', 'npf', 'members', 'because', 'of', 'the', 'gang', \"'s\", '``', 'armed', 'and', 'dangerous', \"''\", 'status', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'military', 'garrison', 'was', 'established', 'nearby', 'but', 'both', 'government', 'authorities', 'and', 'workers', 'adopted', 'a', 'relatively', 'passive', 'stance', 'during', 'the', 'remaining', 'years', 'before', 'the', 'outbreak', 'of', 'the', '1', '9', '1', '0', 'mexican', 'revolution', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'found', 'in', 'north', 'america', ',', 'including', 'its', 'type', 'location', ',', 'the', 'santa', 'rita', 'mountains', 'in', 'southeastern', 'arizona', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'subsequently', '', 'to', 'the', 'minor', '', 'on', 'february', '2', ',', '2', '0', '1', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'a', '', '', 'selection', 'and', 'rated', 'as', 'the', 'fourth', 'best', 'offensive', 'tackle', 'in', 'florida', 'by', '``', 'the', 'florida', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'certain', '', 'plants', 'have', 'long', 'been', 'sold', 'in', 'their', 'dry', ',', '``', '', \"''\", 'form', 'as', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '0', '9', ',', '', ',', 'who', 'earned', '$', '1', ',', '5', '0', '0', ',', '', 'a', '$', '2', ',', '5', '0', '0', 'salary', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'in', 'this', 'article', 'was', 'disguised', 'as', 'a', '', 'of', 'praise', ',', 'according', 'to', 'waugh', \"'s\", '', 'martin', '', ',', 'arranged', 'around', 'an', '', 'photograph', 'of', 'cruttwell', 'displaying', '``', 'bad', 'teeth', 'within', 'an', '', 'smile', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'met', 'with', 'some', 'opposition', 'with', '', 'raising', 'concerns', 'about', 'cattle', 'and', 'horses', '', 'on', 'the', 'new', '', 'as', 'they', '', '', 'of', 'cattle', 'from', 'victoria', 'parade', 'onto', 'the', '', 'bridge', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'military', 'intelligence', 'hall', 'of', 'fame', 'is', 'a', 'hall', 'of', 'fame', 'established', 'by', 'the', 'military', 'intelligence', 'corps', 'of', 'the', 'united', 'states', 'army', 'in', '1', '9', '8', '8', ',', 'to', 'honor', 'soldiers', 'and', 'civilians', 'who', 'have', 'made', 'exceptional', 'contributions', 'to', 'military', 'intelligence', '.', '', '', '', '', '', '', '', '']\n", "['', '', 'grew', 'up', 'in', 'louisville', ',', 'kentucky', ',', 'where', 'he', 'attended', '', 'high', 'school', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'small', 'part', 'of', 'the', 'settlement', 'also', 'lies', 'in', 'the', '', 'municipality', 'of', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rejected', 'concepts', 'for', '', 'included', 'her', 'being', 'either', 'a', 'civilian', ',', 'a', '', ',', 'or', 'a', 'military', 'commander', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'may', '2', '6', ',', '1', '9', '4', '2', ',', '', 'was', 'sold', 'to', 'earl', 'm.', 'key', 'and', 'the', '', 'changed', 'to', '', 'in', '1', '9', '4', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'attributed', 'hong', \"'s\", 'ability', 'to', 'a', 'lost', 'goal', ',', 'saying', '``', 'she', 'got', 'in', 'my', 'head', 'and', 'as', 'i', 'approached', 'the', 'ball', 'i', 'was', 'thinking', 'more', 'about', 'her', 'than', 'about', 'what', 'i', 'should', 'be', 'doing', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'hall', 'and', 'park', 'is', 'an', '1', '8', 'th-century', 'hall', 'with', 'a', 'deer', 'park', ',', 'both', 'now', 'owned', 'by', 'the', 'national', 'trust', 'and', 'previously', 'owned', 'by', 'the', '', 'of', 'stamford', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'stated', 'that', 'the', 'segment', 'provided', 'him', 'with', 'new', 'challenges', 'and', 'opportunities', 'for', '``', 'creative', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'david', '', '', 'charged', 'the', 'general', 'priesthood', 'committee', ',', 'led', 'by', 'harold', 'b.', 'lee', ',', 'to', 'form', 'committees', '``', 'to', 'correlate', 'the', 'instruction', 'and', 'curriculum', 'of', 'all', 'priesthood', 'and', 'auxiliary', 'organizations', 'of', 'the', 'church', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'served', 'for', 'the', 'next', '2', '0', 'years', 'with', 'the', '6', 'th', 'cavalry', 'commanding', 'b', 'company', 'at', 'various', 'posts', 'throughout', 'the', 'west', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'area', 'is', 'part', 'of', 'the', 'traditional', 'region', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'performed', 'with', 'the', 'other', 'ones', 'during', 'the', 'band', \"'s\", 'final', 'tour', 'with', 'that', 'name', 'in', '2', '0', '0', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'thick', 'leaves', 'have', 'a', 'dark', 'green', 'surface', 'and', 'a', 'slightly', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '2', '0', '0', '4', 'dvd', 'release', 'restored', 'the', 'songs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'airport', 'officials', 'had', 'claimed', 'that', 'wickrematunge', 'required', '``', 'special', 'permission', \"''\", 'to', 'leave', 'sri', 'lanka', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rugby', 'league', 'in', 'the', 'solomon', 'islands', 'has', 'existed', '', 'since', 'the', '1', '9', '9', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'marion', 'f.', '', 'was', 'a', '', 'and', 'plaster', 'contractor', 'who', 'worked', 'on', 'the', '', 'hotel', ',', 'the', '', 'building', ',', 'and', 'st.', 'michael', \"'s\", 'cathedral', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'a', 'member', 'of', 'the', 'société', '', '', ',', 'and', 'a', '', 'in', 'the', '', '', 'and', 'the', '', 'de', 'la', 'conception', 'de', 'portugal', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'shannon', '', 'endean', 'to', 'the', 'border', ',', 'he', 'explains', 'that', 'endean', \"'s\", 'otherwise', 'comprehensive', 'research', 'failed', 'to', 'note', 'the', '2', '0', ',', '0', '0', '0', 'immigrant', 'workers', 'who', 'did', 'most', 'of', 'the', 'work', 'in', '', ',', 'but', 'were', 'politically', '', 'by', 'the', '', 'government', '.', '', '', '', '']\n", "['', 'in', 'later', 'years', ',', 'however', ',', 'improved', 'medication', 'has', '', '', 'what', 'he', 'described', 'as', ',', '``', 'a', 'better', 'quality', 'of', 'life', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'hill', ',', 'immediately', 'to', 'the', 'north', 'of', 'regent', \"'s\", 'park', ',', 'at', 'is', 'a', 'popular', 'spot', 'from', 'which', 'to', 'view', 'the', 'city', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'harris', 'was', 'also', 'nominated', 'for', 'best', 'british', 'male', 'solo', 'artist', 'at', 'the', '2', '0', '1', '3', '', 'awards', 'in', 'february', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'defeating', 'banks', ',', 'he', 'then', 'hoped', 'to', 'move', 'on', 'culpeper', 'court', 'house', ',', 'north', 'of', '', 'and', 'the', '', 'point', 'of', 'the', 'union', 'arc', 'about', 'northern', 'virginia', ',', 'to', 'keep', 'pope', \"'s\", 'army', 'from', 'uniting', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'gives', 'his', 'consent', 'to', 'gaston', \"'s\", 'marriage', 'with', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'development', 'phase', ',', '', 'between', 'the', 'early', 'modernism', ',', 'international', 'style', ',', 'and', 'late', 'modernism', ',', 'without', 'including', 'the', '', '', ',', 'lasted', 'up', 'to', '1', '9', '7', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', \"'\", 'is', 'related', 'but', 'not', 'identical', 'to', '``', '', '', \"''\", ',', 'the', 'red', 'triangle', 'slug', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'later', 'threw', 'a', 'second', '', 'on', 'april', '2', '2', ',', '1', '8', '9', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'casualties', 'achieved', 'underground', 'success', 'in', 'the', '2', '0', '0', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'no', 'secondary', 'school', 'in', '', ',', 'but', 'the', '', 'are', 'isis', 'district', 'state', 'high', 'school', 'in', '', 'and', 'gin', 'gin', 'state', 'high', 'school', 'in', 'gin', 'gin', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'is', 'the', 'current', 'women', \"'s\", 'international', 'boxing', 'association', 'lightweight', 'champion', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '6', ',', 'georgia', 'enacted', '``', 'law', 'of', 'georgia', 'on', 'elimination', 'of', 'domestic', 'violence', ',', 'protection', 'and', 'support', 'of', 'victims', 'of', 'domestic', 'violence', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'women', \"'s\", 'side', ',', 'the', 'rachel', '', '', 'from', '', 'continued', 'their', 'dominance', ',', 'winning', 'their', 'third', 'straight', '', ',', 'defeating', 'the', 'olympic', 'champion', 'jennifer', 'jones', '', 'of', '', 'in', 'the', 'final', ',', '8', '-', '7', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'preserves', 'fossils', 'dating', 'back', 'to', 'the', '', 'period', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '0', ',', '', 'was', 'designated', 'as', 'a', 'california', 'catalyst', 'community', 'by', 'the', 'california', 'department', 'of', 'housing', 'and', 'community', 'development', 'to', 'support', 'innovation', 'and', 'test', 'sustainable', 'strategies', 'that', 'reflect', 'the', '', 'of', 'environmental', ',', 'economic', ',', 'and', 'community', 'health', '.', '', '', '', '', '', '', '']\n", "['', 'the', 'hotel', 'features', 'a', 'ground', 'floor', 'shopping', 'mall', ',', 'with', 'retail', 'franchises', 'including', '', ',', '', '', ',', '', 'and', '', ',', '', 'back', 'to', 'the', 'building', \"'s\", 'origins', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'among', 'his', 'pupils', 'at', 'the', 'academy', 'were', 'pietro', '', ',', 'who', 'would', 'replace', 'him', 'as', 'director', 'of', 'the', 'academy', ',', 'and', 'pietro', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'produces', ',', '', ',', 'and', 'stars', 'in', 'the', 'series', ',', 'and', '', 'much', 'of', 'its', 'operations', 'as', '', 'of', 'two', 'little', 'hands', 'productions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'usually', 'such', 'profound', '', 'like', 'this', 'is', 'commonly', 'found', 'in', 'the', '1', '8', 'th', ',', 'not', 'the', '2', '1', 'st', 'century', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'unit', 'has', 'maintained', '1', '0', 'goats', ',', 'all', 'named', '', 'as', 'of', '2', '0', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'autobiography', ',', '``', 'thoughts', 'of', 'a', 'lifetime', \"''\", ',', 'was', 'published', 'in', '1', '9', '7', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', '', 'note', 'institutional', 'features', ',', 'such', 'as', 'a', 'lack', 'of', 'focus', 'on', 'meaningful', 'electoral', 'politics', ',', 'as', 'reasons', 'for', 'why', 'it', 'has', 'not', 'fully', 'been', '', 'at', 'the', '', 'level', 'in', 'the', 'european', 'union', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'career', 'includes', 'acting', ',', 'writing', ',', '', ',', 'directing', 'and', '', 'into', 'english', 'from', 'norwegian', 'texts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'term', 'entered', 'the', 'english', 'language', 'when', '', '', 'and', '', 'the', 'great', 'conquered', 'and', 'occupied', '', 'england', ';', 'the', '', 'of', '', 'were', 'highly', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'republican', 'victory', 'was', '', '', \"'s\", 'greatest', 'triumph', ',', 'however', 'he', 'too', 'has', 'been', '', 'for', 'failing', 'to', 'fully', '', 'his', 'success', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'title', 'track', 'was', 'the', 'opening', 'theme', 'for', 'the', 'anime', '``', 'magical', 'girl', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'male', '', 'initially', 'took', 'the', 'lead', 'in', '', 'by', 'learning', 'the', 'language', 'of', 'the', 'arriving', 'culture', 'and', 'taking', 'on', 'modern', ',', '', 'earning', 'jobs', ';', 'however', ',', 'a', 'lack', 'of', 'education', 'began', 'to', '', 'the', 'men', \"'s\", 'ability', 'to', 'find', 'and', 'keep', 'jobs', '.', '', '', '', '', '', '']\n", "['', 'even', 'with', 'two', 'reservoirs', 'constructed', 'at', 'the', 'summit', 'as', '', 'to', 'the', 'canal', ',', 'the', 'union', 'canal', 'still', 'required', '', 'water', 'from', 'a', '', 'at', 'the', 'junction', 'of', '', 'creek', 'and', '', \"'s\", 'run', 'and', 'later', 'from', 'a', 'second', '', 'on', '', 'creek', 'on', 'the', '', '.', '', '', '']\n", "['', '', 'r.', 'mcphee', '(', 'born', 'april', '8', ',', '1', '9', '7', '0', ')', 'is', 'an', 'american', 'author', ',', 'talk', 'radio', 'host', ',', 'and', '', 'emmy', 'nominated', 'investigative', 'journalist', 'from', 'boston', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'josh', '', '(', 'born', 'december', '7', ',', '1', '9', '8', '5', ')', 'is', 'an', 'american', 'former', 'professional', 'ice', 'hockey', 'player', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'won', 'the', 'vault', 'final', 'with', 'a', 'score', 'of', '1', '5', '.', '3', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'of', '', \"'s\", 'most', 'notable', 'decisions', 'was', 'in', '``', 'clark', 'v.', 'clark', \"''\", ',', 'a', 'case', 'that', 'heavily', 'influenced', 'the', 'law', 'regarding', 'the', 'capacity', 'of', '', 'persons', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'between', '1', '9', '7', '8', 'and', '1', '9', '8', '6', 'it', 'flew', 'the', '', '4', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'maneuvering', '', 'into', 'leaving', 'the', 'film', \"'s\", 'content', 'largely', 'intact', ',', 'hitchcock', 'learns', 'the', 'studio', 'is', 'only', 'going', 'to', 'open', 'the', 'film', 'in', 'two', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'denied', 'being', 'attacked', 'directly', 'and', 'instead', 'suggested', 'that', 'users', 'fell', 'victim', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", '', 'in', '``', '', '', '', '', '!', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', 'to', 'this', 'number', ',', 'the', 'outgoing', 'world', 'champion', 'and', 'the', 'current', 'continental', 'champions', 'were', 'also', 'able', 'to', 'take', 'part', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'engines', 'were', 'equipped', 'with', '', 'governor', ',', 'pop', 'safety', 'valve', ',', 'steam', 'gauge', ',', 'feed', 'water', '', ',', 'direct', 'acting', 'pump', ',', '', ',', '', ',', 'brake', ',', 'and', 'a', 'full', 'supply', 'of', '', 'and', 'fire', 'tools', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'of', '', 'can', 'be', 'extremely', 'large', ',', '&', 'gt', ';', '2', '0', ',', '0', '0', '0', '', ',', 'and', '', 'of', 'over', '8', '0', '', 'of', '2', '5', '0', '', 'each', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'month', 'of', '', 'of', '2', '0', '1', '3', ',', 'he', 'conducted', 'the', 'annual', '', 'of', 'al', '', '', '', 'on', 'behalf', 'of', '', 'mohammed', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'objective', 'of', 'treatment', 'is', 'to', 'create', 'a', '', 'clinical', 'condition', 'for', '', 'as', 'many', 'teeth', ',', 'for', 'as', 'long', 'as', 'possible', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'li', '', 'made', 'this', 'his', 'home', 'for', 'about', 'ten', 'years', ',', 'living', 'in', 'a', 'home', 'owned', 'by', 'his', 'wife', \"'s\", 'family', 'on', 'mt', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'died', 'on', '2', '4', 'january', '1', '6', '2', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', '', ',', 'the', 'song', 'is', '``', 'not', 'intended', 'as', 'a', '', 'on', '[', '', \"'s\", ']', 'character', \"''\", 'and', 'the', 'name', 'was', 'chosen', '``', 'solely', 'for', '', 'reasons', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'still', ',', 'during', 'this', 'time', ',', 'it', 'began', '', 'closer', 'to', '', '(', 'which', 'had', 'turned', 'the', 'fox', '', 'down', 'before', 'the', 'network', 'approached', '', ')', 'in', 'the', 'ratings', 'after', 'having', 'been', 'well', 'behind', 'channel', '1', '1', 'for', 'most', 'of', 'its', 'first', 'two', 'decades', 'on', 'the', 'air', '.', '', '']\n", "['', 'not', 'all', 'such', 'attitudes', 'were', 'favorable', 'towards', 'the', 'jews', ';', 'they', 'were', '', 'in', 'part', 'by', 'a', 'variety', 'of', 'protestant', 'beliefs', ',', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'had', 'been', 'a', 'member', 'of', 'the', 'bell', 'city', 'council', 'for', 'over', 'a', 'decade', ',', '', 'in', '2', '0', '0', '9', ',', 'and', 'served', 'as', 'the', 'mayor', 'in', '2', '0', '0', '2', '-', '2', '0', '0', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'that', 'same', 'year', ',', 'he', 'began', 'another', 'successful', 'collaboration', ',', 'this', 'time', 'with', 'the', 'band', 'massive', 'attack', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'the', 'sole', 'representative', 'of', 'the', '', 'genus', '', ',', 'described', 'from', 'the', '', 'do', '', 'national', 'park', 'in', 'southeastern', 'brazil', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'has', 'conducted', 'diplomatic', 'relations', 'with', 'states', 'and', 'international', 'organisations', 'since', 'its', 'inception', 'in', '1', '9', '7', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', 'born', '1', '9', '5', '3', ')', 'is', 'a', 'politician', 'from', 'karnataka', ',', 'india', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '1', ',', 'the', 'parent', 'company', ',', '', ',', 'changed', 'its', 'name', 'to', '', 'inc', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'over', 'the', 'course', 'of', 'their', 'career', 'their', 'music', 'evolved', 'from', '', 'punk', 'rock', 'to', '', 'aspects', 'of', 'classic', 'rock', 'and', 'heavy', 'metal', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '2', ',', '', 'and', 'unesco', 'provided', 'the', 'school', 'with', 'new', 'equipment', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'ali', ',', '', 'singh', \"'s\", 'government', 'was', '', ',', 'and', 'he', 'was', 'a', 'mean', '', 'in', 'contrast', 'to', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'place', '', 'uncommon', ',', 'rare', 'or', 'endangered', 'aspects', 'of', 'the', 'cultural', 'or', 'natural', 'history', 'of', 'new', 'south', 'wales', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'november', '1', '9', '9', '5', ',', '', 'pictures', 'which', 'was', 'based', 'at', 'hollywood', 'pictures', ',', 'a', 'division', 'of', 'disney', 'studios', ',', '', 'the', 'script', 'for', '1', '8', 'months', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'august', '2', '0', '1', '7', ',', '', 'was', 'announced', 'as', 'a', '', 'for', 'the', '', 'series', 'of', '', 'come', 'dancing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '7', '6', 'trustees', '(', 'at', 'large', ')', ',', 'and', 'four', 'of', 'the', 'medicine', 'hat', 'catholic', 'separate', 'regional', 'division', 'no', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'conducts', 'classes', 'from', 'primary', 'to', 'senior', 'secondary', 'level', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'given', 'a', 'locally', '', '', '``', 'x', \"''\", ',', 'formula_', '1', '7', 'is', 'assumed', 'to', 'have', 'the', 'strong', '', '(', 'so', 'formula_', '1', '7', '2', ')', 'and', 'unless', 'stated', 'otherwise', ',', 'the', 'same', 'is', 'true', 'of', 'the', '', 'formula_', '1', '7', '3', '(', 'so', 'formula_', '1', '7', '4', '.', '']\n", "['', '', 'sophie', '', ',', 'his', 'mother', \"'s\", '', ',', 'reflected', 'that', '``', 'he', 'was', 'a', 'pretty', 'child', ',', 'tall', 'for', 'his', 'age', ',', 'with', 'regular', 'features', ',', '', 'dark', 'blue', 'eyes', 'with', 'a', 'spark', 'of', '', 'in', 'them', ',', 'brown', 'hair', ',', 'and', 'an', '', 'figure', '.', \"''\", '', '']\n", "['', 'in', '1', '9', '9', '8', ',', 'she', 'recorded', 'the', '``', 'st', 'matthew', 'passion', \"''\", 'with', 'the', '', 'and', 'the', '', '', ',', 'conducted', 'by', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'opie', 'advised', 'his', 'students', 'to', 'pay', 'great', 'attention', 'to', '', ',', 'whose', 'use', 'of', 'colour', 'he', 'considered', '', ',', '', 'students', 'that', '``', '', 'is', 'the', '', 'of', 'the', 'art', ',', 'that', 'clothes', 'poverty', 'in', '', '[', '...', ']', 'and', 'doubles', 'the', '', 'of', 'beauty', '.', '', '', '', '']\n", "['', 'in', 'the', 'same', 'period', ',', 'along', 'with', 'planning', 'activities', ',', '', 'deals', 'with', 'scientific', 'research', 'in', 'the', 'field', 'of', 'housing', 'quality', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'nothing', 'is', 'impossible', 'with', 'our', 'cooperation', ',', 'commitment', 'and', 'integrity', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'public', 'libraries', 'are', '', 'in', 'the', 'community', 'centers', 'in', 'the', 'villages', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'singles', 'start', 'with', 'the', '', 'tracks', '``', 'seven', 'seas', 'of', '', \"''\", 'through', 'to', '``', 'a', 'kind', 'of', 'magic', \"''\", 'complete', 'with', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'complete', 'bible', 'was', 'published', 'in', 'six', 'volumes', 'between', '1', '5', '7', '9', 'and', '1', '5', '9', '3', 'with', 'extensive', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'contributed', 'significantly', 'to', 'england', \"'s\", 'economic', 'development', 'before', 'and', 'during', 'the', 'industrial', 'revolution', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'construction', 'was', 'started', 'in', '1', '8', '9', '2', ',', 'triggering', 'other', 'similar', 'facilities', 'to', 'be', 'built', 'at', '', 'barracks', 'in', 'edinburgh', 'and', 'barry', '', 'outside', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', '4', '2', 'kilometers', 'in', 'diameter', 'and', 'reaches', 'a', 'depth', 'of', '1', '.', '8', 'kilometers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'henderson', 'through', 'the', 'streets', 'and', 'into', 'the', '', 'fifth', 'avenue', 'department', 'store', ',', 'and', 'the', 'two', 'end', 'up', '', 'in', 'an', '', 'between', 'floors', ',', 'holding', 'guns', 'on', 'each', 'other', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'da', 'costa', 'formed', 'a', 'government', 'on', '1', '8', 'november', 'that', 'was', 'almost', 'entirely', 'composed', 'of', 'paigc', 'members', ',', 'although', 'one', 'post', 'was', 'given', 'to', 'the', '', 'movement', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'or', '', 'doing', 'so', ',', 'however', ',', 'is', 'a', 'fourth', 'degree', 'felony', ',', 'along', 'with', 'transporting', 'those', 'foreigners', 'within', '', 'and', '', 'with', 'travel', 'documents', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'their', 'current', 'population', '(', 'as', 'of', '2', '0', '1', '4', ')', 'is', '1', ',', '0', '5', '4', 'tribal', 'members', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'melody', 'took', 'a', 'clear', 'lead', 'from', '', 'at', 'the', 'third', '', 'after', 'they', 'were', 'neck', 'and', 'neck', 'until', 'then', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'points', '', 'for', '', \"'s\", 'season', '', '3', '2', 'tries', ',', 'five', 'goals', ',', 'and', 'one', 'drop', 'goal', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'being', 'presented', 'at', 'the', '', 'court', 'in', 'london', ',', 'at', '1', '8', '', 'was', 'engaged', 'to', 'norman', '', ',', 'a', 'tennis', 'player', ',', 'who', 'was', 'the', 'first', 'australian', 'to', 'win', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'exception', 'is', 'mechanical', 'movement', ',', 'which', 'typically', 'moves', 'in', 'straight', 'lines', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '(', 'it', 'had', 'already', 'broken', 'up', 'the', '', 'combination', 'in', '1', '9', '1', '3', '.', ')', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'devi', 'was', 'born', 'of', 'a', '', 'family', 'in', 'the', 'year', '1', '8', '2', '2', 'in', 'the', 'village', 'called', '', 'near', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'through', 'the', '1', '9', '9', '0', 's', ',', 'mainstream', 'movie', 'and', 'television', 'actors', 'have', 'been', 'more', '', 'to', '', 'homosexuality', ',', 'as', 'the', 'threat', 'of', 'any', '', 'against', 'their', 'careers', 'has', '', 'and', 'society', \"'s\", '', 'of', 'gay', 'and', 'lesbian', 'people', 'has', 'increased', '.', '', '', '', '', '', '']\n", "['', 'its', 'athletics', 'are', 'known', 'as', 'the', 'independence', 'falcons', 'and', 'the', 'school', 'colors', 'are', '', 'and', 'silver', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'a', 'prolific', 'engineer', 'working', 'with', 'the', 'atlantic', 'telegraph', 'company', 'on', '', 'for', 'cable', 'laying', ',', 'the', 'metropolitan', 'board', 'of', 'works', 'on', 'sewage', 'systems', 'and', '', 'kingdom', '', 'on', 'his', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'used', 'the', 'challenge', 'as', 'a', '', 'tool', 'for', 'software', 'engineers', ',', 'and', 'winners', 'were', 'invited', 'to', 'interview', 'with', 'the', 'company', ',', 'resulting', 'in', 'several', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'so', 'in', '2', '0', '0', '7', 'singh', 'signed', 'for', 'churchill', 'brothers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'work', 'is', '', 'by', 'the', '', 'use', 'of', 'materials', '(', '', 'richard', '', 'only', 'much', 'larger', ',', 'but', 'smaller', 'than', '', '', \"'s\", 'full', 'room', 'works', ')', 'in', 'a', 'range', 'of', '', 'diverse', 'ways', ',', 'such', 'as', '', 'fabric', ',', 'wood', ',', 'and', '', '.', '', '', '', '']\n", "['', 'wisconsin', 'junction', 'is', 'an', 'unincorporated', 'community', 'located', 'in', 'the', 'town', 'of', '', ',', 'forest', 'county', ',', 'wisconsin', ',', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'began', 'his', 'law', 'enforcement', 'career', 'in', '1', '9', '7', '2', 'as', 'a', 'police', 'officer', 'for', 'the', 'st.', 'petersburg', 'police', 'in', 'florida', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'matt', '', 'is', 'a', 'prolific', '', 'using', 'a', 'number', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'market', 'gardens', 'are', 'necessarily', 'close', 'to', 'the', 'markets', ',', 'i.e', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '6', ',', 'a', '', 'began', '', 'on', '4', 'chan', 'boards', 'regarding', 'racist', 'conduct', 'by', '', '', 'and', '', 'banning', 'of', 'players', 'with', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'died', 'in', 'greensboro', 'of', 'a', 'heart', 'attack', 'on', 'june', '2', '1', ',', '2', '0', '1', '0', 'at', 'the', 'age', 'of', '7', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'novel', 'is', 'a', 'historical', 'and', 'literary', '', 'of', 'the', 'status', 'of', 'women', 'in', 'the', 'old', 'west', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'are', 'classified', 'as', '', ',', 'defined', 'as', '', 'food', '', 'that', '', 'affect', 'the', 'host', 'by', '', 'the', 'growth', 'and/or', 'activity', 'of', '', 'bacteria', 'in', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', '3', '0', 'days', ',', 'hanina', 'asked', 'the', 'angel', 'to', 'show', 'him', 'hanina', \"'s\", 'place', 'in', 'the', 'world', 'to', 'come', ',', 'and', 'the', 'angel', 'agreed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'started', 'playing', 'guitar', 'in', 'local', 'coffee', 'shops', 'in', 'the', 'late', '1', '9', '5', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'all', 'the', 'pages', 'are', 'printed', 'in', 'the', 'format', '(', '3', '8', 'cm', 'by', '2', '8', 'cm', ')', 'and', 'in', 'the', '', 'chosen', 'by', 'the', 'author', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'coontz', 'was', 'briefly', 'recalled', 'to', 'active', 'duty', 'in', '1', '9', '3', '0', ',', 'to', 'investigate', '', 'in', 'alaska', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', '7', 'july', '2', '0', '0', '6', ',', 'the', 'business', 'was', 'sold', 'as', 'a', 'going', 'concern', 'and', 'the', 'employees', 'were', 'engaged', 'again', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'to', 'his', '', ',', '', 'is', 'a', '', ',', '', 'attorney', 'general', 'notable', 'for', 'his', 'open', 'management', 'style', 'and', 'his', 'commitment', 'to', 'the', 'administration', 'of', 'justice', 'and', 'to', 'the', 'war', 'on', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'elements', 'are', '1', '2', ',', '1', '8', 'and', '3', '0', 'respectively', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'kudankulam', 'nuclear', 'power', 'plant', '(', 'or', 'kudankulam', '', 'or', '', ')', 'is', 'the', 'largest', 'nuclear', 'power', 'station', 'in', 'india', ',', 'situated', 'in', 'kudankulam', 'in', 'the', '', 'district', 'of', 'the', 'southern', 'indian', 'state', 'of', 'tamil', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', 'the', 'war', \"'s\", 'end', ',', 'after', 'most', 'of', 'the', 'mass', '', 'had', 'been', '', ',', 'the', 'body', 'count', 'has', 'remained', 'less', 'than', 'half', 'of', 'the', 'estimated', '1', '0', ',', '0', '0', '0', 'plus', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rivers', 'form', 'the', 'principal', 'part', 'of', 'the', 'water', 'systems', 'of', 'azerbaijan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', '', '', 'with', 'other', 'varieties', 'of', 'the', 'western', 'desert', 'language', ',', 'and', 'is', 'particularly', 'closely', 'related', 'to', 'the', '', 'dialect', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'received', 'the', 'british', 'film', 'institute', 'fellowship', 'in', 'recognition', 'of', 'her', 'outstanding', 'contribution', 'to', 'film', ',', 'presented', 'to', 'her', 'by', 'fellow', 'actor', 'ian', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'have', 'four', 'children', 'and', 'live', 'in', 'hyde', 'park', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'not', 'too', 'long', 'after', 'that', ',', 'the', 'pair', 'sold', 'both', 'horses', 'to', 'colonel', 'jim', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'a', 'knight', 'of', 'the', 'order', 'of', 'the', 'holy', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'the', '1', '9', '9', '8', 'census', 'it', 'has', 'a', 'population', 'of', '5', '7', ',', '2', '7', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '5', ',', 'a', '', 'accident', 'occurred', 'between', '', 'and', '', 'stations', ',', 'when', 'a', 'train', 'ran', 'over', 'a', '3', '3', '-year-old', 'man', 'walking', 'in', 'the', 'tracks', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'contains', 'only', 'the', 'species', '', '', 'from', 'madagascar', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'king', 'is', 'an', '', 'in', 'the', 'japanese', 'prison', 'camp', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", 'means', '``', 'long', 'island', \"''\", 'in', 'welsh', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'negotiations', 'to', 'operate', 'there', 'took', 'place', 'two', 'years', 'before', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'released', 'a', 'self-titled', 'debut', 'album', 'in', '2', '0', '0', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'won', 'a', 'bronze', 'medal', 'in', 'the', '', '2', '5', '0', '0', 'm', 'event', 'at', 'the', '1', '9', '8', '0', 'summer', 'olympics', 'in', 'moscow', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'his', 'first', 'season', 'at', 'middlesex', 'he', 'exclusively', 'played', 'in', 'the', 'second', 'xi', ',', 'sharing', 'the', '', 'with', 'david', '', 'and', 'appearing', 'in', 'six', 'matches', ',', 'scoring', '1', '9', '3', 'runs', 'at', '2', '7', '.', '5', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'elected', 'as', 'a', 'democrat', 'to', 'the', 'united', 'states', 'house', 'of', 'representatives', 'from', 'massachusetts', 'and', 'served', 'from', 'march', '4', ',', '1', '9', '0', '3', ',', 'to', 'march', '3', ',', '1', '9', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'appointment', 'probably', 'lasted', 'until', '1', '6', '2', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'born', 'in', '', ',', 'illinois', ',', 'on', 'december', '2', '3', ',', '1', '9', '2', '3', ',', 'the', 'son', 'of', '', '', '(', 'née', 'bond', ')', 'and', 'vernon', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'often', 'acted', 'as', 'a', '', ',', 'settling', '', 'between', 'his', 'own', 'and', 'other', 'gangs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'their', 'music', '', 'our', 'traditional', '', 'roots', 'with', 'modern', 'live', 'production', ',', '', 'tight', 'vocal', '', ',', 'and', 'lyrics', 'that', 'seek', 'to', 'understand', 'their', 'connection', 'to', 'the', 'past', '...', 'so', 'that', 'they', 'may', 'create', 'the', 'future', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '-', \"''\", '', \"''\", 'therefore', '', 'constant', 'and', 'does', 'not', 'change', 'for', 'gender', 'or', 'number', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'then', 'turned', 'the', 'weapon', 'on', 'his', 'head', 'and', 'fired', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'story', 'of', 'mr.', '', \"'s\", 'penguins', \"''\", ',', 'inspired', 'by', 'a', 'documentary', 'about', 'richard', 'e.', '', \"'s\", '', 'expedition', 'that', 'he', 'had', 'seen', 'with', 'his', 'family', 'in', '1', '9', '3', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'film', 'stars', '', '', ',', '', ',', '', 'and', '', '', 'in', 'the', 'lead', 'roles', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'scholars', 'have', 'called', '', 'a', '', 'instead', ',', 'citing', 'his', '', 'use', 'of', '', '(', 'as', 'in', 'the', 'title', 'of', 'the', 'collection', ',', '``', 'is', '5', ',', \"''\", 'which', 'stems', 'from', 'the', '', 'that', '``', 'two', 'plus', 'two', 'is', 'five', \"''\", ')', '.', '', '', '', '', '', '']\n", "['', 'the', '', ',', 'pittsburgh', '', 'and', 'kentucky', '', 'were', 'the', 'only', 'franchises', 'to', 'play', 'all', '6', 'seasons', 'of', 'professional', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'browning', 'was', 'elected', 'bishop', 'of', 'canberra', 'and', '', 'on', '3', '1', 'january', '1', '9', '9', '3', 'and', 'installed', 'on', '3', '0', 'may', '1', '9', '9', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'also', 'the', 'first', 'person', 'to', 'introduce', 'radio', 'programs', 'in', 'the', 'department', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'station', \"'s\", '', 'is', 'located', 'atop', 'the', 'benson', 'apartment', 'tower', 'at', 'north', '6', '0', 'th', 'street', 'and', 'northwest', '', 'highway', ',', 'northwest', 'of', 'downtown', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'winston', 'was', 'open', 'to', 'race', 'winners', 'from', 'the', '1', '9', '8', '5', 'season', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'danny', '', 'of', '', 'compared', 'it', 'with', '', 'interactive', \"'s\", '``', '', \"''\", 'and', '``', '', '2', '4', '7', '``', 'called', 'it', 'a', '', 'of', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'fair', 'trade', 'towns', 'usa', 'offers', 'resources', 'on', 'their', 'website', 'designed', 'to', 'help', 'communities', 'in', 'their', 'efforts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'mid-', '2', '0', 'th', 'century', 'the', 'firm', 'published', 'books', 'by', '', '', 'and', 'children', \"'s\", 'classics', 'in', 'the', 'dean', \"'s\", 'classics', 'series', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'case', 'had', 'stated', 'that', 'although', 'he', 'has', 'the', '', 'respect', 'for', 'daniel', '', ',', 'hawaii', 'is', 'in', 'a', 'time', 'of', 'transition', 'with', 'regard', 'to', 'the', 'state', \"'s\", 'representation', 'in', 'congress', 'which', 'requires', 'that', 'the', 'state', 'phase', 'in', 'the', 'next', 'generation', 'to', 'provide', 'continuity', 'in', 'that', 'service', '.', '', '', '']\n", "['', 'because', 'of', 'the', 'nature', 'of', 'the', '', ',', '', 'addresses', 'on', 'the', 'local', 'computer', 'are', 'not', 'visible', 'on', 'the', 'internet', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'was', 'born', 'in', '', 'in', '1', '9', '5', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'upon', '', ',', 'all', 'three', 'men', 'were', 'selected', 'by', 'the', 'computer', 'assisted', 'passenger', '', 'system', '(', '', ')', 'for', 'further', '', 'of', 'their', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'inclusion', 'is', 'not', 'limited', 'to', '', ',', 'and', 'may', 'also', 'be', 'the', 'text', 'output', 'from', 'a', 'program', ',', 'or', 'the', 'value', 'of', 'a', 'system', 'variable', 'such', 'as', 'the', 'current', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'for', 'foreign', 'brands', ',', 'plug-in', 'car', 'sales', 'rise', 'to', 'about', '6', '0', '0', ',', '0', '0', '0', 'in', '2', '0', '1', '7', ',', 'representing', 'about', 'half', 'of', 'global', 'plug-in', 'car', 'sales', 'in', '2', '0', '1', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', 'the', 'accounts', 'at', 'this', 'time', ',', 'it', 'was', 'still', 'a', 'fairly', 'large', 'village', ',', 'with', 'a', 'number', 'of', 'people', '', 'it', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'fall', 'of', '2', '0', '0', '6', 'saw', 'the', 'release', 'of', 'version', '4', 'of', 'the', 'database', ',', 'now', '', 'in', '', ',', 'and', 'the', 'supporting', 'software', ',', 'now', 'written', 'entirely', 'in', 'java', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'served', 'as', 'executive', 'producer', 'for', 'network', '1', '0', \"'s\", 'big', 'brother', 'australia', 'from', 'the', 'fourth', 'series', 'until', 'the', 'seventh', 'series', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'another', 'one', 'of', 'these', 'mountains', 'is', 'the', 'adjacent', 'mount', '', 'de', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'crops', 'traded', 'by', 'europeans', 'from', 'the', 'new', 'world', 'began', 'to', 'appear', ',', 'acquired', 'through', 'trade', 'with', 'china', ',', 'japan', ',', 'europe', ',', 'and', 'the', 'philippines', ';', 'these', 'crops', 'included', 'corn', ',', 'sweet', 'potatoes', ',', '', '', ',', 'tomatoes', ',', '', ',', 'and', '', '.', '', '', '', '', '', '']\n", "['', 'it', 'was', '', '', ',', 'who', 'served', 'as', 'the', 'bishop', 'of', '', 'from', '1', '8', '4', '6', 'to', '1', '8', '6', '6', ',', 'who', 'paved', 'the', 'way', 'for', 'its', 'construction', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'completion', 'of', 'the', '', '', 'line', ',', 'oil', '', 'to', 'the', 'u.s.', 'may', 'run', 'nearly', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'also', 'suffered', 'a', '', '', 'before', 'the', '2', '0', '1', '5', 'pan', 'am', 'games', 'in', 'toronto', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'museum', '', 'various', 'projects', 'together', 'with', 'different', 'state', 'cultural', 'organizations', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'this', 'cottage', 'was', 'found', '', '', ',', 'and', 'indeed', 'from', 'its', 'extreme', 'heat', 'through', 'the', '', 'which', 'attended', ',', 'dangerous', \"'\", ',', 'so', 'a', 'new', 'meeting', 'house', 'was', 'erected', 'in', '1', '8', '0', '3', 'and', 'the', '', 'mr.', '', 'of', '', 'nominated', 'as', 'minister', '.', '', '', '']\n", "['', 'because', 'of', 'vehicle', 'weight', 'limits', ',', 'the', 'mackay', 'bridge', 'is', 'the', 'only', 'crossing', 'that', 'commercial', 'trucks', 'can', 'use', 'to', 'cross', 'the', 'harbour', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'though', 'disney', 'gave', 'nomura', 'freedom', 'in', 'the', 'characters', 'and', 'worlds', 'used', 'for', 'the', 'games', ',', 'he', 'and', 'his', 'staff', 'tried', 'to', 'stay', 'within', 'the', 'established', 'roles', 'of', 'characters', 'and', 'boundaries', 'of', 'the', 'worlds', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'won', 'the', 'german', 'national', 'road', 'race', 'in', '1', '9', '5', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'development', 'was', 'described', 'to', ',', 'according', 'to', 'president', 'of', '', 'honda', 'motor', '', '', ',', 'as', '``', 'simple', \"''\", 'and', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'and', 'robinson', 'choose', 'ali', '', 'and', '', '', 'long', 'to', 'replace', 'them', 'as', 'hosts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '0', '9', ',', 'mccormick', 'married', 'mary', 'cornwall', ',', 'the', 'daughter', 'of', 'john', 'cornwall', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', 'april', '2', '0', '1', '3', ',', 'emma', 'willis', 'was', 'officially', 'announced', 'as', 'the', 'host', 'of', '``', 'celebrity', 'big', 'brother', \"''\", ',', 'after', 'previous', 'host', 'brian', '', 'was', 'removed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'more', '', ',', 'thomas', 'finds', 'a', 'copy', 'of', 'a', 'theology', 'text', 'that', 'he', 'himself', 'wrote', 'years', 'ago', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'continue', 'to', 'be', 'a', 'commercial', 'success', ',', 'with', 'such', '', 'as', 'mickey', 'mouse', ',', 'donald', '', ',', 'oliver', '&', 'amp', ';', 'company', ',', 'superman', ',', '', ',', 'rocket', 'power', ',', '', ',', '', 'faces', ',', '', ',', 'dora', 'the', '', ',', 'and', '', '.', '', '', '', '', '']\n", "['', 'the', 'two', 'structures', 'were', 'combined', 'in', '1', '7', '8', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'being', 'in', 'the', 'command', 'center', 'allowed', 'me', 'to', 'observe', 'the', 'first', 'hours', 'of', 'the', 'operation', 'literally', 'from', 'a', '', 'seat', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'game', 'is', 'based', 'on', 'parts', 'of', 'the', 'movie', '``', \"''\", 'and', 'other', 'parts', 'of', 'the', 'bionicle', 'storyline', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'live', 'action', 'miniseries', 'acts', 'a', '', 'to', 'the', 'events', 'of', 'the', 'game', ',', '', 'one', 'which', 'is', 'inspired', 'by', 'its', 'plot', 'and', 'characters', 'rather', 'than', 'being', '', '', 'to', 'it', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'some', 'were', 'wearing', 'army', '', 'and', 'some', 'had', '', 'tied', 'up', 'to', 'their', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '4', ',', 'phillips', 'joined', 'the', 'washington', 'redskins', 'as', 'tight', 'ends', 'coach', 'under', 'new', 'head', 'coach', 'jay', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'prefectural', 'police', 'departments', 'are', 'established', 'for', 'each', '', 'and', 'have', 'full', 'responsibility', 'for', 'regular', 'police', 'duties', 'for', 'their', 'area', 'of', 'responsibility', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'died', 'at', 'the', 'age', 'of', '4', '4', 'in', '1', '6', '7', '7', 'from', 'a', '', '', ',', 'perhaps', 'tuberculosis', 'or', '', '', 'by', 'the', '', 'of', 'fine', 'glass', 'dust', 'while', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '0', ',', 'the', 'highway', 'was', 'extended', 'to', 'its', 'current', '', 'terminus', ',', 'replacing', '', '2', '5', '8', 'between', '', 'and', '', '3', 'at', 'cartwright', ',', 'via', '', 'and', '', ',', 'and', '', '2', '8', 'between', 'the', 'u.s.', 'border', 'and', 'cartwright', '.', '', '', '', '', '']\n", "['', 'from', '2', '0', '2', '0', 'he', 'serves', 'as', 'the', 'chair', 'of', 'the', 'then', 'newly', 'established', 'department', 'of', 'chinese', 'studies', 'at', 'the', 'institute', 'of', '', 'languages', 'and', 'cultures', 'at', 'his', 'university', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'fulton', '', 'patricia', 'smith', 'in', 'the', 'second', 'season', 'of', '', 'jones', ',', 'episode', 'titled', ',', '``', '', 'terror', \"''\", '(', '0', '9', '/', '1', '6', '/', '1', '9', '7', '3', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'until', '2', '8', 'november', '2', '0', '1', '3', ',', 'he', 'was', 'the', 'vice', 'president', 'of', 'the', 'professional', 'football', 'league', 'of', 'romania', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'groups', 'of', '``', '', \"''\", '(', '``', 'practical', 'learning', \"''\", ')', 'scholars', 'began', 'to', '', 'the', 'importance', 'of', 'looking', 'outside', 'the', 'country', 'for', 'innovation', 'and', 'technology', 'to', 'help', 'improve', 'the', 'agricultural', 'systems', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', '', 'it', 'off', ',', 'saying', ',', '``', 'i', 'like', 'it', \"''\", '(', 'this', 'has', 'caused', 'the', '', 'much', 'controversy', 'for', '', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'day', '', ',', 'a', 'team', 'member', ',', 'at', 'work', ',', 'approaches', 'him', 'to', 'save', 'her', 'job', 'for', 'not', 'performing', 'well', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'observatory', 'is', 'at', 'an', 'altitude', 'of', 'above', 'sea', 'level', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', ',', 'for', 'instance', ',', 'a', '', 'of', 'the', '', 'regions', ',', 'and', 'the', '', ',', 'of', 'the', '', 'districts', 'around', 'palestine', ',', 'are', 'mentioned', 'side', 'by', 'side', 'with', 'the', '', 'and', 'deer', 'of', 'the', 'woody', '', 'of', 'lebanon', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'gameplay', '', 'around', 'surviving', 'on', 'a', 'deserted', 'island', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ky', '3', '6', '3', '0', 'begins', 'at', 'an', 'intersection', 'with', 'ky', '5', '7', '8', 'in', '', 'county', ',', '', 'north', 'on', 'a', '', '', 'road', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', ',', 'is', 'a', 'rare', 'species', 'of', '', 'plant', 'in', 'the', '', 'family', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'brought', 'the', 'man', 'to', 'the', 'flat', 'days', 'later', 'and', 'warned', 'him', 'in', 'front', 'of', 'her', 'that', 'they', 'would', 'break', 'his', 'legs', 'if', 'they', 'saw', 'him', 'at', 'any', 'of', 'the', 'places', 'they', 'frequented', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'dedicated', 'to', '', ',', 'the', 'first', '', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '', 'france', ',', 'women', 'had', 'no', 'part', 'in', 'affairs', 'outside', 'the', 'house', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rivers', 'running', 'north', 'off', 'the', '', 'high', '', 'material', 'in', 'the', 'southern', 'parts', 'of', 'the', '', 'basin', 'from', 'northeast', 'wales', 'to', 'the', 'peak', 'district', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'name', 'refers', 'to', 'a', 'wooded', 'ridge', 'which', 'was', 'once', 'surrounded', 'by', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'joined', 'the', 'army', 'in', '1', '8', '4', '8', 'and', 'was', 'in', '1', '8', '5', '2', 'appointed', 'second', 'lieutenant', 'in', 'the', 'infantry', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'an', 'overseas', 'transfer', ',', 'johnson', 'was', 'reassigned', 'to', 'the', '5', '7', 'th', 'infantry', '(', 'philippine', 'scouts', ')', 'at', 'fort', '', ',', 'philippine', 'islands', 'in', '1', '9', '4', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'a', 'member', 'of', 'the', 'association', 'for', 'conflict', 'resolution', ',', 'the', 'aba', 'forum', 'committee', 'on', 'the', 'construction', 'industry', ',', 'aba', 'alternate', 'dispute', 'resolution', 'section', ',', 'florida', 'bar', 'construction', 'law', 'committee', ',', 'alternate', 'dispute', 'resolution', 'section', ',', 'and', 'miami', 'international', 'arbitration', 'society', '.', '', '', '', '', '', '', '']\n", "['', 'for', 'this', 'reason', 'she', 'also', 'sought', 'to', '', 'with', 'the', 'catholic', 'church', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'males', 'had', 'a', 'median', 'income', 'of', '$', '3', '6', ',', '7', '3', '5', 'versus', '$', '2', '2', ',', '7', '0', '0', 'for', 'females', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'level', 'of', 'teaching', 'is', 'not', 'very', 'good', 'here', ',', 'but', '', 'only', 'because', 'of', 'failed', 'education', 'system', 'of', 'india', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'fact', 'that', 'health', 'insurance', 'plans', 'are', 'administered', 'by', 'the', 'provinces', 'and', 'territories', 'in', 'a', 'country', 'where', 'large', 'numbers', 'of', 'residents', 'of', 'certain', 'provinces', 'work', 'in', 'other', 'provinces', 'may', 'lead', 'to', '', '', '', 'with', 'respect', 'to', '', 'and', '', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'the', 'exception', 'of', 'its', '', 'series', ',', '', '', 'products', 'can', 'only', 'be', 'purchased', 'through', 'licensed', ',', '', 'financial', 'advisors', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'served', 'five', 'years', 'as', 'an', 'armor', 'officer', 'in', 'the', 'u.s.', 'army', 'at', 'fort', '', ',', 'departing', 'active', 'duty', 'after', '', 'the', 'rank', 'of', 'captain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'detailed', 'description', 'of', '', 'principles', 'and', 'applications', 'is', 'available', 'in', 'a', 'series', 'of', '', 'lectures', 'based', 'on', 'the', 'materials', 'presented', 'during', '', 'workshop', 'series', '(', 'initiated', 'in', '2', '0', '0', '6', 'at', 'oak', 'ridge', 'national', 'laboratory', ')', ':', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '(', 'joseph', 'and', 'de', 'neufville', 'had', 'both', '', 'privately', 'from', 'other', 'people', ',', 'using', 'the', 'bars', 'as', '', '.', ')', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'uss', '``', '', \"''\", 'was', 'a', 'patrol', 'craft', '', 'that', 'served', 'in', 'the', 'united', 'states', 'navy', 'from', '1', '9', '1', '7', 'to', '1', '9', '1', '9', 'and', 'again', 'as', 'uss', '``', '', \"''\", 'from', '1', '9', '4', '3', 'to', '1', '9', '4', '6', '.', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '3', ',', 'as', 'was', 'added', 'to', 'the', '', 'lineup', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'july', '2', '0', '1', '3', ',', 'the', 'group', 'added', 'the', 'word', '``', 'islamic', \"''\", 'to', 'its', 'name', ',', 'and', 'appeared', 'in', 'a', 'joint', 'statement', 'with', 'isil', 'in', 'front', 'of', 'the', 'latter', \"'s\", 'black', 'standard', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'spent', 'his', '', 'years', 'studying', '', 'with', 'his', 'father', 'and', 'was', 'also', 'to', 'become', 'a', 'noted', '', ',', 'though', 'was', 'never', 'to', 'receive', 'full', 'recognition', ',', 'financial', 'or', 'personal', ',', 'for', 'his', 'achievements', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'his', 'peak', ',', '', 'was', 'earning', '', 'of', 'thousands', 'of', 'dollars', 'per', 'fight', ',', 'and', 'he', 'spent', '', ',', 'on', 'clothes', ',', 'cars', 'and', 'gambling', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'series', 'released', 'approximately', '5', '0', 'volumes', 'in', 'its', 'first', 'four', 'years', 'and', 'the', 'label', 'claims', 'that', 'over', '1', '0', 'million', 'copies', 'were', 'sold', 'by', 'the', 'end', 'of', 'the', '2', '0', 'th', 'century', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', '2', '0', 'seconds', 'of', 'material', 'is', 'missing', 'from', 'episode', '3', ',', 'due', 'to', 'damage', 'to', 'the', 'print', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'police', 'removed', 'him', 'from', 'the', 'station', 'and', 'sent', 'him', 'home', 'in', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'instead', ',', 'experiments', 'show', '', '', 'of', 'a', 'given', 'magnitude', 'produce', 'more', 'material', 'damage', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'period', 'of', 'creativity', '', 'mccarthy', \"'s\", 'general', 'philosophy', 'of', '', 'in', 'arts', 'and', 'culture', 'and', 'an', '', 'to', '', ';', 'hence', ',', 'the', '', 'combination', 'of', 'his', 'occupation', 'of', 'composer', 'and', 'martial', 'artist', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'tv', '', 'showed', 'that', 'dyer', 'had', '', 'the', 'ball', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'siblings', 'included', 'thomas', '(', 'born', '1', '8', '5', '4', ')', ',', 'david', 'samuel', '(', 'born', '1', '8', '5', '9', ')', 'and', 'robert', '(', 'born', '1', '8', '6', '0', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'natural', 'factors', 'included', 'widespread', 'drought', 'in', 'the', 'early', '1', '8', '3', '0', 's', ',', 'and', 'again', 'in', 'the', '1', '8', '4', '0', 's', ',', 'and', 'a', 'food', 'crisis', 'in', 'the', '1', '8', '4', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'new', '', '5', '3', '5', '', '', ',', 'instead', 'of', '', '5', '4', '1', ',', 'are', 'adapted', 'to', 'the', 'higher', '', 'operating', 'temperature', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'judge', 'friedman', 'then', '', 'himself', 'from', 'ruling', ',', 'and', 'instead', 'filed', 'a', 'complaint', 'against', 'thompson', 'with', 'the', 'florida', 'bar', ',', 'calling', 'thompson', \"'s\", 'behavior', '``', 'inappropriate', 'by', 'a', 'member', 'of', 'the', 'bar', ',', '', 'and', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'addresses', 'two', 'significant', 'problems', 'concerning', 'housing', 'for', '', 'members', 'and', 'their', 'families', ':', '(', '1', ')', 'the', 'poor', 'condition', 'of', 'housing', 'owned', 'by', 'the', 'u.s.', 'department', 'of', 'defense', '(', '', ')', ',', 'and', '(', '2', ')', 'a', 'shortage', 'of', 'quality', 'affordable', 'private', 'housing', '.', '', '', '', '', '']\n", "['', '', 'has', 'been', 'a', 'frequent', 'target', 'for', 'organized', 'raids', 'by', 'anonymous', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'like', 'other', 'new', 'airports', 'in', 'the', 'region', ',', 'it', 'has', 'a', 'structure', 'mainly', 'made', 'of', 'glass', ',', 'with', 'big', '', 'spaces', 'inside', 'the', 'terminal', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'married', '', '', 'in', '1', '9', '4', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'driving', 'force', 'behind', 'the', 'creation', 'of', 'the', 'museum', 'was', '', '', ',', 'chief', 'designer', 'of', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '6', ',', 'chicago', 'mayor', 'richard', 'j.', 'daley', 'declared', 'the', 'first', 'week', 'of', 'june', 'to', 'be', '``', 'puerto', 'rican', 'week', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'nonetheless', ',', 'they', 'may', 'produce', 'larger', '', 'further', 'out', 'at', 'sea', ',', 'where', 'the', 'greater', 'depth', 'makes', 'this', 'possible', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'made', 'his', 'professional', 'debut', 'for', 'the', 'club', 'in', 'may', '2', '0', '1', '4', 'and', 'went', 'on', 'to', 'make', '1', '4', '1', 'appearances', 'in', 'five', 'years', 'with', 'the', 'u', \"'s\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'genocide', 'studies', 'and', 'prevention', 'professor', 'gregory', '', ',', '``', 'early', '', 'of', 'genocide', 'are', 'still', 'deep', 'in', 'south', 'african', 'society', ',', 'though', 'genocide', 'has', 'not', 'begun', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'other', 'maps', 'have', 'been', 'attributed', 'to', 'him', ',', 'their', 'origins', 'are', 'contested', 'by', 'historians', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'an', 'event', 'to', '', 'for', 'defending', 'champion', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'site', 'comprises', 'a', 'mixture', 'of', 'flower', 'rich', '', ',', 'scrub', 'and', 'mature', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'born', 'in', '', 'in', '1', '9', '7', '2', ',', '', '', 'first', 'played', 'for', 'malaysia', 'in', 'the', '1', '9', '9', '4', '', '', 'in', '', ',', 'playing', 'three', 'games', 'in', 'the', 'tournament', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hall', 'eventually', 'left', 'bohemia', 'in', '2', '0', '1', '4', ',', 'and', 'the', 'game', 'remained', 'in', 'early', 'access', 'more', 'than', 'five', 'years', 'after', 'its', 'release', 'in', 'december', '2', '0', '1', '3', 'with', 'a', 'final', 'alpha', 'release', 'in', 'december', '2', '0', '1', '8', '.', '', '', '', '', '', '', '', '']\n", "['', 'on', '', ',', 'which', '', '', 'ratings', 'to', 'reviews', ',', 'the', 'film', 'has', 'a', '', 'average', 'score', 'of', '8', '2', 'out', 'of', '1', '0', '0', ',', 'based', 'on', '5', '5', 'critics', ',', 'indicating', '``', 'universal', 'acclaim', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'the', 'release', ',', '``', '', 'do', 'dance', \"''\", 'has', 'continued', 'to', 'be', 'featured', 'in', 'the', '``', 'pretty', 'rhythm', \"''\", 'franchise', ',', 'especially', 'in', 'the', '``', 'king', 'of', '', \"''\", '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'mortally', 'wounded', 'in', 'the', 'battle', ',', 'and', 'wofford', 'assumed', 'command', 'of', 'his', 'brigade', 'and', 'was', 'promoted', 'to', '', 'general', 'on', 'january', '1', '7', ',', '1', '8', '6', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'with', 'a', 'submission', 'victory', 'over', 'american', 'fighter', 'emma', 'bush', '(', 'at', 'the', 'time', 'emma', 'nielsen', ')', 'with', 'a', 'leg', '', 'in', 'the', 'first', 'round', 'at', '``', '', ':', 'korea', '2', '0', '0', '5', '``', 'on', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'january', '1', '7', '6', '0', ',', 'he', 'left', '', 'for', 'germany', ',', 'joining', 'marshal', '', \"'s\", 'army', 'on', '1', 'april', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', '1', 'may', '1', '9', '5', '6', 'as', 'a', 'pop', 'singer', 'and', 'on', '2', '3', 'november', '1', '9', '7', '0', 'as', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '``', 'escadrille', \"''\", 'left', '``', '', '1', '2', '``', 'on', '1', '8', 'january', '1', '9', '1', '8', ',', 'being', 'replaced', 'by', '``', 'escadrille', 'spa', '.', '6', '7', '``', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'country', 'gazette', 'went', 'on', 'to', 'record', 'their', 'first', 'album', '``', '', 'in', 'our', 'midst', \"''\", 'in', '1', '9', '7', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', '2', '0', '0', '1', ',', 'he', 'has', '', 'conflicts', 'for', '', 'images', 'in', 'the', 'republic', 'of', 'congo', ',', 'afghanistan', ',', '', ',', 'iraq', ',', 'ukraine', 'and', 'many', 'other', 'countries', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'small', '', 'of', '', 'remained', ',', 'but', 'as', 'henderson', ',', 'green', ',', 'and', 'cook', 'say', ',', '', 'coastal', 'artillery', 'had', '', 'died', '.', \"'\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'worship', 'at', 'st', '', 'is', 'in', 'the', 'catholic', 'tradition', 'of', 'the', 'church', 'of', 'england', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'gómez', 'is', 'the', 'only', '', 'to', 'win', 'the', 'award', 'twice', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'king', '(', 'who', 'has', 'recovered', 'from', 'having', 'drunk', 'the', 'water', 'of', '', 'in', 'the', '', 'city', 'of', '', ')', 'is', '', 'at', 'this', 'group', 'coming', 'toward', 'his', 'underground', 'kingdom', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'modern', 'lines', 'with', '', 'elements', 'of', 'the', '2', '0', 'th', 'century', 'intended', 'to', 'shape', 'the', 'motorcycle', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'national', 'hurricane', 'center', '(', '', ')', 'began', '', 'the', 'system', 'for', 'long-term', '', 'on', 'october', '1', '3', ',', 'at', 'which', 'time', 'the', 'low', 'was', 'situated', '1', '5', '0', 'mi', '(', '2', '4', '0', 'km', ')', 'south', 'of', 'guatemala', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'the', 'wave', 'of', '', 'in', 'the', 'south', 'rose', ',', 'the', 'party', \"'s\", 'regional', 'committee', 'for', '', 'china', 'attempted', 'to', 'ride', 'the', '', ',', '', 'its', 'propaganda', 'on', 'peasants', 'and', 'newly', 'drafted', '', 'troops', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'night', 'bombing', 'began', 'in', 'world', 'war', 'i', 'and', 'was', 'widespread', 'during', 'world', 'war', 'ii', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'consequently', ',', 'until', '2', '0', '0', '5', ',', 'women', 'worked', 'only', 'as', 'doctors', ',', '', ',', 'teachers', ',', 'women', \"'s\", 'banks', ',', 'or', 'in', 'a', 'few', 'other', 'special', 'situations', 'where', 'they', 'had', 'contact', 'only', 'with', 'women', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'his', 'retirement', 'as', 'a', 'player', ',', '', 'remained', 'at', '', 'as', 'a', 'director', 'and', 'youth', 'coordinator', ',', 'developing', 'several', 'young', 'future', 'international', 'players', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'flower', 'mart', 'is', 'held', 'each', 'year', 'at', 'the', 'beginning', 'of', 'may', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'often', 'shares', 'her', 'knowledge', 'and', 'small', 'discoveries', ',', 'sounds', 'and', 'processes', 'with', 'everyone', 'who', 'feel', 'interest', 'for', ',', 'allowing', 'the', 'audience', 'attending', 'her', 'concerts', 'to', 'play', 'her', 'instruments', ',', 'apart', 'from', 'the', 'workshops', ',', '', 'talks', 'and', 'exhibitions', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'energy', '4', 'me', '', 'thousands', 'of', 'children', 'and', 'teachers', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'then', 'trained', 'as', 'a', 'pilot', ',', 'including', 'the', 'course', 'at', 'the', 'school', 'of', 'special', 'flying', 'at', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'climbing', 'high', \"''\", 'is', 'an', 'account', 'of', '', \"'s\", 'experiences', 'and', '', 'while', 'climbing', 'mount', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'has', 'worked', 'in', 'the', 'fields', 'of', 'operator', 'theory', ',', '', 'space', 'operators', ',', 'control', 'theory', ',', 'algebraic', 'geometry', ',', 'and', '', 'computer', '', 'during', 'his', 'career', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'day', '', 'went', 'to', 'work', 'and', 'never', 'came', 'back', ';', 'she', 'was', 'sent', 'to', 'lake', '', 'and', 'then', '', 'evacuated', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'average', 'household', 'size', 'was', '2', '.', '3', '3', 'and', 'the', 'average', 'family', 'size', 'was', '2', '.', '8', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'his', 'death', ',', 'his', 'nephew', 'sir', 'ralph', 'de', '', 'was', 'made', 'administrator', 'of', 'the', 'see', 'of', 'london', ',', 'having', 'already', 'acted', 'as', 'their', 'administrator', 'during', 'henry', \"'s\", '', 'in', 'rome', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'his', 'time', 'with', '', ',', 'he', 'won', 'the', 'croatian', 'player', 'of', 'the', 'year', 'award', 'in', '2', '0', '0', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'species', 'of', 'moth', 'of', 'the', 'family', 'tortricidae', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'fame', 'has', 'been', 'supporting', 'the', 'fashion', 'industry', 'at', 'the', 'grassroots', 'level', 'since', 'inception', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'southern', 'border', 'of', 'the', 'park', 'starts', 'at', '', '', 'on', 'the', 'a', '2', '9', 'road', 'while', 'its', 'western', 'border', 'is', 'located', 'next', 'to', 'the', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'much', 'as', '1', '2', '0', '', 'of', '', 'rejection', 'is', 'required', 'to', 'achieve', 'acceptable', 'performance', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'died', 'aged', '2', '4', 'of', 'the', 'wounds', 'he', 'had', 'received', 'in', 'holland', '(', '1', '9', 'december', '1', '9', '0', '1', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '2', '0', \"'s\", 'five', 'trustees', '(', 'as', 'ward', 'medicine', 'hat', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'clinton', '', 'the', '', 'that', 'his', 'speech', 'was', 'a', 'calculated', 'attempt', 'to', 'appeal', 'to', 'moderate', 'and', 'conservative', '', 'voters', 'by', 'standing', 'up', 'to', 'a', 'core', 'democratic', 'constituency', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'event', \"'s\", 'title', 'referenced', 'jerry', 'lee', 'lewis', \"'\", 'song', 'of', 'the', 'same', 'name', ',', 'which', 'was', 'used', 'as', 'the', 'event', \"'s\", 'theme', 'song', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'linking', 'of', 'commercial', 'networks', 'and', 'enterprises', 'by', 'the', 'early', '1', '9', '9', '0', 's', 'marked', 'the', 'beginning', 'of', 'the', 'transition', 'to', 'the', 'modern', 'internet', ',', 'and', 'generated', 'a', 'sustained', '', 'growth', 'as', 'generations', 'of', 'institutional', ',', 'personal', ',', 'and', 'mobile', 'computers', 'were', 'connected', 'to', 'the', 'network', '.', '', '']\n", "['', 'he', 'was', 'also', 'invited', 'to', 'perform', 'the', 'opening', 'ceremony', ',', 'and', 'on', '2', 'may', '1', '8', '5', '9', 'he', 'travelled', 'from', 'windsor', 'on', 'the', 'royal', 'train', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'alternative', ',', 'better', '', '', 'equivalent', 'expressions', ',', 'can', 'be', 'found', 'in', '', 'navigation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'each', 'event', 'begins', 'with', 'a', '', 'concert', 'that', '', 'a', 'number', 'of', 'young', 'musicians', 'from', 'local', 'schools', ',', 'before', 'the', 'main', 'concert', 'featuring', 'professional', 'musicians', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'important', '', 'area', ',', 'the', 'main', 'crops', 'are', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'that', 'year', ',', 'she', 'received', 'a', 'star', 'on', 'the', 'hollywood', 'walk', 'of', 'fame', ',', 'inducted', 'at', '6', '7', '1', '2', 'hollywood', 'boulevard', 'outside', '', \"'s\", 'egyptian', 'theater', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'contrast', ',', 'the', 'c', '1', '', '1', 'bond', '[', '1', '4', '1', '.', '1', '5', '(', '1', '3', ')', 'pm', ']', 'is', 'shorter', 'than', 'the', 'average', '', '3', '', 'bond', 'which', 'is', 'about', '1', '4', '3', '.', '2', 'pm', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'his', 'fellow', '', 'turned', 'violent', ',', 'cole', 'intervened', ',', '', 'the', 'life', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'vantage', 'gt', '3', 'is', 'the', 'successor', 'of', 'the', 'v', '1', '2', 'vantage', 'gt', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'majority', 'of', 'the', '', '', 'via', 'the', 'same', 'mechanism', ':', '', 'cells', 'from', 'the', '', 'body', '', 'travel', 'towards', 'the', '', '', 'tip', 'before', '', 'into', 'muscle', 'components', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'weight', 'was', 'the', 'professor', 'of', 'painting', 'at', 'the', 'rca', 'and', 'in', 'a', 'catalogue', 'for', 'an', 'exhibition', 'of', 'hogan', \"'s\", 'paintings', 'at', 'the', 'fine', 'art', 'society', 'in', '1', '9', '9', '3', 'he', 'wrote', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'has', 'been', 'considered', 'the', '``', 'magnum', '', \"''\", 'of', 'its', 'author', ',', '', 'moore', ',', 'assistant', '', 'at', 'the', 'museum', 'of', 'the', 'east', 'india', 'company', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'title', 'track', ',', '``', '', \"''\", ',', 'was', ',', '', ',', 'also', 'recorded', 'on', 'another', 'guitar', 'purchased', '', 'at', 'a', 'boot', 'fair', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'time', 'of', 'his', 'death', ',', 'it', 'was', 'announced', 'that', '', 'had', 'completed', 'his', 'autobiography', ',', 'titled', '``', 'if', 'i', 'say', 'so', 'myself', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'croatian', 'democratic', 'union', '(', 'or', '', ',', 'literally', 'croatian', 'democratic', 'community', ')', 'is', 'the', 'major', 'conservative', ',', '', 'political', 'party', 'in', 'croatia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'née', '', '(', '1', '8', '8', '9', '-', '1', '9', '3', '8', ')', 'was', 'a', 'german', 'historian', 'and', 'publisher', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '``', 'tactics', \"''\", 'system', 'is', 'seen', 'as', 'a', 'precursor', 'to', '``', 'final', 'fantasy', '', \"''\", \"'s\", '``', '', \"''\", 'system', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'does', 'everything', 'he', 'can', 'to', 'bring', 'the', 'real', 'darla', 'to', 'the', '', 'and', 'with', 'some', '', ',', 'she', 'does', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'summer', 'of', '1', '9', '5', '7', ',', 'he', 'recorded', 'his', 'own', 'version', 'of', '``', '', \"''\", ',', 'which', 'had', 'been', 'written', 'by', 'bob', '', 'and', 'recorded', 'by', '', 'shaw', 'three', 'years', 'earlier', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'scratch', '2', '.', '0', 'offline', 'editor', 'could', 'be', 'downloaded', 'for', 'windows', ',', 'mac', 'and', 'linux', 'directly', 'from', 'scratch', \"'s\", 'website', ',', 'although', 'support', 'for', 'linux', 'was', 'later', 'dropped', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', 'lawyer', 'rogers', 'was', 'in', 'private', 'practice', 'and', 'was', 'elected', 'to', 'serve', 'as', 'commonwealth', \"'s\", 'attorney', 'for', '', 'and', '', 'counties', 'in', 'kentucky', ',', 'an', 'office', 'he', 'held', 'from', '1', '9', '6', '9', 'to', 'his', 'election', 'to', 'congress', 'in', '1', '9', '8', '0', '.', '', '', '', '', '']\n", "['', 'he', 'is', 'currently', 'playing', 'with', '', 'in', 'the', 'finnish', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', ')', 'is', 'a', 'commune', 'in', 'the', '', 'department', 'in', 'the', 'pays', 'de', 'la', '', 'region', 'in', 'western', 'france', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'older', 'than', 'superman', 'who', 'described', 'him', 'as', '``', 'a', 'force', 'for', 'good', 'in', 'the', 'universe', 'when', 'i', 'was', 'still', 'a', '', \"''\", '(', '``', 'superman', \"''\", '#', '3', '7', '5', ',', 'september', '1', '9', '8', '2', ':', '``', 'the', '', 'of', '', '', \"''\", ')', '.', '', '']\n", "['', 'daniel', 'peter', '', '(', ';', 'born', '1', '4', 'october', '1', '9', '9', '9', ')', 'is', 'an', 'english', 'actor', ',', 'known', 'for', 'playing', 'ben', '', 'in', 'the', 'bbc', 'one', 'sitcom', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'appointed', 'member', 'of', 'the', 'order', 'of', 'the', 'british', 'empire', '(', '', ')', 'in', 'the', '2', '0', '0', '9', 'new', 'year', 'honours', ',', 'he', 'received', 'the', 'honour', 'for', 'his', 'services', 'to', 'disabled', 'sport', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'secretariat', 'is', 'a', '', 'secretariat', 'of', '', 'district', ',', 'of', 'north', 'western', 'province', ',', 'sri', 'lanka', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', 'inception', 'it', 'has', 'published', 'the', 'work', 'of', 'over', '2', '0', '0', '0', 'authors', ',', 'and', 'sold', 'books', 'in', 'over', '1', '0', '0', 'countries', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', '', \"'s\", 'rap', 'verse', ',', '', 'is', 'seen', 'in', 'the', 'middle', 'of', 'a', '', ',', 'and', '', 'occur', 'around', 'rihanna', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'opportunity', 'for', '', 'to', 'leave', 'delhi', 'finally', 'arose', 'in', '1', '3', '4', '1', 'when', 'an', 'embassy', 'arrived', 'from', 'yuan', 'dynasty', 'china', 'asking', 'for', 'permission', 'to', '', 'a', '', 'buddhist', 'temple', 'popular', 'with', 'chinese', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'colin', 'burns', '(', 'born', 'june', '3', '0', ',', '1', '9', '8', '2', ',', 'in', '', ',', 'delaware', ')', 'is', 'a', 'retired', 'american', 'soccer', '', 'who', 'last', 'played', 'for', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'first', 'used', 'in', '1', '9', '1', '2', 'for', 'both', 'its', '', 'and', '', 'properties', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '3', '0', 'jühlke', 'embarked', 'on', 'a', 'more', 'formal', 'training', 'programme', 'at', 'the', '', '', 'garden', 'of', 'the', 'university', 'of', '', ',', 'a', 'short', 'distance', 'to', 'the', 'south-east', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'later', 'the', 'radio', 'changed', 'into', '', 'and', 'radio', 'one', 'in', 'the', 'late', '1', '9', '9', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', '', 'lifestyle', 'probably', 'contributed', 'to', 'his', 'early', 'death', ',', 'which', 'took', 'place', 'during', 'the', 'night', 'of', '9', 'to', '1', '0', 'march', '1', '5', '2', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'this', 'operation', ',', 'the', 'function', 'is', 'applied', 'to', 'the', 'result', 'of', '', 'the', 'function', 'to', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'species', 'occupies', 'a', 'range', 'of', 'wooded', 'and', '', 'habitats', 'from', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'internal', 'combustion', 'engines', 'have', 'their', 'cylinder', 'banks', 'arranged', 'in', 'different', 'ways', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'located', 'in', '', 'village', 'in', '', '', 'of', '', 'district', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'little', 'narrative', 'in', 'the', 'game', ',', 'only', 'a', 'brief', 'text', 'prelude', 'located', 'under', '``', 'help', \"''\", 'in', 'the', 'main', '', ',', 'and', 'a', 'few', '', 'after', 'the', 'completion', 'of', 'an', 'episode', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'there', 'is', 'some', '', 'over', 'the', 'role', '', 'himself', 'played', 'in', 'the', 'invention', 'of', 'radio', ',', 'sources', 'agree', 'on', 'the', 'importance', 'of', 'his', 'circuit', 'in', 'early', 'radio', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'company', 'also', 'has', 'network', '', 'in', 'many', 'cities', ',', 'some', 'of', 'which', 'produce', 'local', 'content', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'south', 'wall', 'there', 'are', 'two', 'windows', 'of', '1', '3', 'th', 'century', 'type', ',', 'and', 'in', 'the', 'eastern', 'end', 'wall', ',', 'which', 'is', 'of', '1', '8', 'th', 'century', 'construction', ',', 'is', 'a', 'large', '1', '4', 'th', 'century', 'window', ',', 'probably', 'from', 'the', 'east', 'end', 'of', 'the', 'demolished', '', '.']\n", "['', 'they', 'were', 'usually', 'about', 'than', 'the', '', 'vessels', 'so', 'they', 'could', 'carry', 'more', '', 'and', 'catch', 'more', 'fish', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'film', 'follows', 'hoffman', \"'s\", '(', '', ')', 'relationship', 'with', 'his', 'second', 'wife', 'anita', '(', '', ')', 'and', 'their', '``', '', \"''\", 'and', 'subsequent', 'conversion', 'to', 'an', 'activist', 'life', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'house', 'opened', 'on', '1', '8', 'december', '2', '0', '0', '7', ',', 'on', 'what', 'would', 'have', 'been', '', '', \"'s\", '9', '4', 'th', 'birthday', ',', 'in', 'his', 'home', 'town', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'geometry', ',', 'the', 'small', '', '', 'is', 'a', 'star', '', 'composed', 'of', '2', '0', '', '', '', 'faces', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'march', '1', '6', ',', '2', '0', '1', '3', ':', '', 'was', 'the', 'center', 'of', 'the', 'valley', 'when', '', '', 'held', 'an', '', 'concert', 'this', 'day', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'med', 'tv', 'first', 'broadcast', 'with', 'a', 'license', 'from', 'independent', 'television', 'commission', '(', '', ')', 'and', 'from', 'satellites', 'of', 'polish', '', ',', 'until', 'the', 'polish', 'government', 'gave', 'in', 'to', 'turkish', 'demands', 'to', 'ban', 'med', 'tv', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'the', 'growth', 'of', 'science', 'fiction', 'studies', 'as', 'an', 'academic', '', 'as', 'well', 'as', 'a', 'popular', 'media', 'genre', ',', 'a', 'number', 'of', 'libraries', ',', 'museums', ',', 'archives', ',', 'and', 'special', 'collections', 'have', 'been', 'established', 'to', 'collect', 'and', 'organize', 'works', 'of', '', 'and', 'historical', 'value', 'in', 'the', 'field', '.', '', '']\n", "['', 'like', 'independent', 'soldiers', ',', 'indian', '', ',', 'united', 'nations', ',', '', ',', 'native', '', ',', 'and', 'crazy', 'dragons', ',', 'npf', 'has', 'an', '', 'presence', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'systematic', 'review', 'showed', 'a', '', 'for', 'males', 'and', '', 'in', 'fourth', 'and', 'fifth', 'decades', 'in', 'life', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'completely', 'separate', 'personal', 'rapid', 'transit', 'system', ',', 'the', 'london', '', 'terminal', '5', '', ',', 'operates', '``', '', \"''\", 'between', 'the', 'car', 'parks', 'and', 'terminal', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'married', 'in', '2', '0', '0', '8', 'and', 'he', 'has', 'one', 'son', 'who', 'was', 'born', 'in', '2', '0', '1', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'lewis', 'm.', '', 'is', 'the', '', 'of', 'the', '', '', 'along', 'with', 'robert', 'd.', 'putnam', 'and', 'was', 'president', 'of', 'the', 'new', 'hampshire', '', 'foundation', 'until', 'june', '2', '0', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'gaelic', 'word', 'shares', 'its', 'ultimate', 'origins', 'with', 'germanic', '``', 'water', \"''\", 'and', 'slavic', '``', '', \"''\", 'of', 'the', 'same', 'meaning', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'was', 'also', 'made', '', ',', 'although', 'its', 'dimensions', 'did', 'not', 'change', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'principal', 'equipment', 'of', 'the', 'line', 'consists', 'of', '3', '5', '', 'built', 'in', '1', '9', '2', '3', '-', '2', '4', 'by', 'the', '', 'thomas', 'car', 'co', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', '2', '0', '1', '8', \"'s\", 'hurricane', 'michael', ',', 'volunteers', 'worked', 'in', 'florida', \"'s\", 'bay', 'and', '', 'counties', ',', 'with', 'the', 'majority', 'of', 'work', 'focused', 'in', 'the', '', 'of', '', ',', 'florida', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'also', 'a', 'two-time', '', 'and', '', 'player', 'of', 'the', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', 'de', '', '', 'sbba', '(', 'brazilian', 'society', 'of', 'fine', 'arts', 'sbba', ')', 'is', 'a', 'public', 'benefit', 'entity', 'that', 'aims', 'to', 'promote', 'and', '', 'plastic', 'arts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'prompted', 'a', '', 'by', 'amnesty', 'international', ',', 'which', 'had', 'originally', 'promoted', 'an', 'account', '', 'even', 'greater', 'numbers', 'of', 'babies', 'torn', 'from', '', 'than', 'the', 'original', '', 'testimony', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'long', 'as', 'the', 'universe', 'can', 'be', '', 'as', 'a', '', '', ',', 'a', '', 'frame', 'that', '', 'by', 'special', 'relativity', 'can', 'be', 'defined', 'for', 'a', 'sufficiently', 'small', 'neighborhood', 'of', 'each', 'point', 'in', 'this', '', 'spacetime', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'coontz', 'is', 'buried', 'in', 'mount', '', 'cemetery', 'in', 'his', 'native', '', ',', 'missouri', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '9', 'the', 'club', 'won', 'the', 'intermediate', 'football', 'championship', 'and', 'league', 'finals', ',', 'with', 'the', 'team', '', 'by', 'joe', '', 'and', 'trained', 'by', '', '', ',', 'with', '', '', '', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'became', 'deputy', 'crown', 'solicitor', 'in', '1', '9', '2', '1', ',', 'assistant', 'crown', 'solicitor', '(', 'based', 'in', 'canberra', ')', 'in', '1', '9', '2', '7', ',', 'and', 'crown', 'solicitor', 'in', 'december', '1', '9', '3', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'protestants', 'also', 'use', 'the', 'term', '``', 'lord', \"'s\", 'supper', \"''\", ',', 'but', 'most', 'do', 'not', 'use', 'the', 'terms', '``', '', \"''\", 'or', 'the', 'word', '``', 'holy', \"''\", 'with', 'the', 'name', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'considered', 'quite', '', ',', 'though', 'modern', 'safety', 'requirements', 'mean', 'that', 'it', '', 'only', '1', ',', '4', '0', '0', 'spectators', 'compared', 'to', 'the', 'original', 'theatre', \"'s\", '3', ',', '0', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '7', ',', 'the', '4', 'th', 'islamic', '', 'games', 'were', 'held', 'in', 'azerbaijan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'dealership', 'is', 'still', 'open', '(', 'as', 'of', '2', '0', '0', '8', ')', ',', 'and', 'it', 'is', 'now', 'the', 'oldest', 'honda', 'and', '', 'dealership', 'in', 'texas', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'newly', 'flooded', 'phases', 'are', 'carefully', 'monitored', 'for', 'at', 'least', 'one', 'year', 'to', 'ensure', 'that', 'any', '', 'of', '', 'through', 'the', 'aquatic', 'food', 'web', 'do', 'not', 'present', 'a', 'risk', 'to', 'water', 'birds', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'market', 'research', 'companies', 'frost', '&', 'amp', ';', 'sullivan', 'and', '', ',', '', 'is', 'among', 'the', 'leading', 'european', '', 'of', 'web', '', 'software', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'also', 'involved', 'in', '', 'daho', \"'s\", 'daho', 'show', ',', 'covering', '``', 'i', 'ca', \"n't\", 'escape', 'from', 'you', \"''\", 'as', 'a', 'duet', 'with', 'daho', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'video', 'opens', 'as', 'the', 'protagonist', '(', 'rihanna', ')', 'shoots', 'and', '', 'a', 'man', 'while', 'he', 'walks', 'through', 'a', '', 'train', 'station', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'smetona', 'was', 'exposed', 'to', 'socialist', 'ideas', 'and', 'even', 'read', 'marx', \"'s\", '``', \"''\", ',', 'but', '', 'rejected', 'them', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'the', 'population', 'census', 'conducted', 'by', 'the', 'institut', 'national', 'de', 'la', '', '', 'on', 'february', '1', '5', ',', '2', '0', '0', '2', ',', 'the', 'arrondissement', 'had', 'a', 'total', 'population', 'of', '8', ',', '3', '7', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'played', 'the', '', 'rock', 'festival', 'in', 'spain', 'in', 'june', '2', '0', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '3', ',', 'schaefer', 'and', 'her', '', 'advisor', ',', 'dr.', 'paul', '', ',', 'filed', 'a', 'patent', 'for', 'a', '', 'strategy', 'to', 'treat', 'or', 'reduce', 'the', 'likelihood', 'of', 'seizures', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'scott', 'smith', ',', 'the', 'current', 'head', 'gardener', ',', 'is', '', 'a', 'major', 'research', 'project', 'on', 'the', 'history', 'of', 'the', 'white', 'garden', 'with', 'the', 'intention', 'of', '', 'the', 'original', '', 'scheme', 'in', 'its', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', '', 'road', 'interchange', 'in', '', ',', 'ohio', ',', 'i-', '2', '8', '0', 'turns', 'back', 'due', 'north', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'forestry', 'and', 'farming', 'village', 'situated', 'some', 'southwest', 'of', '', ',', 'at', 'the', 'junction', 'of', 'the', 'd', '1', '3', '2', 'and', 'the', 'd', '3', '8', 'roads', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'object', ',', 'still', ',', 'was', 'to', 'find', 'the', 'words', 'that', 'fit', 'the', '', 'given', 'by', 'the', 'host', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'the', '', \"''\", 'is', 'an', 'early', 'short', 'story', 'by', 'the', 'american', 'author', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'austrian', 'express', 'train', '(', '``', '', \"''\", ')', 'ran', 'in', '1', '8', '5', '7', 'from', 'vienna', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'protestants', 'use', 'the', 'term', '``', 'lord', \"'s\", 'supper', \"''\", ',', 'stating', 'that', 'the', 'term', '``', 'last', \"''\", 'suggests', 'this', 'was', 'one', 'of', 'several', 'meals', 'and', 'not', 'meal', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 're-elected', 'for', 'second', 'term', 'and', 'inaugurated', 'in', 'july', '2', '0', '1', '9', 'alongside', 'his', 'vice', 'president', '', 'dr.', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'captain', 'atom', \"'s\", 'abilities', 'are', 'largely', 'nuclear', 'in', 'nature', 'and', '', '', 'into', 'the', 'strong', 'nuclear', 'force', ',', 'the', 'energy', 'that', '', '', 'and', '', 'in', 'the', 'nucleus', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'bangladesh', 'liberation', 'war', 'she', 'joined', 'the', 'mass', 'movement', 'among', 'indian', 'bengali', '', 'to', 'raise', 'money', 'for', 'the', 'millions', 'of', 'refugees', 'who', 'had', '', 'into', '', 'and', 'west', 'bengal', 'to', 'escape', 'the', 'fighting', ',', 'and', 'to', 'raise', 'global', 'awareness', 'for', 'the', 'cause', 'of', 'bangladesh', '.', '', '', '', '']\n", "['', 'during', 'a', 'shortened', 'training', 'camp', ',', 'bass', 'beat', 'out', 'incumbent', '', 'stephen', '', 'to', 'gain', 'the', 'starting', 'position', ',', 'with', 'the', 'bills', 'cutting', '', 'on', 'august', '2', '7', ',', '2', '0', '2', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'walker', 'played', 'in', 'the', 'game', 'at', 'prop', 'as', 'penrith', '', 'at', '', 'before', 'losing', '1', '8', '-', '1', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'jews', ',', '6', '0', 'on', 'average', ',', 'carried', 'out', 'road', 'construction', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'an', 'october', '9', ',', '2', '0', '0', '3', 'press', 'conference', 'in', 'new', 'york', 'city', ',', 'holiday', 'inn', 'and', 'nickelodeon', 'announced', 'a', 'partnership', 'and', 'renovation', 'of', 'the', 'hotel', ',', 'which', 'would', 'transform', 'it', 'into', 'the', 'nickelodeon', 'family', '', 'by', 'holiday', 'inn', '.', '', '', '', '', '', '', '', '']\n", "['', 'by', 'the', 'same', 'mechanism', 'it', 'also', '', 'concentrations', 'of', 'beta', 'amyloid', ',', 'the', 'main', 'constituent', 'of', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'later', 'on', ',', 'he', 'would', 'appear', 'with', 'red', 'in', 'the', '``', '', 'tips', \"''\", 'segment', ',', 'where', 'he', 'would', 'give', 'advice', 'or', 'instructions', 'on', 'how', 'to', 'maintain', 'and', 'care', 'for', 'boats', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'village', 'in', 'the', 'administrative', 'district', 'of', 'gmina', '', ',', 'within', '', 'county', ',', '', 'voivodeship', ',', 'in', '', 'poland', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'movement', 'bases', 'its', 'commitment', 'on', 'faith', 'in', 'jesus', 'christ', ',', 'the', 'gospel', 'and', 'the', 'social', 'teaching', 'of', 'the', 'catholic', 'church', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'though', 'the', 'fighting', 'continued', ',', 'the', 'result', 'was', 'now', 'not', 'in', 'doubt', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'an', 'extinct', 'genus', 'in', 'the', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'situated', 'on', 'the', 'left', 'bank', 'of', 'the', '', ',', '1', '8', 'km', 'north', 'of', '', ',', 'and', '4', 'km', 'north', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'born', 'on', 'june', '3', '0', ',', '1', '9', '7', '3', 'in', '', ',', 'washington', 'to', 'chris', 'and', 'betty', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'represented', 'as', 'the', 'first', 'female', 'canadian', 'athlete', 'to', 'win', 'and', 'lead', 'a', '', 'alpine', 'world', 'cup', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'composed', 'of', 'three', 'villages', ':', '', ',', '', '(', '``', '', \"''\", ';', '``', '', \"''\", ')', 'and', '', '(', '``', '', \"''\", ';', '``', '', \"''\", ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'front', 'of', 'a', 'crowd', 'of', '1', '4', ',', '3', '9', '5', 'at', 'the', 'sydney', 'cricket', 'ground', '', 'were', '', 'for', '', '', 'and', 'took', 'on', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'largest', 'piece', 'of', 'the', '', '', 'that', 'has', 'been', 'recovered', 'was', 'found', 'shortly', 'after', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bonaduce', 'learned', 'the', 'bass', 'guitar', 'line', 'for', '``', 'does', \"n't\", '', 'want', 'to', 'be', 'wanted', \"''\", ',', 'stating', 'that', 'although', 'he', 'had', 'no', 'ability', 'to', 'read', 'music', ',', 'the', 'song', 'was', 'relatively', 'easy', 'to', 'learn', ';', '', 'and', 'bonaduce', 'subsequently', 'performed', 'together', 'on', 'rare', 'occasions', '.', '', '', '', '']\n", "['', 'on', '5', 'november', '', 'and', '', '', '', 'scored', 'seven', 'goals', 'for', 'another', 'victory', 'against', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'now', ',', 'someone', 'wants', 'to', 'learn', 'the', 'secret', 'of', 'immortality', 'at', 'any', 'cost', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'words', 'are', '', 'and', 'have', 'been', 'around', 'since', '1', '9', '6', '0', 'at', 'least', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', '9', '5', '%', 'lexical', '', 'with', '', ',', '8', '8', '%', 'with', '', 'and', '', ';', '8', '1', '%', 'with', '', ';', '7', '8', '%', 'with', '', ',', '7', '4', '%', 'with', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'buried', 'in', 'the', '', 'family', 'vault', 'in', 'mount', 'jerome', 'cemetery', 'beside', 'her', 'father', 'and', 'brothers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'arusha', 'region', 'is', 'one', 'of', 'tanzania', \"'s\", '3', '1', 'administrative', 'regions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'terminal', 'risk', 'management', '', 'the', '', 'amount', 'against', 'an', 'offline', 'ceiling', 'limit', '(', 'above', 'which', 'transactions', 'should', 'be', '', 'on-line', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'ran', 'to', 'silver', '', 'at', 'mumbai', 'and', 'at', 'other', 'centers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'question', 'of', 'what', 'caused', 'malaria', 'and', 'how', 'it', 'was', 'transmitted', 'did', 'not', 'escape', 'his', 'attention', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'designed', 'by', 'architect', 'j.', 'j.', '', 'and', 'completed', 'in', '1', '9', '2', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'though', 'she', 'was', '', 'twice', ',', '``', 'saratoga', \"''\", 'survived', 'the', 'war', ',', 'and', 'was', 'destroyed', 'as', 'a', 'target', 'ship', 'during', 'operation', '', ',', 'a', 'series', 'of', 'atomic', 'bomb', 'tests', 'at', 'bikini', '', 'in', 'mid-', '1', '9', '4', '6', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'underwood', 'gave', 'the', 'debut', '', 'performance', 'of', 'the', 'song', 'at', 'the', '5', '3', 'rd', 'annual', 'country', 'music', 'association', 'awards', 'in', 'nashville', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'mgm', '', 'into', 'the', 'possibility', 'of', 'making', 'the', 'film', 'in', 'china', ',', 'the', 'chinese', 'government', 'was', 'divided', 'on', 'how', 'to', 'respond', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'galloway', 'has', '', 'that', 'he', 'was', '', 'the', 'iraqi', 'people', 'rather', 'than', 'saddam', '', 'in', 'the', 'speech', ',', 'which', 'was', 'translated', 'for', 'the', 'iraqi', 'leader', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'between', 'thirty', 'and', 'forty', 'people', 'were', 'taken', 'to', 'the', 'hospital', 'with', 'moderate', 'injuries', ',', 'while', '', 'contained', 'the', 'fire', 'that', 'resulted', 'from', 'the', 'crash', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'espedal', 'is', 'featured', 'in', 'the', '2', '0', '0', '7', 'documentary', 'film', '``', 'true', 'norwegian', 'black', 'metal', \"''\", 'which', 'focused', 'on', 'some', 'aspects', 'of', 'the', 'life', 'of', 'black', 'metal', 'performer', '', '``', '', \"''\", 'espedal', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'opposition', 'parties', 'strongly', '', 'the', 'result', 'and', 'stated', 'they', 'were', '', 'to', 'accept', 'the', '', 'of', 'the', 'election', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '2', '7', ',', 'he', 'was', 'elected', 'a', 'full', 'member', 'of', 'the', 'communist', 'academy', ',', 'eventually', 'becoming', 'its', 'vice-president', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'upon', 'the', 'death', 'of', 'stalin', 'in', '1', '9', '5', '3', ',', 'the', 'lyrics', ',', 'which', 'mentioned', 'him', 'by', 'name', ',', 'were', 'discarded', 'during', 'the', 'process', 'of', '', 'and', 'the', '', 'continued', 'to', 'be', 'used', 'without', 'words', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '3', ',', 'the', 'novel', 'was', 'listed', 'on', 'the', 'bbc', \"'s\", 'the', 'big', 'read', 'poll', 'of', 'the', 'uk', \"'s\", '``', '', 'novels', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'australian', '', 'such', 'as', 'adelaide', \"'s\", '', '', 'who', 'ran', 'the', '', 'park', 'speedway', ',', 'and', 'empire', '', 'who', 'ran', 'the', 'brisbane', 'exhibition', 'ground', 'and', 'the', 'famous', 'sydney', '', 'speedway', ',', 'often', 'imported', 'drivers', 'from', 'the', 'us', ',', '', 'as', 'the', 'popular', 'jimmy', '', '.', '', '', '', '', '']\n", "['', 'the', 'battalion', 'currently', 'provides', 'support', 'to', 'the', 'brigade', '', 'command', 'and', '1', 'st', 'armored', 'division', 'during', 'the', 'network', 'integration', 'evaluation', '(', '', ')', 'held', '', 'in', 'the', 'spring', 'and', 'fall', 'at', 'fort', '', ',', '', 'and', 'white', 'sands', 'missile', 'range', ',', '', '.', '', '', '', '', '', '', '']\n", "['', 'the', 'median', 'income', 'for', 'a', 'household', 'in', 'the', 'city', 'was', '$', '3', '1', ',', '6', '0', '7', ',', 'and', 'the', 'median', 'income', 'for', 'a', 'family', 'was', '$', '3', '1', ',', '4', '2', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'that', 'night', ',', 'billy', 'witnesses', 'a', 'drug', 'deal', 'between', 'reno', 'and', 'some', 'mexican', 'men', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'contributed', 'a', 'vault', 'score', 'of', '1', '6', '.', '0', '3', '3', 'and', 'a', 'floor', 'score', 'of', '1', '4', '.', '5', '6', '6', 'towards', 'the', 'american', 'team', \"'s\", '', 'finish', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'frost', 'stands', 'around', 'in', 'her', 'diamond', 'state', ',', 'she', 'sees', 'the', 'phoenix', 'force', '', 'around', 'hope', ',', '', 'her', 'to', 'remember', 'that', 'the', 'phoenix', 'had', 'told', 'her', 'to', '``', 'prepare', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bradford', 'is', 'home', 'to', 'five', 'churches', 'which', 'operate', 'within', 'the', 'city', 'limits', 'as', 'of', 'may', '2', '0', '1', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'lies', 'approximately', 'east', 'of', '', ',', 'west', 'of', 'sokółka', ',', 'and', 'north', 'of', 'the', 'regional', 'capital', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'have', 'a', 'highly', 'variable', 'exterior', ',', 'ranging', 'from', 'smooth', 'or', '', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'campaign', 'against', 'development', 'has', '', 'some', 'traditional', 'political', 'boundaries', ',', 'with', 'former', 'conservative', 'party', 'resources', 'development', 'minister', 'colin', '', 'supporting', 'campaigns', 'to', 'save', 'rock', 'art', 'in', 'this', 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'made', 'in', 'america', \"''\", 'is', 'chase', \"'s\", '3', '0', 'th', 'and', 'final', 'official', 'writing', 'credit', '(', 'including', 'story', '', ')', 'for', 'the', 'series', 'and', 'his', 'ninth', 'as', 'sole', 'writer', 'of', 'an', 'episode', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'turner', \"'s\", 'bills', 'itself', 'as', 'america', \"'s\", '#', '1', 'national', 'rifle', 'association', 'retail', '', 'and', 'says', 'it', 'also', 'works', 'closely', 'with', 'organizations', 'including', '', 'club', 'international', ',', 'ducks', '', ',', 'california', '', 'association', 'and', 'united', '', 'to', 'help', 'preserve', 'and', 'protect', 'hunting', ',', 'shooting', 'and', 'fishing', 'activities', 'in', 'california', '.']\n", "['', '', 'was', 'then', 'taken', 'into', 'the', 'king', \"'s\", 'household', 'in', '1', '3', '6', '7', 'and', 'began', 'to', 'receive', 'his', 'own', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'originally', '', 'by', 'italian', '', ',', 'then', 'sold', 'to', 'the', 'new', 'york', 'times', 'magazine', 'group', 'in', '1', '9', '8', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'occurs', 'in', 'the', 'open', 'seas', 'of', 'the', 'southern', 'hemisphere', ',', 'mainly', 'between', '5', '8', '', 'and', '3', '2', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'in', 'this', '``', 'interview', \"''\", ',', 'he', '', 'that', 'he', '', 'his', 'actions', ',', 'and', 'that', 'they', 'were', 'not', 'right', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'taylor', 'married', 'carol', '', 'in', '1', '9', '7', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'if', 'no', 'conception', 'occurs', ',', 'the', '', '', 'as', 'well', 'as', 'the', 'egg', 'will', 'be', 'shed', 'during', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'then', 'beat', '', '', 'to', 'take', 'the', 'russian', 'indoor', 'title', 'with', 'a', '', 'of', '1', '4', '.', '4', '1', 'm', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'has', 'a', '$', '3', '0', 'billion', 'plan', 'intended', 'to', '', 'coal', 'communities', 'and', 'aid', 'them', 'in', 'the', 'transition', 'away', 'from', 'coal', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'same', 'year', ',', 'he', 'starred', 'in', 'the', 'television', 'series', '``', 'night', 'after', 'night', \"''\", 'alongside', 'kim', '', ',', 'and', 'starred', 'alongside', 'an', 'ensemble', 'cast', 'in', 'the', 'romance', 'film', '``', 'love', 'now', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'depending', 'up', 'on', 'the', 'present', 'network', 'condition', 'the', 'mobile', 'agent', '', 'its', 'path', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '9', 'february', ',', 'waititi', 'was', '', 'from', 'parliamentary', 'proceedings', 'by', 'speaker', 'mallard', 'for', 'refusing', 'to', 'wear', 'a', '', 'in', 'line', 'with', 'parliament', \"'s\", 'business', 'attire', 'dress', 'core', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'united', 'states', 'television', 'manufacturing', 'corporation', ',', 'also', 'known', 'informally', 'as', 'u.s.', 'television', 'manufacturing', ',', 'and', 'in', 'some', '', 'as', '', ',', 'was', 'an', 'american', 'television', 'manufacturing', 'and', 'distribution', 'company', 'known', 'for', 'its', 'early', '', 'television', 'sets', ',', 'intended', 'for', 'use', 'in', 'bars', 'and', 'other', 'public', 'spaces', '.', '', '']\n", "['', '', 'has', 'been', '', 'with', 'acting', 'and', 'drama', 'since', 'he', 'was', 'a', 'child', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '1', '9', '7', '3', '1', '0', '0', '', 'was', 'given', 'an', 'updated', 'reverse', 'design', 'in', '1', '9', '7', '8', ',', 'reading', '', '', '', \"'\", '(', 'forest', 'for', 'welfare', ')', ',', \"'\", '1', '9', '7', '8', \"'\", 'and', 'a', '', 'of', 'the', '', '', '.', '', '', '', '']\n", "['', '', 'sought', 'to', 'have', 'the', '2', '0', '2', '0', 'republican', 'national', 'convention', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'the', 'closing', 'of', 'the', 'case', 'could', \"n't\", 'wait', 'anymore', ':', '', '', 'wanted', 'to', 'use', 'the', 'failed', 'coup', 'for', 'his', '', 'campaign', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'back', 'in', '1', '9', '0', '5', ',', 'u.s.', 'president', 'william', 'howard', '', 'had', 'held', 'this', 'honorary', 'office', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', 'said', 'that', 'whilst', 'growing', 'up', 'his', 'biggest', 'influences', 'were', '', '', ',', '', ',', '', ',', '', ',', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'appointed', 'minister', 'of', 'industries', 'and', 'labour', 'by', 'premier', '', '', 'in', '1', '9', '4', '8', 'and', 'held', 'that', 'post', 'until', 'his', 'death', 'in', '1', '9', '5', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'additional', 'working', 'groups', 'and', '', 'groups', 'were', 'established', 'as', 'needed', 'to', 'achieve', 'the', '', 'set', 'for', 'by', 'the', '', 'committee', 'in', 'pursuit', 'of', 'the', 'member', 'agreed', 'upon', 'work', 'items', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'major', 'towns', 'include', '', ',', '', ',', '', ',', 'and', '', 'to', 'the', 'north', ',', '', '', '', 'and', '', 'to', 'the', 'west', ',', 'and', 'usa', 'river', 'to', 'the', 'east', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'february', '2', '0', '1', '8', ',', 'after', '', '', '', ',', '', 'was', 'arrested', 'and', 'subsequently', 'disappeared', 'in', 'state', 'custody', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'also', 'the', 'founding', 'director', 'of', 'the', 'institute', 'for', 'social', 'and', 'economic', 'research', 'and', 'policy', ',', 'and', '', 'director', 'of', 'columbia', \"'s\", 'oral', 'history', 'master', 'of', 'arts', 'program', ',', 'the', 'first', 'oral', 'history', 'masters', 'program', 'in', 'the', 'country', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', '', ')', '', 'sabha', 'seat', 'was', 'one', 'of', 'the', 'constituencies', 'of', 'maharashtra', 'legislative', 'assembly', ',', 'in', 'india', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'qualification', 'methods', 'were', 'the', 'same', 'for', 'both', 'the', 'men', \"'s\", 'and', 'women', \"'s\", 'events', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'meanwhile', ',', 'is', 'assigned', 'to', 'do', 'labor', 'work', 'at', 'the', '', 'in', '', '', 'where', 'eve', 'recognizes', 'him', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', 'now', '', 'that', 'multiple', 'threads', 'handle', 'the', '', 'instance', 'correctly', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'english', 'crowd', 'were', '', 'about', 'england', \"'s\", 'position', 'and', 'some', 'of', 'them', 'immediately', 'camped', 'outside', 'the', '', 'upon', 'leaving', 'the', 'ground', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', '1', '9', '6', '7', 'tip', 'top', 'tailors', 'had', 'lost', 'its', '', 'and', 'had', 'deteriorated', 'into', '``', 'an', 'old', '', 'chain', \"''\", 'according', 'to', 'toronto', '', 'donald', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'plan', 'of', 'the', 'seminary', 'was', '', 'in', 'the', 'form', 'of', 'the', 'letter', 'e', ',', 'with', '', '', 'the', 'wings', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'pieces', 'are', 'often', '', ',', 'but', 'he', 'also', 'uses', 'video', 'and', 'paintings', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'women', 'and', 'politics', 'in', 'algeria', 'from', 'the', 'war', 'of', 'independence', 'to', 'our', 'day', 'research', 'in', 'african', '', '3', '0', '.', '3', '(', '1', '9', '9', '9', ')', '6', '2', '-', '7', '7', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', 'leo', 'ii', 'was', 'too', 'young', 'to', 'rule', 'himself', ',', '', 'and', '', 'prevailed', 'upon', 'him', 'to', 'crown', '', 'as', '', ',', 'which', 'he', 'did', 'on', 'february', '9', ',', '4', '7', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'second', 'session', 'determined', 'the', 'starting', 'positions', 'of', 'the', 'top', 'ten', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'later', 'that', 'year', ',', 'during', 'the', 'northern', 'fall', ',', 'the', 'band', 'toured', 'the', 'united', 'states', 'with', 'born', 'of', '', ',', '', 'of', '', ',', '', 'and', 'structures', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'second', 'and', 'third', 'aircraft', 'to', 'be', 'delivered', 'to', 'atlas', 'were', 'both', '', '', ',', 'following', 'their', 'conversion', 'of', 'the', '``', 'cheetah', 'e', \"''\", 'configuration', ',', 'these', 'aircraft', 'went', 'into', 'service', 'with', '5', 'squadron', 'at', 'afb', 'louis', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '2', '0', '1', '6', 'national', 'park', 'service', 'historic', 'properties', 'management', 'report', 'for', 'grand', '', 'national', 'park', 'recommended', 'that', 'the', 'buildings', 'be', 'repaired', ',', 'becoming', 'a', 'visitor', '', 'with', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'has', 'created', 'story', '', ',', 'such', 'as', '``', 'black', '', \"''\", ',', 'which', 'is', 'in', 'the', 'permanent', 'collection', 'of', 'the', '', 'art', 'museum', 'in', 'new', 'york', 'city', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'between', '1', '9', '6', '6', 'and', '1', '9', '6', '9', 'in', 'plovdiv', 'was', 'assembled', 'the', 'sports', 'car', '', 'as', 'a', 'result', 'of', 'the', 'cooperation', 'of', 'alpine', 'and', '', '``', 'bullet', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'state', 'route', '7', '7', '9', '(', 'sr', '7', '7', '9', ')', 'in', 'the', 'u.s.', 'state', 'of', 'virginia', 'is', 'a', 'secondary', 'route', 'designation', 'applied', 'to', 'multiple', '', 'road', 'segments', 'among', 'the', 'many', 'counties', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'adjacent', 'to', 'the', 'white', 'tower', 'at', 'the', 'southern', 'walls', 'between', 'white', 'and', 'day', 'towers', 'stood', 'the', '', \"'s\", 'headquarters', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '0', ',', '', 'madeleine', 'defended', 'his', 'higher', 'doctoral', 'dissertation', 'and', 'was', 'awarded', 'the', 'danish', 'higher', 'doctoral', 'degree', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'delivered', 'remarks', 'at', '', ',', 'one', 'of', 'russia', \"'s\", 'prestigious', 'schools', 'in', 'the', 'area', 'of', 'diplomacy', 'and', 'international', 'affairs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'court', 'ordered', 'the', 'city', 'to', 'house', 'no', 'more', 'than', '3', '8', 'children', ',', 'ordered', 'a', 'fine', 'of', '$', '1', ',', '0', '0', '0', 'a', 'day', 'for', 'every', 'day', 'the', 'facility', 'held', 'more', 'than', '3', '8', 'children', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'gibran', \"'s\", 'reported', 'wealth', ',', 'filed', 'in', '2', '0', '2', '0', 'as', 'a', '', 'to', 'run', 'for', 'office', ',', 'was', 'reported', 'at', '', '2', '2', 'billion', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'most', 'high', 'school', ',', 'little', 'league', ',', 'and', 'recreational', '', 'feature', '', 'that', 'are', 'at', 'the', 'field', 'level', ',', 'usually', 'separated', 'from', 'the', 'playing', 'field', 'by', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'over', 'their', 'history', 'bearings', 'have', 'been', 'made', 'of', 'many', 'materials', 'including', '', ',', '', ',', 'glass', ',', 'steel', ',', 'bronze', ',', 'other', '', 'and', 'plastic', '(', 'e.g.', ',', '', ',', '', ',', '', ',', 'and', '', ')', 'which', 'are', 'all', 'used', 'today', '.', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'none', 'of', 'them', 'was', 'ever', 'identified', 'as', '``', 'the', 'air', 'force', 'song', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'industries', 'was', 'one', 'of', 'the', 'largest', '', 'companies', 'in', 'the', 'world', 'before', 'a', 'hostile', '', 'by', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'of', 'the', '', '', 'f', '6', '0', '0', 'was', 'revealed', 'in', '2', '0', '1', '8', 'during', 'the', '2', '0', '1', '8', 'beijing', '', 'show', 'with', 'the', 'design', 'work', 'done', 'by', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'competed', 'at', 'the', '2', '0', '1', '0', 'winter', 'olympics', 'in', 'vancouver', 'in', 'the', 'women', \"'s\", 'parallel', 'giant', 'slalom', 'competition', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'foundation', 'originally', 'estimated', 'the', 'technology', 'to', 'be', 'ready', 'for', 'field', 'use', 'by', '2', '0', '2', '9', 'somewhere', 'in', 'africa', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'old', 'chicago', 'tv', 'commercial', 'featured', 'an', '1', '8', '-year-old', '', '', '', 'on', 'top', 'of', 'the', '', 'during', 'high', 'winds', ',', 'while', 'a', '', 'filmed', 'from', 'inside', 'a', 'helicopter', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'single', 'from', 'the', 'album', ',', '``', '', \"''\", ',', 'was', 'a', 'minor', 'hit', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'upon', 'its', 'completion', ',', 'it', 'was', 'given', 'the', 'name', '``', 'adelphia', 'coliseum', \"''\", 'in', 'a', '1', '5', '-year', ',', '$', '3', '0', 'million', 'naming', 'rights', 'arrangement', 'with', 'adelphia', 'business', 'solutions', ',', 'a', 'subsidiary', 'of', 'the', 'larger', 'adelphia', '', 'company', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'virginia', 'arts', 'of', 'the', 'book', 'center', 'was', 'founded', 'in', '1', '9', '9', '5', 'in', '', 'as', 'a', '', 'book', 'arts', 'workshop', 'providing', '', 'use', 'of', '', 'and', 'type', 'for', '', 'printing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '1', '0', 'th', 'dalai', 'lama', 'mentioned', 'in', 'his', 'biography', 'that', 'he', 'was', 'allowed', 'to', 'use', 'the', 'golden', 'seal', 'of', 'authority', 'based', 'on', 'the', 'convention', 'set', 'up', 'by', 'the', 'late', 'dalai', 'lama', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'no', 'marked', 'path', 'all', 'the', 'way', 'to', 'the', 'top', ',', 'but', 'nevertheless', ',', 'it', 'is', 'quite', 'an', 'easy', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'awarded', 'the', '``', 'booker', 'of', '', \"''\", 'prize', 'and', 'the', 'best', '', 'prize', 'winners', 'in', '1', '9', '9', '3', 'and', '2', '0', '0', '8', 'to', 'celebrate', 'the', 'booker', 'prize', '2', '5', 'th', 'and', '4', '0', 'th', 'anniversary', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'she', 'does', 'believe', 'her', '', 'to', 'dogs', 'is', '', ',', 'as', 'she', 'mentions', 'that', 'a', 'dog', 'bit', 'her', 'during', 'the', 'time', 'of', 'her', 'first', 'period', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', 'february', '1', '9', '2', '2', 'he', 'joined', 'the', 'royal', 'military', 'college', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'first', 'two', 'levels', 'of', 'the', 'staircase', 'there', 'are', '', 'in', 'the', 'external', 'wall', 'to', '', 'light', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '2', '0', '1', '4', 'election', ',', '', 'and', '', 'ran', 'again', ',', 'this', 'time', 'joined', 'by', '', '', ',', 'perennial', 'candidate', 'for', 'the', 'progressive', 'canadian', 'party', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'the', 'pressure', 'of', 'the', 'crowd', 'after', 'a', 'draw', 'in', 'the', 'choir', 'and', 'various', '', 'to', 'the', '', ',', 'the', 'weather', 'was', '', 'one', 'of', 'the', 'reasons', 'that', 'made', 'the', 'football', 'and', 'athletic', 'chose', 'to', '', '', 'the', 'contract', 'on', 'september', '1', ',', '2', '0', '0', '9', '.', '', '']\n", "['', '', 'then', 'recorded', 'with', 'the', 'band', '', 'as', 'a', 'session', 'drummer', 'before', 'joining', 'them', 'as', 'a', 'band', 'member', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'music', 'provides', 'him', 'a', 'voice', 'to', 'raise', 'awareness', 'about', 'social', 'oppression', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'heads', 'were', 'cast', 'iron', 'units', 'with', 'new', '', 'combustion', '', 'and', '', 'valve', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'silk', 'was', '', 'in', 'a', 'variation', 'of', 'the', '', '', ',', 'with', '', 'arranged', 'to', 'create', 'fine', '', 'across', 'the', 'fabric', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'located', 'in', 'belgrade', \"'s\", 'municipality', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '1', ',', 'gong', 'acted', 'opposite', 'cha', '', 'in', 'the', 'tv', 'series', '``', 'the', 'greatest', 'love', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '4', '7', ',', 'the', '', 'successfully', 'prosecuted', 'elizabeth', '', 'for', 'keeping', 'domestic', '', 'dora', 'l.', 'jones', 'in', 'conditions', 'of', 'slavery', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ten', 'locomotives', 'were', 'delivered', 'in', '1', '9', '2', '7', ',', 'numbered', 'in', 'the', 'range', 'from', '1', '3', '7', '0', 'to', '1', '3', '7', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'the', 'a', '&', 'amp', ';', 'p', 'supermarket', 'chain', \"'s\", 'private', 'label', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', '``', 'sexy', ',', 'sexy', ',', 'sexy', \"''\", 'was', 'released', 'as', 'a', 'single', 'it', 'performed', 'strongly', 'on', 'the', 'mainstream', 'charts', 'of', 'the', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'saint', 'paul', \"'s\", '', 'school', 'is', 'a', 'grade', 'school', '(', '', '8', ')', 'of', 'the', 'wisconsin', '', '', '', 'near', 'mount', '', '(', 'in', 'the', 'town', 'of', 'forest', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'january', '2', '0', '1', '8', ',', '', '', 'left', 'the', 'national', 'action', 'party', 'to', 'join', 'the', 'left-wing', 'national', '', 'movement', '(', '', ')', 'citing', 'that', 'the', '', 'of', 'inclusion', ',', '', 'and', 'development', 'were', 'not', 'met', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'are', 'provided', 'legislative', 'help', 'in', '', 'private', 'members', 'bills', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'the', 'majority', 'of', 'past', 'research', 'has', 'focused', 'on', '', 'aβ', ',', 'soluble', '', 'aβ', 'species', 'are', 'now', 'considered', 'to', 'be', 'of', 'major', '', 'importance', 'in', 'ad', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', '2', '0', '1', '0', 'world', 'cup', ',', 'he', 'scored', 'five', 'goals', 'in', 'six', 'appearances', 'as', 'germany', 'finished', 'in', 'third', 'place', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', 'member', 'of', 'the', '', ',', 'doyle', 'has', 'been', 'involved', 'in', 'many', '', '', 'and', 'was', '', 'when', 'the', 'group', 'disbanded', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '7', '1', 'he', 'published', 'the', 'solid', 'study', '``', 'das', '', '', 'des', '', \"''\", '[', 'the', '', '', '(', 'teaching', 'office', ')', 'of', 'the', 'pope', ',', '', ',', '1', '8', '7', '1', ']', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', 'to', 'the', 'national', 'deals', ',', 'many', 'clubs', 'had', 'local', 'broadcast', 'deals', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'james', 'r.', '', '(', 'born', 'february', '2', '3', ',', '1', '9', '3', '1', ')', 'is', 'a', 'politician', 'in', 'the', 'american', 'state', 'of', 'florida', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', '``', '', \"''\", 'are', 'considered', 'to', 'be', '``', 'a', '', '', \"''\", 'for', 'the', 'forthcoming', 'movement', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'u.s.', 'attorney', 'peter', 'smith', 'said', 'hafer', '', 'to', 'federal', '', 'who', 'interviewed', 'her', 'in', 'may', 'about', 'money', 'she', 'secretly', 'took', 'in', 'from', 'a', 'business', 'person', 'referred', 'to', 'in', 'the', '', 'only', 'as', '``', 'person', '#', '1', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'advanced', 'its', 'own', 'version', 'of', '``', '', '', \"''\", 'whereby', '``', 'the', 'politics', 'of', 'this', 'country', 'has', 'been', ',', 'and', 'must', 'remain', 'for', 'the', '', 'future', ',', 'native', '[', 'i.e', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'elements', 'software', ',', 'formerly', 'known', 'as', '', ',', 'is', 'a', 'supply', 'chain', 'management', 'software', 'company', 'and', '``', 'provider', 'of', 'technology', 'solutions', 'for', 'the', 'timber', 'industry', \"''\", 'based', 'in', '', ',', '', ',', 'england', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'meanwhile', ',', 'a', '', '', 'gradually', 'develops', 'around', 'the', 'forming', 'muscle', 'tissue', 'to', 'separate', 'it', 'from', 'the', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '1', '1', 'he', 'designed', 'a', '', '', 'that', 'is', 'considered', 'to', 'be', 'one', 'of', 'the', '', 'of', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'october', '1', '8', '3', '8', ',', '', 'moved', 'to', 'paris', '', 'never', 'to', 'have', '', 'with', 'the', 'san', '', 'again', 'after', 'the', 'king', 'of', 'naples', 'banned', 'the', 'production', 'of', '``', '', \"''\", 'on', 'the', 'grounds', 'that', 'such', 'a', 'sacred', 'subject', 'was', 'inappropriate', 'for', 'the', 'stage', '.', '', '', '']\n", "['', 'the', 'episode', 'is', 'concluded', 'with', 'a', 'scene', 'that', '', 'the', 'last', 'scene', 'of', 'the', 'previous', 'season', \"'s\", 'finale', '(', '``', 'help', 'me', \"''\", ')', ':', 'house', 'is', 'sitting', 'on', 'his', '', 'floor', 'with', 'a', 'bottle', 'of', '', 'in', 'his', 'hand', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'schmidt', 'was', 'the', 'son', 'of', 'george', 'w.', 'schmidt', 'and', 'margaret', '', 'schmidt', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'left-wing', '', '', 'was', 'designated', 'as', 'the', 'socialist', 'candidate', 'after', 'defeating', 'former', 'prime', 'minister', 'manuel', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '0', ',', '', 'added', 'a', 'youtube', 'account', 'and', 'twitter', 'account', '@', '', 'the', 'website', 'is', 'published', 'by', 'the', 'environment', 'media', 'group', 'ltd', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '8', '6', '', 'accepted', 'a', '', 'position', 'at', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '9', 'april', ',', '6', ',', '0', '6', '0', 'new', 'cases', 'were', 'confirmed', ',', 'bringing', 'the', 'total', 'number', 'to', '4', '2', ',', '8', '5', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'romanesque', ',', 'for', 'example', 'at', 'limburg', 'cathedral', ',', 'produced', 'works', 'that', 'used', 'coloured', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'race', ',', 'known', 'as', 'the', 'bob', '', '', '5', '0', '0', ',', 'was', 'won', 'by', 'england', \"'s\", 'steve', '', 'and', 'belgian', '', 'pierre', '', 'in', 'a', '', '', 'built', 'ford', 'sierra', 'rs', '5', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'shortly', 'after', 'receiving', 'his', 'master', \"'s\", 'degree', 'he', 'joined', '', 'books', 'as', 'an', 'editor', 'and', 'a', 'year', 'later', 'became', 'the', 'american', 'editor', 'of', 'the', '1', '5', '0', '', 'international', 'twentieth', 'century', '', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'throughout', 'the', 'middle', 'ages', ',', 'white', 'bread', 'was', '', 'solely', 'by', 'the', 'rich', ',', 'while', 'the', 'common', 'people', 'could', 'only', '', 'black', 'bread', 'and', ',', 'often', ',', 'not', 'even', 'that', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'cluster', 'science', 'archive', 'is', 'located', 'alongside', 'all', 'the', 'other', '', 'science', 'archives', 'at', 'the', 'european', 'space', '', 'center', ',', 'located', 'near', 'madrid', ',', 'spain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'tie-', '1', 'then', '', 'these', 'electrons', 'into', 'energy', 'using', 'carbon', 'dioxide', 'as', 'an', 'electron', 'receptor', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'genus', 'was', 'therefore', 'split', 'and', 'a', 'number', 'of', 'species', 'including', 'the', '', '', 'were', 'moved', 'to', 'the', '', 'genus', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'previously', ',', 'the', 'art', 'museum', 'was', 'located', 'in', 'a', 'ground', 'floor', 'of', 'an', 'office', 'building', 'located', '', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'strategy', 'was', 'also', 'applied', 'to', 'obtain', '', 'solutions', 'to', 'the', '', 'equation', 'for', 'an', '', 'square', 'well', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'working', 'as', 'a', 'laboratory', 'assistant', 'to', 'dr.', '', 'croit', ',', 'a', '', 'hoping', 'to', 'build', 'a', 'device', 'capable', 'of', '', 'into', '', 'from', 'other', 'dimensions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'time', 'it', 'was', 'extended', 'to', 'its', 'top', 'length', 'of', '2', '3', '3', '.', '5', 'km', 'in', '1', '9', '6', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'green', 'had', 'urged', 'duncan', 'to', 'run', ',', 'but', 'duncan', \"'s\", '', 'statement', '', 'her', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'galloway', 'claimed', 'that', 'the', '', \"'s\", '', 'was', 'full', 'of', '', 'and', '', '', ',', 'citing', ',', 'for', 'example', ',', 'the', 'charge', 'that', 'he', 'had', 'met', 'with', 'saddam', '', '``', 'many', 'times', \"''\", 'when', 'the', 'number', 'was', 'two', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'seeing', 'the', '', 'of', 'maintaining', 'himself', 'in', 'hanau', ',', 'ramsay', 'agreed', 'to', 'evacuate', 'the', 'city', 'on', '', 'terms', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'players', 'will', 'slowly', 'be', 'invited', 'to', 'download', 'a', '', 'version', 'of', 'the', 'game', 'during', 'its', 'transition', 'from', '', 'flash', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'females', 'spend', 'most', 'of', 'their', 'lives', 'in', 'the', 'tree', '', ',', '', 'dense', 'and', 'mature', 'oak', '', ',', 'coming', 'down', 'only', 'to', 'lay', 'their', 'eggs', 'on', 'the', 'small', 'willow', '', 'that', 'grow', 'in', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'evolution', 'of', 'a', 'spin', 'network', 'over', 'time', 'is', 'called', 'a', 'spin', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '8', ',', '', 'was', 'elected', 'as', 'a', 'member', 'of', 'the', 'royal', 'netherlands', 'academy', 'of', 'arts', 'and', 'sciences', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'sets', 'out', 'to', 'expose', 'government', 'corruption', ',', 'and', 'ends', 'up', '', 'on', 'an', 'international', 'journey', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', \"'s\", 'first', 'operational', '', 'squadron', '(', '8', '2', '6', 'nas', ')', 'was', 'embarked', 'on', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'beginning', 'with', 'the', 'new', 'york', 'city', 'financial', 'crisis', 'in', 'the', '1', '9', '7', '0', 's', 'and', '1', '9', '8', '0', 's', ',', 'state', 'and', 'local', 'governments', 'began', '', 'their', 'financial', 'management', 'systems', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'heat', 'are', 'regarded', 'as', 'having', '', 'the', 'genre', 'because', 'of', 'their', 'unique', 'combination', 'of', '', ',', '', ',', 'and', 'industrial', 'music', 'their', 'music', 'has', 'been', 'compared', 'directly', 'to', '', ',', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'such', 'permutations', 'have', 'been', 'called', '``', '', 'permutations', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '2', '0', '0', '4', 'us', 'dvd', 'release', 'by', '', 'films', 'deleted', '2', '3', 'minutes', 'of', 'footage', 'from', 'the', 'original', 'cut', ';', 'the', '', 'footage', 'includes', '``', 'golden', 'leg', \"''\", '', \"'s\", '', 'opening', 'sequence', 'and', '', \"'s\", 'interactions', 'with', '', '.', '', '', '', '', '', '', '', '']\n", "['', 'she', 'accused', 'the', 'german', 'catholic', 'scouting', 'association', 'of', 'saint', 'george', 'of', 'allowing', 'alcohol', 'and', 'promoting', 'the', 'use', 'of', '', 'to', 'prevent', 'the', 'spread', 'of', '', ',', 'which', 'she', 'called', '``', 'propaganda', 'from', 'the', 'gay', 'lobby', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'in', 'my', 'life', \"''\", 'is', 'rock', 'song', 'by', 'australian', 'band', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'the', 'son', 'of', 'alexander', 'mccormick', ',', 'a', '', '', 'in', 'the', 'ohio', 'country', ',', 'and', 'elizabeth', 'turner', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '4', 'for', '', 'and', 'winds', \"''\", 'inspired', 'by', 'the', 'music', 'of', 'the', '', 'group', 'tower', 'of', 'power', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'between', '2', '0', '0', '2', 'and', '2', '0', '0', '5', ',', 'the', 'tax', 'raised', '$', '7', '1', 'million', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', 'to', 'her', 'work', 'in', 'the', 'senate', ',', '', 'served', 'as', 'member', 'of', 'the', 'french', 'delegation', 'to', 'the', 'parliamentary', 'assembly', 'of', 'the', 'council', 'of', 'europe', 'from', '1', '9', '9', '2', 'until', '2', '0', '1', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'associated', 'with', 'a', '', 'private', 'equity', 'firm', ',', 'best', 'merchant', 'partners', ',', 'where', 'he', 'helped', 'to', 'develop', 'two', 'major', '', 'educational', 'initiatives', ',', 'the', 'american', 'college', 'of', 'education', 'in', 'chicago', ',', 'illinois', ',', 'and', '', 'community', 'college', 'in', '', ',', 'colombia', '.', '', '', '', '', '', '']\n", "['', 'john', '', '(', ')', ',', 'who', 'had', 'come', 'third', 'and', 'won', 'a', '', 'bonus', 'in', 'the', 'first', 'sprint', ',', 'took', 'second', 'place', 'in', 'the', 'second', 'sprint', 'ahead', 'of', 'michael', 'matthews', '(', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'album', 'was', 'nominated', 'for', 'the', 'latin', 'grammy', 'award', 'for', 'best', 'urban', 'music', 'album', 'in', '2', '0', '1', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'particular', 'the', 'data', 'indicates', 'that', 'clothing', 'and', 'household', '', 'are', 'a', 'risk', 'factor', 'for', 'spread', 'of', 's.', '', '(', 'including', '', 'and', '', '', 'strains', ')', ',', 'and', 'that', 'effectiveness', 'of', 'laundry', 'processes', 'may', 'be', 'an', 'important', 'factor', 'in', 'defining', 'the', 'rate', 'of', 'community', 'spread', 'of', 'these', 'strains', '.']\n", "['', 'this', 'group', 'brought', 'with', 'them', 'a', 'long', 'memorial', 'to', '', 'the', '', 'the', 'colony', 'had', 'endured', 'from', 'the', 'spanish', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'courtyard', 'along', 'the', 'southern', 'walls', 'between', '', 'and', 'tenchynska', 'towers', 'were', 'a', '', 'and', '', 'shed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'end', ',', 'she', 'decides', 'to', 'follow', 'her', 'heart', ',', 'when', 'she', 'is', 'attacked', 'by', 'a', 'stranger', 'and', 'rescued', 'by', 'no', 'other', 'than', '', \"'\", 'mother', 'tanja', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'are', 'termed', '', '', ',', 'of', 'which', 'there', 'are', 'two', 'types', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'development', 'of', 'the', 'city', 'connected', 'with', 'the', 'rapid', 'growth', 'of', 'the', 'population', 'required', 'a', 'new', 'church', ';', 'the', '', 'began', '', 'in', 'the', 'first', 'half', 'of', 'the', 'fourteenth', 'century', '(', 'about', '1', '3', '2', '0', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'interview', 'with', 'nicol', 'implied', 'that', 'marsh', 'was', 'moving', 'in', 'a', 'different', 'direction', ',', 'specifically', 'appearing', 'to', 'refer', 'to', 'a', 'growing', 'collaboration', 'between', 'marsh', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'english', 'translations', 'were', 'soon', 'produced', 'and', 'were', 'made', 'official', 'for', 'their', 'territories', 'by', 'the', '', 'episcopal', 'conferences', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'claimed', 'to', 'be', 'a', 'turning', 'point', 'in', 'the', 'rise', 'of', 'the', '', 'to', 'the', 'nfl', \"'s\", 'top', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', ')', 'is', 'an', 'enzyme', 'with', 'systematic', 'name', '``', '', ':', '', '2', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'complex', '', 'is', 'variously', 'composed', 'of', '', 'and', '', 'forms', 'and', '', 'with', 'slate', ',', 'however', 'original', 'cast', 'iron', '', 'has', 'been', 'removed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'formula_', '4', 'is', 'assumed', 'to', 'lie', 'in', 'the', '', 'formula_', '5', ',', 'in', 'which', 'case', 'formula_', '2', 'is', 'bounded', 'on', 'formula_', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'original', 'theatre', 'was', 'built', 'in', '1', '5', '9', '9', ',', 'destroyed', 'by', 'the', 'fire', 'in', '1', '6', '1', '3', ',', 'rebuilt', 'in', '1', '6', '1', '4', ',', 'and', 'then', 'demolished', 'in', '1', '6', '4', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'known', 'christmas', '', 'may', 'be', 'traced', 'to', '4', 'th-century', 'rome', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'an', '', ',', 'meaning', 'that', 'all', 'of', 'its', 'faces', 'are', '', 'to', 'each', 'other', ',', 'and', '', '', 'has', '', 'that', 'it', 'is', 'the', 'only', '', '', 'with', 'faces', 'of', 'six', 'or', 'more', 'sides', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'that', 'recording', 'included', 'lee', \"'s\", 'first', 'published', '', 'composition', ',', '``', '', '', 'ha', \"'\", 'i', 'o', '', \"''\", ',', 'which', 'was', 'written', 'with', 'the', 'assistance', 'of', '', '', 'and', 'dedicated', 'to', 'lee', \"'s\", 'brothers', ',', 'who', '', 'to', 'surf', 'the', 'waves', 'of', '', '.', '', '', '', '', '']\n", "['', 'this', 'decision', 'later', 'proved', 'extremely', 'costly', 'for', 'new', 'zealand', 'because', 'australia', 'only', 'just', '', 'escaped', 'with', 'a', 'draw', 'in', 'the', 'game', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'median', 'income', 'for', 'a', 'household', 'in', 'the', 'cdp', 'was', '$', '2', '4', ',', '8', '7', '5', ',', 'and', 'the', 'median', 'income', 'for', 'a', 'family', 'was', '$', '3', '1', ',', '5', '0', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'we', 'also', 'find', 'the', 'name', 'of', '``', '', \"''\", 'for', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '4', '4', '6', '``', '', \"''\", 'is', 'mentioned', 'in', 'writing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'municipality', 'is', 'the', '8', '3', 'rd', 'largest', 'by', 'area', 'out', 'of', 'the', '3', '5', '6', 'municipalities', 'in', 'norway', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'last', '', 'in', 'the', 'american', 'column', ',', '``', 'northampton', \"''\", ',', 'followed', '``', 'honolulu', \"''\", 'to', 'pass', 'the', 'damaged', '', 'ahead', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'two', 'of', 'the', 'nine', 'submitted', '', ':', 'the', '', '', 'and', '', '', ',', 'were', 'included', 'as', 'bonus', 'tracks', 'on', 'the', '', 'edition', 'of', 'the', 'album', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'flower', 'mart', 'was', 'held', 'in', '1', '9', '1', '1', 'in', 'mount', 'vernon', 'place', 'around', 'the', 'washington', 'monument', ',', 'in', 'the', 'mount', 'vernon', 'area', 'of', 'baltimore', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'closely', 'followed', 'by', 'william', '', ',', 'who', 'received', 'a', 'total', 'of', '1', '4', 'nominations', ',', 'winning', '3', 'awards', 'as', 'well', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'disorder', 'has', 'been', 'identified', 'in', 'approximately', '3', '5', '0', 'families', ',', 'with', 'a', 'significant', 'proportion', 'being', '', 'families', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'can', 'be', 'understood', 'as', 'a', 'part', 'of', 'the', 'tradition', 'of', 'the', '', 'present', 'in', 'every', 'culture', 'or', 'tradition', '(', 'like', '', '', 'of', 'bengal', 'and', '', '', ')', ',', 'where', 'ancient', '', ',', '', 'and', 'stories', 'are', '', 'or', '', 'to', 'educate', 'and', '', 'the', 'masses', '.', '', '']\n", "['', 'on', '3', 'july', '1', '9', '4', '6', ',', 'communist', '', 'mobile', 'strike', 'force', 'attacked', 'northward', 'to', 'pursue', 'the', '1', ',', '4', '0', '0', 'strong', 'bandit', 'force', 'that', 'fled', 'to', 'the', 'regions', 'of', '', '(', '', ')', 'and', '', '(', '', ')', 'and', 'joined', 'the', 'local', 'bandits', '.', '', '', '']\n", "['', 'an', 'estimate', 'in', '2', '0', '0', '9', 'by', 'michael', 'chettleburgh', ',', 'an', 'expert', 'on', 'street', 'gangs', 'who', 'works', 'as', 'a', 'consultant', 'on', 'issues', 'of', 'criminal', 'justice', ',', 'put', 'npf', \"'s\", 'membership', 'between', '6', '0', 'and', '8', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'house', 'thinks', 'it', 'over', ',', 'and', 'finally', '', 'to', 'destroy', 'itself', 'rather', 'than', 'live', 'with', 'the', 'simpsons', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '', '(', 'born', '1', '6', 'march', '1', '9', '9', '3', ',', 'in', '', ')', 'is', 'an', 'indonesian', 'professional', 'footballer', 'who', 'plays', 'as', 'a', '', 'for', 'liga', '1', 'club', '', 'united', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'occasion', 'of', 'the', 'release', 'of', '', '', 'rahman', ',', 'the', 'imprisoned', 'leader', 'of', 'the', 'new', 'country', 'of', 'bangladesh', ',', 'she', 'released', 'a', 'song', '``', '', '', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', '', 'support', '', '', 'to', 'the', 'archipelago', ',', '', 'that', 'the', 'constant', 'presence', 'of', 'people', 'may', '', 'illegal', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'august', '1', '9', '4', '0', ',', 'the', 'second', 'vienna', 'award', ',', '', 'by', 'germany', 'and', 'italy', ',', 'reassigned', 'the', 'territory', 'of', 'northern', '', '(', 'which', 'included', '', ')', 'from', 'romania', 'to', 'hungary', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ting', 'has', 'renewed', 'its', 'network', 'agreement', 'with', 'sprint', 'for', 'an', 'additional', 'year', 'until', 'september', '2', '0', '2', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'the', '2', '0', '1', '7', 'spring', 'season', 'one', 'world', 'sports', ',', 'cbs', 'sports', 'network', ',', 'and', '', 'tv', 'did', 'not', 'return', ',', 'but', '', 'sports', 'did', 'return', ',', 'airing', 'a', 'national', 'game', 'of', 'the', 'week', 'featuring', 'at', 'least', 'one', 'appearance', 'by', 'all', 'eight', 'teams', '.', '', '', '', '']\n", "['', 'the', 'newly', 'created', 'university', 'acted', 'from', 'the', '', 'as', 'an', 'intellectual', 'center', 'for', 'theology', 'and', '', 'scholars', 'from', 'throughout', 'the', 'holy', 'roman', 'empire', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'was', 'a', 'catholic', 'priest', ',', 'born', 'in', 'parma', 'into', 'a', 'wealthy', 'family', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'police', 'arrive', 'on', 'scene', ',', 'but', 'angel', 'is', 'able', 'to', 'escape', 'without', 'getting', 'captured', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'scheduled', 'to', 'have', 'six', '', '1', '0', '0', '0', '', 'built', 'in', 'collaboration', 'with', '', ',', 'the', 'russian', 'state', 'company', 'and', 'nuclear', 'power', 'corporation', 'of', 'india', 'limited', '(', '', ')', ',', 'with', 'an', 'installed', 'capacity', 'of', '6', ',', '0', '0', '0', '', 'of', 'electricity', '.', '', '', '']\n", "['', 'the', 'corps', 'was', 'first', 'formed', 'as', 'the', '1', '3', '7', 'th', 'rifle', 'corps', 'in', 'late', '1', '9', '4', '5', 'and', 'became', 'the', '4', '3', 'rd', 'rifle', 'corps', '(', 'second', 'formation', ')', 'in', '1', '9', '5', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'battalion', 'engineers', ',', '', ',', 'operates', ',', 'maintains', ',', 'and', '', 'network', 'communications', 'in', 'support', 'of', '', 'commanders', 'and', 'joint', 'force', 'land', 'component', 'commanders', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'charles', 'kingsley', \"'s\", '``', 'hereward', 'the', 'wake', ':', 'last', 'of', 'the', 'english', \"''\", '(', '1', '8', '6', '6', ')', 'tells', 'the', 'story', 'of', 'hereward', ',', 'the', 'last', '', '', 'against', 'the', 'normans', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'later', 'withdrew', 'his', 'candidacy', 'on', '7', 'april', '2', '0', '1', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '3', '(', 'december', '1', ',', '2', '0', '1', '3', ')', '', 'opened', 'its', 'first', 'master', 'franchise', 'in', 'australia', 'with', '', '', 'ltd', 'and', 'owners', 'will', 'and', '', 'keith', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'but', 'it', 'was', '', 'who', '', 'the', 'show', 'to', 'come', 'out', 'to', '', 'hop', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'stakes', 'is', 'an', 'american', 'thoroughbred', 'horse', 'race', 'once', 'run', 'annually', 'in', 'mid', 'july', 'at', 'delaware', 'park', '', 'in', '', ',', 'delaware', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'each', 'of', 'the', '', 'teams', 'are', 'presented', 'with', 'a', 'category', 'containing', 'ten', 'names', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'served', 'on', 'and', 'survived', 'its', 'following', 'the', 'battle', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'given', 'the', 'parties', \"'\", 'failure', 'to', 'agree', 'on', 'a', 'candidate', 'for', 'chief', 'advisor', ',', 'according', 'to', 'the', 'constitution', 'the', 'position', '', 'to', 'the', 'president', ',', 'iajuddin', 'ahmed', ',', 'serving', 'since', '2', '0', '0', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'listed', 'in', 'serious', ',', 'but', 'not', 'critical', 'condition', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'temporarily', '', 'and', 'taken', 'to', 'queen', 'of', 'angels', 'hollywood', 'presbyterian', 'medical', 'center', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'the', 'purpose', 'of', 'creating', 'the', '', ',', 'clubs', 'are', 'ranked', 'based', 'on', 'their', 'domestic', 'league', 'performances', 'and', 'on', 'their', 'qualification', 'for', 'the', '', 'phases', 'of', 'their', 'championships', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'p.', '', '(', 'born', '1', '9', '5', '0', ')', 'is', 'an', 'american', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'noted', 'with', '', 'that', 'douglas', 'took', 'advantage', 'of', 'the', 'crash', 'to', '``', '', \"''\", 'his', 'stated', '', 'to', 'have', 'the', 'government', 'focus', 'on', 'social', 'policy', ',', 'and', 'push', 'for', 'more', 'economic', 'reforms', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'starting', 'in', 'the', 'late', '1', '9', '5', '0', 's', ',', 'the', 'class', 'was', 'also', 'used', 'on', 'the', '', 'line', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", 'also', 'competed', 'in', 'the', '1', '9', '0', '8', 'summer', 'olympics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'second', 'book', ',', '``', 'true', '', 'of', 'an', 'admiral', \"''\", ',', 'was', 'published', 'in', '1', '9', '3', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '1', '1', ',', 'he', 'became', 'a', 'consulting', '', 'at', 'the', 'hospital', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '6', 'july', '2', '0', '1', '9', ',', '', '', 'of', 'the', '', '', 'signed', 'a', 'three-year', 'contract', 'with', 'barcelona', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'worked', 'as', 'an', 'assistant', 'editor', 'with', '', '', 'on', 'the', 'garden', '(', 'harbor', 'pictures', ')', ',', 'previously', 'known', 'as', 'body', '&', 'amp', ';', 'soul', 'by', '', 'films', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'born', 'in', 'kuala', 'lumpur', 'to', 'an', 'english', 'father', 'and', '', 'mother', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'older', 'version', '(', 'before', 'c.', '1', '8', '0', '0', ')', 'was', '1', 'fluid', 'ounces', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'had', 'also', 'emailed', 'the', '', 'league', 'in', 'his', 'own', 'name', 'in', 'late', 'february', '2', '0', '1', '7', ',', 'pointing', 'to', 'his', '', 'as', 'the', '', 'of', 'all', 'of', 'the', 'bomb', 'threats', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'subsequently', 'is', 'said', 'to', 'have', 'become', 'professor', 'at', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'government', 'economic', '', 'are', 'for', 'further', '', 'of', 'the', 'tourist', 'and', 'international', 'financial', 'sectors', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'regiment', 'was', 'probably', 'stationed', 'on', 'the', 'rhine', 'frontier', 'from', 'an', 'early', 'stage', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'chapter', 'mainly', 'focuses', 'on', 'the', 'traditional', 'pharmaceutical', 'and', 'food', 'science', 'applications', 'of', 'rose', '', 'and', 'the', 'essential', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'acquired', 'the', 'assets', 'of', 'a', 'small', ',', 'short-lived', '', 'in', 'warehouse', 'on', 'the', 'southern', 'edge', 'of', 'town', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'seems', 'the', '', 'were', '', 'that', '', 'belonged', 'to', 'their', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'farm', 'engine', 'was', 'said', 'to', 'have', 'a', 'short', ',', 'quick', '', 'to', 'make', 'it', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'and', 'only', 'when', '', 'decides', 'to', 'send', 'the', 'bank', ',', 'campi', 'enters', 'a', 'minute', 'left', 'and', '', 'a', 'real', 'goal', 'that', 'represents', 'the', 'tie', '3', '-', '3', 'against', '', 'on', 'the', 'hour', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'but', 'that', 'is', 'a', 'double', 'standard', 'only', 'if', 'it', 'is', '', 'that', 'those', 'who', 'judge', 'the', 'arguments', 'of', 'both', 'sides', 'in', 'a', 'case', 'are', 'allowed', 'to', 'be', 'as', '', 'as', 'those', 'arguing', 'for', 'each', 'side', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'became', 'a', 'permanent', 'member', 'of', 'academy', 'of', 'sciences', 'of', 'iran', 'in', 'june', '2', '0', '1', '8', 'and', 'is', 'currently', 'teaching', 'at', 'the', 'university', 'of', 'tehran', 'with', 'the', 'rank', 'of', 'professor', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'in', 'a', 'reduction', 'of', '2', '2', 'from', 'the', '8', '0', 'positions', 'in', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'each', 'division', 'is', 'represented', 'on', 'the', 'national', 'executive', 'in', 'a', 'manner', '', '', 'to', 'the', 'membership', 'strength', 'of', 'each', 'division', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'del', 'barrio', 'worked', 'as', 'a', 'composer', ',', '', ',', 'and', '', 'player', 'on', 'stan', '', \"'s\", 'album', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'under', 'such', 'conditions', 'the', 'bureau', \"'s\", 'survival', 'was', 'only', 'possible', 'through', 'the', 'means', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'bounded', 'in', 'the', 'west', 'by', '', ',', 'northwest', 'by', '', ',', 'on', 'the', 'north', 'by', '', 'and', '', '', ',', 'on', 'the', 'northeast', 'by', '', ',', 'on', 'the', 'east', 'by', '', 'city', 'and', 'on', 'the', 'south', 'by', '', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '5', ',', '', ',', 'california', ',', 'became', 'the', 'first', 'american', 'city', 'where', 'all', 'restaurants', '', 'cook', 'with', 'trans', '', 'oils', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'march', '2', '7', ',', '2', '0', '1', '6', ',', 'williams', 'announced', 'on', 'her', 'twitter', 'account', 'that', 'her', 'contract', 'with', 'tna', 'had', '', 'during', 'the', 'pregnancy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'in', 'the', 'fiscal', '', 'or', 'on', 'the', 'board', 'of', 'trustees', 'are', 'filled', 'by', 'the', 'remaining', 'trustees', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'made', 'in', 'spain', ',', 'are', 'very', 'particularly', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'both', 'contain', 'fast', 'greens', 'and', '', '', ',', 'and', 'they', 'are', 'each', 'over', 'long', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'competed', 'at', 'the', '1', '8', '9', '6', 'summer', 'olympics', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'gordon', 'characterized', 'the', 'issue', 'as', 'a', '', '', 'about', '2', '0', 'papers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'carol', 'shields', 'claimed', 'in', '``', 'the', 'boston', 'globe', \"''\", 'that', 'gowdy', '``', 'writes', 'like', 'an', 'angel', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'dylan', 'ryan', 'is', 'an', 'australian', 'professional', 'footballer', 'who', 'plays', 'as', 'a', 'defender', 'for', 'melbourne', 'victory', ',', 'on', 'loan', 'from', '', 'ii', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', '', 'the', 'above', 'equation', ',', 'to', 'the', 'partial', '', 'of', 'the', '', '', 'formula_', '4', '3', 'and', '', 'it', 'to', 'zero', ',', 'we', 'get', 'the', 'following', 'expression', 'for', 'the', 'variance', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'are', 'eventually', 'rescued', 'by', 'hal', 'jordan', ',', 'who', 'is', 'accompanied', 'by', '', ',', 'carol', '', ',', 'and', '', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'coached', '', '', 'winning', 'gold', 'at', 'the', '1', '9', '9', '2', 'winter', 'olympics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'on', 'these', 'towers', 'serve', 'broadcast', 'stations', 'airing', 'programming', 'to', 'tv', 'viewers', 'in', 'the', '', '', '(', 'designated', 'market', 'area', ')', 'in', 'california', \"'s\", 'central', 'valley', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'most', 'forts', 'were', 'not', 'kept', 'fully', 'garrisoned', 'at', 'all', 'times', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'having', 'no', 'children', 'from', 'either', 'marriage', 'he', 'returned', 'his', 'second', 'wife', \"'s\", 'money', 'to', 'her', 'family', 'upon', 'her', 'death', 'claiming', 'he', 'had', 'enough', 'to', 'keep', 'him', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'initially', 'imprisoned', 'at', '', '', ',', 'where', 'he', 'spent', 'two', 'years', 'before', 'being', 'transferred', 'to', 'the', 'top', 'security', 'albany', 'prison', 'on', 'the', 'isle', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'over', 'council', 'meetings', 'and', 'carries', 'out', 'certain', 'representative', 'functions', 'that', ',', 'in', 'other', 'countries', ',', 'are', 'the', 'business', 'of', 'a', 'head', 'of', 'state', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'list', 'covered', 'his', 'discoveries', 'with', 'numbers', 'between', 'and', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'units', 'and', 'installations', 'that', 'used', 'goats', 'as', 'a', '', 'includes', 'the', 'royal', 'canadian', '', ',', 'who', 'adopted', 'peter', 'the', '', 'during', 'the', 'first', 'world', 'war', ';', 'and', '', '', ',', 'who', 'adopted', '', 'w.', '', 'the', '', 'in', '1', '9', '5', '7', '.', '', '', '', '', '', '']\n", "['', 'the', 'structure', 'won', 'a', 'national', 'architecture', 'and', 'engineering', 'award', 'from', 'the', 'american', 'institute', 'of', 'steel', 'construction', 'and', '', 'gold', '', 'from', 'the', 'u.s.', 'green', 'building', 'council', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'story', 'features', 'the', 'battle', 'of', 'the', 'little', 'big', 'horn', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'kirill', '', 'grew', 'up', 'between', 'his', 'parents', \"'\", 'residence', 'in', 'st', '', ',', 'the', 'vladimir', 'palace', ',', 'and', 'their', 'country', 'retreat', ',', 'the', 'vladimir', '', 'in', '', 'selo', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '4', ',', '', 'was', 'named', 'in', 'the', 'new', 'zealand', '', 'schools', \"'\", 'team', 'that', 'played', 'matches', 'against', 'australian', 'schools', 'and', '', 'schools', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'animation', 'began', 'in', '1', '9', '9', '9', ',', 'but', 'the', 'programme', 'was', 'not', 'first', 'aired', 'until', '2', '0', '0', '1', ',', 'on', 'both', 'bbc', '2', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'church', 'scene', 'was', 'filmed', 'on', 'the', 'grounds', 'of', 'the', 'united', 'states', 'military', 'academy', 'at', 'west', 'point', ',', 'new', 'york', ',', 'but', 'the', 'church', \"'s\", '', 'was', 'constructed', 'only', 'for', 'the', 'film', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'her', 'husband', 'robert', ',', 'sibley', 'was', 'also', 'deeply', 'involved', 'in', 'the', 'community', 'life', 'of', 'the', 'university', 'of', 'california', ',', 'berkeley', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'walter', 'matt', 'left', '``', 'the', 'wanderer', \"''\", ',', 'which', 'remained', 'under', '', ',', 'to', 'start', '``', 'the', '', \"''\", 'in', '1', '9', '6', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rabbi', '', '', 'was', 'among', 'the', 'first', 'who', ',', 'in', '1', '9', '0', '4', ',', 'created', 'literary', 'works', 'in', 'the', '', 'language', 'for', 'a', 'drama', 'group', 'in', 'the', 'city', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'will', 'mason', 'of', '', 'reviewed', 'the', 'film', 'positively', ',', 'particularly', '', 'the', 'emotional', 'impact', 'of', 'henry', 'looking', 'directly', 'at', 'the', 'viewer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'seven', 'seas', 'entertainment', 'licensed', 'the', '', 'series', 'for', 'a', 'printed', 'release', 'in', 'north', 'america', 'in', 'august', '2', '0', '1', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'the', 'move', ',', 'he', 'was', 'impressive', 'in', 'the', 'defensive', '', 'position', ',', 'which', 'led', 'to', 'comparisons', 'to', 'former', 'argentina', '``', 'number', '5', '``', 'fernando', '', 'from', '', '', 'and', 'many', 'other', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '1', '9', '5', '2', ')', 'which', 'detailed', 'this', 'claim', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'nearby', '(', 'but', 'across', 'the', 'main', 'road', ',', 'therefore', 'not', 'actually', 'in', 'modern', 'eastwood', ')', 'is', '``', 'eastwood', 'parish', 'church', \"''\", 'which', 'dates', 'from', '1', '8', '6', '3', ',', 'replacing', 'an', 'older', 'building', 'from', '1', '7', '8', '1', 'which', 'itself', 'replaced', 'the', 'original', 'in', 'old', 'eastwood', 'cemetery', '.', '', '']\n", "['', 'in', 'this', 'battle', 'he', 'was', 'wounded', 'in', 'the', 'legs', 'when', '', 'hit', 'the', 'bridge', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'royal', 'ascot', 'in', 'june', 'he', 'retained', 'his', '', 'record', 'in', 'the', '', 'memorial', 'stakes', 'over', 'one', 'mile', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'wild', 'west', 'show', \"'s\", 'female', 'employees', 'brought', 'more', 'grace', 'to', 'the', 'georgians', \"'\", 'performances', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'response', 'to', 'the', 'line', '``', 'tell', '', 'my', '', 'is', '', \"'\", 'on', 'the', 'floor', \"''\", ',', '', 'stated', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'facts', 'about', 'homology', 'groups', 'can', 'be', 'derived', 'directly', 'from', 'the', '', ',', 'such', 'as', 'the', 'fact', 'that', '', 'equivalent', 'spaces', 'have', '', 'homology', 'groups', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', 'in', 'northern', 'israel', 'the', '', 'prevailed', 'and', 'european', '', 'praised', 'their', '``', 'advanced', 'agricultural', 'methods', \"''\", 'and', 'skill', 'in', 'animal', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mass-produced', 'timber', 'frames', 'were', 'used', 'to', 'speed', 'up', 'the', 'construction', 'of', 'units', 'without', '', 'the', 'stability', 'of', 'the', 'buildings', ';', 'with', 'developers', 'having', 'expected', 'the', '', 'home', 'owners', 'to', 'brick', 'the', 'remaining', 'portions', 'when', 'they', 'could', '', 'it', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'next', 'day', ',', 'a', 'patrol', 'from', '', '', 'came', 'in', 'contact', 'with', 'japanese', 'patrols', 'and', '', 'back', 'to', 'the', 'town', ',', 'as', 'japanese', 'troops', 'began', 'to', 'make', 'camp', 'just', 'one', 'hour', 'away', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'company', 'made', 'an', 'attempt', 'to', 'enter', 'the', 'american', 'market', ',', 'creating', 'a', 'subsidiary', 'in', 'michigan', ',', 'indiana', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '5', '8', ',', 'it', 'moved', 'to', 'its', 'current', 'location', 'on', 'depot', 'road', ',', 'around', 'the', 'corner', 'from', 'the', 'site', 'of', 'the', 'boys', \"'\", 'school', ',', 'which', 'had', 'moved', 'to', '', 'lane', 'four', 'years', 'previously', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'about', '8', '.', '9', '%', 'of', 'families', 'and', '8', '.', '7', '%', 'of', 'the', 'population', 'were', 'below', 'the', 'poverty', 'line', ',', 'including', '1', '5', '.', '0', '%', 'of', 'those', 'under', 'the', 'age', 'of', 'eighteen', 'and', 'none', 'of', 'those', '6', '5', 'or', 'over', '.', '', '', '', '', '', '', '']\n", "['', 'the', 'district', 'courts', 'were', 'established', 'by', 'congress', 'under', 'article', 'iii', 'of', 'the', 'united', 'states', 'constitution', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'lunar', 'eclipse', 'will', 'be', 'preceded', 'and', 'followed', 'by', 'solar', '', 'by', '9', 'years', 'and', '5', '.', '5', 'days', '(', 'a', 'half', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'two', 'days', 'later', ',', 'crittenton', 'and', 'arenas', 'were', 'suspended', 'for', 'the', 'rest', 'of', 'the', 'season', 'by', 'nba', 'commissioner', 'david', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'counties', ',', 'such', 'as', 'lake', ',', '', 'and', '', ',', 'were', 'once', 'republican', '', ',', 'but', 'are', 'now', 'more', '', 'divided', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'c', '1', '', '1', 'bond', '[', '1', '4', '7', '.', '8', '4', '(', '1', '4', ')', 'pm', ']', 'is', 'longer', 'than', 'the', '', '', '3', '', 'bond', 'which', 'range', 'from', '1', '4', '1', '.', '2', '-', '1', '4', '5', '.', '8', 'pm', '.', '', '', '', '', '', '']\n", "['', 'her', 'grandfather', 'was', 'selected', 'as', 'a', '', 'for', 'the', '1', '9', '4', '0', 'summer', 'olympics', 'in', 'tokyo', 'but', 'was', 'unable', 'to', 'compete', 'as', 'the', 'games', 'were', 'cancelled', 'due', 'to', 'the', 'outbreak', 'of', 'world', 'war', 'ii', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'had', 'five', 'tournament', 'victories', 'on', 'the', 'pga', 'tour', ';', 'all', 'five', 'came', 'in', 'the', 'mid', 'to', 'late', '1', '9', '8', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'presence', 'of', 'a', 'solid', 'acid', 'catalyst', ',', '', '', 'with', 'hydrogen', '', 'to', 'give', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'signed', 'a', 'contract', 'with', 'iraq', 'football', 'federation', 'on', '2', '8', 'august', '2', '0', '1', '1', 'and', 'first', 'managed', 'the', 'national', 'team', 'in', 'a', 'match', 'against', 'jordan', 'on', '2', 'september', '2', '0', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'dean', '&', 'amp', ';', 'son', 'was', 'a', '1', '9', 'th-century', 'london', 'publishing', 'firm', ',', 'best', 'known', 'for', 'making', 'and', '', '', 'children', \"'s\", 'books', 'and', 'toy', 'books', ',', 'established', 'around', '1', '8', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'surname', 'migrated', 'to', 'england', 'during', 'the', '1', '2', 'th', 'century', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'coaches', \"'\", 'opening', 'performance', 'was', 'also', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'never', 'saw', 'a', 'first', 'team', 'game', ',', 'but', 'played', 'ten', 'games', ',', 'scoring', 'two', 'goals', ',', 'with', 'the', 'colorado', 'rapids', 'reserve', 'team', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'george', 'miller', ',', 'the', 'character', 'making', 'his', 'first', 'appearance', 'in', 'episode', '1', '6', 'of', 'series', '1', '4', ':', '``', 'golf', '', 'one', 'zero', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'extended', '', '', 'in', 'jharkhand', 'and', '', 'in', 'jharkhand', 'in', '2', '0', '2', '0', 'and', 'giving', 'it', 'a', 'length', 'of', '2', '3', '1', 'km', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'announced', 'that', 'he', 'would', 'personally', 'participate', 'in', '', 'efforts', 'in', 'the', 'state', ',', 'even', 'though', 'such', 'activities', 'are', 'not', 'within', 'the', 'domain', 'of', 'his', 'office', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'animation', 'was', 'considering', '', 'of', '``', '', '', '', '', \"''\", 'and', '``', '', 'woman', \"''\", 'as', 'possible', '', 'films', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'reportedly', ',', 'carl', 'i.', '', 'wanted', 'to', '', 'a', 'decision', 'on', 'european', 'union', 'policy', 'from', 'the', 'national', 'convention', 'to', 'a', 'national', 'board', 'meeting', 'in', 'june', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'if', 'there', 'are', 'just', 'two', ',', 'they', 'may', 'be', '', ',', 'opposed', 'or', 'at', 'an', 'angle', ',', 'the', 'latter', 'often', 'described', 'as', 'a', '', '(', 'or', 'v', ')', 'arrangement', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'men', \"'s\", 'marathon', '1', '0', 'kilometres', 'competition', 'of', 'the', 'swimming', 'events', 'at', 'the', '2', '0', '1', '1', 'pan', 'american', 'games', 'took', 'place', 'on', 'the', '2', '2', 'of', 'october', 'at', 'the', '', 'maritime', 'terminal', 'in', 'puerto', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'start', 'to', 'board', 'up', 'the', 'house', 'when', 'they', 'hear', '', 'in', 'the', 'distance', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'also', 'the', 'recipient', 'of', 'the', '', '', '', 'award', 'in', '2', '0', '1', '5', ',', 'for', 'her', '``', 'outstanding', 'contribution', 'to', 'the', 'enrichment', 'of', 'australia', \"'s\", 'screen', 'environment', 'and', 'culture', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'graduating', 'from', 'college', ',', '', 'got', 'her', 'start', 'working', 'at', 'an', 'off-broadway', 'theater', 'in', 'new', 'york', 'city', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', 'the', '2', '0', '0', '0', 'census', ',', 'its', 'population', 'was', '3', '6', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'dr.', '', ',', 'a', 'character', 'in', '', \"'s\", '1', '8', '9', '4', 'novel', '``', '', \"''\", ',', 'is', '', 'based', 'on', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '8', 'november', '2', '0', '1', '3', 'she', 'released', 'her', 'debut', 'studio', 'album', '``', '', 'the', 'day', \"''\", ',', 'the', 'album', 'has', 'peaked', 'to', 'number', '2', '0', 'on', 'the', 'danish', 'albums', 'chart', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'fully', 'equipped', 'for', '', ',', 'the', '', '2', '3', 'has', 'deck', 'hardware', 'of', '', 'steel', ',', '', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'also', 'the', 'president', 'of', 'the', 'us', '', 'football', 'club', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '3', '6', ',', 'he', 'won', ',', 'with', '', '', ',', 'in', 'budapest', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'shares', 'a', 'name', 'with', 'the', '', 'called', 'the', '``', 'european', 'democratic', 'party', \"''\", ',', 'but', 'it', 'is', 'not', 'connected', 'with', 'it', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '[', '[', 'british', '', '', 'association', ']', 'website', ':', '[', '[', 'department', 'of', 'health', '(', 'united', 'kingdom', ')', ']', ']', '', '0', '2', '-', '0', '1', 'medical', 'gas', 'pipeline', 'systems', 'part', 'a', ':', 'design', ',', 'installation', ',', '', 'and', 'verification', ']', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '', 'data', 'is', 'not', 'enough', 'however', 'to', 'prove', 'that', 'suction', 'feeding', 'was', 'less', 'used', 'as', 'the', '', 'changes', 'have', 'been', 'found', 'in', 'fish', 'that', 'use', 'the', 'suction', 'feeding', 'mechanism', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'should', 'be', 'done', 'while', '', 'off', 'the', 'unit', 'so', 'that', 'the', '', 'gas', 'in', 'the', 'user', \"'s\", '', 'is', 'also', 'removed', 'from', 'the', 'system', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'jones', '', 'that', 'the', 'resolution', 'did', 'not', 'conflict', 'with', 'the', 'library', 'bill', 'of', 'rights', ',', 'and', 'instead', 'promoted', 'awareness', 'by', '', 'training', 'and', 'outreach', 'programs', 'in', 'the', 'libraries', 'and', 'library', 'schools', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'name', 'is', 'also', 'mentioned', 'in', '``', 'the', 'simpsons', 'game', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'five', 'seats', 'followed', 'each', 'other', 'round', 'to', 'gain', 'a', '', 'benefit', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', ')', 'is', 'a', 'settlement', 'in', 'the', 'administrative', 'district', 'of', 'gmina', '', ',', 'within', '', 'county', ',', 'greater', 'poland', 'voivodeship', ',', 'in', '', 'poland', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'with', 'domestic', 'cats', 'is', 'regarded', 'as', 'a', 'threat', 'to', 'the', 'population', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'hill', 'there', 'are', 'two', '', 'halfway', 'down', 'the', 'north', '', ',', 'with', 'a', 'number', 'of', 'later', '', '', 'upon', 'them', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '9', ',', 'cox', 'sold', 'channel', '3', '0', 'to', 'st.', '', 'river', 'city', 'broadcasting', ',', 'a', 'new', 'company', 'formed', 'by', 'two', 'former', '', 'employees', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'russia', 'was', 'previously', 'ranked', 'as', 'having', 'the', 'highest', '', 'rate', 'per', '1', '0', '0', ',', '0', '0', '0', 'people', 'internationally', 'until', 'it', 'was', '', 'by', 'the', 'united', 'states', 'in', '2', '0', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'towards', 'the', 'end', 'of', 'the', '1', '7', 'th', 'century', ',', 'hallschlag', 'belonged', ',', 'along', 'with', '', ',', 'to', 'the', '', 'line', 'of', 'the', 'county', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '3', 'the', 'island', 'residents', 'were', 'considering', 'a', '', 'study', 'into', 'bringing', 'the', 'island', 'into', 'community', 'ownership', ',', 'a', 'process', 'that', 'has', 'been', 'successfully', 'completed', 'by', 'the', 'islanders', 'of', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'founded', 'the', 'company', 'after', 'departing', 'a', 'career', 'at', 'gibson', '', '&', 'amp', ';', '', ',', 'where', 'she', 'earned', 'worked', 'with', 'top', '', 'attorney', '', '', 'working', 'on', 'complex', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'cut', 'scores', \"''\", 'are', 'the', 'minimum', 'scores', 'used', 'to', 'divide', 'students', 'into', 'higher', 'and', 'lower', 'level', 'courses', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'today', ',', 'the', 'former', 'main', 'runway', 'is', 'visible', 'in', 'aerial', 'photography', ',', 'however', 'no', 'buildings', 'or', 'physical', 'features', 'remain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'earned', 'a', 'doctorate', 'in', '', 'law', 'and', 'entered', 'the', 'diplomatic', 'service', 'of', 'the', 'holy', 'see', 'on', '8', 'march', '1', '9', '7', '6', 'and', '', 'assignments', 'in', 'indonesia', ',', 'in', 'the', 'offices', 'of', 'the', 'secretariat', 'of', 'state', ',', 'in', 'switzerland', ',', 'france', ',', 'austria', 'and', 'italy', '.', '', '', '']\n", "['', 'while', 'not', 'a', 'security', '``', 'boundary', \"''\", '(', 'the', 'command', 'accessing', 'a', 'resource', 'is', 'blocked', 'rather', 'than', 'the', 'resource', ')', 'this', 'is', 'nevertheless', 'typically', 'used', 'to', 'restrict', 'users', \"'\", 'actions', 'before', '', 'in', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'may', 'be', 'of', '', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'april', '2', '0', '1', '6', ',', '', '', 'returned', 'to', 'acting', 'with', 'the', 'st.', 'petersburg', '', 'theatre', 'comedy', 'in', 'a', 'leading', 'role', 'as', 'the', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'courts', 'hear', 'civil', 'and', 'criminal', 'cases', ',', 'and', 'each', 'is', '', 'with', 'a', 'bankruptcy', 'court', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'a', 'historic', 'grave', 'of', 'frederick', '', 'in', 'the', 'cemetery', 'as', 'well', 'as', 'a', 'more', 'recent', 'family', 'grave', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'believe', 'that', 'they', 'were', 'converted', 'to', 'christianity', 'by', 'thomas', 'of', '', '(', '', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'village', 'in', 'the', '', 'district', 'of', '', 'pradesh', ',', 'india', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'sat', 'in', 'the', 'chamber', 'of', 'deputies', 'from', '1', '9', '3', '0', 'to', '1', '9', '3', '6', ',', 'and', 'led', 'the', 'french', 'rugby', 'league', 'from', '1', '9', '3', '4', 'to', '1', '9', '4', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'dissertation', 'was', 'on', 'the', 'topic', 'of', '``', '', 'of', '', 'surfaces', 'in', 'three', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'also', 'the', 'name', 'of', 'a', '', 'within', 'the', 'neighbourhood', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'military', 'rifle', 'event', ',', 'he', 'placed', 'eleventh', 'with', 'a', 'score', 'of', '8', '9', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'students', 'have', 'opportunities', 'to', 'participate', 'in', 'a', 'wide', 'variety', 'of', 'sports', 'and', 'extra', '', 'activities', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'track', '``', 'the', 'final', 'sound', \"''\", 'is', '``', 'so', 'positively', 'gothic', 'you', 'could', 'almost', 'be', '', 'into', 'believing', 'that', 'it', 'was', '', 'from', 'the', 'soundtrack', 'of', 'some', '', 'horror', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'built', 'in', 'the', '1', '9', '3', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'includes', 'the', 'right', 'to', 'education', 'in', 'each', 'of', 'south', 'africa', \"'s\", 'official', 'languages', ',', 'the', 'right', 'to', 'a', 'healthy', 'living', 'environment', ',', 'as', 'well', 'as', 'the', 'right', 'to', 'free', 'movement', 'and', 'residence', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'most', 'of', 'the', '', 'became', 'part', 'of', 'poland', 'after', 'the', 'second', 'world', 'war', 'while', 'the', 'remainder', 'became', 'part', 'of', 'what', 'would', 'become', 'east', 'germany', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'that', 'incident', 'caused', 'much', '', 'and', 'protests', 'in', 'pakistan', ',', 'over', 'the', '', 'of', 'pakistan', \"'s\", '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'is', 'not', 'caused', 'as', 'popularly', 'supposed', 'by', 'the', 'presence', 'of', 'the', 'isle', 'of', '', ',', 'but', 'is', 'a', 'function', 'of', 'the', 'shape', 'and', 'depth', 'of', 'the', 'english', 'channel', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'announced', 'his', 'departure', 'from', '', 'on', 'april', '2', '8', ',', '2', '0', '0', '6', ',', 'and', 'became', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'albert', '', 'was', 'born', 'in', '', 'in', '1', '8', '7', '9', ',', 'it', 'was', 'suggested', 'repeatedly', 'that', 'the', 'university', 'be', 'named', 'after', 'him', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'forestry', 'schools', 'in', 'the', 'philippines', 'have', 'also', 'experienced', 'a', 'similar', 'increase', 'in', 'female', 'enrollment', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'and', 'became', 'part', 'of', 'it', ',', 'although', 'it', 'was', 'not', 'fully', 'integrated', 'into', 'al-nusra', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'tribes', 'allied', 'with', 'the', 'argentine', 'government', ',', 'standing', 'neutral', 'or', ',', 'less', 'often', ',', 'fighting', 'for', 'the', 'argentine', 'army', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'came', 'to', 'air', 'on', 'march', '1', '6', ',', '1', '9', '6', '8', ',', 'after', 'a', '', 'was', 'authorized', 'in', 'november', '1', '9', '6', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'the', 'only', 'and', 'self-titled', 'debut', 'studio', 'album', 'by', 'american', 'rock', 'band', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'returned', 'to', 'willow', 'grove', 'hoping', 'to', '', 'an', 'art', 'career', 'separate', 'from', 'zappa', 'and', 'the', 'record', 'industry', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'it', 'was', '', 'who', 'took', 'the', 'first', 'step', 'into', 'the', '', 'land', 'of', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'franklin', 'bells', 'are', 'only', 'a', '', '', 'of', 'electric', 'charge', 'and', 'were', 'used', 'for', 'simple', 'demonstrations', 'rather', 'than', 'research', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'indonesia', ',', 'the', 'dish', 'is', 'recognized', 'as', 'a', 'popular', 'chinese', 'indonesian', 'dish', ',', 'served', 'from', 'simple', 'travelling', '', '', '', 'residential', 'areas', ',', '', '', '``', '', \"''\", 'to', 'restaurants', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'also', ',', 'the', 'surprise', 'return', 'of', 'cousin', 'charlie', 'will', 'threaten', 'to', 'destroy', 'the', 'van', 'der', '', 'family', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'he', 'became', 'eighteen', ',', 'he', 'enlisted', 'in', 'the', 'russian', 'army', 'as', 'a', 'musician', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'second', '', 'on', '2', '4', 'november', '1', '9', '1', '9', 'was', 'to', '', 'la', 'grande', ',', 'cuba', ',', 'with', 'a', 'cargo', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'wife', ',', '', ',', '', 'her', 'husband', 'by', 'fourteen', 'months', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'injuries', 'do', 'happen', 'in', 'practice', ',', 'have', 'been', 'known', 'to', 'happen', 'more', 'often', 'during', 'the', 'participation', 'of', 'a', 'game', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'the', 'three', '', 'of', '', ',', 'written', 'by', '``', '', '', \"''\", ',', 'public', '', 'appeared', 'in', '', 'as', 'early', 'as', 'the', 'beginning', 'of', 'the', '1', '1', 'th', 'century', 'ad', ',', 'in', 'the', 'northern', 'song', '', 'area', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'called', 'the', 'governor', '``', 'inefficient', \"''\", 'and', 'said', 'aid', 'from', 'turkmenistan', 'had', 'not', 'reached', 'those', 'in', 'need', 'and', 'had', 'been', '', 'by', 'the', 'governor', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '5', 'it', 'had', 'a', 'population', 'of', '1', '9', ',', '9', '5', '8', 'people', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', 'the', 'early', 'sixteenth', 'century', 'with', 'the', 'arrival', 'of', 'the', 'spanish', ',', 'mexico', 'has', 'received', 'immigrants', 'from', 'europe', ',', 'africa', ',', 'the', 'americas', '(', 'particularly', 'the', 'united', 'states', 'and', 'central', 'america', ')', ',', 'the', 'middle', 'east', 'and', 'from', 'asia', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', 'born', '1', '3', 'november', '1', '9', '9', '0', ')', 'is', 'a', 'russian', 'professional', 'ice', 'hockey', 'forward', 'who', 'is', 'currently', 'playing', 'for', '', '', 'of', 'the', '', 'hockey', 'league', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'but', 'when', 'beet', 'is', 'mortally', 'wounded', 'by', 'the', '', '', ',', '``', 'the', 'king', 'of', 'tragedy', \"''\", ',', 'zenon', 'and', 'the', 'other', 'four', 'zenon', 'warriors', 'give', 'beet', 'their', '', 'to', 'save', 'his', 'life', 'and', '', 'his', '', 'to', 'end', 'the', 'age', 'of', 'darkness', '.', '', '', '', '', '', '']\n", "['', 'the', 'after', 'engine', 'room', 'flooded', ',', 'three', 'of', 'four', '', 'ceased', 'turning', ',', 'and', 'the', 'ship', 'listed', '1', '0', 'degrees', 'to', 'port', 'and', 'caught', 'fire', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'using', 'set', 'theory', 'terminology', ',', 'an', 'elementary', 'event', 'is', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'recognized', 'by', 'the', 'united', 'states', 'golf', 'association', '(', '', ')', 'as', 'one', 'of', 'the', 'first', '1', '0', '0', 'clubs', 'in', 'america', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'conferred', 'the', 'title', '``', '', '', '', 'award', \"''\", 'by', 'ministry', 'of', 'art', 'and', 'culture', ',', 'government', 'of', 'india', 'for', 'his', 'contribution', 'to', 'the', 'field', 'of', 'music', 'in', '2', '0', '1', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'means', 'people', \"'s\", '', 'varies', 'in', 'different', 'social', 'or', 'cultural', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'described', 'himself', 'as', '``', 'far', 'more', 'experienced', \"''\", 'than', 'superman', '(', '``', 'superman', \"''\", '#', '2', '8', '1', ',', 'november', '1', '9', '7', '4', ':', '``', 'mystery', 'mission', 'to', '', \"''\", ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'went', '', 'at', 'the', '2', '0', '1', '2', '', 'players', 'auction', ',', 'but', 'was', 'later', 'bought', 'as', 'a', 'replacement', 'for', 'mitchell', 'marsh', 'by', 'the', '', 'warriors', 'india', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'awards', 'are', 'based', 'on', 'sales', 'data', 'by', 'nielsen', '', 'and', 'radio', 'information', 'by', 'nielsen', 'broadcast', 'data', 'systems', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'direct', 'effect', 'of', 'the', '', 'laws', 'of', '1', '9', '9', '6', 'and', 'the', '', 'act', 'has', 'been', 'a', 'dramatic', 'increase', 'in', 'deportations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'that', 'night', ',', 'the', 'house', '', 'homer', 'and', 'the', 'children', ',', '', 'their', 'minds', 'and', 'making', 'them', 'chase', 'each', 'other', 'with', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'also', 'come', 'in', 'patterns', 'of', '', ',', '', ',', '', 'and', 'other', '', 'patterns', 'within', 'images', 'termed', '', 'matrix', 'codes', 'or', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '1', ',', '', 'married', 'maria', '', 'marques', '(', 'born', '2', '6', 'july', '1', '9', '3', '9', ')', ',', 'whom', 'he', 'later', 'divorced', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'survived', 'by', 'following', 'the', 'deer', 'out', 'of', 'the', 'forest', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', '4', 'august', 'the', 'band', 'reported', 'that', 'the', '', 'recording', 'was', 'done', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', 'january', '2', '0', '1', '9', ',', '3', '3', '-year-old', 'dennis', '', 'agreed', 'a', 'two-year', 'contract', 'with', '', 'giants', '', '', ',', 'becoming', 'the', 'highest', 'paid', 'footballer', 'in', 'the', 'country', 'at', 'a', '', 'of', '', '.', '3', '5', '0', ',', '0', '0', '0', '.', '', '', '', '', '']\n", "['', 'the', '1', '0', '0', '-ton', 'gun', '(', 'also', 'known', 'as', 'the', 'armstrong', '1', '0', '0', '-ton', 'gun', ')', 'was', 'a', '', '', '(', '', ')', 'gun', 'made', 'by', '', '', 'company', ',', 'the', '', 'division', 'of', 'the', 'british', 'manufacturing', 'company', 'armstrong', 'whitworth', ',', 'owned', 'by', 'william', 'armstrong', '.', '', '']\n", "['', 'she', 'is', 'currently', 'a', '', 'faculty', 'member', 'teaching', 'sculpture', 'at', 'city', 'college', 'of', 'san', 'francisco', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'croatian', 'president', '', 'considered', 'that', 'it', 'would', 'be', 'better', 'for', 'croatia', 'to', 'avoid', 'conflicts', 'with', 'a', 'friendly', '', 'army', 'in', 'the', 'west', 'since', 'the', 'country', 'was', 'threatened', 'by', 'hostile', '', 'from', 'the', 'east', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '', ',', 'june', '7', ',', '2', '0', '0', '1', ',', '', 'underwent', 'a', 'total', 'knee', '', '(', 'replacement', ',', 'or', '``', '', \"''\", ')', 'on', 'his', 'left', 'knee', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'may', 'also', 'be', '', 'to', '', 'withdrawal', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'due', 'to', 'failing', 'health', ',', 'meredith', 'was', 'forced', 'to', 'retire', 'from', 'business', 'life', 'in', '1', '9', '2', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', 'possibly', 'from', '', '``', '', \"''\", '', ';', 'wild', 'flower', ';', 'the', '', 'of', 'the', 'wind', ',', '``', '', \"''\", '', ',', '``', '', \"''\", '', ',', ')', 'is', 'a', 'mountain', 'in', 'the', '', 'mountain', 'range', 'in', 'the', '', 'of', 'peru', '.', '', '', '', '', '', '']\n", "['', 'sir', 'charles', 'leonard', '', 'unearthed', 'more', 'tablets', 'at', 'ur', 'contained', 'in', 'the', '``', 'ur', '', 'texts', \"''\", 'from', '1', '9', '2', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'an', 'article', 'in', 'the', 'local', '', 'newspaper', ',', 'which', 'shows', 'some', 'of', 'the', 'club', 'members', '``', '', \"''\", 'the', 'mirror', 'for', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", '', 'approximately', 'in', 'the', 'opening', 'day', 'from', 'kerala', 'box', 'office', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'joined', 'the', 'miami', 'dolphins', '', 'association', \"'s\", 'advisory', 'board', 'in', '2', '0', '0', '2', ',', 'and', 'is', 'a', 'frequent', 'visitor', 'to', 'the', 'dolphins', \"'\", 'radio', 'show', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'and', 'hunter', 'also', 'worked', 'as', 'creative', '', 'on', '``', 'the', 'upper', 'hand', \"''\", ',', 'the', 'british', 'version', 'of', '``', 'who', \"'s\", 'the', 'boss', '?', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'edmund', 'and', 'his', 'wife', 'anna', 'lived', 'at', 'monte', '', ',', 'their', 'farm', 'on', 'grand', 'lake', ',', 'on', 'the', '', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'paralympic', '', 'are', 'classified', 'according', 'to', 'the', 'extent', 'of', 'their', 'disability', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'song', 'was', 'covered', 'by', 'dj', '', '(', 'voiced', 'by', '', '', ')', 'under', 'the', 'title', '``', '', 'do', 'dance', '(', 'dj', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'may', '1', '9', '4', '6', ',', 'due', 'to', 'changing', '', 'of', 'the', 'u.s.', 'army', \"'s\", 'tank', 'needs', ',', 'the', 'm', '2', '6', 'was', '', 'as', 'a', 'medium', 'tank', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'two', 'of', 'his', 'songs', 'were', 'featured', 'in', '2', '0', '0', '5', 'episodes', 'of', 'a', '&', 'amp', ';', 'e', \"'s\", 'series', '``', 'dog', 'the', '', 'hunter', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'especially', '', 'to', 'the', 'work', 'of', 'john', '', ',', 'and', 'himself', 'began', 'to', 'take', 'an', 'interest', 'in', 'promoting', 'experimental', 'research', 'in', 'visual', 'music', 'in', '1', '9', '6', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'current', 'is', 'applied', 'to', 'the', '', 'wire', ',', 'the', 'coils', 'heat', 'up', 'and', '', 'the', 'inside', 'of', 'the', 'fitting', 'and', 'the', 'outside', 'of', 'the', 'pipe', 'wall', 'which', 'weld', 'together', 'producing', 'a', 'very', 'strong', '', 'joint', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'soon', 'as', 'the', 'new', 'system', 'of', 'emigration', 'of', 'labour', 'became', 'known', ',', 'a', 'campaign', 'similar', 'to', 'the', 'anti-slavery', 'campaign', '', 'up', 'in', 'britain', 'and', 'india', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'marcus', 'daniels', 'was', 'born', 'in', '', ',', 'queens', ',', 'new', 'york', 'city', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'neil', 'smith', '(', 'born', '', ',', '3', '0', 'september', '1', '9', '7', '1', ')', 'is', 'an', 'english', 'former', 'professional', 'football', 'player', 'and', 'most', 'recently', 'first', 'team', 'manager', 'at', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'name', '', '', 'from', 'the', 'means', 'of', '', 'of', 'the', 'indigenous', 'people', 'of', 'the', 'city', ',', 'which', 'include', 'fishing', ',', 'farming', ',', 'salt', 'making', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '1', ',', '', 'area', 'school', 'district', 'achieved', 'adequate', 'yearly', 'progress', '(', 'ayp', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'm', '4', '7', 'patton', 'was', 'an', 'm', '4', '6', 'patton', 'with', 'a', 'new', 'turret', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'dreams', 'is', 'the', 'second', 'solo', 'album', 'by', 'grace', '', ',', 'released', 'by', 'rca', 'records', 'in', 'march', '1', '9', '8', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '7', ',', 'he', 'became', 'the', 'running', '', 'coach', 'for', 'miami', 'central', 'high', 'school', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', '``', 'cash', 'box', \"''\", 'country', 'singles', 'chart', ',', '``', 'girl', 'in', '', \"''\", 'reached', 'number', '2', '5', 'during', 'its', 'nine', 'weeks', 'stay', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '``', 'new', 'york', 'telegraph', \"''\", \"'s\", 'critic', 'wrote', ',', 'the', 'work', 'presented', '``', 'a', 'black', 'circle', 'of', '', 'figures', ',', 'toward', 'which', 'an', '', 'soul', '', 'in', 'white', '', 'and', 'pleaded', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'fall', 'of', 'that', 'year', ',', 'jones', 'became', 'an', 'occasional', 'part', 'of', 'height', \"'s\", 'live', 'set', ',', '', 'and', 'adding', 'effects', 'to', 'height', \"'s\", 'vocals', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'north', 'asia', 'is', 'bordered', 'by', 'the', 'arctic', 'ocean', 'to', 'its', 'north', ',', 'by', 'eastern', 'europe', 'to', 'its', 'west', ',', 'by', 'central', 'and', 'east', 'asia', 'to', 'its', 'south', ',', 'and', 'by', 'the', 'pacific', 'ocean', 'and', 'north', 'america', 'to', 'its', 'east', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', '2', '0', '0', '5', ',', 'the', '', 'has', 'been', 'listed', 'as', 'a', 'unesco', 'world', 'heritage', 'site', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '7', '2', ',', 'composed', 'in', '1', '9', '5', '2', 'in', 'a', '', 'style', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'alleged', 'to', 'have', 'filled', 'the', 'nomination', 'form', 'and', 'his', '', 'were', 'on', 'the', 'streets', 'for', 'the', 'office', 'of', 'the', 'president', 'in', 'the', '2', '0', '1', '9', '', 'general', 'election', 'under', 'advanced', 'peoples', 'democratic', 'alliance', '(', '``', '', \"''\", ')', '.', '', '', '', '', '', '', '', '']\n", "['', 'when', 'kelly', 'produced', 'a', 'photograph', 'taken', 'in', 'early', 'april', '2', '0', '0', '6', 'of', 'a', '', '', 'was', 'born', 'in', '1', '9', '4', '9', 'and', 'had', 'a', '', '', 'him', 'to', 'ask', ':', '``', 'how', 'many', 'of', 'your', 'opponents', 'looked', 'like', 'that', '?', \"''\", '', '', '', '', '', '']\n", "['', 'it', 'is', 'located', 'north', 'of', 'the', 'district', 'headquarters', 'at', '', 'and', 'from', 'mahendragarh', ',', 'its', 'postal', 'head', 'office', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'rv-', '8', 'also', 'has', 'increased', '', 'and', 'wing', 'area', 'over', 'the', 'rv-', '4', ',', 'as', 'well', 'as', 'greater', 'cockpit', 'width', ',', '', ',', '', 'and', 'an', 'increased', 'useful', 'load', ',', 'all', 'with', 'a', 'view', 'to', '', 'larger', 'pilots', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'inaugurated', 'in', '1', '3', '0', '3', ',', 'when', 'the', '', 'was', 'added', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'\", 'has', 'a', 'distribution', 'center', ',', 'located', 'in', '', ',', 'which', 'includes', 'over', 'of', '', 'space', ',', 'as', 'well', 'as', 'a', 'full', 'mechanic', 'shop', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'but', 'the', '', '', 'and', 'thus', 'the', 'strong', '', 'conjecture', 'remain', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', ',', 'also', 'romanized', 'as', '', ',', '', ',', 'and', '', ';', 'also', 'known', 'as', '', ')', 'is', 'a', 'village', 'in', '', '', 'rural', 'district', ',', '', '', 'district', ',', '', 'county', ',', '', 'province', ',', 'iran', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'that', 'day', ',', 'each', 'mission', 'was', 'met', 'and', 'attacked', 'by', 'enemy', 'aircraft', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'gets', 'into', 'her', 'car', 'and', 'gives', 'a', '', 'as', 'she', '', 'away', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '5', 'the', 'governor', 'of', 'alaska', 'received', 'an', 'offer', 'for', 'a', 'fully', '', '', 'housing', 'project', 'based', 'on', 'the', 'concepts', 'developed', 'for', 'the', '', 'project', 'and', 'adopted', 'for', 'arctic', 'climate', 'by', 'the', 'developer', '', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'born', 'in', '', 'on', '2', '3', 'october', '1', '9', '6', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'regular', 'trade', 'continued', ',', 'and', 'the', 'new', '', 'who', 'traded', 'with', 'comanches', 'became', 'known', 'as', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'put', 'an', 'end', 'to', 'the', 'proposed', 'jamaica', 'bay', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'the', 'end', 'of', 'the', '', 'family', 'business', 'around', '1', '8', '5', '0', 'and', 'the', 'death', 'of', 'charles', '', 'father', ',', '', 'all', 'innovative', 'work', 'on', 'the', '', 'movement', 'ceased', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'a', 'gentle', '', ',', 'but', 'i', 'realised', '...', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'james', '', 'made', 'extra', '', 'to', 'every', 'song', 'in', 'this', 'video', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'idea', 'followed', 'a', 'move', 'by', 'bosnian', 'croats', 'who', 'erected', 'a', 'catholic', 'christian', 'cross', 'on', '', 'hill', 'above', '', ',', '', 'croats', 'killed', 'there', 'during', 'the', 'bosnian', 'war', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'july', '2', '0', '1', '2', '', 'was', 'appointed', 'the', 'director', 'of', 'the', '', 'kids', 'institute', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'intersection', 'served', '(', 'and', 'still', 'serves', ')', 'as', 'a', 'key', '', 'transit', 'transfer', 'point', 'in', 'the', 'city', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'audiences', '', 'by', '', 'gave', 'the', 'film', 'an', 'average', 'grade', 'of', '``', 'a', \"''\", 'on', 'an', '', 'to', 'f', 'scale', ',', 'while', '', 'reported', '', 'gave', 'it', 'an', 'overall', 'positive', 'score', 'of', '8', '8', '%', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'rest', 'of', 'the', 'movie', 'takes', 'place', 'at', 'the', 'party', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'are', 'cliff', 'drive', ',', '', 'hill', ',', 'south', 'park', ',', 'english', 'bluff', ',', 'and', 'beach', 'grove', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'novel', '``', 'st.', 'elmo', \"''\", 'was', 'frequently', 'adapted', 'for', 'both', 'the', 'stage', 'and', 'screen', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '9', 'he', 'became', 'the', 'deputy', 'director', 'for', 'nato', 'nuclear', 'planning', ',', 'a', 'position', 'he', 'held', 'until', '1', '9', '7', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'give', 'people', 'their', 'own', 'choice', 'to', '', 'it', 'or', 'not', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'then', 'became', 'lieutenant', 'colonel', 'and', 'assistant', 'brigade', 'adjutant', 'from', '1', '8', '9', '0', '-', '1', '8', '9', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'individuals', '', 'with', '', 'of', 'the', 'eyes', 'and', 'skin', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'jetboats', 'can', 'also', 'be', '', 'for', 'sport', ',', 'both', 'on', 'rivers', '(', 'world', 'champion', 'jet', 'boat', 'marathon', 'held', 'in', 'mexico', ',', 'canada', ',', 'usa', 'and', 'new', 'zealand', ')', 'and', 'on', '', 'designed', '', 'known', 'as', 'sprint', 'tracks', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'this', 'time', ',', 'he', 'was', 'also', 'a', 'member', 'of', 'the', 'advisory', 'committee', 'of', 'the', 'world', 'council', 'of', 'churches', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'a', 'few', 'minutes', 'away', 'from', 'the', 'town', 'of', '', 'and', 'one', 'hour', 'north', 'from', 'montreal', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'unusual', 'appearance', 'of', 'a', 'british', 'mp', 'before', 'a', 'us', 'senate', 'committee', 'drew', 'much', 'media', 'attention', 'in', 'both', 'america', 'and', 'britain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'each', 'of', 'the', 'sexes', ',', 'there', 'are', 'seven', 'track', 'running', 'events', ',', 'three', '', 'events', ',', 'four', 'jumps', ',', 'four', '', ',', 'and', 'one', 'combined', 'track', 'and', 'field', 'event', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '', '2', '0', '2', '0', 'university', 'ranking', '', 'placed', '3', '8', 'th', 'of', '1', '7', '1', 'recognized', 'ukrainian', '', 'institutions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'founded', 'in', '1', '9', '7', '5', ',', 'and', 'became', 'a', 'member', 'of', 'the', 'world', 'organization', 'of', 'the', 'scout', 'movement', 'in', '1', '9', '7', '7', 'and', 'of', 'the', 'world', 'association', 'of', 'girl', 'guides', 'and', 'girl', 'scouts', 'in', '1', '9', '9', '6', '.', '', '', '', '', '', '', '']\n", "['', '', 'moved', 'from', '', 'to', 'urban', 'contemporary', 'at', 'the', 'same', 'time', ',', 'and', 'the', 'two', 'stations', 'battled', 'with', 'each', 'other', 'throughout', 'the', 'mid-', '1', '9', '9', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'of', 'these', 'ribs', 'about', '1', '8', 'are', 'indicated', 'upon', 'the', 'second', ',', '2', '2', 'upon', 'the', 'third', 'and', 'fourth', ',', '2', '8', 'upon', 'the', 'fifth', ',', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'law', 'took', 'effect', 'on', '1', 'january', '2', '0', '2', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'their', '', 'strategy', 'involves', 'administering', 'mir-', '1', '2', '8', ',', 'an', 'agent', 'with', '9', '0', '%', 'sequence', 'homology', ',', 'or', 'an', 'agent', 'capable', 'of', 'increasing', 'the', 'expression', 'or', 'activity', 'of', 'mir-', '1', '2', '8', 'as', 'a', 'means', 'to', 'control', '', 'receptor', '1', '(', '', '1', ')', 'neuron', '', '.', '']\n", "['', 'the', 'blog', 'is', 'known', 'for', 'its', 'efforts', 'to', 'expose', 'upcoming', 'artists', ',', 'such', 'as', 'their', 'installment', 'in', 'the', '``', 'artist', 'discovery', 'series', \"''\", 'of', '', 'hosted', 'by', 'austin', 'city', 'limits', 'and', '', ',', 'and', 'their', 'program', 'on', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '7', 'february', '1', '9', '5', '5', ',', 'all', 'three', 'were', 'stationed', 'in', 'flåm', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', '', 'and', '', \"'s\", '', '', 'were', 'seventh', ',', 'eighth', 'and', 'ninth', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '8', '5', ',', '0', '0', '0', '-square-foot', 'facility', 'quickly', 'became', 'too', 'small', 'for', 'the', 'growing', 'department', ',', 'and', 'in', '2', '0', '0', '6', ',', 'the', 'moran', 'eye', 'center', 'moved', 'to', 'its', 'current', '2', '1', '0', ',', '0', '0', '0', '-square-foot', 'location', 'on', 'mario', '', 'drive', '.', '', '', '']\n", "['', 'at', 'the', 'time', 'there', 'were', 'two', 'schools', ',', 'each', 'operating', 'under', 'a', 'different', 'catholic', 'religious', 'community', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'a', 'tributary', 'of', 'lake', '', ',', 'part', 'of', 'the', '', 'river', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'the', 'son', 'of', '', '', '', 'from', '', '', 'constituency', 'of', 'maharashtra', 'legislative', 'assembly', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'company', \"'s\", 'former', 'name', 'was', 'nestlé', 'food', 'llc', ',', 'and', 'it', 'was', 'renamed', 'to', 'nestlé', 'rossiya', 'in', '2', '0', '0', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'benefit', 'show', 'was', 'held', 'for', 'her', 'daughter', 'at', 'the', '', 'in', 'san', 'francisco', 'with', 'the', 'tubes', 'and', 'todd', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'banking', 'system', 'was', 'more', 'stable', ',', 'although', 'there', 'were', 'still', '', 'loans', 'and', 'corporate', 'debt', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'later', 'said', ':', '``', 'even', 'if', '9', '0', '%', 'of', 'the', 'lyrics', 'were', 'fiction', 'there', 'are', 'still', '', 'in', 'songs', 'like', '', 'takes', 'it', 'all', \"'\", 'and', '', 'before', 'you', 'came', \"'\", 'they', 'have', 'something', 'from', 'that', 'time', 'in', 'them', '.', \"''\", '', '', '', '', '', '', '']\n", "['', 'the', 'laws', 'may', ',', 'at', 'any', 'time', ',', 'be', 'changed', 'by', 'the', 'state', 'without', 'the', 'consent', '(', 'or', 'even', 'knowledge', ')', 'of', 'the', 'married', 'people', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'made', 'speeches', 'to', 'christians', 'and', 'called', 'for', '', 'to', 'come', 'to', 'africa', 'for', '', 'and', 'founding', 'of', 'a', 'mission', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'singapore', 'would', 'eventually', 'air', 'the', 'remake', 'which', 'premiered', 'on', 'january', '5', ',', '2', '0', '2', '1', 'at', '1', '1', 'pm', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'sri', 'lankan', 'football', 'club', 'based', 'in', 'the', '', 'district', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'served', 'during', 'world', 'war', 'i.', '', ',', 'she', 'saw', 'new', 'zealand', 'service', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'person', 'will', 'give', '', ',', 'trying', 'to', 'get', 'the', 'other', 'two', 'to', '', 'the', 'names', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'engine', 'is', 'a', 'development', 'of', 'the', '6', '6', '0', '', 'street', 'triple', 's', 'unit', 'with', 'sixty', 'seven', 'new', 'components', 'and', 'the', 'following', 'differences', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'upon', 'graduation', 'in', '1', '8', '9', '7', ',', 'smetona', 'entered', 'the', 'faculty', 'of', 'law', 'of', 'the', 'university', 'of', 'saint', 'petersburg', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'initially', 'performed', 'the', 'song', 'locally', 'but', 'soon', 'went', 'on', 'to', 'perform', 'at', 'several', 'public', 'events', 'for', 'the', 'air', 'force', 'in', 'washington', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'phillips', 'had', 'already', 'cut', 'the', 'first', 'records', 'by', 'blues', 'artists', 'such', 'as', '', \"'\", '', 'and', 'junior', 'parker', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'and', 'the', 'two', 'shared', 'time', 'together', 'before', 'her', 'mother', \"'s\", 'death', 'in', '2', '0', '0', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'located', 'about', 'northeast', 'of', 'the', 'village', 'of', '', ',', 'near', 'the', 'mouth', 'of', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'marion', 'county', ',', 'in', 'turn', ',', 'had', 'been', 'named', 'for', 'general', 'francis', 'marion', 'of', 'revolutionary', 'war', 'fame', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'theory', 'followed', 'that', 'once', 'these', 'related', 'concepts', 'are', '', ',', 'recognition', 'of', 'them', 'in', 'this', 'task', 'will', 'be', '', 'than', 'words', 'that', 'are', 'not', 'activated', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'communist', 'subsequently', 'launched', 'intensive', 'political', '/', 'psychological', '/', 'propaganda', 'offensives', 'and', 'over', '8', '0', '0', 'surviving', 'surrendered', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'treaty', 'signed', 'in', '1', '8', '3', '6', 'forced', 'indian', 'tribes', 'in', 'the', 'eastern', 'united', 'states', 'to', 'move', 'west', 'of', 'the', 'mississippi', 'river', ',', 'but', '', 'chief', '', ',', 'his', 'tribe', ',', 'and', 'others', 'refused', 'to', 'leave', 'their', 'land', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'adopted', 'his', 'nephew', 'wu', '', '', 'as', 'heir', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'september', '2', '6', ',', '2', '0', '1', '1', ',', 'the', '', 'rebranded', 'from', '``', 'the', '', \"''\", 'to', '``', 'river', 'country', \"''\", ',', 'now', '', 'on', '', '1', '0', '2', '.', '1', 'fm', '', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'also', 'protests', 'against', 'the', '', 'renovation', 'of', 'downtown', 'bucharest', ',', 'and', '', 'that', 'all', 'condemned', 'buildings', 'be', 'photographed', 'and', '', 'for', 'historical', 'reference', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'campaign', 'chairman', 'was', 'liberal', 'mp', ',', 'richard', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'hunter', \"'s\", 'paradise', 'with', 'deer', '', 'here', 'and', 'there', 'with', 'an', 'occasional', 'wild', '', 'making', 'an', 'appearance', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'a', 'very', 'broad', '', 'of', 'widely', 'open', '', 'such', 'as', 'the', 'twin', 'prime', 'conjecture', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'current', 'use', 'of', '', 'was', 'introduced', 'by', 'the', 'local', 'electoral', 'act', '2', '0', '0', '1', 'and', 'began', 'with', 'elections', 'to', 'local', '', 'and', 'district', 'health', 'boards', 'in', 'october', '2', '0', '0', '4', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'film', 'stars', '', 'as', 'a', '', 'writer', 'who', 'is', 'forced', 'to', 'bond', 'with', 'a', 'young', 'boy', 'who', 'has', 'been', '', 'to', 'her', 'care', 'after', 'the', 'london', 'blitz', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'disc', 'is', 'somewhat', '', '', 'with', '', ',', 'and', 'under', 'a', 'lens', 'small', 'white', '', 'and', 'scales', 'appear', 'scattered', 'in', 'the', '', 'part', 'of', 'the', 'wing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'father', ',', 'son', '', 'is', 'a', 'retired', 'football', 'player', 'turned', 'manager', 'who', 'once', 'played', 'for', 'the', 'south', 'korea', 'national', 'football', 'b', 'team', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'deserted', 'medieval', 'village', 'site', 'in', 'the', 'english', 'county', 'of', 'norfolk', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'new', 'lyrics', ',', 'which', 'removed', 'any', 'reference', 'to', 'stalin', ',', 'were', 'approved', 'on', 'september', '1', 'and', 'were', 'made', 'official', 'with', 'the', 'printing', 'of', 'the', 'new', 'soviet', 'constitution', 'in', 'october', '1', '9', '7', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'about', '9', '.', '3', '%', 'of', 'families', 'and', '2', '0', '.', '1', '%', 'of', 'the', 'population', 'were', 'below', 'the', 'poverty', 'line', ',', 'including', '3', '2', '.', '1', '%', 'of', 'those', 'under', 'age', '1', '8', 'and', '9', '.', '5', '%', 'of', 'those', 'age', '6', '5', 'or', 'over', '.', '', '', '']\n", "['', 'while', '', 'at', '', 'camp', ',', 'victoria', ',', 'he', 'died', 'suddenly', 'of', '', 'heart', 'disease', 'on', '1', '3', 'june', '1', '9', '4', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'school', 'district', 'administration', 'is', 'headed', 'by', 'dr.', '', 'mcdonald', ',', 'the', 'current', 'superintendent', 'of', 'schools', ',', 'appointed', 'july', '1', ',', '2', '0', '1', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'year', 'and', 'a', 'half', 'later', ',', '``', '', 'town', \"''\", '', 'into', '``', '', \"'\", 'time', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'refers', 'to', 'the', 'killing', 'of', 'multiple', 'individuals', 'and', 'is', 'usually', 'considered', 'to', 'be', '', '', ',', 'especially', 'when', '', 'by', 'a', 'group', 'of', 'political', 'actors', 'against', '', 'victims', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '6', ',', 'facebook', 'founder', 'mark', '', 'purchased', '7', '0', '0', '', 'of', 'beach', 'front', 'land', 'on', 'the', 'island', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '3', '7', '.', '3', '%', 'of', 'all', 'households', 'were', 'made', 'up', 'of', 'individuals', ',', 'and', '2', '1', '.', '5', '%', 'had', 'someone', 'living', 'alone', 'who', 'was', '6', '5', 'years', 'of', 'age', 'or', 'older', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'once', 'again', 'topped', 'the', '', 'count', 'for', 'the', 'season', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '1', ',', 'the', 'company', 'found', 'itself', 'involved', 'in', 'a', 'controversial', '', 'plan', 'for', 'the', 'bath', 'road', 'reservoir', 'in', 'its', 'home', 'town', 'of', 'reading', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'rao', 'park', 'is', 'a', 'park', 'located', 'on', '', 'corner', 'in', '', ',', 'chennai', ',', 'india', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'this', 'manner', ',', 'terminal', 'tube', 'foot', 'formation', 'is', 'followed', 'by', 'the', 'growth', 'of', 'additional', 'tube', 'feet', ',', '', ',', '', '', ',', 'and', 'other', '', 'structures', 'in', 'a', '', 'to', 'distal', 'direction', 'until', '', 'is', 'completed', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'their', 'next', 'ep', ',', '``', '', \"''\", ',', 'appeared', 'in', '1', '9', '9', '7', 'via', '', 'records', ',', 'with', 'five', 'tracks', ',', 'which', 'featured', 'their', '', 'song', '``', 'furniture', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '', '1', '9', '0', '0', 's', 'there', 'were', 'an', 'estimated', '1', '0', '0', ',', '0', '0', '0', '', 'or', 'captive', 'elephants', 'in', 'thailand', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'are', 'well', 'known', 'as', '', 'of', 'some', 'agricultural', 'crops', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'much', 'of', 'rural', 'new', 'zealand', '', 'on', 'collection', 'of', 'rainwater', 'for', 'water', 'supply', 'and', '', 'tanks', 'for', 'sewage', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'took', 'over', 'the', '', '', \"'\", 'along', 'with', 'karl', '', '(', '', 'in', 'the', '', 'quartet', ')', 'and', 'the', '', '', '', ',', 'with', '', '', 'as', 'conductor', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'such', 'she', 'carried', 'a', 'claim', 'to', 'the', 'throne', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'also', 'in', '2', '0', '0', '9', ',', '', 'introduced', 'the', '', 'u', '1', '', ',', 'what', 'was', 'then', 'the', 'world', \"'s\", 'first', 'fully', '', '', 'on', 'the', 'market', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'gradually', 'americans', 'settled', 'there', ',', 'also', '', 'in', 'hunting', 'and', 'fishing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'full', 'day', 'of', 'tunnel', 'operations', 'saw', 'lower', 'traffic', 'volumes', ',', 'with', 'only', '2', '2', ',', '1', '4', '5', 'vehicle', 'trips', ',', 'due', 'to', 'an', 'ongoing', '', ',', 'as', 'well', 'as', 'confusion', 'at', 'the', '', 'exits', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'comprises', 'the', 'two', 'upper', 'floors', 'of', 'the', 'main', 'school', 'building', ',', 'browhead', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'had', 'previously', 'shot', 'two', 'documentaries', 'in', 'color', 'in', '1', '9', '4', '4', ',', '``', \"''\", 'and', 'the', '', '``', 'the', 'fighting', 'lady', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'also', ',', 'there', 'is', 'a', 'legend', 'connected', 'with', 'the', 'image', 'of', 'the', 'deer', 'horn', 'of', 'the', 'town', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'other', 'hand', ',', 'the', 'entry', 'of', 'calcium', 'acts', ',', 'either', 'directly', 'or', '', ',', 'on', 'different', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'left', 'the', 'group', 'in', '2', '0', '0', '4', 'and', '', 'continued', 'as', 'a', '', 'group', 'before', 'going', 'on', 'hiatus', 'in', 'late', 'december', '2', '0', '0', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'order', 'to', '', 'themselves', ',', 'they', 'must', 'first', 'take', 'off', 'their', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'deaths', 'of', 'her', 'parents', 'and', 'the', 'racism', 'of', 'philadelphia', 'society', 'cause', 'angela', 'to', 'leave', 'for', 'new', 'york', 'city', ',', 'where', 'she', 'decides', 'to', 'fully', 'hide', 'her', 'african-american', 'heritage', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'has', '6', '0', '', 'and', '3', '2', '', ',', 'and', '', 'characteristic', 'of', '−', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'rebellion', 'spread', 'to', 'ji', ',', 'where', 'han', 'guang', 'revived', 'the', 'yan', 'kingdom', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'the', 'new', 'york', 'stock', 'exchange', 'building', '', 'into', '2', '0', 'broad', 'street', ',', '', '&', 'amp', ';', 'jacobs', 'created', 'additional', 'facilities', 'in', '1', '9', '5', '6', 'designed', 'with', 'their', 'characteristic', '', 'of', '', 'in', 'the', 'upper', 'stories', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'gally', 'then', '', ',', 'killing', 'rasha', 'by', '', 'his', 'head', 'off', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'an', 'unincorporated', 'community', 'in', 'washington', 'county', ',', 'in', 'the', 'u.s.', 'state', 'of', 'missouri', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'born', 'in', 'vienna', ',', 'he', 'came', 'to', 'britain', 'in', '1', '9', '3', '3', 'as', 'an', '', 'agent', '', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'discovery', 'district', 'is', 'a', 'special', '', 'district', 'in', 'downtown', 'columbus', ',', 'ohio', ',', 'the', 'home', 'of', 'columbus', 'state', 'community', 'college', ',', 'columbus', 'college', 'of', 'art', 'and', 'design', ',', 'columbus', 'museum', 'of', 'art', ',', 'and', 'columbus', 'metropolitan', 'library', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'the', 'story', 'of', 'two', 'sisters', 'who', 'lose', 'their', 'parents', 'and', 'go', 'to', 'live', 'with', 'their', 'aunt', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'an', '', 'teenager', 'wearing', 'an', '', 'form', 'of', 'the', '', \"'s\", 'costume', ',', 'and', 'he', 'and', 'his', 'four', 'siblings', 'still', 'retain', 'a', '', 'fear', 'of', 'fire', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', '0', 'november', '2', '0', '1', '2', ',', 'hague', 'recognised', 'the', 'national', 'coalition', 'for', 'syrian', 'revolutionary', 'and', 'opposition', 'forces', 'as', 'the', '``', 'sole', 'legitimate', 'representative', \"''\", 'of', 'the', 'syrian', 'people', ',', 'and', 'a', '', 'alternative', 'to', 'the', 'current', 'syrian', 'government', '.', '', '', '', '', '', '', '', '']\n", "['', 'before', 'the', 'first', 'world', 'war', ',', 'building', 'costs', 'were', 'between', '£', '3', ',', '0', '0', '0', 'and', '£', '4', ',', '0', '0', '0', ',', 'at', 'least', 'three', 'times', 'the', 'cost', 'of', 'the', '', 'boats', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'basic', 'set', '', 'an', '', 'group', 'of', 'order', '2', '1', '0', ',', 'which', 'extends', 'in', '', '2', '2', 'to', 'a', '', '2', '1', '0', ':', 'm', '2', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'attacks', 'the', 'robot', 'ibis', ',', 'not', 'aware', 'of', 'who', 'she', 'is', ',', 'as', 'a', 'result', 'of', 'his', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'of', '``', '', '', \"''\", 'and', '``', 'r.', '', \"''\", 'can', 'also', 'be', 'found', '', 'on', '', 'bees', 'of', 'the', 'genus', '``', '', \"''\", '(', '', ':', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'agricultural', 'land', 'use', ',', 'is', '4', '5', '.', '2', '%', 'of', 'total', 'land', 'of', '', 'province', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'max', '', 'explains', 'in', 'his', 'book', ',', '``', 'it', 'is', 'true', 'that', '', 'led', 'the', '', 'until', 'the', 'last', 'day', 'of', 'his', 'life', 'to', 'finish', 'his', 'ninth', 'with', 'a', 'finale', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'were', 'replaced', 'eventually', 'by', '', '', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'world', 'bank', 'approved', 'a', 'plan', 'to', '', 'us', '$', '1', '6', '0', 'billion', 'in', 'emergency', 'aid', 'over', 'the', 'next', '1', '5', 'months', 'to', 'help', 'countries', 'deal', 'with', 'the', 'coronavirus', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'entire', 'council', 'was', 'up', 'for', 'election', 'following', 'boundary', 'changes', ',', 'which', 'increase', 'the', 'number', 'of', 'seats', 'from', '3', '6', 'to', '4', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'major', 'general', 'henry', 'ware', '', 'told', 'the', 'soldiers', 'before', 'their', 'departure', ':', '``', 'you', 'have', '', 'earned', 'the', 'reputation', 'of', 'being', 'among', 'the', 'best', 'soldiers', 'of', 'the', 'american', 'army', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'parts', 'of', 'the', 'story', '', 'significantly', 'between', 'the', 'three', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'adult', 'male', 'and', 'female', 'are', 'similar', 'in', 'appearance', ',', 'with', '', '', 'plumage', 'and', '', 'underparts', 'and', 'face', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'chicago', 'tribune', \"''\", 'newspaper', 'reporter', 'lexie', '', 'becomes', 'the', 'object', 'of', 'the', '', 'of', 'both', 'dodge', 'and', 'carter', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'references', 'to', 'the', '``', 'illinois', 'register', \"''\", 'contain', 'the', 'volume', 'number', '(', 'each', 'volume', 'is', 'one', 'calendar', 'year', ')', 'and', 'the', 'page', 'number', ',', 'which', 'is', 'continuously', 'numbered', 'over', 'the', 'course', 'of', 'a', 'volume', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'testing', 'and', 'design', '', 'such', 'as', 'improvements', 'to', 'the', 'turret', 'and', 'half', '', 'type', '', 'composite', '', 'continued', 'until', '1', '9', '8', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'manor', 'was', 'the', 'property', 'of', 'the', '', 'of', '', ',', 'and', 'was', 'then', 'owned', 'by', 'the', '', 'order', 'until', '1', '6', '5', '7', ',', 'which', 'then', 'built', 'a', 'monastery', 'in', '', 'and', 'sold', 'the', 'property', 'to', 'johann', '', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'station', 'began', 'am', 'transmissions', 'on', 'january', '2', '0', ',', '2', '0', '1', '1', ',', 'though', 'it', 'had', 'existed', 'as', 'an', 'internet', 'radio', 'station', 'since', '2', '0', '0', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'got', 'his', 'first', 'violin', 'at', 'the', 'age', 'of', 'four', ',', 'and', 'only', 'six', 'months', 'later', 'he', 'gave', 'his', 'first', 'public', 'concert', 'at', 'his', 'school', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'gas', 'enters', 'the', 'bottom', 'of', 'the', '', 'and', 'passes', 'through', 'the', '', ',', 'and', 'the', 'dust', '', 'on', 'the', 'inside', 'surface', 'of', 'the', 'bags', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'roots', 'host', 'the', 'roots', '', ',', 'an', 'annual', '', 'music', 'festival', 'in', 'philadelphia', ',', 'every', 'june', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'george', 'served', 'as', 'secretary', 'and', 'manager', 'of', 'the', 'new', 'company', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'park', 'is', 'the', 'site', 'of', 'an', 'ancient', 'buffalo', 'jump', ',', 'where', '', 'native', 'people', 'drove', '', 'over', 'the', '', 'in', 'large', 'numbers', 'to', 'provide', 'for', 'their', 'tribes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'final', 'billboard', 'chart', 'brown', \"'s\", 'hit', 'appeared', 'on', 'was', 'the', 'soul', 'singles', 'chart', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'can', 'be', 'seen', 'in', 'the', 'fact', 'that', 'the', 'account', 'to', 'be', '', 'on', 'the', 'day', 'of', '', '(', '', '', ')', 'is', 'one', 'of', 'works', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'work', 'was', 'also', 'part', 'of', 'a', '2', '0', '@', 'th', 'anniversary', '', 'of', 'the', '', 'school', 'of', 'arts', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'currently', 'head', 'of', '', '', \"'s\", 'youth', 'sector', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'formed', 'under', 'the', 'local', 'government', 'act', '1', '8', '9', '4', 'from', 'the', '', '', 'rural', 'sanitary', 'district', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', '', '', 'were', 'johann', '', '', ',', 'a', 'german', 'politician', 'who', 'was', 'the', 'minister', 'of', 'justice', 'in', 'the', '', 'german', 'government', 'headed', 'by', '', 'john', 'of', 'austria', ',', 'and', 'marie', '', '(', 'née', '', ')', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mary', '', '', '(', 'born', '1', '9', '5', '0', ')', 'is', 'an', '', 'senior', 'united', 'states', 'district', 'judge', 'of', 'the', 'united', 'states', 'district', 'court', 'for', 'the', 'district', 'of', 'rhode', 'island', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '5', '0', ',', 'the', 'family', 'moved', 'to', '', ',', 'a', 'village', 'where', 'he', 'spent', 'most', 'of', 'his', 'childhood', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'species', 'of', 'sea', 'snail', ',', 'a', 'marine', 'gastropod', 'mollusk', 'in', 'the', 'family', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'the', 'parties', 'claim', 'not', 'to', '', 'against', 'muslims', ',', 'they', 'in', 'practice', 'leave', 'the', 'muslims', 'in', 'a', '``', '', 'position', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'stores', 'include', 'restaurants', ',', '', ',', '', 'and', 'services', 'stores', ',', 'food', 'court', ',', '', 'and', 'entertainment', 'stores', ',', '', ',', 'sports', 'and', 'book', 'stores', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'fat', 'and', 'the', '', 'cheese', 'are', 'added', 'and', 'the', 'mixture', 'is', '', 'until', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'instance', ',', 'shadow', 'banned', '', 'posted', 'to', 'a', 'blog', 'or', 'media', 'website', 'will', 'not', 'be', 'visible', 'to', 'other', 'persons', 'accessing', 'that', 'site', 'from', 'their', 'computers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'word', 'play', ',', 'making', 'extensive', 'use', 'of', '', 'on', 'english', 'place', 'names', ',', 'is', 'typical', 'of', 'english', 'humour', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'yet', '', '', 'that', 'the', 'german', 'army', 'should', 'not', 'march', 'into', 'luxembourg', 'until', 'he', 'received', 'a', '', 'sent', 'by', 'his', 'cousin', 'george', 'v', ',', 'who', 'made', 'it', 'clear', 'that', 'there', 'had', 'been', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'vieira', 'took', 'office', 'on', '1', 'october', '2', '0', '0', '5', ',', 'and', 'almost', 'two', 'weeks', 'later', 'he', 'and', 'gomes', 'had', 'a', 'meeting', ',', 'with', 'gomes', '', 'that', 'the', 'two', 'would', 'be', 'able', 'to', 'work', 'together', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'came', 'in', '6', ',', '1', '0', ',', 'and', '1', '5', '', 'sizes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'retired', 'on', 'march', '6', ',', '1', '9', '5', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'like', 'the', 'rv-', '3', 'to', 'rv-', '7', 'that', 'preceded', 'it', ',', 'the', 'rv-', '8', 'is', 'stressed', 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ptolemy', '', 'probably', 'also', 'had', 'the', 'young', 'son', 'of', 'ptolemy', '', 'and', '', 'ii', ',', 'who', 'was', 'also', 'called', 'ptolemy', ',', 'murdered', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'nonetheless', ',', 'now', 'it', 'is', 'clear', 'that', 'many', 'sociolinguistic', 'aspects', 'do', 'not', 'depend', 'on', '', 'and', 'that', 'the', 'combined', '', 'of', 'sociolinguistics', 'and', 'sign', 'language', 'offers', '', 'opportunities', 'to', 'test', 'and', 'understand', 'sociolinguistic', 'theories', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'george', '', ',', '3', 'rd', 'earl', 'of', '', ',', 'a', 'noted', 'military', 'commander', 'and', 'another', 'prominent', 'member', 'of', 'the', '', '', 'was', 'also', 'a', 'patron', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'immediately', 'established', 'himself', 'as', 'an', 'excellent', '', 'who', 'was', 'also', '', 'in', 'throwing', 'out', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '0', 'the', 'u.s.', 'national', 'park', 'service', 'described', '``', '', \"''\", 'as', 'the', 'world', \"'s\", '', 'known', 'flying', 'creature', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'crossed', 'the', 'finish', 'line', 'wearing', 'mickey', 'mouse', 'ears', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'september', '1', '9', '4', '0', ',', 'he', 'joined', 'the', 'union', 'of', 'soviet', 'writers', 'of', 'ukraine', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'three', '', 'automotive', 'marques', 'were', 'added', 'to', 'the', '', 'portfolio', 'in', '1', '9', '9', '8', ':', '', ',', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'january', '2', '0', '1', '9', ',', 'the', 'conversion', 'therapy', 'ban', 'was', 'extended', 'to', 'adults', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'leaves', 'are', 'alternate', 'on', 'the', 'stem', ',', 'not', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'wife', 'was', 'from', 'the', '', '', '(', '', ')', 'family', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', '', 'in', '1', '0', '0', 'm', 'freestyle', ',', '5', '0', 'm', 'butterfly', ',', '5', '0', 'm', 'freestyle', ',', '4', 'x', '1', '0', '0', 'm', 'freestyle', ',', 'and', '4', 'x', '5', '0', 'm', 'freestyle', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'together', 'with', 'the', 'islands', 'of', '', 'and', 'guernsey', ',', 'sark', 'from', 'time', 'to', 'time', '', 'bailiwick', 'of', 'guernsey', 'legislation', ',', 'which', ',', 'subject', 'to', 'the', 'approval', 'of', 'all', 'three', '', ',', 'applies', 'in', 'the', 'entire', 'bailiwick', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'lieutenants', 'manners', 'and', 'george', 'edward', 'cecil', 'and', 'around', '1', '6', '0', '', 'were', 'killed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'the', 'times', 'of', 'india', \"''\", 'also', 'rated', 'it', 'four', 'out', 'of', 'five', ':', '``', 'it', '', 'the', 'most', '', 'scenes', 'in', 'popular', 'hindi', 'cinema', 'and', 'manages', 'to', 'get', 'away', 'with', 'it', 'because', 'it', \"'s\", 'all', 'done', 'with', 'an', 'infectious', '', 'and', '', 'that', '', 'the', 'ribs', '', '.', \"''\"]\n", "['', 'the', '', 'warbler', 'has', '', '', ',', '', 'underparts', 'with', '', '', 'and', 'a', 'thin', '', 'bill', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'did', 'not', 'join', 'them', 'initially', 'but', 'he', 'did', 'so', 'later', 'when', 'he', 'felt', 'left', 'out', ',', 'and', 'became', '', 'to', 'movies', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'design', 'firm', 'control', 'group', 'inc.', 'also', 'leased', 'a', 'whole', 'floor', 'of', 'the', '', 'building', 'in', '2', '0', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'although', 'compulsory', 'for', 'voting', 'and', 'other', 'government', 'transactions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'located', 'to', 'the', 'north', 'of', 'the', 'macdonald', 'bridge', ',', 'at', 'the', '', 'of', '', 'harbour', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'northern', 'segment', 'of', 'sr', '1', '1', 'continuing', 'to', '', 'street', 'became', 'sr', '1', '1', '0', ',', 'which', 'continues', 'briefly', 'as', 'the', 'harbor', 'freeway', 'before', 'becoming', 'the', 'pasadena', 'freeway', 'north', 'of', 'the', 'four', 'level', 'interchange', 'with', 'us', '1', '0', '1', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', ',', '', 'series', 'is', 'well', 'received', 'among', 'comic', 'book', '', 'and', 'fans', 'alike', ',', 'acclaimed', 'for', 'its', 'creative', 'allegiance', 'to', 'the', 'original', 'black', 'and', 'white', 'comic', 'book', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'may', '1', '6', ',', '1', '8', '5', '3', 'a', 'great', 'forest', 'fire', 'burned', 'from', '', 'to', '', ',', 'ontario', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'energy', 'hoped', 'to', '', 'significant', '', '', ',', 'though', 'the', 'u.s.', 'federal', 'energy', '', 'commission', 'did', 'not', 'rule', 'in', 'their', 'favor', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'confirmed', 'a', 'month', 'later', 'with', '', 'signing', 'a', '', 'deal', 'with', 'the', 'team', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'was', 'fourth', 'fastest', 'for', '', ',', 'ahead', 'of', 'seat', 'driver', '', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'end', 'hits', \"''\", 'followed', 'in', '1', '9', '9', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bruno', 'attempts', 'to', 'murder', 'paul', 'but', 'fails', 'and', 'leaves', 'france', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'more', 'than', '4', '0', 'different', '', 'have', 'been', 'discovered', 'in', 'muscat', 'grapes', '(', 'as', 'well', 'as', 'in', 'other', '', 'varieties', 'like', '', 'and', '', ')', ';', 'these', 'include', '', ',', '', ',', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'i', 'am', 'first', 'a', 'christian', ',', 'next', 'a', 'catholic', ',', 'then', 'a', '', ',', 'fourth', 'a', '', ',', 'and', 'fifth', 'a', 'presbyterian', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '9', ',', 'dark', 'horse', 'comics', 'released', 'a', 'pair', 'of', '', 'comic', 'book', 'miniseries', 'set', 'between', 'the', 'first', 'and', 'second', 'seasons', 'of', '``', 'the', '', \"''\", ',', 'collected', 'as', '``', 'the', '', ':', 'season', '1', '.', '5', '``', '.', '', '', '', '', '', '', '', '']\n", "['', 'has', 'been', 'running', 'a', 'photography', 'school', 'since', '2', '0', '0', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'appeared', 'twice', 'on', '``', 'a', '&', 'amp', ';', 'e', \"'s\", 'an', 'evening', 'at', 'the', '', \"''\", ',', 'on', 'the', 'a', '&', 'amp', ';', 'e', 'tv', 'network', ',', 'on', 'august', '5', ',', '1', '9', '8', '8', ',', 'and', 'march', '3', ',', '1', '9', '8', '9', '.', '', '', '', '']\n", "['', 'above', 'ground', 'shelters', 'may', 'be', 'built', 'of', 'different', 'materials', 'such', 'as', 'steel', 'reinforced', 'concrete', 'or', '1', '/', '8', '``', '1', '0', '', 'hot', 'rolled', 'steel', 'and', 'may', 'be', 'installed', 'inside', 'a', 'home', ',', '', ',', 'or', '', ',', 'or', 'as', 'a', '', 'unit', '.', '', '', '', '', '', '']\n", "['', 'in', 'the', '3', 'rd', '', 'bc', ',', 'switzerland', 'lay', 'on', 'the', 'south-western', '', 'of', 'the', '', 'ware', '', ',', 'entering', 'the', 'early', 'bronze', 'age', '(', '', 'culture', ')', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'aria', '``', '', '', '', '', \"''\", '(', '``', 'to', 'practice', 'sweet', '', ',', 'to', '', '', \"''\", 'or', '``', 'to', '', 'love', \"''\", ')', 'is', 'frequently', 'performed', 'as', 'a', 'concert', 'piece', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'went', 'on', 'to', 'play', '', 'in', '``', 'devon', '', '', '...', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'wrote', 'books', 'on', '', 'psychology', ',', '', 'psychology', 'and', 'the', 'psychology', 'of', 'religion', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'if', 'the', 'answer', 'is', '``', '', \"''\", ',', 'then', '``', 'x', \"''\", '1', '', ',', 'otherwise', '``', 'x', \"''\", '1', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'is', 'the', '2', '0', '1', '0', 'u.s.', 'senior', 'national', 'champion', 'in', '', 'gymnastics', ',', 'and', 'represented', 'the', 'united', 'states', 'at', 'the', '2', '0', '1', '2', 'olympic', 'games', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '1', ',', 'he', 'became', 'a', 'chairman', 'of', 'the', 'state', 'committee', 'of', 'the', 'republic', 'of', 'kazakhstan', 'on', 'youth', 'affairs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'film', 'was', 'commercially', 'successful', 'in', 'box', 'office', 'and', 'ran', 'over', '2', '0', '0', 'days', 'completed', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'had', 'three', 'cells', 'and', 'a', '', 'session', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'end', 'of', '2', '0', '1', '1', ',', '``', 'billboard', \"''\", 'ranked', 'it', '#', '1', '3', 'on', 'its', 'annual', '``', 'top', '2', '5', 'tours', \"''\", ',', 'earning', 'nearly', '$', '4', '8', '.', '9', 'million', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'ad', 'agency', 'which', 'designed', 'the', 'slogan', 'has', 'denied', 'intent', 'to', 'connect', 'the', 'slogan', 'to', 'that', 'court', 'case', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'of', 'particular', 'note', 'is', 'the', '', 'scholar', ',', '', ',', '', 'whose', 'influence', '', 'the', 'globe', ',', 'particularly', 'the', 'black', 'world', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'recorded', 'in', 'new', 'york', 'without', 'any', 'previous', 'or', 'current', 'members', 'of', 'jefferson', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'line', '7', '7', 'connects', 'it', 'to', '', 'station', 'and', '', 'to', 'the', '', 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'the', 'location', 'for', '', '', 'international', 'airport', ',', 'which', 'is', 'located', 'just', 'outside', 'the', 'town', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'released', 'his', 'third', 'album', '``', '', \"''\", 'in', '2', '0', '1', '5', ',', 'working', 'with', 'josé', 'gonzález', ',', '', '', ',', 'and', '', 'young', 'to', 'create', 'the', 'record', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', 'electrons', 'can', 'not', 'give', 'up', 'energy', 'by', 'moving', 'to', 'lower', 'energy', 'states', ',', 'no', 'thermal', 'energy', 'can', 'be', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'football', 'tournament', 'at', 'the', '1', '9', '9', '7', 'southeast', 'asian', 'games', 'was', 'held', 'from', '5', 'to', '1', '8', 'october', 'in', 'jakarta', ',', 'indonesia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'voice', 'acting', 'debut', 'was', '', 'road', 'show', \"'s\", '``', 'angel', 'tactics', \"''\", 'in', '2', '0', '0', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'two', 'are', 'eventually', '', 'to', 'each', 'other', 'by', 'an', '', 'chain', ',', 'and', 'will', 'fight', 'each', 'other', '', 'unless', '', '', 'or', '', 'into', 'an', 'acid', 'pit', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'one', 'change', 'of', 'the', 'codice_', '6', 'file', ',', 'all', 'pages', 'that', 'include', 'the', 'file', 'will', 'display', 'the', 'latest', 'daily', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'did', 'not', 'present', 'a', 'strong', 'challenge', 'to', '', ',', 'and', 'he', 'ended', 'up', 'defeating', 'her', 'in', 'a', 'landslide', ',', 'receiving', '6', '5', '%', 'of', 'the', 'vote', ',', 'to', 'win', 'his', 'first', 'term', 'in', 'the', 'legislature', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'worked', 'with', 'keith', '', 'at', 'the', 'national', 'physical', 'laboratory', 'in', 'south-west', 'london', ',', 'in', 'collaboration', 'with', 'the', 'national', 'research', 'development', 'corporation', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'work', 'was', 'initiated', 'by', 'brethren', \"'s\", 'bishop', 'jan', '', 'who', 'translated', 'the', 'new', 'testament', 'from', 'greek', 'in', '1', '5', '6', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'the', 'author', 'of', '``', 'el', '', 'de', 'la', '', ':', 'my', 'life', 'in', 'radio', \"'s\", 'fast', 'lane', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'though', 'winning', 'only', 'a', 'few', 'of', 'his', 'remaining', '', ',', 'walcott', 'succeeded', 'in', 'twice', 'beating', 'george', 'cole', ',', 'a', '', 'hard', '', '', 'from', 'philadelphia', ',', 'in', 'december', '1', '9', '0', '7', 'and', 'january', '1', '9', '0', '8', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'played', 'in', 'the', '1', '9', '9', '4', 'college', 'world', 'series', 'with', 'georgia', '', ',', 'losing', 'in', 'the', 'final', 'round', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'the', 'angel', 'heard', 'this', ',', 'it', '', 'an', 'incident', 'where', 'rabbi', 'joshua', 'ben', '', 'had', 'similarly', 'requested', 'the', '', ',', 'and', 'then', 'took', 'the', 'opportunity', 'to', 'escape', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'the', 'release', 'of', 'his', 'classical', 'album', ',', '``', 'sacred', '', \"''\", ',', '', 'captured', 'a', '', 'in', 'the', '', 'book', 'of', 'world', 'records', ',', 'as', 'he', 'simultaneously', 'held', 'the', 'no', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'fia', 'cup', 'cars', 'were', 'required', 'to', '', 'with', 'group', 'c', 'regulations', 'with', 'the', 'exceptions', 'of', 'a', 'lower', '', 'minimum', 'weight', '(', '7', '0', '0', 'kg', 'v', '7', '5', '0', 'kg', ')', ',', 'a', '', 'on', 'engine', '', 'and', 'the', 'prohibition', 'of', 'carbon', 'disc', 'brakes', '.', '', '', '', '', '']\n", "['', 'three', 'years', 'later', 'he', 'went', 'to', 'the', 'united', 'kingdom', 'for', 'further', 'military', 'training', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'about', '6', '.', '6', '0', '%', 'of', 'families', 'and', '9', '.', '6', '0', '%', 'of', 'the', 'population', 'were', 'below', 'the', 'poverty', 'line', ',', 'including', '1', '0', '.', '0', '0', '%', 'of', 'those', 'under', 'age', '1', '8', 'and', '9', '.', '0', '0', '%', 'of', 'those', 'age', '6', '5', 'or', 'over', '.']\n", "['', 'passed', 'on', 'august', '1', '5', ',', '1', '8', '6', '1', ',', 'the', 'law', 'covered', 'property', 'of', 'more', 'than', '$', '5', '0', '0', '(', 'confederate', ')', 'in', 'value', 'and', 'several', 'luxury', 'items', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'meanwhile', ',', 'raghu', \"'s\", 'inability', 'to', 'provide', 'a', 'steady', 'income', 'for', 'his', 'family', 'creates', 'tension', 'between', 'him', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'moore', 'house', 'is', 'a', '', '', 'residence', ',', 'and', 'the', '[', '', 'city', 'national', ']', 'bank', 'building', 'is', '', 'romanesque', ';', 'the', '[', 'washington', 'county', ']', 'courthouse', 'had', 'a', 'georgian', 'revival', '', ',', 'a', '', '', '', 'of', 'federal', 'architecture', 'and', 'round', 'romanesque', 'arches', '.', \"''\", '', '', '', '']\n", "['', '', 'was', 'first', 'mentioned', 'in', 'documents', 'around', '1', '1', '0', '0', 'as', 'the', 'name', 'of', 'the', 'local', '', 'family', ',', 'the', 'name', 'is', 'derived', 'from', 'the', 'word', '``', '', \"''\", 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'developed', 'in', 'koufax', \"'s\", 'index', 'finger', 'on', 'his', 'left', 'hand', ',', 'and', 'the', 'finger', 'became', 'cold', 'and', 'white', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'there', 'he', 'studied', 'classical', 'guitar', 'under', 'bruce', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'lisa', '', '', 'young', 'scholar', 'prize', 'recognizes', 'a', 'young', 'scholar', 'for', 'their', 'scholarship', 'or', 'contribution', 'using', 'digital', 'technology', 'at', 'a', 'humanities', 'conference', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', '', 'a', 'diverse', 'group', 'of', 'athletes', 'and', 'managed', 'to', 'attract', '1', '0', ',', '6', '7', '0', '', 'in', '2', '0', '0', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'worked', 'on', 'a', 'farm', 'near', 'stanley', ',', 'wisconsin', ',', 'where', 'his', 'mother', 'and', 'his', 'younger', 'brother', 'died', 'in', 'a', 'fire', 'on', 'august', '7', ',', '1', '9', '3', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'variation', '1', '4', ',', '1', '9', '8', '3', ':', \"''\", 'the', 'media', 'for', 'this', 'artwork', 'consists', 'of', '', 'silver', 'wire', ',', 'silk', '', ',', '', 'paper', ',', '', ',', '', ',', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'may', '2', '0', ',', '1', '9', '4', '7', ',', 'the', '', '', 'tried', 'to', 'crack', 'the', '', 'by', '', 'it', 'on', 'the', 'rails', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'government', 'found', 'support', 'among', 'the', 'counties', 'along', 'the', 'pennsylvania', 'and', 'ohio', 'borders', 'and', 'the', 'counties', 'along', 'the', 'b', '&', 'amp', ';', 'o', 'railroad', 'line', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'southern', 'boundary', 'was', 'defined', 'as', 'rancho', '', '', 'de', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'opie', \"'s\", '', 'made', 'a', 'deep', '', 'on', 'the', 'young', '', ',', 'and', 'he', 'would', 'hold', 'these', 'views', 'throughout', 'his', 'career', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'jumps', 'into', 'the', 'water', 'and', '', 'as', 'deep', 'and', 'far', 'as', 'they', 'can', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'released', 'on', 'digital', 'format', 'on', '1', 'september', '2', '0', '0', '8', 'on', 'paul', 'van', '', \"'s\", 'own', 'german', 'label', '', ',', 'this', 'release', 'only', 'consists', 'of', 'the', 'first', 'disc', 'out', 'of', 'the', '2', 'cd', 'edition', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'time', 'of', '', 'he', 'was', 'an', 'active', 'member', 'of', 'the', 'indian', 'national', 'congress', ',', 'and', 'organized', 'relief', 'work', 'for', 'the', 'refugees', 'when', '', 'broke', 'out', 'in', '', 'in', 'march', '1', '9', '4', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '', 'literature', 'too', ',', 'there', 'are', 'numerous', 'works', 'in', 'this', 'genre', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'film', 'adaptation', 'was', 'released', 'in', 'japanese', '', 'on', 'february', '2', '2', ',', '2', '0', '1', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'college', 'offers', 'honours', 'courses', 'in', 'economics', ',', 'education', ',', 'english', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'three', 'personally', 'successful', 'seasons', 'at', '', ',', 'he', 'was', 'noticed', 'and', 'acquired', 'by', 'italian', 'giants', '', 'in', '1', '9', '9', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'has', 'served', 'as', 'european', 'commissioner', 'for', 'regional', 'policy', 'from', '2', '2', 'november', '2', '0', '0', '4', 'until', '4', 'july', '2', '0', '0', '9', ',', 'when', 'she', 'resigned', 'to', 'become', 'a', 'member', 'of', 'european', 'parliament', 'for', 'the', 'civic', 'platform', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'additionally', ',', 'in', '1', '9', '0', '3', ',', 'the', 'constitution', 'underwent', 'a', 'very', '', 'linguistic', 'revision', ',', 'changing', 'the', 'spelling', 'of', 'some', 'words', 'where', '', 'had', 'changed', 'since', '1', '8', '1', '4', 'but', 'still', 'using', 'conservative', '1', '9', 'th', 'century', 'danish', '.', '', '', '', '', '', '', '', '']\n", "['', '``', 'the', '', 'bombing', 'of', 'populated', 'areas', ',', 'with', 'or', 'without', 'prior', 'warning', ',', 'is', 'a', '', 'international', 'humanitarian', 'law', ',', \"''\", 'he', 'said', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'is', 'a', '', 'response', 'to', 'the', 'first', '', ',', 'giving', '', 'better', '', \"'\", 'over', 'those', 'previously', 'available', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'note', 'that', 'this', 'expression', 'is', 'not', 'well-defined', 'for', '', 'series', 'or', 'processes', ',', 'because', 'the', 'mean', 'may', 'not', 'exist', ',', 'or', 'the', 'variance', 'may', 'not', 'exist', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', '', 'to', 'become', 'a', 'mate', 'on', 'the', '', 'which', 'was', '', 'in', '1', '8', '5', '0', ',', 'under', 'the', 'command', 'of', 'captain', '', '', ',', 'on', 'a', 'mission', 'to', 'search', 'for', 'sir', 'john', 'franklin', 'and', 'his', '', 'expedition', 'to', 'find', 'the', 'northwest', 'passage', '.', '', '', '', '', '']\n", "['', 'the', '', 'definition', 'of', '', 'is', 'how', 'early', 'a', 'block', 'is', '', 'versus', 'when', 'it', 'is', 'actually', 'referenced', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'median', 'income', 'for', 'a', 'household', 'in', 'the', 'county', 'was', '$', '3', '5', ',', '3', '7', '4', ',', 'and', 'the', 'median', 'income', 'for', 'a', 'family', 'was', '$', '4', '3', ',', '6', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'elected', 'mayor', 'of', 'new', '', 'in', '2', '0', '0', '3', 'with', 'promises', 'of', 'environmental', 'sustainability', ',', 'west', 'gained', 'international', 'attention', ',', 'initially', 'as', 'part', 'of', 'the', 'first', 'green', 'party', 'majority', 'elected', 'in', 'new', 'york', 'state', 'and', 'later', 'for', '', 'criminal', '', 'to', 'marry', '2', '5', '', 'couples', '.', '', '']\n", "['', 'the', 'mac', 'os', 'x', 'version', 'of', 'the', 'game', 'was', 'released', 'by', '', 'interactive', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'officers', 'included', 'louis', '', ',', '', ',', 'president', ';', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'scrushy', 'left', 'lifemark', 'in', '1', '9', '8', '3', 'and', 'founded', '', ',', 'inc', 'within', 'a', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'the', 'jonathan', 'r.', 'cole', 'professor', 'of', 'social', 'science', 'in', 'the', 'department', 'of', 'sociology', 'at', 'columbia', 'university', ',', 'the', 'president', 'of', 'the', 'american', 'assembly', 'at', 'columbia', 'university', ',', 'as', 'well', 'as', 'the', 'director', 'of', 'the', 'interdisciplinary', 'center', 'for', 'innovative', 'theory', 'and', '', '(', '', ')', '.', '', '', '']\n", "['', 'the', 'port', 'of', '', 'mainly', '', 'grain', ',', 'coal', ',', 'mineral', '', ',', 'timber', ',', 'oil', 'and', 'oil', 'products', ',', '', ',', 'food', ',', 'and', 'general', 'cargo', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'only', 'the', 'portion', 'of', 'the', '', 'that', 'is', 'still', 'relatively', 'intact', 'is', 'from', 'the', '', '', 'to', 'the', 'south', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'became', 'a', 'master', 'in', 'the', 'local', 'guild', 'in', '1', '6', '6', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '1', '1', ',', 'siggins', 'was', 'recruited', 'by', 'the', 'grey', 'industrial', 'and', 'political', 'council', 'to', 'work', 'as', 'an', '', 'in', 'the', 'grey', 'district', ',', 'on', 'the', 'west', 'coast', 'of', 'the', 'south', 'island', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '3', ',', 'it', 'was', 'added', 'to', 'the', 'buildings', 'at', 'risk', 'register', 'for', 'scotland', ',', 'with', 'the', 'roof', 'continuing', 'to', 'shed', '', ',', 'problems', 'with', 'the', '', 'and', 'pointing', ',', 'and', 'minor', 'structural', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'another', 'new', 'change', 'came', 'in', '1', '9', '7', '9', 'when', 'winter', 'and', 'the', 'paul', 'winter', 'consort', 'agreed', 'to', 'be', 'the', '', 'at', 'the', 'cathedral', 'of', 'st.', 'john', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'espedal', 'has', 'been', 'popularly', 'mistaken', 'for', 'a', 'village', ',', 'a', '', '', 'by', 'the', 'aforementioned', 'documentary', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'and', '', 'had', 'at', 'least', 'one', 'daughter', ',', 'may', '', '', ',', 'who', 'later', 'became', 'a', 'wife', 'of', '', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'animated', 'adaptation', 'of', 'the', 'miniseries', 'was', 'officially', 'announced', 'in', 'february', '2', '0', '1', '9', 'to', 'be', 'in', 'production', 'and', 'was', 'released', 'later', 'in', 'the', 'spring', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'listed', 'property', 'includes', 'two', 'contributing', 'buildings', ':', 'the', 'main', 'house', '(', 'open', 'to', 'the', 'public', ')', 'and', 'the', 'former', 'kitchen', '(', 'closed', 'to', 'public', ',', 'used', 'as', 'staff', 'offices', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'jon', '', 'of', '``', 'the', 'new', 'york', 'times', \"''\", 'praised', 'her', 'stage', 'presence', ',', 'saying', ':', '``', 'she', '', 'and', '', 'as', 'easily', 'as', 'she', 'loses', 'herself', 'in', '', 'when', 'the', 'song', 'demands', 'it', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'segment', 'cost', '$', '2', '8', ',', '3', '1', '3', '.', '2', '2', '(', '1', '9', '1', '5', '', ')', ',', 'with', 'the', 'state', 'giving', 'in', '$', '1', '8', ',', '4', '0', '2', '.', '9', '4', 'in', 'funds', 'for', 'the', 'project', '.', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'in', '2', '0', '1', '6', 'gates', 'changed', 'this', 'estimate', 'to', 'some', 'time', 'within', 'the', 'following', 'two', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'died', 'on', 'february', '6', ',', '2', '0', '0', '9', ',', 'aged', '7', '4', ',', 'and', 'was', 'buried', 'in', 'montreal', 'at', 'the', 'baron', 'de', '', 'cemetery', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'despite', 'the', 'difference', 'in', 'faith', ',', 'where', 'the', 'question', 'has', '', 'of', 'common', '', 'honour', ',', 'there', 'have', 'been', 'instances', 'where', 'both', 'muslim', 'and', 'hindu', '', 'have', 'united', 'together', 'against', 'threats', 'from', 'external', 'ethnic', 'groups', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'sixth', '', 'war', 'began', 'in', '1', '8', '0', '6', 'and', 'ended', 'in', 'may', '1', '8', '1', '2', ',', 'just', '1', '3', 'days', 'before', 'napoleon', \"'s\", 'invasion', 'of', 'russia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'then', 'uses', 'them', 'to', 'expose', 'himself', 'to', 'mystical', 'monkey', 'power', 'and', 'styles', 'himself', 'as', 'monkey', '', '(', 'a', '', 'of', '``', '', '', \"''\", ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '9', '3', '9', 'to', '1', '9', '4', '6', 'he', 'was', 'principal', 'comedian', 'of', 'the', '', '', 'opera', 'company', 'playing', 'the', 'comic', 'leads', 'in', 'gilbert', 'and', 'sullivan', \"'s\", '', 'operas', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '[', '[', 'wu', '', ']', ']', 'won', '', 'gold', 'in', '``', 'women', \"'s\", '', '3', 'm', '', \"''\", ',', 'becoming', 'the', 'only', 'chinese', 'athlete', 'to', 'win', 'three', 'gold', 'medals', 'in', 'a', 'single', 'event', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'principal', 'role', 'of', 'the', '', 'was', 'to', 'provide', 'a', 'mobile', '', 'during', 'the', 'advance', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'technique', 'allows', 'iast', 'to', 'combine', 'the', '', 'of', 'both', '', 'and', '', 'methods', 'as', 'well', 'as', 'providing', 'access', 'to', 'code', ',', '', 'traffic', ',', 'library', 'information', ',', '', 'connections', 'and', 'configuration', 'information', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'that', 'time', 'candidates', 'stood', 'in', 'state', 'and', 'federal', 'elections', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'club', 'de', '', '', '', 'is', 'a', '', 'football', 'club', ',', 'their', 'home', 'town', 'is', 'the', 'commune', 'of', '', ',', 'chile', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'status', 'remained', 'with', 'this', 'church', 'till', '1', '9', '3', '6', 'when', 'st.', 'francis', 'cathedral', 'was', 'built', 'in', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'kara', '', '(', 'born', 'november', '9', ',', '1', '9', '7', '5', ')', ',', 'best', 'known', 'as', 'kara', '', ',', 'is', 'a', 'boxing', 'and', '', 'trainer', ',', 'and', 'a', 'retired', 'canadian', 'boxer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'fort', 'was', 'abandoned', 'in', '1', '8', '4', '2', ',', 'after', 'the', 'end', 'of', 'the', 'war', ',', 'and', 'the', 'area', 'remained', '', '', 'until', 'the', '1', '8', '9', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'responded', 'with', '``', 'mrs', '', \"'s\", '', \"''\", ',', 'a', 'poem', 'about', 'violence', 'in', 'other', 'fiction', ',', 'and', 'the', 'point', 'of', 'it', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'programming', 'is', '', 'on', 'fm', 'translator', 'w', '2', '4', '9', '', '9', '7', '.', '7', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '5', '6', ',', 'alfred', 'marshall', 'opened', 'a', 'new', 'addition', 'to', 'his', 'existing', 'supermarket', ',', 'located', 'in', 'beverly', ',', 'massachusetts', ',', 'utilizing', 'funding', 'provided', 'by', 'two', 'business', 'partners', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'starred', 'as', 'the', 'title', 'character', 'in', 'the', 'melbourne', 'theatre', 'company', 'production', '``', 'poor', 'boy', \"''\", 'alongside', 'guy', '', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', '', 'state', 'that', 'they', 'are', 'not', '', 'more', 'healthy', 'than', 'modern', 'grains', ',', 'and', 'that', 'ancient', 'and', 'modern', 'grains', 'have', 'similar', 'health', 'benefits', 'when', 'eaten', 'as', 'whole', 'grains', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'hall', 'is', '', 'in', 'plan', 'and', 'is', 'built', 'over', 'three', '', 'and', 'is', 'situated', 'in', 'the', 'centre', 'of', 'the', 'north', 'end', 'of', 'the', 'small', 'estate', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'spring', 'he', 'won', 'the', '', 'stakes', 'and', 'the', '', 'stakes', 'over', 'one', 'and', 'a', 'half', 'miles', 'at', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', ')', 'is', 'a', '2', '0', '0', '1', 'indian', 'kannada', 'drama', 'film', 'directed', 'by', 't.', 's.', '', 'and', 'written', 'by', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'two', 'music', 'videos', 'were', 'shot', 'to', 'support', 'the', 'release', 'of', 'the', 'album', 'but', 'only', 'one', ',', '``', 'you', '&', 'amp', ';', 'i', \"''\", ',', 'was', 'broadcast', 'on', 'music', 'channels', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'was', 'accepted', 'on', '1', '2', 'july', '2', '0', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'transition', 'state', ',', 'the', 'fragment', 'coordinated', 'to', 'the', '', 'catalyst', 'develops', 'partial', '', 'character', 'due', 'to', 'the', '', 'of', 'the', 'oxygen', 'and', 'the', '', '', 'group', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'because', 'the', '', '', 'walls', 'of', '', 'do', 'not', '', 'with', 'pressure', 'normally', ',', 'the', 'blood', 'pressure', 'reading', 'is', '', 'higher', 'than', 'the', 'true', '', 'measurement', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'private', '', 'railway', ',', 'which', 'had', 'a', 'track', 'between', 'and', 'by', '1', '9', '2', '6', 'and', 'had', 'expanded', '', 'to', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'michael', '', 'studied', 'chemistry', 'at', 'the', 'university', 'of', 'bonn', ',', 'where', 'he', 'obtained', 'a', 'phd', 'in', 'the', 'field', 'of', 'physical', 'chemistry', 'in', '1', '9', '8', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'foghorn', 'leaves', 'he', 'walks', 'past', 'a', 'wooden', 'tower', 'with', 'a', 'sign', 'that', 'reads', '``', 'do', \"n't\", 'look', 'up', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'lower', 'house', 'assembly', '(', '``', '', \"''\", ')', 'has', '1', '0', '7', 'seats', ',', 'elected', 'for', 'a', 'four-year', 'term', ',', '9', '8', 'seats', 'are', 'from', 'party', 'lists', ',', '9', '-', 'from', 'assembly', 'of', 'people', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'assistant', 'editor', 'of', 'the', 'newspaper', '``', '', 'de', '', \"''\", ',', 'a', 'position', 'he', 'had', 'to', 'leave', 'after', 'the', 'democratic', 'revolution', 'in', '1', '9', '7', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'former', 'of', 'the', '', 'board', 'of', 'the', 'ukrainian', 'energy', 'company', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'batted', '.', '3', '3', '3', 'and', 'led', 'all', 'players', 'in', 'the', 'tournament', 'with', '5', 'home', 'runs', 'and', '1', '0', 'rbi', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'kerala', 'state', 'assembly', 'raised', 'its', 'voice', 'in', '', 'to', 'strongly', '', 'the', '', 'of', 't.', 'j.', 'joseph', ',', 'by', '', 'elements', 'on', 'the', 'following', 'day', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'today', ',', 'at', 'the', 'top', 'o', \"'\", 'the', 'world', 'area', ',', 'open', 'fields', 'contain', '', ',', '', ',', 'queen', 'anne', \"'s\", '', ',', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'parliament', 'started', 'working', 'under', '``', 'new', 'norms', \"''\", 'including', 'enhanced', 'hygiene', 'measures', ',', 'use', 'of', '', 'and', 'social', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'october', '3', '0', ',', '2', '0', '1', '4', 'the', 'telescope', 'ownership', 'was', 'transferred', 'to', 'the', 'university', 'of', 'hawaii', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '``', '', '', \"''\", 'reported', 'that', 'a', 'total', 'of', '4', '0', 'out', 'of', 'the', '9', '0', 'employees', 'were', 'affected', 'by', 'the', 'job', 'cuts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'two', '', 'have', 'won', 'the', 'wilson', 'defensive', 'player', 'of', 'the', 'year', 'award', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', 'convent', 'is', 'one', 'of', 'the', 'few', 'in', 'the', 'region', 'which', 'still', 'contains', 'an', 'operating', 'school', 'and', 'a', 'church', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'lived', 'at', '', 'park', 'on', 'the', 'crown', 'estate', 'to', 'the', 'south', 'of', 'windsor', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'experimental', 'electric', 'version', 'of', 'the', '', 'was', 'produced', '(', 'called', 'the', '', ')', ',', 'utilizing', '', '', 'batteries', ',', 'and', 'set', 'a', 'record', 'when', 'it', 'covered', 'in', '2', '4', 'hours', 'in', 'december', '1', '9', '9', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'throughout', 'her', 'artistic', 'career', 'her', 'work', 'was', 'featured', 'in', 'the', '', 'show', 'at', '1', '0', '0', ',', 'the', 'whitney', 'museum', ',', 'and', 'others', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'adaptation', 'by', '', '', 'was', '', 'in', '', \"'s\", '``', 'weekly', '', 'sunday', \"''\", 'from', '1', '9', '7', '2', 'to', '1', '9', '7', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'e.', '', '(', 'born', 'october', '1', ',', '1', '9', '6', '5', ')', 'is', 'an', 'author', ',', '', 'and', 'quilt', 'historian', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'narrative', '', 'books', 'include', '``', 'the', 'last', 'of', 'the', 'tribe', \"''\", '(', '2', '0', '1', '0', ')', ',', '``', 'between', 'man', 'and', 'beast', \"''\", '(', '2', '0', '1', '3', ')', ',', 'and', '``', 'a', 'brotherhood', 'of', '', \"''\", '(', '2', '0', '1', '8', ')', '.', '', '', '', '']\n", "['', 'his', 'father', 'was', 'new', 'south', 'wales', 'labor', 'mp', 'bill', '', ',', 'who', 'represented', 'the', 'seats', 'of', '', 'and', '', 'in', 'state', 'parliament', 'from', '1', '9', '7', '8', 'to', '1', '9', '8', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'among', 'the', 'newly', 'confirmed', 'cases', ',', '5', 'were', 'in', '', ',', '4', 'in', '', ',', '3', 'in', '', ',', '2', 'in', '', ',', '2', 'in', '', ',', '1', 'in', '', ',', '1', 'in', '', ',', '1', 'in', '', ',', 'and', '1', 'in', '', '.', '', '', '', '', '', '']\n", "['', 'in', 'healthy', 'humans', '(', 'and', 'many', 'other', 'animals', ')', ',', 'the', 'process', 'of', 'urination', 'is', 'under', 'voluntary', 'control', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'youth', 'blamed', 'the', '', 'on', 'the', 'inability', 'of', 'their', 'government', 'to', 'create', 'jobs', 'in', 'their', 'country', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'fields', 'cover', 'an', 'estimated', '7', '5', '0', '0', 'square', 'kilometers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'school', 'continued', 'to', 'operate', 'for', 'another', 'four', 'years', ',', 'closing', 'in', '1', '9', '7', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'started', 'his', 'career', 'studying', 'early', 'neurological', 'aspects', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', 'the', 'census', 'of', '2', '0', '1', '0', ',', 'there', 'were', '1', ',', '0', '9', '8', 'people', ',', '3', '9', '9', 'households', ',', 'and', '2', '7', '1', 'families', 'living', 'in', 'the', 'city', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'canada', 'recognized', 'the', 'people', \"'s\", 'republic', 'of', 'china', 'as', 'the', 'sole', 'legitimate', 'government', 'of', 'china', 'on', 'october', '1', '3', ',', '1', '9', '7', '0', ',', 'and', 'a', 'canadian', 'embassy', 'was', 'opened', 'in', 'beijing', 'on', 'june', '1', '0', ',', '1', '9', '7', '1', '.', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '0', ',', 'for', 'example', ',', 'she', 'successfully', 'stopped', 'the', 'lee', 'administration', \"'s\", 'attempt', 'to', '', 'the', 'plan', 'to', 'establish', '', 'city', ',', 'a', 'new', 'national', 'center', 'of', 'administration', ',', 'arguing', 'that', 'the', 'plan', 'was', 'a', 'promise', 'made', 'to', 'the', 'people', '.', '', '', '', '', '']\n", "['', 'in', '``', '', '', \"''\", ',', '', 'argues', 'that', 'npf', 'has', 'also', 'become', 'active', 'in', 'western', 'canada', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'initially', 'assigned', 'to', 'the', '``', 'vii', '', \"''\", 'front', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'appointed', 'president', 'of', '', 'naval', 'academy', 'in', 'october', '1', '9', '9', '7', ',', 'and', 'attained', 'the', 'rank', 'of', 'rear', 'admiral', 'in', 'july', '1', '9', '9', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'subjects', 'include', 'the', 'journey', 'of', 'the', '', ',', 'where', 'they', 'and', 'perhaps', 'their', '', 'are', 'the', 'only', 'figures', ',', 'usually', 'shown', 'following', 'the', 'star', 'of', '', ',', 'and', 'there', 'are', 'relatively', 'uncommon', 'scenes', 'of', 'their', 'meeting', 'with', '', 'and', 'the', '``', 'dream', 'of', 'the', '', \"''\", '.', '', '']\n", "['', 'shifting', 'volumes', 'of', 'sand', 'in', 'surf', 'city', 'exposed', 'the', 'structure', 'of', 'the', 'wrecked', '', '``', 'william', 'h.', '', \"''\", ',', 'which', 'grounded', 'in', '1', '9', '1', '9', 'and', 'is', 'occasionally', 'visible', 'along', 'the', 'beach', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'going', 'to', '', '', 'could', 'be', 'done', 'in', 'one', '', 'step', 'or', 'in', 'gradual', 'improvements', 'like', 'by', 'reducing', 'the', 'cockpit', 'crew', 'for', 'long', '', 'missions', 'or', 'allowing', 'single', 'pilot', 'cargo', 'aircraft', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'competed', 'in', 'two', 'events', 'at', 'the', '1', '9', '8', '4', 'winter', 'olympics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'justin', ',', 'ptolemy', '', 'did', 'the', '', 'personally', ',', 'on', 'the', 'night', 'of', 'his', 'wedding', 'to', '', 'in', '1', '4', '5', 'bc', ',', 'and', 'the', 'boy', 'died', 'in', 'his', 'mother', \"'s\", 'arms', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '1', ',', 'the', 'harbor', 'freeway', 'between', '', 'street', 'and', 'interstate', '1', '0', 'became', 'interstate', '1', '1', '0', ',', 'replacing', 'the', 'sr', '1', '1', 'designation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'by', 'their', 'capacity', 'to', 'carry', '', 'of', '', 'fungi', 'and', '', '', 'bacteria', 'on', 'their', '', ',', 'soil', '', 'play', 'a', 'positive', 'role', 'in', 'the', 'establishment', 'of', '', '', 'and', 'thus', 'are', '', 'to', 'agriculture', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'first', 'american', 'international', 'bank', '(', 'formerly', 'hong', 'kong', 'bank', ')', 'and', '', 'federal', '', 'bank', 'on', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'unit', 'received', 'a', 'distinguished', 'unit', 'citation', 'and', 'a', 'french', 'citation', 'for', 'these', 'missions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'word', 'lists', 'include', 'only', 'word', 'roots', ',', 'which', 'in', 'practice', 'are', 'extended', 'with', 'the', 'defined', 'set', 'of', '', 'and', 'the', 'full', 'set', 'of', 'forms', 'allowed', 'for', 'any', 'available', 'word', '(', '', ',', '', ',', 'or', 'the', 'limited', 'set', 'of', 'verbs', ')', '.', '', '', '', '', '', '']\n", "['', 'the', 'preferred', 'treatment', 'of', '', 'grade', '1', 'and', '2', 'avms', 'in', 'young', ',', 'healthy', 'patients', 'is', 'surgical', '', 'due', 'to', 'the', 'relatively', 'small', 'risk', 'of', 'neurological', 'damage', 'compared', 'to', 'the', 'high', 'lifetime', 'risk', 'of', 'hemorrhage', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'are', 'also', 'well', 'represented', 'in', 'the', '', 'region', 'with', 'the', 'molecular', '', 'research', 'center', '', ',', 'the', '', 'center', ',', 'the', 'regional', 'center', '', 'and', 'many', '', 'of', 'the', 'global', '', 'cluster', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'album', '', 'six', 'singles', 'but', 'only', 'three', 'of', 'them', 'were', 'international', 'hits', ':', '``', '', 'a', '', '', \"''\", ',', '``', 'feel', 'the', 'rhythm', \"''\", ',', 'and', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', 'theatre', 'produces', 'community', 'theater', 'and', 'hosts', 'educational', 'workshops', 'for', '', 'actors', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'inland', 'from', 'the', '', 'coastal', 'plain', ',', 'the', 'central', '', 'region', 'occupies', 'the', 'area', 'between', 'the', 'two', '', 'of', 'the', 'folded', 'mountains', ',', 'extending', 'east', 'to', 'the', 'point', 'where', 'the', 'two', 'ranges', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'john', '', ',', 'who', 'had', 'represented', 'churchill', 'and', '', 'from', 'the', 'beginning', ',', 'argued', 'their', 'case', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'speaking', 'of', 'nietzsche', ',', 'he', 'says', ':', '``', 'his', 'personal', '', 'initiate', 'him', 'into', 'those', 'of', 'the', 'criminal', '...', 'in', 'general', 'all', 'creative', '', ',', 'all', 'artist', 'nature', 'in', 'the', '', 'sense', 'of', 'the', 'word', ',', 'does', 'the', 'same', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'one', 'of', 'the', 'last', '', '', 'on', 'the', 'bbc', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'electoral', 'ward', 'belongs', 'to', 'the', 'borough', 'council', 'of', 'king', \"'s\", 'lynn', 'and', 'west', 'norfolk', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'made', 'with', 'isolation', 'of', '``', '', '', \"''\", 'in', 'a', 'normally', '', 'site', '(', 'blood', ',', '', ',', 'or', '', 'fluid', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', 'a', 'modern', 'perspective', ',', 'most', 'spark', '', 'could', 'be', 'regarded', 'as', '', 'coils', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'the', 'greatest', 'love', \"''\", '', 'the', '', 'drama', 'awards', ',', 'including', 'a', 'top', 'excellence', 'award', 'for', 'gong', '(', 'her', 'third', 'consecutive', ',', 'after', '``', '', 'you', \"''\", 'and', '``', '', \"''\", ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'time', 'there', 'were', 'no', 'warning', 'sirens', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'settlement', 'in', 'the', 'administrative', 'district', 'of', 'gmina', '', ',', 'within', '', 'county', ',', 'greater', 'poland', 'voivodeship', ',', 'in', '', 'poland', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'season', '4', 'he', 'beat', 'big', 'bad', 'billy', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'focuses', 'deeply', 'on', 'the', 'subject', 'of', 'cerebral', '', ',', 'quality', 'of', 'life', ',', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'end', 'of', 'the', 'season', ',', 'the', 'car', 'recorded', 'a', 'best', 'finish', 'of', 'fifth', 'place', 'at', 'the', ',', 'and', 'had', 'scored', 'just', 'twenty-seven', 'points', ',', 'leaving', '', 'ninth', 'in', 'the', 'world', '', \"'\", 'championship', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'presents', 'the', '', 'in', 'such', 'a', 'way', 'as', 'to', 'produce', 'a', 'greater', 'action', 'than', 'the', 'simple', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'also', 'spend', 'more', 'time', 'in', 'social', 'conversations', 'than', 'boys', 'and', 'are', 'more', 'likely', 'to', '', 'among', 'their', 'peers', 'than', 'boys', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'father', 'william', 'harvey', 'was', 'a', 'member', 'of', 'parliament', 'for', 'essex', ',', 'but', 'died', 'when', 'harvey', 'was', 'only', 'five', 'years', 'old', ',', 'in', '1', '7', '6', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'a', '', 'brick', 'structure', ',', 'roughly', ',', 'with', 'a', 'flat', 'roof', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'campaign', 'mode', ',', 'the', 'player', '', 'gold', 'toward', 'researching', 'new', 'grades', 'of', 'units', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'composed', 'for', 'the', 'piano', ',', 'mixed', 'chamber', '', ',', 'operas', 'including', '``', 'el', '', 'de', '', \"''\", 'which', 'won', 'a', 'french', 'radio', 'award', 'in', '1', '9', '5', '8', ',', 'and', '', 'works', 'including', 'four', 'piano', '', 'and', 'a', 'violin', '', '.', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'variously', '', 'to', 'a', '1', '6', '4', '3', 'christmas', 'day', '', 'between', '', 'in', 'the', 'english', 'civil', 'war', ',', 'local', '', 'tree', '', ',', 'or', 'the', 'christmas', 'family', ',', 'which', 'had', 'local', 'connections', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'anglican', 'diocese', 'of', '', 'is', 'one', 'of', '1', '3', 'within', 'the', 'anglican', 'province', 'of', '', ',', 'itself', 'one', 'of', '1', '4', 'provinces', 'within', 'the', 'church', 'of', 'nigeria', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'world', 'war', 'ii', 'came', 'to', 'an', 'end', 'in', '1', '9', '4', '5', ',', 'the', 'soviet', 'union', 'incorporated', 'the', 'region', 'into', 'the', 'lithuanian', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'these', 'wars', ',', 'battles', 'were', 'fought', 'mostly', 'in', 'the', '', 'tribal', 'areas', 'of', '', 'and', 'adjacent', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'overall', 'height', 'of', 'the', 'spacecraft', 'was', '3', '.', '6', 'm', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'historic', 'district', 'is', 'a', 'national', 'historic', 'landmark', 'district', 'and', 'is', 'listed', 'on', 'the', 'national', 'register', 'of', 'historic', 'places', 'as', 'the', 'old', 'san', 'juan', 'historic', 'district', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'ann', 'goodrich', 'was', 'born', 'and', 'brought', 'up', 'in', 'dagenham', ',', 'essex', ',', 'england', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'their', 'coat', 'color', 'is', 'always', '', ',', 'ranging', 'from', 'a', 'pale', 'honey', 'color', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'john', 'andrew', 'returned', 'by', 'the', 'end', 'of', 'that', 'year', 'to', 'start', '``', 'the', '', '', \"''\", 'newspaper', 'at', 'hay', 'in', 'opposition', 'to', '``', 'the', 'hay', 'standard', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'this', 'might', 'be', 'it', ',', '', \"''\", 'is', '', \"'s\", 'first', 'release', 'since', 'this', 'statement', ',', 'and', 'is', 'only', 'available', 'on', 'vinyl', ',', 'directly', 'from', 'anderson', ',', 'at', 'his', 'shows', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'vladimir', '', \"'s\", 'government', 'is', 'also', 'using', '', 'policies', 'by', 'giving', '', 'and', 'promoting', 'more', 'children', 'in', 'families', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'meanwhile', ',', 'the', 'government', 'of', 'punjab', 'announced', 'a', 'rs', '1', '0', 'billion', 'relief', 'package', 'for', 'financial', 'support', 'of', '2', '.', '5', 'million', 'families', 'of', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'counties', 'were', 'established', 'in', 'new', 'york', 'state', 'in', '1', '6', '8', '3', ',', 'the', 'present', 'lewis', 'county', 'was', 'part', 'of', 'albany', 'county', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '6', '', 'and', 'his', 'wife', ',', '', ',', 'established', 'the', 'brian', 'p.', '', 'civic', 'association', ',', 'through', 'which', 'they', '', 'residents', 'with', 'issues', 'such', 'as', 'housing', ',', 'employment', 'and', 'immigration', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'received', 'seven', '', 'nominations', '(', 'including', 'a', 'best', 'director', 'nomination', 'for', 'cardiff', ')', 'and', '', 'francis', 'won', 'for', 'best', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'like', 'the', 'county', 'in', 'which', 'it', 'is', 'located', ',', '', 'was', 'named', 'for', 'governor', 'isaac', '', 'of', 'kentucky', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'found', 'in', '', '(', '', 'province', ',', '', 'province', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'speeches', 'were', 'given', 'by', 'mayor', 'george', 'w.', '', ',', 'lt', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'imperial', 'japanese', 'army', 'uniforms', '', 'to', 'reflect', 'the', 'uniforms', 'of', 'those', 'countries', 'who', 'were', 'the', 'principal', 'advisors', 'to', 'the', 'imperial', 'japanese', 'army', 'at', 'the', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', '1', '9', '1', '7', 'he', 'may', 'have', 'moved', 'to', '', ',', 'arizona', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'he', 'worked', 'in', 'corporate', 'banking', 'with', 'an', 'emphasis', 'by', 'choice', 'on', 'matters', 'involving', 'international', 'scope', ';', 'his', 'assignments', 'took', 'him', 'to', 'latin', 'america', ',', 'the', 'middle', 'east', ',', 'and', 'asia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'june', '1', '9', '4', '1', ',', 'just', 'before', 'the', 'entry', 'of', 'the', 'german', 'troops', ',', 'he', 'evacuated', 'from', 'lviv', 'together', 'with', 'the', 'soviet', 'troops', 'deep', 'into', 'russia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'started', 'in', 'cell', 'block', '#', '4', 'and', 'continued', 'through', 'the', 'prison', 'hall', 'from', 'cell', 'to', 'cell', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'hill', 'participated', 'in', 'a', '', 'race', 'in', '1', '9', '7', '1', ',', 'he', 'had', 'an', 'opening', 'lap', 'at', ',', 'which', 'was', 'faster', 'than', 'factory', 'rider', 'gary', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'present', 'architectural', 'state', 'of', 'the', 'building', 'is', 'the', 'result', 'of', 'a', 'restoration', 'work', 'carried', 'out', 'in', 'the', '1', '9', '9', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'antennae', ',', 'head', ',', 'thorax', 'and', '', '', 'with', 'the', 'wings', 'above', ',', '', 'below', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", ',', 'the', 'album', \"'s\", 'fourth', 'single', ',', 'was', 'dedicated', 'to', '', ',', 'the', 'mother', 'of', 'albarn', \"'s\", '', 'partner', '', '', ',', 'who', 'died', 'while', 'albarn', 'was', 'writing', 'the', 'song', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', '1', '0', '0', 'was', 'incorporated', 'into', 'the', 'fleet', 'in', '2', '0', '1', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'week', 'after', 'becoming', '', ',', 'the', '', 'of', '', '', 'passed', 'over', 'new', 'zealand', ',', 'causing', 'flash', 'flooding', 'over', 'many', 'areas', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'mathematics', ',', '', \"'s\", '', 'h', 'is', 'one', 'of', 'the', 'most', 'famous', 'open', 'problems', 'in', 'the', 'topic', 'of', 'number', 'theory', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'unlike', 'hydroponics', ',', 'which', 'uses', 'a', 'liquid', '', 'solution', 'as', 'a', 'growing', 'medium', 'and', 'essential', '', 'to', '', 'plant', 'growth', ',', 'or', '', ',', 'which', 'uses', 'water', 'and', 'fish', 'waste', ',', '', 'is', 'conducted', 'without', 'a', 'growing', 'medium', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '7', 'pacific', 'gas', 'and', 'electric', 'provided', 'a', 'simple', 'procedure', 'for', '', 'wanting', 'to', 'install', 'electric', 'vehicle', '', 'connections', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'zhang', 'served', 'as', 'chief', 'of', 'staff', 'of', 'the', '', 'naval', 'base', 'from', '1', '9', '9', '4', 'to', '1', '9', '9', '6', ',', 'and', 'deputy', 'commander', 'from', '1', '9', '9', '6', 'to', '1', '9', '9', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'church', 'was', 'comparable', 'with', 'the', 'largest', 'churches', 'in', 'upper', 'hungary', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'supply', 'line', 'receives', 'air', 'from', 'the', 'prime', 'mover', 'park', 'brake', 'air', 'tank', 'via', 'a', 'park', 'brake', 'relay', 'valve', 'and', 'the', 'control', 'line', 'is', '', 'via', 'the', 'trailer', 'brake', 'relay', 'valve', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'then', 'assigned', 'to', 'the', 'office', 'of', 'the', 'chief', 'of', 'naval', 'operations', 'as', 'special', 'assistant', 'to', 'the', 'director', 'of', 'navy', 'program', 'planning', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'adonis', 'is', 'best', 'known', 'for', 'his', 'early', 'chicago', 'house', 'tracks', '``', 'no', 'way', 'back', \"''\", 'and', '``', 'we', '', '', 'down', 'the', 'house', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'critics', 'have', 'noted', 'an', 'underlying', 'tension', 'in', 'the', 'poem', 'between', 'thought', 'and', 'feeling', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', 'river', '', 'with', 'a', 'spring', 'in', 'the', 'community', 'of', 'nova', '', ',', 'at', '', '4', '0', 'of', 'the', 'br-', '1', '7', '4', 'highway', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', '', 'has', 'a', 'similar', 'body', 'shape', 'to', 'the', 'skye', '', ',', 'but', 'the', 'skye', \"'s\", 'coat', 'is', '', 'and', 'longer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '', 'century', ',', 'there', 'is', 'one', 'mining', '', 'in', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'was', 'a', '1', '0', 'volume', 'work', 'on', 'the', 'butterflies', 'of', 'the', 'indian', 'region', 'that', 'was', 'begun', 'in', '1', '8', '9', '0', 'and', 'completed', 'in', '1', '9', '1', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bill', 'lee', 'is', 'the', 'designer', 'of', 'noted', 'ocean', 'racing', '', ',', 'and', 'one', 'of', 'the', '', 'of', 'the', 'santa', 'cruz', 'school', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', ',', 'lowe', 'began', 'practicing', 'medicine', 'in', 'the', 'relatively', 'new', ',', 'small', 'frontier', 'village', 'of', '', ',', 'iowa', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '', 'has', 'four', 'bonus', 'tracks', ',', 'including', 'the', 'extended', 'version', 'of', 'the', 'single', '``', 'zip', 'a', '', '', \"''\", 'and', 'the', 'standalone', 'top', '5', '0', 'hit', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '9', ',', 'it', 'imposed', 'a', '2', 'percent', 'tax', 'on', 'residential', 'real', 'estate', 'sales', 'in', 'excess', 'of', '$', '2', '5', '0', ',', '0', '0', '0', 'for', 'the', 'purpose', 'of', 'buying', 'open', 'space', 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'events', 'and', 'the', 'constitution', 'of', '1', '8', '1', '4', 'have', 'a', 'central', 'place', 'in', 'norwegian', 'identity', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mario', '', 'of', 'the', '``', 'dallas', 'morning', 'news', \"''\", 'was', 'less', 'positive', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'puerto', 'rico', 'highway', '1', '5', '1', '(', '', '1', '5', '1', ')', 'is', 'a', 'rural', 'road', 'located', 'in', 'the', 'municipality', 'of', '', ',', 'puerto', 'rico', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '9', '9', '8', 'to', '2', '0', '0', '2', ',', 'she', 'was', 'a', 'member', 'of', 'the', 'national', 'transitional', 'council', '(', '', ')', ',', 'the', 'interim', 'parliament', 'that', 'existed', 'during', 'the', 'transitional', 'period', 'which', 'followed', 'the', '1', '9', '9', '7', 'civil', 'war', '.', '', '', '', '', '', '', '']\n", "['', '', 'society', '', 'to', 'view', 'homosexuality', ',', 'transgender', 'and', '', 'people', '', ',', 'though', 'attitudes', 'are', 'slowly', 'changing', 'and', 'becoming', 'more', 'accepting', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'parish', 'church', ',', 'dedicated', 'to', 'saint', 'anne', ',', 'stands', 'on', 'a', 'hill', 'above', 'the', 'settlement', 'and', 'is', 'an', 'imposing', '', '', 'building', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'the', 'nuclear', 'power', 'debate', 'continues', ',', 'greenhouse', 'gas', 'emissions', 'are', 'increasing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'government', 'simulation', 'game', ',', 'like', 'its', 'predecessor', ',', 'puts', 'the', 'player', 'in', 'the', 'role', 'of', 'any', 'nation', \"'s\", 'head', 'of', 'state', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'view', 'of', 'self', ',', 'however', ',', 'involves', 'people', \"'s\", 'perception', 'of', 'themselves', 'as', 'members', 'of', 'a', 'group', 'or', 'in', 'a', 'particular', 'situation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'unlike', 'his', 'younger', 'brother', ',', 'who', '', '2', '8', '8', 'home', 'runs', 'in', 'his', '1', '3', '-year', 'mlb', 'career', ',', 'roy', 'was', '', 'a', 'contact', ',', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'before', 'he', 'resigned', 'as', 'archbishop', 'on', 'may', '2', '4', ',', '1', '9', '8', '0', ',', 'after', 'a', 'period', 'of', '', 'years', ',', 'the', '', '', 'participated', 'in', 'the', '', 'of', 'august', 'and', 'october', '1', '9', '7', '8', ',', 'which', 'selected', '', 'john', 'paul', 'i', 'and', 'john', 'paul', 'ii', 'respectively', '.']\n", "['', 'just', 'over', 'a', 'week', 'later', ',', 'on', 'february', '1', '8', ',', '2', '0', '0', '9', ',', 'the', 'station', 'applied', 'to', '', 'again', ',', 'this', 'time', 'to', 'valley', 'grande', ',', 'alabama', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', '', 'is', 'used', 'on', 'a', 'matrix', 'of', 'measured', ',', 'real', 'data', ',', 'the', 'inverse', 'may', 'be', 'less', 'valid', 'when', 'all', '', 'are', 'used', '', 'in', 'the', 'form', 'above', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'moved', 'to', 'malden', 'township', 'and', 'then', 'in', 'colchester', 'township', 'with', 'his', 'family', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'melbourne', '', 'school', 'was', 'victoria', \"'s\", 'first', 'state', 'secondary', 'school', ',', 'which', 'was', 'established', 'in', '1', '9', '0', '5', 'from', 'the', 'initiative', 'of', 'director', 'of', 'education', ',', 'frank', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'july', '7', ',', '1', '9', '4', '6', ',', 'they', 'married', 'in', 'plains', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'some', 'rare', '', '', '', 'such', 'as', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'leonard', '', '(', 'born', 'june', '2', '8', ',', '1', '9', '4', '0', ')', 'is', 'a', 'former', 'canadian', 'football', 'coach', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'in', '', '', 'were', 'also', 'the', 'source', 'of', 'the', 'name', 'of', 'pit', 'castle', '(', ')', ',', 'also', 'known', 'as', 'the', '', 'manor', '(', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'that', 'same', 'day', ',', 'it', 'was', 'reported', 'that', 'in', '', 'oblast', ',', 'more', 'than', '7', '0', 'patients', 'and', 'employees', 'at', 'a', '', 'hospital', 'tested', 'positive', 'for', 'coronavirus', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'main', 'character', 'is', 'shawn', '', ',', 'a', '', 'who', 'has', 'cerebral', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'stadium', 'was', 'liberated', 'on', '2', '0', 'november', '2', '0', '2', '0', 'as', 'a', 'result', 'of', 'the', '2', '0', '2', '0', '', 'war', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'square', 'is', 'surrounded', 'by', 'important', 'buildings', 'such', 'as', 'the', 'city', 'hall', 'in', 'the', '', 'style', ',', 'the', '', 'house', ',', 'the', '', 'house', 'and', 'the', '', 'palace', 'with', 'its', 'decorated', 'façade', 'and', 'an', 'elegant', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'independence', 'of', '``', 'ya', \"''\", 'and', '``', 'k', \"''\", 'in', 'this', 'dialect', 'is', 'shown', 'by', 'the', 'fact', 'that', 'they', 'may', 'be', 'separated', 'by', '', ',', 'as', 'in', '``', '', '', \"''\", '(', '``', 'you', 'already', 'know', 'that', \"''\", ':', '', '``', '', \"''\", '``', 'already', \"''\", ')', '.', '']\n", "['', 'it', 'is', 'the', '', 'version', 'of', 'the', 'name', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'because', 'the', 'south', '', 'the', 'north', \"'s\", 'industrial', 'capacity', ',', 'the', '6', '-pounders', 'were', 'employed', 'by', 'confederate', 'armies', 'for', 'a', 'longer', 'period', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'example', ',', 'mercury', 'removal', 'by', 'wet', 'scrubbers', 'is', 'considered', '', 'and', 'may', 'be', 'less', 'than', '5', '0', '%', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'a', 'further', 'change', 'in', 'operational', 'requirements', ',', 'with', 'the', 'addition', 'of', 'a', '', 'and', 'extra', 'crew', 'member', ',', 'the', 'type', 'entered', 'production', 'in', '1', '9', '5', '3', 'and', 'initial', '', 'were', 'made', 'of', 'the', 'variant', 'designated', 'as', '.', '1', 'at', '', 'ford', 'in', 'april', '1', '9', '5', '4', '.']\n", "['', 'at', 'the', 'battle', 'of', '', 'on', '1', '7', 'september', '1', '8', '6', '2', ',', 'there', 'were', 'at', 'least', '4', '1', '6', '-pounder', 'guns', 'still', 'being', 'employed', 'in', 'confederate', 'batteries', ',', 'while', 'the', 'union', 'army', 'of', 'the', '', 'had', 'no', '6', '-pounders', '.', '', '', '', '', '', '', '', '']\n", "['', 'it', 'appeared', 'on', 'platforms', 'including', 'java', ',', '', ',', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'three', 'plays', 'later', ',', '', '', 'into', 'the', 'end', 'zone', 'up', 'the', 'middle', 'for', 'his', 'second', '', 'of', 'the', 'quarter', ',', 'giving', 'las', '', 'a', '1', '7', '-', '1', '4', 'lead', 'with', '5', ':', '5', '8', 'left', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'unlike', 'its', 'british', ',', 'canadian', 'and', 'hong', 'kong', 'independent', '', ',', 'for', 'most', 'of', 'its', 'existence', '', 'did', 'not', 'have', 'a', 'network', 'of', '', 'scheduled', 'routes', '', 'did', 'it', 'compete', 'on', 'any', 'of', 'its', 'scheduled', 'routes', 'with', 'air', 'france', ',', 'the', 'primary', 'french', 'flag', 'carrier', 'at', 'the', 'time', '.', '']\n", "['', 'it', 'is', 'located', 'in', 'the', '', '', 'park', 'in', 'malaysia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'general', 'assembly', 'meets', 'at', 'the', 'rhode', 'island', 'state', 'house', 'on', 'the', 'border', 'of', 'downtown', 'and', 'smith', 'hill', 'in', 'providence', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '3', '3', ',', 'the', 'company', 'operated', '1', '5', '4', 'buses', 'on', 'services', 'throughout', '', ',', 'with', 'some', 'services', '', 'just', 'over', 'adjacent', 'county', 'boundaries', ',', 'plus', 'special', 'services', 'to', '', 'places', 'and', '', 'zoo', 'during', 'the', 'summer', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '8', ',', '', 'power', 'plant', 'was', 'equipped', 'with', 'filters', ',', 'so', 'now', 'more', 'than', '9', '5', '%', 'of', 'the', '', '', 'dioxide', 'are', '', 'out', 'from', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'farruko', \"'s\", 'third', 'album', '``', '', '', ':', 'farruko', 'edition', \"''\", ',', 'was', 'a', 'better', 'album', 'with', '', '', 'collaborating', 'with', 'farruko', 'once', 'again', ',', 'j', '', 'also', 'featured', 'on', 'the', 'album', 'along', 'with', '', ',', 'de', 'la', '', ',', '', ',', 'and', '', '&', 'amp', ';', '', '.', '']\n", "['', 'although', 'canadian', 'pilots', 'practised', 'air', 'combat', 'tactics', ',', '', '9', '', 'missiles', 'were', 'never', 'carried', '', 'by', 'canadian', '', '(', 'however', ',', 'examples', 'provided', 'to', 'other', 'air', 'forces', ',', 'such', 'as', 'norway', 'and', 'denmark', ',', 'did', 'carry', '', 'on', 'a', '', '', 'station', 'and', 'the', '', 'rails', ')', '.', '']\n", "['', 'the', 'aircraft', 'was', 'designed', 'to', 'comply', 'with', 'the', 'us', 'far', '1', '0', '3', '', 'vehicles', 'rules', ',', 'including', 'the', 'category', \"'s\", 'maximum', 'empty', 'weight', 'of', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'barry', 'allen', 'travels', 'to', 'star', 'city', 'to', 'investigate', 'a', '', 'crime', 'in', 'hopes', 'that', 'it', 'is', 'related', 'to', 'his', 'mother', \"'s\", 'murder', 'and', 'to', 'meet', 'his', '', 'idol', ',', 'the', '', '(', 'oliver', 'queen', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '0', ',', 'von', '', 'was', 'the', 'first', '', 'to', 'the', '``', '', '', '', \"''\", ',', 'which', 'opposed', 'the', 'berlin', 'declaration', 'of', 'the', 'christian', 'democratic', 'union', \"'s\", 'leadership', 'to', 'change', 'economic', 'positions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'example', ',', 'formula_', '1', '1', '5', 'equals', 'formula_', '3', '3', 'and', 'also', 'equals', 'formula_', '1', '1', '7', ',', 'which', '', 'to', 'formula_', '3', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'his', '7', '3', '-day', ',', 'journey', ',', '', 'was', 'accompanied', 'by', 'a', 'sailboat', 'that', 'had', 'an', 'electromagnetic', 'field', 'for', 'to', 'ward', 'off', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'united', 'states', 'v.', '', ',', '4', '0', '1', 'f.', '2', 'd', '1', '1', '8', '(', '5', 'th', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'another', 'three', 'of', 'the', '', 'prominent', 'persons', 'who', 'had', 'voted', 'against', '', ',', 'although', 'not', 'captured', ',', 'were', 'also', 'tried', 'and', 'sentenced', 'to', 'death', '``', 'in', '', \"''\", ',', 'among', 'them', 'dino', '', ',', 'who', 'had', 'been', 'responsible', 'for', 'the', 'agenda', 'of', 'the', 'meeting', 'of', 'july', '2', '5', '.', '']\n", "['', 'so', 'then', '', 'started', 'to', 'be', 'used', 'regularly', 'during', 'surgical', 'operations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'play', 'was', 'first', 'produced', 'at', 'the', 'st', 'james', \"'s\", 'theatre', 'on', '', \"'s\", 'day', '1', '8', '9', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'production', 'of', '``', '', '', \"''\", 'at', 'the', '', 'freud', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'simone', 'then', 'found', 'out', 'she', 'was', '', 'again', ',', 'but', 'did', 'not', 'know', 'whether', 'harrison', 'or', 'tom', 'was', 'the', 'father', ',', 'and', 'she', 'had', 'not', 'even', 'told', 'tom', 'about', 'her', 'affair', 'with', 'harrison', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'were', '', 'in', '', 'to', 'serve', 'as', 'marines', ',', 'and', 'political', 'prisoners', 'were', 'sometimes', 'exiled', 'there', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'game', 'ends', 'as', 'they', 'emerge', 'from', 'under', 'the', 'water', 'in', 'a', 'vast', 'ocean', 'under', 'an', 'orange', 'sky', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'track', 'was', 'sung', 'by', 'mohammed', '', 'fourth', 'track', 'of', 'the', 'album', ',', '``', '', '', \"''\", 'was', 'released', 'on', '2', '6', 'may', '2', '0', '1', '6', ',', 'and', 'received', 'an', '', 'response', 'upon', 'its', 'release', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'portsmouth', 'mayor', '', '', '', 'the', 'new', 'brewery', 'with', 'sixteen', 'ounces', 'of', '', 'pale', '', ',', 'the', 'brewery', \"'s\", 'initial', 'offering', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'a', 'professor', 'of', 'old', 'norse', 'language', 'and', 'literature', 'at', 'the', 'university', 'of', 'bonn', ',', 'where', 'he', 'also', 'lectures', 'in', 'germanic', 'studies', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'once', 'worked', 'as', 'a', '', ',', 'and', 'also', 'as', 'a', 'disc', '', 'on', 'washington', 'd.c.', 'radio', 'stations', 'including', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'summer', 'of', '1', '8', '7', '2', '', ',', 'in', 'company', 'with', 'joseph', '', ',', 'visited', 'the', 'sacred', 'city', 'of', '', '', ',', 'a', 'famous', 'place', 'of', 'mongol', 'pilgrimage', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'station', 'originally', 'operated', 'on', 'two', 'a.m.', '', '(', '9', '9', '0', 'khz', '.', '3', '0', '3', '', 'and', '9', '1', '8', 'khz', '.', '3', '2', '7', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'one', 'point', ',', 'the', 'song', \"'s\", 'name', 'was', '``', 'i', 'ca', \"n't\", 'go', 'for', '', 'jean', \"''\", ',', 'as', 'a', 'reference', 'to', 'the', 'aforementioned', 'michael', 'jackson', 'song', 'and', 'hall', 'and', '', \"'\", 'song', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', '2', '0', '0', '6', 'census', ',', 'its', 'population', 'was', '6', '5', '9', ',', 'in', '1', '5', '6', 'families', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'january', '1', '5', '3', '7', ',', '', ',', 'his', 'sister', 'margaret', ',', 'and', '', 'catherine', 'were', 'held', '', 'at', '', 'castle', 'during', 'the', 'pilgrimage', 'of', 'grace', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'nbc', '', 'kevin', '', 'originally', 'suggested', 'paul', '', 'to', 'producer', 'ben', '', 'for', 'the', 'role', 'of', 'michael', 'scott', ',', 'but', 'the', 'actor', 'declined', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'jackson', 'went', 'on', 'to', 'also', '', 'the', 'statue', 'of', 'bobby', 'moore', 'unveiled', 'at', 'the', 'new', '', 'when', 'it', 'opened', 'in', '2', '0', '0', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '', 'is', 'father', 'of', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'edmund', '', 'lynch', 'attended', 'the', 'boys', \"'\", 'latin', 'school', 'of', 'maryland', 'in', 'baltimore', 'and', 'graduated', 'from', 'johns', '', 'university', 'in', '1', '9', '0', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'series', 'of', 'invasions', 'in', 'the', 'earlier', 'half', 'of', 'the', '', 'caused', 'a', '', 'shift', 'in', 'the', 'culture', 'during', 'the', 'second', 'half', 'of', 'the', 'period', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'one', 'moment', ',', 'she', 'was', 'left', 'alone', 'in', 'the', 'room', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'won', 'in', 'the', '', 'but', 'was', 'subsequently', 'defeated', 'in', 'the', 'general', 'election', 'on', 'may', '5', ',', '2', '0', '1', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'rapid', 'is', 'offered', 'for', 'sale', 'in', 'india', 'in', 'both', 'petrol', 'and', '', 'versions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'originally', 'a', 'coal', 'mining', 'village', ';', 'the', 'victoria', '', 'in', 'the', 'area', 'was', 'the', 'scene', 'of', 'one', 'of', 'scotland', \"'s\", 'worst', 'mining', 'disasters', 'on', '1', '5', 'march', '1', '8', '5', '1', ',', 'in', 'which', '6', '1', 'men', 'and', 'boys', 'died', '.', '', '', '', '', '', '', '']\n", "['', '', '', '', 'castle', '(', ')', 'is', 'a', 'historical', 'castle', 'located', 'in', '', 'county', 'in', '', 'province', ',', 'the', '', 'of', 'this', 'fortress', 'dates', 'back', 'to', 'the', 'middle', 'ages', 'historical', 'periods', 'after', 'islam', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'spacecraft', 'consisted', 'of', 'a', '', 'aluminium', 'frame', 'base', '1', '.', '5', 'm', 'across', 'on', 'which', 'was', 'mounted', 'the', '', 'and', 'power', 'units', ',', 'topped', 'by', 'a', '', 'conical', 'tower', 'which', 'held', 'the', 'tv', 'cameras', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '3', ',', 'teams', '4', 'u', 'launched', 'its', 'own', 'national', '', 'program', 'bringing', 'christmas', 'gifts', 'to', 'deprived', 'children', 'in', 'eastern', 'europe', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'the', '', 'were', 'allowed', 'to', 'return', 'to', 'their', 'ships', ',', 'keeping', 'a', 'few', 'as', '', 'to', 'maintain', 'the', 'pact', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'awards', 'in', 'individual', 'categories', 'are', 'listed', 'below', '(', 'in', '', 'order', ')', 'followed', 'by', 'a', 'list', 'of', 'all', '', 'in', 'reverse', '', 'order', ':', 'source', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'three', 'years', 'later', 'he', 'participated', 'in', 'the', 'next', 'world', 'championship', 'with', 'the', 'same', 'results', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'he', 'is', 'caught', 'by', 'his', 'father', 'richard', '', ',', 'who', 'decides', 'to', '', 'his', 'son', 'and', 'tells', '', 'about', 'it', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'managed', 'her', 'school', 'until', '1', '8', '2', '2', 'and', 'trained', 'hundreds', 'of', 'girls', 'overall', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'turned', 'out', 'to', 'see', 'her', ',', 'and', 'her', 'arrival', 'in', 'montreal', 'produced', 'quite', 'a', '', 'there', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'perhaps', 'the', 'largest', 'and', 'most', 'prominent', 'customer', 'of', 'the', 'line', 'was', 'the', 'atlas', '', 'company', ',', 'which', 'had', 'a', 'total', 'of', 'three', '', 'that', 'ran', 'up', 'to', 'the', 'north', 'side', 'of', 'the', 'building', '(', 'two', 'trailing', 'and', 'one', 'facing', ')', '.', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '', '(', ';', 'born', '2', '9', 'january', '1', '9', '4', '9', ')', 'is', 'a', 'russian', 'sports', 'journalist', ',', 'a', 'former', 'footballer', ',', 'soccer', 'and', '', 'manager', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '0', '5', 'london', ',', '', '', 'is', 'an', 'artist', ',', '', ',', '', 'and', '', ',', 'although', 'he', 'can', 'be', '', 'outspoken', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'developments', 'on', 'both', 'sides', 'of', 'the', 'airport', 'in', '', 'and', '', 'on', 'one', 'side', 'and', '', 'on', 'the', 'other', 'see', 'the', 'airport', 'site', 'lie', 'in', '', 'now', ',', 'directly', 'opposite', 'from', 'the', 'university', 'of', 'st', 'mark', '&', 'amp', ';', 'st', 'john', '.', '', '', '', '', '', '', '', '']\n", "['', 'located', 'in', 'the', 'middle', 'of', 'a', 'rich', 'agricultural', 'region', ',', 'since', 'the', 'beginning', 'of', 'the', '2', '0', 'th', 'plovdiv', 'grew', 'as', 'a', 'major', 'industrial', 'center', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'also', 'contained', 'several', 'small', '``', 'family', 'kitchen', \"''\", 'rooms', 'for', 'cooking', 'classes', ',', 'and', '', '', 'for', 'laundry', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'club', 'played', 'some', '', 'role', 'in', 'the', 'unofficial', 'opposition', 'against', 'the', 'authorities', 'of', 'the', 'communist', 'system', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '(', 'dyer', 'scored', '2', '1', 'and', '4', 'in', 'the', '', '.', ')', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'fighting', 'continued', 'for', 'three', 'hours', 'until', '1', '0', ':', '0', '0', ',', 'when', 'the', 'weight', 'of', 'japanese', 'machine', 'guns', 'and', '', 'forced', 'the', 'brigade', 'to', 'retreat', 'in', '', 'and', 'disorder', 'to', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'october', '2', '1', ',', '2', '0', '1', '0', ',', 'the', '``', '', 'de', '', \"''\", 'newspaper', '(', 'not', 'part', 'of', 'globo', 'organizations', ')', 'published', 'a', 'report', 'revealing', 'that', '', 'was', 'hit', 'by', 'a', 'roll', 'of', 'duct', 'tape', 'after', 'the', 'paper', 'ball', '.', '', '', '', '', '', '', '']\n", "['', 'meaning', 'that', 'the', 'ships', 'would', 'have', 'cost', 'nearly', '$', '2', '0', 'million', 'less', 'if', 'they', 'had', 'been', 'built', 'outside', 'the', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'started', 'his', 'career', 'as', 'a', 'communications', 'intern', 'with', 'the', 'maryland', 'republican', 'party', 'in', '2', '0', '1', '0', 'and', 'shortly', 'thereafter', 'interned', 'with', 'the', 'bob', '', 'campaign', 'for', 'governor', 'of', 'maryland', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'died', 'on', '1', 'may', '1', '9', '8', '2', ',', 'at', 'the', 'age', 'of', '9', '7', 'years', 'and', '1', '7', '5', 'days', ',', 'the', 'record', '', 'recipient', 'of', 'the', 'victoria', 'cross', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'said', 'that', 'fans', 'of', 'union', 'often', '', '``', 'the', 'wall', 'must', 'go', '!', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'fighting', 'the', '', '', 'committee', ',', 'which', 'the', '', 'brigades', 'is', 'affiliated', 'with', 'that', 'attempted', 'to', '', 'a', '', 'between', 'isil', 'and', 'the', 'northern', 'storm', 'brigade', ',', 'declared', 'the', 'northern', 'storm', 'brigade', 'was', 'a', 'criminal', 'group', 'and', 'was', 'not', 'allowed', 'to', 'carry', 'arms', '.', '', '', '', '']\n", "['', '', '', ',', 'the', 'a.', '', 'or', 'near', ',', 'is', 'a', 'species', 'of', 'leaf', 'beetle', 'in', 'the', 'family', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'much', 'of', 'his', 'career', '', \"'s\", 'office', 'was', 'at', '4', '0', 'frederick', 'street', ',', 'extremely', 'close', 'to', 'his', '', 'home', 'and', 'their', 'shop', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'note', ':', 'some', 'paved', 'roads', 'have', 'lost', 'their', '', 'surface', 'and', 'are', 'in', 'very', 'poor', 'condition', 'or', 'have', '', 'to', 'being', '', 'roads', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', ',', 'later', 'called', 'the', 'fort', ',', 'was', 'constructed', 'by', 'oliver', 'cromwell', 'in', '1', '6', '5', '2', 'with', '', 'taken', 'from', 'the', 'earl', \"'s\", 'castle', 'at', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'xiang', '', '(', ';', 'born', '1', '3', 'june', '1', '9', '9', '2', 'in', '', ',', '', ')', 'is', 'a', 'chinese', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', '', ',', '', '', 'carried', 'out', 'numerous', 'apostolic', 'activities', 'including', '', 'across', 'the', 'world', 'and', 'in', 'the', 'vatican', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'lead', '', 'to', 'the', 'new', 'building', 'included', 'john', 'moran', ',', 'the', '', 'foundation', ',', 'the', 'george', 's.', 'and', '', '', '', 'foundation', ',', 'and', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'acid', 'gas', 'scrubbers', 'are', 'used', 'to', 'remove', '', 'acid', ',', '', 'acid', ',', '', 'acid', ',', 'mercury', ',', 'lead', 'and', 'other', 'heavy', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'unopposed', 'in', 'the', 'primary', 'election', 'and', 'faced', 'carol', '', ',', 'an', 'independent', 'candidate', 'who', 'had', 'run', 'for', 'a', 'number', 'of', 'offices', 'unsuccessfully', ',', 'in', 'the', 'general', 'election', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'owner', 'of', 'the', 'theatre', 'is', 'stage', 'entertainment', 'of', 'amsterdam', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'the', 'first', 'time', 'that', 'bob', '', ',', 'phil', '', ',', 'bill', '', 'and', 'mickey', 'hart', 'all', 'performed', 'together', 'since', 'the', '', 'of', 'the', 'grateful', 'dead', 'in', '1', '9', '9', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'also', 'engage', 'in', 'professional', 'development', 'workshops', ',', 'including', 'the', 'finance', 'training', 'for', 'students', 'to', 'don', '', 'technical', 'college', 'and', '', 'youth', 'center', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'riding', 'with', 'his', 'mechanic', 'when', 'he', '', 'while', 'attempting', 'to', 'avoid', 'a', '', 'driving', 'in', 'the', 'opposite', 'direction', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'eye', 'candy', \"''\", 'centers', 'on', '', '', '', '(', 'victoria', 'justice', ')', ',', 'a', '2', '2', '-year-old', 'woman', 'who', 'is', '', 'by', 'her', '', ',', 'sophia', '(', '', '', ')', ',', 'to', 'begin', 'online', 'dating', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'route', 'passes', 'through', '', 'with', 'some', 'homes', 'and', '', 'to', 'the', 'northwest', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'road', 'heads', 'into', 'a', 'mix', 'of', 'farms', 'and', 'woods', ',', '', 'north', 'and', 'entering', 'jackson', 'county', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'douglas', '', \"'s\", '1', '9', '6', '5', 'novel', '``', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'names', 'for', 'the', 'two', 'groups', 'are', 'based', 'on', 'their', 'respective', 'words', 'for', '', '.', \"'\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'series', 'comprises', 'four', 'books', 'for', 'children', 'aged', '1', '0', 'and', 'up', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'pollack', \"'s\", 'grandfather', ',', '', '', 'pollack', ',', 'was', 'a', 'religious', '', 'but', 'was', 'murdered', 'by', 'ukrainian', 'peasants', 'due', 'to', '', 'ukrainian', 'anti-semitism', ';', 'his', 'wife', 'died', 'of', '', 'while', 'attempting', 'to', 'flee', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'end', 'of', 'the', 'war', ',', '', 'was', 'awarded', 'the', 'order', 'of', 'the', 'golden', '', ',', '2', 'nd', 'class', ',', 'and', 'was', 'reassigned', 'to', 'the', '', 'general', 'of', 'military', 'training', 'from', 'february', '1', '9', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'timber', 'and', 'farming', 'are', 'the', 'predominant', 'industries', 'in', 'the', '', 'area', ',', 'although', 'the', 'town', \"'s\", 'position', 'on', 'queensland', \"'s\", 'main', 'coastal', 'highway', 'also', 'brings', 'economic', 'benefits', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'called', 'it', '``', 'a', '', 'tale', \"''\", 'and', 'said', 'that', 'it', 'is', '', 'of', '``', 'the', 'monkey', \"''\", ',', 'a', 'story', 'collected', 'earlier', 'in', '``', '', 'crew', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'just', 'let', 'an', 'artist', 'write', 'from', 'that', 'place', 'of', 'vulnerable', '', ',', 'and', 'let', 'the', '', 'connect', 'through', 'their', 'own', 'story', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'zang', 'tu', 'then', '', 'with', 'liu', '', ',', 'the', 'lord', 'of', 'sichuan', ',', 'in', 'the', 'war', 'against', 'xiang', 'yu', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'late', 'march', '2', '0', '0', '7', ',', 'he', 'was', 'one', 'of', 'the', 'last', 'three', 'known', 'surviving', 'american-born', 'world', 'war', 'i', 'veterans', ',', 'as', 'well', 'as', 'the', 'oldest', 'of', 'them', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'headquarters', 'are', 'in', 'the', 'town', 'of', '', ',', 'a', 'border', 'town', '``', 'about', '1', '3', '5', 'kilometres', 'south-east', 'of', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'joshua', 'brown', 'went', 'on', 'to', 'play', 'in', '', 'and', 'like', 'a', 'fox', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'july', ',', 'she', 'moved', 'north', 'to', 'british', 'columbia', 'to', 'participate', 'in', 'the', '', 'of', 'that', 'province', \"'s\", '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'is', 'a', 'list', 'of', 'german', 'states', 'by', 'life', '', 'at', 'birth', '(', 'average', 'of', '2', '0', '1', '6', 'to', '2', '0', '1', '8', ')', 'according', 'to', 'the', 'federal', 'statistical', 'office', 'of', 'germany', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'the', 'next', '2', '0', 'years', 'trades', 'executed', 'on', 'dark', 'pools', 'represented', 'a', 'small', 'fraction', 'of', 'the', 'market', ',', 'between', '3', '-', '5', '%', 'of', 'all', 'trades', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'kangaroo', '', 'is', 'the', 'common', 'name', 'for', 'a', 'number', 'of', 'species', ',', 'in', 'two', '', 'of', 'the', 'family', '', ',', 'that', 'are', 'endemic', 'to', 'the', 'south-west', 'of', 'western', 'australia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'end', 'of', 'the', 'interview', ',', '', '', 'up', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'include', 'as', 'special', 'cases', 'the', '', 'triple', 'product', 'identity', ',', 'watson', \"'s\", '', 'product', 'identity', ',', 'several', 'identities', 'found', 'by', ',', 'and', 'a', '1', '0', '', 'product', 'identity', 'found', 'by', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'term', 'has', 'also', 'applied', 'to', 'other', '', 'and', 'even', 'companies', 'trying', 'to', 'appeal', 'to', 'a', 'gay', 'demographic', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'studied', 'at', 'the', 'university', 'of', 'edinburgh', ',', 'where', 'he', 'graduated', 'in', '1', '9', '6', '6', 'with', 'a', 'first', 'class', 'honours', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '1', ',', 'the', 'site', 'became', 'the', 'fort', '', 'historical', 'site', 'county', 'park', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'dedicated', 'to', 'saint', 'francis', 'xavier', 'and', 'belongs', 'to', 'the', 'parish', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '2', '0', '0', '9', 'nhl', 'winter', 'classic', 'drew', 'a', '2', '.', '9', '', 'rating', ',', 'setting', 'a', 'record', 'for', 'the', 'most', 'watched', 'nhl', 'regular', 'season', 'game', 'since', '1', '9', '7', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'release', 'of', 'the', 'album', ',', 'the', 'youngest', 'of', 'the', 'brothers', ',', 'joe', '', ',', 'was', 'dismissed', 'from', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thomas', 'supported', 'dan', '', \"'s\", 'bid', 'to', 'become', 'his', 'successor', 'in', 'the', 'by-election', 'that', 'followed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'and', 'other', 'prisoners', '', 'and', 'manage', 'to', 'escape', 'with', 'help', 'from', 'eve', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'first', 'few', 'days', 'of', 'active', 'flying', ',', 'the', 'squadron', 'did', 'not', 'encounter', 'any', 'enemy', 'aircraft', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'german', 'nazi', 'party', 'protected', 'art', ',', 'gold', 'and', 'other', 'objects', 'that', 'had', 'been', 'either', '', 'or', 'moved', 'for', '', 'at', 'various', 'storage', 'sites', 'during', 'world', 'war', 'ii', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hitchcock', '', 'for', 'special', 'theater', 'instructions', 'to', '', 'the', 'public', \"'s\", 'interest', 'such', 'as', '', '', 'after', 'the', 'film', 'begins', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'beautiful', 'face', 'is', 'at', 'once', 'the', 'most', 'common', 'and', 'most', 'rare', 'among', 'members', 'of', 'the', 'species', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', '', '1', '4', '.', '5', 'pounds', 'and', 'resides', 'at', 'arizona', 'state', 'university', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'march', '2', '0', '1', '7', ',', 'the', 'company', 'renewed', 'its', 'lease', 'at', 'honey', 'creek', 'corporate', 'center', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'july', '3', '0', ',', '1', '9', '9', '0', ',', 'he', 'moved', 'to', 'the', 'cleveland', '', 'as', 'a', 'free', 'agent', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'headquarters', 'are', 'known', 'as', 'joint', 'staff', 'headquarters', 'and', 'act', 'as', 'secretariat', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'his', 'law', '', 'under', 'his', 'father', ',', 'white', 'studied', '', 'under', 'john', 'white', '', 'at', 'his', '', 'law', 'school', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'lady', '', '', 'the', '``', '', 'enemies', \"''\", 'of', 'the', 'first', 'world', 'war', 'and', 'participated', 'in', 'the', 'founding', 'of', 'an', 'emergency', 'committee', 'aimed', 'at', 'helping', 'german', 'civilians', 'living', 'in', 'britain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'local', 'see', '', 'came', 'under', 'the', 'latin', 'church', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '9', ',', 'cinema', '', 'ranked', '', 'the', 'fourth', 'best', 'star', '', '', 'character', 'of', 'all', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'other', 'delegates', 'then', 'declared', 'themselves', 'to', 'be', 'the', 'american', 'federation', 'of', 'labor', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'first', 'baptist', 'church', 'and', '', 'grove', '', 'baptist', 'church', 'are', 'the', 'two', 'baptist', '', 'in', 'town', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'the', 'first', 'team', 'play', 'three', 'days', 'later', ',', 'the', '', 'do', '', '', 'against', '', 'da', '', ',', 'and', 'once', 'again', ',', '', 'starred', 'in', 'a', 'mixed', 'team', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'claimed', 'off', '', 'by', 'the', 'cleveland', 'indians', 'on', 'january', '2', '6', ',', '2', '0', '1', '7', ',', 'and', 'then', 'designated', 'for', 'assignment', 'by', 'them', 'on', 'january', '3', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'donated', 'his', 'earnings', 'to', 'a', 'fountain', 'in', '', 'square', ',', '', ',', 'london', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'fourth', 'jersey', 'represented', 'the', 'young', 'rider', 'classification', ',', 'marked', 'by', 'a', 'white', 'jersey', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'programme', 'had', 'a', 'very', 'short', '', ';', 'it', 'consisted', 'of', '2', '6', 'episodes', ',', 'each', 'attempting', 'to', 'educate', 'children', 'about', 'basic', 'science', ',', 'of', '1', '5', 'minutes', 'each', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'served', 'as', 'chief', 'of', 'police', 'in', 'fort', '', ',', 'florida', 'and', 'port', 'st.', '', ',', 'florida', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'main', 'subclans', 'among', '', 'or', '', 'banjaras', 'are', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', '', ',', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'feeding', 'on', 'land', 'is', 'a', 'completely', 'different', 'task', 'than', 'feeding', 'in', 'water', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'here', ',', 'a', '', 'of', 'water', '', '8', '0', 'feet', '(', '2', '4', 'm', ')', 'over', 'a', 'cliff', 'face', 'of', 'bare', 'rock', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'party', 'was', 'founded', 'in', '1', '9', '9', '3', 'and', 'has', 'a', 'constitution', ',', 'which', 'describes', 'an', 'organisation', 'with', 'the', 'aim', 'of', '', 'candidates', 'to', 'contest', 'elections', 'to', 'the', 'federal', 'parliament', 'of', 'australia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'of', '£', '2', '.', '5', 'million', 'was', 'also', 'offered', ',', 'including', 'from', 'the', '``', 'news', 'of', 'the', 'world', \"''\", ',', '', ',', 'branson', ',', 'green', ',', 'and', 'a', 'scottish', 'businessman', ',', 'stephen', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'near', 'to', '', '', 'road', 'on', 'approach', 'road', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '3', '4', 'the', 'last', 'of', 'the', '', '', '', '', 'raja', 'fell', 'out', 'of', 'favour', 'with', 'the', 'british', 'who', 'then', 'intervened', 'by', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'friday', 'before', 'the', 'switch', 'was', 'made', 'on', 'both', 'series', ',', 'the', 'champion', 'was', 'awarded', 'the', 'shopping', 'prize', 'entitled', 'to', 'based', 'on', 'how', 'much', 'money', 'had', 'been', 'accumulated', 'to', 'that', 'point', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'linear', 'and', '', 'momentum', 'of', 'a', 'collection', 'of', 'particles', 'can', 'be', 'simplified', 'by', 'measuring', 'the', 'position', 'and', 'velocity', 'of', 'the', 'particles', 'relative', 'to', 'the', 'center', 'of', 'mass', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'middle', 'ages', ',', 'the', 'normans', 'created', 'one', 'of', 'the', 'most', 'powerful', 'feudal', 'states', 'of', 'western', 'europe', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'chair', 'has', 'the', '', 'of', 'state', 'on', 'its', 'right', 'arm', 'and', 'on', 'her', 'left', 'the', 'crowned', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'similarly', ',', '``', 'the', 'wall', 'street', 'journal', \"''\", \"'s\", 'latin', 'america', 'editor', '', 'that', 'the', '``', 'real', 'earthquake', \"''\", '', '``', 'venezuela', \"'s\", 'economic', 'earthquake', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'custom', 'blocks', 'could', 'now', 'be', 'defined', 'within', 'projects', ',', 'along', 'with', 'several', 'other', 'improvements', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'gemina', \"'s\", 'deformity', 'did', 'not', 'appear', 'until', 'she', 'was', 'three', 'years', 'old', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'cover', 'story', 'february', '1', '9', '9', '3', 'issue', 'of', 'black', '', 'magazine', ',', 'joe', 'lewis', 'states', 'that', 'his', '', \"'\", 'john', 'and', 'jim', '', 'are', 'his', 'choice', 'to', 'carry', 'the', '', 'of', 'his', 'system', 'after', 'his', 'death', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'highway', '1', '8', 'leads', 'northeast', 'to', 'jackson', ',', 'the', 'state', 'capital', ',', 'and', 'southwest', 'to', 'port', 'gibson', ',', 'while', 'highway', '2', '7', 'leads', 'northwest', 'to', '', 'and', 'southeast', 'to', 'crystal', 'springs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '4', 'the', 'total', '', '', 'to', '1', '2', '1', '.', '5', '9', '', 'tons', ',', 'including', '7', '2', '0', ',', '0', '0', '0', '', ',', 'the', 'largest', 'value', 'for', 'the', 'black', 'sea', 'basin', 'and', 'the', '', 'in', 'russia', '.', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'defined', 'in', 'the', 'east', ',', 'by', 'the', 'river', '', 'and', 'by', 'river', 'tons', 'in', 'the', 'west', ',', 'the', 'northern', 'part', 'comprises', '', 'district', ',', 'and', 'some', 'parts', 'of', '', 'pradesh', ',', 'the', '', 'tehsil', 'forms', 'its', 'southern', '', '.', '', '', '', '', '', '', '', '', '']\n", "['', '', 'left', 'the', '', 'on', '1', '7', 'september', '2', '0', '1', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '5', 'the', 'embassy', 'in', '', '(', '', ')', 'also', 'suspended', 'operations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', ')', '(', 'born', 'june', '1', '7', ',', '1', '9', '7', '7', ')', 'is', 'a', 'writer', ',', '', ',', 'and', 'human', 'rights', 'activist', 'who', 'attained', 'international', 'prominence', 'during', 'the', 'arab', 'spring', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'internet', 'facility', 'is', 'also', 'available', 'to', 'them', ',', 'and', 'through', 'internet', 'research', 'they', 'can', 'polish', 'their', 'ideas', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'part', '', 'of', 'the', 'constitution', 'of', 'india', 'is', 'a', 'compilation', 'of', 'laws', 'pertaining', 'to', 'the', 'constitution', 'of', 'india', 'as', 'a', 'country', 'and', 'the', 'union', 'of', 'states', 'that', 'it', 'is', 'made', 'of', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'sisters', \"''\", 'is', 'a', 'historical', 'novel', 'set', 'in', '', ',', 'wyoming', 'in', '1', '8', '8', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'of', 'the', 'yakama', 'native', 'americans', 'had', 'been', 'well', 'established', 'by', 'the', 'time', '', 'arrived', 'in', 'washington', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'of', '', '', 'in', 'the', '1', '9', '3', '2', '', 'rebellion', ',', 'and', 'also', 'participated', 'in', 'the', 'battle', 'of', '', '(', '1', '9', '3', '3', ')', 'and', 'again', 'in', '1', '9', '3', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '1', '', '', 'was', 'the', 'most', 'senior', 'killer', '', 'member', 'not', 'in', 'prison', ',', 'he', 'was', 'on', 'the', 'run', 'for', 'several', 'months', 'before', 'having', 'his', 'conviction', '', 'by', 'the', 'court', 'of', 'appeal', 'and', 'a', 'new', 'trial', 'ordered', '.', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'son', '', 'too', 'chose', '', 'immortality', ',', 'becoming', 'known', 'as', '', ',', 'and', 'in', 'the', 'third', 'age', 'played', 'an', 'important', 'role', 'in', 'the', 'war', 'of', 'the', 'ring', ',', 'as', '', 'in', '``', 'the', 'lord', 'of', 'the', 'rings', \"''\", '.', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'won', 'seven', 'medals', 'in', 'total', 'at', 'the', 'sea', 'games', 'from', '2', '0', '0', '5', 'to', '2', '0', '1', '5', ',', 'including', 'gold', 'in', 'the', 'women', \"'s\", 'singles', 'at', 'the', '2', '0', '1', '1', 'southeast', 'asian', 'games', 'in', '', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'had', 'a', 'number', 'of', 'plays', 'hit', 'broadway', 'in', 'the', '1', '9', '1', '0', 's', 'and', '1', '9', '2', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'father', 'was', 'reportedly', '', ',', 'and', 'in', '1', '5', '1', '1', ',', 'he', 'murdered', 'his', 'mother', 'in', 'a', 'fit', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'branch', 'of', 'the', 'road', 'connects', '', 'with', '', ',', '2', 'km', 'to', 'the', 'east', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'northeastern', 'side', 'is', 'named', 'the', '', 'basin', 'and', '', 'at', 'the', 'western', 'end', 'of', 'the', '', '', 'zone', 'which', 'passes', 'to', 'the', 'east', 'and', 'almost', 'to', 'the', 'australian', 'continent', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'several', 'candidates', 'were', 'approached', 'for', 'the', 'liberal', 'nomination', 'and', 'eventually', 'william', '', ',', 'a', 'wellington', 'city', '', 'was', 'selected', 'and', 'endorsed', 'by', '', 'minister', 'james', 'allen', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'also', 'encourages', 'the', '', 'of', 'cases', 'of', 'censorship', 'and', 'has', 'a', 'place', 'to', 'report', 'instances', 'of', 'censorship', 'on', 'the', 'organization', \"'s\", 'website', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'bulletin', ':', 'a', 'quality', 'periodical', 'published', 'five', 'times', 'per', 'year', ',', 'containing', 'guild', 'news', ',', '', 'articles', ',', 'historical', 'articles', ',', 'and', 'advertising', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'february', '1', '6', ',', 'the', 'sixth', 'day', 'of', 'the', 'trial', 'and', 'the', 'second', 'day', 'of', 'her', 'statement', 'to', 'the', 'court', ',', 'she', 'told', 'the', 'story', 'of', 'her', '', 'search', 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'served', '1', '3', '0', ',', '0', '0', '0', 'people', ',', 'and', 'one', 'third', 'of', 'the', 'geographic', 'area', 'of', 'new', 'south', 'wales', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'village', 'and', 'civil', 'parish', 'in', 'the', 'south', 'holland', 'district', 'of', 'lincolnshire', ',', 'england', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', 'then', 'on', 'he', 'did', 'not', 'write', 'any', 'fiction', 'until', 'the', 'death', 'of', 'his', 'mother', 'in', '1', '8', '6', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'the', 'son', 'of', 'tamil', 'actor', 'and', 'politician', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', '', 'differences', 'in', 'strength', 'can', 'be', '', 'with', '', \"'s\", 'equation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'honor', '', 'in', 'egypt', 'occur', 'due', 'to', 'reasons', 'such', 'as', 'a', 'woman', 'meeting', 'an', 'unrelated', 'man', ',', 'even', 'if', 'this', 'is', 'only', 'an', '', ';', 'or', '', '(', 'real', 'or', 'suspected', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'time', ',', 'morgan', 'was', 'still', 'a', 'french', 'citizen', 'writing', 'under', 'the', 'name', 'of', '``', '', 'de', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'the', '1', '9', '3', '0', 's', ',', 'the', 'development', 'of', 'animal', 'models', 'in', 'epilepsy', 'research', 'led', 'to', 'the', 'development', 'of', '', 'by', '', 'putnam', 'and', 'h.', 'houston', '', ',', 'which', 'had', 'the', 'distinct', 'advantage', 'of', '', '', 'seizures', 'with', 'less', '', '.', '', '', '', '', '', '', '']\n", "['', 'survival', 'kids', ',', 'known', 'as', '', 'kids', 'in', 'europe', 'and', '``', 'survival', 'kids', ':', '', 'no', '', \"''\", '(', '``', '', 'of', 'the', '', 'island', \"''\", ')', 'in', 'japan', ',', 'is', 'a', 'game', 'boy', 'color', 'game', 'developed', 'by', '', 'that', 'was', 'released', 'in', '1', '9', '9', '9', '.', '', '']\n", "['', 'however', ',', 'following', 'presley', \"'s\", '', ',', 'the', 'original', 'group', 'member', 'decided', 'to', 'stay', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'may', 'still', 'have', 'fat', 'attached', ',', 'called', 'in', 'spanish', 'in', 'central', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '``', 'billboard', \"''\", 'music', 'awards', 'are', 'held', 'to', 'honor', 'artists', 'for', 'commercial', 'performance', 'in', 'the', 'u.s.', ',', 'based', 'on', 'record', 'charts', 'published', 'by', '``', 'billboard', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '2', '0', ',', 'the', 'club', 'was', 'forced', 'to', 'move', 'from', '', 'when', 'a', 'railway', 'line', 'was', 'built', 'across', '', 'park', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'union', 'struck', 'deutsche', '', ',', 'the', 'state-owned', 'company', 'which', 'operates', 'the', 'german', 'rail', 'system', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'it', 'completed', 'the', 'loop', 'on', 'december', '9', ',', 'the', 'system', 'further', 'intensified', 'to', 'a', '', 'typhoon', 'as', 'it', 'started', 'to', 'rapidly', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'published', 'by', '', '', 'and', 'co.', 'of', 'london', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'series', 'began', 'on', '1', '9', 'march', '2', '0', '1', '2', 'with', 'a', 'team', 'of', '', 'from', 'the', '', 'office', ',', 'containing', 'a', 'total', 'of', 'ten', 'episodes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'school', 'had', 'various', 'names', 'over', 'the', 'years', ',', 'including', 'bell', 'tower', 'middle', 'school', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'high', 'school', 'musical', 'was', 'the', 'first', '', 'video', 'content', 'from', 'the', 'itunes', 'store', 'in', '', '2', '0', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '2', '0', '0', '5', '', 'swiss', '', 'was', 'a', 'men', \"'s\", 'tennis', 'tournament', 'played', 'on', 'indoor', '', 'courts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', '1', '8', 'september', '1', '7', '6', '5', '3', 'january', '1', '8', '3', '1', ')', 'was', '', 'of', '', 'from', '1', '8', '0', '4', 'until', '1', '8', '1', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'started', 'his', 'career', 'with', 'the', '', 'milan', 'youth', 'team', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'oxley', 'found', 'a', 'value', 'of', '3', '5', '7', '', 'for', 'the', '', 'temperature', ',', 'below', 'which', 'the', 'compound', 'becomes', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'immigration', 'to', 'mexico', 'has', 'been', 'important', 'in', '', 'the', 'country', \"'s\", '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'was', 'also', 'a', 'place', 'for', '', '(', 'considered', '', '', ')', ',', 'as', 'well', 'as', 'a', 'ritual', '', 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'studied', 'in', 'the', 'yale', '', 'school', 'from', '1', '8', '4', '1', 'to', '1', '8', '4', '4', ',', 'but', 'during', 'his', 'theological', 'course', ',', 'and', 'afterwards', ',', 'he', 'suffered', 'much', 'from', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'schaefer', 'and', '', 'found', 'that', 'the', '', 'mir-', '1', '2', '8', 'is', 'involved', 'in', '', '', '', 'and', 'motor', 'activity', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'sociolinguistics', 'of', 'sign', 'languages', 'is', 'the', 'application', 'of', 'sociolinguistic', 'principles', 'to', 'the', 'study', 'of', 'sign', 'languages', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'engineer', 'and', 'four', 'other', 'people', 'were', 'injured', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'spain', 'failed', 'to', 'conquer', 'the', 'area', 'during', 'the', 'war', 'of', '', \"'\", 'ear', ',', 'the', 'province', '', 'slavery', 'in', '1', '7', '4', '9', ',', '', 'the', 'balance', 'of', 'power', 'in', 'the', 'settlements', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', '', 'involves', '', 'between', 'the', 'central', ',', '', ',', 'and', '', 'nervous', 'systems', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'few', 'years', 'that', 'alder', 'lived', 'with', 'the', 'indians', 'he', 'was', 'very', 'ill', ',', 'a', 'condition', 'alder', 'attributed', 'to', 'the', 'indians', \"'\", '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'at', '', 'and', '', 'were', 'replaced', 'by', 'a', 'reservoir', 'at', 'cold', '', ',', 'which', 'increased', 'the', 'construction', 'costs', 'by', '£', '3', ',', '0', '0', '0', ',', 'but', 'reduced', 'running', 'costs', 'by', '£', '3', '5', '0', 'per', 'year', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'males', 'had', 'a', 'median', 'income', 'of', '$', '2', '9', ',', '3', '7', '5', 'versus', '$', '1', '7', ',', '0', '0', '0', 'for', 'females', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'few', 'years', 'ago', ',', 'before', 'the', '', '', 'was', 'built', ',', 'the', 'lamp', 'was', 'smashed', 'by', 'an', '', 'timber', '', 'passing', 'through', 'the', 'high', 'street', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'runner-up', 'at', 'the', '', '', 'in', '1', '9', '9', '4', 'and', 'twice', 'appeared', 'in', 'the', 'main', 'draw', 'of', 'atp', 'tour', 'tournaments', ',', 'both', 'times', 'as', 'a', 'qualifier', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'occurs', 'in', 'indonesia', ',', 'new', 'guinea', 'and', 'australia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'roosevelt', 'elk', 'have', 'been', '', 'into', 'alaska', ',', 'where', 'the', 'largest', 'males', 'are', 'estimated', 'to', 'weigh', 'up', 'to', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'livingston', 'was', 'laid', 'out', 'about', '1', '9', '0', '4', 'by', 'the', 'heirs', 'of', 'john', 'livingston', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'of', 'the', 'art', 'referenced', 'in', 'the', 'play', 'includes', 'salvador', '', \"'s\", '``', 'two', 'pieces', 'of', 'bread', '', 'the', '', 'of', 'love', \"''\", 'and', 'shakespeare', \"'s\", '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'terms', 'derived', 'from', 'the', 'principles', 'of', '', 'marriage', 'represent', 'the', 'interests', 'of', 'the', 'governments', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'some', 'point', 'in', '1', '7', '9', '0', ',', 'he', 'moved', 'to', 'london', ',', 'where', 'he', 'exhibited', 'at', 'the', 'royal', 'academy', 'and', 'created', 'works', 'intended', 'for', 'making', 'into', 'prints', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'department', 'of', 'justice', '', 'replied', 'that', 'it', '', '', 'not', 'to', 'be', 'able', 'to', 'release', 'us', '', 'the', 'immediate', 'future', '.', \"'\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'was', 'a', 'further', '9', '.', '3', '%', 'reduction', 'in', '2', '0', '0', '9', 'with', 'passenger', 'numbers', 'falling', 'to', 'around', '1', '1', '.', '6', 'million', 'and', 'the', 'number', 'of', 'aircraft', 'movements', 'reducing', 'by', '1', '3', '.', '6', '%', 'to', '1', '0', '3', ',', '5', '3', '6', '.', '', '', '']\n", "['', 'the', 'hospital', 'plans', 'included', 'a', 'private', 'reservoir', ',', 'a', 'private', 'underground', 'water', 'source', ',', 'and', 'an', 'oxygen', 'manufacturing', 'facility', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'though', 'brown', 'found', '``', '', \"''\", 'fun', ',', 'different', ',', 'and', '', ',', 'it', 'had', '``', 'not', 'quite', 'won', '[', 'him', ']', 'over', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'fixed', '', 'and', '', 'are', 'common', 'methods', 'used', 'to', 'catch', 'mediterranean', 'horse', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'too', '', 'for', 'widespread', 'industrial', 'application', ',', 'they', 'do', 'provide', 'a', '', 'research', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'milliken', 'was', 'also', 'became', 'involved', 'in', 'the', '', 'manufacturing', 'company', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'mountains', 'is', 'a', 'mountain', 'range', 'within', 'diamond', 'restricted', 'area', 'also', 'called', '``', '', \"''\", 'located', 'in', 'the', 'southwestern', 'part', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'engines', 'of', 'this', 'make', 'were', 'sent', 'to', 'south', 'america', 'where', 'they', 'were', 'popular', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'allegations', 'began', 'with', 'the', 'circumstances', 'surrounding', 'the', 'death', 'of', 'ira', 'volunteer', 'and', '', 'asset', 'frank', '', ',', 'who', 'was', 'encouraged', 'by', 'his', '', 'to', '', 'the', 'ira', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'scout', 'ant', 'therefore', 'leads', 'the', 'raid', 'from', 'the', 'front', ',', 'with', 'the', 'other', '', 'following', 'in', 'a', '', 'formation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", '(', '', '2', ')', 'was', 'finally', 'decommissioned', 'and', 'scrapped', 'in', '1', '9', '8', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'all', '', '``', '[', '', ']', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'year', 'later', ',', 'an', 'article', 'in', '``', 'the', 'new', 'yorker', \"''\", 'praised', 'the', 'store', ',', 'and', 'customers', '', 'to', 'it', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'ran', 'for', 'an', 'eighth', 'consecutive', 'four-year', 'term', 'in', '2', '0', '0', '7', 'but', 'lost', 'to', 'michael', '', ',', 'a', '', ',', 'a', 'dairy', 'farmer', ',', 'and', 'an', 'outgoing', 'member', 'of', 'the', 'louisiana', 'house', 'of', 'representatives', 'from', 'st.', '', 'parish', 'in', 'the', 'new', 'orleans', 'suburbs', '.', '', '', '', '']\n", "['', 'it', 'is', 'located', 'two', 'miles', '(', '3', 'km', ')', 'south', 'of', 'inverness', ',', 'off', 'of', 'u.s.', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'born', 'in', '', ',', 'denmark', ',', '', 'started', 'his', 'football', 'career', 'at', '', '7', '4', '0', 'when', 'he', 'was', 'four', 'years', 'old', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'dean', 'was', 're-elected', '', 'in', '2', '0', '0', '4', ',', 'winning', '6', '3', '%', 'of', 'the', 'vote', 'to', 'democratic', 'nominee', 'mike', '', \"'s\", '3', '7', '%', ',', 'and', 'was', 'unopposed', 'for', 're-election', 'in', '2', '0', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'makes', 'up', '5', '4', '%', 'of', '', 'in', 'the', 'black', 'sea', 'and', '3', '9', '%', 'in', 'the', 'sea', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'using', '', ',', 'many', '', 'sites', 'have', 'been', 'predicted', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '8', '1', '1', 'to', '1', '8', '2', '8', ',', 'the', '', 'talpur', 'state', 'was', 'ruled', 'by', 'mir', '', 'ali', 'talpur', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'person', 'should', 'be', 'at', 'least', '3', '5', 'years', 'of', 'age', 'and', '``', 'should', 'have', 'resided', \"''\", 'in', 'mexico', 'for', 'at', 'least', '2', '0', 'years', 'in', 'his', 'entire', 'lifetime', 'and', 'for', 'the', 'entire', 'year', 'before', 'the', 'election', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'joined', 'charles', 'august', 'selby', \"'s\", 'and', 'thomas', 'ter', '', \"'s\", 'trading', 'firm', 'selby', '&', 'amp', ';', 'co.', 'which', 'from', 'then', 'on', 'traded', 'first', 'as', 'selby', ',', 'christmas', 'and', 'ter', 'borch', 'and', 'after', 'selby', \"'s\", 'retirement', 'as', 'christmas', '&', 'amp', ';', 'ter', 'borch', '.', '', '', '', '', '', '']\n", "['', 'in', 'many', 'places', ',', 'the', 'limestone', 'is', 'thousands', 'of', 'feet', 'thick', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'had', 'a', '', 'season', 'by', 'his', 'standards', ',', 'and', 'was', '', 'to', 'the', 'pittsburgh', 'penguins', 'for', 'two-time', 'stanley', 'cup', 'champion', 'goaltender', 'tom', '', 'at', 'the', 'trade', 'deadline', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'volcanic', 'field', 'is', 'a', '', 'field', 'in', 'queensland', ',', 'australia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mechanical', 'units', ',', 'for', 'example', ',', 'are', 'only', 'available', 'in', 'grades', '0', ',', '1', ',', '3', ',', 'and', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', 'had', 'numerous', 'solo', 'and', 'group', 'exhibitions', 'in', 'both', 'new', 'zealand', 'and', 'europe', 'and', 'found', 'critical', 'acclaim', 'in', 'the', 'international', 'press', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'born', 'on', '5', 'march', '1', '9', '3', '6', ',', 'near', '', '(', 'now', '', ')', ',', '', ',', 'southern', 'rhodesia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '1', ',', '4', '6', '.', '9', 'percent', 'of', 'pennsylvania', 'school', 'districts', 'achieved', 'adequate', 'yearly', 'progress', '(', 'ayp', ')', 'based', 'on', 'student', 'performance', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'enters', 'with', 'his', 'traveling', '', '', 'of', '', '', 'items', 'and', 'offers', 'to', 'help', 'foghorn', 'get', 'back', 'at', 'the', 'dog', 'by', 'selling', 'him', 'a', '', 'bone', 'that', 'is', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'status', 'as', 'a', 'manx', 'poet', 'of', 'importance', 'was', 'confirmed', 'in', '2', '0', '1', '0', 'by', 'his', 'being', 'featured', 'with', 'multiple', 'entries', 'in', 'the', '2', '0', '1', '0', 'anthology', 'of', 'manx', 'literature', 'by', 'robert', '', '', ',', '``', '', \"'s\", '', \"''\", '.', '', '', '', '', '', '', '']\n", "['', 'basic', 'crystal', 'growth', 'methods', 'can', 'be', 'separated', 'into', 'four', 'categories', 'based', 'on', 'what', 'they', 'are', '', 'grown', 'from', ':', '', ',', 'solid', ',', '', ',', 'and', 'solution', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'samuel', 'noah', '', '', '', 'different', '', 'into', 'the', 'first', 'complete', 'edition', 'of', 'the', '``', 'lament', \"''\", ',', 'which', 'was', 'published', 'in', '1', '9', '4', '0', 'by', 'the', 'university', 'of', 'chicago', 'as', '``', '', 'over', 'the', 'destruction', 'of', 'ur', \"''\", '(', '``', '', 'study', \"''\", 'no', '.', '', '', '']\n", "['', 'in', '1', '9', '2', '0', ',', 'gondra', 'came', 'out', 'victorious', 'in', 'the', 'presidential', 'election', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ibis', 'tells', 'the', 'storyteller', 'that', 'she', 'is', 'far', 'more', '', 'in', 'battle', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', '', 'motorcycle', ',', 'it', 'can', 'be', 'used', 'both', 'on', 'roads', 'and', 'in', 'light', '', 'conditions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'also', 'filed', 'for', 'patent', 'protection', 'in', 'other', 'countries', ',', 'including', 'belgium', ',', 'canada', ',', 'denmark', ',', 'hungary', ',', 'japan', ',', 'mexico', ',', 'russia', ',', 'and', 'spain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'local', 'political', 'parties', 'are', 'formed', 'on', 'an', '', 'basis', ',', 'generally', 'focused', 'on', 'key', 'issues', 'of', 'local', 'concern', ';', 'national', 'political', 'parties', 'do', 'not', 'officially', 'participate', 'in', 'township', 'elections', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'we', 'did', 'it', 'so', 'the', 'most', 'people', 'possible', 'would', 'see', 'it', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'noura', \"'s\", 'full', 'siblings', 'included', '', ',', '', ',', '', ',', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '0', '3', 'they', 'were', '', 'with', '', '', 'abbey', '(', 'at', '', ')', 'and', '', 'abbey', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hockey', 'itself', 'established', 'a', 'whole', 'new', '', 'in', 'southern', 'california', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'album', 'reached', '#', '3', '9', 'on', 'the', 'itunes', 'charts', 'upon', 'its', 'release', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', 'result', ',', '', 'started', 'to', '', 'his', 'theory', 'of', 'state', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'organization', 'was', 'prolonged', 'and', 'slow', ';', 'however', ',', 'the', '', 'of', 'a', 'kelvin', 'wave', 'and', 'a', 'gulf', 'of', '', 'gap', 'wind', 'event', 'on', 'october', '1', '5', '', 'a', 'significant', 'increase', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'costa', 'rica', 'a', 'came', 'first', 'in', 'this', 'tournament', ',', 'panama', '2', 'nd', ',', 'guatemala', '3', 'rd', ',', 'and', 'costa', 'rica', 'b', '4', 'th', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", 'is', 'the', 'official', 'student', 'newspaper', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'athlone', 'north', 'is', 'located', 'in', 'the', 'centre', 'of', 'county', '', ',', 'bounded', 'by', 'the', 'river', 'shannon', 'and', 'lough', '', 'to', 'the', 'east', 'and', 'the', 'river', '', 'to', 'the', 'west', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'of', 'only', 'a', '', 'of', 'americans', 'amongst', 'the', 'british', 'and', 'australian', 'inmates', ',', 'he', '', 'through', 'his', '', 'and', 'black', 'market', 'enterprises', ';', 'whereas', 'others', ',', 'nearly', 'all', 'of', 'higher', 'rank', ',', 'struggle', 'to', 'survive', 'sickness', 'and', '', 'while', 'trying', 'to', 'keep', 'their', '', 'nature', '.', '', '', '']\n", "['', '', 'himself', 'is', '', 'about', 'his', 'team', \"'s\", 'work', ',', 'with', 'an', 'early', 'stage', '2', '0', '0', '5', 'profile', 'in', '``', 'nature', \"''\", 'noting', 'there', 'was', 'still', 'much', 'work', 'to', 'do', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'sailed', 'on', 'to', 'jamaica', 'and', 'panama', ',', 'but', 'there', 'was', 'no', 'new', 'cargo', 'to', 'pick', 'up', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'adrian', '', 'had', 'his', 'best', 'game', 'to', 'date', ',', '', 'four', 'passes', 'for', '7', '9', 'yards', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'plan', 'also', 'seeks', 'to', '', 'miners', \"'\", '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'species', 'of', '', 'moth', 'of', 'the', 'family', 'erebidae', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'despite', 'publicly', '', ',', 'however', ',', '', 'began', 'to', 'rise', 'between', 'liwa', '', 'al-raqqa', ',', 'isil', ',', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'rewarded', 'by', 'being', 'made', 'director', 'of', 'the', 'institute', 'of', 'soviet', 'construction', 'and', 'law', '(', 'predecessor', 'of', 'the', 'institute', 'of', 'state', 'and', 'law', 'of', 'the', 'soviet', 'academy', 'of', 'sciences', ')', 'in', '1', '9', '3', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'june', '2', '0', '1', '9', ',', 'kent', 'signed', 'for', '', 'united', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'memes', '', 'by', '', 'from', 'a', 'nervous', 'system', 'to', 'another', 'one', ',', 'either', 'by', 'communication', 'or', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'authors', 'include', 'isaac', '', '(', '1', '8', '3', '8', ',', 'boston', ')', 'and', 's.', 'w', '', '(', '1', '8', '4', '2', ',', 'boston', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'april', '2', '0', '2', '0', ',', 'she', 'gave', 'another', 'acoustic', 'performance', 'of', 'the', 'song', 'for', '', '', '``', 'the', 'highway', \"''\", \"'s\", '``', '', 'weekend', ',', \"''\", 'on', 'account', 'of', '', 'festival', 'being', '', 'to', 'october', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'found', 'in', '', 'tropics', 'of', 'india', ',', 'sri', 'lanka', ',', 'east', 'to', 'singapore', ',', 'taiwan', ',', 'the', 'solomon', 'islands', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thomas', '', 'born', '1', '9', '6', '4', ',', 'is', 'an', 'independent', 'financial', 'consultant', ',', 'business', 'school', 'lecturer', 'at', '', 'swiss', 'business', 'school', ',', '', 'and', 'author', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'the', 'caf', 'later', 'discontinued', 'the', '', 'role', 'for', 'conventional', 'attack', ',', 'the', 'm', '6', '1', 'a', '1', 'was', '', ',', 'along', 'with', 'u.s.', '', '``', 'iron', \"''\", 'bombs', ',', 'british', '', '7', '5', '5', 'cluster', 'bombs', 'and', '', '', '7', 'rocket', '', '.', '', '', '', '', '', '']\n", "['', '', 'mountain', 'range', 'is', 'located', 'in', 'the', 'northern', 'central', 'part', 'of', '', 'province', ',', 'directly', 'north', 'of', 'the', 'neighboring', '', 'mountain', 'range', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'part', 'of', 'the', '', 'bears', 'about', '2', '5', '', 'rows', 'of', 'tiny', '', ',', 'and', 'the', 'distal', 'part', 'bears', '6', '', 'rows', 'of', 'larger', ',', '', '', ',', 'and', 'a', 'ring', 'of', '', 'at', 'the', 'tip', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', ',', 'from', '1', '9', '4', '5', 'to', '1', '9', '5', '0', ',', 'a', 'county', 'constituency', 'of', 'the', 'house', 'of', 'commons', 'of', 'the', 'parliament', 'of', 'the', 'united', 'kingdom', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'auction', 'website', 'on', 'june', '2', '5', ',', '2', '0', '1', '0', 'and', 'sold', 'for', '1', ',', '6', '9', '9', ',', '0', '0', '0', 'yen', 'after', 'starting', 'the', 'auction', 'at', '1', 'yen', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'subsequent', 'attack', 'on', '', 'was', 'more', 'successful', 'with', 'the', 'british', 'capturing', 'the', 'fort', 'and', 'its', 'garrison', ',', 'but', 'then', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'also', 'in', '1', '9', '3', '2', ',', 'that', 'he', 'became', 'commander-in-chief', 'of', 'the', 'veterans', 'of', 'foreign', 'wars', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'karl', 'schmidt', 'married', 'margaret', '', 'in', '1', '9', '1', '9', ',', 'and', 'they', 'had', 'two', 'sons', ',', 'john', 'and', 'robert', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'commune', 'in', '', 'county', ',', '', ',', 'romania', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', '1', '7', '7', '6', 'the', '', '', 'factory', 'had', 'shops', 'in', 'aachen', ',', '', ',', 'frankfurt', 'am', 'main', ',', '', ',', 'mainz', ',', 'munich', 'and', 'nancy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'second', 'world', 'war', ',', '8', '0', '%', 'of', 'hallschlag', 'was', 'destroyed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'college', 'is', 'funded', 'by', 'the', 'university', 'grants', 'commission', ',', 'the', 'state', 'government', ',', 'and', 'the', 'members', 'of', 'parliament', 'local', 'area', 'development', 'scheme', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'if', 'the', 'cyst', 'has', '', 'enough', 'that', 'it', 'is', 'not', 'causing', 'any', 'pain', 'or', 'trouble', 'anymore', ',', 'then', 'a', 'second', 'treatment', 'might', 'not', 'be', 'necessary', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bruno', 'shoots', 'and', '', 'charles', 'in', 'cold', 'blood', 'in', 'front', 'of', 'charles', \"'\", 'son', 'edward', '(', 'nick', 'wright', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'technique', 'can', 'be', 'applied', 'to', 'a', 'moving', '', 'by', 'rotating', 'a', 'joint', ',', 'or', 'a', 'thrown', 'object', 'moving', 'along', 'a', 'parabolic', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'no', 'methodist', 'church', 'operating', 'in', 'bradford', 'since', 'the', 'closing', 'of', 'bradford', 'united', 'methodist', 'church', 'in', 'april', '2', '0', '1', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'justin', '', 'is', 'an', 'american', 'dj', 'and', 'record', 'producer', 'based', 'in', 'los', 'angeles', ',', 'california', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', 'the', 'census', 'of', '2', '0', '0', '0', ',', 'there', 'were', '5', '3', '4', 'people', ',', '2', '1', '8', 'households', ',', 'and', '1', '4', '6', 'families', 'residing', 'in', 'the', 'town', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'warring', 'groups', 'between', 'the', 'north', 'and', 'south', ',', 'in', 'darfur', 'he', 'was', 'working', 'for', '', 'between', 'darfur', 'and', 'the', 'south', 'and', 'between', 'darfur', 'and', 'the', 'rest', 'of', 'sudan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'april', '2', '8', ',', '2', '0', '1', '7', ',', 'the', 'company', \"'s\", 'board', 'of', 'directors', 'dropped', 'the', 'plan', 'of', 'selling', 'the', 'company', 'and', 'instead', 'focus', 'on', 'growth', 'strategies', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'everything', 'we', 'can', 'think', 'of', 'in', 'sudan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'practice', ',', 'many', 'us', 'helicopters', 'used', 'in', 'emergency', 'services', 'are', 'equipped', 'with', '', 'that', 'allow', 'communications', 'on', 'nearly', 'any', 'conventional', '', 'radio', 'system', ',', 'so', 'long', 'as', 'the', '', 'know', 'the', 'frequency', 'and', 'associated', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '4', '3', 'francis', 'stuart', ',', 'speaking', 'on', 'the', 'german', 'propaganda', 'broadcast', '``', '', \"''\", ',', 'urged', 'irish', 'voters', 'to', 'support', '', 'and', '', 'na', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', 'august', '1', '8', '3', '8', ',', 'a', 'committee', 'was', 'appointed', 'to', '', 'into', 'the', '', 'of', 'indian', 'labour', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'meanwhile', ',', 'datner', 'and', '', 'begin', 'to', 'start', 'a', 'secret', 'romance', 'for', 'each', 'other', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '2', '0', ',', 'the', 'columbus', 'historical', 'society', 'aims', 'to', 'raise', 'funds', 'to', 'purchase', 'engine', 'house', 'no', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'returned', 'to', 'brazil', 'in', '1', '9', '8', '8', 'where', 'he', 'composed', 'part', 'of', 'the', 'soundtrack', 'to', '``', '', '', \"''\", ',', 'which', 'was', 'also', 'for', 'the', 'globo', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'new', '', 'aluminium', 'alloy', 'cylinder', 'head', 'was', 'fitted', 'over', 'inclined', 'side', 'valves', 'and', '', 'aluminium', 'alloy', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'december', '2', '0', '1', '9', ',', 'along', 'with', '4', '2', 'other', 'leading', 'cultural', 'figures', ',', 'he', 'signed', 'a', 'letter', '', 'the', 'labour', 'party', 'under', '', \"'s\", 'leadership', 'in', 'the', '2', '0', '1', '9', 'general', 'election', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'before', 'the', 'division', 'of', 'germany', 'the', '', 'railway', 'was', 'an', 'important', 'link', 'between', 'the', 'industrial', 'areas', 'of', 'saxony', 'and', 'western', 'germany', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'subsequently', 'named', 'as', 'the', 'alberta', 'progressive', 'conservative', 'party', \"'s\", 'candidate', 'in', 'a', 'by-election', 'in', '', ',', 'the', 'seat', 'formerly', 'held', 'by', 'dave', '', ',', 'which', 'was', 'scheduled', 'for', 'october', '2', '7', ',', '2', '0', '1', '4', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'people', 'experience', 'little', 'or', 'no', 'pain', 'while', 'others', ',', 'with', 'exactly', 'the', 'same', 'amount', 'of', '', ',', 'experience', 'chronic', 'pain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'electoral', 'colleges', 'which', 'elect', 'hong', 'kong', 'and', 'macau', 'npc', 'members', 'are', 'largely', 'similar', 'in', 'composition', 'to', 'the', 'bodies', 'which', 'elect', 'the', 'chief', '', 'of', 'those', 'regions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'site', 'of', 'the', 'gold', 'coast', 'hospital', ',', 'also', 'formerly', 'known', 'as', 'the', '', '', 'hospital', ',', 'was', 'first', 'identified', 'as', 'being', 'a', 'suitable', 'location', 'for', 'a', 'hospital', 'in', '1', '9', '2', '1', 'after', 'a', 'number', 'of', 'other', 'locations', 'had', 'been', 'considered', '.', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'end', 'of', 'the', 'meal', ',', 'gonzalo', '', 'don', 'juan', 'by', 'the', '', ',', 'striking', 'him', 'dead', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'aim', 'was', '', 'to', 'transform', 'germany', 'into', 'a', 'global', 'power', 'through', '', 'diplomacy', ',', 'the', 'acquisition', 'of', 'overseas', 'colonies', ',', 'and', 'the', 'development', 'of', 'a', 'large', 'navy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'united', 'kingdom', ',', 'the', 'film', 'collected', 'across', '2', '3', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'wanting', 'international', '', 'and', 'education', ',', 'he', 'went', 'to', 'london', ',', 'uk', 'to', 'study', 'advanced', 'techniques', 'in', 'morris', 'school', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'cooper', '', 'an', 'array', 'of', '', '', 'such', 'as', 'giving', 'a', '', 'up', \"'\", 'when', '', ',', '', '', ',', 'and', 'distinctive', 'sense', 'of', 'humor', 'along', 'with', 'his', 'love', 'for', 'a', 'good', '', '', 'and', 'a', '``', '', 'fine', 'cup', 'of', 'coffee', \"''\", 'which', 'he', 'takes', 'black', '.', '', '']\n", "['', 'an', 'election', 'was', 'scheduled', 'for', 'the', 'beginning', 'of', '2', '0', '0', '7', ',', 'however', 'it', 'did', 'not', 'take', 'place', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'whilst', 'filming', 'the', '``', 'masters', 'of', 'horror', \"''\", 'episode', '', 'burns', 'in', '2', '0', '0', '5', ',', 'she', 'was', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'possibility', 'of', 'transfer', 'was', 'noted', 'as', 'a', 'possibility', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'first', 'received', 'permission', 'to', 'sell', '', ',', 'a', 'waste', 'product', 'of', 'its', 'paper', 'manufacturing', 'processes', ',', 'as', 'a', 'result', 'of', 'a', '', 'letter', 'issued', 'by', 'the', 'new', 'jersey', 'department', 'of', 'environmental', 'protection', 'in', '1', '9', '9', '3', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'one', 'of', 'the', 'novel', \"'s\", 'most', 'important', 'scenes', ',', 'angela', \"'s\", 'sister', 'is', 'newly', 'arrived', 'at', 'pennsylvania', 'station', 'from', 'philadelphia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'two', 'ideas', 'of', 'self', 'are', 'also', 'called', '', 'styles', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'around', 'the', 'same', 'time', ',', '', '', 'was', 'bought', 'out', 'by', 'ministry', 'of', 'sound', 'and', 'the', 'album', 'got', 'shelved', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'january', '2', '0', ',', '2', '0', '1', '2', ',', 'brown', 'announced', 'that', 'nas', 'will', 'appear', 'as', 'a', 'guest', 'vocalist', 'on', 'the', 'album', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'are', 'kept', 'to', '', '', 'of', 'old', 'programs', 'but', 'may', 'eventually', 'be', 'deleted', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'succeeded', 'in', '', 'a', 'church', 'which', 'was', 'situated', 'approximately', 'where', 'the', 'guildford', 'grammar', 'school', 'chapel', 'now', 'stands', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'several', 'similar', '', ',', 'probably', 'made', 'in', 'egypt', 'in', 'the', 'name', 'of', '', 'i', ',', 'have', 'since', 'been', 'found', ',', 'such', 'as', 'the', '', 'of', '', 'i', ',', 'found', 'in', 'the', 'ruins', 'of', 'the', '', 'at', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'offers', '', 'i', 'instrumental', 'approach', 'and', 'aviation', 'fuel', 'station', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '2', 'the', 'caulfield', 'institute', 'of', 'technology', '', 'with', 'the', 'state', 'college', 'of', 'victoria', 'at', '', 'to', 'form', 'the', '', 'institute', 'of', 'technology', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'later', ',', 'more', 'affordable', 'models', 'in', '2', '0', 'w', 'and', '4', '0', 'w', 'were', 'added', ',', 'with', '', '', 'technology', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'if', 'players', 'have', 'too', 'few', 'remaining', 'traps', 'to', 'sufficiently', 'hurt', 'each', 'bandit', ',', 'the', 'game', 'will', 'continue', ',', 'but', 'victory', 'will', 'be', 'impossible', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'controls', 'how', 'much', 'voltage', 'is', 'applied', ',', 'and', 'for', 'how', 'long', ',', 'depending', 'on', 'the', 'fitting', 'in', 'use', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'wards', 'in', '', 'cottage', 'hospital', 'and', '', 'general', 'were', 'also', 'named', 'after', 'him', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'transmit', 'signal', 'will', '', 'into', 'the', 'receiver', 'on', 'practical', 'systems', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'current', 'main', 'village', ',', 'bridge', 'of', 'nethy', ',', 'now', 'more', 'well', 'known', 'as', 'nethy', 'bridge', 'was', 'located', 'around', 'the', '', 'of', 'the', 'river', 'nethy', 'and', 'the', '', '', ',', 'at', ';', 'its', 'earlier', 'growth', 'was', 'mostly', '', 'along', 'the', 'banks', 'of', 'the', 'nethy', '.', '', '', '', '', '']\n", "['', 'its', 'population', 'is', '8', '2', '8', '(', '2', '0', '1', '1', 'census', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'sixth', 'school', ',', 'boundary', 'beach', '(', 'grades', '', '3', ')', ',', 'closed', 'in', 'june', '2', '0', '0', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'language', 'designed', 'by', 'david', '', ',', 'whose', 'programs', 'are', '', 'that', 'look', 'like', 'abstract', 'art', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'congress', '', 'this', 'decision', 'would', 'have', 'serious', '', 'throughout', 'the', 'government', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'originally', 'named', 'at', '', ',', 'the', 'villages', 'of', '', 'and', '', 'now', 'sit', 'a', 'mile', 'up', 'the', 'a', '3', '8', '6', 'from', 'the', 'site', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ana', 'begins', 'to', 'suspect', 'that', '', 'and', 'salvador', 'are', 'behind', '', \"'s\", 'death', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'exhibited', 'her', 'work', 'at', 'the', 'palace', 'of', 'fine', 'arts', 'at', 'the', '1', '8', '9', '3', 'world', \"'s\", '', 'exposition', 'in', 'chicago', ',', 'illinois', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'generate', 'shorter', 'and', 'larger', '', '', 'currents', 'than', 'other', 'ionotropic', 'glutamate', 'receptors', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'philippines', ',', 'the', 'squadron', 'received', 'a', 'wide', 'variety', 'of', '', '', 'aircraft', 'transferred', 'from', 'units', 'in', 'the', 'united', 'states', 'during', 'the', '', 'years', 'of', 'air', 'corps', 'procurement', 'during', 'the', '1', '9', '2', '0', 's', 'and', '1', '9', '3', '0', 's', '', '', '', '', '', '', '', '']\n", "['', 'the', 'earliest', 'record', 'of', 'saint', 'patrick', \"'s\", 'day', '', 'in', 'the', 'city', 'is', '1', '8', '0', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'later', 'cases', 'reported', 'in', 'the', 'early', '1', '9', '9', '0', 's', 'began', 'to', 'show', 'that', '', ',', '', ',', 'seizures', ',', 'and', 'a', '', '', 'were', 'frequent', 'clinical', 'features', 'as', 'well', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'became', 'educated', 'at', 'shanghai', 'university', 'in', 'his', 'early', 'days', 'and', 'later', 'joined', 'the', 'chinese', 'youth', ',', 'and', 'turned', 'into', 'a', '', 'member', 'in', '1', '9', '2', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'october', '1', '1', ',', '2', '0', '1', '1', ',', 'virtual', 'programming', 'released', '', 'legacy', 'collection', ',', 'which', 'includes', 'the', 'original', 'game', 'and', 'its', 'three', 'expansion', '', ',', 'for', 'mac', 'os', 'x', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'worcester', 'castle', 'was', 'in', 'place', 'by', '1', '0', '6', '9', ',', 'its', 'outer', '', 'built', 'on', 'land', 'that', 'had', 'previously', 'been', 'the', 'cemetery', 'for', 'the', 'monks', 'of', 'the', 'worcester', 'cathedral', 'chapter', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'joined', 'the', 'law', 'firm', 'of', '', '', 'henderson', '', 'where', 'he', 'practiced', 'corporate', 'law', 'and', 'was', 'a', 'senior', 'partner', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '-', '', 'weekly', 'express', 'is', 'an', 'express', 'train', 'belonging', 'to', 'northeast', 'frontier', 'railway', 'zone', 'that', 'runs', 'between', '', 'and', '', 'in', 'india', ',', 'covering', 'the', 'states', 'of', 'jharkhand', ',', '', ',', 'west', 'bengal', ',', '', 'and', 'assam', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'increased', 'activity', 'of', 'these', '', 'bacteria', 'results', 'in', 'a', 'number', 'of', 'effects', ',', 'both', 'directly', 'by', 'the', 'bacteria', 'themselves', 'or', '', 'by', 'the', 'organic', '', 'they', 'produce', 'via', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'his', 'father', 'ultimately', 'retained', 'control', 'over', 'state', 'finances', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'siding', 'extends', 'around', 'to', 'the', '', 'of', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'still', ',', 'they', 'continued', 'to', 'pressure', 'her', ',', 'but', 'she', 'continued', 'refusing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'hall', 'is', 'administered', 'by', 'the', 'united', 'states', 'army', 'intelligence', 'center', 'at', 'fort', '', ',', 'arizona', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'first', 'published', 'in', 'january', '2', '0', '0', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'songs', 'were', 'written', 'and', 'composed', 'by', '', '', 'tiger', 'and', 'lee', '', 'who', 'have', 'also', 'produced', 'songs', 'for', 'their', '', ',', '4', 'minute', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'member', 'of', 'the', 'national', 'assembly', 'of', 'madagascar', ',', 'he', 'was', 'elected', 'as', 'a', 'member', 'of', 'the', '', 'i', '', 'party', ';', 'he', 'represents', 'the', 'constituency', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'are', 'not', '', 'relative', 'to', 'other', 'parts', 'of', 'the', 'locomotive', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'grew', 'up', 'in', '', ',', 'new', 'york', ',', 'nicknamed', '``', '', ',', \"''\", 'after', 'his', 'father', \"'s\", 'rank', 'in', 'the', 'united', 'states', 'army', 'during', 'world', 'war', 'ii', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'later', 'developed', 'the', 'highly', 'dangerous', '', 'bombs', ',', 'which', 'left', 'half', 'of', 'the', 'hemisphere', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'is', 'because', 'it', 'focuses', 'on', 'the', '', 'of', 'human', 'rights', ',', 'but', 'also', '``', '', 'and', '', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'together', 'with', 'one', '', 'of', 'potatoes', ',', 'this', 'then', 'formed', 'the', 'entire', 'weekly', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', '9', 'march', '1', '9', '1', '8', ',', '5', '3', 'men', '', 'as', 'workers', 'boarded', 'the', 'icebreaker', 'and', 'segersven', 'presented', 'a', '', 'written', 'order', 'for', 'the', 'ship', \"'s\", 'political', '', 'claiming', 'that', 'he', 'and', 'his', 'men', 'were', 'to', 'be', 'transported', 'to', '', 'for', 'construction', 'work', '.', '', '', '']\n", "['', 'at', 'the', 'western', 'end', 'of', 'the', 'church', 'is', 'a', 'large', ',', 'square', 'tower', 'of', 'three', 'stages', ',', 'dated', 'to', 'the', '1', '4', 'th', 'century', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'astronomers', 'have', 'created', 'a', 'rough', 'map', 'of', 'hd', '1', '8', '9', '7', '3', '3', 'b', \"'s\", '', 'features', 'using', 'data', 'from', 'the', 'spitzer', '', 'space', 'telescope', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'four', '', 'and', 'a', 'presidential', '', 'were', 'also', 'killed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'a', 'total', 'of', '9', '5', 'shows', 'at', 'the', 'end', 'of', 'this', 'run', ',', '``', '', '', '', '', \"''\", 'is', 'the', 'longest', 'running', 'musical', 'ever', 'staged', 'by', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'yet', 'at', 'the', 'end', 'of', '1', '8', '7', '4', ',', 'after', 'four', 'years', 'of', 'labor', ',', 'he', 'could', 'not', 'report', 'one', 'convert', ',', 'not', 'even', 'one', 'who', 'could', 'be', '', 'as', 'interested', 'in', 'christianity', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '(', 'the', 'company', 'later', 'dropped', 'the', '', 'from', 'the', 'name', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'later', 'appeared', 'in', 'such', '', 'films', 'as', '``', 'screen', 'tests', \"''\", '(', '1', '9', '6', '4', ')', ',', '``', 'the', 'life', 'of', '', '', \"''\", '(', '1', '9', '6', '5', ')', 'and', '``', '', 'girls', \"''\", '(', '1', '9', '6', '6', ')', ',', 'among', 'others', '.', '', '', '']\n", "['', 'it', 'also', 'included', 'a', 'guest', 'appearance', 'by', 'the', 'legendary', 'guitarist', 'peter', 'moon', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'summer', ',', 'they', '', 'on', 'dense', '', 'of', '', 'at', 'the', 'edge', 'of', 'the', 'ice', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', 'this', 'point', ',', 'it', 'becomes', 'a', 'normal', 'walk', 'again', ',', 'on', 'easily', '', 'rocky', 'terrain', ',', 'all', 'the', 'way', 'up', 'to', 'the', 'southern', 'peak', 'with', 'its', 'imposing', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'cylinder', 'heads', 'were', 'another', 'fundamental', 'change', 'of', 'the', 'magnum', 'engine', ',', 'being', 'designed', 'to', 'meet', '', 'requirements', 'in', 'both', 'power', 'and', 'emissions', 'by', 'increasing', 'efficiency', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'angiotensin', 'ii', 'receptor', '', 'therapy', '(', 'also', 'referred', 'to', 'as', 'at', '1', '', 'or', 'angiotensin', 'receptor', '', ')', ',', 'particularly', 'using', '', ',', 'is', 'an', 'acceptable', 'alternative', 'if', 'the', 'patient', 'is', 'unable', 'to', '', '', 'therapy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '``', 'dox', 'castle', \"''\", '', 'and', 'the', 'related', 'bright', 'red', 'dox', 'sandstone', 'formation', 'are', 'named', 'for', 'her', ',', 'supposedly', 'in', 'tribute', 'to', 'her', 'bright', 'red', 'hair', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'is', 'a', 'so-called', 'old', '', 'landscape', ',', 'in', 'which', 'erosion', 'and', '', 'processes', 'have', 'been', 'around', 'for', 'a', 'very', 'long', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'the', 'end', 'of', 'the', 'onion', 'season', 'in', 'march', '1', '9', '5', '6', ',', '', 'and', '', 'had', 'flooded', 'the', 'markets', 'with', 'their', 'onions', 'and', 'driven', 'the', 'price', 'of', 'of', 'onions', 'down', 'to', '1', '0', '', 'a', 'bag', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '3', ',', 'morris', 'glasgow', 'was', 'sentenced', 'to', 'jail', 'for', 'seven', 'years', 'once', 'he', 'was', 'identified', 'as', 'the', 'crime', 'boss', 'of', 'a', 'nationwide', '', 'ring', ',', 'possibly', 'npf', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'but', 'if', 'the', 'cyst', 'is', 'still', 'causing', 'an', 'issue', 'after', 'the', 'treatment', ',', 'the', 'treatment', 'must', 'be', 'repeated', ',', 'or', 'another', 'method', 'has', 'to', 'be', 'used', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', '', 'gave', 'the', '', 'great', 'financial', 'security', 'and', 'a', 'good', 'lifestyle', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'late', '1', '9', '8', '8', ',', '``', '', 'user', \"''\", 'gave', 'the', 'game', 'the', '``', '', 'up', 'of', 'the', 'year', \"''\", 'award', 'for', 'its', 'impressive', 'graphics', 'and', 'hardware', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'built', 'in', '1', '9', '2', '0', 'by', 'the', 'drake', '', '&', 'amp', ';', 'construction', 'co.', ',', 'and', 'designed', 'by', 'architect', 'b.', '', 'in', '', 'style', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'functions', 'by', '', '', 'and', 'thus', 'is', 'a', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'common', 'law', 'countries', 'that', 'retain', 'the', 'idea', 'of', 'control', 'and', 'emancipation', 'include', 'canada', ',', 'south', 'africa', ',', 'and', 'the', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'team', 'played', 'their', 'home', 'games', 'at', 'stanford', 'stadium', 'in', 'stanford', ',', 'california', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'is', 'also', 'known', 'for', 'her', 'theories', 'on', 'the', 'influence', 'of', 'ice', 'in', 'the', '', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'echo', 'tv', 'is', 'affiliated', 'with', 'echo', 'of', 'moscow', 'radio', 'station', 'and', '', 'satellite', 'television', 'network', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'two', 'of', 'the', 'three', 'free', 'runners', 'from', '``', 'jump', 'london', \"''\", ',', '', '', 'and', '', 'ben', '', ',', 'appear', 'alongside', 'the', 'members', 'of', 'urban', '', ',', 'as', 'they', 'interact', 'with', 'numerous', 'famous', '', 'all', 'over', 'britain', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'aliens', 'force', 'robot', '1', '3', '5', '9', 'to', 'take', 'the', 'form', 'of', 'a', 'fire', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', '2', '0', '1', '0', ',', 'he', 'has', 'been', 'on', '', '', ',', '', '', ',', 'a', 'soap', 'opera', 'on', 'the', '', 'television', 'network', ',', 'as', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'was', 'housed', 'in', 'the', 'observatory', 'with', 'the', 'main', 'telescope', 'in', '1', '9', '7', '7', 'when', 'it', 'was', 'built', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', '', \"''\", 'was', 'released', 'on', '1', '9', 'may', '2', '0', '1', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'study', 'identified', 'that', '', 'children', 'had', 'an', 'almost', 'twenty', 'times', 'greater', 'risk', 'than', 'thin', 'children', ',', 'with', 'a', '', 'so', 'the', 'greater', 'the', 'weight', 'of', 'the', 'child', ',', 'the', 'greater', 'the', 'risk', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'john', '', ',', 'formerly', 'assistant', 'pastor', 'at', 'st.', 'matthew', 'the', '', 'church', ',', 'was', 'appointed', 'the', 'first', 'pastor', 'of', 'the', 'parish', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'the', 'seventh', 'series', ',', 'they', 'were', 'also', 'frequently', 'visited', 'by', 'a', 'detective', 'named', '', '', '(', 'played', 'by', '', 'van', '', ')', '-', 'however', ',', 'this', 'recurring', '', 'would', 'only', 'go', 'on', 'until', 'the', 'end', 'of', 'that', 'series', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'st.', 'croix', '', 'indians', 'of', 'wisconsin', 'is', 'a', '', 'recognized', 'tribe', 'governed', 'by', 'a', '', 'council', 'elected', 'for', 'two-year', 'terms', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'moves', 'to', 'the', 'program', 'counter', 'are', 'allowed', 'and', 'perform', 'jumps', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'sibley', 'is', 'perhaps', 'best', 'known', 'as', 'a', 'member', 'of', 'the', 'berkeley', 'school', 'board', 'from', '1', '9', '6', '1', 'to', '1', '9', '7', '1', ',', 'and', 'sometimes', 'its', 'president', ',', 'during', 'a', 'time', 'when', 'berkeley', 'became', 'one', 'of', 'the', 'first', 'cities', 'in', 'the', 'country', 'to', '', '', 'its', 'schools', '.', '']\n", "['', 'this', 'production', 'was', 'heavily', 'edited', 'by', '', '', 'with', 'significant', '', 'to', 'the', 'script', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'grade', '3', 'avms', 'may', 'or', 'may', 'not', 'be', '', 'to', 'surgery', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'but', 'for', 'the', 'next', 'race', ',', 'the', 'san', '', 'grand', 'prix', ',', 'eddie', 'jordan', 'brought', 'de', '', 'back', 'to', 'the', 'team', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'commissioned', 'by', 'peter', '', '', 'and', 'built', 'from', '1', '7', '6', '1', 'to', '1', '7', '6', '6', 'based', 'on', 'plans', 'by', 'the', 'architect', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'de', '', 'de', '', ',', '', '', '(', '1', '6', 'august', '1', '6', '9', '6', ',', 'paris', '2', '2', 'august', '1', '7', '6', '4', ',', 'paris', ')', 'was', 'a', 'french', 'politician', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '7', '8', '9', ',', 'a', 'hungarian', '', ',', '', '', ',', 'discovered', 'the', 'element', 'independently', 'in', 'an', '', 'from', '', 'that', 'had', 'been', 'regarded', 'as', '', '', ',', 'but', 'later', 'he', 'gave', 'the', 'credit', 'to', 'müller', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'additional', '3', '7', '.', '8', 'percent', 'of', 'pennsylvania', 'public', 'school', 'districts', 'made', 'ayp', 'based', 'on', 'a', 'calculated', 'method', 'called', 'safe', 'harbor', ',', '8', '.', '2', 'percent', 'on', 'the', 'growth', 'model', 'and', '0', '.', '8', 'percent', 'on', 'a', 'two-year', 'average', 'performance', '.', '', '', '', '', '', '', '', '']\n", "['', 'this', 'resulted', 'in', 'music', 'that', 'reflected', 'mccarthy', \"'s\", '', '', 'such', 'as', '``', 'turn', 'the', 'page', \"''\", 'for', 'electric', 'guitar', 'and', 'orchestra', '(', 'based', 'on', 'a', 'guitar', 'solo', 'played', 'by', 'jimmy', 'page', 'from', 'the', 'rock', 'group', 'led', '', ')', ',', 'and', '``', 'chamber', 'symphony', 'no', '.', '', '', '', '']\n", "['', 'they', 'also', 'warned', 'the', 'owner', 'of', 'a', 'building', 'in', 'the', 'town', ',', 'who', 'was', 'allegedly', '', 'rooms', 'only', 'to', '', ',', 'to', '', 'them', 'within', 'seven', 'days', 'or', 'face', 'their', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'also', 'two', 'or', 'three', '', 'scales', 'before', 'the', 'termen', 'above', 'the', 'middle', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'fortunately', ',', 'it', 'was', 'found', 'a', 'little', 'more', 'than', 'a', 'month', 'later', ',', '', 'and', 'ready', 'to', 'ship', 'abroad', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'central', 'pacific', 'completed', 'two', 'segments', 'on', 'which', 'the', 'oregon', 'eastern', 'had', 'begun', 'work', ':', '', 'to', '', 'and', '', 'to', '', ',', 'in', 'may', 'and', 'september', '1', '9', '1', '2', 'respectively', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'most', 'of', 'brazil', 'lies', 'in', 'the', 'tropics', ',', 'more', 'than', '6', '0', 'percent', 'of', 'the', 'country', \"'s\", 'population', 'live', 'in', 'areas', 'which', 'are', '', 'either', 'by', 'altitude', ',', 'sea', 'winds', 'or', 'polar', 'fronts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '0', '', 'hill', 'won', 'the', 'national', 'league', 'title', ',', 'and', 'in', '1', '9', '9', '1', 'were', 'beaten', 'in', 'the', '', 'national', 'cup', 'final', 'in', 'salford', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '``', '', 'daily', 'mail', \"''\", 'was', 'the', 'only', 'newspaper', 'in', 'south', 'africa', 'at', 'that', 'time', 'to', 'report', 'on', 'events', 'in', 'black', 'south', 'african', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'no', 'reference', 'to', 'diego', 'between', '9', '5', '8', 'and', 'his', '', 'of', 'his', '', 'in', '9', '6', '7', 'save', 'for', 'a', 'single', 'charter', '', 'from', 'february', '9', '6', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'harris', 'eventually', 'made', 'uk', 'chart', 'history', 'by', 'becoming', 'the', 'first', 'artist', 'to', '', 'eight', '', '1', '0', 'singles', 'from', 'one', 'studio', 'album', ',', 'breaking', 'the', 'record', 'previously', 'set', 'by', 'michael', 'jackson', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'further', 'thesis', 'of', '2', '.', 'and', '3', '.', 'and', 'their', 'subsidiary', '', 'is', '', \"'s\", '``', 'picture', 'theory', \"''\", 'of', 'language', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hydrothermal', 'monazites', 'tend', 'to', 'appear', 'in', '', 'of', 'multiple', 'crystals', ',', 'while', '', 'monazites', 'tend', 'to', 'appear', '', 'distributed', 'throughout', 'the', 'rock', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'women', 'receiving', 'government', 'assisted', 'insurance', 'were', 'subjected', 'to', 'the', 'most', 'discrimination', 'from', 'the', '', 'professionals', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thus', ',', 'to', 'say', '``', 'you', 'know', 'that', ',', \"''\", 'speakers', 'from', '', 'may', 'say', '``', 'ya', '', \"''\", ',', 'the', '``', '', \"''\", 'occurring', 'as', 'a', '', 'prefix', 'before', '', 'marker', '``', '', \"''\", ',', 'whereas', 'other', 'speakers', 'would', 'prefer', '``', '', '', \"''\", '.', '', '', '', '']\n", "['', 'during', 'his', 'term', ',', 'hollande', 'battled', 'with', 'high', 'unemployment', ',', 'poor', 'opinion', 'ratings', 'and', 'a', '', 'group', 'of', 'left-wing', 'socialist', 'mps', 'known', 'as', '``', '', \"''\", '(', 'rebels', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', '', 'later', 'told', 'his', '', ':', '``', 'i', 'met', '', 'ibn', '', 'at', 'the', 'door', 'of', 'the', 'house', 'of', '', 'while', 'the', '', 'of', 'allah', 'was', 'in', 'it', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'valve', '', 'discusses', 'the', 'software', ',', 'as', 'it', 'may', 'help', '', 'write', 'new', 'code', 'or', 'conduct', 'social', 'engineering', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'originally', 'drafted', 'in', 'the', 'second', 'round', ',', '4', '4', 'th', 'overall', ',', 'at', 'the', '2', '0', '0', '2', 'nhl', 'entry', 'draft', 'by', 'the', '', '', ',', 'he', 'most', 'notably', 'served', 'as', 'an', 'alternate', 'captain', 'for', 'the', 'los', 'angeles', 'kings', ',', 'with', 'whom', 'he', 'won', 'the', 'stanley', 'cup', 'twice', '.', '']\n", "['', '', ',', '', 'at', 'rasha', \"'s\", 'death', ',', 'manages', 'to', '', 'one', 'of', 'ido', \"'s\", 'attacks', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'company', 'was', 'formed', 'as', 'international', 'power', 'in', '2', '0', '0', '0', 'by', 'the', '', 'of', 'national', 'power', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'disease', 'spread', 'and', 'in', '2', '0', '0', '8', ',', 'infected', 'carcasses', 'were', 'found', 'in', 'norway', ',', 'sweden', 'and', 'finland', 'and', 'a', 'year', 'later', 'in', 'germany', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', '', 'in', 'numerous', 'types', 'of', 'motorcycle', 'racing', ':', 'cross', 'country', ',', '', 'racing', ',', '', '', ',', '', ',', 'road', 'racing', ',', 'and', 'short', 'track', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'maritime', 'administration', '', 'the', 'cost', 'of', 'construction', 'by', 'paying', '$', '1', '9', ',', '5', '2', '8', ',', '3', '6', '2', '(', '$', 'today', ')', 'to', 'support', 'the', 'us', '', 'industry', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '``', '', \"''\", '(', 'a', '2', '1', '5', '', '2', '1', '5', ')', 'was', 'an', '', 'and', 'constructed', 'escort', 'maintenance', 'ship', 'of', 'the', 'royal', 'australian', 'navy', '(', 'ran', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'fact', 'that', ',', 'on', 'top', 'of', 'that', ',', 'he', 'is', 'a', '', ',', 'is', 'no', '', ',', 'he', 'knows', 'about', 'the', 'theft', ',', 'but', 'will', 'not', 'report', 'it', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'school', 'is', 'well', 'known', 'for', 'hosting', 'the', 'ready', 'set', 'and', '', 'rae', '', 'as', 'a', 'school', 'spirit', 'competition', 'win', 'from', 'kelly', '9', '5', '.', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'risk', 'of', 'car', 'crash', 'after', 'these', '', 'increased', 'by', '1', '6', '8', '%', ',', 'and', 'the', 'risk', 'of', 'near', 'miss', 'by', '4', '6', '0', '%', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'city', 'of', 'san', 'pedro', 'de', '', 'lies', 'northwest', 'of', 'lejía', 'lake', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'remained', '', 'during', 'the', '', 'blitz', ',', 'being', 'protected', 'by', 'sand', 'bags', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", '', 'new', 'york', 'on', '3', 'november', 'and', 'proceeded', 'to', 'green', '', 'springs', ',', 'florida', ',', 'where', 'she', 'was', 'decommissioned', 'on', '1', '7', 'june', '1', '9', '4', '6', 'and', '', 'with', 'the', 'st.', 'johns', 'river', 'group', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '7', '3', '5', '4', ',', 'the', 'charter', 'of', 'the', 'philippine', 'postal', 'corporation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mac', 'returned', 'to', '', 'city', 'after', '', 'time', 'in', 'the', 'southwestern', 'u.s.', 'helping', 'out', 'teaching', '', 'and', '', 'children', 'on', 'an', 'indian', 'reservation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'past', '', 'franchises', 'which', 'originally', 'served', 'london', 'were', '', '(', 'weekdays', ')', 'and', 'associated', 'television', '(', 'weekends', ')', 'began', '', 'on', '', '9', 'on', '2', '2', 'september', '1', '9', '5', '5', ',', 'and', 'were', 'the', 'first', '', 'services', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'resigned', 'as', 'chancellor', 'in', '1', '4', '1', '0', ',', 'but', 'in', '1', '4', '1', '3', 'the', 'new', 'king', 'henry', 'v', '', 'him', 'to', 'that', 'office', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', 'the', 'introduction', 'of', 'standard', '', 'and', 'a', 'common', 'written', 'standard', ',', 'the', 'number', 'of', '', 'spelling', 'variants', 'has', 'begun', 'to', 'decrease', ',', 'especially', 'in', 'spain', ',', 'taking', 'on', 'a', 'form', 'in', 'accordance', 'with', 'the', 'meaning', 'of', 'the', 'surname', 'in', '', ',', 'which', 'remains', '', 'in', 'other', 'language', '', '.']\n", "['', 'it', 'is', 'a', 'part', 'of', 'the', 'roman', 'catholic', 'archdiocese', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'name', '``', '', \"''\", 'itself', 'means', '``', 'wet', 'field', \"''\", ',', 'and', '', 'to', 'its', 'previous', 'habitat', 'before', 'human', 'intervention', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'its', 'early', 'days', 'channel', '2', 'broadcast', 'at', 'an', '', 'of', 'just', 'one', '', ';', 'this', 'was', 'upgraded', 'to', 'five', '', 'in', '1', '9', '6', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'features', 'on', 'mads', '', \"'s\", 'song', '``', 'in', 'these', 'waters', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'lake', 'is', 'classified', 'as', 'a', '', 'and', '', 'fishery', ',', 'with', 'observed', 'species', 'including', 'rainbow', '', ',', 'lake', '', ',', '', 'salmon', ',', '', 'and', '', 'bass', ',', 'chain', '', ',', 'yellow', '', ',', 'white', '', ',', '', ',', 'and', 'brown', '', '.', '', '', '', '', '', '']\n", "['', 'the', 'current', 'property', 'was', 'listed', 'on', 'the', 'national', 'register', 'of', 'historic', 'places', 'in', '1', '9', '7', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'a', 'population', 'of', '6', '1', '8', ',', '3', '7', '5', 'according', 'to', 'the', '2', '0', '1', '0', 'census', ',', 'it', 'is', 'also', 'the', '7', 'th', '', 'city', 'in', 'argentina', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'to', 'relieve', '', 'on', 'the', 'single', 'track', 'north', 'coast', 'line', 'north', 'of', '', ',', 'the', 'rail', 'service', 'is', '', 'by', 'a', 'bus', 'service', 'operated', 'by', 'kangaroo', 'bus', 'lines', 'on', 'weekdays', 'between', '', 'and', '', 'as', 'route', '6', '4', '9', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'upon', 'leaving', 'college', ',', 'bush', 'took', 'a', 'position', 'with', 'chase', 'manhattan', 'bank', ',', 'where', 'he', 'worked', 'for', 'the', 'next', 'fifteen', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '3', 'he', 'starred', 'in', '``', 'les', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'experiments', 'in', '', 'or', '', 'science', ',', '', '', 'with', '', '', 'or', 'with', '', 'magnetic', 'field', '', 'in', 'form', 'of', 'wire', 'coils', '(', 'called', '', 'coils', ')', 'are', 'commonly', 'used', 'for', 'measuring', 'eye', 'movements', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '1', '8', 'months', \"''\", 'received', 'a', 'nomination', 'for', 'best', '', 'album', 'at', 'the', '5', '6', 'th', 'grammy', 'awards', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'like', '', 'and', '', ',', '', 'is', 'depicted', 'as', 'the', 'location', 'of', 'one', 'of', '', \"'s\", 'boutiques', ',', 'known', 'as', '``', '', 'for', 'you', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'taught', 'and', 'practised', 'medicine', 'at', 'the', 'hospital', '(', '``', '', \"''\", ')', '', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', '2', '0', '0', '6', 'census', ',', 'its', 'population', 'was', '4', '7', '6', ',', 'in', '9', '4', 'families', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'proposed', 'summit', 'crossing', 'offered', 'a', 'severe', 'test', 'of', '1', '8', 'th-century', 'engineering', 'skills', ',', 'materials', 'and', 'construction', 'techniques', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'supported', 'the', 'british', 'during', 'the', 'invasions', 'in', 'the', '', 'de', 'la', '', ',', 'taking', 'refuge', 'in', '1', '8', '0', '8', 'in', 'rio', 'de', 'janeiro', ',', 'where', 'he', 'was', 'appointed', 'secretary', 'of', 'the', '', '', ',', 'daughter', 'of', 'charles', 'iv', 'of', 'spain', '.', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'norman', 'sheriff', 'of', '', ',', '', '', 'oversaw', 'the', 'construction', 'of', 'a', 'new', 'castle', 'at', 'worcester', ',', 'although', 'nothing', 'now', 'remains', 'of', 'the', 'castle', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'tram', 'was', 'turning', 'right', 'to', 'the', 'entry', 'of', 'the', '', '', '(', '``', '', 'factory', \"''\", ')', 'as', 'the', 'car', 'probably', 'passed', 'a', 'red', 'traffic', 'light', 'and', '', 'with', 'the', 'tram', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', 'to', 'recording', ',', 'it', 'was', 'revealed', 'later', 'that', 'month', 'that', 'brown', 'was', 'in', 'the', 'studio', 'working', 'on', 'the', 'album', 'with', '', 'roth', ',', 'nas', ',', '', '', ',', '', ',', 'and', 'kid', 'sister', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', '', 'institute', 'of', 'physics', 'and', 'technology', 'is', 'a', 'university', 'in', '', ',', 'georgia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'several', 'former', '', 'members', 'have', 'been', 'sentenced', 'to', 'death', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'but', 'this', 'may', 'not', 'be', 'considered', 'direct', 'as', 'one', 'must', 'first', 'argue', 'about', 'why', 'the', 'other', 'factor', 'can', 'not', 'be', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'additionally', ',', 'a', 'new', 'residence', 'for', 'men', ',', '', 'hall', ',', 'began', 'accepting', 'residents', 'in', 'fall', '2', '0', '1', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'performed', 'a', 'solo', 'concert', 'as', 'part', 'of', 'the', 'american', '', 'series', 'at', 'lincoln', 'center', 'in', '2', '0', '0', '5', ',', 'featuring', '2', '0', 'songs', 'composed', 'by', 'a', 'group', 'of', 'younger', '', 'including', 'paul', '', ',', 'scott', '', ',', 'jeff', '', ',', 'barry', '', ',', 'and', 'joseph', '', '.', '']\n", "['', '', '(', ';', 'central', 'bavarian', ':', '``', '', \"''\", ')', 'is', 'the', '4', 'th', 'municipal', 'district', 'of', 'vienna', ',', 'austria', '(', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'construction', 'began', 'in', 'june', '2', '0', '1', '7', ',', 'and', 'was', 'completed', 'on', '2', '3', 'april', '2', '0', '2', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'a', '2', '×', '2', 'matrix', 'having', '', 'independent', 'rows', 'and', 'columns', 'usually', 'means', 'it', 'has', 'rank', '2', ',', 'in', 'this', 'case', 'we', 'require', 'linear', 'independence', 'over', 'a', 'smaller', 'field', 'so', 'the', 'rank', 'is', \"n't\", 'forced', 'to', 'be', '2', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'situated', 'at', 'the', 'end', 'of', 'a', 'valley', 'named', '', '(', 'possibly', 'from', '', 'for', '``', '', \"''\", '', ',', 'dam', ',', '``', '', \"'\", 'u', \"''\", 'valley', 'or', 'stream', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'january', '1', '6', ',', 'mayor', '', '', 'signed', 'the', 'ban', 'into', 'law', ',', 'and', 'it', 'went', 'into', 'effect', 'on', 'march', '1', '3', ',', '2', '0', '1', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'fails', 'to', 'maintain', 'the', '', 'till', 'the', 'very', 'end', 'though', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'the', 'final', 'season', 'in', '1', '9', '9', '0', ',', 'a', 'new', 'version', 'of', 'the', 'prelude', 'theme', 'was', 'recorded', ',', 'and', 'the', 'opening', 'theme', 'was', 'slightly', 'edited', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'served', 'as', 'vice', 'president', 'of', 'corporate', 'affairs', 'at', '', '', 'federal', 'between', '2', '0', '1', '1', 'and', '2', '0', '1', '3', ',', 'a', 'period', 'investigated', 'by', 'the', 'federal', 'police', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'the', 'woman', '', 'in', 'the', 'street', 'after', 'an', 'implied', 'sexual', 'assault', ',', 'and', 'the', 'video', 'ends', 'as', 'she', 'runs', 'home', 'to', '', 'a', 'gun', 'hidden', 'in', 'a', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'network', 'and', 'universal', 'serial', 'bus', '(', '', ')', '', 'were', 'under', 'heavy', 'development', ',', 'but', 'the', '', '', 'behind', 'the', 'other', 'components', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'both', 'he', 'and', 'his', 'wife', 'escaped', 'the', 'event', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'district', 'originally', 'included', '2', '4', 'contributing', 'buildings', ',', 'the', 'oakland', 'cemetery', ',', 'and', 'a', 'survey', 'marker', ';', 'the', '', 'hotel', 'was', 'later', 'added', 'to', 'the', 'district', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'april', '1', ',', '2', '0', '2', '1', ',', 'mcmahon', 'announced', 'that', 'she', 'would', 'be', 'taking', 'senior', 'status', 'effective', 'april', '1', '0', ',', '2', '0', '2', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'finally', ',', 'in', '1', '9', '1', '6', ',', 'without', 'further', '', 'of', 'boundaries', ',', 'the', 'territory', 'was', 'raised', 'to', 'the', 'status', 'of', 'an', 'archdiocese', ',', 'and', 'given', 'the', 'title', '``', 'archdiocese', 'of', 'cardiff', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'di', 'modica', '(', 'modica', 'chocolate', 'or', '``', 'chocolate', 'of', 'modica', \"''\", ',', 'also', 'known', 'as', '', '', ')', 'is', 'an', 'italian', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'game', 'picks', 'up', 'right', 'after', 'the', 'events', 'of', '``', 'duke', '', 'ii', \"''\", ',', 'with', 'duke', 'returning', 'to', 'earth', 'in', 'his', 'space', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'daley', 'attended', 'saint', 'michael', \"'s\", 'college', 'for', 'a', 'year', ',', 'and', 'then', 'began', 'the', 'study', 'of', 'law', 'in', 'the', 'office', 'of', 'attorney', 'raymond', 'l.', 'miles', 'of', 'newport', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'main', 'highway', 'runs', 'from', 'the', 'chinese', 'border', 'at', '', 'pass', 'north', 'to', '', 'on', '', '', 'lake', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'jobs', 'such', 'as', '', ',', 'and', 'positions', 'of', 'high', 'public', 'office', 'were', 'forbidden', 'for', 'women', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'is', 'not', 'only', 'located', 'in', 'another', 'part', 'of', 'the', 'city', ',', 'but', 'is', 'part', 'of', 'a', 'different', 'national', 'sanctuary', 'than', 'saint', 'sophia', 'cathedral', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'july', '2', '0', '0', '5', ',', 'dr', 'stephen', 'j.', '', 'took', 'over', 'as', 'marshall', 'university', \"'s\", 'president', 'and', 'dr', '', '', 'served', 'as', 'the', '', 'and', 'senior', 'vice', 'president', 'for', 'academic', 'affairs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'educated', 'at', 'the', 'local', 'high', 'school', 'and', 'attended', 'medical', 'school', 'of', 'the', 'university', 'of', 'pennsylvania', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'consists', 'of', 'a', '', 'ring', '', 'with', 'an', '', 'group', 'and', 'a', '', 'acid', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'rated', 'it', 'three', 'and', 'a', 'half', 'out', 'of', 'ten', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'triumph', 'of', '', 'over', 'logic', 'is', 'a', '', 'of', '', 'and', 'causes', 'some', 'scholars', 'to', 'consider', 'him', 'so', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'posluns', 'and', 'kay', 'had', 'never', 'met', 'each', 'other', 'prior', 'to', 'the', 'meeting', '(', 'an', '', 'who', 'worked', 'for', 'both', 'kay', 'and', 'the', 'posluns', 'had', 'arranged', 'the', 'meeting', ')', 'but', 'they', 'were', 'both', 'interested', 'in', 'acquiring', 'the', 'same', 'company', ',', 'tip', 'top', 'tailors', '.', '', '', '', '', '', '']\n", "['', 'the', 'project', 'would', 'generate', 'about', '4', '0', '0', ',', '0', '0', '0', '', 'of', 'electricity', '-', 'enough', 'electricity', 'to', 'power', 'over', '7', '5', ',', '0', '0', '0', 'average', 'queensland', 'homes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'of', 'their', 'efforts', 'to', 'buy', 'back', 'their', 'parents', \"'\", 'house', 'leads', 'them', 'to', '', 'what', 'makes', 'a', 'house', 'a', 'home', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'august', '2', '4', ',', '2', '0', '0', '7', ',', 'it', 'announced', 'success', 'in', 'its', 'effort', 'to', 'get', '', 'coffee', 'to', 'stop', 'using', '', '', 'from', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', 'the', '1', '8', '5', '0', 's', 'the', 'hill', 'was', 'also', 'nicknamed', '``', 'monte', '', \"''\", 'or', '``', 'monte', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'added', 'a', 'heavy', '', 'of', '', 'christianity', 'to', 'c.', 'h.', 'douglas', \"'\", 'monetary', 'theories', ';', 'as', 'a', 'result', ',', 'the', 'social', 'credit', 'movement', 'in', 'canada', 'has', 'had', 'a', 'strong', 'social', 'conservative', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'are', 'credited', 'for', '', 'the', 'growth', 'of', 'a', 'fashion', 'industry', 'in', 'malawi', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'argued', 'that', 'much', 'of', 'the', 'jewish', 'community', 'views', 'the', 'world', 'through', 'an', '', '``', 'holocaust', 'lens', \"''\", ',', 'in', 'which', 'a', '', 'jewish', 'state', 'is', 'required', 'to', 'prevent', 'a', 'second', 'holocaust', ',', 'and', 'that', 'this', 'causes', 'both', '', 'and', 'palestinians', 'to', 'suffer', '.', '', '', '', '', '', '']\n", "['', 'it', 'is', 'the', 'most', 'successful', 'club', 'in', 'the', 'history', 'of', 'the', 'sri', 'lankan', 'premier', 'league', ',', 'with', '1', '2', 'league', 'titles', 'and', 'has', 'also', 'won', 'the', 'sri', 'lankan', '', 'cup', '1', '6', 'times', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', '', \"'s\", 'enrollment', 'declined', 'in', 'the', 'late', '1', '9', '7', '0', 's', 'and', 'early', '1', '9', '8', '0', 's', ',', 'however', ',', 'its', 'student', 'body', 'became', 'increasingly', 'diverse', ':', 'older', '', 'students', ',', 'ethnic', 'and', 'racial', 'minority', 'students', ',', 'and', 'international', 'students', 'all', 'grew', 'in', 'numbers', '.', '', '']\n", "['', 'its', '', 'in', '', 'grande', '', ',', 'near', 'the', 'limit', 'with', 'the', 'departments', 'of', 'san', 'josé', ',', 'flores', ',', 'and', '', ',', 'and', 'flows', 'into', 'the', '', 'de', 'la', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'initially', 'the', 'normans', 'controlled', 'large', '', 'of', 'ireland', ',', 'securing', 'the', 'entire', 'east', 'coast', ',', 'from', '', 'up', 'to', 'eastern', '', 'and', 'penetrating', 'as', 'far', 'west', 'as', '', '(', 'galway', ')', 'and', '', '', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'then', 'i', 'asked', 'friends', 'if', 'they', 'watched', 'the', 'show', ',', 'and', 'people', 'who', 'said', 'they', 'did', 'were', 'pretty', 'cool', ',', 'so', 'that', 'was', 'my', 'research', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'located', 'on', 'the', 'island', 'is', 'most', 'of', 'the', 'city', 'of', 'alameda', ',', 'a', 'city', 'in', 'alameda', 'county', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'contract', 'has', 'been', 'expanded', '', 'on', 'june', '3', '0', ',', '2', '0', '2', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'end', 'of', 'the', 'channel', 'may', 'then', 'by', 'sealed', 'by', 'ice', ',', 'but', 'the', 'volcano', 'may', 'continue', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'inspired', 'him', 'to', 'continue', 'shooting', 'everyday', 'women', 'as', '', 'subjects', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'eventually', ',', 'the', '', 'told', '', ',', '``', 'now', 'you', 'can', 'do', 'what', 'you', 'want', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'opened', '1', '4', 'august', '1', '9', '1', '1', 'and', 'closed', '7', 'september', '1', '9', '6', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'played', 'at', 'club', 'level', 'for', '', '', '(', 'heritage', 'no', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'things', 'turned', 'upon', 'the', 'advent', 'of', 'the', 'republican', 'revolution', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '3', '6', '', 'purchased', 'kentucky', 'wagon', 'manufacturing', 'company', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'company', 'had', 'been', 'designing', 'gas', '', 'engines', 'since', '1', '9', '3', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'inducted', 'into', 'the', 'chico', 'state', 'athletic', 'hall', 'of', 'fame', 'in', '1', '9', '9', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'county', 'high', 'school', ',', 'is', 'a', 'mid', '', ',', 'rural', 'public', 'high', 'school', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'represented', 'westmeath', 'at', '', 'up', 'to', 'under-', '1', '6', 'level', ',', 'and', 'represented', 'westmeath', 'in', 'gaelic', 'football', 'all', 'the', 'way', 'to', 'minor', 'level', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'a', 'large', 'dark', 'brown', '', 'of', 'specialized', 'scales', 'on', '', 'half', 'of', '', ',', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'sun', '', 'mainly', 'feed', 'on', 'fruits', ',', 'flowers', ',', '', ',', '', ',', '', ',', '', ',', 'and', 'insects', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'swiss', 'secured', 'the', 'tie', 'by', 'winning', 'the', 'doubles', ',', 'so', 'mohr', 'was', 'given', 'a', 'run', 'in', 'the', 'reverse', 'singles', ',', 'which', 'he', 'lost', 'to', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'along', 'with', '``', '', '', \"''\", ',', 'it', 'makes', 'up', '5', '9', '%', 'of', '', 'production', 'in', 'turkey', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'received', 'the', '', 'marcus', '', 'award', 'in', '1', '9', '9', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'the', 'ban', 'in', 'poland', ',', 'med', 'tv', 'rented', 'satellites', 'from', 'usa', 'based', '', 'to', 'broadcast', 'its', 'programs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'disagreed', 'and', 'proposed', 'that', '5', '0', '0', 'shares', 'be', 'created', 'with', 'no', 'member', 'carrying', 'more', 'than', '1', '0', 'shares', 'with', 'board', 'members', 'given', '``', '7', 'or', '8', '``', 'shares', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'third', 'series', ',', 'again', 'reducing', 'to', 'ten', 'episodes', ',', 'aired', 'daily', '(', 'on', 'weekdays', ')', 'from', '1', '3', 'to', '2', '4', 'january', '2', '0', '1', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'all', 'three', 'papers', 'continued', 'to', 'publish', ',', 'despite', 'the', 'strike', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'feminist', 'approaches', 'to', 'bioethics', '(', 'international', 'network', 'on', 'feminist', 'approaches', 'to', 'bioethics', ')', ',', 'or', '', ',', 'is', 'a', 'network', 'of', '', 'in', 'bioethics', ',', 'adding', 'feminist', '', 'to', 'ethical', 'issues', 'in', 'health', 'care', 'and', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'anthology', 'prompted', 'two', '', 'at', 'the', 'university', 'of', 'newcastle', ',', 'christopher', '', 'and', 'paul', '', ',', 'to', 'seek', 'funding', 'for', 'a', 'poetry', 'competition', 'which', 'paved', 'the', 'way', 'for', 'the', 'first', 'official', '', 'poetry', 'prize', 'in', '1', '9', '8', '1', '.', '', '', '', '', '', '', '', '', '']\n", "['', '', 'returns', 'from', 'the', 'holiday', 'break', 'in', '``', '', \"''\", 'without', 'an', '', 'ring', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'february', '2', '8', ',', '2', '0', '1', '8', ',', 'a', 'portrait', 'of', 'ferguson', 'painted', 'by', 'joshua', 'adam', '', 'was', 'unveiled', 'at', 'the', 'michigan', 'state', 'capitol', 'by', 'the', 'michigan', 'legislative', 'black', 'caucus', 'due', 'to', 'a', 'bill', 'introduced', 'by', 'state', 'representative', '', '', '.', '', '', '', '', '', '', '']\n", "['', 'giuseppe', 'morello', 'became', 'the', '', 'di', '', '', '(', 'or', '``', 'boss', 'of', '', \"''\", ')', ',', 'but', 'before', 'long', 'he', 'and', '', '', 'were', 'arrested', 'and', 'charged', 'with', '', 'in', '1', '9', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'historians', 'note', 'that', 'hart', 'never', 'described', 'himself', 'as', '', ',', 'but', 'the', 'term', 'was', 'not', 'published', 'until', 'the', '1', '9', '2', '0', 's', ',', 'and', 'not', 'widely', 'used', 'until', 'the', '1', '9', '6', '0', 's', ',', 'near', 'hart', \"'s\", 'death', '.', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '2', '3', ',', 'wis', '5', '8', 'extended', 'northward', 'to', 'wis', '1', '2', '', '2', '9', '(', 'now', 'us', '1', '2', '', '1', '6', ')', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'succeeded', 'by', 'the', 'son', 'of', '', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'subject', 'of', 'the', 'song', 'is', 'close', 'to', 'the', 'one', 'of', '``', 'vietnam', \"''\", ',', 'the', '1', '9', '6', '9', 'jimmy', 'cliff', 'standard', 'covered', 'by', 'new', 'order', 'in', '2', '0', '0', '3', 'for', 'war', 'child', \"'s\", '``', 'hope', \"''\", 'album', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'army', 'corps', 'in', '', '1', '9', '4', '2', 'talks', 'about', '4', '2', '6', '9', 'people', 'armed', 'with', '4', '1', '9', '7', '', ',', '3', '5', 'light', 'machine', 'guns', 'and', '7', 'machine', 'guns', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'owned', 'over', 'of', 'land', 'in', 'the', 'area', 'that', 'he', 'was', 'able', 'to', 'purchase', 'as', 'part', 'of', 'the', 'settlement', 'program', 'given', 'to', 'veterans', 'of', 'the', 'american', 'revolutionary', 'war', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'club', 'set', 'about', 'looking', 'for', 'a', 'new', 'site', 'to', 'play', 'its', 'home', 'games', 'and', 'a', '', 'factory', 'site', 'on', 'firs', 'street', 'in', '', 'was', 'chosen', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'november', '2', '0', '1', '8', ',', '', 'launched', 'an', 'exhibition', '', 'london', \"'s\", 'six', '', 'history', 'of', '', 'at', 'the', 'st', 'james', \"'s\", 'market', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'expressions', 'of', '', 'that', '', 'noted', 'as', 'most', 'universal', 'based', 'on', 'research', 'are', ':', 'anger', ',', 'fear', ',', '', ',', '', ',', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'left', 'school', 'at', '1', '5', 'and', 'joined', '', 'studio', 'when', 'he', 'was', '1', '8', '/', '1', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'cuban', 'coach', '', '', 'has', 'worked', 'with', 'her', 'since', '2', '0', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'none', 'of', 'the', '1', '1', '', ',', 'who', 'were', 'all', 'crew', 'members', ',', 'survived', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'this', ',', 'she', 'became', 'the', 'first', 'woman', 'to', 'become', 'prime', 'minister', 'of', 'lithuania', 'and', 'first', 'prime', 'minister', 'after', '1', '1', 'th', 'of', 'march', ',', '1', '9', '9', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '5', '5', 'he', 'served', 'as', 'new', 'jersey', '', 'to', 'the', 'white', 'house', 'conference', 'on', 'education', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'pga', 'tour', 'member', 'in', '2', '0', '1', '9', ',', 'but', '', 'for', 'rookie', 'status', 'due', 'to', 'having', 'played', 'eight', 'or', 'more', 'pga', 'tour', 'events', 'in', 'a', 'previous', 'season', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '3', ',', 'the', 'bank', 'rebranded', 'its', 'operations', 'as', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'villoresi', 'sustained', 'a', 'number', 'of', 'deep', 'head', 'wounds', ',', '', '', ',', 'and', '', 'all', 'over', 'his', 'body', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'next', 'year', ',', 'it', 'became', 'a', 'three-year', 'high', 'school', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'an', '', 'artists', \"'\", 'community', 'housed', 'in', 'a', 'cluster', 'of', 'old', '', 'and', 'fishing', '', 'on', 'the', 'skagit', 'river', 'delta', 'in', 'skagit', 'county', ',', 'washington', ',', 'usa', ',', 'from', 'the', 'late', '1', '9', '6', '0', 's', 'to', 'the', 'mid', '1', '9', '8', '0', 's', '.', '', '', '']\n", "['', 'they', 'worked', 'together', 'on', 'several', 'projects', ',', 'and', 'the', 'first', '', 'of', 'suburban', '', 'album', ',', '``', 'status', '', \"''\", ',', 'was', 'released', 'by', '', '?', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'side', 'panels', 'show', 'scenes', 'from', 'the', 'life', 'of', 'jesus', ',', 'the', '', ',', '', ',', 'jesus', \"'\", '', 'and', 'prayer', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'indeed', ',', 'in', '1', '9', '6', '0', 'hand', 'of', 'the', 'cause', '', '', 'asked', 'for', '', 'for', 'the', '', 'her', 'race', 'had', 'done', 'and', 'praised', 'the', 'great', 'past', 'of', 'the', 'native', 'peoples', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '9', '6', '7', 'to', 'june', '1', '9', '7', '7', ',', '', 'was', 'minister', 'of', 'the', 'state', 'government', 'of', '', ',', 'serving', 'prime', 'ministers', 'peter', '', ',', '', '', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mice', 'contain', 'an', '', 'of', 'the', 'gene', 'called', '', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'season', '2', 'he', 'fought', 'in', 'the', 'royal', '', ',', 'beating', 'the', 'visitor', 'and', 'being', 'taken', 'out', 'by', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'transition', 'training', ',', 'graduates', 'were', 'sent', 'to', '', 'units', 'for', 'combat', 'training', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'a', '', 'city', 'council', 'debate', ',', 'henry', 'voted', 'with', 'the', 'prevailing', 'side', 'in', '', 'calls', 'for', 'the', 'establishment', 'of', 'a', 'separate', 'city', 'human', 'relations', 'commission', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'ended', 'his', 'speech', 'with', 'the', 'statement', '``', 'sir', ',', 'i', '', 'your', '', ',', 'your', 'strength', ',', 'your', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'used', 'to', 'be', 'thought', 'to', 'indicate', 'health', ',', 'but', 'it', 'has', 'since', 'been', 'shown', 'that', 'smooth', '', 'is', 'not', 'an', '', 'of', 'disease', ',', 'unless', 'it', 'is', 'smooth', '``', 'due', 'to', 'a', 'loss', \"''\", 'of', 'previously', 'existing', '', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'also', 'known', 'as', 'a', 'beverage', 'opener', ',', 'these', 'usually', 'includes', 'a', 'bottle', 'opener', 'of', 'the', 'simple', 'bottle', 'opener', 'style', 'but', 'includes', 'various', 'other', '', 'such', 'as', 'for', 'plastic', '', 'or', 'metal', 'beverage', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '5', '2', ',', 'st', '', \"'s\", 'convent', 'school', 'was', 'built', 'in', '', 'road', ',', '', '', '', 'with', 'land', 'donated', 'and', 'funds', 'raised', 'from', 'communities', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'whereas', 'the', 'church', 'and', 'temple', 'bells', 'called', 'to', 'mass', 'or', 'religious', 'service', ',', 'bells', 'were', 'used', 'on', 'farms', 'for', 'more', 'secular', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'rebels', '', 'the', 'house', 'and', 'sent', 'word', 'to', 'the', '3', 'rd', 'baron', ',', 'who', 'was', 'returning', 'from', 'london', ',', 'that', 'if', 'he', 'did', 'not', 'return', 'immediately', 'they', 'would', 'kill', 'his', 'family', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'representing', '', 'as', '', 'to', 'receive', 'benefits', 'is', 'a', '', ',', 'as', 'are', '', 'in', 'pursuit', 'of', 'a', 'visa', 'and', '', 'the', 'presence', 'of', '', 'persons', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', '', 'hydrogen', ',', 'the', 'fuel', 'cell', 'system', 'is', 'housed', 'beneath', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'ultimate', \"''\", 'was', 'followed', 'by', '``', 'dead', 'or', 'alive', '5', 'last', 'round', \"''\", 'in', '2', '0', '1', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'first', 'two', 'rounds', ',', 'each', 'team', 'is', 'assigned', 'one', 'of', 'the', '', ',', 'who', 'then', 'will', 'switch', 'teams', 'for', 'the', 'second', 'round', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', '2', '2', 'january', '1', '8', '3', '3', '-', '9', 'october', '1', '9', '0', '5', ')', 'was', 'a', 'partner', 'in', 'the', '', 'pottery', 'firm', 'from', '1', '8', '5', '9', 'to', '1', '8', '9', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'based', 'on', 'the', '1', '9', '7', '8', 'horror', 'film', 'of', 'the', 'same', 'name', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'comet', 'was', '', 'the', 'same', 'color', 'white', ',', 'and', 'the', 'station', 'was', '', ',', 'during', 'the', '2', '0', '1', '2', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'series', 'was', 'broadcast', 'in', 'taiwan', 'in', '2', '0', '0', '4', 'on', '', 'chinese', 'television', 'system', '(', '', ')', 'and', 'cable', 'tv', '', 'television', '(', '', ')', 'variety', '', '2', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'starting', '', 'has', 'also', 'increased', '-', 'especially', 'at', 'higher', '', ',', 'which', 'is', 'realized', 'with', 'less', '', 'of', 'the', '', '(', 'and', 'thus', 'higher', 'motor', 'power', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'tells', 'her', 'that', '', 'has', 'given', 'birth', 'to', 'a', 'daughter', 'in', 'england', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'atherton', \"'s\", 'brother', 'was', 'working', 'for', '', 'on', 'a', 'gold', 'project', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', 'result', ',', 'the', 'band', 'hired', 'swiss', '', 'patrick', '', ',', 'formerly', 'of', '', ',', 'in', 'his', 'place', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'left', 'the', 'cast', 'on', 'june', '2', '6', ',', '2', '0', '1', '0', ',', 'to', 'play', '', 'in', '``', 'mary', '', \"''\", 'on', 'broadway', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'is', 'especially', 'useful', 'for', 'training', 'to', 'stay', 'tight', 'while', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'modern', 'scholar', 'calls', 'morrison', \"'s\", 'dictionary', '``', 'the', 'greatest', 'achievement', 'of', 'any', '', 'of', 'chinese', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'throughout', '2', '0', '0', '6', ',', 'he', 'worked', 'for', 'pro', 'wrestling', 'zero', '1', '', 'and', 'king', \"'s\", 'road', ',', 'where', 'he', 'reformed', '', 'storm', 'with', '', 'miyamoto', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'site', 'of', '', 'was', 'in', 'antiquity', 'a', 'flourishing', '', 'centre', 'more', 'developed', 'than', 'the', '', 'because', 'it', 'occupied', 'a', 'predominant', 'position', 'inside', 'the', 'region', 'currently', 'called', '', ',', 'and', 'because', 'it', 'controlled', 'the', 'road', 'which', 'led', 'from', 'the', '', '', 'of', '', 'to', 'macedonia', '.', '', '', '', '']\n", "['', 'for', 'one', ',', 'the', 'poems', 'do', 'not', 'primarily', 'deal', 'with', '', 'love', 'but', 'with', 'the', 'mystical', 'love', 'for', 'god', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'were', '1', '1', '1', ',', '7', '6', '2', 'housing', 'units', 'at', 'an', 'average', 'density', 'of', '2', '6', '9', 'per', 'square', 'mile', '(', '1', '0', '4', '/km', '2', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'mercedes', '', \"''\", 'framework', 'was', 'long', ',', 'wide', 'and', 'with', 'a', 'low', 'center', 'of', 'gravity', ',', 'giving', 'an', 'improved', 'stability', 'at', 'high', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', 'february', ',', '', 'faced', 'oxford', 'united', 'at', 'the', '', 'stadium', ',', 'their', '', 'away', 'league', 'match', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'blank', 'indicates', 'the', 'value', 'is', '', ',', 'but', 'context', 'is', 'required', '(', 'even', 'though', 'any', 'value', 'could', 'be', 'inserted', 'because', 'the', '', 'rules', 'would', 'change', 'the', 'value', 'to', 'the', '', 'one', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'a', 'member', 'of', 'the', 'assembly', 'in', '1', '8', '5', '0', 'before', 'representing', 'the', '4', 'th', 'district', 'of', 'the', 'senate', 'in', '1', '8', '5', '2', 'and', 'the', '2', '0', 'th', 'district', 'in', '1', '8', '5', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'number', 'of', 'district', 'courts', 'in', 'a', 'court', 'of', 'appeals', \"'\", 'circuit', 'varies', 'between', 'one', 'and', 'thirteen', ',', 'depending', 'on', 'the', 'number', 'of', 'states', 'in', 'the', 'region', 'and', 'the', 'number', 'of', 'districts', 'in', 'each', 'state', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '8', ',', '', 'played', 'a', 'leading', 'role', 'in', 'the', 'new', 'television', 'series', '``', '', '&', 'amp', ';', 'honey', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'native', 'americans', 'did', 'not', 'have', '', 'to', 'the', 'diseases', 'that', 'european', 'settlers', 'unknowingly', 'brought', 'with', 'them', 'to', 'the', 'new', 'world', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'assembly', 'is', 'then', 'left', 'to', 'cool', 'for', 'a', '', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'he', 'was', 'only', 'given', 'small', 'parts', 'in', 'the', 'academy', \"'s\", 'productions', ',', 'and', 'feeling', 'isolated', 'and', '', ',', 'almost', 'dropped', 'out', 'several', 'times', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'x', '7', '0', 'is', 'powered', 'by', 'a', '1', '.', '5', '', '', '', 'petrol', 'engine', 'producing', '1', '5', '6', 'hp', 'and', '2', '3', '0', '', ',', 'with', 'transmission', 'options', 'including', 'a', '6', '-speed', 'manual', 'transmission', 'or', 'a', '6', '-speed', '', 'transmission', '.', '', '', '', '', '', '']\n", "['', 'an', 'ordered', 'pair', 'is', 'a', '2', '', 'or', 'couple', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'psychological', 'aid', 'was', 'launched', 'in', 'clinic', '', 'hospital', '#', '2', ',', '', 'hospital', 'and', 'children', \"'s\", '', 'hospital', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'years', 'of', 'relative', '', ',', '', 'competed', 'in', 'and', 'won', 'the', 'new', 'zealand', 'version', 'of', '``', 'dancing', 'with', 'the', 'stars', \"''\", 'in', '2', '0', '0', '6', 'with', 'dance', 'partner', ',', 'aaron', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'a', 'member', 'of', 'the', 'polish', 'academy', 'of', 'learning', 'in', 'kraków', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'producer', '', 'thomas', ',', 'the', 'other', 'half', 'of', 'the', 'duo', ',', 'added', '``', 'the', 'only', 'way', 'i', 'can', 'describe', 'chris', 'and', 'what', 'he', \"'s\", '', \"'\", 'with', 'this', 'record', 'that', 'he', \"'s\", 'making', 'is', 'that', 'he', \"'s\", 'this', 'generation', \"'s\", 'michael', '[', 'jackson', ']', \"''\", '.', '', '', '', '']\n", "['', 'in', '2', '0', '1', '6', ',', '', 'became', 'only', 'the', 'second', '', 'to', 'ever', 'be', 'elected', 'to', 'the', 'royal', 'society', ',', 'after', 'edward', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'located', 'in', 'the', 'north', 'of', 'the', 'oblast', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '1', ',', 'a', '', '', 'game', 'and', 'a', '', 'version', 'were', 'based', 'upon', 'the', 'pilot', 'starring', '', ',', '', ',', 'wolverine', ',', 'storm', ',', '', ',', 'and', '', 'as', 'the', '', 'characters', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thus', 'it', 'is', '', 'that', 'substantial', 'materials', 'research', 'and', 'development', 'will', 'be', 'required', 'to', 'open', 'the', 'door', 'to', 'this', 'new', 'class', 'of', 'nuclear', 'power', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'irrigated', 'agriculture', 'is', 'restricted', 'to', 'the', 'areas', 'surrounding', 'rivers', 'and', '', '', 'underground', 'water', 'is', 'available', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'official', 'registration', 'for', 'the', 'candidates', 'began', 'on', 'october', '1', '2', ',', '2', '0', '0', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'his', 'death', ',', 'the', 'male', 'line', 'of', 'masovian', '', ',', '', 'with', '', 'iii', 'became', 'extinct', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', 'august', '1', 'the', 'division', 'was', 'assigned', 'to', '4', '5', 'th', 'army', 'in', '', 'front', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'analysis', 'of', 'the', 'project', '', 'towards', 'failure', 'in', 'communication', 'between', '', 'and', 'honda', ',', 'honda', '', 'the', 'technology', 'required', 'for', 'the', 'engine', ',', 'and', 'critical', '', 'in', 'the', 'engine', \"'s\", 'design', ',', 'as', 'the', 'cause', 'of', 'the', 'team', \"'s\", 'problems', '.', '', '', '', '', '', '', '', '']\n", "['', 'pool', 'a', 'was', 'left', 'with', 'the', 'three', 'remaining', 'teams', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', '', 'pierre', '', 'described', 'the', '1', '8', '', 'alexei', 'as', '``', 'one', 'of', 'the', '', 'babies', 'one', 'could', '', ',', 'with', 'his', 'lovely', 'fair', '', 'and', 'his', 'great', '', 'eyes', 'under', 'their', '', 'of', 'long', 'curling', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'holiday', '', 'the', 'day', 'the', 'constitution', 'of', 'puerto', 'rico', ',', 'approved', 'on', 'july', '3', ',', '1', '9', '5', '2', ',', 'was', 'signed', 'into', 'law', 'by', 'governor', '', '', '', 'the', 'same', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'queen', 'was', 'on', 'a', '', 'visit', 'to', 'the', 'nearby', '', 'military', 'complex', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'similarly', ',', 'in', 'yorkshire', ',', '(', '', 'flash', ')', 'is', 'the', 'result', 'of', '', 'limestone', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'were', 'converted', 'to', 'christianity', 'and', 'migrated', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '3', '2', 'he', 'was', 'one', 'of', 'a', '', 'british', 'expedition', 'to', 'fort', 'rae', 'in', 'northwest', 'canada', ',', 'where', 'he', 'carried', 'out', 'observations', 'of', 'atmospheric', 'electricity', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'npf', 'members', 'have', 'criminal', '', 'to', 'signal', 'their', 'membership', 'in', 'the', 'gang', ',', 'with', 'the', 'neck', 'being', 'the', 'standard', 'location', 'for', 'these', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", '', 'often', 'focus', 'on', 'young', 'love', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'gene', 'is', 'expressed', 'only', 'in', 'the', 'brain', 'of', 'humans', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'therefore', ',', 'each', 'of', '', ',', '', 'am', '', 'and', '', 'is', 'a', 'protestant', 'parish', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'had', 'the', '', 'and', 'susquehanna', 'navigation', 'company', 'been', 'successful', 'in', 'completing', 'the', 'canal', 'in', '1', '7', '9', '4', '-', '9', '5', ',', 'it', 'probably', 'would', 'have', '', 'to', 'the', 'same', 'poor', 'planning', 'and', 'summit', '', 'as', 'its', 'successor', 'did', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'throughout', '1', '9', '0', '1', ',', 'she', 'visited', 'south', 'africa', 'to', 'report', 'on', 'conditions', 'inside', 'the', 'concentration', 'camps', 'built', 'for', 'boer', 'civilians', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', ';', 'born', '1', 'may', '1', '9', '9', '0', ')', 'is', 'a', 'ukrainian', 'football', 'midfielder', 'who', 'plays', 'for', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'construction', 'finally', 'commenced', 'on', '2', 'july', '2', '0', '0', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'time', ',', '', 'was', 'working', 'for', '', ',', 'spain', \"'s\", 'national', 'telephone', 'company', ',', 'as', 'an', 'administrative', 'employee', 'therefore', 'the', 'shooting', 'took', 'place', 'on', 'weekends', 'with', 'a', 'group', 'of', 'volunteers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'high', 'school', 'is', 'a', 'high', 'school', 'in', '', 'owned', 'and', 'operated', 'by', 'the', 'church', 'of', 'jesus', 'christ', 'of', '', 'saints', '(', '', 'church', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'sergio', 'has', 'a', 'relationship', 'with', '', ',', 'an', '', 'young', 'mother', '', 'just', 'like', 'him', ',', 'who', 'helps', 'him', 'in', 'his', 'trafficking', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'march', '2', '0', '1', '7', ',', 'the', 'california', 'institute', 'of', 'technology', 'announced', 'that', 'they', 'were', 'changing', 'the', 'name', 'of', 'its', 'medical', 'engineering', 'department', 'to', 'the', 'andrew', 'and', 'peggy', '', 'department', 'of', 'medical', 'engineering', 'after', 'receiving', 'a', '$', '3', '0', 'million', 'gift', 'from', 'andrew', 'and', 'peggy', '', '.', '', '']\n", "['', 'this', 'design', 'helped', 'to', 'make', 'sure', 'that', 'the', 'engine', 'did', 'not', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'state', \"'s\", 'territory', 'was', 'situated', 'in', 'the', 'low', 'countries', 'between', 'the', 'river', '', '(', '', ')', 'in', 'the', 'west', 'and', 'the', 'imperial', 'city', 'of', 'aachen', 'in', 'the', 'east', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'surviving', 'nave', ',', 'which', 'is', 'listed', 'grade', 'ii', '', ',', 'is', '', ',', 'of', 'two', 'bays', 'and', 'measures', 'c.', '1', '4', 'm', 'in', 'length', 'by', 'c.', '7', '.', '5', 'm', 'in', 'width', 'and', ',', 'being', 'still', 'in', 'use', ',', 'is', 'not', 'included', 'in', 'the', 'scheduling', '.', '', '', '']\n", "['', 'that', 'is', ',', 'a', '', 'form', 'formula_', '2', '4', 'is', '', 'if', 'and', 'only', 'if', 'each', 'of', 'its', '(', '``', 'p', \"''\", ',', \"''\", 'q', \"''\", ')', '', 'is', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'temple', 'is', 'situated', 'on', 'the', 'kattappana', '-', '', 'state', 'highway', ',', 'about', '3', 'km', 'from', 'kattappana', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'helps', 'oliver', 'and', 'his', 'team', 'to', 'begin', 'uncover', 'the', '', 'plot', 'orchestrated', 'by', '', 'wilson', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'at', 'the', 'debt', 'recovery', 'business', 'described', 'tim', 'as', '``', '...', 'bright', 'and', '...', '[', 'that', ']', 'it', 'seemed', 'like', 'he', 'had', 'his', 'mind', 'on', 'something', 'else', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '', '(', ';', 'born', '2', '4', 'april', '1', '9', '4', '7', ')', 'is', 'a', 'spanish', 'politician', 'serving', 'as', 'high', 'representative', 'of', 'the', 'european', 'union', 'since', '1', 'december', '2', '0', '1', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'also', '', 'the', 'case', 'of', 'the', '', 'salvador', '', '', ',', 'who', 'was', 'blamed', 'for', 'the', 'murder', 'of', 'a', 'police', 'inspector', 'and', 'who', 'ended', 'up', 'being', 'executed', 'by', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'theory', 'describes', 'space', 'as', 'an', 'extremely', 'fine', 'fabric', '``', '', \"''\", 'of', 'finite', 'loops', 'called', 'spin', 'networks', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'their', 'only', 'daughter', ',', '', ',', 'was', 'born', 'in', '1', '9', '4', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'released', 'on', '1', '9', 'august', '2', '0', '1', '3', 'on', 'infectious', 'music', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'won', 'geelong', \"'s\", '``', 'best', '', \"''\", 'award', ',', 'in', '2', '0', '0', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'track', ',', '``', 'i', \"'ll\", 'be', 'your', '', \"''\", ',', 'in', 'which', 'the', '1', '3', '-year-old', 'bonaduce', '', 'a', 'woman', 'into', 'having', 'sexual', 'intercourse', 'with', 'him', ',', 'has', 'developed', 'a', '', 'following', 'for', 'its', '', 'entertainment', 'value', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bradford', 'cumberland', 'presbyterian', 'church', 'is', 'located', 'on', 'the', 'old', 'highway', '4', '5', 'across', 'from', 'the', 'school', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '8', ',', 'he', 'was', 'awarded', 'the', 'phd', 'degree', 'and', ',', 'in', '2', '0', '1', '0', ',', 'he', 'became', 'a', 'professor', 'in', 'sports', 'science', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'fewer', 'than', '3', '0', '0', 'pixar', 'image', 'computers', 'were', 'ever', 'sold', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'honorary', 'doctorate', 'degree', 'in', 'diplomacy', 'was', 'conferred', 'on', 'the', 'president', 'by', 'the', 'moscow', 'state', 'institute', 'of', 'international', 'relations', 'university', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'tells', 'will', 'that', 'he', 'was', '', 'following', 'abby', 'leaving', ',', '', 'him', 'to', 'remember', 'what', 'happened', '``', 'that', 'day', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'despite', 'its', 'height', 'it', 'has', 'a', 'relatively', 'easy', 'normal', 'route', 'to', 'the', 'summit', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', 'january', '8', ',', '1', '9', '4', '4', 'to', 'may', '1', '5', ',', '1', '9', '4', '8', ',', 'the', 'only', 'country', 'music', 'chart', 'was', 'the', '', 'box', 'chart', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'demands', 'his', 'own', 'guardian', 'after', 'learning', 'that', 'the', 'green', ',', 'blue', ',', 'and', 'black', 'lantern', 'corps', 'each', 'have', 'one', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'died', 'on', '2', '7', 'december', '1', '9', '6', '7', 'in', 'his', 'hometown', 'munich', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'the', '2', '0', '1', '1', 'census', ',', 'the', 'town', 'has', 'a', 'population', 'of', '1', '9', '5', 'people', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'harold', 'carl', '', 'was', 'born', 'in', 'alexandria', ',', 'virginia', ',', 'the', 'son', 'of', 'justin', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'morrison', 'was', 'selected', 'to', 'train', 'with', 'the', 'senior', 'men', \"'s\", 'team', 'in', 'preparation', 'for', 'the', '2', '0', '0', '6', 'fiba', 'world', 'championship', 'but', 'was', 'cut', 'prior', 'to', 'the', 'tournament', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'members', 'of', 'the', 'ministry', 'are', 'not', '', ',', 'but', 'most', 'churches', 'support', 'their', 'ministry', 'team', 'financially', 'through', '', 'offerings', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '3', ',', '', 'c', 'released', 'an', 'album', 'titled', '``', 'en', 'honor', 'a', 'la', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'german', 'socialism', 'must', 'effect', 'a', '``', 'total', 'ordering', 'of', 'life', \"''\", 'with', 'a', '``', 'planned', 'economy', 'in', 'accordance', 'with', 'state', 'regulations', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'despite', 'the', 'penalty', ',', 'the', 'return', 'to', 'division', '2', 'finally', 'saw', 'some', 'signs', 'of', 'recovery', 'from', 'capital', ',', 'with', 'the', 'team', 'winning', '1', '7', 'of', 'their', '2', '2', 'games', 'to', 'make', 'the', 'playoffs', 'in', 'their', 'first', 'season', ',', 'finishing', 'the', 'league', 'in', '6', 'th', 'place', '.', '', '', '', '']\n", "['', 'the', 'championship', 'has', 'been', 'declared', 'vacant', 'twice', ',', 'first', 'when', '', '', '6', '6', '6', 'was', 'unable', 'to', 'defend', 'the', 'championship', 'in', '2', '0', '1', '6', ',', 'and', 'again', 'in', 'early', '2', '0', '1', '8', 'when', '', 'vacated', 'the', 'championship', 'as', 'he', 'moved', 'into', 'the', '', 'division', '.', '', '']\n", "['', 'the', 'school', 'housed', 'around', '9', '0', '0', 'boys', 'at', 'any', 'one', 'time', 'and', 'they', 'stayed', 'there', 'until', 'they', 'were', '1', '6', 'years', 'of', 'age', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'dutch', 'abel', 'tasman', 'made', 'the', 'first', 'european', 'discovery', 'of', 'the', 'island', 'on', '2', '4', 'january', '1', '6', '4', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '3', '0', '', '', 'shows', 'were', 'broadcast', 'live', 'and', 'the', '', 'saturday', 'show', 'was', '', 'early', 'in', 'the', 'day', 'and', 'aired', 'at', '3', ':', '0', '0', 'pm', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'in', '1', '9', '3', '0', ',', '', '', 'was', 'attacked', 'by', 'stalin', ',', 'because', 'he', '', 'that', 'the', 'state', 'must', '', 'away', 'to', 'bring', 'forth', 'communism', ',', 'as', 'marx', 'had', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'industrial', 'sector', 'is', 'small', ',', 'and', 'agriculture', 'is', 'now', 'severely', 'limited', 'by', 'a', 'lack', 'of', 'suitable', 'land', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'here', 'that', 'white', 'advised', 'his', 'first', 'two', 'graduate', 'students', 'joel', 'h.', 'levine', 'and', 'morris', '', ',', 'both', 'who', 'went', 'on', 'to', 'make', 'contributions', 'to', 'social', 'network', 'analysis', 'in', 'sociology', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'september', '2', '0', '0', '7', ',', '', 'was', 'the', 'victim', 'of', 'an', 'assassination', 'attempt', 'near', '', 'by', '', 'groups', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'was', 'listed', 'on', 'the', 'new', 'south', 'wales', 'state', 'heritage', 'register', 'on', '1', '4', 'july', '2', '0', '0', '0', 'having', '', 'the', 'following', 'criteria', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'over', 'the', 'past', 'decades', ',', 'a', 'number', 'of', 'factors', 'have', 'created', 'a', 'rapidly', 'changing', 'environment', 'for', 'today', \"'s\", 'government', 'financial', 'managers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'moving', 'to', 'taiwan', 'in', 'the', 'middle', 'of', 'the', 'decade', ',', '', 'played', 'perhaps', 'his', 'best', '', 'in', 'the', 'late', '1', '9', '9', '0', 's', ',', 'after', 'his', '', 'birthday', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'the', 'second', 'latest', 'any', 'major', 'league', 'game', 'has', 'ever', 'ended', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'crew', 'derived', 'its', 'name', 'from', 'mr.', 'magic', \"'s\", '', ',', '``', 'sir', 'juice', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'university', 'gives', 'offers', 'of', '', 'to', '2', '0', '%', 'of', 'its', '1', '8', 'year', 'old', 'applicants', ',', 'the', '5', 'th', 'lowest', 'amongst', 'the', 'russell', 'group', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'question', \"'\", 'on', 'the', 'streets', 'and', 'in', 'institutions', ',', 'was', '', 'out', 'by', 'the', '', 'of', '``', 'racial', 'democracy', '``', 'reinforced', 'by', 'the', 'then', 'military', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'harris', \"'s\", 'band', ',', '', ',', 'is', 'on', 'hold', 'as', 'he', 'works', 'on', 'other', 'projects', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'imperial', 'court', 'in', '', 'posthumously', 'granted', 'him', 'the', 'title', 'of', '', 'in', '7', '5', '1', ',', 'so', 'in', 'japan', 'he', 'is', 'often', 'referred', 'to', 'as', '``', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'man', 'named', 'oswald', '', 'was', 'a', 'successful', '', 'in', 'the', 'time', 'when', '', 'were', 'becoming', 'rich', 'from', '', '', 'from', 'colonies', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mary', 'hutcheson', 'page', 'was', 'born', 'in', 'columbus', ',', 'ohio', ',', 'in', '1', '8', '6', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'accumulated', 'a', 'strongly', 'conservative', 'record', 'on', 'the', 'budget', ',', 'judiciary', ',', 'and', 'energy', 'and', 'commerce', 'committees', ',', 'supporting', 'legislation', 'to', 'suppress', 'illegal', 'immigration', ',', 'restrict', 'telephone', 'sex', 'lines', ',', 'and', '', 'flag', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'member', 'of', 'the', 'lithuanian', 'christian', 'democratic', 'party', ',', 'in', '1', '9', '2', '0', 'she', 'was', 'elected', 'to', 'the', 'constituent', 'assembly', 'from', 'constituency', 'v', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'starred', 'as', '', 'rivera', 'in', 'the', 'nbc', 'series', '``', 'the', '', \"''\", 'from', '2', '0', '1', '7', 'to', '2', '0', '1', '8', ',', 'and', 'since', '2', '0', '1', '9', 'has', 'played', '', '', 'on', 'the', 'cbs', 'series', '``', 'blood', '&', 'amp', ';', 'treasure', \"''\", '.', '', '', '', '']\n", "['', 'in', 'the', 'same', 'issue', ',', '', 'and', '', 'also', 'leave', 'the', 'team', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'wooded', 'areas', 'are', '', 'to', 'the', 'northwest', 'and', 'northeast', 'of', 'the', 'plateau', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'small', 'businesses', 'to', 'save', 'money', 'and', 'reduce', 'their', 'energy', 'consumption', ',', \"''\", 'yap', 'said', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'octopus', '', 'the', 'little', '', 'and', 'takes', 'them', 'below', 'the', 'surface', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'born', 'in', '', ',', 'ontario', 'and', 'graduated', 'from', '', 'university', 'in', 'hamilton', 'with', 'a', 'bachelor', 'of', 'arts', 'in', 'economics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'marcus', '', 'is', 'an', 'english', 'writer', ',', '', ',', 'broadcaster', 'and', 'lecturer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bengali', 'is', 'the', 'only', 'medium', 'of', 'education', 'of', 'khotta', 'people', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'crew', 'members', 'with', 'most', 'award', 'nominations', 'are', 'producer', 'and', 'director', 'bill', '', ',', 'with', 'six', 'nominations', 'and', 'zero', 'wins', ',', 'and', 'show', 'creator', 'david', 'e.', '', ',', 'with', 'five', 'nominations', 'and', 'one', 'win', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'stone', 'center', 'expanded', 'and', 'replaced', 'the', 'luxembourg', 'income', 'study', '(', '', ')', 'center', ',', 'which', 'opened', 'its', 'doors', 'at', 'the', 'graduate', 'center', 'in', '2', '0', '0', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', '', 'work', 'of', 'this', 'period', 'is', 'the', 'universal', 'pictures', 'building', 'of', '1', '9', '4', '7', 'which', 'was', 'used', 'by', '', '', 'to', '', 'air', 'conditioning', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'total', '``', 'boston', 'legal', \"''\", 'has', 'been', 'nominated', 'for', '6', '2', 'awards', ',', 'and', 'won', '1', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'girlfriend', 'is', 'the', 'bulgarian', '', 'singer', '', '', ',', 'who', 'was', 'in', 'the', 'house', 'for', 'a', 'few', 'minutes', 'during', 'one', 'of', 'the', '', \"'\", 'week', 'task', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'piloted', 'through', 'the', 'house', 'of', 'lords', 'heath', \"'s\", 'controversial', 'industrial', 'relations', 'act', '1', '9', '7', '1', ',', 'which', 'established', 'the', 'short-lived', 'national', 'industrial', 'relations', 'court', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'cadets', 'are', 'not', 'referred', 'to', 'as', '', ',', '', ',', '', ',', 'or', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rancho', '', 'was', 'a', 'mexican', 'land', 'grant', 'in', 'present', 'day', '', 'county', ',', 'california', 'given', 'in', '1', '8', '4', '4', 'by', 'governor', 'manuel', '', 'to', 'josé', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'ability', 'to', 'monitor', 'patients', 'using', 'ai', 'may', 'allow', 'for', 'the', 'communication', 'of', 'information', 'to', '', 'if', 'possible', 'disease', 'activity', 'may', 'have', 'occurred', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'most', 'of', 'the', '1', '9', '6', '0', '', '7', '0', 's', ',', '', \"'\", 'success', 'was', '', 'by', 'any', 'other', 'greek', 'actor', ',', 'except', '', '', ',', 'but', '', \"'\", 'choice', 'of', 'material', 'was', 'more', 'challenging', 'than', 'the', 'latter', \"'s\", '.', '', '', '', '', '', '', '', '']\n", "['', 'beginning', 'in', '1', '8', '8', '3', ',', 'the', 'northeast', 'corner', 'was', 'the', 'site', 'of', 'the', 'first', 'branch', 'of', 'the', 'joseph', 'r.', '', \"'\", 'sons', 'co.', '', 'store', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'principle', ',', 'it', 'could', 'be', '', 'by', '', '', ';', 'sea', 'bed', 'systems', 'are', 'available', ',', 'but', 'limited', 'to', 'a', 'depth', 'of', 'about', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'musical', 'style', '', 'elements', 'from', 'hip', 'hop', ',', 'folk', ',', 'rock', ',', 'r', '&', 'amp', ';', 'b', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'practices', 'increase', 'the', 'risk', 'of', 'gangs', 'and', 'organized', 'criminal', 'groups', '', 'upon', 'the', 'newly', 'arrived', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'octavius', 'took', 'control', 'of', 'britain', 'from', 'rome', ',', '', 'sent', 'three', 'roman', '', 'to', 'britain', 'under', 'the', 'command', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '3', 'may', '1', '9', '5', '2', ',', '``', '', \"''\", 'was', 'sold', 'to', 'uruguay', 'and', '', 'as', '', '``', '', \"''\", '(', '', '2', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'game', 'was', 'referred', 'to', 'as', '``', '', 'ball', 'advance', \"''\", 'prior', 'to', 'its', 'release', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'brings', 'together', 'the', 'western', 'cut', 'with', 'indian', '', '', 'by', 'the', '', 'coat', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'following', 'table', 'lists', 'all', 'the', 'games', 'played', 'by', 'the', 'brazil', 'national', 'football', 'team', 'in', 'official', 'competitions', 'and', 'friendly', 'matches', 'during', '2', '0', '0', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'w.', 'stone', 'and', 'alexander', '', 'each', 'independently', 'developed', 'similar', 'approaches', 'to', 'the', 'christian', 'faith', ',', 'seeking', 'to', 'restore', 'the', 'whole', 'christian', 'church', ',', 'on', 'the', 'pattern', 'set', 'forth', 'in', 'the', 'new', 'testament', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'became', 'a', 'character', 'actor', 'and', 'made', 'some', 'guest', 'appearances', 'in', 'top', 'tv', 'shows', ',', 'playing', 'the', 'heavy', 'in', 'episodes', 'of', '``', 'the', '', \"''\", ',', '``', 'alfred', 'hitchcock', 'presents', \"''\", 'and', '``', 'ben', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'described', 'coming', 'out', 'at', 'a', 'young', 'age', 'by', 'saying', ',', '``', 'i', 'was', 'sure', 'of', 'myself', 'and', 'my', 'sexuality', 'and', 'i', \"'ve\", 'got', 'nothing', 'to', 'hide', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'i', 'really', 'wanted', 'to', 'do', 'a', 'good', 'job', 'for', 'them', 'and', 'i', \"'m\", 'delighted', 'it', 'all', 'came', 'together', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'late', 'in', 'the', 'war', 'the', '', '2', '3', '4', 'upgrade', 'with', 'fuel', '', 'was', 'recommended', 'by', 'the', '', '', 'for', 'use', 'in', 'the', '', 'tiger', 'ii', 'tank', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '9', '2', '0', 'breeding', 'came', 'under', 'bavarian', 'state', 'control', 'at', 'the', 'former', 'state', 'stud', 'of', '', 'at', '', ';', 'the', 'stud', 'book', 'was', 'closed', ',', 'and', 'an', '', 'symbol', 'was', 'adopted', 'as', 'a', 'brand', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'her', 'career', 'as', 'a', 'journalist', '', ',', 'dolly', 'decides', 'that', 'it', 'is', 'time', 'to', 'drop', 'out', 'of', 'school', 'to', 'focus', 'fully', 'on', 'her', 'job', ',', 'leading', 'to', 'conflict', 'between', 'her', 'mother', 'and', 'father', 'who', '', 'as', 'to', 'whether', 'she', 'is', 'making', 'the', 'right', 'choice', '.', '', '', '', '']\n", "['', '', ',', 'blood', 'and', '', 'in', 'the', 'airway', 'may', 'prove', '', 'of', 'the', 'vocal', 'cords', 'difficult', 'rendering', 'direct', 'and', 'video', '', ',', 'as', 'well', 'as', '', '', 'challenging', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '7', ',', 'a', 'nationwide', '', 'system', 'was', 'put', 'into', 'place', ',', 'and', 'in', 'december', 'of', 'that', 'year', ',', 'the', 'government', 'prohibited', 'all', 'imports', 'of', 'these', 'chemicals', 'into', 'australia', 'without', 'express', '', 'approval', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'basis', 'for', 'the', 'raid', 'was', 'an', '', 'by', 'a', 'city', 'inspector', 'claiming', 'that', '', '', 'hoped', 'to', 'profit', 'from', 'his', 'business', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'new', 'set', 'of', 'much', 'more', 'extensive', 'restrictions', 'were', 'added', 'to', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'railway', 'line', '(', 'part', 'of', 'the', 'queensland', 'rail', 'city', 'network', ')', 'enters', 'the', 'suburb', 'from', 'the', 'south-west', '(', '', ')', 'and', 'exits', 'to', 'the', 'south', '(', '', ')', 'with', '', 'railway', 'station', 'in', '', 'street', 'off', 'rainbow', 'street', '(', ')', 'serving', 'the', 'suburb', '.', '', '', '', '']\n", "['', 'livingston', 'had', 'its', 'start', 'by', 'the', 'building', 'of', 'the', 'railroad', 'and', 'the', 'opening', 'of', 'a', 'mine', 'in', 'the', 'neighborhood', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'september', '1', '8', '5', '2', ',', 'the', 'congregation', 'sent', 'four', 'sisters', 'to', 'penang', ',', 'with', 'mother', '', '', 'in', 'charge', ',', 'to', 'guide', 'and', 'support', 'the', 'group', 'of', 'sisters', 'who', 'had', 'arrived', 'earlier', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'big', 'springs', 'is', 'an', 'unincorporated', 'community', 'in', 'marion', 'township', ',', '', 'county', ',', 'in', 'the', 'u.s.', 'state', 'of', 'indiana', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'born', 'in', '1', '8', '5', '7', 'in', '', ',', '', ',', 'the', 'son', 'of', 'robert', '', ',', 'a', 'mining', 'engineer', ',', 'and', 'his', 'wife', 'pamela', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'students', \"'\", 'union', '', 'annual', 'sports', 'and', 'the', 'literary', 'and', 'cultural', 'week', 'of', 'the', 'college', 'annually', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'made', 'his', '', 'debut', 'for', 'bangladesh', 'against', 'zimbabwe', 'on', '2', '1', 'october', '2', '0', '1', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'females', 'of', 'many', 'species', 'have', 'a', '', 'long', '', 'for', '', 'away', 'the', 'typical', '', 'eggs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'smith', 'later', 'attributed', 'her', '', 'skills', 'to', 'the', 'experience', 'she', 'had', 'during', 'the', 'struggle', 'for', 'integration', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'through', 'an', 'intimate', 'relationship', 'with', '', 'de', '', 'de', '', ',', 'the', 'pair', 'staged', 'a', 'scandal', 'involving', 'a', 'diamond', 'necklace', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'long', '', '', 'are', 'borne', 'on', 'the', 'first', '7', 'body', 'segments', ',', 'and', '', '', '', 'are', 'borne', 'on', 'the', 'remainder', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', '', 'an', 'entertainment', 'career', 'and', 'worked', 'as', 'a', 'radio', '', '', 'radio', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'major', 'feature', 'of', 'the', 'book', '', 'chronicles', ':', 'exodus', ',', 'by', 'american', 'author', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'head', 'of', 'a', 'research', 'interest', 'group', 'on', 'physical', 'activity', 'and', 'human', 'performance', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'lineup', 'led', 'the', 'finnish', 'team', 'in', 'points', 'and', 'played', 'well', 'during', 'the', 'tournament', 'but', 'finland', 'was', 'not', 'able', 'to', 'advance', 'to', 'the', 'medal', 'round', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'company', 'continued', 'to', '', ',', 'by', 'buying', 'out', 'smaller', 'bus', 'and', 'coach', 'operators', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'may', ',', 'presley', 'auditioned', 'at', 'the', '', 'in', '', 'as', 'a', 'vocalist', 'for', 'a', 'band', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'more', 'recent', 'studies', 'have', 'suggested', 'that', 'the', 'species', 'may', 'be', 'a', 'regular', 'winter', 'visitor', 'in', 'the', 'eastern', 'part', 'of', '', 'india', ',', 'and', 'not', 'just', 'a', 'passage', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'currently', 'contains', 'an', 'approximate', '1', ',', '9', '0', '0', 'of', 'students', 'and', 'staff', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'january', '2', '0', '0', '6', ',', 'project', 'developer', '', '', 'suggested', 'that', 'at', 'the', 'current', 'level', 'of', 'development', ',', 'r', '1', 'was', 'at', 'least', 'a', 'year', 'away', ',', 'maybe', 'two', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'reality', ',', 'not', 'all', 'the', '', 'can', 'be', 'delivered', 'on', 'time', 'for', 'the', '', 'of', 'the', 'first', 'prototype', 'boards', 'so', 'all', 'the', 'tests', 'defined', 'in', 'the', 'document', 'usually', 'are', 'given', 'in', 'phases', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'general', 'relativity', ',', 'however', ',', 'incorporates', '', 'geometry', 'in', 'order', 'to', 'represent', '', 'effects', 'as', 'the', '', '', 'of', 'spacetime', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', '', \"'s\", 'boy', ',', 'george', 'is', 'in', 'good', 'standing', 'with', 'barker', ',', 'even', 'gaining', 'a', 'promotion', ',', 'until', 'an', 'incident', 'that', 'costs', 'the', 'mob', 'a', 'million', 'dollars', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'learned', 'music', 'from', '', '', 'and', '', 'her', 'voice', 'for', 'the', 'first', 'solo', '', 'by', '', 'recording', 'company', 'at', 'the', 'age', 'of', 'six', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'then', 'led', 'the', 'international', 'negotiations', 'division', 'of', 'the', 'joint', '', 'of', 'staff', 'from', '1', '9', '7', '1', 'to', '1', '9', '7', '4', ',', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'success', 'of', 'the', 'conversion', 'of', 'the', '', '', 'the', 'conversion', 'of', 'other', 'east', 'slavic', 'peoples', ',', 'most', 'notably', 'the', '', \"'\", ',', '', 'of', '', ',', '', ',', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'has', 'performed', 'in', 'the', 'broadway', 'and', 'touring', 'companies', 'of', '``', 'the', 'who', \"'s\", 'tommy', \"''\", 'as', 'the', 'lover', 'with', 'alice', '', ',', 'and', '``', 'miss', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'was', 'a', 'senior', 'student', 'of', 'kishaba', '', 'and', 'was', 'promoted', 'to', '9', 'th', 'dan', 'in', '', 'by', 'kishaba', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'likes', '', ',', 'and', 'is', 'part', 'of', 'the', 'team', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'latest', 'video', \"'s\", 'appear', 'on', 'the', 'front', 'page', 'and', 'can', 'be', 'accessed', 'there', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'primary', '', 'was', 'heard', 'at', 'least', '4', '0', 'miles', 'away', 'and', 'one', 'of', 'the', 'witnesses', 'in', '', ',', 'then', '1', '7', '-year-old', '', '', ',', 'described', 'the', 'event', 'as', 'the', '', 'sound', 'she', 'ever', 'heard', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'marion', 'g.', 'romney', 'gave', 'an', 'example', 'of', 'a', '1', '4', '-year-old', 'boy', 'who', 'was', 'invited', 'to', 'four', 'swimming', 'parties', 'in', 'the', 'same', 'week', ',', 'each', 'organized', 'by', 'an', 'independent', 'church', 'organization', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'small', 'blue', '', 'flower', 'was', 'first', 'used', 'by', 'the', 'grand', 'lodge', '``', '', '', \"''\", 'in', '1', '9', '2', '6', ',', 'as', 'a', 'masonic', '', 'at', 'the', 'annual', 'convention', 'in', 'bremen', ',', 'germany', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '0', '3', ',', 'the', 'french', 'government', 'appointed', 'him', 'as', 'a', '', 'of', 'the', '', 'of', 'honour', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'bridge', 'feeds', 'into', 'highway', '1', '1', '1', ',', 'the', '', 'highway', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', ')', 'is', 'a', 'rural', 'locality', '(', 'a', 'selo', ')', 'and', 'the', 'administrative', 'center', 'of', '', 'rural', 'settlement', ',', '', 'district', ',', '', 'oblast', ',', 'russia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rachel', 'de', '', 'coleman', '(', 'born', 'october', '9', ',', '1', '9', '7', '4', ')', 'is', 'an', 'american', 'producer', 'and', 'actress', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '3', ',', 'amrita', '', '', 'became', 'one', 'of', 'the', 'youngest', 'universities', 'to', 'be', 'conferred', 'the', 'status', 'of', 'a', '', 'university', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'moth', 'in', 'the', 'family', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', '0', 'september', ',', 'chinese', 'troops', 'threw', '', 'at', 'indian', 'troops', 'and', 'a', '', 'developed', ',', 'triggering', 'a', 'long', 'series', 'of', '', 'for', 'the', 'rest', 'of', 'september', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'is', 'equivalent', 'to', 'the', 'above', 'notion', ',', 'as', 'every', 'dense', '', 'between', 'two', '', 'varieties', 'of', 'the', 'same', 'dimension', 'is', 'automatically', '', 'with', 'finite', '', ',', 'and', 'if', 'it', 'preserves', 'identities', 'then', 'it', 'is', 'a', '', 'of', 'groups', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'another', 'common', 'type', 'of', 'vegetation', 'are', '', '', ',', 'consisting', 'of', 'sea', '', ',', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'leg', '', 'is', 'the', 'most', 'reliable', 'way', 'to', '', 'between', 'sexes', 'among', '``', 'l', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'dog', \"'s\", '', '', 'foghorn', 'to', '', '``', 'massive', 'retaliation', \"''\", 'against', 'him', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'four', 'weeks', 'later', ',', 'dortmund', 'started', '4', '/', '5', 'favorite', 'for', 'the', 'grade', 'ii', 'san', 'felipe', 'stakes', 'at', 'the', 'same', 'track', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '9', '3', '3', '', ',', 'after', 'the', 'nazi', '', 'of', 'power', ',', 'the', '``', '', \"''\", 'increasingly', 'replaced', 'the', 'german', 'states', 'as', 'administrative', 'subdivisions', 'in', 'germany', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '``', '', \"''\", 'was', 'a', '', '', 'of', 'the', '``', '', \"''\", '', 'built', 'for', 'the', 'royal', 'navy', 'during', 'world', 'war', 'i', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'found', 'in', 'the', 'brazilian', 'state', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'result', 'was', 'kept', 'secret', 'from', 'the', 'caucus', 'and', 'several', 'cabinet', 'ministers', 'privately', 'speculated', 'that', 'watts', 'had', 'actually', 'won', ',', 'but', '', '', 'the', 'result', ',', 'concerned', 'with', 'watts', \"'\", 'health', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '7', '8', ',', 'the', 'second', 'plant', 'was', 'converted', 'to', 'roof', '', 'production', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'ward', '', 'outside', 'the', 'town', 'boundaries', 'a', 'little', 'and', 'the', 'total', '2', '0', '1', '1', 'census', 'figure', 'is', '1', '1', ',', '5', '0', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'these', '', 'arrived', 'in', '', ',', 'a', 'concerned', 'ferdinand', '', 'an', 'austrian', 'garrison', ',', 'from', 'his', 'brother', 'emperor', 'francis', 'of', 'austria', ',', 'for', 'the', 'defence', 'of', 'the', 'state', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'residents', 'do', \"n't\", 'have', 'a', 'library', 'in', 'the', 'community', 'and', 'use', 'the', 'port', 'richmond', ',', '', '', ',', 'and', 'mariners', 'harbor', 'branches', 'of', 'the', 'new', 'york', 'public', 'library', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'continues', 'to', 'write', 'and', 'publish', 'music', 'reviews', 'on', 'a', 'blog', 'that', 'he', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a.', '', '', 'rao', '(', 'born', '2', '4', 'july', '1', '9', '5', '3', ')', 'is', 'an', 'indian', 'author', 'and', '', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'upon', 'reading', 'john', '', 'edward', \"'s\", '', ',', 'the', 'community', 'believe', 'he', 'would', 'smile', 'on', 'and', 'embrace', 'knowing', 'that', 'what', 'he', 'left', 'behind', 'was', 'being', 'used', 'for', 'the', '', 'of', 'like', '', 'individuals', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', '', 'of', 'the', 'bremer', 'river', 'by', 'europeans', 'was', 'made', 'by', 'john', 'oxley', 'and', 'allan', '', 'on', '1', '9', 'september', '1', '8', '2', '4', 'as', 'they', 'explored', 'the', 'brisbane', 'river', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'unofficial', 'mobile', 'version', 'had', 'to', 'be', 'downloaded', 'from', 'the', 'scratch', 'forums', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'prefix', 'and', '', '``', '', \"''\", 'and', '``', '', \"''\", 'can', 'also', 'be', 'used', 'together', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'contributions', 'are', 'paid', 'only', 'on', 'earnings', 'up', 'to', 'the', 'social', 'security', 'ceiling', '(', '2', '0', '2', '1', ':', '7', ',', '1', '0', '0', 'eur', 'in', 'western', 'germany', 'and', '6', ',', '7', '0', '0', 'eur', 'in', 'the', 'former', '', ')', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'children', 'of', 'elite', '', 'families', 'were', 'sent', 'to', 'be', 'educated', 'in', 'egypt', 'then', 'returned', 'to', '', 'to', 'be', 'appointed', 'in', '', 'positions', 'to', 'ensure', 'their', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'and', '', '', 'published', 'a', 'book', 'in', '2', '0', '1', '3', 'entitled', 'interdisciplinary', 'design', ':', 'new', 'lessons', 'from', 'architecture', 'and', 'engineering', ',', '', 'publishing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'very', 'best', 'panchari', 'for', 'annual', 'festivals', 'is', 'tripunithura', 'vrishchikolsavam', '', 'followed', 'by', '', '', 'panchari', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'styled', 'as', 'raja', '', 'before', 'his', '', ',', 'he', 'is', 'the', 'second', 'son', 'of', 'the', '1', '2', 'th', 'sultan', 'of', '', ',', '', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '1', ',', 'he', 'interned', 'for', 'congressman', '', '', 'and', 'served', 'as', 'a', 'page', 'in', 'the', 'maryland', 'general', 'assembly', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'a', 'further', 'report', ',', 'the', '``', 'associated', 'press', \"''\", 'noted', ':', '``', 'the', 'award', 'for', 'best', 'actress', ',', 'musical', 'was', 'eliminated', 'this', 'season', 'because', 'there', 'was', 'only', 'one', 'eligible', 'candidate', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', ',', 'a', '', 'writer', ',', 'has', 'stated', ':', '', 'responded', 'publicly', 'by', '', 'his', 'existence', ',', 'along', 'with', 'the', 'names', 'of', 'people', 'he', 'met', 'on', 'his', 'travels', 'in', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'chimbote', 'is', 'surrounded', 'by', 'two', 'natural', 'bays', ',', 'the', 'bay', 'of', 'chimbote', '(', 'or', '', ')', 'and', 'the', 'bay', 'of', '', ',', 'both', 'with', 'excellent', 'harbor', 'conditions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'paid', '£', '6', ',', '3', '0', '0', 'for', '', \"'s\", 'transfer', 'from', '', 'in', 'march', '1', '9', '2', '8', ',', 'at', 'the', 'same', 'time', 'allowing', 'john', 'smith', 'to', 'move', 'to', 'bury', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'grand', 'duke', 'kirill', 'was', 'six', 'months', 'old', 'when', 'his', 'eldest', 'brother', ',', 'alexander', ',', 'died', 'in', 'childhood', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'finding', 'no', 'evidence', 'to', 'support', 'it', ',', 'the', 'organization', 'issued', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '6', '2', ',', 'pease', 'moved', 'to', '', ',', 'wisconsin', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'february', '6', ',', 'the', 'sichuan', 'provincial', 'health', 'and', 'health', 'commission', 'reported', 'that', '2', '0', 'new', 'cases', 'were', 'confirmed', 'in', 'sichuan', 'and', '4', 'new', 'cases', 'recovered', 'and', 'discharged', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'engines', 'were', 'produced', 'from', '1', '8', '8', '6', 'to', '1', '9', '1', '7', 'when', 'they', 'were', '', 'by', 'larger', ',', 'standard', 'farm', 'engines', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'went', 'to', 'melbourne', 'grammar', 'school', 'then', 'melbourne', 'university', ',', 'achieving', 'a', '', 'with', 'first', 'class', 'honours', 'in', 'chemistry', 'in', '1', '9', '0', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '``', 'bulletin', 'of', 'the', 'center', 'for', 'children', \"'s\", 'books', \"''\", 'says', 'that', 'perry', 'creates', 'a', '``', 'rare', \"''\", 'portrait', 'of', 'the', '``', 'way', '', ',', 'functional', 'families', 'work', 'and', 'the', 'good', 'effects', 'they', 'can', 'produce', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'found', 'in', 'south', 'africa', ',', 'where', 'it', 'has', 'been', 'recorded', 'from', 'the', 'western', 'cape', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'elected', 'to', 'the', '', 'section', 'of', 'the', 'french', '', 'des', 'sciences', 'on', '5', 'may', '1', '9', '0', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'paper', 'has', 'described', 'itself', 'as', 'the', 'flagship', 'of', 'the', 'traditional', 'catholic', 'movement', 'in', 'the', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'in', 'active', 'service', ',', '', 'reported', 'aboard', 'uss', '``', 'franklin', \"''\", 'on', 'march', '2', ',', '1', '9', '4', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'april', '3', ',', '2', '0', '1', '7', ',', 'the', 'washington', 'redskins', 'signed', 'brown', 'to', 'a', '', ',', '$', '2', '.', '3', '0', 'million', 'contract', 'that', 'includes', '$', '7', '0', '0', ',', '0', '0', '0', 'guaranteed', 'and', 'a', 'signing', 'bonus', 'of', '$', '5', '0', '0', ',', '0', '0', '0', '.']\n", "['', 'the', '', 'that', 'describes', 'to', 'what', 'degree', 'a', 'material', 'is', 'a', 'conductor', 'or', '', 'is', 'known', 'as', 'formula_', '1', ',', 'or', 'the', '``', 'loss', '', \"''\", ',', 'given', 'by', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'confused', 'about', 'this', 'but', 'help', 'came', 'from', 'his', 'senior', '', 'singh', 'who', 'was', 'playing', 'at', 'churchill', 'brothers', '', 'during', 'that', 'time', 'and', 'singh', \"'s\", 'name', 'was', 'referred', 'to', 'the', 'club', 'by', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'national', '', 'organization', 'that', 'supports', 'canadians', ',', 'particularly', 'young', 'adults', ',', 'in', 'building', 'a', 'more', '', 'and', '', 'society', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'electrical', 'energy', 'is', 'generated', 'with', 'very', 'high', 'efficiency', 'and', 'zero', 'emissions', 'from', 'the', 'vehicle', 'itself', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'name', '``', '', \"''\", 'comes', 'from', 'the', 'ndebele', 'word', '``', '', \"''\", 'and', 'it', '', 'to', '``', 'the', 'one', 'to', 'be', 'killed', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'area', ',', 'south-east', 'of', 'wuhan', ',', 'became', 'an', 'important', 'center', 'of', 'mining', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '2', 'david', 'evans', 'et', 'al', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'prison', '', 'were', 'established', 'as', 'part', 'of', 'the', 'reforms', 'in', 'the', '2', '0', 'th', 'century', ',', 'and', 'to', 'reduce', 'the', '', 'at', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'european', 'to', 'travel', 'along', 'the', 'river', 'was', 'captain', 'patrick', 'logan', 'who', 'in', 'either', 'late', '1', '8', '2', '6', 'or', 'early', '1', '8', '2', '7', 'investigated', 'the', 'bremer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '2', '0', '0', '', '8', '0', '0', '', '1', '2', '', '3', '7', '.', '4', '4', '', '7', '7', '.', '4', '3', '/', '&', 'gt', ';', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'turner', 'classic', 'movies', 'and', 'the', 'dvd', 'feature', 'the', 'ending', 'with', 'christian', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'within', 'a', '', 'indicate', 'that', 'it', 'accepts', 'one', 'or', 'more', 'arguments', ',', 'one', 'for', 'each', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'house', 'is', 'one', 'of', 'several', 'sites', 'of', 'historic', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'population', 'was', '2', '2', ',', '6', '7', '8', 'at', 'the', '2', '0', '1', '0', 'census', ',', 'up', 'from', '1', '5', ',', '8', '2', '6', 'at', 'the', '2', '0', '0', '0', 'census', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'need', 'for', 'and', 'value', 'of', 'financial', 'managers', 'has', 'increased', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'top', 'two', 'teams', 'in', 'groups', 'a', 'and', 'b', 'qualified', 'for', 'the', 'championship', 'bracket', ',', 'while', 'the', 'remaining', 'teams', 'from', 'groups', 'a', 'and', 'b', 'were', 'placed', 'in', 'the', 'bracket', 'to', 'determine', 'places', '5', 'through', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'song', 'won', 'the', 'grammy', 'award', 'for', 'song', 'of', 'the', 'year', 'at', 'the', '5', '1', 'st', 'annual', 'grammy', 'awards', 'in', '2', '0', '0', '9', 'and', 'has', 'sold', 'over', '9', '.', '4', '4', 'million', 'copies', 'worldwide', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'nominated', 'for', 'a', 'genie', 'award', 'for', 'best', 'motion', 'picture', ',', 'but', 'did', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'this', 'event', ',', 'at', 'about', '9', ':', '0', '0', 'that', 'evening', 'they', 'gathered', 'at', 'the', 'masonic', 'hall', 'for', 'a', '', '', 'which', 'was', 'enjoyed', 'by', 'all', '8', '0', 'of', 'her', 'ranks', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'is', 'a', 'tribute', 'to', 'the', 'high', 'regard', 'in', 'which', 'the', 'lord', 'lieutenant', 'of', 'ireland', ',', 'the', 'earl', 'of', '', ',', 'held', 'him', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'older', 'sister', 'mary', '(', '', 'hudson', ')', 'works', 'in', 'the', 'kitchen', ',', 'laundry', ',', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mohammed', 'worked', 'for', 'a', 'private', 'company', ',', 'then', 'was', 'appointed', 'first', 'assistant', 'general', 'manager', 'and', 'then', 'general', 'manager', 'of', 'the', '', 'river', 'basin', 'and', 'rural', 'development', 'authority', ',', 'a', 'federal', 'ministry', 'of', 'water', 'resources', 'agency', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'writes', 'about', 'how', 'she', 'was', 'inspired', 'to', 'take', 'on', 'this', 'adventure', 'by', 'scott', 'fischer', ',', 'and', 'how', 'she', 'mentally', 'prepared', 'for', 'the', '', 'as', 'part', 'of', 'the', '', 'environmental', 'expedition', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', '``', 'islamic', '', ',', \"''\", 'he', 'is', 'an', 'outspoken', 'critic', 'of', 'both', 'islamic', 'movements', 'and', 'secular', '', ',', 'and', 'has', 'set', 'himself', 'apart', 'from', 'many', 'other', 'activists', 'through', 'his', 'use', 'of', 'humor', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'after', 'the', '', 'content', 'of', 'the', 'lake', 'changed', 'in', '1', '9', '4', '0', ',', 'the', 'only', 'surviving', 'fish', 'is', 'the', '', ',', 'while', 'most', 'of', 'the', 'other', 'species', ',', 'including', 'the', '``', '', \"''\", ',', 'are', 'thought', 'to', 'have', 'gone', 'extinct', '.', '', '', '', '', '', '']\n", "['', 'he', 'also', 'worked', 'together', 'with', '', '', '', 'and', 'others', 'on', 'the', 'physics', 'and', '', 'of', 'the', 'early', 'processing', 'of', 'central', 'musical', 'quantities', 'in', 'the', 'brain', ',', 'like', 'tone', '', 'and', 'tone', 'spectrum', '(', 'he', 'plays', 'piano', 'since', 'childhood', ')', '.', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'located', 'at', ',', 'which', 'is', '1', '2', '.', '7', 'km', 'south', 'of', '', '', ',', '1', '8', '.', '2', 'km', '', 'of', '', 'peak', 'and', '1', '1', '.', '4', 'km', '', 'of', '', 'peak', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'a', 'result', 'of', 'this', 'marriage', ',', 'queen', '', 'and', 'king', 'edward', 'iii', 'granted', 'a', 'lifetime', '', 'to', 'the', 'couple', 'in', '1', '3', '6', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'village', 'of', '', ',', 'the', 'administrative', 'centre', '(', '``', '', \"''\", ')', 'of', 'the', 'commune', ',', 'is', '4', '5', 'km', 'southwest', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'island', 'of', '', ',', 'he', 'is', 'also', 'known', 'as', 'a', 'brother', 'of', '', ',', 'but', 'is', 'not', 'as', 'famous', 'as', 'him', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'alignment', 'would', 'be', 'up', 'to', 'wide', 'for', 'traffic', 'outside', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'july', '2', '0', '1', '5', '', 'completed', 'the', 'acquisition', 'of', 'a', '4', '4', '.', '9', '6', '%', 'stake', 'in', 'the', 'company', 'owned', 'by', '', '', \"'s\", '', 'holdings', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'friedrich', 'continued', 'through', '#', '8', '3', '(', '', '1', '9', '7', '1', ')', ',', 'with', 'the', 'late', 'part', 'of', 'this', 'run', 'having', '', 'issues', '', 'with', 'new', 'stories', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'and', '', 'at', 'the', 'flower', 'mart', 'offer', '', 'tips', ',', 'sell', 'plants', 'and', '', ',', 'and', 'other', '', 'goods', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'gave', 'him', 'a', 'display', 'of', '', 'throwing', 'for', 'a', '', ',', 'and', 'he', 'reflected', '', 'on', 'how', 'their', 'numbers', 'were', 'rapidly', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'currently', ',', 'it', 'is', 'estimated', 'that', '1', '0', '-', '2', '0', '%', 'of', 'its', 'mollusk', 'species', 'are', 'extinct', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'pierre', '', '(', 'born', '8', 'january', '1', '9', '9', '4', ')', 'is', 'a', 'french', 'footballer', 'who', 'plays', 'with', 'belgian', 'football', 'association', 'club', '', '', 'as', 'a', 'center', 'back', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'constructed', 'the', 'music', 'video', 'and', 'the', 'film', 'around', 'ms.', 'lavonne', \"'s\", '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'used', 'in', 'contrast', 'to', '``', '', \"''\", ',', 'which', 'refers', 'to', 'alpha', 'male', 'men', 'who', 'do', 'not', 'give', 'money', 'to', 'women', 'but', 'nonetheless', 'engage', 'with', 'them', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'joe', '', 'made', 'a', 'try', 'for', 'frank', '', \"'s\", 'record', ',', 'but', 'fell', 'short', 'at', '9', 'goals', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'lü', \"'s\", 'death', ',', 'an', 'official', 'named', '', '', 'was', 'inspired', 'by', 'his', '', 'writing', 'to', 'attempt', 'to', 'overthrow', 'the', '', 'emperor', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'his', 'involvement', 'in', 'the', 'underground', 'party', 'work', 'in', '1', '9', '7', '9', '-', '9', '0', ',', 'he', 'worked', 'as', '', 'district', 'committee', 'member', 'of', 'the', 'party', 'from', '1', '9', '7', '9', 'to', '1', '9', '8', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'the', 'single', '``', '', 'me', '', '!', ',', \"''\", 'the', '', '', 'has', 'been', 'called', '``', 'a', 'project', 'that', 'fires', 'on', 'all', 'cylinders', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'tubular', 'flowers', 'are', '', 'with', 'dense', '', 'and', 'open', 'at', 'the', '', 'with', 'six', '', 'structures', ',', 'and', 'it', 'is', 'from', 'this', '', 'formation', 'that', 'the', 'common', 'name', '``', 'kangaroo', '', \"''\", 'is', 'derived', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'resulted', 'in', 'a', 'production', 'deal', 'for', 'the', 'dr.', '', '&', 'amp', ';', 'mr.', 'hyde', 'with', 'profile', 'records', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'late', '2', '0', '1', '5', ',', 'members', '', '', ',', '', '', 'and', '', 'iwata', 'were', 'endorsed', 'in', 'a', 'promotional', 'campaign', 'with', '', \"'s\", '', 'product', 'line', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'company', 'also', 'created', '', 'in', 'denmark', ',', 'belgium', 'and', 'the', 'netherlands', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'carthage', 'film', 'festival', 'is', 'held', 'in', 'october', 'and', 'november', 'of', 'every', 'other', 'year', ',', '', 'with', 'the', 'carthage', 'theatre', 'festival', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '``', 'ben', \"''\", 'rivera', '', '(', 'born', 'january', '1', '1', ',', '1', '9', '6', '8', 'in', 'san', 'pedro', 'de', '', ',', 'dominican', 'republic', ')', 'is', 'a', 'retired', 'professional', 'baseball', 'pitcher', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'brown', ',', 'whose', 'background', 'was', 'in', 'classical', 'studies', ',', 'became', 'interested', 'in', '', 'because', 'of', '', '', ',', 'a', 'philosopher', 'associated', 'with', 'the', 'institute', 'for', 'social', 'research', 'based', 'in', 'frankfurt', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'greene', 'worked', 'in', 'the', 'kings', \"'\", 'organization', 'as', 'a', 'professional', 'scout', 'after', 'retiring', 'from', 'playing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'are', 'commonly', '', 'and', 'kept', 'in', '', 'and', 'may', 'live', 'up', 'to', '3', '0', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'italy', 'entered', 'the', 'war', 'in', '1', '9', '1', '5', 'with', 'thirty', 'regiments', 'of', 'line', 'cavalry', ',', '', 'and', 'light', 'horse', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'brown', \"'s\", 'single', 'was', 'released', 'in', 'the', '1', '9', '7', '0', 's', ',', 'the', 'charts', 'only', 'made', 'reference', 'to', 'radio', '', 'and', 'sales', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'return', 'migration', 'takes', 'place', 'in', 'september', 'to', 'november', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'not', 'until', 'the', '1', '9', '9', '0', 's', 'that', '', \"'s\", 'population', '', 'its', '1', '8', '4', '0', 'peak', 'of', '9', ',', '0', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'having', 'represented', 'england', 'at', 'u', '1', '8', 'and', 'u', '1', '9', 'level', ',', 'thomas', 'made', 'his', 'u', '2', '0', 'debut', 'during', 'a', '2', '-', '0', 'victory', 'over', 'wales', 'at', 'st.', 'george', \"'s\", 'park', 'on', '1', '3', 'october', '2', '0', '2', '0', '.', '', '', '', '', '', '', '', '']\n", "['', 'together', 'with', 'a', 'growing', '', 'of', 'public', 'servants', ',', 'these', 'politicians', 'required', 'accommodation', 'when', 'in', 'brisbane', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", ',', 'or', '``', '', '', \"''\", 'in', 'pharmaceutical', 'latin', ')', 'was', 'defined', 'as', 'of', 'a', '', ',', 'or', '2', 'fluid', 'ounces', '(', '2', 'fluid', 'ounces', 'in', 'the', 'imperial', 'system', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'described', 'as', '``', 'a', '', '', 'open', 'to', 'visitors', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'requires', 'the', '', ',', 'at', 'the', 'request', 'of', 'a', 'drug', 'sponsor', ',', 'to', '', 'the', 'review', 'of', 'a', 'drug', 'if', 'the', 'drug', '', 'a', 'serious', 'or', '', 'disease', 'or', 'condition', 'and', 'the', 'drug', '', 'substantial', '', 'over', 'existing', 'therapies', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'named', 'the', 'best', 'young', 'player', 'of', 'the', 'tournament', 'and', 'won', 'the', 'golden', 'boot', 'as', 'the', 'tournament', \"'s\", 'top', '', ',', 'with', 'five', 'goals', 'and', 'three', 'assists', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'does', 'not', 'require', 'the', 'speaker', 'to', 'have', '', 'said', 'that', 'they', 'are', 'taking', 'a', 'stance', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'most', 'are', '', ',', 'and', 'attract', '', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'a', 'full', 'service', 'library', 'and', 'is', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', 'this', 'time', 'he', 'was', 'working', 'in', 'the', 'social', 'welfare', 'service', 'as', 'a', 'civil', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '(', 'although', 'the', 'title', '``', '', \"''\", 'was', 'originally', 'granted', 'by', 'cardinal', '', ',', 'the', 'building', 'was', 'still', '', 'only', 'a', 'collegiate', 'church', ',', 'and', 'not', 'yet', 'a', 'cathedral', 'within', 'the', '', 'meaning', 'of', 'the', 'term', '.', ')', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'humans', 'appear', 'to', 'have', 'long', 'expressed', 'a', 'desire', 'to', 'know', 'which', 'horse', 'or', 'horses', 'were', 'the', 'fastest', ',', 'and', 'horse', 'racing', 'has', 'ancient', 'roots', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'worldwide', 'release', 'was', 'on', '2', 'march', '1', '9', '9', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'next', 'day', ',', 'tom', 'came', 'to', 'simone', 'and', 'they', '', 'and', 'made', 'love', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'set', 'of', '', 'classes', 'of', '', 'binary', '', 'forms', 'having', 'a', 'given', '', '``', 'd', \"''\", 'is', 'a', 'group', 'under', 'the', 'composition', 'law', 'described', 'above', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'pan', 'claimed', 'she', 'left', 'the', 'party', 'since', 'she', 'was', 'not', 'guaranteed', 'a', 'federal', 'deputy', 'spot', 'through', 'the', '', 'representation', 'process', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'union', 'is', 'governed', 'by', 'a', 'national', 'executive', ',', 'made', 'up', 'of', 'elected', 'representatives', 'from', 'each', 'of', 'the', 'divisions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'can', 'now', 'handle', '7', '0', '0', 'transactions', 'per', 'second', 'and', '1', '5', '0', ',', '0', '0', '0', 'transactions', 'per', 'day', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'then', 'the', '', 'ring', '``', 'k', \"''\", '[', '``', 'c', \"''\", ']', 'of', 'regular', 'functions', 'on', '``', 'c', \"''\", 'is', 'a', '', 'domain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'response', 'to', 'the', 'issues', 'that', '', 'big', 'cats', ',', 'the', '', 'board', 'of', 'directors', 'approved', 'a', '``', 'policy', 'on', 'big', 'cats', \"''\", 'that', '', 'ownership', 'by', '', 'and', 'those', 'lacking', 'proper', 'facilities', ',', 'knowledge', 'and', 'resources', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'ones', 'that', 'can', 'still', 'talk', '(', 'as', 'in', 'the', 'case', 'of', 'one', 'named', 'alexander', ')', 'are', 'imprisoned', 'in', 'a', '', 'either', 'until', 'the', 'transformation', '', 'or', 'to', 'make', 'sure', 'they', 'do', \"n't\", 'gain', 'the', 'attention', 'of', 'the', 'law', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'until', '1', '9', '9', '6', ',', 'the', 'guide', '', 'awarded', 'the', 'restaurant', 'three', 'stars', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '', 'new', 'guinea', 'whereas', 'christian', 'missionaries', 'openly', 'opposed', 'traditional', '', 'art', 'and', 'performances', ',', 'the', '', 'encouraged', 'their', 'production', 'as', 'a', 'form', 'of', 'worship', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'initiated', '', 'title', 'and', 'adverse', 'possession', '', 'against', 'a', 'number', 'of', 'native', '', 'families', 'who', 'held', '``', '', \"''\", 'land', 'rights', 'within', 'his', '7', '0', '0', '-acre', '', 'property', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'jump', 'britain', \"''\", 'is', 'a', '2', '0', '0', '5', 'documentary', 'about', 'free', 'running', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'new', 'sets', 'were', 'built', 'with', '1', '1', 'cars', 'and', 'delivered', 'via', 'the', 'channel', 'tunnel', 'to', 'edge', 'hill', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ahmadinejad', 'received', 'a', 'hero', \"'s\", 'welcome', 'upon', 'his', 'return', 'to', 'tehran', 'on', '2', '1', 'april', ',', 'where', 'he', 'was', '', 'by', 'supporters', 'at', 'the', 'airport', 'with', '``', 'death', 'to', 'israel', \"''\", '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'majority', 'of', '', 'were', 'found', 'to', 'have', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'started', '', 'in', '2', '0', '0', '9', 'and', 'completed', 'in', '2', '0', '1', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'both', 'villoresi', 'and', 'his', 'mechanic', 'were', '', 'beneath', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'produced', 'his', 'fourth', 'album', ',', '``', 'spark', \"''\", ',', 'in', '2', '0', '0', '4', 'and', 'went', 'completely', 'indie', ',', 'selling', 'the', '', 'from', 'his', 'website', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'selected', 'to', 'represent', '', 'at', 'under-', '1', '6', 'and', 'under-', '1', '8', 'level', 'between', '2', '0', '1', '0', 'and', '2', '0', '1', '2', ',', 'and', 'made', 'his', 'test', 'debut', 'for', 'in', '2', '0', '1', '4', 'against', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'haigh', 'branch', 'would', 'have', 'required', 'a', 'fourth', 'engine', ',', 'but', 'the', 'haigh', '', 'closed', 'and', 'the', 'branch', 'was', 'never', 'built', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'second', 'type', 'of', 'names', 'that', 'were', 'given', 'to', 'peaks', 'are', 'after', 'european', 'climbers', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'eventually', ',', 'a', 'friend', ',', '', '', '(', '', \"'s\", 'first', 'manager', ')', 'wrote', 'a', 'fitting', 'story', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'to', 'help', 'counter', 'the', 'perceived', 'male', '', 'of', 'its', '', 'target', 'group', ',', 'the', 'company', 'expanded', 'the', 'definition', 'in', 'early', '2', '0', '1', '0', 'to', 'cover', 'individuals', 'of', 'both', 'sexes', ',', 'all', 'ages', ',', 'and', 'households', 'who', 'frequent', 'fast', 'food', 'within', 'the', 'stated', 'time', 'frame', '.', '', '', '', '']\n", "['', '', 'pilot', 'is', 'a', 'danish', 'device', 'that', 'can', 'be', 'fitted', 'to', 'any', 'vehicle', 'that', 'uses', 'a', 'combination', 'of', '', 'and', 'reaction', 'tests', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'san', 'francisco', 'won', 'the', 'series', ',', 'however', ',', 'in', 'game', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'mathematics', ',', 'function', 'composition', 'is', 'an', 'operation', 'that', 'takes', 'two', 'functions', 'and', 'and', 'produces', 'a', 'function', 'such', 'that', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '``', 'little', 'italy', \"''\", 'in', 'lower', 'manhattan', 'was', 'under', 'the', 'control', 'of', '', '``', '', 'the', '', \"''\", '', ',', 'before', 'a', 'gang', 'war', '', ',', 'the', 'two', 'sides', 'decided', 'on', 'joining', 'forces', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'concert', 'arena', '(', 'at', 'the', '', 'world', 'theme', 'park', ')', 'was', 'erected', 'as', 'a', 'temporary', 'venue', 'for', 'the', 'event', 'and', 'was', 'torn', 'down', 'the', 'following', 'week', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'claims', 'that', 'sometimes', 'the', '', 'is', '', 'repaired', 'after', '', ',', 'using', 'a', 'so-called', '``', 'husband', '', \"''\", 'and', 'that', 'this', 'can', 'increase', '', '', 'or', 'result', 'in', 'pain', 'during', 'intercourse', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', 'were', 'hurt', ',', '', 'were', 'hurt', 'and', 'the', 'power', 'station', 'carried', 'on', 'producing', 'energy', 'regardless', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'which', 'means', '``', '', ',', 'an', 'excellent', 'competition', '!', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'top', 'two', 'teams', 'from', 'groups', 'c', 'and', 'd', 'were', 'placed', 'in', 'the', 'bracket', 'to', 'determine', 'places', '9', 'through', '1', '2', ',', 'and', 'the', 'remaining', 'teams', 'were', 'placed', 'in', 'the', 'bracket', 'to', 'determine', 'places', '1', '3', 'through', '1', '6', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'audience', ',', 'according', 'to', 'one', 'report', ',', '``', 'included', 'many', 'members', 'of', 'the', 'great', 'and', 'good', ',', 'former', 'cabinet', 'ministers', 'and', 'privy', 'councillors', ',', 'as', 'well', 'as', 'actors', ',', 'writers', ',', '', ',', 'and', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'all', 'the', '', 'teams', 'stayed', 'at', 'the', '', '', 'hotel', 'and', 'were', 'filmed', 'for', 'fox', '', 'news', 'going', 'down', 'the', 'steps', 'at', 'the', 'university', 'of', '', ',', 'while', 'their', 'exhibition', 'games', 'were', 'played', 'at', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'his', 'full-length', 'book', '``', '', \"''\", 'is', 'based', 'on', 'the', 'eponymous', 'biblical', 'figure', ',', '', 'is', 'not', 'religious', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', 'a', 'humid', 'continental', 'climate', '(', '', '``', '', \"''\", ')', 'with', 'cold', ',', '', 'winters', 'and', 'warm', 'summers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'band', 'have', 'also', 'played', 'shows', 'across', 'canada', 'and', ',', 'on', 'one', 'occasion', ',', 'as', 'part', 'of', 'the', 'line-up', 'in', 'a', 'surf', 'rock', 'showcase', 'in', 'new', 'york', 'city', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'line', \"'s\", '', ',', 'the', 'new', 'zealand', 'railways', 'corporation', 'retained', 'ownership', 'over', 'the', '', 'in', 'the', 'hopes', 'that', 'forestry', '', 'would', 'come', 'to', '', ',', 'and', 'some', 'rails', 'were', 'still', 'in', 'place', 'during', 'the', '1', '9', '9', '0', 's', '.', '', '', '', '', '', '', '', '']\n", "['', 'the', 'baron', '', 'his', '', 'son', 'when', 'the', 'latter', \"'s\", 'affairs', 'are', 'revealed', ',', 'but', 'gaston', 'successfully', 'bids', 'his', 'father', 'remember', 'his', 'own', '', 'youth', ',', 'and', 'all', 'is', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'born', 'on', '1', '7', 'march', '1', '9', '0', '3', 'in', '', ',', 'assam', ',', 'british', 'india', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'population', 'was', '3', '1', '1', 'as', 'of', '2', '0', '1', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', '9', 'may', '1', '8', '3', '9', ',', 'overseas', 'manual', 'labour', 'was', 'prohibited', 'and', 'any', 'person', '', 'such', 'emigration', 'was', '', 'to', 'a', '2', '0', '0', '', 'fine', 'or', 'three', 'months', 'in', 'jail', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '2', '4', 'the', '', 'house', '', 'suffered', 'financial', 'difficulties', 'and', 'a', 'limited', 'company', 'was', 'formed', 'called', 'old', 'manor', '(', '', ')', 'ltd.', 'sir', 'cecil', '', 'was', 'appointed', 'managing', 'director', 'and', 'left', 'his', 'law', 'practice', 'to', '', 'wholly', 'on', 'the', 'management', 'of', 'the', 'business', '.', '', '', '']\n", "['', 'her', 'literary', 'influences', '', 'fundamentally', 'from', 'the', '', 'world', ',', 'from', 'diverse', '', ',', 'and', 'from', 'the', 'principal', '', 'of', 'ancient', 'peoples', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'switch', 'between', '', 'and', '', 'collection', 'was', 'performed', 'while', 'running', 'at', 'speed', ',', 'initially', 'at', 'continental', 'junction', 'near', '', ',', 'and', 'later', 'on', 'at', '', 'junction', 'after', 'the', 'opening', 'of', 'the', 'first', 'section', 'of', 'the', 'channel', 'tunnel', 'rail', 'link', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'biography', 'of', '', ',', '``', 'the', 'hidden', 'boy', \"''\", ',', 'by', 'richard', '', 'ward', ',', 'was', 'published', 'in', '1', '9', '6', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'than', 'isolated', '', ',', 'complex', 'functions', 'of', 'one', 'variable', 'may', 'exhibit', 'other', '', 'behaviour', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'post', 'office', 'was', 'established', 'in', '', 'in', '1', '8', '8', '6', ',', 'but', 'from', '1', '8', '8', '6', 'until', '1', '8', '8', '8', ',', 'the', 'post', 'office', 'was', 'called', 'st.', 'peter', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'is', 'the', 'most', 'prolific', '', 'of', 'technology', 'and', 'owns', 'a', 'good', 'portion', 'of', 'the', 'american', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '8', 'november', '2', '0', '0', '7', ',', 'the', 'house', 'committee', 'on', 'science', 'and', 'technology', \"'s\", '', 'on', 'space', 'and', 'aeronautics', 'held', 'a', 'hearing', 'to', '', 'the', 'status', 'of', 'nasa', \"'s\", '', 'object', '(', '', ')', 'survey', 'program', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'is', 'headed', 'by', 'a', 'director', 'who', '', 'the', 'policies', 'involving', 'department', 'of', 'defense', 'assets', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'march', '2', '0', '0', '8', 'the', 'express', 'group', 'paid', 'the', 'fund', '£', '5', '5', '0', ',', '0', '0', '0', 'and', '£', '3', '7', '5', ',', '0', '0', '0', 'in', '', 'damages', 'arising', 'out', 'of', 'articles', 'about', 'the', 'mccanns', 'and', '', 'seven', 'respectively', '.', '', '', '', '', '', '']\n", "['', 'during', 'the', 'late', '2', '0', 'th', 'century', ',', '', 'became', '', 'in', 'british', 'public', 'schools', ',', 'as', 'attitudes', 'to', 'boarding', 'education', 'and', 'child', 'development', 'changed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'moved', 'to', 'copenhagen', 'in', '1', '7', '9', '0', 'where', 'he', 'the', 'same', 'year', 'was', 'licensed', 'as', 'a', 'merchant', '(', '``', '', \"''\", ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'austria', 'they', 'emerged', 'later', 'than', 'in', 'germany', ',', 'because', 'the', 'railway', 'companies', '', 'away', 'from', 'their', 'higher', 'running', 'costs', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'first', ',', 'coalition', '', 'ahmed', '', 'admitted', 'that', 'schools', 'and', 'hospitals', 'were', '', 'but', 'claimed', 'that', 'these', 'were', 'used', 'as', 'weapon', 'storage', 'sites', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'origins', 'of', 'the', 'internet', 'date', 'back', 'to', 'the', 'development', 'of', 'packet', '', 'and', 'research', 'commissioned', 'by', 'the', 'united', 'states', 'department', 'of', 'defense', 'in', 'the', '1', '9', '6', '0', 's', 'to', '', '', 'of', 'computers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'building', 'is', 'one', 'of', 'middlesex', 'university', \"'s\", '', 'development', ',', 'and', 'was', 'opened', 'in', 'february', '2', '0', '1', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'font', 'was', 'named', 'by', 'norton', 'and', ',', 'according', 'to', 'microsoft', ',', 'received', 'its', 'name', 'from', 'the', 'westminster', 'bank', 'limited', '(', 'now', '', ')', 'from', 'the', 'united', 'kingdom', ')', 'because', 'it', 'helped', 'fund', 'the', 'font', \"'s\", 'production', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'two', 'light', 'guns', 'can', 'be', 'used', 'simultaneously', 'to', 'provide', '', 'play', 'in', 'two', 'player', 'mode', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '2', ',', 'an', 'update', 'of', 'c', '6', ',', 'retained', 'the', 'simple', '', 'execution', 'pipeline', 'of', 'its', 'predecessor', ',', 'but', 'added', 'dual', '', '3', '', '!', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'so', ',', '', 'turned', 'around', 'and', 'sold', 'both', 'to', 'producers', 'eddie', '', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '6', ',', 'the', 'band', 'played', 'at', 'the', '', 'festival', ',', 'becoming', 'first', '', 'since', '', 'in', '1', '9', '9', '1', 'to', 'do', 'so', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'also', 'a', 'solo', 'artist', ',', 'and', 'tours', 'with', 'his', 'backing', 'band', ',', 'the', 'way', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'competed', 'in', 'the', 'men', \"'s\", '8', '0', '0', 'metres', 'at', 'the', '1', '9', '7', '2', 'summer', 'olympics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'minamata', 'bay', 'is', 'a', 'bay', 'on', 'the', 'west', 'coast', 'of', '', 'island', ',', 'located', 'in', '', 'prefecture', ',', 'japan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'typically', ',', 'they', 'are', '', 'colored', 'and', 'rather', 'dark', ',', 'with', '', '', '', ';', 'in', 'many', ',', 'there', 'are', 'two', 'or', 'three', 'weak', '', 'bands', 'extending', 'across', 'the', 'wings', 'and', 'forming', 'a', 'rough', '', 'when', 'the', 'moths', 'are', 'at', 'rest', '.', '', '', '', '', '', '', '', '']\n", "['', '', '', 'and', 'other', 'techniques', 'have', 'shown', 'that', 'a', 'magnetic', 'moment', 'of', 'around', '3', '.', '7', '', '', 'resides', 'almost', 'solely', 'on', 'the', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'book', 'was', 'eventually', 'published', 'under', 'the', 'title', '``', 'the', 'bad', 'and', 'the', 'beautiful', ':', 'my', 'life', 'in', 'a', 'golden', 'age', 'of', 'film', 'music', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'company', 'ice', 'cream', ',', '', ',', 'and', '', 'factory', 'operated', 'in', 'the', 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'recipients', 'of', 'honours', 'are', 'displayed', 'here', 'as', 'they', 'were', 'styled', 'before', 'their', 'new', 'honour', ',', 'and', 'arranged', 'by', 'honour', ',', 'with', 'classes', '(', 'knight', ',', 'knight', 'grand', 'cross', ',', '``', 'etc', '.', \"''\", ')', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', '', \"''\", ',', 'the', '', '', ',', 'has', 'been', 'shown', 'to', 'cause', 'severe', 'damage', 'to', 'agricultural', 'crops', ',', 'and', 'is', 'considered', 'as', 'a', '', 'in', 'australia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', '', \"'s\", '', 'to', 'los', 'angeles', ',', 'gretzky', \"'s\", 'arrival', 'in', 'a', 'major', 'us', 'market', 'took', 'his', 'profile', 'to', 'another', 'level', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'july', '1', '0', ',', '2', '0', '1', '9', ',', 'ting', 'mobile', 'announced', 'that', 'it', 'will', 'not', '', 'its', 'network', 'agreement', 'with', '', 'after', 'december', '1', '9', ',', '2', '0', '1', '9', ',', 'citing', '', 'over', 'its', 'proposed', 'merger', 'with', 'sprint', 'and', 'will', 'partner', 'with', '', '.', '', '', '']\n", "['', 'in', '', ',', 'communists', 'in', '', '', 'a', 'nationalist', 'underground', 'intelligence', 'directly', 'controlled', 'by', 'the', 'bandits', 'and', 'the', 'bandit', '', 'including', '', '', '(', '', ')', ',', 'li', '', '(', '', ')', 'and', 'cui', '', '(', '', ')', 'were', 'all', 'arrested', '.', '', '', '', '', '', '', '', '']\n", "['', 'the', 'rest', 'of', 'the', 'canvas', 'consists', 'of', 'colorful', 'strings', '', '', 'from', 'top', 'to', 'bottom', ',', 'without', '', 'the', 'pentagon', 'located', 'on', 'the', 'top', 'middle', 'portion', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'the', 'other', 'side', 'sat', 'representatives', 'of', 'the', 'posluns', 'family', ',', 'who', 'for', 'three', 'generations', 'had', 'been', 'involved', 'in', 'the', 'toronto', '', 'industry', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'members', 'formed', 'the', 'sub', 'unit', 'called', 'the', '', 'from', '', 'j', 'soul', 'brothers', 'and', 'released', 'the', 'digital', 'single', '', 'the', 'love', \"'\", 'as', 'a', 'commercial', 'song', 'for', 'the', 'endorsement', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'control', 'system', 'is', 'further', 'divided', 'into', 'two', 'service', 'brake', '', ',', 'the', 'parking', 'brake', 'circuit', ',', 'and', 'the', 'trailer', 'brake', 'circuit', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'species', 'can', 'be', 'distinguished', 'by', 'its', 'absence', 'of', 'a', '', 'of', 'densely', 'distributed', '', 'on', 'its', 'first', '', ',', 'the', '', '', 'margin', 'which', 'bears', 'two', 'spines', ',', 'and', 'the', '', 'of', 'its', 'first', '', 'carrying', 'only', 'two', 'spines', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'both', 'miniseries', 'were', 'written', 'by', 'television', 'series', 'executive', 'producer', 'and', 'writer', 'david', 'a.', '', ',', 'illustrated', 'by', 'david', '', ',', 'and', 'colored', 'by', 'michael', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'intended', 'to', 'improve', 'code', '', ',', '', 'are', 'placed', 'within', 'the', '', 'such', 'that', 'when', 'the', 'required', 'arguments', 'are', 'in', 'place', ',', 'the', 'expression', \"'s\", 'intent', 'is', '', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', '', 'before', '1', '7', '4', '0', ',', 'but', 'the', 'building', \"'s\", 'current', 'architecture', 'dates', 'from', 'circa', '1', '9', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ana', 'produced', 'a', 'small', 'storm', '', 'along', 'the', '', 'of', 'northeastern', 'florida', ',', 'georgia', ',', 'and', 'the', '', ',', 'peaking', 'at', 'near', 'south', 'of', '', 'beach', ',', 'south', 'carolina', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'same', 'program', 'was', '[', '[', '', '', ']', ']', \"'s\", '[', '[', 'symphony', 'no', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'military', 'service', 'members', 'receive', 'a', 'basic', '', 'where', 'they', 'can', 'choose', 'to', 'live', 'in', 'private', 'sector', 'housing', ',', 'or', '', 'housing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'smith', 'also', 'was', 'runner', 'up', 'in', 'the', '2', '0', '2', '0', 'masters', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'original', 'estimated', 'cost', 'for', 'building', '', 'was', '$', '3', '5', ',', '0', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'his', '', 'debut', ',', 'dortmund', 'contested', 'the', 'grade', 'iii', 'robert', 'b.', 'lewis', 'stakes', 'at', 'santa', 'anita', 'on', 'february', '7', 'in', 'which', 'he', '', 'five', 'pounds', 'to', 'firing', 'line', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', '', 'and', 'owner', 'of', 'gordon', 'b.', '', '&', 'amp', ';', 'company', ',', 'a', '', '', 'dealer', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'response', 'to', 'the', 'september', '1', '1', 'attacks', ',', 'president', 'george', 'w.', 'bush', 'created', 'a', 'war', 'cabinet', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'note', 'that', 'the', 'weak', 'conjecture', 'would', 'be', 'a', '', 'of', 'the', 'strong', 'conjecture', ':', 'if', 'is', 'a', 'sum', 'of', 'two', 'primes', ',', 'then', 'is', 'a', 'sum', 'of', 'three', 'primes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'is', 'based', 'on', 'the', '', '', 'adopted', 'by', 'the', '', 'in', '1', '9', '2', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'were', 'finally', 'assisted', 'by', 'citizens', \"'\", 'groups', 'and', 'eventually', 'the', 'cavalry', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '3', ',', 'the', 'chicago', '', 'of', 'the', 'north', 'american', 'soccer', 'league', 'drafted', 'fernandez', 'but', 'he', 'did', 'not', 'sign', 'with', 'them', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'known', 'as', '', '', 'ang', 'believed', 'to', 'perform', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', '', ',', 'during', 'the', '', 'phase', ',', 'the', 'egg', 'will', 'be', 'available', 'to', 'be', '', 'by', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '7', '9', '6', 'the', '', 'had', 'an', '', 'for', 'a', 'new', 'teacher', 'and', 'in', 'it', ',', 'it', 'was', 'written', 'that', 'he', 'should', ':', '``', 'show', 'good', 'references', 'regarding', 'his', '', 'and', 'knowledge', 'in', 'teaching', 'children', 'in', 'reading', ',', 'writing', 'and', 'math', '.', \"''\", '', '', '', '', '']\n", "['', 'the', 'characteristic', 'length', 'scale', 'of', 'a', 'spin', '', 'is', 'the', 'planck', 'length', ',', 'approximately', '1', '.', '6', '1', '6', '×', '1', '0', '−', '3', '5', 'm', ',', 'and', 'so', 'lengths', 'shorter', 'than', 'the', 'planck', 'length', 'are', 'not', 'physically', 'meaningful', 'in', 'lqg', '.', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '6', ',', 'she', 'received', 'the', 'costume', 'designers', 'guild', '', '', 'award', ',', 'in', 'honour', 'of', 'an', '``', '', 'commitment', 'to', 'excellence', \"''\", 'and', 'her', '``', '', 'for', 'the', '', 'of', 'costume', 'design', 'and', 'collaboration', 'with', 'the', 'costume', 'designers', '.', \"''\", '', '', '', '', '', '']\n", "['', 'he', 'follows', 'her', '(', 'his', 'sister', ',', '', 'the', '', ')', 'to', 'the', 'south', ',', 'where', 'they', 'spend', 'the', 'winter', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', '', 'goes', 'towards', 'the', 'mountain', 'to', '', 'upon', 'them', ',', '', 'seems', 'to', 'have', 'been', '', 'towards', 'the', '', 'army', 'for', 'thinking', 'less', 'of', 'him', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'dela', 'peña', 'is', 'the', 'youngest', 'son', 'of', '', '', 'peña', 'and', 'of', 'former', '', '/', 'san', 'miguel', '', 'athlete', 'ricardo', 'dela', 'peña', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'king', '', 'also', 'expanded', 'proceeds', 'to', 'the', 'monastery', 'and', 'land', 'or', '', 'income', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'idea', 'for', 'the', 'album', 'came', 'from', 'the', 'popular', 'closing', 'sequence', 'of', '', \"'s\", 'tv', 'show', ',', 'in', 'which', 'he', 'sang', 'a', 'song', 'while', 'seated', 'in', 'a', '', 'chair', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'companies', 'have', 'developed', 'hardware', 'like', 'the', '', 'sleep', 'pilot', 'and', 'vigo', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'notable', 'is', 'the', '', 'scale', \"'s\", 'focus', 'on', 'the', 'social', 'and', 'emotional', 'development', 'of', 'infants', 'and', '', 'and', 'the', 'involvement', 'of', 'families', 'in', 'this', 'assessment', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'johnson', 'first', 'ran', 'for', 'the', 'senate', 'in', '1', '9', '4', '1', ',', 'he', 'paid', 'a', 'large', 'sum', 'of', 'money', 'to', 'parr', 'to', 'obtain', 'the', 'valley', 'vote', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'classification', 'system', 'allows', '', 'to', 'compete', 'against', 'others', 'with', 'a', 'similar', 'level', 'of', 'function', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'i', 'do', \"n't\", 'mean', 'that', 'she', 'was', '', 'to', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'generally', '', 'worship', 'the', 'supreme', 'in', 'one', 'of', 'six', 'forms', ':', '', ',', '', ',', '', ',', '', ',', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '3', ',', 'he', 'moved', 'to', 'lead', 'on', 'the', 'team', 'where', 'they', 'won', 'the', 'silver', 'medal', 'at', 'the', '2', '0', '0', '3', 'ford', 'world', 'men', \"'s\", 'curling', 'championship', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'government', 'issued', '', '', 'court', 'cases', 'on', 'the', '', 'election', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '3', ',', 'he', 'became', 'the', '', 'sir', 'mark', 'thatcher', 'when', 'he', 'succeeded', 'to', 'the', '', 'thatcher', '', 'awarded', 'to', 'his', 'father', 'in', '1', '9', '9', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'carl', '', ',', 'its', 'former', 'executive', 'director', ',', 'once', 'went', 'so', 'far', 'as', 'to', 'say', '``', 'these', 'rankings', 'are', 'a', '', 'and', '', ',', '', 'commercial', 'enterprise', 'that', '', '``', 'u.s.', 'news', 'and', 'world', 'report', \"''\", \"'s\", '', 'integrity', '.', \"''\", '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'lead', 'up', 'to', 'her', 'exit', ',', 'jasmine', 'bonds', 'with', 'jac', 'and', '', 'described', 'their', 'relationship', 'as', '``', 'a', 'bit', 'up', 'and', 'down', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'launched', 'on', '3', 'september', '1', '8', '0', '3', ',', 'she', 'was', 'completed', 'at', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'crash', 'of', '1', '9', 'october', '1', '9', '8', '7', 'damaged', 'confidence', 'in', 'the', 'new', 'zealand', 'economy', ',', 'which', 'went', 'into', 'a', 'prolonged', '', 'from', 'december', 'of', 'that', 'year', ',', 'and', 'remained', 'so', 'until', 'june', '1', '9', '9', '1', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'placed', 'them', 'in', 'the', '', '', '', 'american', 'cultural', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'reinforcing', 'rock', 'with', '', 'is', 'the', 'most', 'widely', 'accepted', 'modification', 'to', 'natural', 'features', 'in', 'the', 'sport', 'climbing', 'world', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'also', 'a', '', '', 'of', 'the', 'immigration', 'and', 'nationality', 'act', 'of', '1', '9', '6', '5', 'which', 'abolished', 'nationality', '', 'beginning', 'in', '1', '9', '6', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'received', '6', '%', 'of', 'the', 'vote', ',', 'winning', 'fifteen', 'seats', 'in', 'the', 'chamber', 'of', 'deputies', 'and', 'one', 'in', 'the', 'senate', ',', 'emerging', 'as', 'the', '', '', 'in', 'parliament', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', '', \"''\", 'received', 'generally', 'favorable', 'reviews', 'from', 'critics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'software', 'can', 'be', 'licensed', 'or', '', 'to', 'as', 'a', 'software', 'as', 'a', 'service', '(', '', ')', 'solution', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'often', 'reviewed', 'other', '', \"'s\", 'products', 'or', 'services', 'which', 'was', 'in', 'their', 'area', 'of', 'expertise', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'with', 'its', 'oldest', '', 'unit', 'dating', 'back', 'to', '1', '9', '5', '8', ',', 'the', 'plant', 'was', 'ranked', '1', '2', 'th', 'on', 'the', 'united', 'states', 'list', 'of', '', 'power', 'plants', 'in', 'terms', 'of', '', 'dioxide', 'emissions', 'per', '', 'of', 'electrical', 'energy', 'produced', 'from', 'coal', 'in', '2', '0', '0', '6', '.', '']\n", "['', 'line', '7', '9', '', 'through', 'the', 'southern', 'parts', 'of', '', ',', 'providing', 'connections', 'with', 'the', '', 'line', ',', 'the', '', 'line', 'and', 'the', '', 'line', ',', 'and', 'also', 'connects', '', 'station', 'to', 'the', '', 'area', 'southwest', 'of', 'the', 'station', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '8', '1', '4', ',', 'danish', 'was', 'still', 'the', 'universal', 'written', 'language', 'in', 'norway', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'second', 'season', ',', 'or', '``', 'book', '2', '``', ',', 'titled', '``', 'the', 'last', 'kids', 'on', 'earth', 'and', 'the', '', 'parade', \"''\", ',', 'premiered', 'on', 'april', '1', '7', ',', '2', '0', '2', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'type', 'c', 'and', 'c', '1', '', 'were', 'meant', 'to', 'be', 'in', 'use', 'by', 'july', '1', '9', '4', '2', 'some', '', 'displayed', 'type', 'a', 'and', 'a', '1', '', 'as', 'late', 'as', 'october', ':', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'also', 'planned', 'that', 'a', 'new', 'transfer', 'deck', 'will', 'be', 'built', ';', 'this', 'will', 'allow', 'passengers', 'to', 'change', 'between', 'the', 'proposed', 'new', 'manchester', 'independent', 'lines', 'platform', 'and', 'the', 'existing', '', 'station', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'last', 'time', 'she', 'performed', 'on', 'that', 'stage', 'was', '5', '0', 'years', 'ago', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'owing', 'variously', 'to', 'its', 'length', ',', 'its', '', 'route', ',', 'and', 'the', 'difficulty', 'of', 'driving', 'through', 'a', '', 'city', ',', 'the', 'drive', 'remains', 'relatively', 'unpopular', 'with', 'tourists', 'and', 'locals', 'alike', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'transfer', 'was', 'finally', 'agreed', 'on', '1', '9', 'december', '2', '0', '0', '6', 'for', '€', '2', '0', '.', '4', 'million', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', 'is', 'a', 'perennial', 'tree', 'native', 'to', 'pakistan', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'term', '', 'a', 'sexual', 'strategy', 'among', 'women', 'whereby', 'they', 'prefer', 'and', 'have', 'sex', 'with', 'alpha', 'males', ',', 'but', '', 'for', 'less', '', 'beta', 'males', 'primarily', 'for', 'financial', 'purposes', 'as', 'a', 'secondary', 'option', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'original', '', 'was', '', 'de', '', 'de', '', ',', '', 'at', 'the', 'time', ',', '', 'had', 'just', 'one', 'television', 'station', ',', '', 'channel', '5', ',', 'operated', 'by', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'humans', 'have', 'a', 'far', 'faster', 'and', 'more', 'accurate', 'throw', 'than', 'other', 'animals', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'returned', 'to', 'frankfurt', 'in', '1', '9', '9', '5', 'as', 'a', 'full', 'professor', 'for', 'instrumental', '', 'chemistry', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'the', 'traditional', 'resolution', 'uses', '', 'pair', 'production', 'in', 'the', 'context', 'of', 'quantum', 'field', 'theory', '(', 'hansen', '1', '9', '8', '1', ')', ',', 'a', '', 'resolution', 'exists', 'that', '', 'physical', 'pair', 'production', 'for', 'the', 'scattering', 'of', 'negative', 'energy', 'solutions', 'under', 'the', 'barrier', '(', '', '2', '0', '0', '9', ')', '.']\n", "['', 'in', 'this', 'formula', ',', 'the', 'general', 'price', 'level', 'is', 'related', 'to', 'the', 'level', 'of', 'real', 'economic', 'activity', '(', '``', 'q', \"''\", ')', ',', 'the', 'quantity', 'of', 'money', '(', '``', 'm', \"''\", ')', 'and', 'the', 'velocity', 'of', 'money', '(', '``', 'v', \"''\", ')', '.', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'elected', 'deputy', 'house', 'minority', 'leader', 'in', '1', '9', '9', '6', ',', 'and', 'served', 'in', 'that', 'capacity', 'until', '2', '0', '0', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'equipment', 'and', 'tracks', 'of', 'the', 'system', 'was', 'severely', 'damaged', 'during', 'the', 'war', 'and', 'had', 'to', 'be', 'removed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'cabinet', 'is', 'led', 'by', '', '', 'of', 'the', '', 'movement', ',', 'who', 'serves', 'as', 'prime', 'minister', 'of', 'iceland', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '8', ',', 'she', 'received', 'the', 'santa', 'barbara', 'international', 'film', 'festival', 'modern', 'master', 'award', 'in', 'recognition', 'of', 'her', '', 'in', 'the', 'film', 'industry', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'first', 'appears', 'in', 'the', '', '', 'record', 'in', '', 'superior', '(', '', ')', 'in', '8', '2', 'ad', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'are', 'many', 'cities', 'that', 'do', \"n't\", 'have', 'a', 'defined', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'meredith', 'corporation', 'acquired', 'nearly', 'the', 'whole', '', 'products', 'of', '', '+', '', 'group', 'in', '2', '0', '0', '5', ',', 'except', 'of', 'some', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'compete', 'in', 'the', 'iii', 'liga', ',', 'the', 'fourth', 'division', 'of', 'polish', 'football', ',', 'and', 'play', 'their', 'home', 'matches', 'at', 'the', 'legia', 'training', 'center', 'in', '', ',', '', '', 'commune', ',', 'masovian', 'voivodeship', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'poem', \"'s\", 'local', 'connection', 'was', 'recognised', 'with', 'the', 'creation', 'of', 'the', 'mulga', 'bill', '', 'trail', ',', 'taking', 'in', 'many', 'of', 'the', 'mining', 'attractions', ',', 'historic', 'sites', 'and', 'modern', 'day', '', 'of', 'eaglehawk', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'next', 'to', 'the', 'tenchynska', 'tower', 'stood', 'the', '``', '', \"''\", 'which', 'served', 'as', 'a', 'water', 'storage', 'tank', 'for', 'the', 'castle', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'swiss', 'lost', '', '', 'to', 'a', 'broken', 'foot', 'in', 'the', 'opening', 'match', 'and', 'had', 'to', 'call', 'on', 'reserve', '', '', 'to', 'replace', 'him', 'in', 'the', 'reverse', 'singles', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'new', 'law', 'was', 'passed', 'by', 'both', 'houses', 'and', 'signed', 'into', 'law', 'by', 'president', 'ronald', '', 'in', 'november', '1', '9', '8', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', \"'s\", 'also', 'an', 'indoor', 'water', 'park', 'called', '', ',', 'with', 'one', 'of', 'the', 'longest', 'water', '', 'in', 'europe', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'kuryakin', 'also', 'inspired', 'the', 'surname', 'and', 'character', 'of', 'simon', '', 'in', '', '', '', \"'s\", '', '', '', 'science', 'fiction', 'series', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'tv', 'movie', 'will', 'air', 'on', 'december', '1', '7', ',', '2', '0', '1', '7', 'on', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'george', 'w.', 'schmidt', 'was', 'a', 'german', 'professor', ',', 'who', ',', 'at', 'the', 'time', 'of', 'karl', 'schmidt', \"'s\", 'birth', ',', 'was', 'teaching', 'in', 'lake', 'forest', ',', 'illinois', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'inscription', 'of', '5', '0', '0', 'ce', 'is', 'another', 'example', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'meanwhile', ',', 'he', 'traveled', 'throughout', 'the', 'eastern', 'united', 'states', '', 'and', 'seeking', 'funding', 'for', 'his', 'schools', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'johnson', 'had', 'a', 'dominant', 'run', 'during', 'the', 'closing', 'laps', 'until', 'he', 'ran', 'out', 'of', 'fuel', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '', 'is', 'derived', 'from', 'five', 'atomic', '', 'maintained', 'by', '', 'and', 'is', 'always', 'within', '0', '.', '9', 'seconds', 'of', 'the', 'legal', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'even', 'though', 'the', 'team', '', 'the', 'playoffs', 'at', 'the', '', 'stage', ',', 'there', 'should', 'have', 'been', 'cause', 'for', '', 'for', 'the', 'upcoming', 'season', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'village', 'in', '', 'district', 'of', '', 'province', ',', 'turkey', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'is', 'intensive', 'cooperation', 'between', 'the', 'united', 'nations', ',', 'unesco', 'and', 'blue', 'shield', 'international', 'on', 'the', 'protection', 'of', 'cultural', 'goods', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'institute', 'of', 'theology', ',', 'mission', 'and', 'culture', 'is', 'a', '', 'research', 'and', 'training', 'institute', 'located', 'at', '', 'which', 'awards', 'its', 'own', 'degrees', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'were', 'seven', '', 'for', '3', '6', 'laps', 'and', 'the', 'race', 'lasted', 'three', 'hours', 'and', 'two', 'minutes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'had', 'the', 'lowest', 'population', 'in', 'the', 'census', 'year', '1', '9', '9', '0', 'and', 'second', 'lowest', 'in', '1', '9', '9', '5', ',', 'among', 'the', '2', '1', 'municipalities', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', ',', 'winter', 'met', 'pianist', 'and', '', 'paul', '', ',', 'who', 'would', 'become', 'a', 'performer', 'and', 'composer', 'for', 'the', 'paul', 'winter', 'consort', 'for', '2', '0', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'the', 'first', 'store', 'eventually', 'closed', 'and', 'is', 'currently', 'the', 'site', 'of', 'another', 'supermarket', ',', 'as', 'of', '2', '0', '1', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'achenes', '', 'only', 'under', 'light', ',', 'and', 'with', 'or', 'without', 'available', 'fluid', ',', 'but', 'the', 'period', 'of', 'their', '', 'is', 'shorter', 'when', 'they', 'are', '', 'in', 'water', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'first', 'described', 'by', '', 't.', '', 'in', '1', '9', '8', '1', ',', 'and', 'is', 'found', 'on', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'did', 'not', 'perform', 'well', 'in', 'elementary', 'school', ',', 'earning', 'poor', 'grades', 'in', 'math', 'and', 'physics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'koufax', 'was', 'pitching', 'better', 'than', 'ever', ',', 'however', ',', 'so', 'he', '', 'the', 'problem', ',', 'hoping', 'that', 'the', 'condition', 'would', 'clear', 'up', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'return', 'from', 'cuba', 'she', 'had', 'a', 'full', 'passenger', 'list', 'and', 'cargo', '', ',', 'though', '', 'by', '', 'problems', ',', '', '', 'the', 'officers', 'and', 'a', 'crew', '', 'on', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'silhouette', 'seemed', 'to', 'be', 'wearing', 'a', 'variant', 'of', '', \"'s\", 'old', 'costume', '(', 'or', 'perhaps', 'the', 'shadow', '', \"'s\", ')', 'and', 'had', 'similar', 'powers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'engaged', 'in', 'the', 'famous', 'theatre', 'company', '``', 'i', '', \"''\", 'of', '', '', ',', 'which', 'toured', 'in', '', 'and', 'florence', 'under', 'the', '', 'of', 'giovanni', 'de', \"'\", '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'three', '', 'were', '', 'at', 'stamford', ',', '', 'spa', 'and', 'long', '', 'fire', 'stations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'later', 'served', 'as', 'editor', 'of', '``', 'environment', '', \"''\", ',', 'and', 'served', 'on', 'an', 'advisory', 'committee', 'to', 'the', 'canadian', 'broadcasting', 'corporation', 'on', 'its', 'coverage', 'of', 'agriculture', 'and', 'farming', 'issues', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', '', 'on', 'the', 'show', 'was', 'never', 'to', '', 'the', 'character', \"'s\", 'name', ',', 'with', 'other', 'characters', 'referring', 'to', 'him', 'as', '``', 'comic', 'book', 'guy', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'origin', 'of', 'the', 'modern', 'diocese', 'can', 'be', 'traced', 'to', '1', '8', '4', '0', 'when', 'the', '``', 'apostolic', '', 'of', 'the', 'welsh', 'district', \"''\", 'was', 'created', 'out', 'the', '``', 'western', 'district', 'of', 'england', 'and', 'wales', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'cleavage', 'products', 'that', 'result', 'from', '', 'production', 'are', 'also', '', 'but', 'probably', 'serve', 'no', 'function', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'party', 'went', '', 'to', 'get', 'water', ',', 'and', 'the', 'description', 'of', 'the', 'huge', 'lake', 'they', 'brought', 'back', 'afterwards', 'leaves', 'little', 'doubt', 'about', 'the', 'identification', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'especially', 'known', 'for', 'her', 'documentaries', 'about', 'new', 'zealand', 'artists', 'and', 'writers', ',', 'including', 'artist', '', '', ',', 'writer', 'albert', '', ',', 'poet', 'allen', '', ',', 'artist', 'john', 'reynolds', ',', '', 'roger', 'hall', ',', 'artist', 'tom', '', ',', 'photographer', '', '', 'and', 'photographer', 'peter', '', '.', '', '', '']\n", "['', 'in', '1', '9', '3', '5', ',', 'he', 'tied', 'for', '1', '', '2', 'nd', 'with', '', '', 'in', 'vienna', '(', 'the', '1', '8', 'th', '', 'memorial', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'founded', 'in', '2', '0', '1', '3', ',', 'has', 'been', 'playing', 'for', 'a', 'year', 'in', 'the', 'third', '', 'category', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'united', 'states', ',', 'including', 'colorado', ',', 'most', 'civil', 'aviation', '', 'are', 'investigated', 'by', 'the', 'national', 'transportation', 'safety', 'board', '(', '', ')', ',', 'as', 'well', 'as', 'the', 'colorado', 'bureau', 'of', 'investigation', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '9', ',', 'she', 'finished', 'in', '3', 'rd', 'place', 'in', 'the', 'london', 'marathon', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'ó', '', ',', 'editor', 'of', 'ira', 'newspaper', '``', 'war', 'news', \"''\", 'and', '', 'of', 'the', 'irish', 'republican', 'radio', 'station', 'became', 'an', 'active', 'member', 'of', 'the', 'party', 'as', 'did', '', 'ó', '', ',', 'a', 'member', 'of', 'the', 'ira', 'army', 'council', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'and', 'very', '', ',', 'develop', 'a', 'business', 'model', 'and', '', 'a', '', 'commercial', 'team', 'that', 'helps', 'make', 'our', 'work', 'sustainable', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'miss', 'world', 'philippines', 'is', 'the', 'annual', 'pageant', 'that', '', 'representative', 'of', 'the', 'philippines', 'to', 'miss', 'world', 'pageant', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', '', '', 'to', '', 'founding', 'a', 'student', 'group', 'where', 'harry', 'would', 'teach', 'practical', 'defence', 'against', 'the', 'dark', 'arts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'singer', 'kate', '', 'and', 'her', 'partner', '', 'collins', 'won', 'the', 'series', ',', 'defeating', 'radio', 'personality', '', 'box', 'and', 'her', 'partner', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'died', 'on', 'october', '1', '9', ',', '2', '0', '1', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'telescope', '', 'temperature', 'was', 'then', 'around', ',', 'and', '', 'continued', 'to', 'produce', 'valuable', 'images', 'at', 'those', '', 'as', 'the', '``', 'spitzer', 'warm', 'mission', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'so', 'many', 'onions', 'were', 'shipped', 'to', 'chicago', 'in', 'order', 'to', '', 'prices', 'that', 'there', 'were', 'onion', '', 'in', 'other', 'parts', 'of', 'the', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'cemetery', 'is', 'located', 'at', 'the', 'western', 'edge', 'of', 'the', 'city', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'this', 'original', '', ',', 'the', '', 'was', 'made', '', 'to', '1', '9', '5', '8', 'and', 'issued', 'for', 'actions', 'in', 'lebanon', ',', 'taiwan', ',', 'republic', 'of', 'the', 'congo', ',', '', 'and', '', ',', 'and', 'for', 'duty', 'in', 'berlin', 'between', '1', '9', '6', '1', 'and', '1', '9', '6', '3', '.', '']\n", "['', 'after', '1', '8', '6', '7', ',', '', 'of', '', 'was', 'intensified', ',', 'and', 'until', 'the', 'beginning', 'of', 'the', '2', '0', 'th', 'century', 'they', 'replaced', 'serbs', 'as', 'largest', 'ethnic', 'group', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'experiences', '', 'environmental', 'campaigns', 'in', 'nova', 'scotia', 'may', 'also', 'have', 'led', 'him', 'to', '', 'the', 'central', 'principles', 'of', 'deep', 'ecology', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'example', ',', 'a', 'losing', '', 'would', 'be', '', 'below', 'a', 'losing', '', ',', 'even', 'if', 'they', 'finished', 'above', 'them', 'in', 'the', 'regular', 'season', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'historically', ',', 'mullett', 'lake', 'has', 'been', 'recorded', 'as', '', 'lake', ',', '', \"'s\", 'lake', ',', 'and', 'mullett', \"'s\", 'lake', 'on', 'maps', 'and', 'documents', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', ')', ',', 'ranks', 'with', 'quite', 'different', 'names', 'are', '', ',', '', '', 'on', 'the', 'titles', 'of', 'local', 'authority', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', 'the', '1', '9', '5', '0', 's', ',', 'the', 'tradition', 'has', 'mostly', 'disappeared', 'even', 'in', 'catholic', 'families', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'school', ',', 'convent', 'light', 'street', '(', 'malay', ':', '', 'convent', '', 'light', ')', ',', 'is', 'penang', \"'s\", 'oldest', 'girls', \"'\", 'school', 'and', 'has', 'occupied', 'its', 'current', 'site', 'along', 'light', 'street', 'near', 'historic', 'george', 'town', 'for', 'over', '1', '5', '0', 'years', '.', '', '', '', '', '', '', '', '']\n", "['', 'the', 'by-election', 'in', 'east', '', 'was', 'caused', 'by', 'the', 'resignation', 'on', '2', '7', 'october', '1', '9', '0', '2', 'of', 'the', 'sitting', 'conservative', 'mp', ',', '', 'frederick', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'villoresi', 'was', '', 'injured', 'while', 'testing', 'a', '', '', 'near', '', ',', 'italy', 'in', 'april', '1', '9', '5', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'here', 'a', 'new', 'town', 'has', 'grown', 'up', ',', 'well', 'built', 'and', 'paved', ',', 'with', 'a', 'convenient', 'harbour', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'buried', 'in', 'the', 'church', 'of', 'santa', '', 'in', 'florence', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '7', ',', 'montgomery', 'county', ',', 'maryland', ',', 'approved', 'a', 'ban', 'on', 'partially', '', 'oils', ',', 'becoming', 'the', 'first', 'county', 'in', 'the', 'nation', 'to', 'restrict', 'trans', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'national', 'de', '', ',', 'the', 'national', '', 'of', 'guinea', ',', 'is', 'also', 'housed', 'within', 'the', 'university', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'practice', 'is', 'believed', 'to', 'have', 'become', 'obsolete', 'in', 'great', 'britain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'had', 'three', 'younger', 'siblings', ':', '', ',', '', ',', 'and', 'elena', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'in', 'general', 'can', 'either', '', 'or', 'suppress', 'immune', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'film', 'was', 'originally', 'released', 'by', 'universal', 'pictures', 'on', 'november', '2', '6', ',', '1', '9', '3', '4', ',', 'and', 'later', '', 'in', '1', '9', '3', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'palestinians', 'deeply', 'resented', 'paying', 'taxes', 'on', 'their', 'business', 'and', 'commercial', 'activities', 'to', 'the', 'occupation', 'authority', 'without', 'receiving', 'the', 'same', 'benefits', 'israeli', '', 'had', 'in', 'return', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'few', 'years', 'later', ',', '', 'described', 'alexei', 'as', 'tall', 'for', 'his', 'age', ',', 'with', '``', 'a', 'long', ',', '', '', 'face', ',', 'delicate', 'features', ',', '', 'hair', 'with', 'a', '', '', ',', 'and', 'large', '', 'eyes', 'like', 'his', 'mother', '.', \"''\", '', '', '', '', '', '', '', '']\n", "['', 'other', 'musicians', 'who', 'have', 'engaged', 'pérez', 'in', 'long-time', 'artistic', 'relationships', 'include', 'johnny', '', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'octavius', 'met', '', 'in', 'a', 'field', 'outside', '', 'where', 'they', 'fought', 'and', 'octavius', 'won', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'also', 'produced', 'many', '', 'of', 'folk', 'songs', 'and', 'christmas', '', 'for', 'several', 'instruments', 'and', 'voices', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'bay', 'is', 'part', 'of', 'the', 'larger', '', 'sea', 'which', 'is', '', 'between', 'the', 'coast', 'of', 'the', '', 'mainland', 'and', 'the', '', 'islands', 'of', '', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', '', \"''\", 'was', 'meant', 'to', '', '``', 'creator', '', \"''\", ',', 'issued', 'the', 'previous', 'year', ',', '', 'portuguese', 'slave', 'raids', 'in', 'the', '', 'islands', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'debut', 'ep', ',', '``', 'the', 'lighthouse', \"''\", ',', 'was', 'released', 'in', '2', '0', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'all', 'of', 'the', 'six', 'captured', 'defendants', 'were', 'found', 'guilty', ',', 'and', 'all', ',', 'except', '', ',', 'were', 'sentenced', 'to', 'death', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', '', 'east', 'road', 'north', 'for', 'a', 'block', ',', 'then', 'turning', 'west', 'on', '', '', ',', 'a', 'brief', 'northward', 'turn', 'at', '', 'street', 'brings', 'it', 'back', 'to', 'the', 'second', 'ring', 'road', 'via', '', '', 'south', 'street', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '4', '8', ',', '1', '3', 'field', 'survey', 'squadron', 'was', 'posted', 'to', 'egypt', 'and', 'its', 'personnel', 'were', 'absorbed', 'into', 'the', 'regiment', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'lawrence', '', ',', 'arguing', 'for', 'the', 'hospital', 'and', 'other', 'original', 'defendants', 'as', '', ',', 'was', 'joined', 'by', 'assistant', 'solicitor', 'general', 'richard', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'was', 'built', 'by', '', '&', 'amp', ';', '', 'at', '', 'where', 'her', '', 'was', 'laid', 'in', 'february', '1', '8', '0', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mcphee', 'also', 'worked', 'as', '', 'and', 'correspondent', 'to', 'the', '``', 'boston', 'herald', \"''\", ',', 'was', 'the', 'new', 'england', 'reporter', 'for', 'abc', 'news', ',', 'and', 'was', 'a', 'general', 'assignment', 'reporter', 'with', 'the', 'television', 'station', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'lake', 'carmel', 'is', 'a', 'small', '', 'lake', 'located', 'in', 'the', 'town', 'of', 'kent', ',', 'in', 'putnam', 'county', ',', 'new', 'york', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', '2', '0', '0', '4', ',', 'india', 'imported', 'of', '', 'natural', 'gas', '(', '', ')', 'from', 'qatar', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '1', '3', 'th', 'century', 'the', 'lords', 'of', '', 'built', 'a', 'castle', 'in', 'the', 'area', 'of', 'the', 'present', 'protestant', 'churchyard', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'april', '4', ',', 'dortmund', 'was', 'stepped', 'up', 'in', 'class', 'and', 'distance', 'for', 'the', 'grade', '1', 'santa', 'anita', 'derby', 'over', 'nine', '', 'and', 'started', '3', '/', '5', 'favorite', 'ahead', 'of', 'prospect', 'park', 'and', 'four', 'others', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'riding', ',', '', ',', '', 'and', 'other', 'traditional', 'sports', 'were', 'assembled', 'in', 'the', 'same', 'federation', 'under', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'july', '2', '0', '1', '3', ',', 'stafford', 'appeared', 'on', 'the', 'cover', 'of', '``', 'soap', 'opera', '', \"''\", 'which', 'was', 'dubbed', '``', 'her', 'final', 'interview', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', 'construction', 'of', 'the', 'dam', ',', 'the', 'lake', 'has', 'been', 'nearly', 'empty', 'at', 'least', '2', '0', 'times', ',', 'and', 'has', 'been', 'full', 'only', 'three', 'times', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'french', 'revolution', ',', 'the', 'left', 'bank', 'of', 'the', 'rhine', 'was', 'conquered', 'during', 'the', 'war', 'of', 'the', 'first', 'coalition', 'and', 'annexed', 'by', 'france', 'in', '1', '7', '9', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'schools', 'are', 'also', 'awarded', 'for', 'receiving', 'the', 'highest', '', 'in', 'each', 'grade', 'level', 'as', 'long', 'as', 'at', 'least', '1', '0', 'students', 'had', 'participated', 'from', 'that', 'school', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'iww', 'assumed', 'a', 'prominent', 'role', 'in', '1', '9', '0', '6', 'and', '1', '9', '0', '7', ',', 'in', 'the', '', 'boom', 'town', 'of', '', ',', 'nevada', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'joined', 'the', 'army', 'in', '1', '9', '1', '2', 'and', 'served', 'as', 'an', 'officer', 'in', 'the', 'second', 'battalion', 'of', 'the', '', 'guards', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'we', 'ask', 'that', 'the', 'government', 'shut', 'it', 'down', 'with', 'immediate', 'effect', 'or', 'we', 'will', '', 'on', 'its', 'officials', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'only', 'the', '', 'instrument', 'remained', 'in', 'use', ',', 'and', 'only', 'at', 'the', 'two', 'shorter', '', 'bands', '(', '3', '.', '6', '', 'and', '4', '.', '5', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'international', 'consultant', 'he', 'has', 'undertaken', 'numerous', '', 'in', 'more', 'than', '5', '0', 'countries', 'and', 'has', 'worked', 'with', 'organizations', 'such', 'as', 'unesco', ',', 'world', 'health', 'organization', ',', '', ',', '', ',', '', 'of', 'germany', 'and', 'the', 'british', 'council', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'tour', 'that', 'took', 'the', '', 'across', 'the', 'us', ',', 'canada', 'and', 'mexico', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'traditional', '', '', 'located', 'on', 'the', '', 'at', 'the', 'corner', 'of', '', '2', '2', 'in', 'the', '', '', 'first', 'district', 'in', 'vienna', ',', 'austria', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'carhartt', 'had', 'total', 'sales', 'of', '$', '9', '2', 'million', 'in', '1', '9', '9', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'particular', 'care', 'to', 'maintain', 'coordinated', 'flight', 'is', 'required', 'by', 'the', 'pilot', 'when', 'entering', 'and', 'leaving', 'turns', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'bruynseels', 'has', 'set', 'her', 'platform', 'on', 'taking', 'on', 'the', 'broken', 'political', 'system', 'in', 'romania', 'that', 'she', 'argues', 'is', 'working', 'against', 'the', 'interests', 'of', 'citizens', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'station', 'is', 'currently', 'owned', 'by', 'power', 'radio', 'corporation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'the', 'color', 'field', 'lines', 'do', 'not', 'arc', '', 'from', 'one', 'charge', 'to', 'another', 'as', 'much', ',', 'because', 'they', 'are', 'pulled', 'together', '', 'by', '', '(', 'within', '1', 'fm', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'decision', 'is', 'significant', 'because', 'it', 'demonstrated', 'that', '``', 'agencies', 'can', 'not', 'use', 'cost', 'as', 'an', '', \"''\", 'for', 'not', '', 'with', 'section', '7', '(', 'a', ')', '(', '2', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'matter', 'is', 'not', 'helped', 'by', 'the', 'fact', 'al-maqrizi', 'says', 'the', 'emperor', 'who', 'ruled', 'at', 'the', 'time', 'of', 'haqq', '', \"'s\", 'death', 'was', 'dawit', 'i', ',', 'while', '', 'sources', 'state', 'that', 'the', 'sultan', \"'s\", 'reign', 'began', 'in', 'the', 'reign', 'of', 'emperor', '', '', '.', '', '', '', '', '', '']\n", "['', 'the', 'ninth', ',', '1', '6', '7', 'years', 'after', '', ',', 'was', 'that', 'of', '', 'begotten', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'tour', 'became', 'an', 'international', 'success', ',', 'with', 'tickets', 'selling', 'out', 'and', 'ranking', '1', '6', 'th', 'in', '', \"'s\", '``', '2', '0', '1', '1', 'top', '2', '5', 'worldwide', 'tours', \"''\", ',', 'earning', 'over', '$', '5', '9', '.', '5', 'million', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'fulton', ',', 'wounded', 'in', 'the', '', 'and', 'taken', 'prisoner', ',', 'would', 'die', 'in', '', 'two', 'months', 'later', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '0', '5', ',', 'he', 'acted', 'as', 'a', 'clerk', 'for', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'can', 'be', '', 'from', 'other', 'species', 'of', '``', 'scylla', \"''\", 'by', 'having', '', 'spines', 'on', 'the', 'dorsal', 'distal', 'corner', 'of', 'the', 'palm', '(', '', ')', 'of', 'the', '', ',', 'and', 'by', 'the', 'rounded', '', '', 'spines', 'with', '', '', 'in', 'between', 'the', 'eyes', '.', '', '', '', '', '']\n", "['', 'it', 'also', 'made', 'its', 'scheduled', 'route', 'network', '', 'to', 'air', 'france', 'and', 'air', 'inter', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'party', 'who', 'did', 'so', ',', 'however', ',', 'whether', '', 'or', 'champion', ',', 'was', '', 'with', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'these', 'states', ',', '2', '2', ',', 'it', 'is', 'possible', 'to', 'face', 'felony', 'charges', 'despite', 'not', 'knowing', 'the', 'age', 'of', 'the', 'other', 'person', ',', 'or', 'even', 'if', 'the', 'minor', 'presented', 'identification', 'showing', 'an', 'age', 'of', 'eighteen', 'or', 'higher', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'squadron', 'deployed', 'to', 'northern', 'ireland', 'in', '1', '9', '7', '3', 'as', 'an', 'infantry', 'unit', 'and', 'in', '1', '9', '9', '5', ',', 'the', 'squadron', 'moved', 'to', '', 'barracks', ',', '', 'before', 'it', 'was', 'eventually', 'reunited', 'with', 'the', 'regiment', 'in', 'july', '2', '0', '1', '3', '.', '', '', '', '', '']\n", "['', '', 'gordon', '(', 'née', '', ';', ';', 'born', '2', '3', 'february', '1', '9', '5', '1', ')', 'is', 'a', '', 'hong', 'kong', 'long-distance', 'runner', 'who', 'competed', 'mainly', 'in', 'the', 'marathon', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'is', 'a', 'japanese', '', 'martial', 'art', 'founded', 'in', 'the', 'late', '', 'period', 'c.', '1', '5', '5', '0', 'by', '', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'tunnel', 'hit', 'problems', 'during', 'construction', 'which', 'were', 'never', '', 'resolved', 'throughout', 'its', 'life', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'can', 'be', 'provided', 'up', 'to', 'magnitude', '2', '1', ',', 'occasionally', 'to', '2', '2', 'on', 'the', 'best', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'k', '4', 'use', '', 'synthesis', 'based', 'on', '', '', ',', 'the', 'k', '1', 'and', 'k', '5', 'are', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'jointly', 'with', 'the', 'forestry', 'commission', ',', 'founded', '', 'national', '', 'in', 'kent', 'in', '1', '9', '2', '3', ',', '', 'in', 'growing', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'a', 'short-lived', 'recovery', ';', 'he', 'died', 'of', 'tuberculosis', 'not', 'long', 'afterwards', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'shiner', '', 'that', 'he', 'knew', 'both', 'alexander', 'shepherd', 'and', 'his', 'father', 'and', 'that', 'he', 'believed', 'them', 'to', 'be', 'honest', 'men', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'grey', 'petrel', '(', '``', '', '', \"''\", ')', ',', 'also', 'called', 'the', 'brown', 'petrel', ',', '', 'or', 'grey', '', 'is', 'a', 'species', 'of', '', 'in', 'the', '', ',', 'or', 'petrel', 'family', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'began', 'working', 'in', 'radio', 'at', 'age', '1', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'the', 'customary', 'national', 'racing', 'colour', 'of', 'italy', 'as', 'recommended', 'between', 'the', 'world', 'wars', 'by', 'the', 'organisations', 'that', 'later', 'became', 'the', 'fia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'signals', 'from', 'the', 'satellite', 'were', 'received', 'one', 'hour', 'later', ',', 'at', '0', '0', ':', '4', '6', 'utc', 'on', '1', '5', 'august', '2', '0', '0', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', '', ')', 'is', 'a', '', 'language', ',', 'closely', 'related', 'to', '', ',', 'formerly', 'spoken', 'by', 'the', '', 'people', ',', 'one', 'of', 'the', 'southern', 'groups', 'along', 'the', '', 'river', 'in', 'central', 'siberia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'pole', 'position', 'was', 'awarded', 'to', 'the', 'defending', 'winston', 'cup', 'champion', 'while', 'the', 'rest', 'of', 'the', 'field', 'was', 'determined', 'by', 'the', 'total', 'number', 'of', 'wins', 'from', 'last', 'season', ',', 'with', 'driver', \"'s\", 'points', 'used', 'as', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'also', 'voted', 'the', '', 'of', 'his', 'baseball', 'team', 'his', 'senior', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'churches', 'and', 'monasteries', 'were', 'founded', 'in', 'this', 'era', ',', 'particularly', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'existing', 'capacity', 'was', 'insufficient', ',', 'therefore', 'a', 'second', 'plant', 'was', 'constructed', 'and', 'opened', 'in', '1', '9', '4', '1', 'in', '', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', '1', '8', '5', '6', 'session', 'of', 'parliament', ',', 'the', 'north', 'western', 'railway', '(', 'a', 'small', 'company', '', 'with', 'the', 'london', 'and', 'north', 'western', 'railway', ')', 'was', '', 'for', 'running', 'powers', 'over', 'part', 'of', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'returning', 'to', 'central', 'city', ',', 'he', 'gets', 'struck', 'by', 'lightning', 'which', 'puts', 'him', 'in', 'a', '', '', 'and', 'becomes', 'the', 'flash', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', \"'s\", 'power', 'was', 'originally', '6', '0', 'kw', 'but', 'after', 'the', 'new', 'tower', 'was', 'built', 'in', '1', '9', '6', '2', 'this', 'was', 'increased', 'to', '4', '0', '0', 'kw', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '2', '0', '1', '1', '-', '2', '0', '1', '2', 'he', 'was', 'a', '', 'intern', 'with', 'the', '', 'romney', '2', '0', '1', '2', 'presidential', 'campaign', 'and', 'then', 'served', 'as', 'director', 'of', 'the', 'kennedy', 'political', 'union', '', 'series', 'until', '2', '0', '1', '4', '.', '', '', '', '', '', '', '']\n", "['', 'after', 'winning', 'against', '', '', '', 'completed', 'their', 'group', 'stage', '', 'with', 'a', 'win', 'against', '', '', 'entering', 'the', '', 'of', 'the', '', 'champions', 'league', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'alder', 'was', 'living', 'in', 'the', 'indian', 'village', 'of', '', 'when', 'it', 'was', 'destroyed', 'by', '', 'logan', 'during', 'his', 'raid', 'into', 'ohio', 'country', 'in', '1', '7', '8', '6', ',', 'and', 'he', 'accompanied', 'the', 'indians', 'on', 'raids', 'into', 'kentucky', 'to', 'steal', 'horses', 'from', 'white', 'settlers', '.', '', '', '', '', '', '']\n", "['', 'after', 'winning', 'the', '1', '9', '9', '3', '', '', '', 'competition', ',', 'lee', 'recorded', 'his', 'first', 'cd', ',', '``', '', \"''\", 'with', 'the', '', \"'\", 'a', 'collection', ',', 'which', 'included', 'guitarist', 'brian', '', 'and', 'jay', '', 'on', 'upright', 'bass', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'el', '', 'is', 'an', '', 'site', 'which', 'was', 'discovered', 'in', '1', '9', '7', '1', 'in', 'a', 'region', 'known', 'at', '', '(', 'between', 'the', '', 'and', '', 'rivers', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'allen', '', 'and', 'matt', '', 'each', 'suffered', '', 'vertebrae', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'rectangular', 'structure', 'of', 'a', 'block', 'element', 'is', 'often', 'referred', 'to', 'as', 'the', ',', 'and', 'is', 'made', 'up', 'of', 'several', 'parts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'varying', 'reports', 'indicate', 'that', 'the', 'firm', 'is', 'based', 'in', 'either', 'nevada', 'or', 'orlando', ',', 'florida', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'following', 'year', 'he', 'was', 'posted', 'to', 'the', 'chemical', '', 'experimental', 'station', 'at', '', 'down', 'in', '', ',', 'where', 'he', 'spent', 'five', 'years', 'studying', 'air', 'motion', 'in', 'the', 'boundary', 'layer', '(', 'the', 'first', 'few', '1', '0', '0', 'metres', 'above', 'the', 'earth', \"'s\", 'surface', ')', '.', '', '', '', '', '']\n", "['', 'this', 'was', 'shown', 'on', 'the', '1', '9', '1', '4', 'edition', 'of', 'the', '', '', 'survey', 'map', 'and', 'was', 'still', 'shown', 'on', 'later', '', 'maps', 'up', 'to', 'the', '1', '9', '7', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '8', 'august', '2', '0', '1', '2', 'to', '1', '6', 'february', '2', '0', '1', '5', ',', '', 'was', 'vice', 'minister', 'of', '', 'education', 'under', 'prime', 'minister', '', '', 'in', 'the', 'v', 'constitutional', 'government', 'of', 'east', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'park', 'was', 'well', 'known', 'for', 'her', '', '', 'to', 'political', 'promises', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'scouts', 'from', 'all', 'over', '', 'marked', 'the', '', 'of', 'scouting', 'in', 'august', '2', '0', '0', '7', 'at', '', '', '', 'their', 'scout', 'promise', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '5', ',', '', 'was', 'classified', 'as', 'the', 'only', 'family', 'within', 'the', '', '', 'in', 'the', '', 'of', '', '&', 'amp', ';', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'also', 'the', 'first', '', 'event', 'to', 'be', 'held', '', 'in', 'an', 'open-air', 'arena', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'mother', 'ran', 'her', 'own', '', 'shop', ',', 'and', 'his', 'brother', 'charles', 'sold', 'newspapers', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'person', 'on', 'the', 'telephone', 'hears', 'all', 'relevant', 'feeds', ',', 'usually', 'an', 'identical', 'mix', 'to', 'that', 'of', 'the', 'master', 'bus', ',', 'including', 'the', 'dj', \"'s\", '', 'feed', ',', 'except', 'that', 'the', '', 'does', 'not', 'hear', 'their', 'own', 'voice', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'this', 'reason', ',', '', 'animals', 'tend', 'to', 'have', 'long', '', '', 'and', 'slow', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '3', ',', '', '', 'working', 'on', 'the', '', '', 'of', '', '', \"'s\", '``', '', 'park', \"''\", 'were', '', 'in', 'the', 'use', 'of', 'computer', 'input', 'devices', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'modern', 'authors', 'also', 'make', 'him', 'a', 'student', 'of', '', '', '', 'ibn', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'attempts', 'to', 'grow', 'the', 'industry', ',', 'they', 'also', 'support', 'and', 'sponsor', 'events', 'by', 'fashion', 'organizations', 'in', 'malawi', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'pact', 'has', 'produced', 'a', 'documentary', 'entitled', '``', 'victims', 'of', 'another', 'war', \"''\", 'that', '', 'the', 'damaging', 'impact', 'on', 'three', 'adults', 'of', 'their', 'abduction', 'as', 'children', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'note', 'that', 'the', '', 'status', 'of', 'some', 'of', 'the', 'above', 'taxa', 'is', 'unclear', 'and', 'differs', 'between', 'sources', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '5', ',', 'he', '', 'a', 'report', 'about', 'the', 'future', 'of', 'the', 'école', '', 'for', 'the', 'french', 'government', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'view', 'of', 'self', 'involves', 'people', \"'s\", 'perception', 'of', 'themselves', 'as', 'a', '', 'individual', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'became', 'a', 'member', 'of', 'the', '', 'in', '1', '9', '1', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'incident', 'is', 'often', 'referred', 'to', 'as', '``', '1', '0', '.', '2', '6', '``', 'or', 'the', '``', '1', '0', '.', '2', '6', 'incident', \"''\", 'in', 'south', 'korea', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'death', 'of', 'the', 'husband', ')', 'for', 'inclusion', 'by', 'the', 'other', 'state', 'parties', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'following', 'day', 'the', 'union', 'forces', 'were', 'pulled', 'off', 'the', 'island', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'fox', 'that', 'same', 'year', ',', 'she', 'appeared', 'in', 'director', 'allan', '', \"'s\", 'now', 'lost', 'romantic', 'adventure', '``', 'the', 'far', 'call', \"''\", 'opposite', 'charles', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'includes', 'some', 'of', 'the', 'major', 'parts', 'from', 'the', '', 'disney', 'pictures', 'film', '``', 'ice', 'princess', \"''\", ',', '', 'with', 'parts', 'containing', '', '&', 'amp', ';', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '8', ',', 'after', 'an', 'extensive', 'national', 'search', 'the', 'district', 'appointed', 'its', 'current', 'superintendent', 'dr.', 'anna', '', 'beginning', 'july', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'also', 'notable', 'for', 'his', '2', '0', '1', '5', 'biography', 'of', 'musician', 'robert', '', ',', 'a', 'book', 'described', 'in', 'the', '``', 'london', 'review', 'of', 'books', \"''\", 'as', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'tend', 'to', '', 'rapidly', ',', 'some', 'even', '', ',', 'upon', 'heating', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thomas', '', 'collection', 'and', 'the', 'state', 'library', 'of', 'south', 'australia', 'in', 'the', 'vernon', 'smith', 'collection', '(', 'this', 'collection', 'holds', 'copies', 'that', 'taylor', 'purchased', 'from', '', 'and', 'were', 'later', 'donated', 'by', 'her', 'nephew', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'southern', 'walls', 'closer', 'to', 'the', 'white', 'tower', '(', 'between', 'tenchynska', 'and', 'white', 'towers', ')', 'were', 'a', 'kitchen', 'and', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'martin', 'and', 'son', 'started', 'collaborating', 'with', 'educators', 'at', 'west', 'de', 'pere', 'high', 'school', 'to', 'offer', 'educational', 'opportunities', 'for', 'high', '', 'interested', 'in', '', 'the', '', 'trades', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'more', 'precise', ',', 'let', '``', 'm', \"''\", ',', '``', 'n', \"''\", 'be', 'left', '``', 'r', \"''\", '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'group', 'founder', 'richard', 'branson', 'praised', 'waititi', \"'s\", 'actions', ',', 'describing', 'the', 'rule', 'around', '', 'as', '``', 'archaic', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'due', 'to', 'his', '', 'as', 'an', 'honorary', '', 'at', 'the', 'funeral', 'of', 'group', 'member', 'proof', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'of', 'parliament', 'house', 'had', 'a', 'pronounced', 'effect', 'on', 'the', 'built', 'environment', 'around', 'lower', 'george', 'street', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'february', '1', '9', '4', '6', ',', 'the', 'unit', 'returned', 'to', 'the', 'united', 'states', 'where', 'it', 'was', 'disbanded', 'at', 'fort', '', ',', 'new', 'jersey', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'basement', 'membrane', 'is', 'important', 'for', 'maintaining', 'tissue', 'organization', ',', 'providing', 'structural', 'support', 'for', 'cells', ',', 'and', '', 'cell', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'company', \"'s\", 'website', 'was', 'taken', 'down', 'after', 'the', 'incident', ',', 'but', 'before', 'its', 'removal', 'the', 'website', 'described', 'the', 'firm', 'as', '', 'in', '``', 'loss', 'and', 'risk', 'management', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '8', ',', 'the', 'mine', 'accounted', 'for', '6', '%', 'of', 'the', 'company', \"'s\", 'overall', 'annual', 'gold', 'production', 'and', 'employed', 'close', 'to', '3', ',', '2', '0', '0', 'staff', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'common', 'grass', 'blue', 'is', 'often', '', 'as', 'the', 'lesser', 'grass', 'blue', ',', '``', 'zizina', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'said', 'in', '2', '0', '1', '1', 'that', 'population', 'growth', 'during', 'the', '', 'tiger', 'years', 'was', 'more', 'dramatic', 'in', '', 'than', 'elsewhere', 'in', 'ireland', 'and', 'that', 'this', 'was', 'having', 'a', 'profound', 'effect', 'on', 'the', 'county', \"'s\", 'education', 'system', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'method', 'of', 'joining', '', 'and', 'other', 'plastic', '', 'with', 'special', '', 'that', 'have', '', '', 'wire', 'which', 'is', 'used', 'to', 'weld', 'the', 'joint', 'together', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'someone', 'who', 'held', 'high', 'rank', ',', '', \"'s\", 'background', 'is', '', '', ',', 'and', 'for', 'many', 'years', '', 'referred', 'to', 'his', '', 'as', 'unknown', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'focus', 'is', 'wildlife', 'and', 'habitat', 'conservation', 'within', 'and', 'outside', 'of', 'protected', 'areas', ',', '', 'an', 'integrated', 'approach', 'which', 'includes', 'community', 'development', 'and', 'environmental', 'education', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'camp', 'receives', 'a', 'large', 'group', 'of', 'jewish', 'prisoners', ',', 'including', 'several', 'children', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'created', 'in', '1', '9', '6', '6', 'by', 'the', '', 'minister', 'of', 'culture', 'to', 'showcase', 'films', 'from', 'the', '', ',', 'africa', 'and', 'the', 'middle', 'east', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'victory', 'in', 'a', 'by-election', 'in', 'may', '2', '0', '0', '6', 'saw', 'the', 'liberal', 'democrat', 'party', 'gain', 'control', 'of', 'the', 'council', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'main', 'terminal', 'building', 'is', 'now', 'used', 'for', 'office', 'space', 'while', 'the', 'express', 'depot', 'is', 'used', 'as', 'a', 'meeting', 'venue', 'by', 'a', 'local', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'born', 'in', '', 'in', 'the', 'municipality', 'of', '', 'in', 'norway', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '7', '2', 'he', 'played', 'six', 'games', 'and', 'scored', '1', '4', 'goals', 'on', 'the', 'olympic', 'games', ',', 'helping', 'his', 'team', 'to', 'reach', 'again', 'the', 'eighth', 'place', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'john', 'anthony', ',', '``', 'before', 'the', 'parade', 'passes', 'by', ':', '', 'champion', 'and', 'the', '', 'american', 'musical', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'goal', 'soon', 'proved', 'to', 'be', 'an', '', 'one', ':', 'even', 'if', 'the', 'results', 'could', ',', 'on', 'occasion', ',', 'approximate', 'a', '', '', 'form', ',', 'at', 'the', 'same', 'time', 'the', 'process', 'prevented', 'the', 'transmission', 'of', 'a', 'familiar', ',', 'intimate', ',', 'or', 'everyday', 'tone', '.', '', '', '', '', '', '']\n", "['', 'in', 'june', '1', '9', '9', '2', ',', 'trailing', 'george', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'cliff', '', 'in', 'the', '2', '0', '1', '2', '', 'of', 'the', 'series', ',', 'which', 'picks', 'up', '2', '0', 'years', 'after', 'the', 'original', 'series', 'concluded', 'and', '', 'the', 'events', 'of', 'the', 'two', '1', '9', '9', '0', 's', 'tv', 'movies', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'very', 'small', 'western', 'tip', 'of', 'the', 'island', \"'s\", 'territory', 'is', '', 'part', 'of', 'san', 'francisco', ',', 'however', ',', 'this', 'is', '', 'and', 'is', 'not', 'separately', 'managed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'then', 'went', 'on', 'to', 'be', 'a', 'host', 'and', 'judge', 'on', 'the', 'reality', 'show', '``', '', '', '', 'beauty', 'queen', \"''\", '(', 'i', 'want', 'to', 'be', 'a', 'beauty', 'queen', ')', 'and', 'continued', 'with', 'various', '', 'on', 'tv', 'shows', 'and', 'movies', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'that', ',', 'he', 'was', 'a', 'teacher', 'of', 'philosophy', 'at', 'the', '', 'of', '', 'for', 'some', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'versions', 'have', 'stated', 'this', 'more', 'clearly', 'than', 'others', ',', 'but', 'this', 'intention', 'of', 'the', 'laws', 'has', 'never', 'changed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'aired', 'until', 'june', '2', '0', '2', '0', 'with', 'special', 'episodes', 'shown', 'in', 'december', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'personal', 'activities', 'such', 'as', '``', '', ',', '', ',', 'photography', 'and', 'bird', '', 'can', 'be', 'carried', 'out', 'without', 'a', '', 'in', 'most', 'areas', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'am', '', 'is', 'a', 'town', 'in', 'the', 'district', 'of', '', ',', 'baden-württemberg', ',', 'germany', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'election', 'process', 'ran', 'in', 'the', 'three', 'stages', 'from', 'november', '7', 'to', 'december', '9', ',', '2', '0', '0', '5', 'using', 'single', 'member', '', ',', 'with', 'over', '3', '2', 'million', 'registered', 'voters', 'in', 'the', '2', '2', '2', 'constituencies', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'retirement', ',', 'myra', 'keen', 'was', 'still', 'actively', 'involved', 'in', 'the', 'lives', 'of', 'her', 'students', 'and', 'colleagues', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'worked', 'in', 'corporate', 'finance', 'and', 'project', 'finance', 'roles', 'in', 'new', 'york', 'and', 'in', 'washington', ',', 'd.c.', ',', 'eventually', 'rising', 'to', 'being', 'managing', 'director', 'in', 'the', 'project', 'finance', 'group', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'later', ',', 'in', 'the', 'debate', '', 'asked', 'foot', 'whether', 'he', 'would', '``', 'put', 'a', '', 'on', 'his', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'initially', 'being', '', ',', '', 'joined', '', 'as', 'a', 'story', 'artist', 'for', '``', '', 'the', 'third', \"''\", 'and', '``', '', 'the', 'halls', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'then', 'joined', '', '', ',', '', '', 'and', '', '', 'before', 'he', 'moved', 'on', 'to', 'join', 'the', 'youth', 'team', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'these', '', 'he', '', 'himself', 'as', 'he', 'once', 'wrote', ',', '``', 'all', 'our', 'good', 'work', 'will', 'be', 'found', ',', 'there', 'is', 'no', 'doubt', 'of', 'that', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'he', 'sounds', '', ';', 'he', \"'s\", 'really', ',', 'really', 'coming', 'into', 'his', 'own', 'as', 'a', 'singer', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'albarn', 'and', 'russell', 'had', 'also', 'produced', '', \"'s\", 'comeback', 'album', '``', 'the', '', 'man', 'in', 'the', 'universe', \"''\", ',', 'prior', 'to', '', \"'s\", 'death', 'in', 'june', '2', '0', '1', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'mass', '', '(', 'ms', ')', 'and', 'the', 'main', '', 'of', '', 'are', 'provided', 'by', 'nasa', \"'s\", '', 'space', 'flight', 'center', ',', 'while', 'the', 'gas', '', '(', '', ')', 'is', 'provided', 'by', 'the', 'two', 'french', 'institutes', 'lisa', 'and', '', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', '', 'card', 'system', 'is', 'used', 'for', 'single', 'journey', 'tickets', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'aaa', ',', 'he', 'was', 'a', 'member', 'of', 'the', 'mad', 'and', '``', 'la', '', '', \"''\", 'stables', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'temple', 'was', 'also', 'known', 'by', 'many', 'other', 'names', ',', 'including', '', 'temple', '(', '', ')', 'and', '', '', 'temple', '(', '', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', '', ',', 'the', 'system', 'intensified', 'to', 'a', 'typhoon', 'with', 'an', 'evidence', 'of', 'a', '', ',', 'but', 'small', 'eye', 'and', '', 'of', '7', '5', 'knots', ',', 'early', 'on', 'the', 'next', 'day', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'street', 'is', 'visited', 'by', 'thousands', 'of', 'tourists', 'a', 'year', ',', 'who', 'visit', 'the', '', 'club', 'and', 'many', 'surrounding', 'attractions', 'including', 'a', 'statue', 'of', 'john', 'lennon', ',', 'a', 'beatles', 'store', ',', 'the', 'liverpool', 'beatles', 'museum', 'and', 'several', '', 'formerly', 'frequented', 'by', 'the', 'band', '.', '', '', '', '', '', '']\n", "['', 'he', 'graduated', 'from', 'the', 'university', 'of', 'belgrade', 'faculty', 'of', 'philosophy', 'in', '1', '9', '8', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'ag', 'is', 'a', 'german', 'it', 'company', '', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'one', 'of', 'these', 'periods', 'of', '', 'he', 'wrote', '``', '', '', '', \"''\", '(', '', '', '', ';', '``', '', 'no', '6', '``', ')', ',', 'translated', 'into', 'french', 'as', '``', '', '', '6', ':', '', 'de', 'prison', \"''\", '(', ')', '.', '', '', '', '', '', '', '', '']\n", "['', '', '', ',', 'member', 'of', 'the', 'special', 'purpose', 'unit', '``', '', \"''\", 'of', 'the', '', ',', 'pleaded', 'guilty', 'to', 'plunder', ',', '', 'of', '', 'prisoners', 'and', 'the', 'killing', 'of', 'one', 'prisoner', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '2', '0', '1', '8', 'polish', 'basketball', 'cup', '(', ')', 'was', 'the', '5', '4', 'th', 'edition', 'of', 'poland', \"'s\", 'national', 'cup', 'competition', 'for', 'men', 'basketball', 'teams', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'barry', 'w.', 'lynn', ',', 'executive', 'director', 'of', 'americans', 'united', 'for', 'separation', 'of', 'church', 'and', 'state', ',', 'said', 'the', '', \"'s\", 'statement', '``', '', 'of', 'religious', '', '...', '[', 'showing', 'a', ']', 'remarkable', 'lack', 'of', 'respect', 'for', 'religious', 'diversity', \"''\", '.', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'located', 'approximately', 'east', 'of', 'the', 'town', 'centre', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'now', 'included', 'with', 'the', 'rest', 'of', 'the', 'municipality', 'in', 'the', 'central', '', 'statistical', 'region', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', 'march', ',', '1', '8', '4', '5', ',', 'to', 'august', ',', '1', '8', '4', '7', ',', 'he', 'was', 'the', 'principal', 'assistant', 'of', 'professor', 'goodrich', 'in', 'the', 'revision', 'of', '``', 'webster', \"'s\", 'dictionary', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'deleted', 'material', 'included', '``', 'prelude', 'in', 'g', 'minor', \"''\", 'and', '``', '', \"''\", 'by', '', '', ',', 'and', 'a', '', 'of', '``', 'the', 'song', 'of', 'the', '', \"''\", 'by', '', ',', 'which', 'was', 'to', 'be', 'sung', 'by', 'lawrence', '', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'growing', 'up', 'in', 'westmeath', ',', '', 'played', 'more', 'gaelic', 'sports', 'than', 'rugby', 'union', 'until', 'well', 'into', 'his', 'teens', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', ',', '', 'pepper', 'and', '', 'are', 'then', 'added', ',', 'and', 'the', 'mixture', 'is', '', 'to', 'a', 'smooth', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'island', 'with', 'a', 'diameter', 'of', 'about', '', 'meters', 'is', 'densely', 'populated', 'with', 'birds', ':', '', ',', 'grey', '', ',', 'silver', '', ',', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'site', 'is', 'one', 'of', 'several', 'submitted', 'for', 'inscription', 'on', 'the', 'unesco', 'world', 'heritage', 'list', 'as', 'one', 'of', 'the', '', 'archaeological', 'sites', 'in', '', ',', 'northern', '', ',', 'and', 'other', 'regions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'led', 'from', 'the', 'start', ',', 'went', 'clear', 'of', 'the', 'field', 'in', 'the', 'straight', ',', 'and', 'won', 'by', 'four', 'and', 'a', 'quarter', 'lengths', 'from', 'his', '', 'one', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'golf', 'course', 'is', 'an', '1', '8', '', ',', '', '7', '2', 'course', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'species', 'of', 'moth', 'of', 'the', 'family', 'tortricidae', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'st.', 'paul', \"'s\", 'episcopal', 'church', 'is', 'an', 'historic', 'episcopal', 'church', 'in', 'richmond', ',', 'virginia', ',', 'united', 'states', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'another', 'biography', 'was', 'written', 'by', 'the', 'nun', '', 'following', 'a', 'rebellion', 'at', 'the', 'abbey', 'described', 'by', 'gregory', 'of', 'tours', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'argued', 'in', 'january', '2', '0', '1', '0', 'by', 'solicitor', 'general', 'elena', '', ',', 'the', 'position', 'of', 'the', 'united', 'states', 'was', 'that', 'the', 'necessary', 'and', 'proper', '', 'gave', 'congress', 'the', 'power', 'to', '', 'the', 'law', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'attended', 'law', 'school', 'at', 'the', 'university', 'of', 'toronto', 'and', 'was', 'called', 'to', 'the', 'bar', 'in', 'ontario', 'in', '1', '9', '8', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'located', 'outside', 'of', 'the', 'northern', 'walls', 'were', 'the', 'castle', 'stables', ',', 'which', 'could', 'house', 'up', 'to', '3', '0', 'horses', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'she', 'returns', 'to', 'the', 'house', 'where', 'cookie', 'and', '', 'are', '', ',', 'she', 'is', 'attacked', 'by', 'cookie', \"'s\", '', 'who', 'has', 'yet', 'to', 'possess', 'the', 'real', 'one', ',', 'and', 'manages', 'to', 'get', '', 'of', 'her', 'by', '', 'her', 'with', 'a', '', '.', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '1', ',', 'kw', 'was', 'moved', 'to', '', ',', 'a', 'suburb', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '0', ',', '', 'employment', ',', 'state', 'employment', 'first', 'policies', ',', 'and', '``', '', 'key', 'federal', 'policies', \"''\", 'are', 'recommended', 'as', 'leadership', 'in', '``', 'employment', 'of', 'persons', 'with', 'severe', '', \"''\", ';', 'however', ',', 'with', 'a', '', 'movement', 'toward', 'the', 'development', 'of', '``', '', 'supports', \"''\", '.']\n", "['', 'it', 'is', 'usually', '', 'in', '', 'leaves', 'and', 'served', 'with', 'various', 'side', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', '', 'on', 'the', '1', '8', 'th', 'the', '3', 'rd', 'battalion', 'crossed', 'the', 'ford', 'in', '', 'and', 'began', 'the', 'advance', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'general', ',', '', 'convention', 'encourages', 'the', 'use', 'of', 'named', 'functions', 'defined', 'in', 'the', 'same', 'scope', 'as', 'one', 'might', 'typically', 'use', 'an', 'anonymous', 'functions', 'in', 'other', 'languages', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'one', 'of', 'the', '', 'arms', 'of', 'the', 'abia', 'state', 'government', '', 'with', 'constitutional', 'power', 'to', 'interpret', 'and', 'make', 'laws', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '9', '9', '6', ',', 'the', 'route', 'was', 'taken', 'over', 'by', '', 'air', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'separated', 'in', '1', '9', '5', '8', 'with', 'the', 'junior', 'school', 'absorbed', 'by', 'other', 'technical', 'schools', 'in', 'the', 'area', 'and', 'the', 'senior', 'school', 'became', 'caulfield', 'technical', 'college', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'younger', 'lewis', 'was', 'knighted', 'by', 'king', 'james', 'i', 'when', 'on', 'his', 'way', 'to', 'london', 'in', '1', '6', '0', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'significant', 'feature', 'of', 'south', 'london', \"'s\", 'economic', '', 'is', 'that', 'while', 'there', 'are', 'more', 'than', 'thirty', 'bridges', 'linking', 'the', 'area', 'with', 'west', 'london', 'and', 'the', 'city', ',', 'there', 'is', 'only', 'one', ',', 'tower', 'bridge', ',', 'linking', 'the', 'area', 'with', 'east', 'london', '.', '', '', '', '', '', '', '']\n", "['', '', 'u', '', '', '(', ')', 'is', 'a', 'municipality', 'and', 'village', 'in', 'the', '', '', 'district', 'in', 'the', '', 'region', 'of', 'the', 'czech', 'republic', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'hold', 'me', \"''\", 'was', 'the', 'song', 'that', 'represented', 'azerbaijan', 'in', 'the', '', 'song', 'contest', '2', '0', '1', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'of', 'queensland', \"'s\", 'early', 'politicians', 'were', '', ',', 'a', '', 'of', 'their', 'economic', 'dominance', 'in', 'the', 'colony', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'event', 'premiered', 'paul', \"'s\", 'campaign', 'to', '', 'the', 'suffrage', 'movement', 'on', 'obtaining', 'a', 'national', 'constitutional', 'amendment', 'for', 'woman', \"'s\", 'suffrage', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'even', 'as', 'the', 'threats', 'to', 'judge', 'rosales', \"'s\", 'life', 'became', 'more', '', ',', 'he', 'refused', 'to', 'follow', 'up', 'his', 'transfer', 'to', 'a', '', 'jurisdiction', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'managers', 'often', 'use', 'organizational', 'behavior', 'to', 'better', 'lead', 'their', 'employees', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'late', 'summer', 'of', '1', '9', '4', '4', '', 'division', 'has', 'about', '6', '5', '0', '0', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'indians', 'continued', 'taking', 'cattle', 'from', 'farms', 'in', 'the', '', '', 'province', 'and', 'south', 'of', 'the', 'mendoza', 'province', ',', 'but', 'found', 'it', 'difficult', 'to', 'escape', 'as', 'the', 'animals', '', 'their', 'march', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'served', 'as', 'a', '', 'to', 'princess', '', '', '', 'of', 'spain', ',', 'regent', 'of', 'the', 'spanish', 'netherlands', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'but', 'when', 'that', 'became', 'difficult', ',', 'they', 'began', '', 'each', 'murder', 'as', 'a', '``', 'day', ',', \"''\", 'as', 'in', 'the', '', ',', '``', 'i', 'will', 'love', 'you', 'for', 'forever', 'and', 'a', 'day', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", 'totals', 'approximately', 'fifteen', 'minutes', 'in', 'length', 'and', 'contains', 'five', 'tracks', ',', 'including', 'cover', 'versions', 'of', 'the', 'beatles', \"'\", '``', 'all', 'you', 'need', 'is', 'love', \"''\", 'and', '', 'adams', \"'\", '``', 'heaven', \"''\", 'and', 'three', 'original', 'tracks', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'prohibition', ',', 'a', 'few', 'indian', '', 'continued', 'to', 'be', 'sent', '', 'via', '', '(', 'a', 'french', '', 'in', 'south', 'india', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'kaziranga', 'has', 'a', 'good', 'conservation', 'history', ',', 'especially', 'due', 'to', 'its', 'efficient', 'management', 'policies', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'august', '3', '1', ',', '2', '0', '0', '5', ',', 'the', 'band', 'posted', 'an', 'update', 'on', 'their', 'website', ',', 'reporting', 'that', 'they', 'would', 'begin', 'to', 'work', 'on', 'a', 'new', 'record', 'at', 'the', 'end', 'of', '2', '0', '0', '5', ',', 'label', 'to', 'be', 'announced', '.', '', '', '', '', '', '']\n", "['', 'in', 'the', 'last', 'few', 'decades', 'various', 'new', 'names', 'have', 'been', 'formally', 'published', ',', 'numbers', 'of', 'them', 'subsequently', '', 'to', '', 'of', 'earlier', 'names', 'and', 'a', 'few', 'remaining', 'recognised', 'as', '', 'new', 'species', 'or', 'varieties', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'wall', 'in', '', 'street', 'is', '', 'by', 'a', 'sculpture', 'by', 'arthur', '', 'entitled', '``', 'four', '', 'who', '', 'the', 'world', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'left', 'engine', 'was', 'torn', 'from', 'the', 'aircraft', 'as', 'it', 'rolled', 'over', 'and', 'a', 'fire', 'broke', 'out', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'of', '``', 'the', 'new', 'york', 'times', \"''\", 'affirmed', ',', '``', 'you', 'can', 'see', 'the', 'melville', '', 'in', 'the', '', 'shadows', 'that', 'spill', 'across', 'mr.', 'madsen', \"'s\", 'carefully', 'composed', '', 'and', 'in', 'the', '', 'and', 'trench', '', 'worn', 'by', 'his', 'two', 'heroes', '.', \"''\", '', '', '', '', '']\n", "['', 'the', 'house', ',', 'grounds', 'and', 'a', 'number', 'of', '', 'are', 'open', 'to', 'the', 'public', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'species', 'of', 'bee', 'in', 'the', 'family', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'and', '', ',', 'however', ',', 'soon', '', 'against', '', 'authority', 'as', 'well', ',', 'and', '', 'was', 'killed', 'before', 'he', 'could', 'deal', 'with', 'them', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '3', '7', '/', '3', '8', ',', 'he', 'won', 'in', 'vienna', '(', 'the', '2', '0', 'th', '', 'memorial', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'the', 'national', 'register', 'nomination', 'about', 'one', 'of', 'his', 'works', ',', '``', 'research', 'has', 'not', 'revealed', 'much', 'information', 'about', 'king', ',', 'and', 'few', 'of', 'his', 'buildings', 'remain', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'instead', 'of', 'a', 'ball', ',', 'it', 'had', 'two', 'wheels', 'rotating', 'at', 'off', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '(', 'or', 'possibly', '``', '', \"''\", 'or', '``', '', \"''\", ')', ',', 'but', 'mr.', '', 'helped', 'her', 'learn', 'to', 'read', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'he', '', 'up', ',', 'he', 'thought', 'it', 'was', 'just', 'a', '', 'memory', 'of', 'some', 'song', 'he', 'heard', 'when', 'he', 'was', 'younger', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'head', 'coach', 'jim', '', 'named', '', 'the', 'starting', 'strong', 'safety', 'to', 'begin', 'the', 'regular', 'season', ',', 'alongside', 'free', 'safety', 'louis', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'where', 'conditions', 'permitted', ',', 'the', 'emphasis', 'would', 'be', 'placed', 'on', 'organizing', 'technical', 'schools', 'and', '', 'training', 'classes', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'since', '', 'is', 'a', 'coastal', 'town', ',', 'there', 'are', 'also', 'beaches', 'near', 'town', ',', 'as', 'well', 'as', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'kent', '', 'through', 'the', 'arsenal', 'academy', 'prior', 'to', 'joining', 'colchester', 'united', \"'s\", 'academy', 'for', 'his', 'two-year', 'scholarship', 'in', '2', '0', '1', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'campus', 'grounds', 'cover', '6', '2', 'hectares', ',', '3', 'hectares', 'of', 'which', 'are', 'sports', 'fields', 'and', 'spaces', 'for', 'outdoor', 'activities', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'had', 'previously', 'approached', 'the', '', 'family', 'about', 'buying', 'the', 'building', 'alone', ',', 'but', 'the', '', 'family', 'declined', 'the', 'offer', ',', '', 'to', 'sell', 'the', 'entire', 'business', 'if', 'they', 'sold', 'it', 'at', 'all', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'one', 'of', 'the', 'institution', \"'s\", 'first', '', 'was', 'of', 'the', 'packet', '``', 'st', 'george', \"''\", ',', 'which', 'had', '', 'on', '', 'rock', 'at', 'the', 'entrance', 'to', 'douglas', 'harbour', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'a', 'horror', 'video', 'game', 'for', 'the', '', '2', '6', '0', '0', ',', 'released', 'in', 'october', '1', '9', '8', '3', 'by', '', 'video', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'born', 'in', 'alexandria', ',', 'virginia', 'and', ',', 'in', '1', '9', '9', '6', ',', 'graduated', 'from', 'frank', 'w.', 'cox', 'high', 'school', 'in', 'virginia', 'beach', ',', 'virginia', 'and', 'the', 'governor', \"'s\", 'school', 'for', 'the', 'arts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '7', 'october', '2', '0', '2', '0', ',', 'doyle', 'became', 'the', 'first', 'female', '', 'to', 'ride', 'a', 'winner', 'on', 'champions', 'day', 'at', 'ascot', ',', 'when', 'she', '', '', 'to', 'victory', 'in', 'the', 'long', 'distance', 'cup', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'jack', 'r.', 'meredith', '(', 'born', '1', '9', '3', '9', ')', 'is', 'an', 'american', 'engineer', ',', 'organizational', '', ',', 'management', 'consultant', 'and', 'professor', 'of', 'management', 'at', 'wake', 'forest', 'university', ',', 'known', 'for', 'his', 'work', 'on', 'project', 'management', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '6', ',', '', 'started', 'the', 'first', 'dark', 'pool', 'trading', 'venue', 'known', 'as', '``', 'after', 'hours', 'cross', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'are', 'offices', 'and', 'departments', 'which', 'support', 'the', 'prime', 'minister', 'in', 'general', 'political', '', 'and', 'direction', ',', 'as', 'well', 'as', 'providing', 'technical', 'support', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'japanese', 'people', '', 'the', 'brutality', 'and', '', 'of', '', ',', 'and', 'more', 'events', 'were', 'announced', 'to', 'be', 'held', 'in', 'tokyo', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'milliken', 'then', 'went', 'on', 'to', 'serve', 'as', 'mayor', 'of', '', 'city', 'from', '1', '9', '2', '2', 'to', '1', '9', '2', '8', 'as', 'a', 'republican', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', '3', '1', 'march', '1', '9', '4', '8', '-', '1', '0', 'march', '2', '0', '1', '7', ')', 'was', 'a', 'french', 'singer-songwriter', 'and', 'player', 'of', 'the', '', ',', '', 'des', '', ',', 'and', 'traditional', 'french', 'music', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'although', 'the', '', 'were', 'abolished', 'in', 'the', '', '1', '9', 'th', 'century', ',', 'the', 'roads', 'themselves', '', 'remain', 'as', 'modern', 'routes', ',', 'and', 'some', 'of', 'the', 'original', 'toll', 'houses', 'and', '', '', 'have', 'survived', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '(', ';', 'born', '2', '6', 'february', '1', '9', '7', '5', ')', 'is', 'a', 'greek', 'football', 'defender', 'currently', 'playing', 'for', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'by', '2', '0', '2', '0', 'the', 'figure', 'should', 'be', '1', '0', '%', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'work', 'has', 'been', 'selected', 'for', 'several', '', 'exhibitions', 'including', 'the', 'center', 'on', 'contemporary', 'art', 'annual', 'in', 'seattle', 'and', 'more', 'recently', 'the', '1', '0', 'th', 'international', '', 'sculpture', 'exhibition', 'at', 'the', 'university', 'of', 'hawaii', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'no', 'attempt', 'to', 'explore', 'the', 'bremer', 'was', 'made', 'at', 'this', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '', '', ',', 'tubular', '', 'bags', 'are', '', 'onto', 'a', 'cell', 'plate', 'at', 'the', 'bottom', 'of', 'the', '', 'and', 'suspended', 'from', 'horizontal', '', 'at', 'the', 'top', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'towards', 'the', 'end', 'of', 'world', 'war', 'ii', ',', 'however', ',', 'the', 'town', 'was', 'taken', 'back', 'from', 'hungarian', 'and', 'german', 'troops', 'by', 'romanian', 'and', 'soviet', 'forces', 'in', 'october', '1', '9', '4', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'rebecca', '', 'from', '``', 'anime', 'news', 'network', \"''\", 'praised', '', \"'s\", 'character', 'and', 'the', 'overall', 'story', 'composition', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'marriage', 'was', 'to', 'another', 'poet', ',', '', 'zong', '(', '', ')', ',', 'with', 'whom', 'he', 'both', 'had', 'children', 'and', '', 'of', 'poems', ',', 'including', 'many', 'expressions', 'of', 'love', 'for', 'her', 'and', 'their', 'children', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', '', 'around', 'a', 'center', 'star', 'pin', ',', 'its', '', 'cycle', '', 'by', 'a', 'ring', 'of', 'shadow', 'blocks', 'rotating', 'between', '', 'and', 'pin', ',', 'creating', '2', '9', '2', '', '', 'per', 'earth', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'a', 'village', 'with', 'a', 'view', 'of', 'the', 'wallace', 'monument', 'in', 'stirling', ',', 'almost', '2', '5', 'miles', 'away', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hitchcock', 'then', '', 'in', 'the', 'lobby', 'for', 'the', 'audience', \"'s\", 'reaction', ',', 'conducting', '', '', 'to', 'their', '', 'as', 'they', '', 'on', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'there', 'was', 'no', 'public', 'recognition', 'for', 'their', 'service', 'at', 'the', 'time', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '``', '', \"''\", 'is', 'an', '', 'of', ':', '``', 'l', \"''\", 'earning', ',', '``', 'i', \"''\", '', ',', '``', 't', \"''\", '', ',', '``', 'e', \"''\", '', 'and', '``', 's', \"''\", '', 'to', 'street', 'children', 'in', 'africa', 'and', 'india', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'a', 'member', 'of', 'the', 'national', 'press', 'association', ',', 'directed', 'in', '1', '9', '1', '6', 'by', 'arturo', 'j.', '', '', 'which', 'also', 'included', '', '', ',', '', '', ',', 'juan', '', ',', 'manuel', 'a.', '', ',', 'and', 'félix', '', '', ',', 'among', 'others', '.', '', '', '', '', '']\n", "['', 'it', 'is', 'sometimes', 'considered', 'a', 'type', 'of', 'hydroponics', ',', 'since', 'water', 'is', 'used', 'in', '', 'to', 'transmit', 'nutrients', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'also', ',', 'the', 'islamic', 'historian', 'al-maqrizi', 'reports', 'that', '', '', 'oversaw', 'construction', 'of', 'the', 'building', 'up', 'to', 'the', 'top', 'of', 'the', 'inscription', 'band', ',', 'and', '', 'muhammad', 'carried', 'out', 'the', 'rest', 'of', 'its', 'construction', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'on', 'the', '', 'occurred', 'the', 'day', 'after', 'they', 'left', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'materials', 'simulation', 'laboratory', 'of', 'the', 'department', 'of', 'physics', ',', 'university', 'of', 'south', 'florida', ',', '(', '', ')', 'was', 'established', 'in', '2', '0', '0', '2', 'by', '', 'ivan', '', 'of', 'that', 'university', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'bruce', 'was', 'very', '', ':', 'he', 'did', \"n't\", 'issue', 'me', 'with', 'an', '', ',', 'he', 'did', \"n't\", '', 'and', '', 'or', 'threaten', 'me', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'previously', ',', 'magic', 'had', 'created', 'an', '``', 'original', \"''\", 'juice', 'crew', 'consisting', 'of', 'himself', ',', 'record', 'executive', '', '', ',', 'and', 'artists', 'sweet', '', ',', 'dj', 'june', 'bug', ',', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'popularity', 'led', 'to', 'a', '', 'in', '``', '', '2', '``', 's', 'sales', ',', 'with', 'registered', 'players', 'count', 'being', 'raised', 'from', '5', '0', '0', ',', '0', '0', '0', 'to', 'one', 'million', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'company', 'published', 'it', 'until', '1', '9', '9', '5', 'along', 'with', 'its', 'other', 'women', \"'s\", 'magazines', ',', 'including', '``', 'family', 'circle', \"''\", ',', 'before', 'selling', 'the', 'titles', 'to', '', '+', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'single', 'was', 'the', 'last', 'of', 'the', '', \"'\", 'three', '', 'singles', 'on', 'the', 'r', '&', 'amp', ';', 'b', 'chart', ',', '', 'there', 'for', 'three', '', 'weeks', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'battle', 'is', 'over', ',', 'the', 'students', 'have', 'a', 'bonfire', 'to', 'try', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'mother', 'is', 'actress', 'and', '', '', '', '', ',', 'a', 'former', '', 'of', 'the', '', 'theater', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', ')', ',', 'along', 'with', 'a', '5', '0', '-word', 'list', 'from', 'a', 'more', 'specialised', '', 'of', 'that', 'general', 'field', ',', 'to', 'make', 'a', 'basic', '1', '0', '0', '0', '-word', '', 'for', 'everyday', 'work', 'and', 'life', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'every', '1', '0', '0', 'females', ',', 'there', 'were', '9', '5', '.', '4', 'males', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'decision', 'received', 'a', 'mixed', 'reception', 'from', 'the', 'international', 'community', ',', 'with', 'one', 'scholar', '', 'concern', 'that', 'it', 'threatened', '``', 'to', '', 'international', 'law', \"'s\", 'protection', 'of', 'civilians', 'in', 'armed', 'conflict', 'by', 'shifting', 'the', 'balance', 'toward', 'military', 'advantage', 'and', 'increasing', 'the', 'likelihood', 'of', '', 'damage', \"''\", '.', '', '', '']\n", "['', 'in', '1', '9', '2', '8', ',', 'hoover', 'was', 'considered', 'the', 'leading', 'candidate', 'for', 'president', 'by', 'the', 'republican', 'party', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'the', 'results', 'were', 'announced', ',', 'duncan', 'won', 'by', 'a', 'nearly', '2', '-', '1', 'margin', 'in', 'one', 'of', 'the', 'first', 'elections', 'in', 'which', 'the', 'vietnam', 'war', 'was', 'a', 'central', 'issue', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', '', 'paul', 'learns', 'of', 'bruno', \"'s\", '', 'trading', 'business', 'and', 'orders', 'him', 'to', 'leave', 'the', 'country', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'during', 'the', 'revolutionary', 'war', ',', 'the', 'family', 'had', 'its', 'lands', 'seized', 'in', '1', '7', '7', '9', 'by', 'the', 'revolutionary', 'government', 'of', 'the', 'province', 'of', 'new', 'york', 'and', 'sold', 'by', 'its', '', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'born', 'in', '', ',', '', 'and', 'his', 'family', 'moved', 'to', '', 'when', 'he', 'was', 'young', 'and', 'eventually', ',', 'they', 'moved', 'to', 'rome', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', 'radio', 'stations', 'were', 'shut', 'down', 'in', 'september', '2', '0', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'production', 'was', 'shared', 'between', '', \"'s\", 'factories', 'at', '', ',', 'middlesex', 'and', '', 'chapel', ',', '', '/', 'manchester', '(', '', ')', 'airport', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'on', '1', '6', 'july', '1', '9', '8', '6', ',', 'the', 'first', 'cheetah', 'd', 'was', 'officially', 'unveiled', ';', 'by', 'this', 'point', ',', 'a', 'number', 'of', 'cheetah', '', 'had', 'already', 'entered', 'service', 'with', '8', '9', 'combat', 'flying', 'school', 'at', 'afb', '', '.', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '2', '1', ',', 'van', '', 'served', 'on', 'an', '', 'panel', 'led', 'by', 'max', '', ',', '', 'with', 'settling', 'a', 'dispute', 'between', 'germany', 'and', 'certain', 'dutch', 'banks', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'the', 'self-titled', 'debut', 'album', 'by', 'british', 'band', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'the', '1', '9', '1', '0', 'season', ',', '', 'threatened', 'to', '', 'the', '', 'and', 'play', 'baseball', 'in', 'australia', 'over', 'a', 'salary', 'dispute', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'martha', 'had', 'been', 'regularly', '', 'sally', 'at', 'night', 'so', 'that', 'she', 'would', '', ',', 'be', '', ',', 'and', 'eventually', 'dismissed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'march', '2', '9', ',', '2', '0', '1', '9', ',', 'former', '', 'priest', 'michael', '', '', 'to', '', 'acts', 'of', 'child', '', 'while', 'served', 'in', 'the', 'diocese', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'several', 'samples', 'of', '5', '5', 'mm', 'sound', 'prints', 'can', 'be', 'found', 'in', 'the', '', 'collection', 'at', 'the', 'film', 'and', 'television', 'archives', 'at', 'columbia', 'university', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', '', 'putnam', \"'s\", 'mother', 'married', 'john', '', ',', '', 'lived', 'with', 'his', 'mother', 'and', '', 'in', '', ',', 'where', 'the', 'family', 'ran', 'an', 'inn', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ann', 'putnam', ',', '', 'of', 'the', 'salem', '', 'trials', ',', 'was', 'a', 'first', 'cousin', 'once', 'removed', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'yet', ',', 'no', 'single', 'disc', 'compilation', 'standalone', '', 'have', 'been', 'released', 'as', 'they', 'have', 'with', '``', 'the', 'simpsons', \"''\", ',', '``', '', \"''\", 'and', '``', 'family', 'guy', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'the', 'home', 'of', 'most', 'of', 'tv', '', \"'s\", 'domestic', 'output', ',', 'especially', '', ',', 'entertainment', 'programs', ',', 'and', 'news', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'newman', 'graduated', 'from', 'the', 'united', 'states', 'military', 'academy', 'at', 'west', 'point', 'in', '1', '9', '9', '8', 'with', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'the', 'sole', 'high', 'school', 'operated', 'by', 'the', '', 'county', 'school', 'district', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'and', 'as', 'noted', 'above', 'under', '``', 'notable', 'recipients', \"''\", ',', 'top', 'american', 'world', 'war', 'i', '', 'pilot', 'eddie', '', 'originally', 'received', 'eight', '', ',', 'but', 'one', 'was', 'upgraded', 'in', '1', '9', '3', '0', 'to', 'the', 'medal', 'of', 'honor', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'spans', 'the', 'connecticut', 'river', 'in', 'a', 'roughly', '', 'orientation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '0', ',', 'secon', 'moved', 'back', 'to', 'the', 'united', 'states', 'and', 'settled', 'in', 'manhattan', 'before', '', 'to', 'rochester', 'in', '1', '9', '9', '7', ',', 'where', 'he', 'died', 'at', 'his', 'home', 'at', 'the', 'age', 'of', '9', '0', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'crater', 'was', 'formerly', 'designated', 'gilbert', 'd', 'before', 'being', 'assigned', 'a', 'unique', 'name', 'by', 'the', '', 'in', '1', '9', '7', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'also', '', 'the', 'york', ',', '', ',', '', ',', 'and', 'james', 'rivers', 'in', 'addition', 'to', '', 'creek', 'in', 'hampton', 'roads', ',', 'virginia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '0', ',', 'the', '', 'held', 'three', 'regional', 'power', 'shift', 'conferences', 'in', 'adelaide', ',', 'canberra', 'and', 'geelong', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', ',', 'however', ',', '', ',', 'and', 'is', 'now', 'maintained', 'by', 'the', 'caroline', 'support', 'group', ',', 'a', 'group', 'of', 'supporters', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'second', 'island', 'looks', 'like', 'a', 'rounded', 'and', 'green', 'hill', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'bay', 'train', 'is', 'passenger', 'service', 'in', 'byron', 'bay', 'using', 'a', '6', '2', '0', 'class', '', 'converted', 'for', 'solar', 'operation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'new', 'zealand', 'ministry', 'for', 'culture', 'and', 'heritage', 'gives', 'a', 'translation', 'of', '``', 'the', '', \"''\", 'for', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'the', 'first', 'time', 'smetona', 'visited', 'the', 'city', ',', 'the', 'historical', 'capital', 'of', 'the', 'grand', 'duchy', 'of', 'lithuania', ',', 'and', 'it', 'left', 'a', 'deep', '', 'on', 'him', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'beach', 'is', 'a', '', 'beach', 'located', 'on', 'the', 'urban', '', 'of', 'the', 'municipality', 'of', '', 'in', 'the', 'province', 'of', 'pontevedra', ',', 'spain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'later', ',', 'the', '``', 'castle', '', \"''\", 'was', 'built', 'outside', 'the', 'village', ',', 'the', '``', 'castle', '', \"''\", 'fell', 'into', '', 'already', 'in', 'the', '1', '5', 'th', 'century', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'work', 'undertaken', 'included', 'tree', 'work', ',', 'debris', 'removal', 'and', 'residential', 'flood', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'george', 's.', '', ',', 'an', 'early', 'postmaster', ',', 'gave', 'the', 'community', 'his', 'last', 'name', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'controversy', 'ensued', 'over', 'the', 'raid', ',', 'as', 'city', 'officials', 'had', 'secretly', 'authorized', 'a', 'letter', 'seeking', 'federal', 'law', 'enforcement', 'assistance', 'in', '', 'down', 'the', 'collective', ',', 'which', 'an', 'expert', 'claimed', 'was', 'illegal', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'located', 'in', 'the', '', 'region', ',', '', 'province', ',', '', 'district', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'ball', 'is', 'mostly', 'steel', ',', 'with', 'a', '', '', 'rubber', 'surface', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', '', 'betty', 'la', '', \"''\", 'is', 'a', 'great', 'example', 'of', '', 'media', 'because', 'of', 'the', 'increasing', '', 'of', '', 'to', 'the', 'united', 'states', 'and', 'other', 'countries', 'not', 'familiar', 'or', '', 'similar', 'to', 'latin', 'america', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'and', 'colleagues', 'also', 'published', 'the', '``', '', 'scale', ':', 'an', '', 'assessment', 'for', 'infants', ',', '', ',', 'and', 'families', \"''\", ',', 'an', '', 'performance', 'assessment', 'that', 'is', 'used', 'with', 'children', 'from', '', 'through', 'age', 'three', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'public', 'perception', 'is', 'that', '', '', 'such', 'as', 'wind', ',', 'solar', ',', '', 'and', '', 'are', 'significantly', '', 'global', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'nevertheless', ',', 'when', '', 'found', 'out', 'she', 'would', 'train', 'in', '', ',', 'cuba', 'and', 'that', 'the', 'pay', 'was', 'more', 'than', 'she', 'was', 'making', 'in', 'a', 'factory', ',', 'she', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'continued', 'by', '', ',', 'that', 'he', 'had', 'received', 'the', 'road', 'contract', 'on', 'his', 'own', 'merits', ',', 'and', 'that', 'he', 'had', 'made', 'application', 'in', 'the', 'same', 'manner', 'as', 'all', 'the', 'other', '', 'and', 'that', 'he', 'also', 'still', 'owned', 'the', 'contract', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'premiered', 'at', '', 'media', 'on', 'february', '1', '0', ',', '2', '0', '0', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'honor', '', 'are', 'illegal', 'in', 'egypt', 'and', 'five', 'of', 'the', 'ten', 'men', 'were', 'arrested', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'main', 'campus', 'is', 'located', 'at', '3', '0', '3', 'lowe', 'street', ',', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'browhead', 'houses', 'girl', '', 'from', 'the', 'ages', 'of', 'eight', 'to', '1', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'opened', 'four', 'locations', 'in', 'california', 'before', 'selling', 'the', 'business', 'to', 'private', 'investors', 'in', '1', '9', '8', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'engineers', 'lived', 'in', '', 'barracks', 'in', 'hermitage', 'for', 'many', 'years', 'until', 'july', '2', '0', '1', '4', 'when', 'the', 'regiment', 'in', 'moved', 'to', 'raf', '', 'as', 'part', 'of', 'the', 'joint', 'forces', 'intelligence', 'group', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'a', 'number', 'of', 'regional', 'tours', 'and', 'increasing', 'popularity', 'in', 'the', 'online', '', 'community', ',', 'the', 'band', 'was', 'signed', 'up', 'by', 'tragic', 'hero', 'records', 'in', 'february', '2', '0', '1', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '5', '4', 'th', 'suffered', '4', '3', 'casualties', ',', 'with', '1', '4', 'killed', ',', '1', '7', 'wounded', ',', 'and', '1', '2', 'others', 'lost', 'to', 'capture', ',', 'but', 'the', '1', '0', 'th', 'connecticut', 'was', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', 'online', \"''\", 'is', 'set', 'in', 'the', 'warring', 'and', '', 'times', 'of', 'the', 'end', 'of', 'the', 'eastern', 'han', 'dynasty', 'in', 'ancient', 'china', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', '', ')', '', 'are', 'used', 'to', 'connect', 'printed', 'circuit', 'boards', '(', '', ')', ',', 'electronic', 'components', 'that', 'contain', 'a', '', 'pattern', 'printed', 'on', 'the', 'surface', 'of', 'the', '', 'base', 'in', 'an', 'accurate', 'and', '', 'manner', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'rotational', '', 'function', '', 'the', 'rotational', 'degrees', 'of', 'freedom', 'to', 'the', 'rotational', 'part', 'of', 'the', 'energy', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'song', \"'s\", 'setting', 'takes', 'place', 'at', 'a', '', 'facility', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'knight', '', 'washington', '', 'warren', '', 'and', 'jonathan', '', 'received', 'the', 'raymond', '', 'memorial', 'award', 'from', 'the', 'senate', 'press', 'gallery', 'on', 'february', '5', ',', '2', '0', '0', '4', ',', 'for', 'their', 'coverage', 'of', 'the', '', 'intelligence', 'used', 'to', '', 'war', 'with', 'iraq', '.', '', '', '', '', '', '', '']\n", "['', 'on', 'december', '2', '0', ',', '2', '0', '1', '7', ',', '', 'came', 'out', 'of', 'retirement', 'to', 'race', 'in', 'the', '', '2', '4', 'hour', 'race', ',', 'alongside', 'other', 'hong', 'kong', 'drivers', '', 'lee', ',', '', '', ',', '', '', 'and', '', '', '.', '', '', '', '', '', '', '', '']\n", "['', 'the', 'capell', 'family', 'finally', 'sold', 'hadham', 'in', '1', '9', '0', '0', 'and', 'it', 'is', 'now', 'a', 'private', 'residence', ';', 'cassiobury', 'remained', 'in', 'the', 'family', 'until', '1', '9', '2', '7', 'when', ',', 'like', 'many', 'other', 'british', 'country', 'houses', ',', 'it', 'was', 'demolished', '.', '', '', '', '', '', '', '', '']\n", "['', '', '', '', 'is', 'a', 'norwegian', '', 'and', 'professor', '(', 'chair', ')', 'of', '', 'at', 'the', 'university', 'of', 'oslo', ',', 'where', 'she', '', 'the', '', '', 'brain', 'lab', ',', 'which', 'is', 'funded', 'by', 'a', 'european', 'research', 'council', 'grant', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'local', 'school', 'was', 'closed', 'following', 'the', 'oil', 'spill', 'due', 'to', 'concerns', 'about', 'the', 'effects', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'of', 'primary', 'concern', 'is', 'the', 'condition', 'and', '', 'of', 'the', 'maxillofacial', 'structures', ',', '', ',', '', ',', 'and', '', 'as', 'these', 'are', 'all', 'components', 'of', 'the', '', '', 'and', 'failure', '', 'along', 'this', 'path', 'may', '', 'ventilation', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'following', 'season', ',', 'he', 'won', '1', '7', 'of', '2', '4', 'decisions', 'in', 'the', '', 'american', 'association', 'and', 'was', 'named', 'the', 'league', \"'s\", 'most', 'valuable', 'player', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'stevens', 'added', '$', '4', '0', ',', '0', '0', '0', 'to', 'his', 'trust', 'for', 'the', 'high', 'school', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'letter', 'from', '', '', 'to', 'lady', 'edward', 'cecil', 'records', 'a', 'conversation', 'at', '', 'house', 'in', 'december', '1', '9', '1', '4', 'with', 'the', '', 'private', 'walter', '', ',', 'who', 'had', 'served', 'in', 'manners', \"'\", 'platoon', 'and', 'claimed', 'that', 'manners', 'was', 'shot', 'through', 'the', 'head', 'and', 'died', 'instantly', '.', '', '']\n", "['', 'he', 'later', 'joined', '', 'and', '', \"'s\", 'animation', 'company', 'where', 'he', 'started', 'directing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'objects', 'that', 'could', 'indicate', 'possible', 'evidence', 'of', 'past', '', 'include', '', 'and', 'nuclear', '', '', 'buried', 'deep', 'underground', 'or', 'on', 'the', 'ocean', 'floor', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'the', 'extension', 'of', 'universal', 'suffrage', 'and', 'the', 'subsequent', 'election', 'of', 'the', 'first', '', 'government', ',', 'parliament', 'developed', 'a', 'new', 'constitution', 'and', 'bill', 'of', 'rights', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'the', 'dissolution', 'of', 'nazi', 'germany', 'in', '1', '9', '4', '5', 'the', 'ministry', 'was', '', 'into', 'its', 'current', 'form', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '7', ',', 'she', 'appeared', 'on', 'the', 'nbc', 'radio', 'program', '``', 'toscanini', ':', 'the', 'man', 'behind', 'the', 'legend', \"''\", ',', 'paying', 'tribute', 'to', 'the', 'legendary', 'italian', 'conductor', 'arturo', 'toscanini', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', '', 'were', 'eventually', 'built', 'from', '', 'to', 'st.', 'dennis', 'with', 'the', 'branch', 'line', 'to', 'east', '', 'rose', ',', 'and', 'the', 'first', 'load', 'of', '', 'left', 'east', '', 'rose', 'on', '2', '6', 'february', '1', '8', '4', '9', 'in', '', '', '.', '', '', '', '', '', '', '', '']\n", "['', 'tom', 'was', 'my', 'youth', 'team', 'manager', 'at', 'watford', 'and', '', '', 'people', 'being', 'out', 'of', 'shape', '...', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'benedictine', 'monks', 'from', 'st.', '', \"'s\", '', 'arrived', 'in', 'the', 'western', 'part', 'of', 'north', 'carolina', 'acquired', 'land', ',', 'and', 'started', 'a', 'new', 'foundation', 'in', '1', '8', '7', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'if', 'the', 'fort', 'needed', 'to', 'be', 'fully', 'garrisoned', 'due', 'to', 'an', '', 'attack', ',', 'the', 'difference', 'in', 'the', 'actual', 'garrison', 'and', 'the', 'plan', 'would', 'be', 'made', 'good', 'from', 'washington', \"'s\", 'reserve', 'force', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'it', 'was', 'only', 'recently', 'that', 'the', 'full', 'significance', 'came', 'home', 'to', 'me', 'when', 'i', 'suddenly', 'realised', 'that', 'the', 'effect', 'of', 'the', 'decision', 'to', 'ban', 'the', '', 'of', 'women', 'is', 'that', 'my', 'daughter', 'can', 'not', 'become', 'a', 'minister', 'of', 'the', 'presbyterian', 'church', 'of', 'australia', '.', '', '', '', '', '']\n", "['', '', '2', '0', '2', 'and', '', '3', '5', '0', ',', 'while', 'not', 'directly', 'involved', 'in', 'the', '', '1', '', '4', '', 'cleavage', ',', 'were', 'identified', 'to', 'be', 'important', 'to', '', '1', 'function', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'that', 'did', 'not', 'work', ',', 'he', 'decided', 'to', 'let', 'the', '', 'river', 'express', 'passenger', 'train', 'do', 'the', 'heavy', 'work', 'of', '', 'the', 'concrete', '', 'and', 'he', 'laid', 'it', 'across', 'a', 'rail', 'near', 'his', '', ',', 'california', 'home', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'headed', 'by', 'the', 'chief', 'judge', 'of', 'abia', 'state', ',', 'who', 'is', 'appointed', 'by', 'the', 'abia', 'state', 'governor', 'through', 'the', 'approval', 'of', 'the', 'abia', 'state', 'house', 'of', 'assembly', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'sailed', 'with', 'ken', 'read', ',', '', '', ',', 'kelvin', '', 'and', 'james', '', 'on', 'board', '``', '', \"''\", 'in', 'the', '2', '0', '1', '5', 'sydney', 'to', '', 'yacht', 'race', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'and', 'his', 'wife', 'of', '5', '3', 'years', ',', 'nancy', ',', 'reside', 'in', 'rural', 'montgomery', 'county', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'was', 'in', 'draft', 'and', 'in', 'length', 'with', 'a', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'time', 'table', 'was', 'also', 'released', 'revealing', 'that', 'from', 'june', '1', '2', 'to', 'june', '2', '1', '', 'would', 'be', 'released', ',', 'ending', 'with', 'a', 'showcase', 'on', 'june', '2', '4', 'and', 'the', 'cd', 'release', 'a', 'day', 'later', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'went', 'on', 'to', 'receive', 'a', 'degree', 'from', 'the', 'university', 'of', 'tennessee', 'where', 'he', 'played', 'four', 'years', 'of', 'football', 'for', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'won', 'a', 'gold', 'medal', 'at', 'the', '1', '9', '8', '0', 'world', '', 'championships', 'in', '', 'with', 'the', 'lightweight', 'men', \"'s\", 'double', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'is', 'the', 'father', 'of', 'actress', '', '', 'and', '', 'benson', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'wanting', 'to', 'return', 'to', 'the', '', 'yet', '', 'challenging', 'sounds', 'of', 'works', 'past', ',', 'the', '', '', 'proved', 'to', 'be', 'the', 'perfect', '', 'necessary', 'for', 'testament', 'to', 'regain', 'their', 'confidence', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'world', 'war', 'ii', ',', '', 'conducted', 'research', 'on', 'the', '', 'of', 'the', 'rice', 'plant', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'moth', 'in', 'the', 'family', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'serves', 'as', 'deputy', 'director', 'of', 'russian', 'state', 'tv', 'holding', 'company', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'white', 'tells', 'russell', 'that', 'case', 'will', 'pay', 'him', 'a', 'substantial', 'sum', 'if', 'he', '', 'the', 'contents', 'of', 'the', 'box', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'parade', 'of', 'personalities', \"''\", ';', 'however', ',', 'he', 'praised', '', 'for', 'his', 'choice', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'two', 'years', 'after', 'its', 'founding', ',', 'healthsouth', 'became', 'a', 'publicly', 'traded', 'company', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'school', 'roll', 'is', '8', '3', '5', 'male', 'students', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'urination', 'is', 'the', '', 'of', 'urine', 'from', 'the', '', '', 'through', 'the', '', 'to', 'the', 'outside', 'of', 'the', 'body', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'procedure', 'includes', 'selection', 'of', 'low', 'cost', 'and', 'climate', 'friendly', 'electric', 'rate', 'plans', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'cyprus', 'dispute', '', 'the', 'greek', 'government', 'of', 'george', '', 'and', 'triggered', ',', 'in', 'april', '1', '9', '6', '7', ',', 'a', 'military', 'coup', 'in', 'greece', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'tells', 'her', 'she', 'never', 'made', 'him', 'happy', ',', 'but', 'still', 'she', '', 'and', 'tries', 'to', 'bring', 'his', 'demon', 'out', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'talent', 'included', '', 'and', 'winning', 'state', 'funds', 'available', 'for', 'the', 'construction', 'of', 'schools', 'for', '', 'and', 'contributions', 'from', 'wealthy', 'individuals', ',', 'white', 'and', 'black', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'line', '', 'in', '1', '9', '4', '7', 'is', 'japan', \"'s\", 'worst', 'rail', 'accident', 'since', 'world', 'war', 'ii', 'in', 'terms', 'of', 'fatalities', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'chose', 'mortality', ',', 'the', 'gift', 'of', 'men', ',', 'founding', 'the', 'line', 'of', 'the', 'kings', 'of', '', ';', 'his', 'descendant', 'at', 'the', 'time', 'of', 'the', 'war', 'of', 'the', 'ring', 'was', '', ',', 'one', 'of', 'the', 'fellowship', 'of', 'the', 'ring', ',', 'who', 'married', '', \"'s\", 'daughter', ',', '', '.', '', '']\n", "['', 'one', 'of', 'the', '', 'satellites', 'is', 'now', 'displayed', 'in', 'the', 'us', 'national', 'air', 'and', 'space', 'museum', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'of', 'these', 'album', 'releases', 'have', 'made', 'it', 'to', 'the', 'top', 'of', 'the', 'danish', 'albums', 'chart', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'the', '', 'tournament', 'in', 'women', \"'s\", 'golf', 'in', '1', '9', '8', '3', ';', 'the', '$', '4', '0', '0', ',', '0', '0', '0', '', 'was', 'double', 'that', 'of', 'the', '1', '9', '8', '3', 'u.s.', 'women', \"'s\", 'open', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'qualifier', ',', 'each', 'shooter', 'fires', '6', '0', 'shots', 'with', 'a', 'rifle', 'at', '5', '0', 'metres', 'distance', 'from', 'the', '', 'position', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'retirement', 'from', 'the', '', 'he', 'is', 'engaged', 'in', 'translation', 'of', 'rare', 'islamic', 'manuscripts', 'into', 'the', 'hindi', 'language', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'samson', \"'s\", 'collection', 'of', 'stories', ',', '``', 'perfect', 'lives', \"''\", ',', 'was', 'published', 'in', 'november', '2', '0', '1', '0', 'by', '', 'press', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'stars', 'paul', '', '(', 'in', 'his', 'last', 'film', 'appearance', ')', ',', 'david', 'wayne', ',', '', '', ',', 'billy', 'dee', 'williams', '(', 'in', 'his', 'film', 'debut', ')', ',', 'and', '', 'cambridge', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', '', ',', 'calcium', ',', '', ',', 'aluminium', ',', '', ',', 'iron', ',', 'lead', ',', 'hydrogen', ',', '', ',', 'mercury', ',', 'silver', 'gold', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', '', '(', 'born', '1', '0', 'march', '1', '9', '3', '8', ')', 'is', 'an', 'american', 'mystery', ',', 'fantasy', ',', 'science', 'fiction', ',', 'and', 'horror', 'author', 'and', 'editor', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'regularly', '', 'woody', 'harrelson', ',', '', '', ',', 'ralph', '', ',', '', 'morrison', 'and', 'ricky', '', 'in', 'most', 'of', 'their', 'movies', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'federal', 'court', 'found', 'that', 'the', 'facility', 'had', '', 'the', 'constitutional', 'rights', 'of', 'the', 'children', 'there', 'by', 'housing', 'an', 'average', 'of', '7', '1', 'individuals', 'a', 'night', 'at', 'the', 'receiving', 'home', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'working', 'as', 'a', 'town', '', 'for', 'several', 'years', ',', 'anne', 'marie', 'turned', 'her', 'attention', 'to', 'fiction', 'writing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'prefectural', 'government', ',', '', 'university', ',', 'citizen', \"'s\", 'organisations', ',', 'and', 'local', 'people', 'all', 'worked', 'together', 'to', 'uncover', 'the', 'cause', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'williams', 'used', '3', '', '', '8', '1', '0', 'e', '', 'with', '2', '', '4', 'pro', 'heads', ',', 'but', 'if', 'there', 'was', 'any', '', 'with', 'the', '', 'systems', ',', 'he', 'used', 'cables', 'in', 'his', 'live', 'performances', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'railway', 'in', 'the', 'city', 'was', 'built', 'in', '1', '8', '7', '4', 'connecting', 'it', 'with', 'the', 'ottoman', 'capital', ',', 'and', 'in', '1', '8', '8', '8', ',', 'it', 'was', '', 'with', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'argued', 'that', '``', 'fifty', 'years', 'ago', 'one', 'would', 'not', 'have', '', 'that', 'science', 'would', 'defend', 'the', 'fact', 'that', 'asia', 'was', 'the', 'home', 'of', 'the', 'black', 'races', 'as', 'well', 'as', 'africa', ',', 'yet', 'it', 'has', 'done', 'just', 'that', 'thing', '.', \"''\", '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'current', 'structure', '', 'on', 'the', 'site', 'of', 'a', 'former', '', 'castle', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'game', 'supports', 'use', 'of', 'the', '', 'light', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'thachil', '', 'is', 'the', '', 'of', 'the', 'family', 'who', 'migrated', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'search', 'led', 'to', 'the', 'isolation', 'and', 'identification', 'of', 'three', 'distinct', 'classes', 'of', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'her', 'move', ',', 'creelman', ',', 'then', '5', '7', ',', 'brought', 'a', 'suit', 'against', 'the', 'pennsylvania', 'railroad', 'company', 'after', 'a', 'fall', 'going', 'down', 'the', '', 'of', '', 'station', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'spread', 'of', 'the', 'disease', 'is', 'believed', 'to', 'have', 'been', '', 'by', 'common', 'chaffinches', ',', 'as', 'large', 'numbers', 'of', 'the', 'birds', 'breed', 'in', 'northern', 'europe', 'and', 'winter', 'in', 'great', 'britain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'selected', 'by', 'the', 'los', 'angeles', 'kings', 'in', 'the', '7', 'th', 'round', '(', '2', '0', '6', 'th', 'overall', ')', 'of', 'the', '2', '0', '0', '5', 'nhl', 'entry', 'draft', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', 'of', 'the', '', 'held', 'photographs', 'of', 'their', 'missing', 'relatives', ',', 'containing', '', 'with', 'names', 'and', 'the', 'dates', 'they', 'disappeared', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'various', 'medical', 'uses', 'and', 'renovations', ',', 'the', 'structure', 'is', 'now', 'the', 'peter', '', 'hospital', '(', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'heart', 'of', 'mary', 'seminary', 'high', 'school', '(', 'now', '', 'out', ')', 'and', 'college', 'departments', 'in', '', 'city', ',', '', ',', 'philippines', 'have', 'produced', 'people', 'that', 'have', 'found', 'their', '', 'in', 'society', ',', 'occupying', 'positions', 'locally', 'as', 'well', 'as', 'internationally', '.', '', '', '', '', '', '', '', '']\n", "['', 'using', 'the', 'first', 'person', 'plural', ',', 'it', 'includes', 'everyone', 'in', 'singing', '', 'with', 'the', 'angels', 'because', 'the', '', 'guest', 'has', 'finally', 'appeared', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'ran', 'from', '1', '9', '9', '0', 'to', '1', '9', '9', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'a', 'recipient', 'of', 'the', '2', '0', '1', '9', '``', 'taiwan', 'fellowship', \"''\", 'grant', 'awarded', 'by', 'the', 'ministry', 'of', 'foreign', 'affairs', 'of', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'offered', 'a', 'contract', ',', 'but', 'turned', 'it', 'down', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'jasmine', '', 'the', 'care', 'home', 'where', 'jac', 'and', 'fran', 'grew', 'up', ',', 'as', 'she', 'feels', 'that', 'jac', \"'s\", 'childhood', 'is', 'to', '', 'for', 'their', 'poor', 'relationship', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'not', 'until', 'frank', '', 'arrived', 'in', 'the', 'area', 'in', '1', '8', '9', '3', 'to', 'operate', 'a', 'ferry', 'across', 'the', 'new', 'river', ',', 'and', 'the', 'florida', 'east', 'coast', 'railroad', \"'s\", 'completion', 'of', 'a', 'route', 'through', 'the', 'area', 'in', '1', '8', '9', '6', ',', 'that', 'any', 'organized', 'development', 'began', '.']\n", "['', '', 'also', 'has', 'clubs', 'for', 'basketball', ',', 'tennis', ',', 'swimming', ',', 'dancing', ',', '', ',', 'boxing', 'and', '', ',', 'matches', 'and', 'demonstrations', 'can', 'be', 'attended', 'nearly', 'every', 'weekend', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'lead', 'vocalist', 'dawn', '', 'said', 'that', 'the', 'recording', 'process', 'was', '``', 'one', 'of', 'the', 'most', '', 'times', 'in', 'our', 'lives', 'because', 'we', 'had', 'about', 'six', 'years', 'to', 'write', 'the', 'first', 'album', 'and', 'about', 'six', 'months', 'to', 'write', 'the', 'second', 'one', \"''\", '.', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '0', '5', ',', '``', 'the', 'journal', 'news', \"''\", 'expanded', 'its', 'custom', 'publishing', 'division', 'and', 'began', 'publishing', 'a', 'series', 'of', 'suburban', 'lifestyle', 'magazines', 'about', 'the', 'lower', 'hudson', 'valley', 'region', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', '', 'on', 'her', 'work', 'was', 'in', 'its', 'third', 'printing', 'as', 'of', '2', '0', '1', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'at', 'this', 'time', 'that', 'many', 'handsome', 'stone', '', 'were', 'built', 'on', 'wide', '', ',', 'with', 'practically', 'every', 'second', 'house', 'becoming', 'a', '', 'house', 'as', 'bridge', 'of', 'allan', 'became', 'a', 'renowned', 'spa', 'town', ',', 'especially', 'during', 'the', 'boom', 'years', 'of', '', '', '.', '', '', '', '', '', '']\n", "['', '', 'has', 'created', 'a', 'number', 'of', 'solo', 'works', ',', 'in', 'addition', 'to', 'collaborating', 'with', 'other', 'artists', 'and', 'presenting', 'exhibitions', 'at', '', 'and', 'institutions', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'following', 'his', 'military', 'service', ',', 'he', 'collaborated', 'with', 'joseph', 'fields', 'to', 'write', 'the', '', 'for', 'the', 'marx', 'brothers', '1', '9', '4', '6', 'film', '``', 'a', 'night', 'in', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'town', 'shares', 'its', 'name', 'with', 'the', '', '', 'dzong', 'built', 'in', '1', '6', '3', '8', 'that', '', 'the', 'district', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'produced', 'by', 'frequent', 'collaborator', 'mike', 'will', 'made', 'it', ',', 'and', 'featured', 'a', 'guest', 'appearance', 'by', 'cap', '.', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', '', 'mythology', ',', 'after', 'her', 'sister', '', 'was', 'raped', 'by', 'the', 'sun', ',', 'she', 'shed', '', 'that', 'became', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'due', 'to', 'equipment', 'failure', 'in', '2', '0', '0', '8', ',', 'the', 'station', \"'s\", '', 'signal', 'operated', 'at', 'reduced', 'power', '(', '1', ',', '5', '0', '0', 'kw', ',', '3', '0', '%', 'of', 'normal', ')', 'until', 'it', 'switched', 'entirely', 'to', 'digital', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '5', '', 'forward', 'firing', 'aircraft', 'rocket', 'or', '', 'was', 'an', 'american', 'rocket', 'developed', 'during', 'world', 'war', 'ii', 'for', 'attack', 'from', '', 'against', 'ground', 'and', 'ship', 'targets', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'subsequently', 'was', 'a', '', 'of', '', 'physics', 'at', 'same', 'the', 'university', 'in', '1', '9', '7', '0', ',', 'and', 'served', 'as', 'professor', 'between', '1', '9', '7', '9', 'and', '1', '9', '8', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'keen', \"'s\", 'collection', 'of', 'fossils', 'and', 'mollusks', 'she', 'curated', 'were', 'transferred', 'to', 'the', 'california', 'academy', 'of', 'sciences', ',', 'and', 'her', 'publications', 'can', 'still', 'be', 'found', 'at', 'stanford', 'university', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'seventh', ',', '1', '6', '2', 'years', 'after', 'jared', ',', 'was', 'that', 'of', '', 'begotten', 'of', 'jared', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '0', '7', 'smith', 'and', '', 'harry', 'smith', 'and', 'charles', '', 'were', 'charged', 'with', 'assault', 'after', 'beating', 'montreal', '', 'players', '', 'stuart', ',', '', '``', '', \"''\", 'johnson', 'and', 'cecil', '', 'with', 'their', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'approach', 'has', 'greatly', 'simplified', 'the', '', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', '', 'victim', 'had', 'to', 'be', 'transported', 'in', 'the', '', 'of', 'a', 'fire', 'truck', 'because', 'of', 'the', 'lack', 'of', 'an', 'ambulance', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'company', '', 'a', 'route', 'from', 'a', 'line', 'of', 'sp', '', 'oregon', 'and', 'california', 'railroad', 'at', '', ',', 'near', '', ',', 'over', 'the', '', 'in', 'the', 'direction', 'of', 'the', 'up', 'near', 'ontario', ',', 'oregon', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'population', 'was', '2', '7', '7', 'as', 'of', '2', '0', '0', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'enacted', 'in', 'the', '2', '0', '1', '7', 'finance', 'budget', ',', 'but', 'only', 'for', 'new', 'caia', '', '', '(', 'e.g', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', '', 'on', 'the', 'grounds', 'that', '', 'uniforms', 'might', 'be', 'confused', 'with', 'those', 'of', 'the', 'enemy', 'and', 'might', 'turn', 'the', 'army', 'into', 'a', 'citizen', 'militia', 'like', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'conducted', 'the', 'strings', 'of', 'the', 'royal', 'liverpool', 'philharmonic', 'orchestra', 'at', 'the', '``', 'royal', 'liverpool', 'philharmonic', 'hall', \"''\", 'where', 'julie', 'had', 'orchestrated', 'the', 'scores', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'an', 'island', 'in', 'the', 'municipality', 'of', '', 'in', '', 'county', ',', 'norway', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'engine', '', 'the', 'rails', ',', '', 'up', '3', '0', '0', 'feet', 'of', 'track', ',', 'hit', 'a', 'switch', 'and', 'turned', 'over', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '5', '0', 'a', 'report', 'on', 'the', 'state', 'of', '', 'cricket', 'noted', 'that', 'the', 'league', 'was', 'missing', 'players', 'who', '', 'spectators', ',', 'and', 'mentioned', '', 'as', 'a', 'former', 'player', 'who', 'had', 'done', 'so', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', 'second', 'half', 'of', 'the', \"'\", '8', '0', 's', ',', '', 'developed', 'and', 'released', 'a', 'number', 'of', 'digital', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'word', '', 'describes', 'the', 'systematic', 'study', 'on', 'the', 't', 'cell', '', 'peptides', 'in', '', 'disease', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'act', 'of', '2', '0', '0', '7', '', 'refusal', 'to', 'register', ',', '', ',', 'and', '', 'of', 'immigration', 'authorities', 'by', 'anyone', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'competition', 'programme', 'features', 'a', 'total', 'of', '3', '8', 'individual', '', 'championship', 'athletics', 'events', ',', '1', '9', 'for', 'men', 'and', '1', '9', 'for', 'women', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'december', '2', '0', '0', '5', 'the', 'european', 'union', 'classified', 'the', '', '', 'force', 'as', 'a', '', 'organisation', ',', '', 'its', 'monetary', 'assets', 'throughout', 'its', '2', '5', 'member', 'countries', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'appeals', 'from', 'the', 'district', 'courts', 'are', 'made', 'to', 'one', 'of', 'the', '1', '3', 'courts', 'of', 'appeals', ',', 'organized', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'its', 'beginnings', 'the', 'carrier', 'operated', 'cargo', 'flights', 'only', ';', 'regular', 'scheduled', 'passenger', 'services', 'commenced', 'in', '2', '0', '0', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'average', 'household', 'size', 'was', '2', '.', '6', '7', 'and', 'the', 'average', 'family', 'size', 'was', '2', '.', '5', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '1', '9', '8', '3', 'to', '1', '9', '8', '7', '``', '', \"''\", 'was', 'used', 'as', 'a', 'target', 'ship', 'and', 'based', 'at', 'port', '', ',', 'california', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'two', 'of', 'these', 'expressions', 'and', '', '', 'the', 'equation', 'results', 'in', 'a', 'product', 'of', 'two', 'factors', 'which', 'equal', '0', ',', 'but', 'only', 'one', 'of', 'them', '(', '``', 'a', \"''\", '−', \"''\", 'b', \"''\", ')', 'can', 'equal', '0', 'and', 'the', 'other', 'must', 'be', 'positive', '.', '', '', '', '', '']\n", "['', '2', '0', '0', 'laps', 'were', 'run', 'on', 'a', 'paved', 'oval', 'track', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '', '2', '2', 'a', '', 'set', 'of', '3', '', 'all', '', 'with', 'one', 'another', 'has', 'size', '2', '2', 'and', 'is', 'called', 'a', '``', 'basic', \"''\", 'set', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'each', 'paralympic', 'sport', 'then', 'has', 'its', 'own', '', ',', 'dependent', 'upon', 'the', 'specific', 'physical', 'demands', 'of', 'competition', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'douglas', 'arrived', 'he', 'did', 'not', 'have', 'much', 'success', 'in', 'trading', ',', 'due', 'to', 'the', 'poor', 'quality', 'iron', 'his', 'ship', 'was', 'carrying', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', '8', '7', '0', 'khz', ')', 'is', 'a', 'radio', 'station', 'in', '', ',', 'new', 'york', ',', 'that', 'programs', 'a', '', 'radio', 'format', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'the', 'united', 'states', 'census', 'bureau', ',', 'the', 'cdp', 'has', 'a', 'total', 'area', 'of', ',', 'of', 'which', 'is', 'land', 'and', ',', 'or', '2', '4', '.', '2', '5', '%', ',', 'is', 'water', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', '', 'secondary', 'school', 'for', 'girls', 'in', '1', '9', '5', '1', ',', 'it', 'received', 'pupils', 'from', '', 'heath', ',', '', ',', '', ',', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'took', 'place', 'at', 'the', 'st.', '', 'in', '', ',', 'switzerland', ',', 'from', '2', '4', 'october', 'through', '3', '0', 'october', '2', '0', '0', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'rv-', '8', 'incorporated', 'changes', 'as', 'a', 'result', 'of', 'lessons', 'learned', 'in', 'producing', 'the', 'popular', 'rv-', '4', 'design', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'westminster', 'senior', 'high', 'school', 'drama', 'program', 'performs', 'three', 'shows', 'a', 'year', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'has', 'also', 'established', '', 'relationships', 'with', 'oakland', 'youth', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'supermarket', 'was', 'also', 'expanded', ',', 'extending', 'to', 'what', 'was', 'once', 'the', 'supermarket', \"'s\", 'stock', 'room', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'beginning', 'of', 'a', 'more', 'scientific', 'investigation', 'of', 'beauty', 'in', 'general', 'is', 'connected', 'with', 'the', 'name', 'of', 'pere', '', '(', 'see', '``', 'first', '', \"''\", ')', ',', 'form', ',', 'and', '', 'his', 'theory', 'by', 'the', 'human', 'face', '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'most', 'cases', ',', 'the', 'elevation', 'differences', 'between', 'single', 'array', 'sites', 'are', 'so', 'small', 'that', '', 'differences', 'due', 'to', 'elevation', 'differences', 'are', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'strains', 'b', '(', 'aka', 'top', 'cat', ')', ',', 'c', ',', 'and', 'd', 'were', 'discovered', 'in', 'august', '1', '9', '9', '0', ',', 'october', '1', '9', '9', '0', ',', 'and', 'january', '1', '9', '9', '1', ',', 'respectively', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'irvine', 'published', '1', '1', 'books', 'for', 'adults', 'before', 'he', 'began', 'his', 'first', 'children', \"'s\", 'series', ',', '``', '', 'jones', \"''\", ',', 'in', '2', '0', '0', '6', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'top', 'of', '', '', ',', 'at', 'an', 'altitude', 'of', '1', '1', '7', '8', 'meters', ',', 'there', 'are', 'a', '', 'tower', 'and', 'a', 'military', 'barracks', 'whose', 'location', 'is', 'strategically', 'important', 'to', 'croatia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'most', 'successful', '', 'area', 'of', '', ',', '', 'square', 'and', '', 'high', 'street', 'both', 'now', 'hosting', 'empty', 'units', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '5', '5', '6', 'he', 'was', '', 'of', 'the', 'germans', 'in', 'the', 'university', 'of', 'paris', ',', 'and', 'in', 'may', '1', '5', '5', '7', 'was', 'chosen', 'by', 'them', 'to', '', 'with', 'the', 'king', 'concerning', 'a', 'tax', 'which', 'he', 'desired', 'to', '', 'on', 'the', 'university', '.', '', '', '', '', '']\n", "['', 'the', 'mission', 'of', 'the', 'stone', 'center', 'is', 'to', 'build', 'and', '', 'knowledge', 'related', 'to', 'the', 'causes', ',', 'nature', ',', 'and', 'consequences', 'of', 'multiple', 'forms', 'of', 'socio-economic', 'inequality', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'jointly', 'commissioned', 'by', '', 'council', 'and', 'west', '', 'united', ',', 'the', 'statue', 'stands', 'at', 'the', 'junction', 'of', '', 'road', 'and', 'green', 'street', ',', 'near', 'the', 'former', 'location', 'of', 'the', '', 'ground', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'transferred', 'to', 'the', 'mackay', 'pacific', '', 'hospital', 'in', 'april', '1', '8', '8', '4', 'and', 'replaced', 'at', '', 'by', 'dr', 'j', 'raphael', 'joseph', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'the', '2', '0', '1', '2', 'sabha', 'clashes', 'a', 'free', '', 'air', 'force', '', '2', '1', '', 'and', '', '2', '1', '', 'were', 'deployed', 'to', 'the', 'area', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'federal', 'reserve', 'governor', 'roger', 'w.', 'ferguson', 'jr.', 'has', 'described', 'in', 'detail', 'this', 'and', 'the', 'other', 'actions', 'that', 'the', 'fed', 'undertook', 'to', 'maintain', 'a', 'stable', 'economy', 'and', 'offset', 'potential', '', 'arising', 'in', 'the', 'financial', 'system', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'student', 'body', 'is', 'served', 'by', 'south', '', 'hall', 'and', 'north', '', 'hall', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'local', 'resident', 'alan', '', 'refurbished', 'the', 'lamp', 'and', 'it', 'was', 'restored', 'to', 'its', '', 'place', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'became', '', 'to', 'her', 'children', ',', 'edward', '', 'and', '', 'warner', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'is', 'also', 'dark', 'fuscous', ',', 'but', 'the', '', '', 'are', 'partially', 'white', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'some', 'iast', 'products', 'require', 'the', 'application', 'to', 'be', 'attacked', ',', 'while', 'others', 'can', 'be', 'used', 'during', 'normal', 'quality', 'assurance', 'testing', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '2', '0', '1', '2', 'to', '2', '0', '1', '3', ',', 'field', 'played', '', 'on', '``', 'the', '', 'list', \"''\", 'starring', 'jennifer', 'love', '', ',', 'on', 'lifetime', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', '', \"''\", 'was', 'first', 'formally', 'described', 'in', '2', '0', '0', '6', 'by', 'david', 'jones', 'from', 'a', '', 'collected', 'in', 'the', '', 'tops', 'national', 'park', 'and', 'the', 'description', 'was', 'published', 'in', '``', 'australian', 'orchid', 'research', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'takes', 'her', 'boyfriend', 'to', 'another', 'room', ',', 'where', 'she', '', 'him', 'on', 'the', 'bed', ',', 'takes', 'off', 'his', '', 'and', '', 'him', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'left', '', 'to', 'the', 'institute', 'of', 'electrical', 'engineers', ',', 'the', 'société', '', 'des', '', ',', 'the', 'royal', 'society', ',', 'the', '', 'des', 'sciences', 'de', '', ',', 'and', 'to', 'the', 'royal', 'institution', 'of', 'great', 'britain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'remained', 'in', 'this', 'post', 'until', '1', '9', '4', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'turned', 'its', 'attention', 'in', 'this', 'direction', 'shortly', 'after', 'the', 'turn', 'of', 'the', 'twentieth', 'century', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '6', '6', ',', 'united', 'nations', 'general', 'assembly', 'resolution', '2', '2', '/', '2', '9', 'affirmed', 'for', 'the', 'first', 'time', 'the', '', 'right', 'on', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'exchange', 'is', 'funded', 'through', 'individual', 'and', 'corporate', 'donations', 'as', 'well', 'as', 'organizational', 'grants', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'began', 'carrying', 'the', 'channel', 'on', 'january', '2', '1', ',', '2', '0', '0', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', \"'s\", 'gradual', '', 'into', 'the', 'public', \"'s\", 'attention', 'earned', 'him', 'the', 'title', '``', 'america', \"'s\", '', 'rising', 'comedian', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'by', 'the', 'beginning', 'of', 'the', '2', '0', 'th', 'century', ',', '', 'began', 'to', 'be', '', 'as', 'an', 'icon', 'of', '', 'nationalism', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '', ',', 'a', '', '', '(', ',', '``', '', \"''\", ',', '``', '', \"''\", ',', '``', '3', '', '', \"''\", ',', '``', '', '', \"''\", ')', 'is', 'an', 'enzyme', 'that', '', 'the', 'chemical', 'reaction', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'form', '', 'pairs', 'for', '', ',', 'and', 'nest', 'in', 'palm', '', 'in', 'the', 'tropics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'police', 'were', 'subjected', 'to', 'a', 'congressional', 'inquiry', 'due', 'to', 'security', 'failures', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'according', 'to', 'an', 'old', 'tradition', ',', 'the', 'church', 'stands', 'on', 'his', 'grave', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'parr', 'believed', 'that', 'johnson', \"'s\", '', 'had', '', 'his', 'pardon', ',', 'which', '', 'their', 'friendship', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'new', 'products', 'containing', '', 'after', 'this', 'deadline', 'will', 'require', 'a', 'fully', 'approved', 'application', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'often', ',', 'this', 'happens', 'through', '', 'sources', 'including', 'many', '', 'sources', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'active', 'galaxies', 'typically', 'have', 'strong', '', 'over', 'a', 'large', 'portion', 'of', 'the', 'electromagnetic', 'spectrum', 'making', 'them', 'prime', 'targets', 'for', '', 'observations', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'mount', 'graham', 'high', 'school', '(', '', ')', 'is', 'an', 'alternative', 'high', 'school', 'located', 'in', '', ',', 'arizona', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '4', '3', '2', 'all', 'the', 'island', 'of', '', 'officially', 'was', 'designated', 'as', 'one', 'township', 'and', 'received', 'city', 'rights', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'parker', 'founded', 'the', '', 'league', 'of', 'the', 'world', 'in', '1', '9', '1', '7', 'to', '``', '', 'the', 'negro', 'with', 'new', 'hopes', ';', 'to', 'make', 'him', 'openly', '', 'of', 'his', 'race', 'and', 'of', 'its', 'great', 'contributions', 'to', 'the', 'religious', 'development', 'and', '', 'of', '', '.', \"''\", '', '', '', '', '']\n", "['', '', '', 'is', 'a', 'version', 'for', 'mobile', 'platforms', 'in', 'which', 'the', '', 'mobile', 'game', 'was', 'merged', 'into', 'a', 'single', 'game', ',', 'with', 'enhanced', 'graphics', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '1', ',', '``', 'la', '', \"''\", 'rebranded', 'its', '', 'operations', 'from', '', 'to', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'opens', 'the', 'door', 'and', 'finds', 'the', '', '', 'in', 'the', 'wind', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'sent', 'to', 'belgium', 'with', 'the', 'british', '', 'force', 'in', 'august', '1', '9', '1', '4', ',', 'but', 'was', 'killed', 'in', 'the', '', 'actions', 'in', 'the', '', 'around', '', 'on', '1', 'september', '1', '9', '1', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'people', 'who', 'were', 'considered', 'or', 'auditioned', 'for', 'the', 'role', 'included', 'ben', '', ',', 'alan', '', ',', 'jim', '', ',', 'and', 'paul', 'f.', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'partners', 'have', 'presented', 'the', 'museum', 'with', 'a', 'variety', 'of', 'resources', ',', 'including', 'equipment', ',', 'material', 'sources', 'and', 'art', 'works', 'contributing', 'to', 'the', 'development', 'of', 'its', 'collection', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'opened', 'on', '3', 'october', '1', '9', '6', '7', 'in', '', ',', 'and', 'is', 'named', 'after', 'konstantin', '', ',', 'a', 'school', 'master', 'and', 'rocket', 'science', 'pioneer', 'who', 'lived', 'most', 'of', 'his', 'life', 'in', 'this', 'city', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '1', '3', 'june', '2', '0', '0', '8', 'spanish', 'police', 'arrested', '2', '0', 'members', 'of', 'the', 'organisation', \"'s\", 'spanish', 'branch', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'gives', 'shirakawa', '', 'candy', 'and', 'instructs', 'him', 'to', '', 'them', 'to', '', ',', 'both', 'knowing', 'that', 'kabamaru', 'is', 'certain', 'to', '', 'them', 'first', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'studying', 'at', 'goldsmith', \"'s\", 'college', 'and', '', 'school', 'of', 'art', 'he', 'spent', 'time', 'at', 'edinburgh', 'college', 'of', 'art', 'before', 'returning', 'to', 'london', 'to', 'build', 'his', 'reputation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'the', 'main', 'reserve', 'of', 'the', '', 'of', '', 'first', 'nation', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'born', 'and', 'brought', 'up', 'in', '', ',', 'karnataka', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'revealed', 'when', 'datner', '', 'two', '', 'on', 'the', 'faces', 'of', '', 'and', '', 'and', 'run', 'off', 'with', 'her', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'starting', 'in', '1', '9', '9', '2', ',', '', \"'s\", 'father', 'handed', 'over', 'responsibility', 'for', 'the', '', 'running', 'of', 'the', 'country', ',', 'including', 'the', 'development', 'of', 'qatar', \"'s\", 'oil', 'and', 'natural', 'gas', 'resources', ',', 'rendering', 'him', 'the', 'effective', '', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'event', 'was', 'held', 'for', 'the', 'first', 'time', 'in', 'july', '2', '0', '1', '0', ',', 'and', 'is', 'held', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'described', 'joy', 'as', '``', '', '', 'without', 'being', '', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'barracks', 'are', 'restored', 'and', 'holds', 'the', 'exhibition', 'space', 'displaying', 'the', 'history', 'of', 'the', 'castle', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'males', 'had', 'a', 'median', 'income', 'of', '$', '3', '4', ',', '6', '0', '6', 'versus', '$', '2', '7', ',', '0', '8', '6', 'for', 'females', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'works', 'include', 'many', 'of', 'the', 'library', \"'s\", 'oldest', 'documents', ',', 'a', 'collection', 'of', 'mexican', 'marriage', '', ',', '', 'and', 'criminal', 'records', 'for', '', 'purposes', 'and', 'many', 'of', 'the', 'holdings', 'in', 'or', 'related', 'to', 'mexico', \"'s\", 'indigenous', 'languages', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'accordance', 'with', 'the', 'treaty', 'of', '', '', ',', 'the', 'park', \"'s\", 'territory', 'extends', 'only', 'to', 'the', 'center', 'of', 'the', '', 'river', 'channel', 'as', 'the', 'river', '', 'in', '1', '8', '4', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'allowed', 'for', 'the', 'carbon', '', 'to', 'be', '', 'into', 'the', '', 'for', 'heating', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'abbott', 'recovered', 'by', 'november', '1', '8', '6', '2', 'and', 'returned', 'to', 'the', 'regiment', 'camped', 'at', '', ',', 'virginia', 'across', 'the', '', 'river', 'from', '', ',', 'virginia', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'first', 'school', 'building', 'was', 'replaced', 'in', '1', '9', '3', '7', ',', 'and', 'the', 'second', 'school', 'closed', 'in', '1', '9', '4', '4', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'trained', 'with', 'swimming', 'coach', 'george', '', ',', 'who', 'was', 'noted', 'for', 'training', 'future', 'olympic', '', 'during', 'the', '1', '9', '6', '0', 's', 'and', '1', '9', '7', '0', 's', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'once', 'the', 'three', '', 'layers', 'have', 'been', 'established', ',', 'cellular', 'differentiation', 'can', 'occur', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'parking', '', 'on', 'streets', 'is', 'a', 'traffic', 'crime', ',', 'resulting', 'in', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'another', 'small', 'field', 'contested', 'this', 'race', 'run', 'before', 'a', '', 'crown', 'at', 'ascot', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'let', 'the', 'system', 'of', 'particles', '``', '', \"''\", ',', '``', 'i', \"''\", '=', '1', '...', ',', \"''\", 'n', \"''\", 'of', 'masses', '``', 'mi', \"''\", 'be', 'located', 'at', 'the', '', 'r', \"''\", 'i', \"''\", 'with', '', 'v', \"''\", 'i', \"''\", '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'authors', 'explain', 'the', 'possibility', 'that', 'the', 'german', 'crimes', 'might', 'have', 'been', 'committed', 'by', 'paul', '', ',', 'the', '', 'serial', 'killer', 'the', 'authors', 'believe', 'killed', 'several', 'families', 'in', 'the', 'united', 'states', 'under', 'similar', 'circumstances', 'between', '1', '8', '9', '8', 'and', '1', '9', '1', '2', '.', '', '', '', '', '']\n", "['', 'to', 'divide', 'a', 'fraction', 'by', 'a', 'whole', 'number', ',', 'you', 'may', 'either', 'divide', 'the', '', 'by', 'the', 'number', ',', 'if', 'it', 'goes', '', 'into', 'the', '', ',', 'or', '', 'the', '', 'by', 'the', 'number', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'latter', 'is', 'one', 'of', 'two', 'which', 'provided', 'access', 'to', 'the', 'church', 'from', 'the', 'monastic', '', ';', 'the', '', 'of', 'the', 'second', ',', 'which', 'is', '', 'over', ',', 'can', 'be', 'seen', 'towards', 'the', 'eastern', 'end', 'of', 'the', 'nave', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'proposed', 'to', 'be', 'extended', '', '', 'till', '2', '0', '2', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'evans', 'made', 'a', '', 'effort', 'to', 'seal', 'the', 'streets', 'of', 'rockhampton', 'with', '', ',', 'securing', 'substantial', 'loans', 'to', 'make', 'it', 'happen', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'nevertheless', ',', 'the', 'ruling', 'family', 'would', 'divide', 'the', 'county', 'when', 'this', 'was', 'considered', 'convenient', 'politically', ',', 'for', 'example', 'in', '1', '4', '5', '6', 'and', 'in', '1', '6', '8', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'decision', 'was', 'the', 'catalyst', 'for', 'pixar', 'to', 'lay', 'off', 'its', 'hardware', 'engineers', 'and', 'sell', 'the', '', 'business', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '2', ',', 'its', '', 'for', 'end', 'of', 'the', '2', '0', '1', '3', 'was', 'announced', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'introduced', 'a', 'street', 'grid', ',', 'water', 'sources', 'and', 'a', '', 'convent', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hits', 'and', 'exit', 'wounds', 'is', 'a', '', 'album', 'by', 'alabama', '3', ',', 'featuring', 'several', 'different', 'versions', 'of', 'well-known', 'tracks', 'taken', 'from', 'all', 'of', 'their', 'albums', ',', 'and', 'two', 'previously', '', 'tracks', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'earl', '', \"'s\", 'ride', 'with', 'the', '', 'would', 'result', 'in', 'his', '', 'accident', 'on', 'lap', '1', '8', '5', ';', 'where', 'he', 'would', 'end', 'up', 'with', 'a', '3', '0', '', 'finish', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'milan', 'has', 'earned', 'the', 'right', 'to', 'place', 'a', 'star', 'on', 'its', 'jersey', 'in', 'recognition', 'of', 'the', 'fact', 'that', 'it', 'has', 'won', 'at', 'least', 'ten', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'ended', 'up', 'winning', 'his', 'first', 'term', 'in', 'the', 'legislature', 'in', 'a', 'landslide', ',', 'receiving', '6', '4', '%', 'of', 'the', 'vote', 'to', 'carr', \"'s\", '3', '3', '%', 'and', '', \"'s\", '3', '%', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'the', 'front', 'runner', \"''\", 'had', 'its', 'world', 'premiere', 'at', 'the', '', 'film', 'festival', 'on', 'august', '3', '1', ',', '2', '0', '1', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'during', 'one', 'of', 'these', 'performances', 'that', 'the', 'song', 'caught', 'the', 'attention', 'of', 'president', '', 'b.', 'johnson', 'who', 'had', 'one', 'of', 'his', 'senior', 'military', '', 'write', 'a', 'letter', 'to', 'her', '', 'her', 'for', 'the', 'contribution', 'of', 'the', 'song', 'and', 'of', 'her', 'performance', '.', '', '', '', '', '', '']\n", "['', 'the', 'areas', 'affected', 'were', 'home', 'to', '4', '.', '5', 'million', 'people', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'traditional', 'residents', 'are', 'of', 'the', '', 'tribe', ';', 'however', ',', 'there', 'is', 'also', 'a', 'large', '', 'population', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '8', ',', 'he', 'received', 'the', 'distinguished', 'career', 'in', 'science', 'award', 'from', 'the', 'national', 'academy', 'of', 'sciences', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'was', 'born', 'to', '', '', 'and', '', 'fernandez', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'sheltering', 'sky', \"''\", 'was', 'cristiani', \"'s\", 'final', 'film', 'with', 'bertolucci', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'high', 'representative', 'for', 'bosnia', 'and', 'herzegovina', '', '', 'asked', '', '', 'authorities', 'not', 'to', 'allow', 'the', 'construction', 'of', 'the', 'cross', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', 'may', '7', ',', '', '', 'in', 'the', 'charleston', 'harbor', 'drove', 'a', 'sailboat', 'aground', ',', 'forcing', 'the', 'coast', 'guard', 'to', 'rescue', 'the', '', 'vessel', \"'s\", 'two', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'her', 'parents', 'were', '', '', ',', 'secretary', 'general', 'of', 'the', '', ',', 'and', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'tablets', 'from', 'the', '', 'collection', ',', 'numbers', '', '2', '5', '1', '0', 'and', '2', '5', '1', '8', 'were', 'translated', 'by', 'edward', '', 'in', '1', '9', '2', '4', 'in', '``', '', 'religious', 'texts', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'all', 'of', 'these', 'sources', 'combined', 'only', 'supplied', '1', '.', '3', '%', 'of', 'global', 'energy', 'in', '2', '0', '1', '3', 'as', 'of', 'coal', 'was', 'burned', 'annually', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '3', '0', 'august', 'his', 'creditors', 'went', 'to', 'court', ';', 'de', 'neufville', 'was', 'not', 'granted', 'an', 'extension', 'till', '2', '5', 'october', '1', '7', '6', '3', '?', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'then', '', 'gally', ',', 'who', '', 'off', 'his', 'right', 'arm', 'with', 'a', 'kick', 'before', '', 'him', 'into', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'from', '2', '0', '1', '3', 'to', '2', '0', '1', '5', 'he', 'toured', 'extensively', 'with', 'the', 'royal', 'national', 'theatre', \"'s\", '``', 'war', 'horse', \"''\", ',', 'which', 'played', 'to', 'audiences', 'at', '', 'throughout', 'the', 'united', 'kingdom', ',', 'dublin', 'and', 'south', 'africa', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'when', 'mlb', '', 'expanded', 'on', 'september', '1', ',', '1', '9', '6', '2', ',', 'smith', 'was', 'added', 'to', 'the', 'dodgers', \"'\", 'pitching', 'staff', 'for', 'the', 'stretch', 'run', 'as', 'they', 'fought', '', 'for', 'the', 'national', 'league', '', 'with', 'the', 'san', 'francisco', 'giants', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'basic', 'idea', 'is', 'that', 'a', '', ',', 'which', 'is', 'normally', '', ',', 'can', 'be', 'made', 'to', 'conduct', 'through', 'a', '', 'or', '', 'path', 'formed', 'after', 'application', 'of', 'a', 'sufficiently', 'high', 'voltage', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'site', 'now', 'known', 'as', '', 'was', 'eventually', 'considered', 'to', 'be', 'in', 'a', 'more', 'suitable', 'location', 'for', 'access', 'down', 'the', 'range', 'and', 'in', '1', '8', '5', '2', ',', 'a', 'town', 'survey', 'was', 'secured', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'pass', ',', 'lying', 'on', 'the', '', 'county', 'border', ',', 'is', 'within', 'the', 'mammoth', 'ranger', 'district', 'of', 'the', '', 'national', 'forest', 'and', 'located', 'near', '', '', 'national', 'monument', ',', 'mammoth', 'lakes', ',', 'and', 'mammoth', 'mountain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'have', 'been', 'a', 'water', '', 'area', 'since', 'the', 'victorian', 'era', 'when', 'several', 'reservoirs', 'were', 'built', ',', 'along', 'with', 'their', 'associated', '', 'in', 'the', '', 'valley', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'jung', \"'s\", 'definition', 'of', 'attitude', 'is', 'a', '``', '', 'of', 'the', '', 'to', 'act', 'or', '', 'in', 'a', 'certain', 'way', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'during', 'that', 'tenure', 'he', 'also', 'acted', 'as', 'managing', 'editor', 'of', 'twentieth', 'century', '', ',', 'a', 'short-lived', 'periodical', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'afterwards', ',', 'it', 'passes', 'through', 'the', 'north', 'side', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'signed', 'off', 'the', 'eagles', \"'\", 'practice', 'squad', 'by', 'the', 'st.', 'louis', '', 'on', 'september', '2', '2', ',', '2', '0', '0', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'largely', '', 'as', 'a', 'composer', ',', 'and', 'he', 'supported', 'himself', 'in', 'vienna', 'playing', 'the', 'violin', 'in', 'theatre', '', ',', 'at', 'the', '', 'and', 'the', 'privately', 'supported', '', 'institution', ',', 'the', 'theater', 'in', 'der', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'graduated', 'with', 'a', 'bachelor', \"'s\", 'degree', 'in', '', 'in', '1', '9', '8', '2', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'robert', 'also', '', 'in', 'on', 'his', 'elderly', 'father', 'to', '', 'him', 'for', '', 'robert', \"'s\", 'mother', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'array', 'is', 'capable', 'of', 'providing', '1', '.', '4', 'kw', 'at', 'peak', 'sunlight', ',', 'which', 'can', 'drive', 'the', 'motor', 'directly', 'or', 'feed', 'excess', 'power', 'into', 'the', '', 'iron', '', 'battery', 'pack', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'was', 'a', 'member', 'of', 'the', 'wisconsin', 'state', 'assembly', 'and', 'the', 'wisconsin', 'state', 'senate', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '7', '7', ',', 'in', 'light', 'of', 'the', 'different', 'policies', 'and', '', 'standards', 'of', 'economic', 'development', 'in', 'its', 'participating', 'countries', ',', 'the', 'east', 'african', 'union', 'broke', 'up', ',', 'and', 'all', 'of', 'its', 'joint', 'structures', 'were', 'also', 'dissolved', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'their', 'last', 'studio', 'album', 'for', 'warner', '', 'records', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'soluble', 'in', '', ',', '', 'water', ',', 'hot', 'alcohol', ',', 'hot', '', 'and', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'nhl', \"'s\", 'washington', 'capitals', 'and', 'the', 'nba', \"'s\", 'washington', 'wizards', '(', 'formerly', 'the', 'baltimore', 'bullets', ',', 'then', 'washington', 'bullets', ')', 'used', 'to', 'play', 'in', 'maryland', 'before', 'moving', 'in', '1', '9', '9', '7', 'to', 'a', 'newly', 'constructed', '', 'center', 'arena', 'in', 'downtown', 'washington', 'in', 'the', 'district', 'of', 'columbia', '.', '']\n", "['', 'returning', 'to', 'sea', 'duty', ',', 'he', 'commanded', 'the', 'uss', '', 'grove', ',', 'the', 'south', 'atlantic', 'recovery', 'vessel', 'for', 'the', 'apollo', '1', '3', 'lunar', 'mission', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'they', 'are', 'the', 'bridge', 'that', 'connects', 'past', 'to', 'present', ',', 'matter', 'to', 'spirit', ',', 'tradition', 'to', 'progress', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'hong', 'kong', 'has', 'had', 'a', 'separate', 'delegation', 'since', 'the', '9', 'th', 'npc', 'in', '1', '9', '9', '8', ',', 'and', 'macau', 'since', 'the', '1', '0', 'th', 'npc', 'in', '2', '0', '0', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'the', 'attempt', 'to', 'please', 'flora', ',', 'with', 'whom', 'he', 'has', 'long', 'been', '', ',', 'nick', 'copies', 'the', 'data', 'onto', 'a', 'service', 'droid', 'and', '', 'it', 'to', 'flora', \"'s\", 'house', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '9', '4', ',', 'he', 'became', 'the', 'head', 'coach', 'of', 'the', '', '', 'in', 'the', 'continental', 'indoor', 'soccer', 'league', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'canadians', 'over', 'americans', 'if', 'one', 'is', 'canadian', ',', 'and', 'vice', '', 'if', 'one', 'is', 'american', ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'many', '', 'in', 'england', 'and', 'wales', 'are', 'maintained', 'as', 'part', 'of', 'the', 'water', 'resource', 'management', 'operations', 'of', 'internal', 'drainage', 'boards', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'independence', 'high', 'school', 'had', 'their', 'first', 'class', 'in', '2', '0', '0', '8', ',', 'with', 'the', 'first', 'graduating', 'class', 'in', '2', '0', '1', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'occupies', 'a', 'position', '', 'the', 'village', 'in', 'a', 'curve', 'of', 'the', 'river', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'airport', 'project', 'was', 'implemented', 'by', 'the', 'philippine', 'government', 'through', 'the', 'department', 'of', 'transportation', 'and', 'communications', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'works', 'were', 'published', 'by', '', 'and', '', 'in', 'london', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'farruko', 'released', 'his', 'first', 'song', '``', '', '', 'del', '', \"''\", 'in', '2', '0', '0', '9', 'through', 'the', 'internet', 'and', 'gained', 'fame', 'in', 'puerto', 'rico', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', '', \"''\", 'set', 'and', 'held', 'the', 'course', 'record', 'between', '1', '9', '7', '7', 'and', '1', '9', '9', '7', ',', 'making', 'the', '1', '9', '7', '7', 'crossing', 'in', 'only', '8', 'days', ',', '1', '1', 'hours', 'and', '1', 'minute', '.', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '(', '1', '6', '8', '8', ')', 'wrote', ':', '``', '...', 'i', 'have', 'several', 'times', 'put', '[', '', 'hair', ']', 'in', 'the', 'fire', 'and', 'made', 'it', 'red', 'hot', 'and', 'after', 'taken', 'it', 'out', ',', 'which', 'being', 'cold', ',', 'yet', 'remained', 'perfect', '', '.', \"''\", '', '', '', '', '', '']\n", "['', 'another', 'method', 'used', 'is', 'referred', 'to', 'as', '``', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'texarkana', 'open', 'was', 'a', 'golf', 'tournament', 'on', 'the', '', 'tour', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'barry', 'then', 'went', 'on', 'an', 'impressive', 'run', 'in', 'doubles', ',', 'winning', 'three', 'consecutive', 'tournaments', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '1', ',', '2', 'and', '3', 'positions', 'on', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '2', '0', '1', '0', ',', 'she', '', 'with', '', 'anthony', 'b.', '', '``', 'liberation', '', 'in', 'the', 'united', 'states', ':', 'an', 'introduction', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'village', 'has', 'schedule', '', '(', '', ')', '', '5', '0', '.', '9', '5', '%', 'of', 'total', 'population', 'of', 'the', 'village', 'and', 'it', 'does', \"n't\", 'have', 'any', 'schedule', 'tribe', '(', 'st', ')', 'population', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'there', 'is', 'another', 'pentagon', '', 'the', 'top', 'pentagon', 'on', 'the', 'center', 'of', 'the', 'canvas', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'total', 'of', '9', ',', '8', '1', '0', 'were', 'under', 'the', 'age', 'of', 'six', ',', '', '4', ',', '8', '8', '9', 'males', 'and', '4', ',', '9', '2', '1', 'females', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'george', 'cole', 'replaced', '', '', 'in', 'the', 'leading', 'role', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'does', 'have', 'some', 'knowledge', 'of', 'cooking', ',', 'though', 'she', 'admits', 'to', 'only', 'using', 'her', '', 'to', 'warm', 'her', '', 'in', 'the', 'morning', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'this', 'was', 'followed', 'by', 'numerous', 'angry', 'calls', 'from', 'both', 'concerned', '', 'and', 'al', \"'s\", '', ',', 'during', 'which', '', 'defended', 'his', 'line', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'average', 'household', 'size', 'was', '2', '.', '5', '8', 'and', 'the', 'average', 'family', 'size', 'was', '2', '.', '8', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'though', '', 'had', 'formally', 'requested', 'the', 'security', 'council', 'to', 'set', 'up', 'an', 'international', '', ',', 'the', '', 'government', 'opposed', 'resolution', '9', '5', '5', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', '', 'argues', 'that', 'al-maqrizi', 'was', 'right', 'about', 'haqq', \"'s\", 'year', 'of', 'death', ',', 'but', 'confused', 'emperor', '', '', 'with', 'his', 'more', 'famous', 'successor', 'dawit', 'i', ';', 'richard', '', ',', 'on', 'the', 'other', 'hand', ',', 'accepts', 'the', '', \"'s\", 'date', 'and', '', \"'s\", 'identification', 'of', 'dawit', 'i', '.', '', '']\n", "['', 'by', '', 'of', 'his', 'marriage', 'into', 'the', '', 'dynasty', '(', 'of', 'which', 'more', 'presently', ')', ',', '', 'had', 'acquired', 'a', 'significant', 'german', 'dimension', 'to', 'his', 'family', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'at', 'the', 'age', 'of', '1', '8', ',', '', 'moved', 'to', 'rio', 'de', 'janeiro', 'and', 'two', 'years', 'later', '(', 'in', '1', '9', '7', '0', ')', 'founded', 'the', 'black', 'professional', 'theater', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'core', '', 'behind', '', 'is', 'to', 'give', 'users', 'the', 'ability', 'to', 'spread', 'payments', 'over', 'several', 'years', ',', 'while', 'offering', '``', 'free', \"''\", '', 'to', '', 'versions', 'during', 'that', 'time', 'period', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'other', 'subjects', 'with', 'hay', 'fever', 'reported', 'more', 'significant', 'effects', ',', 'including', '', '', ',', '', '', ',', 'and', 'difficulty', 'sleeping', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'the', 'next', 'twenty', 'years', 'alan', 'remained', 'a', 'central', 'figure', 'in', 'country', 'gazette', ',', 'playing', 'with', 'notable', 'musicians', 'such', 'as', 'roland', 'white', ',', '', 'white', ',', 'joe', 'carr', 'and', 'gene', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'marie', 'johnston', 'died', 'may', '2', '0', ',', '2', '0', '0', '5', 'at', 'the', 'age', 'of', '8', '7', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'reached', 'number', '9', 'on', 'the', 'japanese', '', 'charts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', '', 'had', 'an', '', 'starting', 'lineup', ',', 'with', '', '', 'sitting', 'on', 'the', '', 'being', 'replaced', 'by', 'la', '', ',', 'which', 'caused', '', '', \"'s\", 'offensive', 'game', 'to', 'start', '', 'as', '', 'kept', 'tight', 'defense', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'on', '2', '9', 'march', '1', '9', '9', '9', ',', 'at', 'the', 'outbreak', 'of', 'the', 'nato', 'intervention', 'in', 'the', '', 'war', ',', '', 'was', 'reported', 'to', 'have', 'been', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'tower', ',', 'a', 'concrete', 'structure', 'square', 'and', 'tall', ',', 'was', 'built', 'by', 'spanish', '', 'brought', 'in', 'by', 'the', 'japanese', 'south', 'pacific', '', 'administration', ',', 'and', 'stood', 'next', 'to', 'an', '1', '8', '6', '0', '', 'church', '.', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'like', '``', 'tower', 'of', 'evil', \"''\", ',', 'this', 'film', 'also', 'featured', '', 'and', 'a', 'great', 'deal', 'of', 'violence', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'these', 'tanks', 'faced', 'the', 'more', 'than', '1', '0', '0', '0', 'soviet', 'tanks', 'in', 'the', '', 'invasion', 'in', 'august', '1', '9', '4', '1', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'its', 'first', 'incarnation', 'was', 'as', 'one', 'of', 'original', 'sixteen', '', 'created', 'in', '1', '8', '5', '9', ',', 'when', 'queensland', 'became', 'an', 'independent', 'colony', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'typical', 'comment', 'was', 'that', 'they', 'were', 'of', '``', 'most', '', 'construction', \"''\", 'and', '``', 'usually', 'wet', 'and', 'very', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'channel', 'would', '', 'between', '4', 'pm', 'and', '1', '2', 'am', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'near', 'the', 'centre', 'of', 'vienna', 'and', 'was', 'established', 'as', 'a', 'district', 'in', '1', '8', '5', '0', ',', 'but', 'its', 'borders', 'were', 'changed', 'later', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'per', 'capita', 'income', 'for', 'the', 'city', 'was', '$', '1', '2', ',', '8', '9', '9', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'the', '2', '0', '1', '3', 'holiday', 'season', ',', 'epic', 'has', 'adopted', 'a', 'family', 'from', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'came', 'from', '', '', 'and', 'succeeded', 'to', 'the', 'throne', 'of', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', ',', 'who', 'has', 'been', 'ordered', 'to', 'put', 'kabamaru', 'out', 'of', 'commission', ',', 'is', '', 'to', 'harm', 'him', 'directly', ',', 'so', 'he', '', '', 'shirakawa', 'and', '', 'his', '', 'for', 'kabamaru', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'under', 'common', 'law', 'practised', 'in', 'the', 'uk', ',', 'evidence', 'is', 'not', 'necessarily', 'automatically', '', 'if', 'obtained', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'farther', 'south', 'lie', 'two', 'other', 'lakes', ',', 'laguna', '', 'and', 'laguna', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'as', 'of', '2', '0', '1', '7', ',', '``', 'home', 'and', 'away', \"''\", 'is', 'the', 'most', 'successful', 'program', 'in', 'logies', 'history', ',', 'having', 'won', '4', '6', 'awards', 'since', 'it', 'premiered', 'in', '1', '9', '8', '8', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '``', 'the', 'prayer', \"''\", ',', 'his', 'duet', 'with', '', '', 'for', 'the', 'animated', 'film', ',', 'the', 'quest', 'for', '', ',', 'won', 'the', 'golden', 'globe', 'for', 'best', 'original', 'song', 'and', 'was', 'nominated', 'for', 'an', 'academy', 'award', 'in', 'the', 'same', 'category', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'formula_', '1', '0', 'form', 'factor', 'formula_', '1', '1', 'is', 'the', 'electron', \"'s\", 'charge', ',', 'formula_', '1', '2', 'is', 'its', '', 'magnetic', '', 'moment', ',', 'and', 'formula_', '1', '3', 'provides', 'the', 'formal', '', 'of', 'the', 'electron', \"'s\", 'electric', '', 'moment', '.', '', '', '', '', '', '', '', '', '']\n", "['', 'born', 'in', 'buffalo', ',', 'new', 'york', ',', '', 'owned', 'a', 'real', 'estate', 'business', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'while', 'at', '', ',', '', 'is', '', 'to', 'appear', 'before', 'the', 'senate', 'hearing', ',', 'but', 'he', 'does', \"n't\", 'want', 'to', 'go', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'after', 'nine', 'months', 'in', 'office', ',', '', 'resigned', 'and', 'later', 'headed', 'the', 'department', 'of', 'agriculture', 'in', 'lithuania', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'specific', '', '(', '``', '', \"''\", ')', 'is', 'a', 'latin', 'word', 'meaning', '``', 'ball', \"''\", 'referring', 'to', 'the', 'shape', 'of', 'the', '``', 'head', \"''\", 'of', 'the', '', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'state', 'of', 'iowa', 'moved', 'the', 'post', 'office', 'in', '1', '8', '8', '0', ',', 'to', 'its', 'present-day', 'location', 'in', 'the', 'northeast', 'corner', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', 'example', ',', 'there', 'exist', 'simple', 'algebraic', 'expressions', 'for', 'angle', '', 'in', 'terms', 'of', 'the', 'sides', 'of', 'the', 'triangle', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'subsequently', ',', 'many', 'allegations', 'of', '', 'of', 'boys', 'at', 'the', 'school', 'emerged', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'for', '``', '', \"''\", ',', '``', '', \"''\", 'bees', 'may', 'serve', 'as', 'transport', ',', '', 'the', '', 'to', 'different', 'nests', 'of', '``', 'tetrapedia', '.', \"''\", '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'simon', 'left', 'the', 'chorus', 'to', 'join', 'stable', '', 'the', 'sinister', 'cleaners', 'in', '1', '9', '8', '5', ',', 'replacing', 'the', '', 'machine', 'that', 'had', 'featured', 'on', 'their', 'earlier', 'releases', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'can', 'also', 'be', 'seen', 'in', 'full', 'flow', 'providing', 'the', '', 'for', 'the', 'silent', 'film', 'fragment', 'in', '', '', \"'s\", '', 'to', 'this', 'golden', 'age', ',', 'to', 'sleep', 'so', 'as', 'to', 'dream', '(', '``', '', '', '', \"''\", ',', '1', '9', '8', '6', ')', '.', '', '', '', '', '']\n", "['', '', 'ii', 'sold', 'on', 'april', '2', '9', ',', '2', '0', '0', '7', 'at', 'sothebys', 'singapore', 'and', 'eight', 'horses', 'sold', 'on', '', '2', '2', ',', '2', '0', '0', '6', 'at', 'sothebys', 'singapore', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'are', 'carried', 'through', 'when', 'the', '', 'exits', 'a', 'region', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'warblers', 'are', 'distinguished', 'by', 'their', 'lack', 'of', 'wing', 'bars', ',', '', 'on', 'the', 'underparts', ',', 'strong', 'face', 'marking', 'or', 'bright', '', ',', '', 'a', 'fall', 'tennessee', 'warbler', 'and', 'a', '', 'blue', 'warbler', ',', 'both', 'of', 'which', 'are', 'also', 'members', 'of', 'the', 'new', 'world', 'warbler', 'family', '.', '', '', '']\n", "['', 'it', 'was', 'decided', 'that', 'technical', 'and', 'vocational', 'education', 'in', 'rural', 'areas', 'should', 'accommodate', 'local', 'conditions', 'and', 'be', 'conducted', 'on', 'a', '', 'basis', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'was', 'a', 'member', 'of', 'the', 'argentine', 'national', 'team', 'that', 'took', 'part', 'at', 'the', '2', '0', '1', '5', '', '', ',', 'winning', 'a', 'runners-up', 'medal', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'was', 'the', 'first', 'czech', 'bible', 'in', 'which', 'the', '', 'were', 'numbered', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'left', 'office', 'in', '1', '9', '4', '1', 'and', 'accepted', 'the', 'position', 'of', 'chancellor', 'of', 'the', 'university', 'of', 'british', 'columbia', 'in', '1', '9', '4', '4', ',', 'a', 'position', 'he', 'held', 'for', 'seven', 'years', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'because', 'of', '', 'needs', ',', 'the', 'water', 'level', 'at', 'the', 'lake', 'sometimes', 'is', 'low', 'enough', 'to', 'kill', 'its', '', 'fish', ',', 'but', 'during', 'wet', 'years', ',', 'the', 'water', 'can', '', '', 'dam', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '2', '3', 'april', 'is', 'also', 'one', 'of', 'only', 'three', 'days', 'a', 'year', 'when', 'the', '', 'de', 'la', '', ',', 'barcelona', \"'s\", 'principal', 'government', 'building', ',', 'is', 'open', 'to', 'the', 'public', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '1', '2', '6', 'in', 'the', 'united', 'states', 'and', 'no', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'did', '``', 'the', 'youngest', '', \"''\", '(', '1', '9', '4', '3', ')', 'at', 'mgm', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'the', '', 'of', 'the', 'metropolitan', 'council', 'on', 'jewish', 'poverty', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'pollack', 'was', 'born', 'in', 'odessa', ',', 'ussr', '(', 'now', 'part', 'of', 'ukraine', ')', 'to', 'a', 'secular', 'jewish', 'family', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', 'addition', ',', 'the', 'group', 'announced', 'its', 'plans', 'to', 'develop', 'the', 'company', 'into', 'a', 'chain', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'engine', 'was', 'installed', '', 'in', 'a', '', '', 'to', 'the', 'lancaster', \"'s\", 'bomb', 'bay', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'random', 'encounter', 'is', 'an', 'independent', 'american', 'video', 'game', 'music', '', 'band', 'from', 'orlando', ',', 'florida', 'that', 'features', 'an', '', 'as', 'the', 'lead', 'instrument', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'ghost', 'of', 'mae', '', '(', ')', 'is', 'a', '2', '0', '0', '5', 'thai', 'horror', 'film', 'thriller', 'about', 'a', 'protecting', 'ghost', 'directed', 'and', 'written', 'by', 'british', 'director', 'mark', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'he', 'also', 'studied', 'jazz', 'with', 'kenny', '', 'and', 'gary', '', ',', 'and', 'the', '', 'with', '', 'rao', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'is', 'the', 'debut', 'studio', 'album', 'by', 'british', 'progressive', 'rock', 'band', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'philosophy', 'of', '', 'was', 'to', 'address', 'the', '``', '', '', '(', 'black', 'question', ')', \"''\", 'on', 'brazilian', 'stages', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'a', 'man', 'is', 'serving', 'his', 'prison', 'sentence', 'for', 'armed', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'most', 'known', 'of', 'these', 'are', 'the', 'k', 'series', ':', '', 'k', '1', ',', 'k', '1', 'm', ',', 'k', '1', '', ',', 'k', '3', '(', '', '2', '0', '4', '4', '', 'filters', ')', ',', 'k', '4', 'and', 'k', '5', '.', '', '', '', '', '', '', '', '', '', '']\n", "['', 'his', 'son', ',', 'heir', 'and', 'second', '``', '', 'de', '', \"''\", ',', '', '', '', ',', 'held', 'several', 'positions', 'in', 'government', 'and', 'was', 'governor', 'of', 'the', 'provinces', 'of', '', 'and', '', 'among', 'other', 'official', 'posts', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'an', 'interim', 'director', ',', '', 'smith', ',', 'led', 'the', 'orchestra', 'for', 'one', 'season', 'following', '', \"'s\", 'departure', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'the', 'state', 'dog', 'of', 'new', 'hampshire', 'and', 'was', 'recognized', 'by', 'the', 'american', '', 'club', 'in', 'the', 'working', 'group', 'in', '2', '0', '1', '3', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'australian', 'defence', 'force', 'investigative', 'service', '(', '', ')', 'is', 'the', 'agency', 'responsible', 'for', 'complex', 'and', 'major', 'investigations', 'involving', 'the', 'australian', 'defence', 'force', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'in', '1', '9', '8', '6', ',', 'at', 'the', 'invitation', 'of', '', '', ',', '', 'traveled', 'to', 'cuba', ',', 'where', 'he', 'recorded', 'the', 'lp', '``', '', '', \"''\", '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'is', 'clear', ',', 'however', ',', 'that', 'the', '', 'donkeys', 'still', 'retain', 'human', 'minds', 'and', 'intelligence', ',', 'as', 'are', '', 'able', 'to', 'understand', 'the', 'coachman', \"'s\", 'commands', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'the', 'a.', 'murray', 'mackay', 'bridge', ',', 'known', 'locally', 'as', 'the', 'mackay', 'bridge', 'or', 'the', '``', 'new', 'bridge', \"''\", ',', 'was', 'opened', 'on', 'july', '1', '0', ',', '1', '9', '7', '0', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'it', 'has', 'always', 'been', 'the', 'intention', 'of', 'every', 'official', 'set', 'of', 'laws', 'of', 'contract', 'bridge', 'to', '', 'contracts', 'for', 'more', 'than', 'seven', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'she', 'is', 'known', 'to', 'frequently', 'accompany', 'herself', 'on', 'the', '', ',', '', 'or', '', 'organ', '(', 'for', 'example', 'in', 'her', 'cd', '', 'de', 'santa', 'maria', \"'\", ')', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', 'however', ',', 'the', 'passive', 'future', '', '(', ')', 'is', 'made', 'using', 'the', '', 'of', 'the', '', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n", "['', '', 'are', 'held', 'for', 'any', '', 'that', 'arise', 'between', 'the', 'yearly', 'elections', 'on', 'the', 'first', '', 'of', 'may', '.', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '']\n" ] } ], "source": [ "print('\\033[1m' + 'The processed train set contains the following sentences:' + '\\033[0m')\n", "for sentence in train_sentences_x_indexes:\n", " print(sentence)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "1.4) Finally, load the test set text file as single string and keep it in a variable." ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [], "source": [ "def load_into_string(filename):\n", " \"\"\"Loads the file with the given filename into a string.\n", " \n", " Args:\n", " filename (str): The filename to load.\n", " \n", " Returns:\n", " str: The string loaded from the file.\n", " \"\"\"\n", " # Opening file and reading lines. Stripping each line of whitespace and newlines.\n", " with open(filename, encoding='utf-8') as f:\n", " text = f.read()\n", "\n", " # Removing whitespace and newlines from each sentence\n", " text = text.strip()\n", "\n", " # Returning the string\n", " return text" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [], "source": [ "# Loading the test set into a string\n", "test_set = load_into_string('test.txt')" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[1mLength of test text:\u001b[0m 218470\n", "\u001b[1mThe test set:\u001b[0m this coincidence enabled freemasons to wear the forget-me-not badge as a secret sign of membership .\n", "3 4 . 6 % of all households were made up of individuals , and 1 5 . 7 % had someone living alone who was 6 5 years of age or older .\n", "in 2 0 1 1 , she wrote to the federal health minister outlining the seriousness of the problem , which she said `` is a form of\n", "in 2 0 0 8 , he sang `` l.u.v . ''\n", "at the time , he was already committed to another nbc midseason replacement comedy , `` come to papa '' , but the series was quickly canceled , allowing his full commitment to `` the office '' .\n", "at the 2 0 0 6 census , its population was 8 1 , in 1 9 families .\n", "other musicians in the band during the later period were bassists percy jones ( of brand x ) and steve cook , saxophonists alan wakeman and ray warleigh , and violinist ric sanders .\n", "corbett said he had `` a mastery of the english language '' .\n", "ivan is out on nightly patrol of the boundary when an assassin droid tries to kill him with a sniper rifle .\n", "the memorial was won by tomasz gollob who beat roman jankowski , leigh adams and ryan sullivan in the final .\n", "however , no restoration was started until 2 0 1 3 , when the museum started work on a new exhibit about great lakes fisheries heritage .\n", "the pair later had one son and two daughters .\n", "carter confesses that the surrender of the germans was a lucky accident and that his role in it was more foolish than heroic .\n", "like his brother , janusz iii quickly became known for his love of drink and women .\n", "the division of dental public health focused on prevention and treatment of dental diseases .\n", "he was the author of many works in the fields of ornithology , mammalogy , anthropology , etc .\n", "the detainees also have access to satellite tv stations and press from their homeland .\n", "today , usenet has diminished in importance with respect to internet forums , blogs , mailing lists and social media .\n", "rodger corser ( born 2 8 february 1 9 7 3 ) is an australian actor .\n", "at first , only one unit was transferred to flåm .\n", "the word is a loan of a french term for `` butchery '' or `` carnage '' .\n", "about fifteen to twenty percent of the patients hospitalized for the flu were placed in the intensive care unit , a level similar to that for seasonal flu .\n", "on september 2 4 , 2 0 0 6 , tomoaki honma and jun kasai won apache pro-wrestling army 's wew world tag team championship from takashi sasaki and badboy hido .\n", "he organized the first international workshop on operator theory and its applications which has spawned revolutionary cross-discipline research for over forty years .\n", "union station bus terminal is also located within the south core and provides transit connections from the area to the rest of the greater toronto area .\n", "jesse glover was introduced to chinese kung fu by james lee during a trip before meeting bruce lee in 1 9 5 9 .\n", "the people of the parts of southern italy and sicily ruled by the byzantines during the high middle ages often continued to speak greek until about the 1 6 th century and had greek orthodox religious habits .\n", "erica abeel of `` the hollywood reporter '' said , `` in its tough-mindedness `` flame '' [ `` & amp ; citron '' ] owes much to jean-pierre melville 's `` army of shadows '' . ''\n", "spinoza lived an outwardly simple life as an optical lens grinder , collaborating on microscope and telescope lens designs with constantijn and christiaan huygens .\n", "after the first world war , it was acquired by the ursuline order and then by the school sisters of st. francis of christ the king .\n", "during the 1 9 5 0 s , extensions were carried out to the pipe and tile factories .\n", "once a sculpture was completed it was critiqued and put back on to the scrap pile .\n", "milan is one of the most successful clubs in italy , having won a total of 3 0 domestic honours , in addition to their continental successes .\n", "his remix of x ambassadors ' `` unsteady '' has received over 1 3 million streams on spotify , and his debut original `` talk about me '' charted on dance/mix show airplay at 3 6 th and received over 2 million streams .\n", "snyder became fleming 's first manager , encouraged her to start stripping , and gave her the stage name blaze starr .\n", "he afterward became colonel of the 3 rd virginia regiment .\n", "he also represented the in the south african domestic currie cup and vodacom cup competitions since 2 0 1 5 .\n", "fox was subsequently elected ssp national convener in sheridan 's place , defeating alan mccombes by 2 5 2 votes to 1 5 4 , but the damage done to the party by the glasgow msp was substantial .\n", "crauchet appeared in the first film by éric rohmer , `` the sign of leo '' , in 1 9 5 9 , and then in 1 9 6 2 in `` the war of the buttons '' of yves robert .\n", "on 2 5 august de neufville protested against a recovery plan , from which he was excluded .\n", "both men agreed that everton should operate as a limited company ; however , they had different ideas about share ownership .\n", "stuck in neutral received recognition as an honor book for the michael l. printz award in 2 0 0 1 .\n", "as of the census of 2 0 0 0 , there were 2 0 2 people , 6 3 households , and 4 8 families residing in the cdp .\n", "he mentioned the similarities between human expressions and those of other primates , as well as an overall universality of certain expressions to back up darwin 's ideas .\n", "in 2 0 1 7 , perry again hired her , casting her as a series regular in the short-lived tlc drama series `` too close to home '' .\n", "william clerked for a boston merchant who went bankrupt , and having co-signed bonds , he was briefly imprisoned for his employer 's debt .\n", "others have asserted that the columbine killings could have been prevented , or at least reduced if teachers or guards were armed with guns .\n", "a few bromites have been isolated , but no iodites have .\n", "he is best known for his roles in the popular serials `` the giver '' , `` the gamechangers '' and `` kalushi : the story of solomon mahlangu '' .\n", "i- 2 8 0 crosses a major norfolk southern railroad line also used by the `` capitol limited '' and `` lake shore limited '' passenger train routes operated by amtrak .\n", "degenerate gases strongly resist further compression because the electrons can not move to already filled lower energy levels due to the pauli exclusion principle .\n", "he took it on in addition to his regular responsibilities , which under the caretaker government included the defense ministry .\n", "the system is financed by contributions from employees and employers .\n", "[ 2 ] marino giancometti conducted skyrunning races as part of the training for high altitude expeditions in 1 9 9 2 .\n", "rat sands stone forest stone forest is the most famous .\n", "the kle 5 0 0 was introduced in 1 9 9 1 .\n", "in june 2 0 1 7 , azmoun returned to rubin kazan .\n", "the ship has often performed in multi-national military exercises beside the united states navy and other regional partners .\n", "when news of his promotion arrived in india , dunlop resigned his staff appointments and rejoined his regiment .\n", "a donation , held in saatli , involved 2 3 0 people .\n", "ics provides nat services , mapping individual ip addresses of local computers to unused port numbers in the sharing computer .\n", "gijón was marked much higher than any other spanish metro area , in spite of the much larger populations in cities such as madrid and barcelona .\n", "in the championship round ten teams will contest : the eight winner teams from eight zones and two services teams .\n", "the highway heads north as a 2 -lane highway through farmland to have an intersection with gilchrist road , which serves as a connector to sr 2 2 4 .\n", "on the left of the identity page is a picture of the passport holder .\n", "the survey activity is carried out mostly at the beginning and near the end of the night , while part of the middle of night time is usually available for the follow-up work .\n", "at his appointment , macarthur announced that he sought to `` restore security , dignity and self-respect '' to the japanese people .\n", "after miss world 2 0 1 1 , ruais became a regular performer at `` party pilipinas '' and a host for `` unang hirit '' on gma network in 2 0 1 2 .\n", "the 2 0 0 0 exeter city council election took place on 4 may 2 0 0 0 , to elect members of exeter city council in england .\n", "vartox is a friend and equal to superman and the two have shared many adventures together .\n", "his wife was probably a member of the moravian church .\n", "in the general election , rinfret came in second over london by just 3 8 , 3 3 4 votes .\n", "the school 's drama program has also been invited to the fringe festival held in edinburgh , scotland , but has not yet attended .\n", "robinson played trombone on `` the bill cosby show '' in her teens and received a bachelor 's degree from the eastman school of music in 1 9 7 3 .\n", "in 1 8 7 2 , he became the president of its criminal chamber , and was briefly vice president of the state council .\n", "desserts include sfingi , `` zeppoli '' , a light puff pastry ; sfogliatelle , `` pignolati '' , struffoli ( honey balls ) ; and `` cannoli '' , a sicilian creation .\n", "settlers began building in the area when it was believed that a railroad would pass through the marshland .\n", "the final `` statue of liberty '' play also placed 2 nd in espn 's `` the greatest highlight '' hosted by chris berman .\n", "beginning in 2 0 1 8 , the winners qualify for the ontario tankard ( men 's ) and the ontario scotties tournament of hearts ( women 's ) .\n", "the genus is monotypic , containing the single species amylaria himalayensis , found in bhutan .\n", "at first glance , lean workcells may appear to be similar to traditional workcells , but they are inherently different .\n", "it also includes plants which can tolerate both acidic and basic conditions , such as common bent ( `` agrostis capillaris '' ) , wood sage ( `` teucrium scorodonia '' ) and sometimes juniper ( `` juniperus communis '' ) .\n", "opposition to huerta was led by venustiano carranza , along with generals pancho villa and álvaro obregón .\n", "[ [ file : wave-particle duality.ogv|thumb|right|the double-slit experiment for a classical particle , a wave , and a quantum particle demonstrating wave-particle duality ] ]\n", "this marks the eastern end of the okc metro area .\n", "there is a fairly solid record of bacterial life throughout the remainder ( proterozoic eon ) of the precambrian .\n", "many enlist the help of symbiotic bacteria to release the nutrients in their diet .\n", "the business 's name was changed to willamette valley lumber company .\n", "raoul was born in brazzaville and has a background working in education at the marien ngouabi university in brazzaville .\n", "elmer at first thinks of coming to their rescue but immediately turns back , recalling the theft they committed .\n", "unlike the spread of christianity within indian country , in the united states , the baháʼí faith has never been associated with a fortification of colonial occupation , euro-american assimilation , or forced conversions of native americans .\n", "born in brisbane on 8 february 1 9 8 9 , barratt was coached by john rodgers at the albany creek swim club .\n", "the carbonate-silicate cycle is the primary control on carbon dioxide levels over long timescales .\n", "he discovered deposits of limestone at the site of what was to become ipswich .\n", "hori was part of the handball club when he was at high school .\n", "hull botanic gardens railway station was an intermediate stop on the north eastern railway 's victoria dock branch line in hull , east riding of yorkshire , england .\n", "this aria has been performed in concert by many musical theatre and opera stars , including ( in addition to those listed above ) : natalie dessay , diana damrau , sumi jo , edita gruberová , renée fleming , simone kermes , roberta peters , and dawn upshaw .\n", "she graduated from eastern district high school in brooklyn , new york .\n", "his manager , howard frazier , was found to be embezzling his income and had his license revoked for it in 1 9 4 9 .\n", "the szpak- 2 had a conventional fixed landing gear .\n", "the following players were members of the 1 9 4 8 football team according to the roster published in the 1 9 4 9 edition of `` the bugle '' , the virginia tech yearbook .\n", "leonora now was to have a cantabile for the miserere as well as retaining `` tacea la notte '' in act 1 with its cabaletta .\n", "he was then hired at the boston custom house and there was employed for almost four decades .\n", "škaljić studied mechanical engineering and political science at the university of sarajevo .\n", "james malcolm hunt ( born 1 2 december 1 9 7 6 ) is an english former professional footballer who played as a midfielder from 1 9 9 4 until 2 0 1 0 .\n", "even with an intensive oral hygiene program in place , adults fed by tube still demonstrate a greater quantity of supra-gingival accumulation , which can be a risk factor for several oral diseases including periodontal diseases and aspiration pneumonia .\n", "the commitment to nationalisation was dropped by gough whitlam , and bob hawke 's government carried out many free market reforms including the floating of the dollar and privatisation of state enterprises such as qantas airways and the commonwealth bank .\n", "the upper fort ( `` fort supérieure '' ) is above the lower fort .\n", "a logical spreadsheet is a spreadsheet in which formulas take the form of logical constraints rather than function definitions .\n", "because the mers system is electronic , it depends on the electronic storage and transmission of legal documents .\n", "an argument over where the methodist church should be established with the reed 's corner settlement ( two miles to the south ) had to be settled by church authorities .\n", "after world war ii , many local farms and summer cottages were converted for use as year-round , single-family homes .\n", "along with vår frue church , the cathedral is part of the `` nidaros og vår frue '' parish in the nidaros deanery in the diocese of nidaros .\n", "there are two sets of adjective concords : the regular adjective concord , and the shorter copulative concord .\n", "he is upset , and then he rushes to another room , and finds his jacket , but no necklace .\n", "in the new-style units , ( `` vexillationes '' , `` auxilia '' , etc .\n", "ethel 's death reminded albarn of bobby womack , who had appeared on the group 's single `` stylo '' and `` cloud of unknowing '' from their album `` plastic beach '' and appeared on the song `` bobby in phoenix '' from `` the fall '' .\n", "seth discards the plan of poisoning him as she can not kill anyone .\n", "prior to the formation of the constitionalist and conventionists , the two groups worked together to defeat general victoriano huerta .\n", "he received knighthood of the legion of honor , and died on 2 4 july 1 9 4 8 , aged 6 1 .\n", "it was shifted during the year 1 9 6 3 to the new building in lucknow zoo ( banarasi bag or prince of wales zoological garden ) .\n", "in 1 9 7 9 their grandfather discovered the box and called michael , who found inside it a dismembered corpse with rainbow hair which he believed to be janice hartman .\n", "in 2 0 1 6 , the college announced a major campus upgrade including the construction of several new buildings :\n", "the national census of india does not recognise racial or ethnic groups within india , but recognises many of the tribal groups as scheduled castes and tribes ( see list of scheduled tribes in india ) .\n", "rhopobota bicolor is a species of moth of the family tortricidae .\n", "the developers from the elyland company promote my lands as the very first browser mmog .\n", "a ten km long 4 lane bypass has been constructed near hazaribagh and a 4 0 km long 6 lane bypass near ranchi to decrease the pressure of traffic in both the cities .\n", "from here , tacks , nails and other products made at the factory were shipped out by rail , and materials used in the making of these products such as paints and other chemicals were brought in to the factory until 1 9 5 3 .\n", "this left johnson and tallon as the new men at the crease .\n", "most romanian scholars accepting the continuity theory regard the archaeological evidence for the uninterrupted presence of a romanized population in the lands now forming romania undeniable .\n", "fines and other penalties are meted according to the penal code as well as regulations under it and the act of 2 0 0 7 .\n", "the final standings of each group were determined by the first of the following methods that applied :\n", "he was the president of the committee of jurists asked by the council of the league of nations in 1 9 2 5 to provide an opinion on a dispute between danzig and poland .\n", "after he interviewed the then-us ambassador to honduras , john negroponte , negroponte arranged for a visa and almendárez emigrated to the u.s .\n", "he served as a tank platoon leader , scout platoon leader , troop executive officer , and squadron adjutant .\n", "despite the criticism against yasser arafat , the troubles continued .\n", "bao could only afford to watch movies in the b and c class theatres , but he saved the allowance his parents gave him for buying snacks , and spent it at the cinema every weekend .\n", "7 on the `` billboard '' singles chart featuring linda ronstadt on backing vocals .\n", "baekeland filed a substantial number of patents in the area .\n", "press reports that criticized the decision singled out bradley for vilification , and he received a number of death threats .\n", "dtdp- 3 -amino- 3 , 4 , 6 -trideoxy-alpha-d-glucopyranose n , n-dimethyltransferase ( , `` desvi '' ) is an enzyme with systematic name `` s-adenosyl-l-methionine : dtdp- 3 -amino- 3 , 4 , 6 -trideoxy-alpha-d-glucopyranose 3 -n , n-dimethyltransferase '' .\n", "[ 3 ] marino giancometti formed the federation of sports at altitude ( fsa ) in 1 9 9 5 .\n", "this was translated into old irish as , which became in irish and in scottish gaelic .\n", "in early november , she made her debut at the breeders ' cup , riding mighty gurkha in the breeders ' cup juvenile turf sprint and getting her first ride for aidan o'brien on the undercard .\n", "well-liked by his soldiers , wyche was known as the `` doughboy 's general '' , and called 'papa ' wyche by his soldiers , as a result of his daily inspections of the division 's camp .\n", "southerly flowing rivers from this same landmass were responsible for the millstone grit/marros group succession in south wales .\n", "the rv- 8 airframe accepts larger engines from , including the lycoming io- 3 9 0 .\n", "the remaining prisoners , perhaps 4 0 0 or so , then began a letter writing campaign .\n", "augustine lonergan , democratic party senator for connecticut , forwarded these concerns to secretary of state cordell hull .\n", "there was no information in the commission report suggesting nypd helicopters had such a capability .\n", "`` city of bedford '' collided with the elder dempster lines cargo ship `` bodnant '' , causing both ships to sink .\n", "another flash in yorkshire is at catcliffe , which filled when sub-surface mining cause the land to drop , and be filled by water from the river rother .\n", "to find this out , but find it out too late . ''\n", "predictions estimate that even with draconian emission reductions within the ten years , the world will still pass 6 5 0 ppm of carbon dioxide and a catastrophic average rise in temperature .\n", "the church was first named in historical records in 1 3 0 6 , but it was not new at that time .\n", "although many at the time argued that fotlu merged with the afl , the afl was in fact a continuation of the fotlu .\n", "ericameria brachylepis is a north american species of flowering shrub in the daisy family known by the common names chaparral goldenbush and boundary goldenbush .\n", "sun parakeets are very social birds , typically living in flocks .\n", "the last commissioner , kent sullivan , resigned in september 2 0 2 0 .\n", "the name `` kannywood '' is a portmanteau derived from kano and hollywood , the center of the american film industry .\n", "in the bellator 1 8 6 main event ryan bader made the first defense of his light heavyweight title against linton vassell .\n", "in 2 0 1 7 herman was recognized for his lifetime work in psychiatric administration and management with the american psychiatric association administrative psychiatry award .\n", "in 2 0 0 1 he vacated his position at `` the guardian '' to join everton f.c. , the club he had been writing about a decade earlier , as director of communications .\n", "`` the guardian '' noted that the british media compared the portuguese procedures with british procedures unfavourably and unfairly .\n", "milliken served in the michigan senate from 1 9 4 1 to 1 9 5 0 .\n", "vishal , who is senior to megha questions raj on this discrimination and expresses his disappointment but raj does n't care .\n", "originally designed as a surface weapon , it was used in a number of other roles such as anti-aircraft and coastal defence ; wet-mounts were developed for u-boats .\n", "van de velde wrote the screenplay and asked borsato to take on the lead role .\n", "espn 3 continued to stream all games not broadcast by bein sports or twitter .\n", "the deadline for companies with existing products to submit a full and validated novel foods application with the fsa is 3 1 march 2 0 2 1 ; failure to do so before this date will exclude those companies from selling cbd .\n", "holding a single kettlebell in the rack position bottom-up with two hands ( `` by the horns '' ) makes for goblet exercise variants .\n", "anything we can do to call attention to this problem , we will do '' , dardenne said .\n", "since that time it has been difficult to prove a membership of 5 0 0 , as members contacted by the aec ( australian electoral commission ) sometimes disavowed membership , or had changed address without notifying the party or the aec .\n", "the european union also faces a question different from a lot of individual countries .\n", "helton is a guggenheim fellow and fellow of the american mathematical society and the institute of electrical and electronics engineers .\n", "emergency services were called to brassknocker hill in monkton combe after the coach fell 3 0 ft ( 9 m ) from the viaduct .\n", "the town is also home to la conner brewing company , a craft beer and gastropub specializing in small-batch , hand-crafted beers that have become a favorite among locals and tourists .\n", "ecs- 4 was launched by arianespace , using an ariane 3 launch vehicle , flight number v 1 9 .\n", "as a result of the crash , frontman john baizley suffered a broken left arm and broken left leg .\n", "the book starts with the story of u.s. special forces soldier roy benavidez , who won the medal of honor for his actions during the vietnam war .\n", "she decided to end her nine-year national team career and retire from football after the tournament .\n", "the current strip is black and white horizontal bands .\n", "the proof of kakutani 's theorem is simplest for set-valued functions defined over closed intervals of the real line .\n", "in la he also studied composition with wadada leo smith for a short time .\n", "ada was a difficult language to implement and early attempts to build a compiler for it often resulted in disappointment or outright failure .\n", "it is unclear , however , whether cnut 's housecarls were all scandinavians ; according to susan reynolds , it is likely that some of them were , or became , or were thought of as english .\n", "commissioned by the magazine `` hot-dog press '' , shot snap photography of female university students on the streets of shibuya .\n", "the value of the capital shares on the secondary markets may fluctuate considerably and may be reduced to zero .\n", "for the most part , prentiss has also developed friendly relationships with the other members of the bau team .\n", "he is the current chief scout at fleetwood town .\n", "she was state president of juvenile work of the woman 's christian temperance union ( wctu ) of california , president of the california women 's indian association , and president emeritus of the league of american pen women .\n", "a 6 0 -foot boat would be installed at the island and would stay there all time to facilitate research and protection .\n", "a significant feature in the park is high shoals falls on jacob 's fork river .\n", "marshall sought the deputy leadership , managing to defeat jack watts for this post .\n", "bleak and somber imagery dominates throughout the first chapter , instilling images of poverty , despair and desolation affecting the children as well as their families .\n", "neil druckmann led development as creative director and writer , reprising his role from `` the last of us '' and ' ( 2 0 1 6 ) .\n", "as ken mandelbaum noted : `` 1 9 8 5 : things get bad enough musically to require the elimination of the best musical actor and actress categories , as well as the choreography prize . ''\n", "boissarie moved the offices of the bureau to accommodation beneath the right ramp of the upper basilica , where he met with people who claimed to have been cured .\n", "matthew iii csák , whom andrew had made palatine in 1 2 9 6 , turned against andrew at the end of 1 2 9 7 .\n", "it consists of six massifs separated by deep gorges : mount stanley ( ) , mount speke ( ) , mount baker ( ) , mount emin ( ) , mount gessi ( ) and mount luigi di savoia ( ) .\n", "from 1 9 4 2 to 1 9 4 6 , the competition was played in a knockout format , and from 1 9 4 7 onwards in a league format .\n", "construction on the plant began on 3 1 march 2 0 0 2 , but faced several delays due to opposition from local fishermen .\n", "the intermediate in the protonation occurs at oxygen to give [ teo 2 ( oh ) ] − .\n", "it commemorates west ham 's contribution to the victory , with moore , hurst and peters having all been west ham players at the time of the 1 9 6 6 world cup .\n", "it first appears on a petition sent on june 1 5 , 1 8 2 2 to u.s. secretary of state john quincy adams , asking that jacksonville be named a port of entry .\n", "on 2 7 february , the netherlands confirmed its first case , a man who had been in the lombardy region of italy .\n", "a team has a list of players that reference persons via the codice_ 7 type and its codice_ 8 restriction .\n", "a well-known story told by loudermilk is that , when he was asked by the `` viva !\n", "it was the third emergency air evacuation from antarctica during the winter night .\n", "according to spring , the work `` allows the possibility of an intimate embrace '' between the two players , who must sit one upon the other 's lap .\n", "ernest boulanger had studied at the paris conservatoire and , in 1 8 3 5 at the age of 2 0 , won the coveted prix de rome for composition .\n", "he was made deputy paymaster-general to the british contingent of the bombay army , then later , the military secretary to the bombay government .\n", "the tam điệp pass ( sino-vietnamese name : đèo tam điệp , demotic folk name : đèo ba dội ) is the name of the three passes between ancient thăng long and ninh bình and thanh hóa provinces .\n", "steve leder ( born june 3 , 1 9 6 0 ) is an american rabbi , scholar , author and jewish community leader .\n", "in january 1 9 6 3 , the children 's bureau was moved from the social security administration to the newly created welfare administration , reflecting a growing emphasis on coordination between child welfare services and the adc program .\n", "the estate covers 2 , 4 2 9 ha ( 5 , 6 8 5 acres ) of unenclosed common moorland and almost surrounds marsden .\n", "the story was reprinted as a chapter in the 2 0 0 4 book : `` islam : opposing viewpoints '' .\n", "the list below describes the sections in each county that are designated sr 7 7 9 .\n", "his will provided that most of his belongings be left to his successors at carlisle .\n", "dichomeris paulidigitata is a moth in the family gelechiidae .\n", "clayton holt ernst was editor-in-chief of `` the open road '' .\n", "6 7 % of deaths during the sectarian violence occurred within of one of these `` interface structures '' .\n", "carved in stone set into the brick faced pediment is a coat of arms with garlands .\n", "the museum has over 1 0 0 , 0 0 0 visitors per year and has 1 2 7 employees , of whom 4 3 are curators .\n", "in 1 9 8 4 , a mural was created in edward square , off copenhagen street , islington , to commemorate the gathering of people organised by the central committee of the metropolitan trade unions to demonstrate against the penal transportation of the tolpuddle martyrs to australia .\n", "in the late 1 9 8 0 s and 1 9 9 0 s , many of the remaining ethnic germans moved from the soviet union to germany .\n", "on july 1 7 , 1 9 4 2 , 1 2 0 0 jews were murdered in a mass execution perpetrated by an einsatzgruppen , some managed to escape .\n", "the box set has 1 2 x 3 `` cd single ( 'mini album ' written on the reverse of all sleeves ) snap-packs ( japanese : tanzaku ) which includes twelve hit-singles released between 1 9 7 3 and 1 9 8 6 .\n", "he then studied theology , obtaining his doctoral degree , and was ordained a priest in lyon .\n", "either combatant could end the fight and lose his case by crying out the word `` craven '' , from the old french for `` broken '' , which acknowledged `` ( i am ) vanquished . ''\n", "her next appearance was a supporting role in `` the flesh and blood show '' ( 1 9 7 2 ) .\n", "( `` the passing of the torch legendary fighter joe lewis grooms his successors '' )\n", "`` you & amp ; i '' was broadcast on mtv 2 in the united states , scuzz in the united kingdom and on much music in canada .\n", "louise otto became engaged to august peters in 1 8 4 9 , but he was soon thereafter imprisoned for his rebellious stance against the government .\n", "the five players were tied to potential draft picks minnesota would give dallas if a player was cut ( which led to emmitt smith , russell maryland , kevin smith , and darren woodson ) .\n", "built as a home , it is now a museum and is a grade ii * listed building .\n", "trixie , on the other hand , is shown as irritated and slovenly as she tersely yanks off her garments and throws them on the ground .\n", "this complexity is enhanced by greaves 's editing techniques , including split screens displaying two or even all three perspectives at once , but in simultaneous split screens , to further the use of simultaneous footage about the same sequence but from three different perspectives .\n", "i gave your master 's house to you , and your master 's wives into your arms .\n", "dunot de saint-maclou died in 1 8 9 1 and was succeeded by dr. gustave boissarie who headed the medical bureau until 1 9 1 4 , and met with the french author émile zola when he visited lourdes in august 1 8 9 2 .\n", "by 0 7 : 2 0 on 1 9 september the 1 8 0 th brigade had captured the front line defences and about 6 0 0 prisoners , one company establishing a bridgehead across the mouth of nahr el faliq behind the ottoman front line .\n", "himarë had already been under greek control since 5 november 1 9 1 2 , after a local himariote , gendarmerie major spyros spyromilios , led a successful uprising that met no initial resistance .\n", "on average about 2 5 0 of these show sufficient promise for further evaluation using laboratory tests , mice and other test animals .\n", "here they are listed in zelazny 's intended order , with first publication dates .\n", "the type 9 8 no . 2 5 land bomb was a thin-cased high explosive bomb for land targets while the type 9 9 no . 2 5 ordinary bomb model 1 was an armor-piercing bomb for use against warships .\n", "whitemoor community primary school is a small village primary school , situated between st dennis and nanpean in the clay area of cornwall .\n", "mike morgan is an australian record producer/engineer , most well known for his work with kids in glass houses , mcfly and cameras .\n", "the station has two opposed side platforms connected by a level crossing .\n", "parr had supported stevenson during his runs for governor , but in 1 9 4 4 , the two fell out .\n", "richard atwater suffered a stroke in 1 9 3 4 which left him unable to speak or write .\n", "the pair then also acquired a smaller black horse called tumbling mustard .\n", "he currently serves as executive chairman of the atp tour , the governing body of the men 's professional tennis circuits - the atp tour , the atp challenger tour and the atp champions tour , and is a board member of atp media .\n", "it opened a retail bakery in milan in 1 9 7 5 , and was licensed in 1 9 8 1 to williams-sonoma , inc. as a retail bakery concept .\n", "aeroponics is the process of growing plants in an air or mist environment without the use of soil or an aggregate medium .\n", "unsuccessful nomination candidate jackson derided mondale 's vice-presidential screening process as a `` p.r .\n", "the mgp organization has released compilation albums for many years .\n", "former davao city mayor rodrigo duterte won the 2 0 1 6 presidential election , becoming the first president from mindanao .\n", "in tunisia , the term refers to a very popular chickpea-based breakfast soup which also includes egg and stale bread .\n", "it has variants , including : passie , passey , peacey , pacey , and piosey .\n", "he flew a sopwith dolphin , and scored the squadron 's first victory on 6 may .\n", "louis nelson van keuren was captain and adjutant of the old fourth regiment from 1 8 8 5 to 1 8 9 0 .\n", "he also served as expulsion hearing officer for the norwalk school system .\n", "it is dedicated to the holy spirit and belongs to the roman catholic archdiocese of maribor .\n", "myst was working as a dental assistant in los angeles when she decided to get into the adult entertainment industry .\n", "the band has also recorded teddybears stockholm songs on the 2 0 0 6 album dansbander , as well as recorded soundtrack music for the 2 0 0 7 `` snart är det lördag igen '' film .\n", "in the us the single-letter symbols are particularly sought after as vanity symbols .\n", "hms `` veronica '' was an `` acacia '' -class sloop of the royal navy .\n", "at the time , tianjin 's cinemas were divided into three classes ( a , b and c ) , with a screening the latest movies but having the priciest tickets .\n", "in the 2 0 2 0 forbes global 2 0 0 0 , canadian natural resources was ranked as the 3 0 6 th-largest public company in the world .\n", "at high altitudes water boils at lower temperatures , so the above temperature ranges should be adjusted .\n", "on june 1 2 , 1 9 6 6 , puerto ricans celebrated the culmination of this week , and their first ethnic parade in downtown chicago , held on june 1 1 .\n", "on 1 2 september 2 0 1 1 the museum was re-opened in building t 4 at airbase 9 0 1 in drachenbronn-birlenbach .\n", "three fields are designated as burledge sidelands and meadows a site of nature conservation interest ( snci ) , and , since november 2 0 0 5 , as a site of special scientific interest ( sssi ) covering 4 8 . 7 ha the citation says :\n", "dorff returned to local politics in 1 9 8 4 , unseating incumbent alderman jesse kolmos in the april 1 9 8 4 city election .\n", "the problem with that work is that the more well-documented women were included with countless `` one-liners '' .\n", "it is reported that the severity of the disease was not increasing .\n", "during this period he was also a member of the permanent court of arbitration .\n", "present automated systems are not autonomous and must be monitored ; their replacement could require artificial intelligence with machine learning while present certified software is deterministic .\n", "successfully deployed into geostationary transfer orbit ( gto ) , ecs- 4 raised itself into an operational geostationary orbit using its apogee motor .\n", "he also mentioned that irimescu had an american wife .\n", "in 2 0 1 4 , müller was ranked the fifth-best footballer in the world by `` the guardian '' .\n", "robert white and lachie mcleod were found not guilty on all charges , while edward sullivan was found guilty on five charges he faced , and not guilty on four other charges .\n", "where formula_ 2 2 is the space of harmonic `` r '' -forms on `` x '' ( forms `` α '' with ) and formula_ 2 3 is the space of harmonic ( `` p '' , '' q '' ) -forms .\n", "this episode had 1 8 . 1 million viewers on its original airing .\n", "saracen '' is a fictional account of the service of an `` erebus '' class monitor in the mediterranean sea in both world wars .\n", "in 1 8 4 4 cheam was on the planned route for the london to portsmouth atmospheric railway .\n", "the hdz 's leader , andrej plenković , is the current prime minister of croatia , having taken office following the 2 0 1 6 parliamentary election .\n", "a few verbs have suppletive humble forms , used when the speaker is referring to him/herself in polite situations .\n", "the species name refers to the shape of the uncus and is derived from latin `` tenuis '' ( meaning slender , delicate ) .\n", "the territory is separated into several areas : three cargo terminals ( east , west , and central ) , a passenger area and the sheskharis oil harbour .\n", "her successful career went on as she placed 4 th in the rogla , slovenia event on february 8 , 2 0 1 3 , finishing 3 rd in the standings of the world cup in parallel slalom before concluding her season .\n", "it functions primarily to document the history of the university and to provide source material for administrators , faculty , students , alumni , and other members of the university community .\n", "the walter nz 1 2 0 was a nine-cylinder , air-cooled , radial engine for aircraft use built in czechoslovakia by walter aircraft engines in the 1 9 2 0 s .\n", "the first town hall , the agricultural hall and the methodist church ( now minoru chapel ) , were built at the corner of no .\n", "he won a pulitzer prize in 2 0 1 0 for a book about the legacy of the nuclear arms race .\n", "the family was a scion of the noble clan known as orahovički ( ) , according to their estate orahovica in medieval križevci county .\n", "the 2 0 1 3 croatia rally , formally the 4 0 .\n", "in october 2 0 2 0 , ernie ball music man announced that they are releasing a cliff williams signature bass which will be a genuine replica of his 1 9 7 9 music man stingray bass .\n", "fbi agents were also denied the opportunity to ask president bill clinton and vice president al gore questions during justice department interviews in 1 9 9 7 and 1 9 9 8 and were only allowed to take notes .\n", "wartenberg-rohrbach is a municipality in the donnersbergkreis district , in rhineland-palatinate , germany .\n", "in english in 1 9 6 2 and met lifelong friend jim harrison .\n", "the social variables external from language include age , region , social class , ethnicity , and sex .\n", "he made 7 appearances in his time there , all in the campeonato de portugal .\n", "by 2 0 0 7 , the station had about four employees and a much reduced volunteer corp .\n", "the extensive underlying cave system developed in mississippian age limestone bedrock .\n", "each elector can vote for the number of seats from the qualified nominees .\n", "on 2 6 november 2 0 1 8 , former deputy secretary-general of the presidential office and incumbent taipei city councillor lo chih-chiang became the first candidate who announced his candidacy on facebook .\n", "the event consisted of a road race and a time trial for men , women and men under 2 3 .\n", "this version of the game includes edy 's mission without need of download .\n", "the organisation is registered as a charity , supporting and conducting field conservation projects around africa .\n", "the remaining pupils were transferred to frank f. harrison school in nearby leamore , but the forest buildings were retained as hawbush centre community facility .\n", "in the early 1 9 8 0 s she continued working with foster as well as with dizzy gillespie and george gruntz .\n", "intellectuals who are indigenes of ijoko are many but acts of hooliganism and barbaric behaviours must first be eliminated from the land .\n", "in the battle , a parliamentarian force commanded by lieutenant-general thomas fairfax was decisively beaten by a royalist cavalry force commanded by george goring .\n", "agbodji is an arrondissement in the mono department of benin .\n", "the wine acquires its characteristic yellow color and nutty flavors as it ages for the requisite time of six years and three months , the time that must elapse between harvest and bottling , although at certain points during this time the wine is not necessarily in the cask .\n", "after briefly attending the university of michigan and olivet college , mcguane graduated from michigan state university , where he received a b.a .\n", "andrew 's staunch supporter , archbishop lodomer , died around the same time .\n", "fc rostov confirmed the transfer agreement with rubin on 1 4 july 2 0 1 7 .\n", "( it was originally intended to be the same basic configuration with the guppy radome replacing the bomb bay and retractable radome .\n", "from a `` hadith '' ( , 'narration ' ) :\n", "on august 2 1 , 1 9 0 5 , the oregon eastern railway was incorporated in the interest of the sp and union pacific railroad ( up ) , then both controlled by e. h. harriman .\n", "this programme is meant to serve members of the provincial assembly in different areas .\n", "she has been a soprano soloist in the cycles of bach cantatas of both gustav leonhardt and masaaki suzuki .\n", "in a 2 0 0 9 npr interview , a phone caller reminded carole king that the song and the film `` a league of their own '' was one of her and her grandmother 's favorites .\n", "he returned to racing in oswego in may 1 9 8 9 .\n", "cha cha cohen went on to make two albums on the glasgow-based chemikal underground records label , and , thanks to their help , simon began tour managing for a living .\n", "takuma sato managed 7 th and his best ever qualifying ahead of his teammate giancarlo fisichella .\n", "müller is the most decorated player in german history , with his 2 8 trophies surpassing bastian schweinsteiger 's total of 2 6 .\n", "after company employees destroyed the interior of the building whilst moving out , the building required refurbishment before being placed on sale .\n", "the two married may 1 2 , 1 9 4 8 , in ellicott city , maryland .\n", "after brief clashes inside the castle , the lna captured the site .\n", "grammar is used as a metaphor to this end , forming the order which represents thought .\n", "other translations were made from tablets in the nippur collection of the museum of the ancient orient in istanbul ( ni ) .\n", "a study of the transparencies was carried out in 2 0 1 1 by robin wootton for an article in the `` report and transactions of the devonshire association '' 1 4 3 , where the transparencies were catalogued for the first time and twenty illustrated .\n", "he has a church in the city of nantes , situated on a hill on the erdre .\n", "the most interesting lubricant feature is its high temperature resistance of 1 2 0 0 °c service temperature in an oxidizing atmosphere .\n", "with revenues of £ 2 . 1 million in 2 0 1 0 , it has been recognized for its work in forestry conservation , specifically illegal logging prevention .\n", "arlott said england 's `` bowlers had done nobly '' .\n", "they have subsequently been depicted in operas , paintings , books , comics , animation , and live action films .\n", "a 2 0 2 1 study found all populations assigned to `` e. ovalis '' across south america to represent several different undescribed species , likely indicating that the name `` e. ovalis '' is invalid without knowledge of the original population .\n", "`` kirkus reviews '' felt that the characters in the story were complex .\n", "however passenger numbers in 2 0 1 0 increased to 1 2 million , and increased again in 2 0 1 1 to 1 2 . 8 million and decreased slightly to 1 2 . 5 million in 2 0 1 2 .\n", "this twin river drains the area of the village of ymachiche and then flows into lake saint-pierre , 1 . 5 km upstream from the mouth of the main river .\n", "the press has also used the term `` flash mob '' to refer to a practice in china where groups of shoppers arrange online to meet at a store in order to drive a collective bargain .\n", "the fort is located strategically controlling the four directions with the bordering area of bajaur , which borders afghanistan .\n", "malakoff believes in working together with all stakeholders in productive partnerships .\n", "they released two albums and were signed to slipdisc records ( a division of mercury records ) until the label closed in late 1 9 9 9 .\n", "franch holds the osu career record for shutouts with 3 8 and led the big 1 2 in the same category in three of her four seasons .\n", "in 1 9 2 6 , they inaugurated the current building in east amsterdam .\n", "in addition to the regular attacks , each attacking unit is capable of a specialised attack which targets a specific defensive unit to capture or destroy a specific resource .\n", "in 2 0 1 6 , tenement was invited to play `` eaux claires '' , an outdoor music festival curated by justin vernon of bon iver and aaron dessner of the national .\n", "he became a citizen of the united states in 2 0 0 0 .\n", "remix stems of the song `` hang it up '' were also made available on their website with which fans could create their own remixes of the song and submit them .\n", "according to the `` periplus '' , maritime trade already connected peoples in the mogadishu area with other communities along the somali sea coast .\n", "he was elected to madhya pradesh legislative assembly in 1 9 7 7 .\n", "bukowsko also had a labour camp which existed from august to october 1 9 4 2 .\n", "it had been the king 's intention to have conferred the companionship of the order of st michael and st george on the late honourable george leake , kc , premier of the state of western australia\n", "these events served to politicize not only the nationalist clubs but bellamy himself and he entered the political fray .\n", "many modern motorcycles are now equipped with digital speedometers , most often these are sports bikes .\n", "significant leakage will come from nearby environmental reflections even if antenna components are perfect .\n", "its name in english is `` kay '' ( pronounced ) , plural `` kays '' .\n", "initially formed in 1 9 9 7 by jason slater ( from third eye blind ) and luke oason , brougham had been working on material for a couple of years prior to the recording of `` le cock sportif . ''\n", "he qualified to represent israel at the 2 0 2 0 summer olympics .\n", "the house is decorated with murals , which have been repainted .\n", "the same 5 . 1 english audio track was later included on 5 7 6 i dvds issued in european territories the following year .\n", "the sell-in : how the music business seduced alternative rock is a book by australian music journalist , craig mathieson .\n", "pashukanis soon came under pressure from the government as well .\n", "a number of demonstrations have been witnessed in several u.s. cities over the deportation of cambodian-americans .\n", "the higher expenses meant that more steam drifters were company-owned or jointly owned .\n", "saltpond offshore producing company limited , and two joint venture partners operate the saltpond oil field .\n", "glen is a boston red sox fan ; he is usually seen wearing a red sox cap .\n", "he was exiled in the sahara desert from 1 9 4 9 to 1 9 5 0 after advocating for teachers ' rights .\n", "in one area as well as in the other , the use of unusual instruments such as toys , prepared guitars , various artifacts and other instruments such as electric bass , small electronic keyboards or flutes `` take life and express themselves in their own language . ''\n", "as a result of the upgrade of the oeg , it was integrated as a full line of the heidelberg tram network in june 1 9 9 9 .\n", "the bartering scenes reflect how corporate goods common west of the iron curtain were prohibited in romania and were viewed as luxuries .\n", "ricks was born and grew up in philadelphia , pennsylvania , playing trumpet as a child .\n", "a -high `` green wall '' with hanging creepers and waterfall was incorporated to enhance the tropical feel .\n", "it is time for the development of both ijoko and sango and bye bye to land merchandising , ọbaship tussle and acrimony .\n", "in the 1 9 8 0 s , several historic and culturally significant areas such as chinatown , little india and kampong glam were earmarked for preservation .\n", "illness was still very common among south sea islanders at this time .\n", "patrick makes a decision to sacrifice himself by luring the infected away from the house .\n", "he soon wanted to race again , so he built his own motorcycle and began racing as a 3 0 -year-old .\n", "the surge and above-normal tides produced minor coastal flooding , as well as of beach erosion .\n", "the imf recommended working on solving these problems for portugal to be able to attract more private investment .\n", "inequality and inferiority are , according to schmidt , `` negative '' .\n", "three neighbourhood children stood to watch this particular bonfire , and nilsen later wrote in his memoirs that he felt it would have seemed `` in order '' if he had seen these three children `` dancing around a mass funeral pyre '' .\n", "he has worked on 4 4 different television series as well as 6 8 pilots .\n", "permission was granted on condition that the view of china be favorable , that the chinese government would supervise and have of shots done in china , and the unenforced stipulation that the entire cast be chinese .\n", "mac found it difficult to live in the same house as a drunken katherine and jill , who hated her , so she moved back into the loft apartment with j.t. , brittany , and raul .\n", "in 1 6 7 4 , antonie van leeuwenhoek , often called the `` father of microscopy '' , sent the royal society of london a copy of his first observations of microscopic single-celled organisms .\n", "the larvae have been recorded feeding on `` vitis '' species , `` ficus carica '' , `` ficus pseudosycramorus '' , `` acacia arabica '' , `` cercis siliquastrum '' and `` crataegus '' species .\n", "upon starting operations , the dumping facility became the first engineered landfill in the philippines .\n", "remaining stocks of mirex are to be used only for contained baits for termites in plantations of young trees in the northern territory until stocks run out , which is expected in the near future .\n", "since two different types of bombs were converted to create the type 2 1 /type 2 2 the overall weight should be considered as approximate because the weight of each bomb without its tail cone is not known .\n", "the commentary to two `` daodejing '' chapters describe an early daoist understanding of transcendence .\n", "at the time of the reshuffle , it was reported that prior considered following the sacked ian gilmour to the back benches to oppose the thatcher government 's economic policies .\n", "during the procession , district police failed to keep the enormous crowd off the street , impeding the marchers ' progress .\n", "queen victoria → prince arthur → princess margaret of connaught → prince gustaf adolf , duke of västerbotten → king carl xvi gustaf\n", "since 2 0 0 3 , he has won 5 3 caps and scored three goals for the lesotho national football team .\n", "he was also an occasional film actor , playing alongside great romanian actors like toma caragiu and gheorghe dinică in the 1 9 7 5 comedy movie `` nu filmăm să ne-amuzăm '' ( `` we do not film to amuse ourselves '' ) directed by iulian mihu .\n", "levin and his wife since january 1 9 9 8 , jill , who is also a world champion bridge player , reside in lake ariel , pennsylvania ( as of 2 0 1 0 ) .\n", "there remain traces of this tramway on the site , including sections of rail and the chassis of a truck .\n", "slavery and indenture were encouraged to populate the area .\n", "`` child '' was first published in october 1 9 8 6 .\n", "garcia would play pedal steel guitar with the new riders , then play electric guitar and sing with the dead .\n", "on screen , tazel has made limited appearances , including a minor role in the david duchovny drama `` house of d '' ( 2 0 0 4 , table below ) , starring anton yelchin , robin williams , téa leoni , and erykah badu .\n", "it uses album equivalent units to combine measurements of downloads , physical sales and streams .\n", "in 1 9 8 9 , hsn purchased a number of low-power tv stations and began operating the service 2 4 hours a day as home shopping spree .\n", "although scott tries his best to keep his superhero life secret , cassie gradually finds out that he is ant-man , and secretly experiments with his pym particle supplies on her own .\n", "the second competing proposal , that of the national meteorology committee , emerged in january 1 9 3 2 and was soon abandoned , also for the lack of finance .\n", "however , the laird is apparently popular locally and has said he is unwilling to sell .\n", "from 1 9 7 7 to 2 0 1 3 , saf published three regional journals : the `` southern journal of applied forestry '' ; the `` northern journal of applied forestry '' ; and the `` western journal of applied forestry '' .\n", "around this time , a street grid was mapped in spring creek , though most of the streets had yet to be constructed .\n", "a squadron of attacked from the east to catch any german aircraft in the air and seven spad viis flew high above to cover the attackers .\n", "other scholars believe they are descended from families of the egyptianized nubian elite supported by egyptian priests or settlers .\n", "sudberry properties , the developer of civita , incorporated numerous green building practices in the civita design .\n", "with the return of the crew to germany the hotel fell into disrepair and eventually in 1 9 7 8 demolition began .\n", "the dual service brake circuits are further split into front and rear wheel circuits which receive compressed air from their individual reservoirs for added safety in case of an air leak .\n", "in 1 9 8 5 , with the same line-up as on `` cast a long shadow '' , the monochrome set recorded `` the lost weekend '' for warner bros. records .\n", "installed as heir apparent with the title of 'raja muda ' in october 1 7 5 9 .\n", "the two denounced the mtwapa clinic run by the kenya medical research institute , which has an aids program for counseling and treating men who have sex with men .\n", "glen brackston ( mark wilson ) is the operator and only employee of brackston 's marina .\n", "from 1 9 9 7 to 1 9 9 8 , park joon-hyung and park jin-young had been holding auditions and putting together a six-member mixed group .\n", "2 6 8 `` ) was the united states army 's first radar system .\n", "by the late 1 9 th century india had lagged behind in western science and technology and related education .\n", "in 2 0 0 8 the saafl set up their headquarters at the ground , which saw a permanent return of football to thebarton .\n", "the first breakaway of the day was formed by arnaud gerard ( ) , who escaped alone and earned a lead of over eight minutes , with the peloton riding slowly behind .\n", "largely educated by correspondence , she later attended school at waipukurau and st mary 's college , wellington .\n", "thereafter shooting was prohibited and exploitation of forest products was stopped .\n", "mnjikaning first nation 3 2 is an anishinaabe reserve in simcoe county , ontario .\n", "the network broadcasts live tournaments , news , one-on-one interviews , game analysis and skills instruction .\n", "the 1 9 9 6 rail financing framework was a scheme that set out the financing framework of the rail transport system .\n", "stol aircraft have a higher sink-rate requirement if a carrier-type , no-flare landing technique has to be adopted to reduce touchdown scatter .\n", "8 ( schubert ) | '' unfinished '' symphony ] ] , the opening theme of which was [ [ musical quotation|quoted ] ] by delius at the start of the `` requiem '' .\n", "a vascular specialist determined that koufax had a crushed artery in his palm .\n", "he further hinted at the prospect of a new international that might emerge if there were a revival of the socialist movement in the west .\n", "on january 1 7 , 2 0 1 2 , the private collective was raided by federal officials .\n", "the ensuing fight over lexie 's affections puts her off .\n", "in world war ii , `` lexington '' conducted several raids on japanese bases before being sunk during the battle of coral sea in may 1 9 4 2 .\n", "the series was a big hit with audiences , resulting in increased popularity for cha and gong .\n", "the silver drummer is found in the south-eastern indian ocean and the south western pacific ocean off australia and new zealand .\n", "the saturday edition continued to cost 2 d , with the wednesday edition costing 1 d per issue .\n", "longoria has also appeared in a commercial for new era hats that was aired during the 2 0 1 0 season .\n", "this was tapped to supply the nearby town of bolsover and at 2 0 0 , 0 0 0 gallons ( 9 0 9 , 2 1 8 litres ) per day was sufficient to supply its needs .\n", "the word `` whisky '' ( or `` whiskey '' ) is an anglicisation of the classical gaelic word ( or ) meaning `` water '' ( now written as in modern irish , and in scottish gaelic ) .\n", "she assisted bangladeshi musician samar das as he set up the swadhin bangla betar kendra , the clandestine radio station broadcasting to bangladesh and recorded several patriotic songs for him .\n", "over the next seven years , his reputation grew and lowe became widely and favorably known .\n", "the volsci invaded roman territory in 4 7 1 bc , and again in 4 6 9 - 4 6 8 bc , during a time of social upheaval in rome .\n", "two live action shorts , `` vivarium '' and `` mockingbird '' were shot back-to-back at leftjet studios in seattle , over the course of nine days .\n", "aravena answered that he did n't know , saying he was a very stupid man who had much trouble when it came to thinking .\n", "on a journey into the interior , he came across a group of aborigines who looked `` good-humoured & amp ; pleasant & amp ; they appeared far from such utterly degraded beings as usually represented '' .\n", "her teaching career included positions at both the australian national university and the australian defence force academy .\n", "more than 7 0 0 capital improvement projects occurred during his term , including a major expansion of bartle hall convention center and revitalization of the quality hill neighborhood .\n", "valentin raychev ( ; born 2 0 september 1 9 5 8 ) is a retired welterweight freestyle wrestler from bulgaria .\n", "on 2 3 september , the states general decided not to set up a separate committee on de neufville .\n", "matheson later described giving this decision as his proudest moment .\n", "his father was a bookbinder who came to america in 1 8 4 4 with six motherless children .\n", "on tbn 's `` praise the lord , '' and is set to appear on tv 1 's `` the gospel of music with jeff majors '' and insp 's `` mixx masters lounge .\n", "king frederick iv donated an altarpiece , constructed in antwerp in 1 5 2 0 by mogens christian thrane , with dozens of pictures depicting scenes from the new testament , from christianborg palace chapel in copenhagen .\n", "he was head of department at the amsterdam rietveld academy from 2 0 0 1 to 2 0 0 4 .\n", "they create galleries along the axes of stems and branches .\n", "in 1 9 5 9 james coleman left the university of chicago to found a new department of social relations at johns hopkins university , this left a vacancy open for a mathematical sociologist like white .\n", "students intern at cheddi jagan and other dental hospitals to obtain their degree .\n", "central board member terje sæbø submitted a competing resolution which opposed norwegian membership .\n", "initially , in 1 9 6 2 , the reservoir was stocked with 8 0 0 0 rainbow trout ( `` oncorhynchus mykiss '' ) from loch leven trout fisheries and many buckets of shrimps from stithians reservoir .\n", "although the film was better received , it failed to showcase her properly and break her out into more prestigious roles .\n", "wisconsin came into the game averaging nearly 2 0 0 yards rushing per game , but michigan entered the game ranked number 1 in the nation in rushing defense , allowing only 2 1 yards per game .\n", "over this period his health had deteriorated , the implication being that he may have suffered from slow poisoning by tibetan aristocrats whose interests these reforms were threatening .\n", "at intermediate flow rates , several non-harmonically related frequencies occurred simultaneously , suggesting that several corrugations were involved in the sound generation .\n", "he was returned successfully for liverpool in a contest at the 1 7 5 4 general election .\n", "on 9 may 2 0 0 7 polska grupa energetyczna was established by the merger of pse , pge energia sa and bot górnictwo i energetyka s.a .\n", "while at the center for advanced study , white began learning anthropology and became fascinated with kinship .\n", "at the same moment when the ambiguous word or phrase was uttered , simultaneously a string of letters -- -either a word or a non-word -- -was flashed on the computer screen .\n", "gardner 's initial venture into producing came when he and actor eddie blaine joined forces to produce the comedy `` college '' ( or `` collitch '' ) at the cherry lane theatre in greenwich village .\n", "in the late 1 9 9 0 s the city again revisited the prospect of the i- 3 5 e-to-i- 9 4 connection as part of an environmental study as one of many options for the public right-of-way .\n", "this is a romanian fiddle tune from mureş county , transylvania .\n", "il 1 r 2 also denotes its human gene .\n", "if the resolution is imperfect , try to make it perfect , but not by destroying it first ! ''\n", "the sustainable groundwater management act ( sgma ) is a three-bill package that passed the california state legislature and was signed into california state law by governor jerry brown in september 2 0 1 4 .\n", "sotirios axiotiades ( born 1 9 6 1 ) is a lebanese alpine skier .\n", "on a personal level his family dynasty flourished after his demise , particularly with the arrival of cromwell 's puritan age .\n", "he then picked up his second futures title of the year , winning another israeli futures event , this time in herzliya .\n", "the entire cast was present , except for jim backus who was unable to attend but appeared via a live video remote from los angeles .\n", "unless contraindicated or not tolerated , ace inhibitor ( ace ) therapy is recommended for all patients with systolic heart failure , irrespective of symptomatic severity or blood pressure .\n", "when george signed for south melbourne hellas in australia , he became the most expensive player to enter the country with a transfer fee from aberdeen to australian club south melbourne hellas for £ 2 0 , 0 0 0 ( aud 5 0 , 0 0 0 ) .\n", "in 1 9 7 9 , the stade brestois was promoted to the division 1 for the first time in its history .\n", "today , bisahan is well known for the number of officers and soldiers it contributes to the indian army and other armed forces of india .\n", "aware of the existence of the yamanouchi ninja clan , it is implied he had a history with them which was never fully addressed .\n", "fatma sultan was widowed in 1 7 3 0 , when her husband ibrahim pasha , who was sixty-four years old , was killed during the patrona halil revolt , which led to the deposition of her father sultan ahmed .\n", "lydia is n't sure if she should go to her date with sebastian .\n", "miller says she has a talk with her late father every time she is about to face an audience .\n", "on the night of 6 may 2 0 1 5 , the saudi-led coalition carried out 1 3 0 airstrikes in yemen in a 2 4 -hour period .\n", "joel miller ( troy baker ) is the protagonist of `` the last of us '' .\n", "the second track `` joton kore '' was released on 6 may 2 0 1 6 .\n", "the baku-tbilisi-ceyhan pipeline , the second longest oil pipeline in the world , was inaugurated in 2 0 0 5 .\n", "surprised at gally 's abilities , ido also notices her bloodlust and regret at not being able to finish grewcica off .\n", "she studied at the rhode island school of design ( risd ) , earning a bfa in painting in 1 9 9 8 , with an art history concentration .\n", "the first major process here is neurulation , wherein the ectoderm differentiates to form the neural tube , neural crest cells and the epidermis .\n", "helium- 3 is created by cosmic ray bombardment , and by lithium spallation reactions which generally occur in the crust .\n", "gay-for-pay describes male or female actors , pornographic stars , or sex workers who identify as heterosexual but who are paid to act or perform as homosexual professionally .\n", "the journal approaches the complexity of these questions from a contemporary perspective and , based on the latest scholarship , draws on a range of disciplines including political science , sociology , anthropology , economics , international relations , history and cultural studies .\n", "the book received significant attention from many mathematical sociologists of the time , and contributed greatly to establish white as a model builder .\n", "the collections management policy for the collection should contain sections in which display and storage housing needs for the objects are addressed in full .\n", "east jerusalem and golan heights are not internationally recognized parts of israel proper but have been included in this list .\n", "this payment allowed the chaucers to set up a household within the royal one .\n", "the per capita income for the county was $ 1 7 , 3 1 2 .\n", "in the summer of 2 0 1 6 , giovanni kessler 's european anti-fraud office ( olaf ) delivered a report on dalli to maltese authorities .\n", "it received a gold certification from the recorded music nz for shipments of over 7 , 5 0 0 units .\n", "these units bear little relation to the capacity of most contemporary wineglasses , or to the ancient roman cyathus .\n", "it has also been critical of the growing bottled water industry for health and environmental concerns .\n", "he was born on november 2 7 , 1 9 8 9 in trabzon .\n", "after a 3 -and-out drive by las vegas that featured the tuskers ' fourth sack of the day on losman , the tuskers got the ball back on their 3 5 -yard line with 8 : 1 9 remaining .\n", "the process of an acl injury where no contact from a player is applied is mostly due to the player landing on the surface after going up for a mark .\n", "for example , many residents of the atlantic provinces work in the oil and gas industry in the western province of alberta .\n", "european settlers brought the newest weapons with them to the new world .\n", "towers are expected to be 8 0 m high .\n", "historically , the term maluku referred to the four royal centers in north maluku , namely ternate , tidore , bacan and jailolo .\n", "he held passionate speeches at gangsters ' funerals , warning them that a bloody war in yugoslavia is coming and that they have to stick together .\n", "among the visitors was robert louis stevenson who visited annually during his youth .\n", "in 1 8 8 4 morris was a member of the audience in berlin when karl koller gave his first public demonstration of cocaine as a local anesthetic in eye work .\n", "town of tivat is the administrative centre of the tivat municipality , which has a population of 1 4 , 0 3 1 , according to 2 0 1 1 census .\n", "additionally , mozilla has a security bug bounty system - anyone who reports a valid critical security bug receives a $ 3 0 0 0 ( us ) cash reward for each report and a mozilla t-shirt .\n", "smith hill is sometimes used as a metonym for the rhode island general assembly .\n", "he entered the house on day 5 3 , after being chosen by the viewers .\n", "the `` fangerien '' is a beech wood on the northwestern shore of the lake .\n", "in 1 9 0 0 she presided over the `` work '' section of the congress of female works and institutions , where she argued passionately for equality of male and female pay and for strong laws on child labor .\n", "flea was an integral part of the partick thistle side that won the first division , playing both in midfield and at left back , he will be best remembered by jags fans as scoring the goal at love street that secured promotion to the scottish premier league .\n", "she also co-authors new adult novels under the pen name noelle august with writer and editor , lorin oberweger .\n", "old mother riley is a fictional character portrayed from about 1 9 3 4 to 1 9 5 4 by arthur lucan and from 1 9 5 4 to the 1 9 8 0 s by roy rolland as part of a british music hall act .\n", "soldati 's plans looked to architectural simplicity with classical greek features , while bartolomasi opted for a more convenient and modern approach .\n", "ics routes tcp/ip packets from a small lan to the internet .\n", "ahead of its destruction in 1 9 4 0 , a second excavation was carried out by charles s. t. calder in 1 9 4 0 .\n", "norman joseph woodland is best known for inventing the barcode for which he received a patent in october 1 9 5 2 .\n", "the shape and porting of the chambers allowed for more complete atomization of the air/fuel mixture , as well as contributing to more complete combustion ; these virtues allowed for much greater efficiency of the engine as a whole .\n", "the structure of aha 2 clearly identifies three cytosolic domains corresponding to the n ( nucleotide binding ) , p ( phosphorylation ) , and a ( actuator ) domains , similar to those observed in the sr -atpase and also verifies the presence of ten transmembrane helices .\n", "the tour played 1 2 7 shows beginning february 2 0 , 2 0 1 1 in lisbon , portugal and concluding on january 2 2 , 2 0 1 2 in pasay , philippines .\n", "between kensington olympia railway station and north pole depot , further switchovers were necessary .\n", "the township borders the salem county municipalities of elsinboro township , quinton township and salem .\n", "it has a faint line over each eye and a faint broken eye ring .\n", "the single topped the uk singles chart for two weeks in june and july 1 9 9 1 ; in july , it was certified gold by the bpi for sales greater than 4 0 0 , 0 0 0 copies .\n", "on june 2 0 , 1 8 9 4 . the library 's new home , the thayer memorial building , was dedicated .\n", "the 1 9 9 0 new york gubernatorial election was held on november 6 , 1 9 9 0 to elect the governor and lieutenant governor of new york .\n", "he worked to re-establish the mission until the end of the 1 8 6 0 s , when he retired from missionary work to engage in church administration .\n", "in 1 9 6 3 she won the marian anderson award in philadelphia .\n", "the cabinet office , the officials that work on it , their offices and the departments make up the office of the prime minister .\n", "upon acidification of aqueous solutions of tellurite salts , solid hydrated tellurium dioxide ( teo 2 ) precipitates .\n", "the kawasaki kle 5 0 0 is a motorcycle produced by kawasaki and powered by a parallel-twin engine .\n", "the series was notable for its racial humor and overt prejudices which helped redefine the genre of black situation comedy .\n", "that marked a strong contrast to khalilzad 's predecessor , john r. bolton , whose often-controversial rhetoric caused him to fail to be confirmed by the senate but obtained a recess appointment .\n", "as a junior , she ranked second in the ncaa in goals against average ( 0 . 3 4 8 ) and third in save percentage ( 0 . 9 2 ) .\n", "before being deactivated , vaw- 7 8 transferred some of its aircraft to vaw- 7 7 to replace older e- 2 cs in that squadron .\n", "he made several appearances on her family 's reality television show , `` i love jenni '' .\n", "confirmation of the acceptance of mr. black 's offer was noted at a meeting of the women 's hospital committee presided over by mrs. murray-prior at the southport school of the arts in september 1 9 2 1 .\n", "for me it 's just interesting to watch those worlds interact and also coexist simultaneously . ''\n", "a second series continuing with a team from the sheriffs office , contained fifteen episodes which aired daily ( on weekdays ) from 1 4 january to 1 february 2 0 1 3 at 1 1 : 0 0 am .\n", "pope benedict announced the appointment of 2 3 new cardinals on 1 7 october 2 0 0 7 , scheduling a consistory for 2 4 november .\n", "the hotel was expected to `` be the means of attracting thousands of people to long beach . ''\n", "the winning name was the colts , which is still used today .\n", "in 2 0 1 2 , minersville area school district declined to warning adequate yearly progress ( ayp ) status .\n", "this arrangement is sometimes referred to as 0 - 6 - 0 , the whyte notation equivalent .\n", "by 1 9 2 8 , she was playing starring roles , achieving success in mgm 's first talkie release , `` alias jimmy valentine '' ( 1 9 2 8 ) opposite william haines , lionel barrymore , and karl dane .\n", "after 1 9 9 2 , due to financial reasons , embassies in maseru ( lesotho ) , niamey ( niger ) , ouagadougou ( burkina faso ) , and port moresby ( papua new guinea ) were closed .\n", "it was succeeded by the `` state office of the interior '' ( `` staatsamt des innern '' ) of the first republic in 1 9 1 8 , and later renamed into `` federal ministry of the interior '' .\n", "the money has been used in part to the town 's establishing more than of trails , including the paumanok path .\n", "he was born in venice , where he studied but was forced to leave the republic and travelled through various parts of europe , till he settled at madrid in 1 6 8 0 .\n", "on 2 4 august , the lieutenant commander of the palestinian general intelligence in the gaza strip , tareq abu-rajab , was shot by group of armed men .\n", "funky flashman , who was a member of the first secret society of super-villains and who provided the white martians with metahuman genes , never revealed whether or not blur 's human dna came from barry allen or professor zoom .\n", "the british media has been criticised for being heavily critical of the portuguese police and legal system .\n", "it is one of the oldest and richest cultures in world history , dating from ancient antiquity to the modern era .\n", "afterwards , it meets us- 6 9 south of checotah .\n", "the place is also the site of important scientific endeavours , including : the introduction of cane toads into queensland ; breeding new sugar cane varieties ; and testing insecticides to control sugar cane pests .\n", "he was decapitated while sleeping in his tent near bukhara by some of his slaves ( 2 4 january 9 1 4 ) .\n", "since numerous plants and animals are so heavily reliant on each other within the mangrove systems , its destruction also endangers the existence of other organisms such as crustaceans and molluscs .\n", "asiri later claimed that his words had been mistranslated .\n", "the lahs surf team took second place over all in isf state championships in 2 0 0 9 .\n", "the city has an airfield which the british used to station shackleton aircraft to support the beira patrol from may 1 9 6 6 .\n", "the flash was created around 1 9 0 0 , but in 1 9 9 0 , the environment agency turned the flash into an overflow lake for the river don when it was under flood conditions .\n", "the eleventh line exhibits two common metrical variations : an initial reversal , and a final extrametrical syllable or `` feminine ending '' :\n", "he was made cardinal-deacon of santi biagio e carlo ai catinari in the consistory of 2 8 june 1 9 8 8 by pope john paul ii .\n", "most of the border is formed by the river songwe , whose source is found in the mountains to the south-west of mount rungwe and the town of tukuyu .\n", "while batting in april , koufax had been jammed by a pitch from earl francis .\n", "the chalk is overlain unconformably by the clays and sands of the reading formation , which were deposited during the palaeocene , the earliest part of the palaeogene period .\n", "sometimes , if cuthbert caused trouble , another person like an angry old lady or a policeman would chase after him .\n", "in the , bapaume had a population of 1 3 0 people .\n", "martin short , hank azaria , and bob odenkirk were reported to be interested in the part .\n", "guzmán casaseca lozano ( born 2 6 december 1 9 8 4 ) , known simply as guzmán , is a spanish professional footballer who plays for cd badajoz as an attacking midfielder .\n", "simone went away with her mother for a while after the loss .\n", "hemingway disliked these changes and attempted to have his name removed from the production .\n", "the rhynes near wembdon village have some early references , including fichet 's rhyne in 1 5 7 9 and the great or wildmarsh rhyne in 1 7 0 5 .\n", "convention of states action 's parent organization is citizens for self-governance .\n", "he did not continue watching for fear that he would start copying gervais ' characterizations .\n", "punjabi culture is the culture of the punjab region .\n", "inside , the ground floor salon is an intimate and versatile space with seating for up to one hundred .\n", "the brightest members of the cluster are of 1 0 th magnitude .\n", "the dovern was the next design , featuring a nine-stage axial compressor and single-stage turbine .\n", "this was their 1 4 th win , and also their 1 0 th in 2 0 years .\n", "this method has proven to be successful but there is a possibility that the cyst will not disappear fully but only shrink .\n", "when miller moved back to upstate new york a few years later , she worked at yuk yuk 's comedy club in buffalo , living in a $ 1 2 5 per month apartment over a pizza parlor near the club .\n", "his fighting stance produced a short and powerful image .\n", "the adventure has also been referenced in the nodwick comic series .\n", "legal protection of cultural property comprises a number of international agreements and national laws .\n", "on december 1 2 , 2 0 1 6 , hallal , along with alexion 's chief financial officer ( cfo ) vikas sinha , resigned from alexion citing personal reasons .\n", "although he changed his name to smollett on becoming a naturalised british subject in 1 9 3 8 , he returned to using the surname smolka when he returned to vienna after the war .\n", "champier added a codicil to his last wills in may 1 5 3 9 , and he is not noticed in any document after this date , so historians believe that he died in the second part of 1 5 3 9 .\n", "after an accident bathed him in the extra-dimensional energy of the darkforce , he had the chance to find out .\n", "by 2 0 0 0 , soper fell out of favour with gerhard berger , who was in charge of bmw 's motorsport operations and retired from racing as he was solely interested in racing bmws and acquired a bmw dealership in lincoln .\n", "attitude is one of jung 's 5 7 definitions in chapter xi of `` psychological types '' .\n", "in response , around 4 , 0 0 0 paramilitaries under the command of vojislav šešelj ( the white eagles ) and `` arkan '' ( the serb volunteer guard ) arrived to bolster the vsk .\n", "my conservative beliefs led me to where i am today . ''\n", "the distance between bhagauli tirth to state capital lucknow is 5 4 km .\n", "in a telephone interview , he attributed their vomiting and abdominal pain to antibiotics they had been given .\n", "the 1 9 8 7 philippine basketball association ( pba ) all-filipino conference was the second conference of the 1 9 8 7 pba season .\n", "a gene that produces rubisco helps this strain of `` r. palustris '' to achieve energy generation through electrons .\n", "this was the composition of the walloon parliament following the 2 0 0 4 regional election .\n", "cumulative sales of domestically built new energy vehicles in china totaled 1 , 7 2 8 , 4 4 7 units between 2 0 1 1 and 2 0 1 7 .\n", "the defect rate and maintenance costs would prove to be significantly lower for the compiler than for the software industry average .\n", "because of the limited shoreline of one super-continental mass , triassic marine deposits are globally relatively rare ; despite their prominence in western europe , where the triassic was first studied .\n", "the plane continued climbing , and conducted a series of four turns back towards vnukovo .\n", "in steyning the hook at the end of the chequer sign bracket was used to support the town lamp .\n", "the ferry terminals in patchogue lead to the communities of davis park a popular vacation communities for lgbt new yorkers , and watch hill visitor 's center , on the western edge of the otis pike fire island high dune wilderness area .\n", "dean responded , `` he 's trying to make me out as some clinton-gore fan .\n", "eighteen of the 2 3 cardinals were under 8 0 .\n", "the word is derived from the old javanese `` manuk '' meaning `` birds '' and `` dewata '' meaning `` of the gods '' .\n", "the fee was considerable given the 2 1 -year-old planned to stay at the club for only one year before returning to the scottish football league .\n", "as of the census of 2 0 0 0 , there were 2 5 7 , 5 5 5 people , 1 0 2 , 5 8 7 households , and 6 8 , 8 3 5 families living in the county .\n", "from 1 7 7 0 all items were marked with a date mark .\n", "in addition to the conventional molecular plastic crystals , there are also emerging ionic plastic crystals , particularly organic ionic plastic crystals ( oipcs ) and protic organic ionic plastic crystals ( poipcs ) .\n", "resemble a fibro-osseous lesion with no obvious ameloblasts whilst dominated by dense collagenous tissue ( desmoplastic ) .\n", "she won a gold medal at the 2 0 1 6 summer olympics in the women 's 6 9 kg category .\n", "in particular , for hard hexaferrites today the most common uses are still as permanent magnets in refrigerator seal gaskets , microphones and loud speakers , small motors for cordless appliances and in automobile applications .\n", "in terms of ancestry , 2 4 . 7 % were german , 1 8 . 3 % were english , 1 2 . 3 % were irish , and 7 . 0 % were american .\n", "ariedo braida , however , milan 's top transfer guru , was quoted as saying , `` they [ gago and higuaín ] only want to go to madrid . ''\n", "tradition and old records assert that southern somalia , including the mogadishu area , was inhabited very early by hunter-gatherers .\n", "he graduated in psychology from springfield college and clark university .\n", "with the arsenal not fit for human habitation , pressure quickly built to have it turned into a wildlife refuge .\n", "elias leight of billboard commended `` something to believe in '' for preserving hip-hop 's history of being grounded in soul and funk .\n", "peter is later arrested and charged with assaulting chloe and placed further in the frame for ken 's attack , which adds pressure to his relationship with toyah .\n", "the commander of a training base for the army air force in laredo complained to stevenson that half of his men had been infected with venereal diseases after they visited brothels run by parr .\n", "he is most notable for his work as part of the band grasscut , described by `` clash '' magazine as `` genuinely daring electronica artists '' .\n", "`` never give you up '' peaked in the uk at # 2 0 .\n", "in contrast , xhch-tv , and later its sister station xhit-tv channel 4 which came on the air at the end of the 1 9 6 0 s , were part of the tele-cadena mexicana system .\n", "the german forces were still in comparative disarray after the minsk offensive .\n", "this shows how much van wassenaer appreciated dou 's `` grocer 's shop '' and it is possible that van mieris made his own version modelled closely after dou 's to please his patron .\n", "nmda receptors are notable for their excitatory mechanisms to affect neuronal plasticity in learning and memory , as well as neuropathologies such as stroke and epilepsy .\n", "he left sochi on 3 1 july 2 0 2 0 .\n", "geoffrey returned to genoa on 1 1 january 1 2 9 3 .\n", "that match was once again won by britenay after she used the ropes as leverage to gain an advantage and take the pinfall , resulting in evie vs britenay for the ipw women 's championship at ipw destiny .\n", "it was also added to the list of great books of the 2 0 th century , published by penguin books .\n", "although he experimented with rapping early in his music career , he has stated in an interview that he was n't impressed by his own rapping ability and has focused his vocal efforts on singing .\n", "in terms of the big five personality traits , neuroticism significantly predicted occurrences of earworms .\n", "the federal information processing standard ( fips ) code , used by the united states government to uniquely identify counties , is provided with each entry .\n", "šumice ( , ) is an urban neighborhood of belgrade , the capital of serbia .\n", "the pilot who flew the mission reported inferior energy maneuverability , a limited pitch rate and flying qualities that were `` not intuitive or favorable '' in a major part of the air-combat regime gave the f- 1 6 the tactical advantage .\n", "from 1 9 6 2 to 1 9 6 6 he attended the university of north carolina receiving his b.a .\n", "maleeva married swiss tennis coach françois fragnière in 1 9 8 7 and from then on , began competing as manuela maleeva-fragnière .\n", "it eventually began branding as `` fox 3 0 `` by the early 1 9 9 0 s .\n", "they also toured with carrott as a live support act .\n", "the party then lost the majority of its mps in the 2 0 1 7 legislative election , securing 2 6 seats and becoming the fourth-biggest group in the national assembly .\n", "singapore is increasingly regarded as having four sub-literatures instead of one .\n", "her feast is celebrated on the anniversary of her death .\n", "the monastery complex is considered a separate national historic-cultural preserve ( sanctuary ) , the national status to which was granted on 1 3 march 1 9 9 6 .\n", "the area scale factor is the product of the parallel and meridian scales .\n", "in 1 8 9 7 susanna preston walker lees ( otherwise known as susan p. lees ) , of new york , made large donations to the institute .\n", "part of the depot 's east wing has been removed to create an open courtyard .\n", "the compact discs are 3 -inch or ( 8 cm ) , with sleeves called snap-packs , as they could be `` snapped and folded '' into a small square .\n", "in amd there is a progressive accumulation of characteristic yellow deposits , called drusen ( buildup of extracellular proteins and lipids ) , in the macula ( a part of the retina ) , between the retinal pigment epithelium and the underlying choroid .\n", "in 2 0 1 5 the same cd label released a cd with her chamber music for strings , played by the brodsky quartet ( cpo 7 7 7 9 9 4 - 2 ) .\n", "this german socialism puts the `` welfare of the whole above the welfare of the individual '' .\n", "after examining the wreckage of the `` phantom '' , ivan confirms his suspicions that his entire escape from ganio was orchestrated by someone who wants access to doom .\n", "modern reviewers have tended to assess it even more favorably , with `` the new york times '' naming it one of the 1 0 0 0 best films ever made .\n", "this supports the statement that athletes with more exposure to these helmet to helmet hits will be more prone to concussions .\n", "thus , the division ceased to be an infantry formation .\n", "it was n't until may , 1 9 6 4 that the allco patients were transferred to pearson hospital and those from the marpole infirmary in april of the following year .\n", "at the time , it was available as a 3 2 0 x 2 4 0 resolution 4 8 7 mb download for $ 9 . 9 9 after initially being mistakenly listed for $ 1 . 9 9 .\n", "he attended sacred heart parochial school in newport , and graduated from newport high school .\n", "it was still in raetia on its last attested date , 1 6 6 .\n", "the signal can be received throughout the bay area with relative ease .\n", "pearson hospital ( now george pearson centre ) was built in 1 9 5 2 for tuberculosis patients at first , then an extension was built for polio patients .\n", "the yadavas were defeated by the khaljis in 1 3 2 1 .\n", "if they could complete the challenge without justine realising they would win .\n", "well-designed , dose-finding studies and comparisons against both a placebo and a gold-standard treatment arm play a major role in achieving reliable data .\n", "james robert wallace ( born 1 9 december 1 9 9 1 ) is a former english footballer who played as a midfielder .\n", "megan rye ( born 1 9 7 5 in seoul , south korea ) is an american painter , living and working in minneapolis , minnesota .\n", "both reflect aspects of gabriela and benito 's relationship , and the latter is quoted by the characters to show how the moon is `` inconstant '' and can not be a true friend to gabriela .\n", "the village made news in october 2 0 1 4 when general dalbir singh suhag was appointed as a new army chief of india .\n", "he was concerned that in the judgment no heathen can be justified in `` pitching into us for not pitching into them more savagely , for not , in fact , taking them by the cuff of the neck and dragging them into the kingdom . ''\n", "for example , if a lens ' focal length were 1 0 mm and its entrance pupil diameter were 5 mm , the f-number would be 2 .\n", "gradually , his collection grew to be one of the largest private collections in the world : it contained about 3 , 0 0 0 specimens from 4 0 0 different meteorites .\n", "on 1 6 july they attacked , with the goal of encircling and destroying a part of the union forces there .\n", "pather is only a short walk into the town centre and main shopping area of wishaw .\n", "the film was photographed in 6 5 mm todd-ao by harry stradling\n", "on july 1 6 , oklahoma governor `` alfalfa bill '' murray ordered the new bridge open , by executive order .\n", "in addition to the u.s. air force song , there have been several other songs that have been at times used by the air force regionally and nationally during public events .\n", "he lost nine minutes during the first stage after his hummer 's engine lost oil pressure .\n", "these lands had formed a very large lordship under baelen on the route between the important imperial centres of liège and aachen .\n", "inter paid a fee of r $ 2 million .\n", "westermann was subject to his first major museum retrospective in november 1 9 6 8 at lacma an expanded version of which traveled to the museum of contemporary art chicago .\n", "`` darkness '' is a maxi-single from the recording sessions of hard rock band aerosmith 's eighth album `` done with mirrors '' .\n", "it was built in 1 8 6 0 s , and adapted for use as worker housing for g.h .\n", "the procellariids are the main group of medium-sized `` true petrels '' , characterised by united nostrils with medium septum and a long outer functional primary .\n", "they had no formal titles , and were known locally as squires .\n", "it created that year a distance-learning undergraduate degree in law , the first and unique one in france .\n", "around 1 9 2 8 rao worked in the northeast of jiangxi with central delegations of ccp .\n", "the restoration movement ( also known as the `` stone-campbell movement '' ) generally refers to the `` american restoration movement '' , which began on the american frontier during the second great awakening of the early 1 9 th century .\n", "in 2 0 0 9 , about 2 5 , 0 0 0 rounds of golf were played on the course each year .\n", "virginia formed on june 1 8 in the open western pacific east of the southern philippines .\n", "the confederate efforts to get around them were checked by the men of the 5 4 th massachusetts , who rebuffed a series of attacks while the 1 0 th connecticut was withdrawn .\n", "they are listed on the stock index of the ghana stock exchange , the gse all-share index .\n", "he returned to shanghai in 1 9 7 6 , and joined the huaihai road production corps , rising rapidly through the ranks .\n", "until then , the existence of such microscopic organisms was entirely unknown .\n", "although none of the lp 's tracks made the hot 1 0 0 , one of the cuts , `` beat the street '' , made it to # 4 1 on the billboard hot black singles chart .\n", "his book `` krishen jit : an uncommon position - selected writings '' was published in 2 0 0 3 by contemporary asian arts centre , edited by kathy roland and baha zain .\n", "during the first intifada and the second intifada , the palestinian center for rapprochement between peoples ( pcr ) based in beit sahour encouraged non-violent activism under the aegis of the international solidarity movement .\n", "his work highlights the virtues of traditional thai culture , such as rice farming practices , temple paintings , and buddhist imagery , while blending western and local techniques of printmaking , drawing , sculpting , and painting .\n", "his father james w. milliken and his son william milliken also served in the michigan senate .\n", "this move was due to budget cuts and aging facilities in the other schools .\n", "wanderer decides to let leafie look after the egg for a few days , meaning to exact revenge on one-eye and ensure their protection .\n", "scottish armigers are those individuals with a hereditary right , grant or matriculation of arms so entitling them to use personal arms by the court of the lord lyon .\n", "dividend payments to the holders of capital shares may be reduced or even suspended entirely before reductions can be considered in the dividends paid to the holders of the preferred shares .\n", "the parish of saint stephen in washington , d.c. , was established on august 4 , 1 8 6 7 , when the rev .\n", "written by the hong sisters , the romantic comedy is set in the entertainment industry and about an unlikely romance between a has-been pop-star and a top actor .\n", "the previously planned route of the bypass , prior to 2 0 1 2 , followed lord street , east of whiteman park .\n", "the nearest craters of note are spallanzani to the south , and the much larger maurolycus and barocius to the east .\n", "both cross-country skiing , alpine skiing and even ski jumping is practiced almost in the downtown area .\n", "he refuses to leave his motherland for greener pastures and sets out to serve his people .\n", "some people feel that a win at the world dog show is worth more , reputation-wise , than the same win at the westminster kennel club show .\n", "he asked me how would i devise a bracing without any interior bracing that would restrict the movements inside .\n", "facilities include mountaineer bowl ( elevation ) and paul wright gym ( elevation ) .\n", "cavallo was reassigned as minister of economy , and his successful economic plan turned him into a prominent figure in menem 's cabinet .\n", "ultimately she does not go back to school , and is offered a writing job involving a trip to dublin where she meets musician john kite .\n", "the national coalition against censorship ( ncac ) , founded in 1 9 7 4 , is an alliance of 5 0 american non-profit organizations , including literary , artistic , religious , educational , professional , labor , and civil liberties groups .\n", "the racing miku design for the season was done by mari shimazaki .\n", "upon its completion , he was posted to the 7 th battalion in nairobi .\n", "on arrival in cuba on 5 december , cockburn had complained to garvey that the white officers were causing trouble and had tried to run the ship aground .\n", "females and immatures are duller in colour than males .\n", "when the icebreaker passed the lighthouse of harmaja , the men broke into the ship 's weapons storage and shortly afterwards the russian crew of 1 1 6 , half of them armed guards , had been taken into custody .\n", "peeled tamarinds are soaked in water , and then boiled and sugar is added .\n", "on 2 3 january 2 0 2 1 , fernandes agreed to a return to turkey and joined i̇stanbul başakşehir on a free transfer .\n", "the first recorded mention of dadens was in 1 7 7 4 , though not by name , by the explorer juan perez , who sailed past it .\n", "warr was a solicitor who had held the seat since he was elected unopposed in a by-election in 1 8 9 5 .\n", "the hope now would be that stoke could mount a serious promotion challenge but again results were far too inconsistent and stoke ended the season in mid-table for a third straight season .\n", "his time at lechia saw 3 promotions and 2 relegation 's , and was part of the first lechia team to play in polands top division .\n", "the front suspension was conventionally arranged , with unequal length double wishbones and inboard coil springs and dampers .\n", "the interview offers the best available insight into dark avenger 's personality and motives , and it contains some valuable information .\n", "as a result , many patients had to wait for transport units , including one cardiac arrest patient who had to wait 4 0 minutes for an ambulance from neighboring prince george 's county , md .\n", "only 2 4 rivers are over 1 0 0 kilometers long .\n", "he became known for his contribution to london politics and in february 1 8 9 0 was chosen as an alderman of the london county council ; the added work caused him to resign his chair at cambridge .\n", "the authors were part of the american anti-slavery society , such as lydia maria child , an abolitionist and women 's rights advocate who served on the american anti-slavery society board during the 1 8 4 0 s and 1 8 5 0 s .\n", "garcia commented , `` even though he 's won all his races , he 's still learning .\n", "those include beni and butembo in north kivu province , due to the 2 0 1 8 ebola outbreak as well as the ongoing military conflict , and yumbi in the western mai-ndombe province , where about 9 0 0 people were killed throughout december by inter-ethnic violence .\n", "once the filament is formed , it may be `` reset '' ( broken , resulting in high resistance ) or `` set '' ( re-formed , resulting in lower resistance ) by another voltage .\n", "the men of the 1 0 th connecticut infantry were in an exposed position , and in jeopardy of being cut off .\n", "it was recorded on march 1 6 , 1 9 5 8 , and was brooks ' first album as a leader for blue note records .\n", "since 1 september 2 0 1 5 , `` discrimination ( jersey ) law 2 0 1 3 `` includes intersex status within its definition of sex .\n", "early partners paul sylva and jim beauvais , founders of ipswich brewery , were quickly bought out .\n", "in 6 5 percent of cases of scfe , the person is over the 9 5 th percentile for weight .\n", "1 4 . 0 % of all households were made up of individuals , and 4 . 5 % had someone living alone who was 6 5 years of age or older .\n", "she was the first white woman to visit the havasupai nation .\n", "since education is in the responsibility of the cantons ( except for the federal universities ) , grading notations may differ depending on the region .\n", "the mountain and its environs are considered sacred by local residents ; the water from its sacred springs are deemed `` holy water '' for allegedly having beneficial qualities , issuing forth from locations called `` puestos '' or `` holy sites '' .\n", "since 1 9 9 8 pagliassotti has been the editor in chief and publisher of `` the harrow '' and owner of the harrow press .\n", "knott was a librarian and teacher before entering parliament .\n", "it displays original 1 2 th century features which include the south doorway with colonettes in recessed jambs , scalloped capitals and a round arch ornamented with zig-zag and billet decoration , and a blocked doorway with similarly decorated round arch at the western end of the north wall .\n", "after the french surrender to nazi germany in june , they hastily convened an expanded party conference in my tho , deep in the heart of the mekong delta and agreed to initiate preparations for the insurrection .\n", "abigail deveraux is a fictional character from `` days of our lives '' , an american soap opera on the nbc network .\n", "gas was also transported in special travelling gas reservoir wagons from the gasworks to stationary reservoirs located at a number of country stations where carriage reservoirs were replenished .\n", "he brought the story to writer/director jean van de velde .\n", "the lnwr position was indefensible and euston square had no option but to terminate the arrangement ; this was done on 1 2 may 1 8 5 7 .\n", "scores for each shot are in increments of 1 , with a maximum score of 1 0 .\n", "`` galaxy force '' was critically acclaimed by several publications , and is seen among sega 's best arcade games of the era .\n", "he was subsequently dismissed from this role on 1 2 june 2 0 1 7 .\n", "colonel daughtrey , major hodges and other regimental officers .\n", "ryan became a city alderman in 1 8 8 4 and served in that role until he was elected mayor for a single one-year term in 1 8 8 9 .\n", "she is a violin prodigy , as seen in the episode `` to be young , gifted , and blank . ''\n", "`` video games player '' magazine , in the august/september 1 9 8 3 issue , called `` stargunner '' `` a better than average outer space shoot-'em-up game . ''\n", "solar powered boats have mainly been limited to rivers and canals , but in 2 0 0 7 an experimental 1 4 m catamaran , the sun 2 1 sailed the atlantic from seville to miami , and from there to new york .\n", "the surround comes with a 5 -megapixel camera with built-in auto focus and flash located on the rear of the phone .\n", "the poinsettia bowl was organized by the same organizing committee as the holiday bowl .\n", "the french army had overrun much of the austrian netherlands after their success at the battle of fontenoy and the withdrawal of part of the british army to deal with the jacobite uprising at home .\n", "this was criticized as these regions are known as opposition strongholds .\n", "the average household size was 2 . 6 1 and the average family size was 2 . 9 4 .\n", "traffic is regularly counted and reported by hrvatske ceste , operator of the road .\n", "an incident on the september 2 1 , 2 0 0 6 broadcast sparked controversy when , during an interview with `` weird al '' yankovic , the crew asked about the death of yankovic 's parents , causing him to become audibly upset .\n", "and it was not until 1 7 8 9 that there was a recorded landing , achieved by captain william douglas .\n", "each semi-cell houses a large , often folded chloroplast for photosynthesizing .\n", "an n-glycosylation site has been predicted by expasy 's netnglyc at ngss [ 2 4 aa ] with a secondary site also possible at ngtn [ 2 1 aa ] .\n", "the morello-terranova brothers soon started taking over the growing `` little italy '' in east harlem , by using the black hand technique of extorting small business and running illegal gambling operations .\n", "marathon motor works was an early automobile manufacturer based in tennessee .\n", "sogndal is the 9 7 th most populous municipality in norway with a population of 1 1 , 8 4 7 .\n", "the precise structure of the national competition varies from country to country .\n", "he was also inducted into the north dakota state athletic hall of fame in 1 9 7 7 .\n", "bace 1 -as , also known as bace 1 antisense rna ( non-protein coding ) , is a human gene at 1 1 q 2 3 . 3 encoding a long noncoding rna molecule .\n", "in 1 7 8 1 he was for a time in command at york .\n", "sir francis tress barry partially excavated skitten broch in 1 9 0 4 .\n", "outlets selling pizzas , kebabs , pakoras and other convenience foodstuffs have also become increasingly popular , with an extreme example of this style of food being the munchy box .\n", "jakubów is a village in mińsk county , masovian voivodeship , in east-central poland .\n", "he has been engaged in research on famous armenians , armenian art and culture for many years .\n", "during the review carried out at the site , they confirmed he had been shot four times , two of which entered the head .\n", "she studied medicine at the university of santo tomas , after which she worked as a professor in the university 's faculty of medicine and surgery , and as a physician at the ust hospital and the national center for mental health .\n", "the elephant became an endangered species in thailand in 1 9 8 6 .\n", "`` viva la vida '' reached the top spot of the uk singles chart and `` billboard '' hot 1 0 0 , becoming the band 's first number-one single in both the u.s. and u.k .\n", "`` truth or dare '' , however , was not released .\n", "known as the restored government of virginia , it was officially recognized by the lincoln administration .\n", "meanwhile , agnetha fältskog and anni-frid lyngstad slowly began their english-language solo careers .\n", "the fuel tank holds and the fresh water tank has a capacity of .\n", "the kaqchikel narrative is quite gloomy , describing the forefather 's departure from tulan accompanied by a negative omen and the presaging of death and dismay .\n", "the system 's depot , which included a shed with a capacity of fifty tramcars , a boiler house and generating house , and an office building , was located to the south of luton high street opposite christchurch .\n", "u.s. highway 1 2 , which was built in the 1 9 2 0 s , was widened to four lanes , and the population swelled .\n", "foxx played the role of fred g. sanford ( `` fred sanford '' was actually foxx 's father 's and brother 's name ) , while co-star demond wilson played the role of his son lamont .\n", "after hearing stories from former child soldiers who had been through war child holland 's programmes , borsato became interested in initiating a film inspired by these stories .\n", "`` prasophyllum constrictum '' is listed as `` rare '' under the south australian `` national parks and wildlife act 1 9 7 2 `` .\n", "by 1 9 1 6 most cavalry machine-gun sections and two complete cavalry divisions had been dismounted and seconded to the infantry .\n", "the new york university archives has served , since 1 9 7 7 , as the final repository for the historical records of new york university ( nyu ) , in greenwich village , new york , u.s .\n", "her grandmother , katherine , who had fallen off the wagon , was thrilled to see her .\n", "since 1 9 9 9 the university 's department of philosophy has published the journal `` ethics & amp ; politics [ etica & amp ; politica ] '' .\n", "he was mayor of liverpool for the year 1 7 3 3 to 1 7 3 4 .\n", "a proof for the weak conjecture was proposed in 2 0 1 3 by harald helfgott .\n", "an official opening ceremony was organized in baku on may 1 2 , 2 0 1 7 .\n", "when mabel was 1 4 , a young man allegedly told her mother that mabel was 'dull , plain and reads too much ' , prompting a dramatic change in her parents ' approach to her upbringing .\n", "u.s. settlers led by isaiah d. hart wrote a charter for a town government , which was approved by the florida legislative council on february 9 , 1 8 3 2 .\n", "rulers of nations , also known as geo-political-simulator 2 , is the second installment of the `` geo-political '' series .\n", "around iceland maturing capelin make large northward feeding migrations in spring and summer .\n", "in 1 8 8 8 , charles and his wife harriett returned to visit england , and on their return made plans to build a new house , much grander than the first .\n", "she held the role of matilda for until mid- 2 0 1 6 , playing in various cities across the us .\n", "there are more than 1 2 0 events that sponser teams to compete at worlds , and without receiving a bid to attend , a team is ineligible to compete at this end-of-season event .\n", "the cover image was taken by muffins ' guitarist mark gane from an apartment he was living in on bloor street in toronto .\n", "in 2 0 1 1 , usc and the [ [ doheny eye institute ] ] fell into a dispute over renovations , permits , and other matters related to the building , which led to litigation .\n", "yet in spite of these tensions free elections were able to be held under de león 's rule .\n", "light-gas guns have been used to study shock hardening .\n", "he won the group in the third round thus advancing to the final round .\n", "the event currently carries a purse of $ 1 0 0 , 0 0 0 .\n", "the etr was 0 % ) , irish commentators challenged coffey 's recommendation .\n", "the transgenerational design concept establishes a common ground for those who are committed to integrating age and ability within the consumer population .\n", "nanda and his friends were arrested , but his clothes , and those of the others who helped clean the car , were never found .\n", "these allegations were then reiterated in the british houses of parliament by a member of the democratic unionist party .\n", "there are minor discrepancies between round points and the total points for some drivers in the quoted reference at touringcarmasters.com.au ( e.g .\n", "finding him in cerebra , scott tells her five new mutants have manifested their powers across the globe .\n", "when it turns out he has no vineyard skills he is to be sent off to a concentration camp .\n", "heartbroken , leopold `` sought consolation in the natural world , sketching the plants in the countryside around his home . ''\n", "the `` advocate '' reported that boham left porn about a year before the murder and went to live in denver , eventually working for john paul `` j p '' kelso but only for about 1 0 days before failing to show up for his job .\n", "kibbee began his career writing for radio in 1 9 3 1 , working with jack lescoulie , and later collaborated with nat hiken , writing for the series `` the grouch club '' , which starred lescoulie .\n", "hornby castle is a country house , developed from a medieval castle , standing to the east of the village of hornby in the lune valley , lancashire , england .\n", "jimmy kay , however , was more interested in buying the tip top tailors chain of stores than the head office building , a proposition the dunklemans also rejected .\n", "on april 3 0 , 2 0 1 9 , guidry received a seven-year prison sentence .\n", "within its first twenty years the town was established as a vital part of the canal industry , specializing in the restoration , building , and repairing of boats along the lehigh canal which ran parallel to the lehigh river .\n", "in the united kingdom the position still exists today , related to management of the community 's graveyard , and the sexton is usually employed by the town/parish or community council .\n", "the following table is pre-sorted by age of the first olympic appearance ( in ascending order ) , date of the first olympic appearance ( in ascending order ) , cap number or name of the player ( in ascending order ) , respectively .\n", "on the western part were the zambales mountains with thick forests and verdant foliage .\n", "at taroom , rations were also supplemented by garden produce ( when available ) , and through sourcing game and native plants found on the reserve and surrounding properties .\n", "in 1 9 8 9 the glee club spent three weeks touring asia with concerts in hong kong , japan , and south korea .\n", "however , most towns depend on free publicity to raise awareness .\n", "after some engagements in halle and berlin ( `` neues theater '' und `` lessingtheater '' ) she was only sporadically seen on german stages .\n", "michael schenker has his own signature model , which has the custom michael schenker split black and white design .\n", "in 1 9 4 9 he was a founder of the medina foundation , which provides charitable grants in the greater puget sound area .\n", "major alexander henderson , the laird of westerton , drew up plans of how he wanted the village to be laid out in 1 8 5 0 , envisaging spacious streets with pleasure grounds in the woods .\n", "his poems and prose have been re-printed today and form a part of the canon for manx language learners .\n", "marion lake was named in 1 8 7 4 by john minto 's marion county road-viewing party in 1 8 7 4 .\n", "the song was regarded as the best dance sequence in indian cinema .\n", "during this time settlers began the centuries-long process of dispossessing the natives of america of millions of acres of land .\n", "a `` market garden '' was simply a vegetable plot , the produce of which the farmer used to sell as opposed to use to feed his or her family .\n", "junge described schaub in her memoirs as `` extremely kind , but very curious too '' .\n", "after world war i ended in 1 9 1 8 , the klaipėda region was defined as a roughly triangular wedge , with the northern border being the treaty of melno border , the southern border following the neman river , and on the west abutting the baltic sea .\n", "the thai elephant ( , `` chang thai '' ) is the official national animal of thailand .\n", "this system was legalized in the west bank retroactively under two military order no .\n", "a church hall in jamaica whose construction was partly financed by lurgan people was opened in 2 0 0 1 , it was named `` the father sean lavery faith hall '' in his memory at savanna -la-mar .\n", "antiques appraiser david battie , who is an expert on `` antiques roadshow '' and previously at sotheby 's .\n", "white rose , julian white rose , j. resigna , and , his real name , henry julian .\n", "located in western sicily , on the rail line between palermo and trapani , balestrate is exactly in the center of the gulf of castellamare .\n", "he took meticulous care with every detail because he intended his house to sit on the dune solid as a good ship .\n", "in pennsylvania , 8 1 % of 8 th graders on grade level .\n", "since the turning angle at a corner is equal to π minus the interior angle , we can rephrase this as follows :\n", "the 8 6 th expeditionary signal battalion enables mission command for supported units , without signal assets .\n", "initially , the game was supposed to make each toa , toa nuva , and the toa of light playable , but due to deadlines , much of the game was dropped .\n", "aynesworth was himself `` debonair and stylish '' , and alexander , who played jack worthing , `` demure '' .\n", "he has also directed episodes of the television series `` the hidden room '' , `` the eleventh hour '' , `` queer as folk '' , `` saving hope , '' `` rookie blue '' and `` orphan black '' .\n", "in the community , otherwise healthy people can become persistent skin carriers of mrsa , or faecal carriers of enterobacteria strains which can carry multi-antibiotic resistance factors ( e.g .\n", "during the time of yoshiie 's son tameyoshi , onimaru was renamed shishinoko ( 獅子の子 , `` lion 's child '' ) and kumogiri was renamed hoemaru ( 吠丸 , `` howl- '' maru '' '' ) .\n", "it includes ripening rooms and areas that vary in temperature from a base temperature of 5 5 °f year-round to freezer rooms of - 1 0 °f .\n", "in the `` menggam bon-puri '' , the man is a hunter who is warned by a benevolent skull , which also makes him rich .\n", "as well as managing tahr , chamois , deer and pig the council will promote hunters ' safety and improve hunting opportunities .\n", "the parliamentary secretary to the board of education was a junior ministerial office in the united kingdom government .\n", "it was described by francis polkinghorne pascoe in 1 8 6 7 .\n", "however , work was then placed on hold while the federal government decided whether the sp 's lease of the cp violated the sherman antitrust act .\n", "his term as mayor was overshadowed by a desire to reform government institutions instead of focusing on the problems of the city .\n", "uniquely for their price range , all instruments feature aftertouch .\n", "her last publication was another memoir in 1 9 4 7 : `` quand j'étais jeune '' ( `` when i was young '' ) .\n", "the pacific tree frog ( pseudacris regilla ) , also known as the pacific chorus frog , has a range spanning the pacific northwest , from northern california , oregon , and washington to british columbia in canada and extreme southern alaska .\n", "army national guard member thomas norton announced his candidacy in april .\n", "she is a commander of the order of merit of the police forces , the order of st. john , and has the humber college alumnus of distinction award .\n", "the barker school was built at unique in either 1 8 7 3 or 1 8 7 9 .\n", "the company later became the byron typewriter company and was taken over by the british oliver typewriter company , under licence from the us oliver typewriter company , in 1 9 4 8 .\n", "it also planned to build branches south to klamath falls and lakeview , the former connecting with the california northeastern .\n", "`` , that debuted in 1 9 9 0 and aired for seven seasons on the itv network in the united kingdom .\n", "mabuza-suttle returned for a short time to south africa in 1 9 8 2 to work for radio bophutatswana , where she was criticised for being politically incorrect .\n", "this station is on both exterior and interior a good example of the building type , its character defining features well-maintained and intact .\n", "the other one-time sketches follow the same pattern but with only two parts each , while the remaining recurring sketches are treated as regular segments .\n", "the stairs are protected at the top by a rectangular turret .\n", "the list of shipwrecks in march 1 8 4 1 includes ships sunk , foundered , wrecked , grounded , or otherwise lost during march 1 8 4 1 .\n", "the nearest railway station is the tirunettur railway station , located at the northern part of nettoor .\n", "a number of archaeological excavations of the area have revealed the remains of houses which were anglo-norman in style , made mainly of timber and wattle .\n", "`` note : g = games pitched ; ip = innings pitched ; w = wins ; l = losses ; era = earned run average ; so = strikeouts ''\n", "the building was devastated by the far-right legionaries in 1 9 4 1 .the synagogue was rebuilt after the war .\n", "they found the one-month-old car , purchased in his sister sonali nanda 's name , with foreign number plates , which had not been registered in india .\n", "these include 드리다 ( `` deurida '' ) and 올리다 ( `` ollida '' ) for 주다 ( `` juda '' , `` give '' ) .\n", "foundations often have the flexibility to transcend local barriers and collaborate internationally .\n", "on 2 8 march , the foundation set up by the chinese billionaire jack ma and the alibaba group sent a second aircraft carrying various medical supplies to pakistan .\n", "it is unclear whether pashukanis 's transformation was simply the result of fear for his safety , or whether he actually changed his mind .\n", "martin cohan was the co-producer/co-executive producer from 1 9 7 9 to 1 9 8 5 on diff'rent strokes .\n", "the village of yorkville is in the southeast part of the town of whitestown adjacent to the city of utica .\n", "however , it quickly oxidizes and absorbs atmospheric sulfur to create a dark , low-reflectivity tarnish .\n", "it was the first to break the news of the high rate of salmonella in us chicken processing plants in july 2 0 0 6 .\n", "the xbox 3 6 0 version also initially contained a number of bugs which were corrected via an online update as of october 2 5 , 2 0 0 6 .\n", "she holds a personal best of 2 : 3 8 : 3 2 hours , set in 1 9 8 7 .\n", "it has been assumed to be named in honour of james gordon bremer , a naval officer on hms `` tamar '' .\n", "yangi-aul ( ) is a rural locality ( a village ) in davletovsky selsoviet , abzelilovsky district , bashkortostan , russia .\n", "morrison 's obituary notice summarizes his dedication and contribution to the world , `` in efforts to make this [ chinese ] language known to foreigners and chiefly to the english , he has done more than any other man living or dead . ''\n", "the earlier body was `` a fine creamy white with a well-used glaze '' , but from 1 7 7 4 the paste was made with local china clay , generally mixed with `` passau earth '' ( `` passauer erde '' ) , resulting in lower quality .\n", "the idea for the film originated with singer marco borsato , who is an ambassador for the non-profit organisation war child holland .\n", "he dedicated two acres to the exclusive cultivation of the heart stimulant digitalis , which helped produce over 2 0 , 0 0 0 bottles of tincture during world war i .\n", "whereas most controllers used a d-pad with mechanical switches , the turbo touch had an octagonal plate with eight capacitive touch sensors arranged in the cardinal directions ; contrary to the `` 3 6 0 `` name , the controller only provided digital input along the cardinal directions .\n", "at one point , wayzata had ten gas stations to serve a growing number of commuters and their cars .\n", "the wolverine defense won this matchup , holding wisconsin to just 1 2 rushing yards and 3 second half points .\n", "this portion is being irrigated by branches of the indira gandhi canal project .\n", "the lower major tributaries of the tongue ( pumpkin creek , ottor creek , hanging woman creek , prairie dog creek ) all have gravel roads branching off the tongue river road and running along their length , providing access to local ranches .\n", "the colony of virginia chose the larger interpretation , and the commonwealth of virginia continued to claim much of the ohio valley and beyond until after the american revolution , relinquishing its claims to the northwest territory only in 1 7 8 4 .\n", "in 2 0 0 7 , he was elected house minority leader , a post which he held until his retirement in 2 0 1 5 .\n", "by 2 0 1 7 the number of captive elephants had risen to an estimated 3 , 7 8 3 .\n", "duncan attended chattahoochee high school in alpharetta , georgia , and georgia institute of technology .\n", "1 4 7 squadron , often referred to as the flying ibex or goring ram squadron , is a former unit of the israeli air force .\n", "i went straight from my mother 's womb onto the gay parade '' .\n", "the film is shot through the eyes of a peeping tom paparazzo , who leeringly takes lurid shots of celebrities in the privacy of their own homes .\n", "the most powerful forces in the land were the great hiberno-norman earldoms such as the geraldines , the butlers and the de burghs ( burkes ) , who controlled vast territories which were almost independent of the governments in dublin or london .\n", "christians and earlier hebrews were , according to schmidt , influenced by the belief that `` woman [ was ] ... unequal to man '' , producing `` sexist theology '' .\n", "after learning a black and white printing method , salaün decided to open his own workshop .\n", "in 1 9 6 9 , he was elected chairman of the bulawayo council of churches , an office he held until 1 9 7 1 .\n", "the commencement of npf 's activities in southwestern ontario coincided with their expansion into quebec .\n", "unita spokesman adalberto da costa initially said that the party would legally challenge the election before the constitutional court , arguing that the necessary conditions for the election were absent in luanda .\n", "the name used on the italian maps comes from piedmontese `` bagnà '' ( « wet » ) , which should derive from the look of the blackish fine ground nearby the summit .\n", "the album won the taite music prize the following year .\n", "this is what the lord , the god of israel , says : ' i anointed you king over israel , and i delivered you from the hand of saul .\n", "is saigo kichinosuke , the commander of the satsuma domain 's army , whose in-game avatar is identical in appearance to goda .\n", "promoters in australia during this period often staged races billed as either a `` world speedcar championship '' or `` world speedcar derby '' .\n", "1 7 . 0 % of all households were made up of individuals , and 3 . 8 % had someone living alone who was 6 5 years of age or older .\n", "after the completion of the project , the airport was turned-over to the civil aviation authority of the philippines .\n", "the two largest basins on the plateau are the `` konya ovası '' and the basin occupied by the large salt lake , tuz gölü .\n", "in 2 0 0 8 , the university of louisville foundation agreed to purchase the 3 3 -acre manufacturing tract .\n", "her discovery of his plan to win back hillary further destroys her trust and loyalty for the man she loved and protected all her life .\n", "stern joined academy films in 1 9 9 7 , launching himself with the video for the verve 's `` bitter sweet symphony '' .\n", "in 1 3 4 5 , having finally committed to the barlaam party , patriarch john convened a synod that excommunicated gregory palamas from the church and had him imprisoned for three years , until after john 's death in 1 3 4 7 .\n", "kruskall ms , weitzman sa , stossel tp , harris n , robinson sh .\n", "boarmiini in the narrow sense are typically slender geometer moths that rest with the wings spread out flatly and do not tuck the hindwings under the forewings while at rest .\n", "eventually , the new version was redesignated the m 4 6 general patton and 1 , 1 6 0 m 2 6 s were rebuilt to this new standard .\n", "the topic is difficult to study because of the lack of direct evidence .\n", "calumet is located at the junction of arkansas highways 1 5 1 and 1 8 1 on the northeast border of gosnell .\n", ", he ( along with his partner xu chen ) was ranked within the top 1 0 male badminton doubles teams in the world .\n", "roland schlosser ( born august 2 3 , 1 9 8 2 ) is an austrian fencer .\n", "despite the legal affiliation , the ppsb is governed separately from philpost .\n", "the overall length of the bridge is , with the western span measuring and the eastern span one foot less .\n", "he did his residency in obstetrics and gynecology at the thomas jefferson university and a fellowship in infectious disease at temple university hospital .\n", "on 2 2 june 1 9 5 4 , hulme 's 1 5 -year-old daughter juliet and her school friend pauline parker murdered pauline 's mother , honorah mary parker , in the hills of victoria park , cashmere .\n", "the american law institute 's model penal code generally restricts strict liability to minor offenses ( `` violations '' ) .\n", "elmo was created in 1 9 7 9 and was performed by various puppeteers , including richard hunt , but did not become what his eventual portrayer kevin clash called a `` phenomenon '' until clash took over the role in 1 9 8 3 .\n", "the criteria are largely met through the work of volunteers and fundraisers , especially in the initial stages .\n", "stevens died in 1 8 7 2 , leaving his daughters $ 1 0 million in inheritance , which allowed his daughter mary ( also known as minnie ) to become a wealthy socialite in london society and marry general sir arthur henry fitzroy paget .\n", "the first complete collection to be digitalized is that of architect mario pani , with almost 8 , 0 0 0 images .\n", "this drew some concern from the american jewish congress , as he had served in the recent octavian goga cabinet , which passed anti-semitic legislation .\n", "fossils have shown a carapace covering the bulk of its body , with compound eyes , possible gills , and also `` raptorial appendages '' controlled by `` substantial striated muscles . ''\n", "beginning in 1 9 1 6 , the navy began building larger , ocean-going vessels for operation in the wider mediterranean , outside the adriatic .\n", "after the allotted time , only about 6 2 % of the original wine remains .\n", "winchip 2 a added fractional multipliers and adopted a 1 0 0 mhz front side bus to improve memory access and l 2 cache performance .\n", "the album peaked at number 1 on the `` billboard '' top country albums chart and features pride performing songs previously written and recorded by hank williams sr .\n", "students participated in private school sports leagues , involved themselves in meaningful community service projects in boston , maintained educational ties with local colleges and universities and assisted with the upkeep of thompson island and their school .\n", "for example , the column is given a wood-like cladding and the floor of the terminal is mostly cream/ beige colour .\n", "in the late 1 9 8 0 s , `` chronicle '' was seen on cable 's arts & amp ; entertainment network ( a & amp ; e ) , and later had selected runs on the travel channel .\n", "in june 1 6 9 4 , after the death of claudio coello , he became the painter for queen mariana of neuburg .\n", "the principal 's residence is currently unoccupied , pending redevelopment as part of the closebourne village retirement complex .\n", "this was followed by her first group 1 , winning the champions sprint on glen shiel .\n", "on october 2 2 the young king , at the louvre , issued a decree forbidding the parlement of paris to interfere in affairs of state and the royal finances .\n", "the joints produced tend to be more reliable than threaded fittings sealed with o-rings .\n", "it `` was a 'feed ' to the entire network from the koa studios . ''\n", "slater and oakson were the predominate musicians involved in recording the album , though the two recruited additional musicians for some of the songs , similar to how slater operated snake river conspiracy .\n", "politically , the region is quite diverse , with cook county and rock island county being long-time strongholds for democrats and north-central illinois counties ( boone , ogle , lee , etc . )\n", "in 1 9 0 1 the office moved to 1 rutland square .\n", "inside the bedroom , the five men told kostić that they want to have sex with her and asked her to consent to their demands .\n", "the exception was the ability of the automaton to turn its head from side to side , it is often affirmed that all early swiss singing birds turn the head , but this is not true .\n", "it contains creative writing , visual art , and critical texts about literature and culture of the african diaspora , and is probably the longest continuously running african-american literary magazine .\n", "ivan reitman produced the movie , mike clattenburg directed it , and clattenburg and robb wells co-wrote it .\n", "eight other presidents have visited the courthouse , either as presidents or during presidential campaigns : andrew johnson , james garfield , john f. kennedy , lyndon b. johnson , richard nixon , gerald ford , ronald reagan , and bill clinton .\n", "in 2 0 1 1 , baker attended the tennessee williams/new orleans literary festival in celebration of williams ' 1 0 0 th birthday .\n", "he succeeded hachem amine as secretary general of the union in 1 9 6 4 .\n", "in 2 0 1 4 , 5 8 4 , 7 0 2 tourists visited the territory .\n", "paradigmatic relations hold among sets of units , such as the set distinguished phonologically by variation in their initial sound `` cat , bat , hat , mat , fat '' , or the morphologically distinguished set `` ran , run , running '' .\n", "on june 1 1 , 2 0 0 9 , the rock format on 9 2 . 1 fm fayetteville was moved to 9 8 . 3 fm as `` 9 8 . 3 the keg '' along with the kkeg call sign .\n", "the company moved into a new headquarters building in wilsonville , oregon , in 2 0 0 2 .\n", "the pipes to be joined are trimmed , cleaned , inserted into the electrofusion fitting ( with a temporary clamp if required ) and a voltage ( typically 4 0 v ) is applied using a device called an electrofusion processor .\n", "in 1 9 5 9 father spartas visited greece .\n", "in the middle of his work on the fugue , death snatched the pen from him '' .\n", "whilst in the usa norman brookes and tony wilding won the davis cup , which mabel supposedly used as a rose bowl .\n", "in world war ii she served as a convoy escort .\n", "in january 1 9 4 3 , it re-equipped with the 4 . 5 -inch gun and moved up to join eighth army .\n", "oregon water trust uses ecological , hydrologic and water rights data to identify priority streams and evaluate potential water right acquisitions .\n", "teams with full entries were awarded points in the team championships .\n", "yitzhak ben-zvi , a representative from the ukraine , was receptive and they travelled back to palestine together , working along the way .\n", "this function attains its maximum when `` p '' = 1 / '' e '' = 0 . 3 7 .\n", "half of the penguins are king penguins with the other half being gentoo penguins .\n", "his commanders collected war spoils from conquered kingdoms and paid khums ( one fifth ) on `` ghanima '' ( booty collected during war ) to sultan 's treasury , which helped strengthen the khalji rule .\n", "the south facade is identically styled to the north facade of the main block .\n", "three dates for seattle , universal city and san francisco were later added .\n", "the new company opened its first facility in little rock , arkansas , and had initial capital between $ 5 0 , 0 0 0 - $ 7 0 , 0 0 0 .\n", "in 1 9 1 2 , the dairy farm products company purchased the building from the john f. jelke company .\n", "initially focusing on bass guitarists , in 2 0 0 1 the company introduced a line of guitar amplifiers ( 5 0 w and 1 0 0 w stacks and combos ) called peacemaker .\n", "juan carlos hase ( born 2 4 april 1 9 4 8 ) , is an argentine chess international master ( 1 9 8 2 ) , argentine chess championship medalist ( 1 9 8 2 ) .\n", "while at the university of lagos he was co-editor of the literary magazine `` black orpheus '' .\n", "on january 2 0 , 2 0 1 0 it was revealed that the film had been selected among the nine films that will advance to the next round of voting in the foreign language film category for the 8 2 nd academy awards .\n", "although he was unable to see his son for the first time until after the war ended , he wrote a moving letter on his name-day , sent from the prison camp in gerolstein , germany .\n", "arabic poetry declined after the 1 3 th century along with much of the literature due to the rise of persian and turkish literature .\n", "the same symbol later appears in heraldry , and , other than in the flag of sicily , came to be used in the flag of the isle of man ( known as `` ny tree cassyn '' `` the three legs '' ) .\n", "the extended program is 4 terms ( 1 5 months ) in duration .\n", "in 2 0 0 6 , violent clashes followed the expulsion of eight downtown flower vendors by the police .\n", "during the seventeenth and eighteenth centuries , slavery spread to european colonies including america , where colonial legislatures defined the legal status of slaves as a form of property .\n", "malawi has seen the growth of new fashion related businesses since their inception , including modelling agencies , fashion houses , and fashion photography .\n", "during the second world war , large carnivores were killed by military order , and other animals died from hunger , malnutrition , and cold .\n", "over the course of the evening , he defeated arachadia , corvis fear and amasis in the opening round , nicky oceans in the semi-finals and jay lethal in the final match .\n", "in may 2 0 1 7 , the maltese police said investigations into dalli were ongoing .\n", "the uttar pradesh state museum ( timing : 1 0 . 3 0 am to 4 . 3 0 pm ; closed on mondays and certain public holidays ) in lucknow , was earlier situated in the chattar manzil and the lal baradari .\n", "mann was then approached with the request of providing a track for the soundtrack of the american prime time television soap opera `` melrose place '' .\n", "in mathematics , the macdonald identities are some infinite product identities associated to affine root systems , introduced by .\n", "njinga hoped that a peaceful relationship with portugal would allow her to settle her kingdom and determine a successor , as she had no children .\n", "the channel is available in the united states , canada , the united kingdom , ireland , malta , latin america , france , italy , greece , cyprus , spain , the nordic countries , the middle east , africa , and asia-pacific .\n", "the pge group was founded as polskie sieci elektroenergetyczne s.a. ( translates as `` polish electrical power lines share company '' ) in 1 9 9 0 .\n", "thermo electron was co-founded in 1 9 5 6 by george n. hatsopoulos and peter m nomikos .\n", "`` große freiheit '' left the top 5 of the german albums chart for the first time the week it achieved this feat .\n", "he , griffith and carroll were reunited in `` bahama passage '' ( 1 9 4 1 ) .\n", "during the first intifada , the palestinian center for rapprochement between peoples issued an invitation to israelis of goodwill to come and spend a weekend ( shabbat ) in palestinian homes using the slogan `` break bread , not bones '' .\n", "per the new york state constitution , the conservative party would have taken over privileges reserved for the two parties obtaining the most votes in the most recent gubernatorial election , including authority over state and county boards of elections .\n", "her novel , `` the kindness '' , was published in 2 0 1 5 .\n", "alès agglomération is the `` communauté d'agglomération '' , an intercommunal structure , centred on the city of alès .\n", "in 1 0 7 6 , having plotted against hoel ii , duke of brittany , he was besieged at dol , and william came to hoel 's aid ; but ralph finally made his peace .\n", "at that time , highly influential sociologists , such as peter blau , mayer zald , elihu katz , everett hughes , erving goffman were there .\n", "lee-steere 's other daughter , vynka , was briefly an actress , appearing in the australian soap-opera `` certain women '' , before later attaining a doctor of philosophy in psychology and operating a private practice in perth .\n", "after receiving an invitation in 1 9 6 5 , négyesy moved to detmold and continued his studies with varga .\n", "he was re-elected unopposed in the general election in 1 9 0 0 , but found that the increasing workload of parliament was incompatible with his legal work in liverpool and his wife 's long-term illness .\n", "he is the son of former nhl player jack mackell of the original ottawa senators .\n", "during the meeting , hao introduces raghu to tiger penis soup which is the chinese equivalent of viagra .\n", "these distinctive features can be easily identified with textural and compositional analysis in monazite geochronology .\n", "the book includes a list of artists in alphabetical order and chronological order and a bibliography of sources .\n", "as the boundary of the city of plymouth has changed , the named area in which the airport was situated in had changed as well .\n", "celilo village , a small , unincorporated community of native americans , still exists today , though it is no longer the thriving cultural and economic center it once was .\n", "once again , the gsr and studie with teamukyo sponsorship continued with the 2 0 1 3 season .\n", "the cf- 1 0 4 d two-seater did not normally carry any armament except for a centreline practice-bomb dispenser .\n", "in 1 9 6 7 , the company became willamette industries .\n", "the implementation of the bangsamoro organic law led to the creation of the autonomous bangsamoro region in mindanao .\n", "she was also anxious to remove imbangala forces , led by njinga mona , from her army and place them under her direct control .\n", "previous journalists include will date , tom goulding and beth slow .\n", "opizo peak ( , ) is the mostly ice-covered peak of elevation 1 1 0 0 m near the west extremity of avroleva heights on brabant island in the palmer archipelago , antarctica .\n", "following the resignation of sen. michael leib , the pennsylvania general assembly convened on february 2 4 , 1 8 1 4 , to elect a new senator to fill the vacancy .\n", "a small 2 mw commercial wave power plant , `` osprey '' , was built in northern scotland in 1 9 9 5 about 3 0 0 metres ( 1 0 0 0 ft ) offshore .\n", "this film was also selected to represent iraq in the best foreign language film category at the oscars .\n", "its eastern border starts from kapugollewahoropothana road which lies south of palugaswewa .\n", "villette played the role of forger by writing letters to jeanne in the hand of queen marie antoinette to make it seem as if the queen desired the necklace but was unable to purchase it because of the reluctance on the part of king louis xvi .\n", "after changing her mind , jasmine believes that she and jac can form a relationship , which is what she had wanted from the moment she arrived .\n", "a third austrian brigade ( rosenzweig 's ) appeared , and this time it had unmistakable orders to take vysokov .\n", "he was the head coach at idaho for three seasons and previously at his alma mater lewis & amp ; clark college in portland , oregon .\n", "the chapter was an anomaly in canon law ; and rome neither recognized nor censured it .\n", "between 1 9 8 7 and 1 9 9 8 , the cinematheque presented its programs at a variety of venues , including the directors guild of america theater and the raleigh studios complex in hollywood .\n", "3 4 . 2 % of people spoke only english at home .\n", "arkoff deemed the elda version of the film to be `` technically unacceptable '' , and had lou rusoff produce a new english version at titra studios in new york city , which was directed by lee kresel and edited by salvatore billitteri .\n", "on 1 0 february , böhme shot down his 1 2 th victim .\n", "martin gavigan is an irish former gaelic footballer who played as a defender for ard an rátha , the donegal county team and the ireland international rules football team .\n", "he grew attached to his new life and when , in 1 7 8 3 , a trader from kentucky offered to exchange him for a shawnee prisoner , alder refused .\n", "the 2 d sketches sara swapsy , only joking , ira and lyra , and bill and phil always consist of three parts , which alternate with one other sketch in between each portion .\n", "the effect recalls surrealism , with undertones of disconnected , fluid anatomy .\n", "the studio was founded in march 1 9 9 9 by triangle staff former member katsumi yamaguchi and its first production was the film `` a tree of palme '' in 2 0 0 1 .\n", "it offers a program like technology vocational livelihood ( tvl ) that includes specializations of bread and pastry ( ncii ) , food and beverage services ( ncii ) , local guiding sercvices ( ncii ) and tourism promotion services ( ncii )\n", "he studied in princess elizabeth primary school and jurongville secondary school .\n", "below are listed all participating squads of the 2 0 0 0 men 's olympic volleyball tournament .\n", "the county lies just south of the border with the canadian province of quebec and to the west of the state of vermont .\n", "beyond conference , district and regional championships , west side eagle teams have won state championships including :\n", "when lohan decided not to collaborate with warren and jackson , `` i decide '' was instead released on the to the 2 0 0 4 film `` '' and on radio disney .\n", "he previously played gibson flying v 's and was endorsed by aria before he came to dean .\n", "by the end of june 2 0 0 3 , dice came out of bankruptcy eliminating a $ 6 9 . 4 million debt , and re-emerged as a private entity .\n", "in october 2 0 1 1 , priest was one of three speakers asked to stand in for richard dawkins at an event at the sheldonian theatre , oxford where dawkins refused to debate philosopher and theologian , william lane craig .\n", "work on xsgi began in may 1 9 8 9 when tom paquin left ibm to join sgi to integrate the x window system with sgi 's iris gl interface .\n", "minaret summit is a mountain pass on highway 2 0 3 in the central sierra nevada .\n", "the središče ob dravi parish church is located in the settlement .\n", "his daughter joanne is an established country rock singer based in toronto .\n", "the 8 1 cars of all eras and types were played by 1 2 0 pupils as 'instruments ' .\n", "it is situated on the site of a former sewage treatment plant , and has been allowed to develop since the plant closed in 1 9 7 5 .\n", "skipton-on-swale is a small village and civil parish in the hambleton district of north yorkshire , england .\n", "the 9 th michigan cavalry regiment was a cavalry regiment that served in the union army during the american civil war .\n", "a lot of elements in the screenplay are based on true events .\n", "wkey began broadcasting on may 2 3 , 1 9 4 1 as wjma with 2 5 0 watts of power .\n", "however , at the end of the episode , holly tells a.j .\n", "the young people not only receive a complete vocational training , but also support in leading an independent life .\n", "formation near land is suppressed by reefs and shoals , which absorb the wave energy needed for the phenomenon .\n", "rigid line is a coaxial line formed by two copper tubes maintained concentric every other meter using ptfe-supports .\n", "the act rose the qualifying age from 6 6 in a stepwise manner .\n", "watkins books is london 's oldest esoteric bookshop specializing in esotericism , mysticism , occultism , oriental religion and contemporary spirituality .\n", "on december 2 2 , 2 0 0 5 , a second bowl game came to san diego when the inaugural poinsettia bowl was played at the stadium , with navy beating colorado state .\n", "as more and more people realized the basic need for female medical workers fighting the virus in the front line , donations from the public flooded in .\n", "therefore , `` r. palustris '' tie- 1 charges itself using minerals located deep in the soil , while utilizing light by remaining on the surface itself .\n", "the national impact of the strike was significant in terms of damage to the image of the diaz regime .\n", "the next most common countries of birth were iraq ( 7 . 0 % ) , fiji ( 5 . 7 % ) , vietnam ( 4 . 6 % ) , philippines ( 3 . 0 % ) and new zealand ( 2 . 1 % ) .\n", "in it , a recently divorced librarian is drawn into a mystery when a stranger hides a roll of film in a pack of cigarettes and gives it to her for safekeeping .\n", "ispahbudhan castle ( ) is a historical castle located in rudbar county in gilan province , the longevity of this fortress dates back to the nizari ismaili state .\n", "the gaumee film award for best cinematography is given as part of the gaumee film awards for maldivian films .\n", "the sets of 6 form an s ( 3 , 6 , 2 2 ) steiner system , whose symmetry group is m 2 2 .\n", "the unit 's name was küstenjäger-abteilung `` brandenburg '' .\n", "it leased 1 1 6 acres of woods and ravines to metro parks in exchange for land within goodyear heights metro park .\n", "when he was made lord tebbit in 1 9 9 2 , he chose a polecat as one of the symbols on his coat of arms .\n", "ethiopian jews were forbidden to eat the food of non-jews .\n", "he returned to china in the 1 9 8 0 s but died in new york in 1 9 9 0 .\n", "from 1 8 5 9 through 1 8 6 2 mary taught at abbot academy ( founded in 1 8 2 9 as the first school for girls in new england and merged with phillips academy in 1 9 7 3 ) in andover .\n", "the cincinnati suds were a professional softball team that played in two men 's professional softball leagues at various stadiums in the cincinnati , ohio region from 1 9 7 7 through 1 9 8 2 .\n", "this was the third administration under responsible government , and it was dissolved on 1 2 july 1 8 6 1 .\n", "tom six responded to the bbfc 's decision in a statement released the next day : thank you bbfc for putting spoilers of my movie on your website and thank you for banning my film in this exceptional way .\n", "he died in 1 7 7 8 , and is buried together with his wife in `` pasar bong '' , or market of the chinese cemetery , in surabaya .\n", "despite the performances of the three-year-old hyperion , mannamead was described as `` the best horse in training '' in mid 1 9 3 3 .\n", "it is the seat of the gmina ( administrative district ) called gmina jakubów .\n", "the fuel cells are made up of several cells connected in series .\n", "from 1 9 2 5 to 1 9 2 7 , pyotr stuchka , another soviet legal scholar , and pashukanis compiled an `` encyclopedia of state and law '' and started a journal named `` revolution of law '' .\n", "the building was commissioned by a merchant , ephreim moritz .\n", "senator ) dianne feinstein and governor of kentucky martha layne collins , who were also female ; los angeles mayor tom bradley , an african american ; and san antonio mayor henry cisneros , a hispanic , as other finalists for the nomination .\n", "with temporary drummer john tempesta in place behind the skins , the band began tracking at a & amp ; m studios in los angeles .\n", "the toponym is first recorded in 1 2 8 7 , in the form `` asschirche '' , meaning `` church near the ash-tree '' .\n", "no transformation parameters are presently offered by the government .\n", "it provides advice on all areas of engineering , regularly advising parliament and other agencies .\n", "it has one asphalt paved runway designated 3 / 2 1 which measures 4 , 2 0 5 by 7 5 feet ( 1 , 2 8 2 x 2 3 m ) .\n", "the monastery owes this fortune to its very experienced and skillful deputy hegumen at the time danilo , who later became the serbian archbishop danilo ii .\n", "parts of richfield were later lost to neighboring towns or villages through annexation .\n", "the incumbent governor mario cuomo won a third term , made him become the first democratic governor elected three times since herbert h. lehman .\n", "they were limited to editing and deleting posts by members as well as resolving disputes .\n", "it has a population of 1 , 0 8 0 .\n", "for greenland , taking 7 3 ° as a median latitude , `` hk '' = 1 1 . 7 .\n", "when told of the rebellion , his father reportedly attacked his son with a knife , and john iv was forced to flee from a balcony to escape his father .\n", "he has suffered five heart attacks , and has seven daughters .\n", "in 2 0 1 5 , he completed the pasteur program on corporate governance at harvard business school .\n", "malayalam actress manju warrier debuted with his movie sallapam , which was also his debut film .\n", "the social welfare and pensions act of 2 0 1 1 made changes to the qualifications needed for both the contributory and non-contributory state pensions .\n", "in 1 9 7 5 , the credit union changed its name to buckeye state credit union .\n", "the boats were not completed in numerical order as sail numbers were not allocated until some years after the first mermaids were launched .\n", "twilite tone produced the song , while albarn took care of lyrics , the song features d.r.a.m. , who originally had a more prominent feature on the song , with a full chorus and verse , however , albarn stripped the vocals back as the song felt more complete .\n", "mark is noted for hosting a weekly syndicated radio program featuring the music of singer frank sinatra ( 1 9 1 5 - 1 9 9 8 ) , including commentary , interviews , trivia facts and other information to add color and context .\n", "in january 2 0 1 7 , garrett was invited to read poems in a series of shows at the cornelia street cafe titled : `` what were the sixties really like ? ''\n", "according to the united states census bureau , the cdp has a total area of , of which is land and , or 1 3 . 3 3 % , is water .\n", "he is well known for introducing , in statistical physics , the `` blume-capel model '' , describing tricritical points .\n", "in 2 0 1 1 and 2 0 1 2 , she was awarded lifetime achievement awards from the hoboken and fort lauderdale international film festivals .\n", "the rest were transported to the camp in zwangsarbeitslager zaslaw .\n", "introduced in 1 9 4 0 , it was developed to provide accurate aiming information for antiaircraft artillery and was also used for gun laying systems and directing searchlights against aircraft .\n", "the federation also governs youth leagues , such as the championnat national of the under- 1 9 s and under- 1 7 s .\n", "as the famous viennese hoch-und-deutschmeister regiment , the last fighting vestige of the old teutonic order , burst into the town , colonel louis von blumenthal arrived at the head of the 5 2 nd foot on their right flank .\n", "dungarvan castle is composed of a play dough shell keep , enclosed with a curtain wall , with corner and gate towers .\n", "in that election , john faso received 2 3 . 5 4 % on the republican line and 3 . 5 9 % on the conservative line , a difference of 1 9 . 9 5 % .\n", "exercises and maneuvers with army ground forces and naval forces were a regular and important part of its mission .\n", "adel mohamed arnaout ( born 1 9 7 0 ) is a lebanese immigrant living in toronto , ontario , who was convicted of sending three letter bombs out to residents of the greater toronto area in august 2 0 0 7 .\n", "the 1 9 2 2 labor party national conference adopted a similarly worded `` socialist objective , '' which remained official policy for many years .\n", "in 2 0 0 5 , dice inc. was acquired by dice holdings , inc. which is owned equally by private equity firms general atlantic llc and quadrangle group llc .\n", "geologically the rhenish massif consists of metamorphic rocks , mostly slates ( hence its german name ) , deformed and metamorphosed during the hercynian orogeny ( around 3 0 0 million years ago ) .\n", "the administration of the university , which is also located in milan , in the monastery annexed to the basilica of st simplician , is under the leadership of the bishops of four ecclesiastical regions : piedmont , lombardy , venice , and liguria .\n", "in june 2 0 1 5 , lila kagedan was ordained by yeshivat maharat and in keeping with newer policies , was given the freedom to choose her own title , and she chose to be addressed as `` rabbi '' .\n", "the favorite wit of the different ateliers was given the task of painting the banner of the atelier , which was carried at the head of the several corteges .\n", "on january 6 , 2 0 0 4 john greeley was appointed as the new cfo .\n", "between 2 0 0 2 and 2 0 1 3 , west corporation invested approximately $ 2 . 7 billion in strategic acquisitions .\n", "the first mention of the monastery of the franciscan friars minor , the minderbroederklooster , was in 1 3 0 9 .\n", "it is considered to be part of the m 4 corridor .\n", "robinson co-hosted the podcast `` get up on this '' with jensen karp , in which they , along with a guest , discuss things they think they should know about .\n", "yukovskaya ( ) is a rural locality ( a village ) in noginskoye rural settlement , syamzhensky district , vologda oblast , russia .\n", "robin harper and shiona baird were elected as scottish green party co-convenors in 2 0 0 4 , but as the sole green msp robin harper was effectively party spokesperson from 1 9 9 9 .\n", "in july 1 8 6 3 , ashwell moved to auckland following the invasion of the waikato by the colonial government forces who were sent to crush the māori king movement .\n", "after more than three years , a new investor `` surikate gmbh '' from bad rothenfelde had acquired the company by 1 august 2 0 0 5 .\n", "he is the author of numerous books about germanic peoples , celts and vikings .\n", "there are also extensive book exhibits in one of the main hotel or convention center exhibition areas .\n", "juan domingo astigarrabía andonegui was born in san sebastián , the capital of gipuzkoa , on 2 0 november 1 9 0 1 .\n", "it operates from 4 : 0 0 am to 1 2 : 0 0 mn .\n", "in high school , he played several sports and was an all-state guard on the football team .\n", "the corps was redesignated as the 4 3 rd army corps in 1 9 5 7 and was based in petropavlovsk-kamchatsky .\n", "on one hand , it can be used `` to close down discussion on genuine areas of criticism '' regarding jihadi ideologies , which in turn has resulted in all accusations of islamophobia to be dismissed as `` spurious '' by far-right activists .\n", "he made a large benefaction of £ 2 0 , 0 0 0 to christ church , for the maintenance of old westminsters preparing themselves for holy orders .\n", "i knew she could sing , but i did n't expect much more .\n", "from 1 9 9 3 to 2 0 0 2 he was a tutorial fellow of pembroke college , oxford , and reader ( 1 9 9 6 ) then professor of topology ( 2 0 0 0 ) in the university of oxford .\n", "in december , 2 0 0 7 , costa rica a & amp ; b sides participated in the first central american rugby cup .\n", "when she returned to port charles , harrison also came and got a job at general hospital .\n", "their version of huguang province was smaller , and corresponded almost entirely to the modern provinces of hubei and hunan combined .\n", "abigail was created by scriptwriter sheri anderson and executive producer ken corday .\n", "on 1 5 november 2 0 0 6 , real madrid president confirmed the signings of gago , as well as compatriot gonzalo higuaín of river plate , as part of his policy to sign younger players to gradually replace the older stars in the squad .\n", "it lies on the superior margin of the tragus .\n", "in a second offensive in september 1 9 9 3 the croatian army overran the medak pocket in southern krajina in a push to regain serb-held croatian territory .\n", "with their increasing power the morello 's sought to control lower manhattan 's little italy .\n", "the plug-in segment achieved a record market share of 2 . 1 % of new car sales .\n", "in 2 0 1 5 , blanchett was honoured at the museum of modern art 's film benefit for her outstanding contributions to the industry .\n", "these countries were added to the ban 3 days later .\n", "the capital expended in building 1 8 miles of railway had been £ 3 3 6 , 0 0 0 .\n", "the post of secretary of state for northern ireland was seen as a dumping ground to marginalise ministers .\n", "in 1 9 6 5 , he studied playwriting and dramatic literature .\n", "the view people have of themselves in a collectivistic sense is entirely dependent on the situation they are in and the group with which they are interacting .\n", "albermarle had bagshot park remodelled for him by james paine between 1 7 6 6 and 1 7 7 2 .\n", "this color makes it instantly recognizable and quite different from the porcelain from the imperial kilns of jingdezhen , which contains more iron and has to be fired in reduction ( i.e. , an atmosphere with carbon monoxide ) if it is not to appear an unpleasant straw color .\n", "boys also have more well-defined dominance hierarchies than girls within their peer groups .\n", "which became `` you too can find the joy and happiness in `` hating '' ! `` .\n", "the european commission introduced the concept on 1 2 september 2 0 0 1 , a day after the terrorist attacks in the united states .\n", "an enumeration of permutations discordant with a given permutation is the famous problème des rencontres .\n", "he succumbed to the disease on october 1 2 , 1 9 3 2 , in portland .\n", "the technical challenges associated with achieving centurion reactors lie principally in the realm of materials science .\n", "hispanic or latino of any race were 3 . 0 0 % of the population .\n", "popov was born into a wealthy family and was a practicing lawyer at the start of the war .\n", "he won the 1 0 , 0 0 0 m event , and came 2 nd in the 5 , 0 0 0 m event after ethiopia 's muktar edris .\n", "it is a seven storied pillar which was built by biherwal mahajan sanaya of digambar jain sect .\n", "motograter was an american heavy metal band formed in santa barbara , california in 1 9 9 5 .\n", "the third , 2 0 5 years after seth , was that of enos begotten of seth .\n", "as part of the resolution to the 2 0 1 3 depsang standoff , the indian side agreed to take down some bunkers in chumar in return for the chinese withdrawing from the depsang standoff area .\n", "and the new actors joining the seventh run were philippine theater veteran pinky amador ( queen femina ) , ramp model and indie film actor rocky salumbides , television actor prince stefan ( dodong ) and comedian gabe mercado ( didi ) .\n", "on alternate years there is a national conference for the entire union that decides on policy issues for the entire union .\n", "gouin withdrew his support from duplessis on june 1 8 , 1 9 3 6 , but the aln caucus sided with duplessis and joined with his conservative caucus to formally merge into the union nationale party .\n", "prior is believed to have annoyed thatcher by being too friendly with trade union leaders , with thatcher writing `` he [ prior ] had forged good relations with a number of trade union leaders whose practical value he perhaps overestimated . ''\n", "`` innocent starter '' is the tenth single by japanese singer nana mizuki .\n", "at this point , orozco attempted a variation on a tactic that he had successfully employed at the first battle of rellano .\n", "bell was re-signed on december 1 9 , 2 0 0 1 .\n", "wofo temple ( ) is a buddhist temple located near the beijing botanical garden from the center of beijing .\n", "the video received heavy rotation on mtv in late 1 9 9 5 and early 1 9 9 6 , and it is available on the home video releases `` the nona tapes '' ( 1 9 9 5 ) and `` '' ( 1 9 9 9 ) .\n", "the three parachute battalions and the support units of the 5 0 th parachute brigade saw extensive action .\n", "he was a member of the norwalk board of education for six years from 1 9 8 7 to 1 9 9 3 , and served as its chairman in 1 9 8 8 , 1 9 9 1 , and 1 9 9 2 .\n", "all of `` bodnant '' s crew survived , but 4 8 of `` city of bedford '' s crew were killed .\n", "however , during the `` cleaning ceremony '' ( `` pengasuh gubug '' ) a series of unfortunate events occurred which were blamed on upsetting his spirit during the reburial process .\n", "environmental conditions ahead of the system were forecast to become gradually favorable for tropical cyclogenesis .\n", "began operations by dropping paratroops of the 1 0 1 st airborne division in normandy on d-day ( 6 june 1 9 4 4 ) and releasing gliders with reinforcements on the following day .\n", "they are the children of the god anu and follow the god erra into battle .\n", "the squadron was later led by another canadian , rcaf wing commander g. n. b .\n", "the global population of brown hyena is estimated by iucn at a number between 4 , 0 0 0 and 1 0 , 0 0 0 and its conservation status is marked as near threatened in the iucn red list .\n", "turkey repeatedly urged providers of satellites to end the broadcast of med tv .\n", "according to the text , garak has since assisted in the rebuilding and recovery of cardassia , while also supporting democratic reforms for its government .\n", "it contains lithic tools , potsherds , engravings and paintings of pastoral neolithic age .\n", "the staging of the opera was accompanied by juicy scandal ; however it was an enormous success .\n", "in 1 9 5 5 , queen elizabeth ii presented the royal 2 2 e régiment with a bezoar ibex that descended from a pair of goats gifted to queen victoria by the shah of persia .\n", "valerie is an unincorporated community in riverside county , california , united states .\n", "according to a june 2 0 1 3 report published by the washington office on latin america , dangerous deportation practices are on the rise and pose a serious threat to the safety of the migrants being deported .\n", "the chart includes all the music of each artist featured , not just one track or album .\n", "there 's a little bit of hank in me is a studio album by american country music artist charley pride .\n", "1 9 9 5 's `` red medicine '' became the highest-charting album of fugazi 's career , reaching no .\n", "she was not finished in time to participate in the first world war and was badly damaged by a mine in 1 9 4 4 and was sold for scrap the next year .\n", "the bogey-free round of 6 2 is only one stroke off the let single round scoring record of 6 1 ( − 1 1 ) .\n", "in january 2 0 1 8 , as part of triple m 's `` ozzest 1 0 0 `` , the 'most australian ' songs of all time , `` what about me '' was ranked number 3 7 .\n", "although the scout ant is observed to lay a pheromone trail on the return journey to the nest , the other ants seem to be unable to follow this trail without the help of the scout .\n", "ndira was accused of taking part in an assault in 2 0 0 6 against mp trudy stevenson and three other members of the splinter pro-senate mdc-m .\n", "the tour included performances in germany , russia , ukraine , poland , the czech republic , switzerland , austria , luxembourg , belgium , france , the netherlands and the united kingdom .\n", "from 1 8 8 3 to 1 8 9 2 , dercum served as chief of the nervous disease clinic ( university of pennsylvania ) .\n", "in 1 9 4 9 , opolot was promoted to the rank of warrant officer .\n", "it was a one-off event by wwe , as in 2 0 1 8 , the promotion reduced the amount of yearly ppvs produced following wrestlemania 3 4 that year due to the discontinuation of brand-exclusive ppvs .\n", "president bush then repeated the incubator allegations on television .\n", "english 4 - a course teaching the 1 1 th grade curriculum , and in addition includes a major research paper including extensive use of the internet as a research tool .\n", "however , in 1 9 9 5 in his final year , he was cast in ibsen 's `` hedda gabler '' as george ( jörgen ) tesman , the husband of hedda , the lead character .\n", "shen and zhao improved each year , and were considered to be one of the top teams in the world .\n", "in may 2 0 1 2 , more penguins were moved from new zealand to the exhibit .\n", "the pinzón brothers lived in the era of the greatest splendor of the port town of palos de la frontera , participating in the majority of the activities undertaken by that port .\n", "even when the character has full health ( 1 0 0 ) , health batteries will be picked up and held in reserve , automatically replenishing the character 's health as damage occurs .\n", "his name derives from the man who makes the uncle sam posters .\n", "in february 2 0 1 7 , sentica sold its holding in kotipizza group and kotipizza announced that it had acquired pizzataxi .\n", "the owner expanded the theatre 's stagehouse into a building at the rear of the property .\n", "through various plot twists , it is learned that father michael is related to cody ( as an uncle ) and that he has been financially enabling him for years , which culminated in a cover-up involving cody murdering his 1 4 -year-old lover .\n", "many years later , crossman 's posthumously published diaries confirmed the truth of the magazine 's charges .\n", "resigned , and with no cuddy to save him , he takes the pills .\n", "when there are more than two cylinders , they are either arranged radially , in-line or in in-line groups .\n", "the second match saw andrade defend the united states championship against humberto carrillo .\n", "6 on billboard 's r & amp ; b chart for multiple weeks .\n", "marine current power could provide populated areas close to the sea with a significant part of their energy needs .\n", "all , except mikhail ( misha ) , who had already left , decided to stay in leningrad .\n", "the golden eagles were led by head coach jeff bower and played their home games at m. m. roberts stadium .\n", "the new home was built in 1 8 9 0 , on a hill which overlooked the railway station .\n", "he and his wife , mary , resided in stinson beach , california , for fifteen years before moving to nearby mill valley , california .\n", "in this position he was senior legal adviser to the government for 1 2 years , and his views were respected and influential .\n", "once these areas are selected , plant species composition measurements are taken by clipping the plants in a cordoned off area and measuring the mass of each type of plant species .\n", "he would have finished fifth in the overall classification with three further stage wins , toyota driver lucio alvarez inheriting the position as a result of gordon losing the appeal .\n", "sir william galbraith , 4 th of that ilk , lord of buthernock and kincaid , was a scottish noble .\n", "but hey , at least they made it up the aisle .\n", "as these atoms are 4 . 2 å apart , the exchange interaction , which aligns the spins , is likely indirect and is mediated through conduction electrons or the aluminium and copper atoms .\n", "since may 2 0 1 3 , he has been president of the commission for migration of the italian episcopal conference .\n", "leader of the zenon warriors , a group of vandel busters .\n", "however , when prior resigned , thatcher revealed that she was going to offer him another cabinet post during the reshuffle , which would have very likely been a non-economic one .\n", "a c-stand with a removable base is called a c-stand with a turtle base .\n", "the standoff occurred less than two weeks after the 3 september 2 0 0 8 angoor ada raid , during which u.s. special forces conducted a raid inside pakistani territory .\n", "frank lynch ( born 1 9 3 8 ) is an irish gaelic games administrator , gaelic football manager and former player .\n", "in july 2 0 0 9 , his third son , police superintendent abdulaziz faruk , was killed during violence in maiduguri triggered by the boko haram extreme islamist sect .\n", "day and miller used this for an affirmative answer to the ml-cupping problem : a is k-trivial iff for every martin-löf random set z such that a⊕z compute the halting problem , already z by itself computes the halting problem .\n", "appeals against judicial rulings were also handled , but generally only against serious cases .\n", "one building , known as cottage 1 2 , was seasonally used by the northville/plymouth company jaycees during the 1 9 8 0 s as a haunted house .\n", "`` ach an té a dhéanann faillí i bhfiacha an tsolais ( english : but he who neglects the pursuit of light ) ''\n", "for the week of march 1 9 to march 2 5 , 2 0 0 7 , this episode of `` south park '' was the 1 3 th-most-watched cable program , with 3 . 1 million viewers .\n", "prior to the 1 9 9 9 merger with mobil oil , exxon used a phonetic spelling of the company `` xon '' as its ticker symbol .\n", "he became increasingly interested in his relationships with performers , writing music tailored to their virtuosic abilities and musical personalities ( barrick stees , the cleveland orchestra , the avalon , harrington , and arianna string quartets , u.s. marine corps .\n", "their debut album `` portraits '' was released through basick records in britain in october 2 0 0 9 .\n", "as a team , they are best known for their time in ring of honor , where they teamed with dalton castle as the boys and became one-time roh world six-man tag team champions .\n", "this ca 2 + influx is increased by excitatory postsynaptic potentials ( epsps ) produced by nmda receptors , activating ca 2 +-based signaling cascades ( such as neurotransmitter release ) .\n", "in 1 8 3 0 , the 3 2 9 ton ship `` canada '' was built for captain allan by robert steel & amp ; co. , of greenock .\n", "in one center , desmoplastic ameloblastomas represented about 9 % of all ameloblastomas encountered .\n", "is a 1 9 7 1 japanese drama film directed by kon ichikawa .\n", "soil erosion happens in the deforested areas of the drc , which are mostly in the southern part of the country ; and it is most intense in populous cities such as the capital kinshasa , territory of luberu , and the surroundings of kasenyi near southern lake albert .\n", "the post office is a single-story , five-bay steel frame building with a buff brick exterior .\n", "in the 1 7 th-century , ale houses and inns were required to hang out lanterns to help illuminate the street .\n", "ollie married a fellow disney employee , ink and paint artist marie worthey , in 1 9 4 3 .\n", "alauddin continued expanding delhi sultanate into south india , with the help of generals such as malik kafur and khusraw khan , collecting large war booty ( `` anwatan '' ) from those they defeated .\n", "morteza pouraliganji ( ; born 1 9 april 1 9 9 2 ) , is an iranian professional footballer who currently plays for shenzhen fc , in the chinese super league and iran national team .\n", "the two would first have a discussion about the themes of the song `` so that we were on the same page , '' and then they would go away to write , putting both parts together at the end .\n", "on 2 4 september a condor spotted the convoy and reported three ships on fire , though british records show no ships hit .\n", "a headcount showed that the men from the engine room were missing .\n", "for example , environmental degradation from white-tailed deer ( `` odocoileus virginianus '' ) in the us alone has the potential to both change vegetative communities through over-browsing and cost forest restoration projects upwards of $ 7 5 0 million annually .\n", "the board approved the measure , and the speedway started taking steps towards hosting a second race , preferably a nascar winston cup event , but also considering iroc .\n", "on 1 5 june 1 6 5 5 , he was elected fellow of cromwell 's new foundation , durham college in 1 6 5 7 , and on the dissolution of that college in 1 6 5 9 he was incorporated at cambridge .\n", "fourth-seeded cecilia dahlman won the singles title and earned $ 1 3 , 5 0 0 first-prize money .\n", "one wing of kedleston is still occupied by the curzon family .\n", "in the fall of 1 9 1 5 , c.w .\n", "tourism accounts for an estimated 2 8 % of gross domestic product ( gdp ) , 8 5 % of which is from north america .\n", "any one of other 2 3 6 4 , called `` hexadic '' , commutes with 6 basic ones .\n", "hanina then asked the angel to give him his knife , so as not to scare hanina on the way .\n", "the united states supreme court does not recognize the right to sit on a jury as fundamental .\n", "throughout 2 0 1 0 , the company added newer calorie-conscious `` positive steps '' combo meals that were advertised in female-oriented media , as well as a continuing cross-promotional tie-in with the female-oriented twilight film series .\n", "the accessory saphenous vein ( asv ) , either anterior or posterior , is an important gsv collateral frequently responsible for varicose veins located on the anterior and lateral aspect of the thigh .\n", "a site of the infamous kronstadt rebellion , this is where the armed forces of the russian federation run and maintain the kronstadt cadet academy , a boys ' military academy .\n", "zelazny also wrote seven short stories set in the amber multiverse .\n", "his reign ended less than a year when he died of poisoning , possibly by a bugis chief , at kuala selangor on january 2 9 , 1 7 6 1 .\n", "there the a 3 0 ends and continues as b 5 1 4 .\n", "the main source for his medical career is ibn abī uṣaybiʿa 's biographical dictionary .\n", "substantial variations between annual ( aadt ) and summer ( asdt ) traffic volumes are attributed to the fact that the road serves as a connection to a 1 motorway and d 1 state road carrying substantial tourist traffic .\n", "the monastic church at the time of the dissolution had an overall length of c. 3 5 m .\n", "it then defines a container codice_ 4 that includes a list of codice_ 5 s and a list of codice_ 6 s .\n", "a cantonese newspaper company named wah may press was also located on 9 east broadway .\n", "the bill was passed by the parliament on 7 october 2 0 1 4 .\n", "ultimately , the 1 7 9 4 engineering concept was flawed as the water supply for the summit crossing was inadequate and the technology for minimizing supply losses was still another century away .\n", "and charted within the top fifty on the australian singles chart , peaking at number forty-seven .\n", "this site is noted for its clay figurines with smiling faces , part of an extremely large offering in honor of the god of death mictlantecuhtli .\n", "hori also has experience as an anime voice actor and appeared in some works .\n", "in the following month , the university of missouri announced receiving a $ 1 . 5 million gift from the cherngs which would benefit its honors college .\n", "the city is named for andrew jackson , military governor of the florida territory and eventual president of the united states .\n", "only once has a federal labor government attempted to nationalise any industry ( ben chifley 's bank nationalisation of 1 9 4 7 ) , and that was held by the high court to be unconstitutional .\n", "in the bachajón dialect it has been morphologically reanalyzed as a prefix ( rather than an auxiliary or preverb ) , but only when the verb is marked for the second-person ergative .\n", "a new focus : short fiction films of less than 4 0 minutes duration from asian , indian or arab countries .\n", "bass & amp ; co. , whose former factory building stands next door .\n", "dermitzakis began his managerial career at ergotelis , at the time playing in the delta ethniki , succeeding myron sifakis .\n", "in addition to his commitments at st thomas ' he was for some time chief medical officer to the metropolitan police and was knighted c.b .\n", "the track was released by jaaz multimedia on its social media platforms .\n", "the fiji and the samoa national teams have played each other on fifty-three occasions , with fiji winning thirty , samoa twenty .\n", "the sociolinguistics of sign languages focuses on the study of the relationship between social variables and linguistic variables and their effect on sign languages .\n", "bruce west wrote and voiced the narration for the following documentaries which aired nationally on cbc-tv :\n", "included new music , water , projections , fire , drumming , acrobatics , dance , live vocals .\n", "in december 2 0 1 7 , free agent raspentino signed for belgian first division a club k.a.s .\n", "his father was taken by the nazis to a concentration camp , from where he never returned .\n", "the code gives neither a guide nor a detailed recommendation .\n", "in short , hom inherits a ring action that was not `` used up '' to form hom .\n", "kirti stambh ( tower of fame ) is a 2 2 -metre-high ( 7 2 ft ) tower built in the 1 2 th century ad .\n", "in march 2 0 0 4 , the band performed at the extremething festival .\n", "besides folha , the group publishes agora são paulo newspaper and has 5 0 % shares at valor econômico , in partnership with organizações globo .\n", "mabuza matriculated at khumbula high school and studied at the mgwenya college of education and later at the university of south africa .\n", "loss of thymic function and tcr diversity is thought to contribute to weaker immunosurveillance of the elderly , including increasing instances of diseases such as cancers , autoimmunity , and opportunistic infections .\n", "because the feed being returned to the telephone has an identical mix , minus only one input , it is most efficient to employ a mix-minus as opposed to creating and mixing for a new independent output bus .\n", "on february 8 , 1 7 9 0 , george washington nominated james iredell to the post of associate justice of the supreme court , and on may 1 2 , he was confirmed by the united states senate , and received his commission the same day .\n", "in an account , probably from the kāti kurī hapū of ngāi tahu , the family lived on mangaia .\n", "inside , the hydrogen and oxygen molecules are forced to react with the aid of a catalyst to produce water and heat .\n", "dark avenger had previously stated on several occasions that `` destroying data is a pleasure '' .\n", "wood testified that the couple turned the selection of victims into a game , first trying to choose their victims by their initials to spell m-u-r-d-e-r .\n", "after cromwell 's time it was dismantled and the ground it occupied , together with its buildings , presented to the earl of eglinton as compensation for losses sustained during the great rebellion .\n", "it is currently the largest party in the sabor with 6 1 seats .\n", "khedrub je wrote an important text on kalachakra that is still used by the current 1 4 th dalai lama , as the basis for his public empowerments into the practice of the kalachakra tantra .\n", "to avert the curse and the brutal killings and suicides , seth goes to jail to see dario ( jhong hilario ) and bring him food that she has poisoned .\n", "there is also a small french programme cadre school , ecole du bois-joli , for students with french language spoken at home .\n", "he received the international mass spectrometry foundation thomson medal in 1 9 9 1 at the 1 2 th international congress on mass spectrometry in amsterdam that he chaired .\n", "although there were campaign posters of him circulating , some sources still dispute his candidacy as false .\n", "he held those posts until june 1 9 2 8 , when he was one of those killed when a japanese officer set a bomb to blow up a railroad car carrying zhang zuolin , who was also killed .\n", "the college was established on march 1 , 1 9 9 0 , as a separate division from the college of humanities and college of law .\n", "the tribunal system of the united kingdom is part the national system of administrative justice with tribunals classed as non-departmental public bodies ( ndpbs ) of judges .\n", "giltrap 's wife , hilary , helped out with the vocals on this track .\n", "several other factors complicated the rise of nationalism in the german states .\n", "this work demonstrated that the p element is a recently invading parasite of the drosophila genome and gene pool .\n", "carolinian is an austronesian language originating in the caroline islands , but spoken in the northern mariana islands .\n", "in 1 1 6 7 , henry gave the county of schwerin to his vassal gunzelin von hagen , and the rest of the country around the city was returned to niklot 's son pribislav , forming a ducal hereditary line that lasted until 1 9 1 8 .\n", "they follow a philosophical , meditative path , emphasizing man 's oneness with god through understanding .\n", "this is a multi-segmented worm of variable length , a worm with 3 0 0 segments being about long .\n", "a fellow researcher challenged lawson 's estimates of the dimensions of the wing architecture of `` quetzalcoatlus '' .\n", "in the second , mary was a willing participant in the kidnapping , and the story of rape was a fabrication , so her honour and reputation were not ruined by her marriage to a man widely suspected of murder .\n", "external factors are social by nature and may correlate with the behavior of the linguistic variable .\n", "following the publication of the articles challenging the conclusions of the original `` science '' article first describing gfaj- 1 , the website retraction watch argued that the original article should be retracted because of misrepresentation of critical data .\n", "the engine was started for the first time in some 2 6 years on saturday 2 9 september 2 0 1 2 .\n", "this was elaborated in greater detail in the model of cultural family therapy in `` chapter 3 : the presenting culture '' of a stranger in the family by family therapist and transcultural psychiatrist vincenzo di nicola .\n", "he became the editor and publisher that eventually became the montello weekly express .\n", "the first plain and rolling-element bearings were wood closely followed by bronze .\n", "in the graphic , willie mays 's name was misspelled as `` willie mayes '' .\n", "in 1 9 8 0 , the updated version was published as `` expedition to the barrier peaks '' .\n", "he collaborates with putnum and many others on publications and projects such as the `` better together '' book and website aimed at promoting community and civic engagement .\n", "this makes creighton prep the third lowest of the 6 0 secondary schools in the jesuit schools network the united states .\n", "helicopter maintenance ( hmf ) also ceased here in that year .\n", "at 4 : 0 0 am on july 2 , 1 9 5 3 , he wakes up to a very alarming disturbance ; a jail riot .\n", "the blue stream , a major trans-black sea gas pipeline , delivers natural gas from russia to turkey .\n", "the volcanic fields are the remnants of a series of volcanic eruptions , the youngest of which is dated to the pleistocene era .\n", "fbc offers pre-school , grade school , junior high school , senior high school , and undergraduate and graduate level programs .\n", "all the entered remixes were uploaded onto the band 's soundcloud account .\n", "he started many of the rangers games at the end of the season , including 8 1 of the last 1 0 2 .\n", "not part of the 1 9 7 3 grand prix or 1 9 7 3 world championship tennis circuit .\n", "in over 1 0 years he participated in more than 1 0 0 races , taking 2 7 pole positions , 4 4 podiums and 2 6 victories .\n", "the engine , drive and shifter choice remained the same , with the same availability in both nissan and suzuki versions , but the gear shifter is now located on the instrument panel .\n", "in november 2 0 1 7 , the group acquired a majority holding in day after day , a company in charge of the social food street burgerjoint restaurant and a food truck called social food that appears at various events .\n", "his writing was featured 1 7 times in the annual `` best sports stories '' and selected for numerous other anthologies .\n", "andrew sent an auxiliary troop , and albert of austria routed king adolf in the battle of göllheim on 2 july .\n", "the two stations share studios in courthouse square on 1 st avenue south in sioux falls ; kdlt-tv 's transmitter is located southeast of the city near rowena .\n", "( uta and air france used to co-ordinate their schedules at los angeles to enable passengers to connect between air france 's transatlantic and uta 's transpacific services . )\n", "kingston house became a landmark for the district and is heritage-listed today .\n", "he trained at abhinayataranga under the renowned theatre personality a. s. murthy and later became a teacher in the same institution .\n", "in north america , for example , marine deposits are limited to a few exposures in the west .\n", "he then played for fc augsburg before joining chelsea in 2 0 1 5 for a fee of £ 1 4 million , potentially rising to £ 2 2 million .\n", "bdu diverted two more u-boats ( `` u- 2 0 3 `` and `` u- 2 0 5 `` ) to the attack from france ; these arrived over the next two days .\n", "the show ended with plant bidding his bandmates `` a fond farewell '' .\n", "the french name comes from the `` grand vallon '' , a secondary valley which starts from the mountain and goes northwards towards charmaix and modane .\n", "`` tweed 's magazine of literature & amp ; art '' is the second project from the coffin factory , inc .\n", "magik leads the team to limbo , as part of her plan for revenge against the elder gods .\n", "john gould recorded the aboriginal term `` djou '' from the hunter region of new south wales .\n", "the date of the first aircraft 's completion is unknown .\n", "the organization 's supporters expressed disappointment that the clinton administration did not make lsc a critical priority in its budget battles with the republican congress , especially given hillary clinton 's former role in it .\n", "it was reported in early august by russian newspaper kommersant that the failure was caused by a fault in the fuel pipe in the briz-m .\n", "ammar 's father , mother and brother also became muslims , though not at abu bakr 's invitation .\n", "cirripectes variolosus , the red-speckled blenny , is a species of combtooth blenny found in coral reefs in the pacific ocean .\n", "the total production per year of seat mii cars , manufactured in seat and other volkswagen group plants , is shown in the following table :\n", "on this chart , `` sexy , sexy , sexy '' peaked at number 4 6 and maintained its position on the charts for a total of 7 weeks .\n", "he was unanimously confirmed by the democratic-controlled us senate on march 2 9 , 2 0 0 7 .\n", "in 1 9 9 4 finnestad graduated summa cum laude from eugene bible college ( now new hope christian college ) with a degree in religion and education .\n", "variant service caps are also worn by female cadets , while peaked caps are used in the everyday uniform and in the service uniforms of the 4 th and 3 rd class cadets .\n", "nanda and his friends were charged with culpable homicide in court .\n", "during the study , in 1 9 5 3 , michael čanak with four other colleagues and friends ( l.lenarčić , m.mitić , i.petrović and i.simović ) , founded the group `` belgrade 5 `` .\n", "in 1 8 6 9 , at 2 4 years old , phin was living in lone pine , california , with his oldest brother john wesley clanton and his wife nancy .\n", "regent 's park contains london zoo , the world 's oldest scientific zoo , and is near madame tussauds wax museum .\n", "the ddc compiler was validated on a vax/vms system in september 1 9 8 4 , being the first european ada compiler to pass , and proved a success .\n", "rufus 's father elisha putnam died when rufus was 6 or 7 , and rufus temporarily lived with his paternal grandfather in danvers , massachusetts .\n", "verne and mccarty were a team who operated together .\n", "they and things relating to them may be called italo-byzantine , or alternatively `` italo-greek '' or `` italo-albanian '' .\n", "in september 1 9 6 3 , after his retirement , he gave a speech to the commonwealth club , san francisco , on the subject 'can the communists take south east asia ' and a recording is available he was knighted in 1 9 5 8 .\n", "the area is in the san andreas rift zone area in proximity to the san andreas fault .\n", "the investigation resulted in the delayed filing of alexion 's third quarter report with the securities and exchange commission ( sec ) .\n", "previously it played the highest league also in seasons 2 0 0 7 - 0 8 through 2 0 1 1 - 1 2 .\n", "at the least flow rate , the frequency of 2 4 5 2 hz compared favorably to `` n '' = 3 .\n", "much like the cover of `` powerslave '' , the wraparound album cover holds a plethora of references to earlier iron maiden albums and songs , such as :\n", "božović returned to belgrade in late 8 0 s and quickly positioned himself as the leader of the voždovac gang in his childhood neighbourhood .\n", "this rule , though absent in sanskrit definitions is followed in most of the creations of the champu genre in odia .\n", "in december 1 9 9 1 , tony george proposed to the board of directors a plan to hold a second major event at the speedway .\n", "antena 1 's headquarters was seized by the romanian state on 8 august 2 0 1 4 due to a judicial sentence against dan voiculescu , the founder of intact media group .\n", "metal mech : man & amp ; machine ( known in japan as ) is a 1 9 9 0 video game for the nintendo entertainment system .\n", "the bone bed excavation was halted at the end of august , 2 0 0 5 .\n", "some of the main areas include punjabi poetry , philosophy , spirituality , artistry , dance , music , cuisine , military weaponry , architecture , languages , traditions , values and history .\n", "the region is bordered by kajiado county and narok county in kenya to the north , the kilimanjaro region to the east , the manyara and singida regions to the south , and the mara and simiyu regions to the west .\n", "photos of some of his works show `` that he worked in the prevailing eclectic idiom style : the c.w .\n", "this list of united states disasters by death toll includes disasters that occurred either in the united states , at diplomatic missions of the united states , or incidents outside of the united states in which a number of u.s. citizens were killed .\n", "originally thought to be of reasonable cost to construct , the line soon proved otherwise .\n", "the club re-graded to intermediate in 1 9 9 1 and re-graded to junior grade in 1 9 9 3 .\n", "considerable opposition from other baptists arose , and a distinctive identity emerged .\n", "he also lectured at design academy eindhoven , the universidad iberoamericano mexico city , and iceland academy of the arts reykjavik .\n", "it was designed with a top speed of and early units had that speed marked on them .\n", "but gay let the order stand when he learned from woolnough that the latter had already started to implement it .\n", "1 8 7 4 saw the treffry 's network of tramways taken over by the cornwall minerals railway , who introduced steam locomotives to the line .\n", "the worlds is a three-day event consisting of preliminary competitions , semi finals and finals .\n", "russian-american conductor julius glaihengauz became dpo 's second music director .\n", "the retreating `` colorados '' boarded trains that were waiting for them at the station and left the area .\n", "in 1 9 6 5 the firm was selected to design the u.s. embassy office building in dakar , senegal , west africa .\n", "after her retirement in 2 0 0 7 , she is working as goalkeeper coach in hungary .\n", "they head to a complex of ancient structures on a plateau , nicknamed the claw by the colonists .\n", ") ; mr vivian barker , a lloyds bank manager ; and mr a j belsham , a solicitor .\n", "following disputes with capitol and getting `` caught up in some red tape '' that delayed the release of the project , auf der maur left the label to secure creative control and release her music on `` [ her ] own terms '' .\n", "a graduate of the juilliard school , in 1 9 6 1 daniel won both the metropolitan opera national council auditions and the town hall recital award .\n", "the sporangia produced on starch and skim milk agar have wrinkled surfaces and vary in shapes from spherical to oval and piriform .\n", "after the synthesis of silicene , multiple groups predicted that borophene could potentially be realized with the support of a metal surface .\n", "they asked american william walker , a freebooter ( filibuster ) with a private army , to help end the crisis in 1 8 6 0 by invading honduras ; he was captured upon landing in trujillo and executed there .\n", "as they can not ignore his gifts , they decide to spare his life and take the soul of another human or animal in his place .\n", "1 6 9 0 the house of commons received a petition from the bailiff and burgesses of cockermouth contending that the return of lawson had been illegal due to his serving as sheriff at the time of election .\n", "in some regions , decimal grades are used : 5 . 5 , 4 . 5 , etc .\n", "sebastian tries to understand , but lydia has to take her job several times over her love for sebastian , which leads to tension between them .\n", "in 1 9 6 4 the city of akron needed flat land on which to build a water tower .\n", "ferdinand iii resumed his rule , and died in 1 8 2 4 .\n", "historically in north america and the united kingdom the `` sexton '' was sometimes a minor municipal official responsible for overseeing the town graveyard .\n", "in 2 0 1 4 , he commissioned research which was published in `` the guardian '' about the lack of representation of bme communities in the houses of parliament .\n", "the language is spoken in uttarakhand , mainly in southwestern nainital district , along a diagonal from ramnagar to dineshpur .\n", "ernest cook poole was born in chicago , illinois , on january 2 3 , 1 8 8 0 , to abram poole and mary howe poole .\n", "it is situated in the forests of toros mountains to the east of dragon creek .\n", "he competed in the individual foil events at the 2 0 1 2 summer olympics , 2 0 0 8 summer olympics and 2 0 0 4 summer olympics .\n", "so far , rajiv has done many ads with a. r. rahman 's jingles .\n", "from 2 0 0 1 to 2 0 0 5 akuffo was deputy minister of justice and deputy attorney general , the first woman to hold these positions .\n", "details are included in the civil parish of catton , north yorkshire .\n", "further complications emerged as a result of a shift in industrialization and manufacturing ; as people sought jobs , they left their villages and small towns to work during the week in the cities , returning for a day and a half on weekends .\n", "the stories , first published in 1 9 0 2 , are origin stories , fantastic accounts of how various features of animals came to be .\n", "it grew out of an earlier company called southern engine and boiler works founded in 1 8 8 9 which made industrial engines and boilers in jackson , tennessee .\n", "ramsay utilised the respite which this victory gave him to victual the place against a new siege , and to send provisions to the french garrison of ehrenbreitstein or hermanstein .\n", "hence the sum of the turning angles of the geodesic triangle is equal to 2 π minus the total curvature within the triangle .\n", "bendik began the 2 0 1 1 season as the starter , and made his tippeligaen debut on march 2 0 , 2 0 1 1 against strømsgodset if .\n", "one of the men began to hesitate when he suspected she was still a virgin .\n", "on 1 4 march , the second and third deaths caused by covid- 1 9 were reported .\n", "he told the crowd `` they should not even bother to bring the homosexuals they find to the police station but should take care of the issue themselves '' .\n", "brenda pursues sam to no avail until it 's clear that rebecca really does n't fancy him .\n", "ciarán or ciaran is a traditionally male given name of irish origin ( scottish gaelic spelling ) .\n", "the railway was inaugurated from 1 8 may 1 9 3 9 with the presence of benito mussolini , becoming however operational only since 2 0 july 1 9 4 0 because of the need to complete several systems and the absence of the rolling stock .\n", "as part of the german summer offensive , operation blue , rostov fell to army group a on july 2 3 , opening a path to the caucasus region and the oil fields at maikop , baku and elsewhere .\n", "in the early 1 9 8 0 s , cohan co-created `` who 's the boss ? ''\n", "according to frank and schmidt , since fossilization is relatively rare and little of earth 's exposed surface is from before the quaternary time period , the chances of finding direct evidence of such a civilization , such as technological artifacts , is small .\n", "osrick 's trial for anthynus 's supposed murder of segebert provides for the plot 's resolution .\n", "in july 1 9 6 4 , the international typographical union called a strike at the `` telegram '' , the `` star '' , and `` the globe and mail '' .\n", "the columns , which served mostly as decoration and had no structural role , were removed by napoleon and displayed in the louvre .\n", "in the spring and summer , people enjoy canoeing , kayaking , camping , and swimming , while in the fall hiking becomes quite popular .\n", "in addition to the roads that run along the tongue and its major tributaries , there is a network of gravel roads that cross the highlands between the stream valleys .\n", "jhula is a village development committee in western rukum district in karnali pradesh of western nepal .\n", "in 2 0 0 6 , the virginia beach mariners selected king with the 1 5 th pick in the usl first division college draft .\n", "even in the upper classes , women were dismissed as simpletons , unable to understand or give a meaningful contribution to the philosophical or political conversations of the day .\n", "since 1 9 9 8 akashi kaikyō bridge in japan holds the record with its span of .\n", "without law and order , a society can not develop .\n", "the corporation owns three major northern norwegian bus companies , tromsbuss , ofotens bilruter and the operating subsidiary tirb rutene as .\n", "in late 2 0 2 0 , four major chromebox manufacturers , hp , acer , asus , and ctl , announced plans for new chromebox models based on the 1 0 th generation intel comet lake architecture .\n", "in the summer of 1 7 1 4 , having sufficiently secured the borders , spotswood went into action by establishing two forest settlements beyond the tidewater border , which for the past century had signed the limit of british expansion .\n", "in 2 0 1 0 , it was only published online .\n", "in the `` jangja-puri '' , the man is an unpleasant miser whose warning comes in the form of a dream interpreted by his daughter-in-law .\n", "sleep deprivation has also been cited as a contributing factor in medical errors .\n", "three other republicans sought the nomination to oppose amash ; peter meijer won the august 4 primary .\n", "newell-fonda has won four state titles in nine appearances since 1 9 9 1 ( 1 9 9 1 , 1 9 9 7 , 1 9 9 9 , 2 0 0 0 ) .\n", "a study in scotland looked at the weight of 6 0 0 , 0 0 0 infants , and followed them up to see who got scfe .\n", "it is a late baroque building that contains three 1 9 th-century wooden altars .\n", "a similar pattern occurred in finland where , after the arrival of the disease in 2 0 0 8 , there was a reduction in the number of european greenfinches , but only a small change in the number of common chaffinches .\n", "however , the f- 3 5 used was a flight test aircraft with a restricted flight envelope and lacked some features present on the operational aircraft .\n", "conor got into rugby by playing youths rugby for mullingar rfc .\n", "maximus is also the largest provider of privatized health insurance appeals to medicare .\n", "king louis xv and his ministers reaffirmed spain 's sovereignty over louisiana .\n", "native americans also boiled the sap of paper birch to make a syrup .\n", "rowntree trained to become a solicitor when blur took a hiatus in 2 0 0 6 .\n", "cole 's mother went on to marry del gracci , who regularly beat cole , while also doting on cole 's younger brother max .\n", "following his military service , morgan returned to the united states and won the pulitzer prize for local reporting , edition time in 1 9 6 1 for what was described as `` his moving account of the death of leonard warren on the metropolitan opera stage . ''\n", "the buildings in the district are a mixture of homes and commercial buildings .\n", "the competition began as the leinster senior cup in 1 9 1 9 and was renamed in 2 0 1 9 .\n", "he entered a career of acting and dubbing when he was 1 8 years old .\n", "by the time his son george became a partner in 1 8 4 7 , the firm was the preeminent publisher of novelty children 's books in london .\n", "in 2 0 0 4 , lvcsd began offering the international baccalaureate diploma programme ( ib ) .\n", "in the 1 9 7 0 s he joined ppp and was elected mpa on the party ticket three times in 1 9 7 0 , 1 9 8 8 and 1 9 9 0 .\n", "support on the `` breathe in life tour '' was provided by russian deathcore band , my autumn , and despite my deepest fear .\n", "michael is briefly enthusiastic until he learns that holly gave up on her ultimatum , considering it unreasonable .\n", "a copy of episode 3 was returned to the bbc in 1 9 8 7 from a private collector living in the united kingdom .\n", "the most luminous red supergiants , at near solar metallicity , are expected to lose most of their outer layers before their cores collapse , hence they evolve back to yellow hypergiants and luminous blue variables .\n", "performed in april 1 8 4 0 , it was his first grand opera in the french tradition and was quite successful .\n", "en ti is the debut album of latin christian music duo tercer cielo , the album was recorded between ? ? ? ?\n", "it lies in between 8 ° 7 ′ 4 2 ″n and 1 2 4 ° 5 5 ′ 3 0 ″e .\n", "the same year , he joined the marseille-fos port ( gpmm ) and became a safety and defence agent of the west port basins .\n", "after two battles , over six thousand bandits were killed while the surviving bandits fled to the region of baoqing ( 宝清 ) and fujin ( 富锦 ) .\n", "the cover for `` somewhere in time '' , created by the band 's then-regular artist derek riggs , displays a muscular cyborg-enhanced eddie in a futuristic , `` blade runner '' -inspired environment .\n", "he also acted as justiciar of ireland , following the sudden death of sir john stanley , although in view of his age and ill health it was understood that this was only a temporary appointment .\n", "in 1 9 7 9 , united nations general assembly resolution 3 4 / 3 7 reaffirmed again the right of the western sahara people to self-determination and independence , recognising also the polisario front as the representative of the western sahara people .\n", "the tournament is an all-filipino format , which does n't require an import or a pure-foreign player for each team .\n", "studies in ethnicity and nationalism ( sen ) , formerly `` the asen bulletin '' , is a scholarly interdisciplinary peer-reviewed academic journal covering research on ethnicity and nationalism .\n", "he received military training and religion instruction , and learned the languages spoken by the romanovs : russian , english , french and german .\n", "`` lichterfeld '' played its home matches at the stadion lichterfelde in steglitz .\n", "a certain area of land is chosen for a survey and random selections are made to determine where species composition measurements must be taken .\n", "in most areas , these practices are considered acceptable if done neatly .\n", "monteiro instructed the `` triton '' , an obm tug and a speedboat to wait for him until 0 6 : 0 0 , before falling back upstream .\n", "loiseau was scheduled to fight mike kent on october 2 5 , in the main event of ecc 1 8 in halifax , nova scotia .\n", "fortuna is married to david yassky , a professor of law and dean emeritus of pace university school of law , who is a former chair of the new york city taxi and limousine commission and new york city council member .\n", "each of these three components will give rise to a particular compliment of cells .\n", "in august 2 0 0 7 , talman appeared in the hollywood bowl 's concert presentation of `` south pacific '' .\n", "the master and the first officer re-boarded the ship in search of them , but concluded they had been killed on watch below .\n", "in 1 9 6 2 , at the fluxus festspiele internationale neuester musik in wiesbaden , he joined the fluxus group , taking on the role of artist-composer-philosopher .\n", "they were widely used in rapidly expanding industrial cities such as manchester in england , but were difficult to empty and clean .\n", "it is a basic principle of the rule of law .\n", "after a trial lasting five months , on 1 4 october 2 0 1 4 the timaru high court handed down verdicts on the three defendants who stood trial .\n", "the risks are not apparent until , for example , they are admitted to hospital , when they can become `` self infected '' with their own resistant organisms following a surgical procedure .\n", "there is a beautiful lake outside the village 's residential area .\n", "this is the only hungarian melody used in either of the two rhapsodies , a transylvanian fiddle tune called the `` lament of árvátfalva '' recorded by béla vikár and later transcribed by bartók .\n", "he later became a student of ferenc gábriel at the liszt ferenc academy of music of budapest , who introduced him to tibor varga , a former student of gábriel before world war ii .\n", "at this time saramago had acquired a taste for reading and started to frequent a public library in lisbon in his free time .\n", "tom wrote the second verse , and mark wrote the first verse and the chorus .\n", "she presented a written statement instead : `` today so-called aliens are deported .\n", "in the midst of this string of victories , biziou was promoted to temporary captain on 2 july .\n", "reno has his men kill the mexican men , and then reno tells murphy to find billy and kill him .\n", "in 2 0 0 4 , president kučan stated in an interview for večernji list that it was time for the slovenian soldiers to leave the barracks , adding that there was n't a sufficient will of the slovenian governing officials to do so .\n", "this low became less defined over the following days while remaining in the same general area .\n", "talman made his broadway debut in `` peter pan '' with cathy rigby , playing cecco ( pirate/indian ) .\n", "notable alumni of murmur include john o'donnell , a former `` rolling stone '' journalist who became the head of emi australia , and john watson , who runs a music management company and independent record label .\n", "michael psellus later compares him with , and even prefers him to , euripides .\n", "he sat for galway county in the irish house of commons from 1 7 1 5 until his death in 1 7 5 2 .\n", "menon started his career in the field of ad-photography , and then went on to make a number of tv commercials .\n", "the pension fund renewed their lease for another 2 0 -year term in october 2 0 1 0 .\n", "the fire consumed almost everything in its path , including jason gould 's wharf on muskrat lake , his storehouses , and `` the muskrat '' .\n", "it was still there on september 2 9 when lt. gen .\n", "the song was written using the same method with which the band wrote `` feeling this '' ; namely , delonge and hoppus would discuss themes and then set off to separate rooms of the home to write alone .\n", "after bruno and robert have a minor brawl after a conversation about robert and his wife , robert finally leaves bruno , though bruno later spots him riding a train .\n", "the cell of a desmid is often divided into two symmetrical compartments separated by a narrow bridge or isthmus , wherein the spherical nucleus is located .\n", "for optima nova ( discussed below ) zapf decided to create a new true italic with a greater slant angle .\n", "the tokyo war crimes tribunal and united nations war crimes commission both defined waterboarding as ill-treatment and torture in the aftermath of world war ii .\n", "the above table reflects the points as published in that source .\n", "its location offers a chance to serve the parts of świętokrzyskie and małoposlska regions , that are otherwise not covered by other airports .\n", "in his own words , he declared it `` my devout wish and fervent prayer that the integration of this college will come about in an orderly manner '' .\n", "the car 's build rendered it less successful than the vauxhall astra .\n", "sandhya returns to vanni for the second time with a view to meeting nandha , whom she had met and loved on her first visit .\n", "they won another silver medal at the worlds in 2 0 0 0 , and a bronze in 2 0 0 1 .\n", "in 2 0 1 2 , he signed for bundesliga club greuther fürth , where he spent two seasons .\n", "the pop art gallery is a retro-themed , interactive space which allows visitors to explore the world of pop art with its vibrant mix of popular culture , social commentary , nostalgia , kitsch and celebrity .\n", "an engagement with confederate gunboats at plum point bend on 1 1 may , marked a series of blockading and bombardment activities which culminated into the abandonment of the fort by its defenders on 4 june .\n", "the order is awarded by the decree of the president of serbia on special occasions .\n", "chen ran was born in beijing in april , 1 9 6 2 .\n", "the national federation of afro-american women ( nfaaw ) was organized during the conference , and its mission defined as :\n", "during vyjayanthimala 's introduction also became famous and still used by the people of tamil nadu .\n", "it is situated at an elevation of 7 5 0 m .\n", "the iat 's convergent and discriminant validity has been established through its comparison with explicit measures , whereby iat 's were found to relate to explicit measures targeting the traits , and not with explicit measures targeting unrelated traits .\n", "atlanticetus is a genus of extinct mysticete known from the early miocene of italy and the us eastern seaboard .\n", "the museo civico di bassano del grappa is the town art and architecture museum located on piazza garibaldi # 3 4 in bassano del grappa , in the vicenza province of the region of the veneto , in northern italy .\n", "the walls remained unchanged in form and appearance until they were demolished four centuries later .\n", "however , if the men had a psr with the superhero , the negative effects on body satisfaction were eliminated .\n", "in 1 9 3 9 , a group of students from tyre , lebanon , established a football team , which officially received its license in 1 9 4 7 .\n", "further , in other dialects `` ya '' is commonly reduced to [ i ] , though not systematically .\n", "the act provides strict liability for those who bring unauthorized foreigners into bhutan despite whatever due diligence they may have exercised .\n", "in july 2 0 1 8 , the company was ordered to pay a settlement of $ 2 7 , 0 0 0 .\n", "the head is dark fuscous and the face sprinkled with white .\n", "bao recalled watching many soviet films at that time , including `` chapaev '' and `` lenin in 1 9 1 8 `` , and he especially enjoyed movies about heroes .\n", "so , publishing wise , it is the first of the series . ''\n", "prior to 2 0 0 4 , `` un coup de dés '' was never published in the typography and format conceived by mallarmé .\n", "the manchu qing dynasty which had much of the region in 1 6 4 4 , soon split huguang into the modern provinces of hubei and hunan .\n", "he then played for sambenedettese , before spending 8 seasons at atalanta .\n", "the second semi was dominated by world leader javier culson and defending champion angelo taylor .\n", "fear was a major topic for søren kierkegaard , who wrote `` frygt og bæven '' in 1 8 4 3 ; he uses the fairy tale to show how fear within one 's belief system can lead to freedom .\n", "jeremiah , who faked being catatonic for a decade , escapes arkham and kidnaps jim 's daughter but is rescued by the vigilante .\n", "bugles in the afternoon is a 1 9 5 2 western feature film starring ray milland , based on the 1 9 4 3 novel by ernest haycox .\n", "it is known in a celebrated recording by narciso yepes .\n", "there were 4 5 2 housing units at an average density of .\n", "this propelled him to a career-high ranking of 3 9 2 on 2 3 march 2 0 1 4 .\n", "a post office has been in operation at shelbyville since 1 8 3 6 .\n", "cordelia finds herself in a new dimension , where she is chased down and captured by a demon who declares her a `` cow '' , or human slave .\n", "vysotsky 's character later shot himself during the evacuation to constantinople .\n", "an `` at-large bid '' may also be awarded to teams that do not receive a paid bid , which does not cover any expenses to compete .\n", "european citizens were asked to join in three minutes of silence to express their sincere and deepest sympathy for the victims and their families .\n", "it was the fifth edition of the tournament and was held from 1 0 september through 1 6 september 1 9 9 0 .\n", "the bearing of duly registered arms is an indication of nobility ( either peerage or non-peerage in rank ) .\n", "two days after amash 's comments , state representative james lower announced that he will challenge amash in the 2 0 2 0 republican primary , running as a self-described `` pro-trump conservative . ''\n", "through most of its existence uta was one of only four wholly privately owned , independent airlines outside of the us with a major , long-haul scheduled presence .\n", "during his years in university , he focused his studies on foreign languages , specifically english .\n", "it is named after another name for the dreamtime , a central concept in australian aboriginal mythology .\n", "in 1 9 2 2 , she became the first woman delegate at the annual conference of the farmers ' and settlers ' association of new south wales .\n", "their caterpillars are rarely plump , and apparently at least some mimic twigs or thin leaves .\n", "the same result has been obtained by gaines with a different method .\n", "the justice center is connected to the adjacent city hall by an underground waterway , which forms an artificial waterfall in the western plaza .\n", "during the battle the storyteller becomes injured and ibis takes him to an android hospital to care for him .\n", "the nantong university is accredited and approved by mci ( medical council of india ) and who ( world health organization ) .\n", "soon after , smith 's brother michael observed him building a narrow box which he claimed was for janice 's belongings .\n", "goats have also become a common mascot amongst units and installations in the army .\n", "1 9 8 2 ; 9 7 : 2 0 2 - 2 0 5 .\n", "freed in 1 9 4 5 , he worked after the war for the newly formed united nations , helping to commission their building in new york city .\n", "in may 2 0 0 8 , bob celebrated the international day against homophobia ( idaho ) at a café in dhaka , which marked the first time when bob appeared openly in public as a group of gay activists with the acknowledgment of the venue authority .\n", "in july 1 9 9 8 , he was the youngest and final member added after passing his audition .\n", "interns admitted falling asleep during lectures , during rounds , and even during surgeries .\n", "the hörsel has its source as `` kleine leina '' in the thuringian forest in the immediate vicinity of the rennsteig south of the 7 4 9 metre high spießberga at the southern community border of finsterbergen to georgenthal .\n", "he was on `` desert island discs '' twice .\n", "caroline levinia jones was proprietor for four years after her husband died in 1 8 7 6 .\n", "the möbius strip corresponds to a double cover of the circle ( the θ → 2 θ mapping ) and by changing the fiber , can also be viewed as having a two-point fiber , the unit interval as a fiber , or the real line .\n", "the petersburg historic district is a historic district which includes most of petersburg , illinois .\n", "tickets for the portland , denver and washington shows went on general sale on 9 december 1 0 am and those for houston on 8 december 5 pm .\n", "saint patrick 's day traditions going back to the 1 9 th century continue , including multiple block parties and parades .\n", "the 2 5 1 , 0 8 8 square foot building was built by hayes large architects , llp .\n", "the statutes were amended 1 2 january 1 9 5 2 to readjust the order of wearing as new decorations were established .\n", "2 0 1 0 - 8 0 % on grade level .\n", "the species was first described by william kirby in 1 8 3 7 .\n", "he wrote several dozen scientific papers on the topics of classical and modern german philosophy , philosophy of history and philosophy of politics .\n", "this time , he ordered his men to mine the rail tracks behind them , in the hope that huerta would be too eager to pursue him to take proper precautions .\n", "he was the leader of its right wing in a sharp confrontation against the left wing , represented by dragotin gustinčič , anton štebi and rudolf golouh .\n", "on the hull , an additional layer of laminated , high-strength alloy steel armour plate was welded and bolted on ; this provided additional protection against heat and apds projectiles .\n", "in 1 6 0 4 , he became the prince-bishop of constance , though he continued to reside at the little house until his death in 1 6 2 6 .\n", "downtown wayzata residences were replaced by more stores serving not only wayzatans , but also new families moving onto the former farmlands outside wayzata .\n", "however , lawson responded by demonstrating that while inconsistent with those of modern-day birds , his estimates were consistent with extrapolations of other pterosaurs , such as `` pterodactylus antiquus '' .\n", "notably , he injured his right hand early in a 1 0 -round match against rated craftsman henry clark and responded with a strong jabbing performance to beat clark , himself noted for his jabbing ability , on points .\n", "finally , because of its collective ignorance of military science and preference for the heroic saber charge , `` the committee tended to reinforce the unrealistic and simplistic notions of warfare that prevailed in the popular mind , '' writes tap .\n", "wings ( elytra ) are not broader than the prothorax , however are elongated and a little depressed , marked with fine parallel lines which are very finely scratched ( aciculate ) .\n", "in the second string of 1 0 shots , he scored 2 7 2 .\n", "the fips code links in the table point to u. s. census `` quick facts '' pages for each county .\n", "it is based on the story of rigi 's brother and sister-in-law .\n", "sculpted by the royal sculptor philip jackson , it was unveiled in 2 0 0 3 by prince andrew , president of the football association .\n", "at the end of `` yes , you ca n't , '' she is seen playing the drums for `` carry on wayward son , '' perhaps leading the viewer to believe that she is a talented drummer as well .\n", "the announcement was made by the company 's chief creative officer on twitter with the hashtag # nakedisnormal .\n", "the largest of the subspecies is the roosevelt elk ( `` c. c. roosevelti '' ) , found west of the cascade range in the u.s. states of california , oregon and washington , and in the canadian province of british columbia .\n", "he married jane batten in hampstead parish church , london in july 1 9 5 2 and lived in westerham , kent from 1 9 5 7 .\n", "timoleague franciscan friary is a national monument in state care ( # 2 1 ) and its rmp ( record of monument & amp ; place ) number is co 1 2 3 - 0 5 0 0 0 2 -\n", "garcia received an invitation to spring training in 2 0 1 6 as a non-roster player .\n", "on november 9 , 2 0 1 6 , alexion pharmaceuticals announced that an audit and finance committee was investigating the company 's sales practices related to soliris .\n", "in anglican christianity , the `` low church '' wing of one of the anglican churches includes those who give relatively little emphasis to ritual , sacraments , and sometimes the authority of clergy .\n", "she has frequently been shown to be a stress eater , a trait she shares with jack .\n", "each also finds in the others strength as they navigate their own problems such as family and school issues .\n", "substituted fulvenes are readily prepared by the condensation of cyclopentadiene and aldehydes and ketones :\n", "resolute became stuck in the ice in the spring of 1 8 5 4 and kellett and his crew were ordered to abandon ship .\n", "on june 1 3 , 1 9 7 2 , it was added to the united states national register of historic places .\n", "by far , his most well remembered film role is the part of councillor harris in the crime film `` the long good friday '' ( 1 9 8 0 ) .\n", "his family left the city in 1 9 0 7 and settled in wisconsin .\n", "near somwarpet where the coorgs were led by mathanda appachu the resistance was most furious .\n", "pouraliganji represented iran at the 2 0 1 5 afc asian cup , 2 0 1 8 fifa world cup and the 2 0 1 9 afc asian cup .\n", "in october 2 0 1 3 jákupsson was selected for the great danes project , and the year after , in november 2 0 1 4 , he was selected for the danish senior national team for men , named `` the vikings '' .\n", "kairosoft continued to port over games that it had previously developed for other platforms .\n", "max and alicia point out that something seemed to be missing from victor kray 's story , and roland agrees ...\n", "he hails from umuokogbuo , eluoma and has been a source of inspiration and pride to eluoma people .\n", "its previous title had been `` egoisten '' ( `` egoists '' ) .\n", "he scored his first professional goal on 2 5 january 2 0 1 5 , netting the game 's only in an away win against carabobo fc .\n", "offa is brought in , bound to a chair ; in his distraction he freely confesses his crimes .\n", "his score and place in the free rifle event is unknown , except that he did not win a medal .\n", "he had a very long career during which he worked with many directors , such as alain resnais , rené clément , jean-pierre melville , jacques deray and josé giovanni .\n", "there are similar recipes meant for poultry dishes prepared with seasonings like ginger , pomegranate , spikenard , and cloves .\n", "the edifice has an l-shaped footprint boasting art nouveau style , registered on the kuyavian-pomeranian voivodeship heritage list .\n", "on 2 8 september nightwish reported that they were leaving the `` summer camp '' after three months of work for london to record the orchestra , choirs , and percussion .\n", "then reliance appointed defence secretary shashikant sharma as new cag to audit kg basin , said prashant bhushan .\n", "once constructed , the wind farm would have twice the capacity of the largest renewable energy generation facility in queensland .\n", "early in 1 9 2 1 , the british government decided to provide subsidies for approved airlines , so bristol 's management authorised barnwell to proceed with a design for a single-engined transport aircraft .\n", "the tournament was played on outdoor grass courts and was held from 8 to 1 4 january 1 9 7 3 .\n", "it is in hang chat district , lampang province .\n", "on the top middle portion of this canvas there is a pentagon with a smaller pentagon inside of it coming out of the page .\n", "the chorale is set in g major , and instrumental motifs between the lines are taken from the opening sinfonia , confirming the symmetry of the cantata 's structure .\n", "in january 2 0 1 2 , the country raised the interest rate on bank deposits by up to 6 percentage points in order to curtail the rial 's depreciation .\n", "it is south and west of , and adjacent to oakland , and across the bay eastward from san francisco .\n", "vartox is in love with lana lang and has shared a rivalry with superman for her affections .\n", "the pontac house is named for the renowned great pontack ( halifax ) , which was located there just after the founding of halifax ( 1 7 4 9 ) .\n", "version 3 , developed in the c language and running on unix stations at the strasbourg observatory , was released in 1 9 9 0 .\n", "after destroying the droid , he reunited with flora and asks lymel , the head of the warrior satt to give him a vehicle for traveling outside the city .\n", "the botanical continent of australasia , as defined by the wgsrpd , consists only of australia and new zealand , plus outlying islands .\n", "as a sideline to the airbrake products , westinghouse made these horse-drawn , vertical-boiler , and horizontal-cylinder engines .\n" ] } ], "source": [ "print('\\033[1m' + 'Length of test text:' + '\\033[0m' + ' {}'.format(len(test_set)))\n", "print('\\033[1m' + 'The test set:' + '\\033[0m' + ' {}'.format(test_set))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 2) Evaluation tools (10%)\n", "\n", "We're going to need a function that evaluates our language models as well as a way to test this function before we make the language model.\n", "To test the evaluation function, you need to make a mock model which can be used exactly like a language model but that works with some simple rules.\n", "This mock model will then be used to check the evaluation, compression, and decompression functions before we've developed the language model.\n", "\n", "In this assignment, a language model function assumes the following signature:\n", "\n", "* A parameter `x_indexes` being a tensor that gives the model's input token indexes of a batch of sentences, starting with the edge token.\n", " The tensor is of type `int64` with shape `(batch size, time steps)`.\n", "* Returns a tensor of logits predicting which vocabulary token can be the next token after each token in `x_indexes`.\n", " The tensor is of type `float32` with shape `(batch size, time steps, vocab size)`.\n", "\n", "Do the following tasks:" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "2.1) Develop a mock language model.\n", "This language model will be a module that predicts the next token after every token using these rules:\n", "\n", "* If the actual previous token (not the predicted one) was 'the' then predict that the current token is 'dog'.\n", "* Otherwise, predict that the current token is 'the'.\n", "\n", "Remember that it is logits that will be returned by the forward function, not probabilities.\n", "**Give the token being predicted a logit of 2 and all other tokens a logit of 0.**\n", "The name of this class should be `MockModel`.\n", "\n", "Hints:\n", "\n", "* Feel free to use `for` loops and `if` statements.\n", "* Remember that `x_indexes` is a tensor of previous tokens.\n", " For example, if `x_indexes` is `[[1, 3]]`, this is saying that the first token to predict has a previous token being 1 and the second token to predict has a previous token being 3.\n", "\n", "Some test code has been provided to check that your mock model is correct.\n", "Fix the test code as instructed in the comments.\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", "

What is the difference between logits and probabilities?

\n", "
    \n", "
  • Logits are the raw predictions that a classification model generates, which are then passed to a normalization function.
  • \n", "
  • Probabilities are the normalized output of a classification model after it has been processed by a softmax function.
  • \n", "
" ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [], "source": [ "# Creating a token to index mapping for the vocabulary\n", "token2index = {token: index for index, token in enumerate(train_vocab)}" ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [], "source": [ "def get_index(token, index_mapping):\n", " \"\"\"Takes a token and returns the corresponding index.\n", " \n", " Args:\n", " token (str): The token to process.\n", " index_mapping (dict): A dictionary mapping tokens to indices.\n", " \n", " Returns:\n", " int: The index of the token.\n", " \"\"\"\n", " # If the token is in the index_mapping, return its index, else return the index of the unknown token\n", " return index_mapping.get(token, index_mapping[UNKNOWN_TOKEN])" ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [], "source": [ "class MockModel(torch.nn.Module):\n", " \"\"\"A mock model that predicts the next token in a sequence.\n", " \n", " Model Rules:\n", " - If the previous token was 'the', predict 'dog'.\n", " - Otherwise predict 'the'.\n", " \n", " \"\"\"\n", " def __init__(self, vocab_size, index_of_edge, index_of_the, index_of_dog):\n", " super().__init__()\n", " self.vocab_size = vocab_size\n", " self.index_of_edge = index_of_edge\n", " self.index_of_the = index_of_the\n", " self.index_of_dog = index_of_dog\n", " \n", " def forward(self, x_indexes):\n", " \"\"\"Predicts the next token in the sequence.\n", "\n", " Args:\n", " x_indexes (torch.Tensor): A tensor that gives the model's input token indexes of a batch of sentences, starting with the edge token.\n", " The tensor is of type `int64` with shape `(batch size, time steps)`\n", " Returns:\n", " torch.Tensor: A tensor of logits predicting which vocabulary token can be the next token after each token in `x_indexes`.\n", " The tensor is of type `float32` with shape `(batch size, time steps, vocab size)`.\n", " \"\"\"\n", " # Creating an empty list to store the logits\n", " logits = []\n", "\n", " # Iterating through the inputted tensor sentences\n", " for sentence in x_indexes:\n", " # Creating an empty list to store the logits for each token in the sentence\n", " sentence_logits = []\n", "\n", " # Iterating through the tokens in the batch\n", " for token in sentence:\n", " # Respective if conditions for the rules of the model\n", " if token == self.index_of_the: # If the current token is 'the', predict 'dog'\n", " # Creating a tensor with the prediction for 'dog' (logit of 2.0)\n", " next_token_logits = torch.full((self.vocab_size,), 0.0, dtype=torch.float32, device=device)\n", " next_token_logits[self.index_of_dog] = 2.0\n", " else: # Otherwise predicting 'the'\n", " # Creating a tensor with the prediction for 'the' (logit of 2.0)\n", " next_token_logits = torch.full((self.vocab_size,), 0.0, dtype=torch.float32, device=device)\n", " next_token_logits[self.index_of_the] = 2.0\n", " \n", " # Appending the logits for the token to the list of logits for the sentence\n", " sentence_logits.append(next_token_logits)\n", "\n", " # Appending the logits for the sentence to the list of logits\n", " logits.append(torch.stack(sentence_logits))\n", "\n", " # Returning the logits\n", " return torch.stack(logits)" ] }, { "cell_type": "code", "execution_count": 21, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[1mCorrect!\u001b[0m\n" ] } ], "source": [ "vocab_size = len(train_vocab) # You can change this to whatever code gives you the vocabulary size.\n", "index_of_edge = get_index(EDGE_TOKEN, token2index) # You can change this to whatever code gives you the index of the edge token.\n", "index_of_the = get_index('the', token2index) # You can change this to whatever code gives you the index of the token 'the'.\n", "index_of_dog = get_index('dog', token2index) # You can change this to whatever code gives you the index of the token 'dog'.\n", "mock_model = MockModel(vocab_size, index_of_edge, index_of_the, index_of_dog) # You can change these parameters as you wish.\n", "mock_model.to(device)\n", "\n", "mock_x_indexes = torch.tensor([\n", " [index_of_edge, index_of_dog, index_of_the, index_of_the],\n", " [index_of_edge, index_of_the, index_of_dog, index_of_dog],\n", "], dtype=torch.int64, device=device)\n", "\n", "mock_expected_logits = torch.zeros((2, 4, vocab_size), dtype=torch.float32, device=device)\n", "mock_expected_logits[0, 0, index_of_the] = 2\n", "mock_expected_logits[0, 1, index_of_the] = 2\n", "mock_expected_logits[0, 2, index_of_dog] = 2\n", "mock_expected_logits[0, 3, index_of_dog] = 2\n", "mock_expected_logits[1, 0, index_of_the] = 2\n", "mock_expected_logits[1, 1, index_of_dog] = 2\n", "mock_expected_logits[1, 2, index_of_the] = 2\n", "mock_expected_logits[1, 3, index_of_the] = 2\n", "\n", "mock_logits = mock_model(mock_x_indexes)\n", "assert mock_logits.shape == mock_expected_logits.shape, 'Output shape is invalid.'\n", "assert mock_logits.dtype == mock_expected_logits.dtype, 'Output data type is invalid.'\n", "assert np.unique(mock_logits.detach().cpu().numpy()).tolist() == [0.0, 2.0], 'Output has values other than 0 and 2'\n", "assert (mock_logits == mock_expected_logits).all(), 'Output has the the wrong logits.'\n", "print('\\033[1m' + 'Correct!' + '\\033[0m')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "2.2) Next, we need a function that measures the perplexity of a language model on the dev set.\n", "Your function must take a model and a data set of token indexes and return the perplexity over the entire data set.\n", "\n", "Hints:\n", "\n", "* Don't forget that the perplexity includes the probability of the edge token at the end of the sentence.\n", "* Don't forget to ignore pad tokens.\n", "\n", "Use this function to find the mock model's perplexity on the dev set, which should be equal to `7062.2`." ] }, { "cell_type": "code", "execution_count": 22, "metadata": {}, "outputs": [], "source": [ "def create_tensor(dataset, index_mapping):\n", " \"\"\"Creates a tensor from the given dataset.\n", " \n", " Args:\n", " dataset (list): A list of sentences, where each sentence is a list of words.\n", " index_mapping (dict): A dictionary mapping tokens to indices.\n", " \n", " Returns:\n", " tensor: A tensor of the given indexes.\n", " \"\"\"\n", " # Returning the tensor of the given indexes\n", " return torch.tensor(\n", " [\n", " [get_index(token, index_mapping) for token in sentence] # Retrieving the index of each token in the sentence\n", " for sentence in dataset # Iterating through each sentence in the dataset\n", " ],\n", " dtype=torch.int64, device=device\n", " )" ] }, { "cell_type": "code", "execution_count": 23, "metadata": {}, "outputs": [], "source": [ "# Creating respective dataset tensors\n", "dev_x_indexes = create_tensor(dev_sentences_x_indexes, token2index)\n", "dev_y_indexes = create_tensor(dev_sentences_y_indexes, token2index)\n", "train_x_indexes = create_tensor(train_sentences_x_indexes, token2index)\n", "train_y_indexes = create_tensor(train_sentences_y_indexes, token2index)" ] }, { "cell_type": "code", "execution_count": 24, "metadata": {}, "outputs": [], "source": [ "def measure_perplexity(x_indexes, y_indexes, model, index_mapping):\n", " \"\"\"Takes a tensor of token indexes and measures the perplexity of the model on the dataset.\n", " \n", " Args:\n", " X_indexes (Tensor): A tensor of token indexes of a batch of sentences, starting with the edge token.\n", " The tensor is of type `int64` with shape `(batch size, time steps)`\n", " y_indexes (Tensor): A tensor of token indexes of a batch of sentences, ending with the edge token.\n", " The tensor is of type `int64` with shape `(batch size, time steps)`\n", " model: The language model.\n", " index_mapping (dict): A dictionary mapping tokens to indices.\n", " \n", " Returns:\n", " float: The perplexity of the language model on the dataset.\n", " \"\"\"\n", " # Initializing perplexity\n", " perplexity = 0.0\n", " \n", " # Pad tokens will be ignored in the perplexity calculation\n", " pad_token = get_index(PADDING_TOKEN, index_mapping)\n", " \n", " # Calculating the perplexity, setting the model to not train\n", " with torch.no_grad():\n", " # Creating a tensor of the logits for the dataset\n", " logits = model(x_indexes)\n", "\n", " # Measuring the perplexity using cross entropy loss (Note that the ignore_index is being used instead of the pad_mask, as it is more efficient computationally)\n", " perplexity = torch.nn.functional.cross_entropy(logits.transpose(1, 2), y_indexes, ignore_index=pad_token).exp().item()\n", "\n", " # Returning the perplexity\n", " return perplexity" ] }, { "cell_type": "code", "execution_count": 25, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[1mThe perplexity of the mock model on the dev set:\u001b[0m 7062.2\n" ] } ], "source": [ "# Measuring the perplexity of the mock model on the dev set\n", "perplexity = measure_perplexity(dev_x_indexes, dev_y_indexes, mock_model, index_mapping=token2index)\n", "print('\\033[1m' + 'The perplexity of the mock model on the dev set:' + '\\033[0m' + ' {:.1f}'.format(perplexity))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 3) Compression and decompression (20%)\n", "\n", "We will now write the code that makes the actual compression and decompression of a text.\n", "\n", "The compression algorithm will work as follows:\n", "\n", "* You have a string of text to compress called `text` and a language model called `model`.\n", "* Extract a list of tokens from `text` called `tokens` and a list of corresponding token indexes called `indexes`.\n", "* Use `model` on `indexes` to produce `predicted`, a list of predicted next tokens for every index in `indexes`.\n", " A predicted next token is just the most probable token according to `model`.\n", "* If a token in `predicted` corresponds to a token in `tokens`, then that token can be predicted by the model from its previous tokens.\n", " In this case, we don't need to have the token written down as it can be predicted, so we replace it in `tokens` with the single letter 'X' to say that a token should be predicted here.\n", " If 'X' is shorter than the replaced token, then the text will become shorter.\n", " Since all the text in our data sets is in lowercase, there will never be an 'X' in a sentence, so we can safely use it as a flag.\n", "* If the token isn't correctly predicted then we leave the token in the text as-is.\n", "* After all predictable tokens in `tokens` have been replaced with an 'X', return `tokens` as a space separated string.\n", "\n", "The decompression algorithm will work as follows:\n", "\n", "* You have a string of compressed text called `text` and a language model called `model`.\n", "* Extract a list of tokens from `text` called `tokens`.\n", "* Go through the tokens in `tokens` from the front and stop at the first 'X'.\n", "* Convert all the tokens before the 'X' to token indexes called `indexes`.\n", "* Use `model` to predict what the most probable token at the end of `indexes` would be.\n", "* Replace the 'X' in `tokens` with this most probable token.\n", "* Repeat this for every 'X'.\n", "* After all 'X' are replaced in `tokens`, return `tokens` as a space separated string.\n", "\n", "Do the following tasks:" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "3.1) Start with the compression function.\n", "The input text will consist of sentences separated by new lines and space separated tokens (just like the raw data sets).\n", "The function should return a single string with each line in the input text being compressed.\n", "Remember that we want a compressed text to be decompressed back into the exact original text, which means that all out-of-vocabulary tokens must be left as-is (**there must not be any unknown tokens in the output**).\n", "\n", "Print out the result of compressing this sentence using the mock model:\n", "\n", "`the dog bit the cat sensually .`\n", "\n", "which should be compressed into:\n", "\n", "`X X bit X cat sensually .`\n", "\n", "Hints:\n", "\n", "* You don't need to follow the algorithm described above exactly (you can use different variable names and you can use new variables).\n", "* Don't forget that out of vocabulary tokens still need to be replaced with the unknown token when creating the token indexes.\n", " What you can't do is return unknown tokens in the compressed output.\n", "* The most probable token index for all token positions at once can be found from the logits by using `.argmax(1)`.\n", "* Do not compare the token indexes of the uncompressed sentence to the predicted token indexes as otherwise the unknown token can be considered a correct prediction.\n", " Instead, compare the predictions with the string tokens in the uncompressed sentence." ] }, { "cell_type": "code", "execution_count": 26, "metadata": {}, "outputs": [], "source": [ "def compress(text, model, index_mapping):\n", " \"\"\"Compresses the given text using the given model.\n", "\n", " Args:\n", " text (str): The text to compress, which consists of sentences separated by new lines and space separated tokens.\n", " model: The language model. \n", " index_mapping (dict): A dictionary mapping tokens to indices. \n", "\n", " Returns:\n", " str: The compressed text.\n", " \"\"\"\n", " # Extracting a list of tokens for each sentence in the text, splitting by new lines first, then by spaces\n", " sentences = [sentence.split() for sentence in text.split('\\n')]\n", "\n", " # Retrieving the maximum length of a sentence in the calculated sentences\n", " max_length = max([len(sentence) for sentence in sentences])\n", "\n", " # Creating dictionary to map indices to tokens\n", " index2token = {index: token for token, index in index_mapping.items()}\n", "\n", " # Creating a multi-sized tensor of the indexes of the tokens in the sentences\n", " x_indexes = torch.tensor(\n", " [\n", " [get_index(EDGE_TOKEN, index_mapping)] +\n", " [get_index(token, index_mapping) for token in sentence] +\n", " [get_index(PADDING_TOKEN,index_mapping)] * (max_length - len(sentence))\n", " for sentence in sentences # Including all the above constructs in a list comprehension\n", " ],\n", " dtype=torch.int64,\n", " device=device\n", " )\n", "\n", " # Predicting the logits for the tokens to produce a tensor\n", " predicted = model(x_indexes)\n", "\n", " # Looping through the predicted logits, and for each sentence, predicting the next token\n", " for i in range(len(predicted)):\n", " # Predicting the next token for each token in the sentence\n", " predicted_tokens = torch.argmax(predicted[i], dim=1)\n", "\n", " # Looping through the tokens in the sentence\n", " for j in range(len(sentences[i])):\n", " # If the predicted token is the same as the original token, then set the original token to 'X'\n", " if index2token[predicted_tokens[j].item()] == sentences[i][j]:\n", " sentences[i][j] = 'X' # Setting the token to 'X' as X is only 1 character long and thus space will be saved\n", "\n", " # Joining the tokens into a string and returning compressed text\n", " compressed_text = '\\n'.join([' '.join(sentence) for sentence in sentences])\n", "\n", " # Returning the compressed text\n", " return compressed_text" ] }, { "cell_type": "code", "execution_count": 27, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[1mOriginal text:\u001b[0m the dog bit the cat sensually .\n", "\u001b[1mCompressed text:\u001b[0m X X bit X cat sensually .\n" ] } ], "source": [ "# Compressing the test set using the mock model\n", "test_text = \"the dog bit the cat sensually .\"\n", "compressed_text = compress(test_text, mock_model, index_mapping=token2index)\n", "\n", "print('\\033[1m' + 'Original text:' + '\\033[0m' + ' {}'.format(test_text))\n", "print('\\033[1m' + 'Compressed text:' + '\\033[0m' + ' {}'.format(compressed_text))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "3.2) Now write the decompression function.\n", "Again, The input text will consist of sentences separated by new lines and space separated tokens, only this time, some of those tokens will be an 'X'.\n", "The function should return a single big string where each line in the compressed text is decompressed back into the original input line.\n", "\n", "Print out the result of decompressing the compressed text:\n", "\n", "`X X bit X cat sensually .`\n", "\n", "which should be decompressed into:\n", "\n", "`the dog bit the cat sensually .`\n", "\n", "Hints:\n", "\n", "* You cannot use the language model once to predict all 'X's at once because the sentence prefix leading up to the 'X' must not have another 'X' in it.\n", " So you have to make a separate language model prediction for every 'X' using only the tokens that come before 'X' as input to the language model (plus the edge token at the front).\n", "* Don't forget that the input to the language model cannot contain 'X's, so make sure that you're replacing those 'X's with their predicted token when constructing the language model input.\n" ] }, { "cell_type": "code", "execution_count": 28, "metadata": {}, "outputs": [], "source": [ "def decompress(text, model, index_mapping):\n", " \"\"\"Decompresses the given text using the given model.\n", "\n", " Args:\n", " text (str): The text to decompress, which consists of sentences separated by new lines and space separated tokens.\n", " model: The language model. \n", " index_mapping (dict): A dictionary mapping tokens to indices. \n", "\n", " Returns:\n", " str: The decompressed text.\n", " \"\"\"\n", " # Extracting a list of tokens for each sentence in the text, splitting by new lines first, then by spaces\n", " sentences = [sentence.split() for sentence in text.split('\\n')]\n", "\n", " # Creating a dictionary to store the token of each index\n", " index2token = {index: token for token, index in index_mapping.items()}\n", " \n", " # Looping through all the sentences\n", " for sentence_no, sentence in enumerate(sentences):\n", " # Making a copy of the original sentence\n", " original_sentence = sentence[:]\n", " \n", " # Looping through all the tokens, and once a token is 'X', convert the tokens to indices\n", " for token_no, token in enumerate(sentence):\n", " # If the token is 'X', then convert the token to the index of the predicted token\n", " if token == 'X':\n", " # Creating a tensor of the indexes of the tokens, adding the edge token to the beginning, and only taking the tokens before the 'X' token\n", " x_indexes = torch.tensor([get_index(EDGE_TOKEN, index_mapping)] + [get_index(token, index_mapping) for token in original_sentence[:token_no]], dtype=torch.int64, device=device)\n", " \n", " # Predicting the logits for the tokens to produce a list\n", " predicted = model(x_indexes.unsqueeze(0))[0]\n", "\n", " # Retrieving the index of the token with the highest probability through the argmax function\n", " predicted = torch.argmax(predicted, dim=1)\n", "\n", " # Retrieving the token from the index (the last token in the list)\n", " new_token = index2token[predicted[-1].item()]\n", " \n", " # Replacing the 'X' token with the new token in the original sentence\n", " original_sentence[token_no] = new_token\n", " \n", " # Replacing the modified sentence back in the 'sentences' list\n", " sentences[sentence_no] = original_sentence\n", "\n", " # Joining the tokens into a string and returning compressed text\n", " decompressed_text = '\\n'.join([' '.join(sentence) for sentence in sentences])\n", "\n", " # Returning the decompressed text\n", " return decompressed_text" ] }, { "cell_type": "code", "execution_count": 29, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[1mCompressed text:\u001b[0m X X bit X cat sensually .\n", "\u001b[1mDecompressed text:\u001b[0m the dog bit the cat sensually .\n" ] } ], "source": [ "# Decompressing the compressed text using the mock model\n", "test_text = \"X X bit X cat sensually .\"\n", "decompressed_text = decompress(test_text, mock_model, index_mapping=token2index)\n", "\n", "print('\\033[1m' + 'Compressed text:' + '\\033[0m' + ' {}'.format(test_text))\n", "print('\\033[1m' + 'Decompressed text:' + '\\033[0m' + ' {}'.format(decompressed_text))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "3.3) Next, calculate and print the space saving amount of the mock model on the test set.\n", "The space saving amount is calculated as follows:\n", "\n", "$$\\text{space\\_saving}(t) = 1 - \\frac{|\\text{compress}(t)|}{|t|}$$\n", "\n", "where $|t|$ is the number of characters in text $t$.\n", "\n", "This measure tells you what fraction of the original size has been shaved off after compression (higher is better).\n", "The mock model should give 2.4%." ] }, { "cell_type": "code", "execution_count": 30, "metadata": {}, "outputs": [], "source": [ "def calculate_space_saving(text, model, index_mapping):\n", " \"\"\"Calculates the space saving of the given text.\n", " \n", " Formula:\n", " space_saving(text) = 1 - (length(compress(text)) / length(text))\n", " \n", " Args:\n", " text (str): The text to calculate the space saving of, which consists of sentences separated by new lines and space separated tokens.\n", " model: The language model. \n", " index_mapping (dict): A dictionary mapping tokens to indices. \n", " \n", " Returns:\n", " float: The percentage of the space saved by compressing the text.\n", " \"\"\"\n", " # Length of original text\n", " t = len(text) \n", "\n", " # Length of compressed text\n", " c = len(compress(text, model, index_mapping=index_mapping)) \n", "\n", " # Calculating space saved\n", " space_saved = 1 - (c/t) \n", "\n", " # Returning the space saved\n", " return space_saved " ] }, { "cell_type": "code", "execution_count": 31, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[1mThe space saving of the mock model on the test set:\u001b[0m 2.4%\n" ] } ], "source": [ "# Calculating the space saved by the mock model on the test set mentioned above\n", "space_saved = calculate_space_saving(test_set, mock_model, index_mapping=token2index)\n", "\n", "# Printing the space saved to 1 decimal place\n", "print(f'\\033[1m' + 'The space saving of the mock model on the test set:' + '\\033[0m' + ' {:.1%}'.format(space_saved))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 4) Making and using a language model (50%)\n", "\n", "Now we finally train a language model and use it to compress the test set.\n", "\n", "Do the following tasks:" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "4.1) Train a neural language model on the train set.\n", "After training, show a graph of how the *dev set perplexity* varies with each epoch (use the perplexity function you wrote above)." ] }, { "cell_type": "code", "execution_count": 32, "metadata": {}, "outputs": [], "source": [ "class NeuralLanguageModel(torch.nn.Module):\n", " \"\"\"Neural language model which can be used to compress text.\n", "\n", " Args:\n", " vocab_size (int): The size of the vocabulary.\n", " embedding_size (int): The size of the embedding layer.\n", " state_size (int): The size of the LSTM layer.\n", " dropout_rate (float): The dropout rate (default: 0.5). Note that this value was selected following extensive experimentation and research.\n", " weight_decay (float): The weight decay (default: 1e-5). Note that this value was selected following extensive experimentation and research.\n", "\n", " Attributes:\n", " embedding (torch.nn.Embedding): The embedding layer.\n", " rnn_s0 (torch.nn.Parameter): The initial hidden state of the LSTM layer.\n", " rnn_c0 (torch.nn.Parameter): The initial cell state of the LSTM layer.\n", " rnn_cell (torch.nn.LSTMCell): The LSTM layer.\n", " dropout (torch.nn.Dropout): The dropout layer.\n", " output_layer (torch.nn.Linear): The linear layer.\n", " weight_decay (float): The weight decay.\n", "\n", " Returns:\n", " torch.Tensor: A tensor of logits predicting which vocabulary token can be the next token after each token in `x_indexes`.\n", " The tensor is of type `float32` with shape `(batch size, time steps, vocab size)`.\n", " \"\"\"\n", " def __init__(self, vocab_size, embedding_size, state_size, dropout_rate=0.5, weight_decay=1e-5):\n", " super().__init__()\n", " self.embedding = torch.nn.Embedding(vocab_size, embedding_size)\n", " self.rnn_s0 = torch.nn.Parameter(torch.zeros((state_size,), dtype=torch.float32))\n", " self.rnn_c0 = torch.nn.Parameter(torch.zeros((state_size,), dtype=torch.float32))\n", " self.rnn_cell = torch.nn.LSTMCell(embedding_size, state_size)\n", " self.dropout = torch.nn.Dropout(dropout_rate) # Applying dropout to the intermediate states\n", " self.batch_norm = torch.nn.BatchNorm1d(state_size)\n", " self.output_layer = torch.nn.Linear(state_size, vocab_size)\n", " self.weight_decay = weight_decay\n", "\n", " def forward(self, x_indexes):\n", " \"\"\"Forward pass of the neural language model.\n", "\n", " Args:\n", " x_indexes (torch.Tensor): A tensor that gives the model's input token indexes of a batch of sentences, starting with the edge token.\n", " The tensor is of type `int64` with shape `(batch size, time steps)`\n", " \n", " Returns:\n", " torch.Tensor: A tensor of logits predicting which vocabulary token can be the next token after each token in `x_indexes`.\n", " The tensor is of type `float32` with shape `(batch size, time steps, vocab size)`.\n", " \"\"\"\n", " # Retrieving the batch size and time steps\n", " batch_size = x_indexes.shape[0]\n", " time_steps = x_indexes.shape[1]\n", "\n", " # Creating a tensor of the embedded input\n", " embedded = self.embedding(x_indexes)\n", "\n", " # Initializing the hidden and cell states\n", " state = self.rnn_s0[None, :].tile((batch_size, 1))\n", " c = self.rnn_c0[None, :].tile((batch_size, 1))\n", "\n", " # Creating a list to store the intermediate states\n", " interm_states_list = []\n", "\n", " # Iterating through the time steps\n", " for t in range(time_steps):\n", " # Calculating the intermediate state\n", " (state, c) = self.rnn_cell(embedded[:, t, :], (state, c))\n", "\n", " # Appending the intermediate state to the list of intermediate states\n", " interm_states_list.append(state)\n", "\n", " # Stacking the intermediate states into a tensor\n", " interm_states = torch.stack(interm_states_list, dim=1)\n", " \n", " # Applying dropout to the intermediate states\n", " interm_states = self.dropout(interm_states)\n", " \n", " # Returning the logits\n", " return self.output_layer(interm_states)" ] }, { "cell_type": "code", "execution_count": 33, "metadata": {}, "outputs": [], "source": [ "def train(model, train_set, dev_set, optimizer, epochs, batch_size, patience, index_mapping, display_every_n, do_display = False):\n", " \"\"\" Trains the given model on the given train set, using the given optimizer, for the given number of epochs, and evaluates it on the given dev set.\n", "\n", " Args:\n", " model: The language model.\n", " train_set (x_indexes, y_indexes): A tuple of tensors, where x_indexes is a tensor of token indexes of a batch of sentences, starting with the edge token.\n", " The tensor is of type `int64` with shape `(batch size, time steps)`.\n", " y_indexes is a tensor of token indexes of a batch of sentences, ending with the edge token.\n", " The tensor is of type `int64` with shape `(batch size, time steps)`.\n", " dev_set (x_indexes, y_indexes): A tuple of tensors, where x_indexes is a tensor of token indexes of a batch of sentences, starting with the edge token.\n", " The tensor is of type `int64` with shape `(batch size, time steps)`.\n", " y_indexes is a tensor of token indexes of a batch of sentences, ending with the edge token.\n", " The tensor is of type `int64` with shape `(batch size, time steps)`.\n", " optimizer: The optimizer to use.\n", " epochs (int): The number of epochs to train the model for.\n", " batch_size (int): The batch size to use.\n", " patience (int): The number of epochs to wait before early stopping.\n", " index_mapping (dict): A dictionary mapping tokens to indices.\n", " do_display (bool): Whether to display the training error and perplexity of the dev set for each epoch (default: False).\n", " display_every_n (int): The number of epochs to wait before displaying the training error and perplexity of the dev set.\n", "\n", " Returns:\n", " train_errors (list): A list of the training errors for each epoch.\n", " dev_perplexities (list): A list of the perplexities of the dev set for each epoch.\n", "\n", " \"\"\"\n", " if do_display:\n", " print('\\033[0;32m' + 'Training the model...' + '\\033[0m')\n", " print('-' * print_size)\n", "\n", " # Creating a list to store the training errors for each epoch\n", " train_errors = [] \n", "\n", " # Creating a list to store the perplexity of the dev set for each epoch\n", " dev_perplexities = []\n", "\n", " # Extracting the x_indexes and y_indexes from the train set\n", " train_x_indexes, train_y_indexes = train_set\n", "\n", " # Extracting the x_indexes and y_indexes from the dev set\n", " dev_x_indexes, dev_y_indexes = dev_set\n", " \n", " # Pad tokens will be ignored in the perplexity calculation\n", " pad_token = get_index(PADDING_TOKEN, index_mapping)\n", "\n", " # Iterating through the epochs\n", " for epoch in range(epochs):\n", " # Setting the model to train\n", " model.train()\n", "\n", " # Shuffling training data\n", " permutation = torch.randperm(train_x_indexes.size()[0])\n", "\n", " # Creating a variable to store the training error for the epoch\n", " epoch_train_error = 0.0\n", "\n", " # Looping through the batches\n", " for batch in range(0, train_x_indexes.size()[0], batch_size):\n", " # Clearing the gradients\n", " optimizer.zero_grad()\n", "\n", " # Creating a batch of the training data\n", " batch_x_indexes = train_x_indexes[permutation[batch:batch+batch_size]]\n", " batch_y_indexes = train_y_indexes[permutation[batch:batch+batch_size]]\n", "\n", " # Predicting the logits for the batch\n", " logits = model(batch_x_indexes)\n", "\n", " # Calculating the loss\n", " loss = torch.nn.functional.cross_entropy(logits.transpose(1, 2), batch_y_indexes, ignore_index=pad_token, reduction='none').mean()\n", "\n", " # Appending the loss to the epoch training error\n", " epoch_train_error += (loss.item() * batch_size / train_x_indexes.size()[0])\n", " \n", " # Calculating the gradients\n", " loss.backward()\n", "\n", " # Applying gradient clipping, in order to prevent exploding gradients\n", " torch.nn.utils.clip_grad_norm_(model.parameters(), 1.0)\n", "\n", " # Updating the parameters\n", " optimizer.step()\n", "\n", " # Appending the epoch training error to the list of training errors\n", " train_errors.append(epoch_train_error)\n", "\n", " # Checking with the dev set\n", " # Setting the model to eval\n", " model.eval()\n", "\n", " # Calculating the perplexity of the dev set\n", " perplexity = measure_perplexity(dev_x_indexes, dev_y_indexes, model, index_mapping=index_mapping)\n", "\n", " # Adding the perplexity to the \n", " dev_perplexities.append(perplexity)\n", "\n", " # Checking if the epoch is a multiple of the display_every_n and if do_display is True\n", " if(do_display and (epoch+1) % display_every_n == 0):\n", " # Printing the epoch training error\n", " print(f'[Epoch {epoch+1} / {epochs} \\t training error: {epoch_train_error:.1f} \\t dev set perplexity: {perplexity:.1f}]')\n", " print('*' * print_size)\n", "\n", " # Checking for early stopping\n", " if(perplexity > min(dev_perplexities)):\n", " # Decrementing patience\n", " patience -= 1\n", "\n", " # Checking if patience has run out\n", " if(patience == 0):\n", " # Printing early stopping message\n", " if do_display:\n", " print('\\033[0;35m' + 'Early stopping at epoch {} / {}!'.format(epoch+1, epochs) + '\\033[0m')\n", " break\n", " else:\n", " # Saving the model\n", " torch.save(model, 'model.pkl')\n", "\n", " if do_display:\n", " print('-' * print_size) \n", " print('\\033[0;32m' + 'Training complete!' + '\\033[0m')\n", " \n", " # Returning the list of training errors\n", " return train_errors, dev_perplexities" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "4.1.1) Hyperparameter Tuning\n", "\n", "Please note that the following code snippet was used to find the best hyperparameters. From the test it was noted that the best hyperparameters were:\n", "\n", "* `Learning Rate: 0.01`\n", "* `Embedding Size: 312`\n", "* `State Size: 312`\n", "* `Batch Size: 64`\n", "\n", "Additionally, this combination of hyperparameters resulted in a dev perplexity of `73.2`.\n", "\n", "The code used to find the best hyperparameters is shown below:\n", "\n", "
\n", "\n", "\n", "```python\n", "\n", "# Performing hyperparameter tuning\n", "epochs = 4000+1\n", "do_display = False\n", "display_every_n = 0\n", "patience = 3\n", "\n", "# Creating a list of hyperparameter combinations to try\n", "hyperparameter_combinations = {\n", " \"lr\": [0.01, 0.001, 0.0001],\n", " \"embedding_size\": [32, 64, 128, 256, 312],\n", " \"state_size\": [32, 64, 128, 256, 312],\n", " \"batch_size\": [32, 64, 128],\n", "}\n", "\n", "# Storing the best hyperparameters\n", "best_hyperparameters = None\n", "best_dev_perplexity = float('inf')\n", "count = 0\n", "\n", "# Iterating through the hyperparameter combinations\n", "for lr in hyperparameter_combinations[\"lr\"]:\n", " for embedding_size in hyperparameter_combinations[\"embedding_size\"]:\n", " for state_size in hyperparameter_combinations[\"state_size\"]:\n", " for batch_size in hyperparameter_combinations[\"batch_size\"]:\n", " print(\"=\"*print_size)\n", " print('\\033[0;32m' + 'Iteration: {}'.format(count+1) + '\\033[0m')\n", "\n", " # Creating the model\n", " language_model = NeuralLanguageModel(train_vocab_size, embedding_size, state_size)\n", " language_model.to(device)\n", "\n", " # Creating the optimizer\n", " optimizer = torch.optim.Adam(language_model.parameters(), lr=lr, weight_decay=language_model.weight_decay)\n", "\n", " # Training the model\n", " train_errors, dev_perplexities = train(language_model, (train_x_indexes, train_y_indexes), (dev_x_indexes, dev_y_indexes), optimizer, epochs, batch_size, patience, token2index, display_every_n, do_display)\n", "\n", " # Printing the hyperparameters and dev set perplexity\n", " print('\\033[0;35m' + 'Learning Rate: {}, Embedding Size: {}, State Size: {}, Batch Size: {}, Dev Perplexity: {:.1f}'.format(lr, embedding_size, state_size, batch_size, min(dev_perplexities)) + '\\033[0m') \n", "\n", "\n", " # Checking if the model is the best model\n", " if(dev_perplexities[-1] < best_dev_perplexity):\n", " # Saving the hyperparameters\n", " best_hyperparameters = (lr, embedding_size, state_size, batch_size)\n", " best_dev_perplexity = dev_perplexities[-1]\n", "\n", " # Incrementing the count\n", " count += 1\n", "\n", "# Printing the best hyperparameters\n", "print(\"*\"*print_size)\n", "print('\\033[0;32m' + 'Best Hyperparameters: Learning Rate: {}, Embedding Size: {}, State Size: {}, Batch Size: {}, Dev Perplexity: {:.1f}'.format(*best_hyperparameters, best_dev_perplexity) + '\\033[0m')\n", "\n", "```\n", "\n", "\n", "
" ] }, { "cell_type": "code", "execution_count": 34, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[0;32mTraining the model...\u001b[0m\n", "---------------------------------------------------------------------------------------\n", "[Epoch 1 / 4001 \t training error: 2.8 \t dev set perplexity: 110.1]\n", "***************************************************************************************\n", "[Epoch 2 / 4001 \t training error: 2.5 \t dev set perplexity: 95.6]\n", "***************************************************************************************\n", "[Epoch 3 / 4001 \t training error: 2.4 \t dev set perplexity: 87.3]\n", "***************************************************************************************\n", "[Epoch 4 / 4001 \t training error: 2.4 \t dev set perplexity: 83.5]\n", "***************************************************************************************\n", "[Epoch 5 / 4001 \t training error: 2.3 \t dev set perplexity: 80.5]\n", "***************************************************************************************\n", "[Epoch 6 / 4001 \t training error: 2.3 \t dev set perplexity: 78.8]\n", "***************************************************************************************\n", "[Epoch 7 / 4001 \t training error: 2.3 \t dev set perplexity: 77.4]\n", "***************************************************************************************\n", "[Epoch 8 / 4001 \t training error: 2.2 \t dev set perplexity: 76.9]\n", "***************************************************************************************\n", "[Epoch 9 / 4001 \t training error: 2.2 \t dev set perplexity: 76.3]\n", "***************************************************************************************\n", "[Epoch 10 / 4001 \t training error: 2.2 \t dev set perplexity: 75.4]\n", "***************************************************************************************\n", "[Epoch 11 / 4001 \t training error: 2.2 \t dev set perplexity: 74.9]\n", "***************************************************************************************\n", "[Epoch 12 / 4001 \t training error: 2.2 \t dev set perplexity: 74.3]\n", "***************************************************************************************\n", "[Epoch 13 / 4001 \t training error: 2.1 \t dev set perplexity: 74.1]\n", "***************************************************************************************\n", "[Epoch 14 / 4001 \t training error: 2.1 \t dev set perplexity: 73.8]\n", "***************************************************************************************\n", "[Epoch 15 / 4001 \t training error: 2.1 \t dev set perplexity: 73.8]\n", "***************************************************************************************\n", "[Epoch 16 / 4001 \t training error: 2.1 \t dev set perplexity: 73.7]\n", "***************************************************************************************\n", "[Epoch 17 / 4001 \t training error: 2.1 \t dev set perplexity: 73.8]\n", "***************************************************************************************\n", "[Epoch 18 / 4001 \t training error: 2.1 \t dev set perplexity: 73.5]\n", "***************************************************************************************\n", "[Epoch 19 / 4001 \t training error: 2.1 \t dev set perplexity: 73.3]\n", "***************************************************************************************\n", "[Epoch 20 / 4001 \t training error: 2.1 \t dev set perplexity: 74.0]\n", "***************************************************************************************\n", "[Epoch 21 / 4001 \t training error: 2.0 \t dev set perplexity: 73.9]\n", "***************************************************************************************\n", "[Epoch 22 / 4001 \t training error: 2.0 \t dev set perplexity: 74.0]\n", "***************************************************************************************\n", "[Epoch 23 / 4001 \t training error: 2.0 \t dev set perplexity: 74.4]\n", "***************************************************************************************\n", "[Epoch 24 / 4001 \t training error: 2.0 \t dev set perplexity: 74.7]\n", "***************************************************************************************\n", "[Epoch 25 / 4001 \t training error: 2.0 \t dev set perplexity: 74.8]\n", "***************************************************************************************\n", "[Epoch 26 / 4001 \t training error: 2.0 \t dev set perplexity: 74.8]\n", "***************************************************************************************\n", "[Epoch 27 / 4001 \t training error: 2.0 \t dev set perplexity: 74.7]\n", "***************************************************************************************\n", "[Epoch 28 / 4001 \t training error: 2.0 \t dev set perplexity: 75.4]\n", "***************************************************************************************\n", "[Epoch 29 / 4001 \t training error: 2.0 \t dev set perplexity: 75.4]\n", "***************************************************************************************\n", "[Epoch 30 / 4001 \t training error: 2.0 \t dev set perplexity: 75.9]\n", "***************************************************************************************\n", "[Epoch 31 / 4001 \t training error: 2.0 \t dev set perplexity: 75.5]\n", "***************************************************************************************\n", "[Epoch 32 / 4001 \t training error: 2.0 \t dev set perplexity: 76.1]\n", "***************************************************************************************\n", "[Epoch 33 / 4001 \t training error: 1.9 \t dev set perplexity: 76.7]\n", "***************************************************************************************\n", "\u001b[0;35mEarly stopping at epoch 33 / 4001!\u001b[0m\n", "---------------------------------------------------------------------------------------\n", "\u001b[0;32mTraining complete!\u001b[0m\n" ] } ], "source": [ "# Setting the hyperparameters\n", "epochs = 4000+1\n", "batch_size = 64\n", "learning_rate = 0.01\n", "embedding_size = 312\n", "state_size = 312\n", "do_display = True\n", "display_every_n = 1\n", "patience = 15 \n", "\n", "# Creating the language model\n", "language_model = NeuralLanguageModel(vocab_size=vocab_size, embedding_size=embedding_size, state_size=state_size)\n", "language_model.to(device)\n", "\n", "# Creating the optimizer\n", "optimizer = torch.optim.Adam(language_model.parameters(), lr=learning_rate, weight_decay=language_model.weight_decay)\n", "\n", "# Creating the train and dev sets\n", "dev_set = (dev_x_indexes, dev_y_indexes)\n", "train_set = (train_x_indexes, train_y_indexes)\n", "\n", "# Training the model\n", "train_errors, dev_perplexities = train(language_model, train_set, dev_set, optimizer, epochs, batch_size, patience, token2index, do_display=do_display, display_every_n=display_every_n)" ] }, { "cell_type": "code", "execution_count": 35, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "NeuralLanguageModel(\n", " (embedding): Embedding(7874, 312)\n", " (rnn_cell): LSTMCell(312, 312)\n", " (dropout): Dropout(p=0.5, inplace=False)\n", " (batch_norm): BatchNorm1d(312, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)\n", " (output_layer): Linear(in_features=312, out_features=7874, bias=True)\n", ")" ] }, "execution_count": 35, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Loading the most optimal model encountered during training\n", "language_model = torch.load('model.pkl')\n", "\n", "# Changing model to device\n", "language_model.to(device)\n", "\n", "# Setting model to eval\n", "language_model.eval()" ] }, { "cell_type": "code", "execution_count": 36, "metadata": {}, "outputs": [], "source": [ "def plot_list(list, title, xlabel, ylabel, color, legend_label, linestyle='-', marker='o', show_best_value=True):\n", " \"\"\"Plots the given list with a red dotted line at the specified best_index.\n", "\n", " Args:\n", " list (list): The list to plot.\n", " title (str): The title of the plot.\n", " xlabel (str): The label of the x-axis.\n", " ylabel (str): The label of the y-axis.\n", " color (str): The color of the plot.\n", " legend_label (str): The legend label for the plot.\n", " linestyle (str): The line style (default: '-').\n", " marker (str): The marker style (default: 'o', set 'None' to remove markers).\n", " show_best_value (bool): Whether to show the best value (default: True).\n", " \"\"\"\n", " # Plotting the list\n", " plt.plot(list, color=color, linestyle=linestyle, marker=marker, label=legend_label)\n", " plt.title(title)\n", " plt.xlabel(xlabel)\n", " plt.ylabel(ylabel)\n", " plt.grid(True)\n", " plt.legend()\n", "\n", " # Identifying the best value\n", " if show_best_value:\n", " # Finding the best value and index\n", " best_value = min(list)\n", " best_index = list.index(best_value)\n", " plt.axvline(x=best_index, color='red', linestyle='--', label='Best Value: {:.1f}'.format(round(best_value, 2)))\n", " plt.legend(loc='upper right')\n", " \n", " # Displaying the plot\n", " plt.tight_layout()\n", " plt.show()" ] }, { "cell_type": "code", "execution_count": 37, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[35mThe perplexity of the dev set on the language model is:\u001b[0m 73.3\n" ] }, { "data": { "image/png": "iVBORw0KGgoAAAANSUhEUgAAAnYAAAHWCAYAAAD6oMSKAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjcuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8pXeV/AAAACXBIWXMAAA9hAAAPYQGoP6dpAABnWUlEQVR4nO3deVxU5f4H8M9hgGERVFQEBBWXXFKsq2jkgqbglopbKpZaljcFl8x+aqWC1cXMvGqmbaaVoZZ75hKpgJh7aeZC7oiC5gYCigNzfn+cO6Mj26ycWT7v1+u8YM55zpnvPI719VkFURRFEBEREZHNc5I7ACIiIiIyDyZ2RERERHaCiR0RERGRnWBiR0RERGQnmNgRERER2QkmdkRERER2gokdERERkZ1gYkdERERkJ5jYEREREdkJJnZEpJdRo0ahfv36Rt0bFxcHQRDMGxA5tOTkZAiCgLVr18odCpFVYWJHZOMEQdDrSE5OljtUWYwaNarMOnFzc5M7PKulSZzKOlavXi13iERUCme5AyAi03z33Xc6r7/99lskJSWVON+sWTOT3ufLL7+EWq026t53330X06ZNM+n9TaFUKvHVV1+VOK9QKGSIxrZMmDABoaGhJc6HhYXJEA0RVYSJHZGNe/HFF3Ve79+/H0lJSSXOP66goAAeHh56v4+Li4tR8QGAs7MznJ3l+8+Ns7NzhfVRmvz8fHh6epZ6zdD6e1xRURHUajVcXV2NfkZl6NixIwYNGiR3GESkJ3bFEjmAzp07o0WLFjhy5Ag6deoEDw8PvP322wCATZs2oXfv3ggICIBSqUTDhg3x3nvvobi4WOcZj4+xu3jxIgRBwLx58/DFF1+gYcOGUCqVCA0NxaFDh3TuLW2MnSAIiI2NxcaNG9GiRQsolUo8+eST2L59e4n4k5OT0aZNG7i5uaFhw4b4/PPPzT5ub8WKFRAEASkpKRg3bhx8fX0RGBgIoPz6u379OkaPHo3atWvDzc0NrVq1wjfffKPz7EfrasGCBdq6OnnyJADgk08+wZNPPgkPDw9Ur14dbdq0QWJiYpmxXrt2Dc7OzoiPjy9xLT09HYIgYPHixQAAlUqF+Ph4NG7cGG5ubqhRowY6dOiApKQks9Qb8PDP8vvvv0eTJk3g5uaG1q1bIzU1tUTZP/74Az179oS3tzeqVKmCrl27Yv/+/SXK3blzB2+88Qbq168PpVKJwMBAjBgxAjdu3NApp1ar8cEHHyAwMBBubm7o2rUrzp49a7bPRmRr2GJH5CBu3ryJnj17YujQoXjxxRdRu3ZtAFJCU6VKFUyePBlVqlTBrl27MHPmTOTm5uKjjz6q8LmJiYm4e/cu/v3vf0MQBMydOxcDBgzA+fPnK2zlS0tLw/r16zFu3Dh4eXlh0aJFGDhwIDIyMlCjRg0AUiLQo0cP+Pv7Iz4+HsXFxZg9ezZq1apl0Od/PCEAAFdXV3h7e+ucGzduHGrVqoWZM2ciPz9fe760+rt37x46d+6Ms2fPIjY2FsHBwfjxxx8xatQo3LlzBxMnTtR59vLly3H//n2MGTMGSqUSPj4++PLLLzFhwgQMGjQIEydOxP379/Hnn3/iwIEDiI6OLvWz1K5dG+Hh4fjhhx8wa9YsnWtr1qyBQqHA4MGDAUhJdUJCAl599VW0bdsWubm5OHz4MH7//XdERERUWG93794tte5q1Kihk1inpKRgzZo1mDBhApRKJZYsWYIePXrg4MGDaNGiBQDgxIkT6NixI7y9vfF///d/cHFxweeff47OnTsjJSUF7dq1AwDk5eWhY8eOOHXqFF555RX861//wo0bN7B582ZkZmaiZs2a2vedM2cOnJycMGXKFOTk5GDu3LkYPnw4Dhw4UOFnI7JLIhHZlZiYGPHxv9rh4eEiAPGzzz4rUb6goKDEuX//+9+ih4eHeP/+fe25kSNHivXq1dO+vnDhgghArFGjhnjr1i3t+U2bNokAxJ9++kl7btasWSViAiC6urqKZ8+e1Z47duyYCED85JNPtOf69Okjenh4iFeuXNGeO3PmjOjs7FzimaUZOXKkCKDUo3v37tpyy5cvFwGIHTp0EIuKinSeUVb9LViwQAQgrly5UnvuwYMHYlhYmFilShUxNzdXp668vb3F69ev6zyjX79+4pNPPlnh53jc559/LgIQjx8/rnO+efPm4nPPPad93apVK7F3794GP3/37t1l1hsAMSsrS1tWc+7w4cPac5cuXRLd3NzE/v37a89FRUWJrq6u4rlz57Tnrl69Knp5eYmdOnXSnps5c6YIQFy/fn2JuNRqtU58zZo1EwsLC7XXFy5cWGq9EDkKdsUSOQilUomXX365xHl3d3ft75rWmY4dO6KgoACnT5+u8LlDhgxB9erVta87duwIADh//nyF93br1g0NGzbUvg4JCYG3t7f23uLiYvz666+IiopCQECAtlyjRo3Qs2fPCp+v4ebmhqSkpBLHnDlzSpR97bXXSp1UUVr9bd26FX5+fhg2bJj2nIuLCyZMmIC8vDykpKTolB84cGCJlsZq1aohMzOzRPd1RQYMGABnZ2esWbNGe+6vv/7CyZMnMWTIEJ3nnzhxAmfOnDHo+RozZ84ste58fHx0yoWFhaF169ba13Xr1kW/fv2wY8cOFBcXo7i4GL/88guioqLQoEEDbTl/f39ER0cjLS0Nubm5AIB169ahVatW6N+/f4l4Hu9+f/nll3XGKRry/SOyR+yKJXIQderUKXWg/okTJ/Duu+9i165d2v+xauTk5FT43Lp16+q81iR5t2/fNvhezf2ae69fv4579+6hUaNGJcqVdq4sCoUC3bp106tscHBwqedLq79Lly6hcePGcHLS/TeyZgbypUuXKnz21KlT8euvv6Jt27Zo1KgRIiMjER0djfbt25cbZ82aNdG1a1f88MMPeO+99wBI3bDOzs4YMGCAttzs2bPRr18/PPHEE2jRogV69OiBl156CSEhIeU+X6Nly5Z61V3jxo1LnHviiSdQUFCAf/75B4A04aRJkyYlyjVr1gxqtRqXL1/Gk08+iXPnzmHgwIF6xWfK94/IHrHFjshBPNoyp3Hnzh2Eh4fj2LFjmD17Nn766SckJSXhww8/BAC9ljcpa8kQURQteq+llFZP5Z039dnNmjVDeno6Vq9ejQ4dOmDdunXo0KFDibFzpRk6dCj+/vtvHD16FADwww8/oGvXrjpj0Dp16oRz587h66+/RosWLfDVV1/hX//6V6nLv9gia/wOEcmJiR2RA0tOTsbNmzexYsUKTJw4Ec8//zy6deum07UqJ19fX7i5uZU6y9EaZj7Wq1cPZ86cKZEAa7qw69Wrp9dzPD09MWTIECxfvhwZGRno3bs3PvjgA9y/f7/c+6KiouDq6oo1a9bg6NGj+PvvvzF06NAS5Xx8fPDyyy9j1apVuHz5MkJCQhAXF6ffh9RTaV29f//9Nzw8PFCrVi3UqlULHh4eSE9PL1Hu9OnTcHJyQlBQEACgYcOG+Ouvv8waH5GjYGJH5MA0rR2Ptm48ePAAS5YskSskHZou1I0bN+Lq1ava82fPnsW2bdtkjEzSq1cvZGdn64xzKyoqwieffIIqVaogPDy8wmfcvHlT57WrqyuaN28OURShUqnKvbdatWro3r07fvjhB6xevRqurq6Iiooq9/lVqlRBo0aNUFhYWGFshti3bx9+//137evLly9j06ZNiIyMhEKhgEKhQGRkJDZt2oSLFy9qy127dg2JiYno0KGDdobywIEDcezYMWzYsKHE+7Aljqh8HGNH5MCeffZZVK9eHSNHjsSECRMgCAK+++47q/qfZ1xcHH755Re0b98eY8eORXFxMRYvXowWLVpouyArUlRUhJUrV5Z6rX///mUuQlyRMWPG4PPPP8eoUaNw5MgR1K9fH2vXrsXevXuxYMECeHl5VfiMyMhI+Pn5oX379qhduzZOnTqFxYsXo3fv3nrdP2TIELz44otYsmQJunfvjmrVqulcb968OTp37ozWrVvDx8cHhw8fxtq1axEbG6vXZ9yzZ0+pLYchISE64/RatGiB7t276yx3AkBnrb33338fSUlJ6NChA8aNGwdnZ2d8/vnnKCwsxNy5c7Xl3nrrLaxduxaDBw/GK6+8gtatW+PWrVvYvHkzPvvsM7Rq1Uqv2IkcERM7IgdWo0YNbNmyBW+++SbeffddVK9eHS+++CK6du2K7t27yx0eAKB169bYtm0bpkyZghkzZiAoKAizZ8/GqVOn9Jq1CwCFhYV46aWXSr124cIFoxM7d3d3JCcnY9q0afjmm2+Qm5uLJk2aYPny5Rg1apRez/j3v/+N77//HvPnz0deXh4CAwMxYcIEvPvuu3rd37dvX7i7u+Pu3bs6s2E1JkyYgM2bN+OXX35BYWEh6tWrh/fffx9vvfWWXs9ftGhRqednzZqlk9iFh4cjLCwM8fHxyMjIQPPmzbFixQqdMk8++ST27NmD6dOnIyEhAWq1Gu3atcPKlSu1a9gBUqvinj17MGvWLGzYsAHffPMNfH190bVrV+2i0URUOkG0pn+aExHpKSoqyqRlPMh8BEFATEyMdrcLIpIPx9gRkdW7d++ezuszZ85g69at6Ny5szwBERFZKXbFEpHVa9CgAUaNGoUGDRrg0qVLWLp0KVxdXfF///d/codGRGRVmNgRkdXr0aMHVq1ahezsbCiVSoSFheE///lPqYviEhE5Mo6xIyIiIrITso6xS0hIQGhoKLy8vODr64uoqKhSF6983IIFC9CkSRO4u7sjKCgIb7zxRoULeRIRERHZO1kTu5SUFMTExGD//v1ISkqCSqVCZGQk8vPzy7wnMTER06ZNw6xZs3Dq1CksW7YMa9aswdtvv12JkRMRERFZH6vqiv3nn3/g6+uLlJQUdOrUqdQysbGxOHXqFHbu3Kk99+abb+LAgQNIS0ur8D3UajWuXr0KLy8vCIJgttiJiIiILEEURdy9excBAQFwciq/Tc6qJk/k5OQAkPY1LMuzzz6LlStX4uDBg2jbti3Onz+PrVu3lrn46OOuXr2q3Y+QiIiIyFZcvny5wkW6rSaxU6vVmDRpEtq3b48WLVqUWS46Oho3btxAhw4dIIoiioqK8Prrr5fZFVtYWKizJ6KmgfLChQt6bddjLJVKhd27d6NLly5wcXGx2PvYI9ad8Vh3pmH9GY91ZzzWnWkcof7u3r2L4OBgvfIWq+mKHTt2LLZt24a0tLRys9Hk5GQMHToU77//Ptq1a4ezZ89i4sSJeO211zBjxowS5ePi4nT2KtRITEyEh4eHWT8DERERkbkVFBQgOjoaOTk58Pb2LresVSR2sbGx2LRpE1JTUxEcHFxu2Y4dO+KZZ57BRx99pD23cuVKjBkzBnl5eSX6nh9vscvNzUVQUBBu3LhRYeWYQqVSISkpCREREXb7LwhLYd0Zj3VnGtaf8Vh3xmPdmcYR6i83Nxc1a9bUK7GTtStWFEWMHz8eGzZsQHJycoVJHSBlrY8nbwqFQvu8xymVSiiVyhLnXVxcKuULUFnvY49Yd8Zj3ZmG9Wc81p3xWHemsef6M+RzyZrYxcTEIDExEZs2bYKXlxeys7MBAFWrVoW7uzsAYMSIEahTpw4SEhIAAH369MH8+fPx9NNPa7tiZ8yYgT59+mgTPCIiIiJHJGtit3TpUgAosZH38uXLMWrUKABARkaGTgvdu+++C0EQ8O677+LKlSuoVasW+vTpgw8++KCywiYiIiqXWq3GgwcP9CqrUqng7OyM+/fvo7i42MKR2R97qD8XFxezNU7J3hVbkeTkZJ3Xzs7OmDVrFmbNmmWhqIiIiIz34MEDXLhwAWq1Wq/yoijCz88Ply9f5vqqRrCX+qtWrRr8/PxM/gxWs9wJERGRrRNFEVlZWVAoFAgKCqpwMVlAat3Ly8tDlSpV9CpPumy9/kRRREFBAa5fvw4A8Pf3N+l5TOyIiIjMpKioCAUFBQgICNB7SS1Nt62bm5tNJiZys4f608wruH79Onx9fU3qlrXNGiAiIrJCmjFerq6uMkdCtkbzDwGVSmXSc5jYERERmZktj/UieZjrO8PEjoiIiMhOMLGzgOJiICVFQGpqHaSkCLDR2ddERERGq1+/PhYsWKB3+eTkZAiCgDt37lgsJkfAxM7M1q8H6tcHIiKcMX9+G0REOKN+fek8ERGRPoqLgeRkYNUq6aclGwgEQSj3iIuLM+q5hw4dwpgxY/Qu/+yzzyIrKwtVq1Y16v30pUkgSzs0GyXYMs6KNaP164FBg4DHl+e7ckU6v3YtMGCAPLEREZFtWL8emDgRyMx8eC4wEFi40DL/D8nKytL+vmbNGsycORPp6enac1WqVNH+LooiiouL4exccfpQq1Ytg+JwdXWFn5+fQfeYIj09vcS+q76+vqWWffDgQakTYlQqlVHbmBl7nz7YYmcmxcXSX8TS1lzWnJs0ybL/6iIiItumaSB4NKkDHjYQWKL3x8/PT3tUrVoVgiBoX58+fRpeXl7Ytm0bWrduDaVSibS0NJw7dw79+vVD7dq1UaVKFYSGhuLXX3/Vee7jXbGCIOCrr75C//794eHhgcaNG2Pz5s3a6493xa5YsQLVqlXDjh070KxZM1SpUgU9evTQSUSLioowceJE1KtXD7Vq1cLUqVMxcuRIREVFVfi5fX19dT67n5+fdrmUUaNGISoqCh988AECAgLQpEkTXLx4EYIgYM2aNQgPD4ebmxu+//57qNVqzJ49G4GBgVAqlXjqqaewfft27fuUdZ+lMLEzkz17Sv5FfJQoApcvS+WIiMgxiCKQn6/fkZsLTJhQfgPBxIlSOX2ep8fmTnqbNm0a5syZg1OnTiEkJAR5eXno1asXdu7ciT/++AM9evRAnz59kJGRUe5z4uPj8cILL+DPP/9Er169MHz4cNy6davM8gUFBZg3bx6+++47pKamIiMjA1OmTNFe//DDD5GYmIhPP/0Ue/bsQW5uLjZu3GiWz7xz506kp6cjKSkJW7Zs0Z6fNm0aJk6ciFOnTqF79+5YuHAhPv74Y8ybNw9//vknunfvjr59++LMmTM6z3v8PkthV6yZPPIPCLOUIyIi21dQADzSk1kGJwDVKnyWKEoNCPoOQcvLAzw99StbkdmzZyMiIkL72sfHB61atdK+fu+997BhwwZs3rwZsbGxZT5n1KhRGDZsGADgP//5DxYtWoSDBw+iR48epZZXqVT47LPP0LBhQwBAbGwsZs+erb3+ySefYNq0aXj++efh7e2NxYsXY+vWrXp9psDAQJ3X9erVw4kTJ7SvPT098dVXX2m7YC9evAgAmDRpEgY80ic+b948TJ06FUOHDgUgJZu7d+/GggUL8Omnn2rLPX6fpTCxMxN9dwAxcacQIiKiStemTRud13l5eYiLi8PPP/+MrKwsFBUV4d69exW22IWEhGh/9/T0hLe3t3YrrdJ4eHhokzpA2m5LUz4nJwfXrl1DaGio9rpCoUDr1q312qd3z5498PLy0r5+fMxby5YtSx1X92hd5Obm4urVq2jfvr1Omfbt2+PYsWNl3mdJTOzMpGNHaXDrlSulN38LgnS9Y8fKj42IiOTh4SG1nJVHrVYjNzcXx455o3fvikdIbd0KdOqk33ubi+djTX9TpkxBUlIS5s2bh0aNGsHd3R2DBg3CgwcPyn3O48mTIAjlJmGllRfN1MccHByMatWqlXn98c9c0fmKGHufoTjGzkwUCmnGEiAlcY/SvF6wQCpHRESOQRCk7lB9jogIqQGgrA0IBAEICgIiI/V7niU3v9i7dy9GjRqF/v37o2XLlvDz89N2VVaWqlWronbt2jh8+LD2XHFxMX7//fdKi8Hb2xsBAQHYu3evzvm9e/eiefPmlRbHo9hiZ0YDBkhLmpQ2TX3BAi51QkREZdM0EAwaJCVljzZMWVsDQePGjbF+/Xr06dMHgiBgxowZenV/mtv48eMxZ84cBAQE4Omnn8ann36K27dv67U91/Xr13H//n2dczVq1DB4GZK33noLs2bNQsOGDfHUU09h+fLlOHr0qEVnvpaHiZ2ZDRgA9OsHDBxYjE2bFHjhhWIkJiqs4i8iERFZN1tpIJg/fz5eeeUVPPvss6hZsyamTp2K3NzcSo9j6tSpyMrKwuuvvw5nZ2eMGTMG3bt3h0KP/+k2adKkxLl9+/bhmWeeMSiGCRMmICcnB2+++SauX7+O5s2bY/PmzWjcuLFBzzEXQTRXZ7WNyM3NRdWqVZGTk1NiYUJzmj+/GG++qUD//mqsX88eb0OoVCps3boVvXr1stgCjvaKdWca1p/xWHeS+/fv48KFCwgODoabm5te92jG2Hl7e2vXUSsulpbHysqSJt117GgdLXXW6NH6A4BmzZrhhRdewHvvvSdzZIYp77tjSO7CFjsLadhQypfPnbPgIAciIrJLCgXQubPcUVi/S5cuYfv27WjdujVcXFywZMkSXLhwAdHR0XKHJhsmdhbSqJEmsZPGSVhyECsREZEjcnJywrfffou33noLANCiRQv8+uuvaNasmcyRyYeJnYXUrw84OYnIzxeQnc3164iIiMwtKChIu+PEo13Zjow1YCGurkCtWgUAgLNnZQ6GiIiIHAITOwvy988HwMSOiIiIKgcTOwvSJHaP7QNMRER2zsEWnCAzMNc6gBxjZ0H+/tI+MmyxIyJyDC4uLhAEAf/88w9q1aql10K5arUaDx48wP379zlGzAi2Xn+iKOLBgwf4559/4OTkVOr+tIZgYmdBfn7siiUiciQKhQKBgYHIzMzUe4stURRx7949uLu765UIki57qT8PDw/UrVvX5OSUiZ0FBQQ8TOy45AkRkWOoUqUKGjduDJVKpVd5lUqF1NRUdOrUyaEXdzaWPdSfQqGAs7OzWRJTJnYWVLt2AQRBxN27Aq5fB2rXljsiIiKqDAqFQq9trTRli4qK4ObmZrOJiZxYf7psrzPahri4qFG3rvQ7u2OJiIjI0pjYWZhmazEmdkRERGRpTOwsTLO1GBM7IiIisjQmdhbWsKH0k2vZERERkaUxsbMwdsUSERFRZZE1sUtISEBoaCi8vLzg6+uLqKgopKenl3tP586dIQhCiaN3796VFLVhHk3suBA5ERERWZKsiV1KSgpiYmKwf/9+JCUlQaVSITIyEvn5+WXes379emRlZWmPv/76CwqFAoMHD67EyPXXsKG0fl1ODnDjhtzREBERkT2TdR277du367xesWIFfH19ceTIEXTq1KnUe3x8fHRer169Gh4eHlab2Lm5AYGBwOXLUqtdrVpyR0RERET2yqoWKM7JyQFQMnkrz7JlyzB06FB4enqWer2wsBCFhYXa17m5uQCklar1XRXcGJpnq1QqNGyowOXLTjh9ught2rA/tiKP1h0ZhnVnGtaf8Vh3xmPdmcYR6s+QzyaIonWM/FKr1ejbty/u3LmDtLQ0ve45ePAg2rVrhwMHDqBt27allomLi0N8fHyJ84mJifDw8DApZn19+mkrJCXVx5AhpzFsWPljCImIiIgeVVBQgOjoaOTk5MDb27vcslaT2I0dOxbbtm1DWloaAgMD9brn3//+N/bt24c///yzzDKltdgFBQXhxo0bFVaOKVQqFZKSkhAREYFFi5SYPl2BIUPU+O67You9p714tO64PYxhWHemYf0Zj3VnPNadaRyh/nJzc1GzZk29Ejur6IqNjY3Fli1bkJqaqndSl5+fj9WrV2P27NnlllMqlVAqlSXOu7i4VMoXwMXFBU2aSPsFnj/vBBcXrjCjr8r6M7JHrDvTsP6Mx7ozHuvONPZcf4Z8LlkTO1EUMX78eGzYsAHJyckIDg7W+94ff/wRhYWFePHFFy0YoXk0aiT95Fp2REREZEmyNh/FxMRg5cqVSExMhJeXF7Kzs5GdnY179+5py4wYMQLTp08vce+yZcsQFRWFGjVqVGbIRtHsPnH7NnDrlryxEBERkf2SNbFbunQpcnJy0LlzZ/j7+2uPNWvWaMtkZGQgKytL57709HSkpaVh9OjRlR2yUTw8gDp1pN+5tRgRERFZiuxdsRVJTk4uca5JkyZ63WtNGjUCrlyRumPbtZM7GiIiIrJHHMlfSTjOjoiIiCyNiV0ladxY+snEjoiIiCyFiV0l0bTYcYwdERERWQoTu0rCrlgiIiKyNCZ2lUSz5MnNm9KyJ0RERETmxsSuklSpAvj7S7+fOydvLERERGSfmNhVIo6zIyIiIktiYleJOM6OiIiILImJXSViYkdERESWxMSuEmnWsmNXLBEREVkCE7tKxBY7IiIisiQmdpVIs+TJP/8AOTnyxkJERET2h4ldJfL2Bnx9pd+55AkRERGZGxO7SsZxdkRERGQpTOwqGcfZERERkaUwsatkTOyIiIjIUpjYVTJNVywTOyIiIjI3JnaVjNuKERERkaUwsatkmiVPrl0D7t6VNxYiIiKyL0zsKlm1akDNmtLvXPKEiIiIzImJnQw4zo6IiIgsgYmdDDjOjoiIiCyBiZ0MuOQJERERWQITOxkwsSMiIiJLYGInA46xIyIiIktgYicDTYvd1atAfr68sRAREZH9YGIng+rVAR8f6XcueUJERETmwsROJhxnR0RERObGxE4mmnF2XPKEiIiIzIWJnUzYYkdERETmxsROJkzsiIiIyNyY2MmES54QERGRucma2CUkJCA0NBReXl7w9fVFVFQU0tPTK7zvzp07iImJgb+/P5RKJZ544gls3bq1EiI2H02LXWYmUFAgbyxERERkH2RN7FJSUhATE4P9+/cjKSkJKpUKkZGRyC9ncbcHDx4gIiICFy9exNq1a5Geno4vv/wSderUqcTITefjA1SrJv1+/rysoRAREZGdcJbzzbdv367zesWKFfD19cWRI0fQqVOnUu/5+uuvcevWLfz2229wcXEBANSvX9/SoZqdIEitdocPS92xLVrIHRERERHZOlkTu8fl5OQAAHw0q/eWYvPmzQgLC0NMTAw2bdqEWrVqITo6GlOnToVCoShRvrCwEIWFhdrXubm5AACVSgWVSmXmT/CQ5tnlvUfDhgocPuyE9PRiqFRqi8Via/SpOyod6840rD/jse6Mx7ozjSPUnyGfTRBFUbRgLHpTq9Xo27cv7ty5g7S0tDLLNW3aFBcvXsTw4cMxbtw4nD17FuPGjcOECRMwa9asEuXj4uIQHx9f4nxiYiI8PDzM+hkMlZjYFD/80ASRkRcxbtwxWWMhIiIi61RQUIDo6Gjk5OTA29u73LJWk9iNHTsW27ZtQ1paGgIDA8ss98QTT+D+/fu4cOGCtoVu/vz5+Oijj5CVlVWifGktdkFBQbhx40aFlWMKlUqFpKQkREREaLuMH/fddwJGj3ZGly5q7NhRbLFYbI0+dUelY92ZhvVnPNad8Vh3pnGE+svNzUXNmjX1Suysois2NjYWW7ZsQWpqarlJHQD4+/vDxcVFp9u1WbNmyM7OxoMHD+Dq6qpTXqlUQqlUlniOi4tLpXwBynufpk2ln+fOOcHFhSvPPK6y/ozsEevONKw/47HujMe6M409158hn0vWbEIURcTGxmLDhg3YtWsXgoODK7ynffv2OHv2LNTqh2PS/v77b/j7+5dI6qydZi27y5eB+/fljYWIiIhsn6yJXUxMDFauXInExER4eXkhOzsb2dnZuHfvnrbMiBEjMH36dO3rsWPH4tatW5g4cSL+/vtv/Pzzz/jPf/6DmJgYOT6CSWrWBLy9AVHkkidERERkOlkTu6VLlyInJwedO3eGv7+/9lizZo22TEZGhs7YuaCgIOzYsQOHDh1CSEgIJkyYgIkTJ2LatGlyfASTaJY8AbgDBREREZlO1jF2+szbSE5OLnEuLCwM+/fvt0BEla9RI+D335nYERERkek4Yl9m3DOWiIiIzIWJncw0XbFnzsgbBxEREdk+JnYy4xg7IiIiMhcmdjLTJHYZGcAj6ygTERERGYyJncxq1waqVAHUauDCBbmjISIiIlvGxE5mXPKEiIiIzIWJnRVgYkdERETmwMTOCnDJEyIiIjIHJnZWgEueEBERkTkwsbMC7IolIiIic2BiZwU0id3Fi8CDB7KGQkRERDaMiZ0V8PcHPDykJU8uXZI7GiIiIrJVTOyswKNLnnCcHRERERmLiZ2V4Dg7IiIiMhUTOyvBxI6IiIhMxcTOSnAtOyIiIjIVEzsrwTF2REREZComdlbi0SVPVCpZQyEiIiIbxcTOSgQEAG5uQFERkJEhdzRERERki5jYWQknJ06gICIiItMwsbMiHGdHREREpmBiZ0XYYkdERESmYGJnRbjkCREREZmCiZ0VYVcsERERmYKJnRXRJHYXLkizY4mIiIgMwcTOigQGAkqltI7d5ctyR0NERES2homdFXFyAho2lH7nODsiIiIyFBM7K8NxdkRERGQsJnZWhkueEBERkbGY2FkZJnZERERkLCZ2VoZr2REREZGxZE3sEhISEBoaCi8vL/j6+iIqKgrp6enl3rNixQoIgqBzuLm5VVLElvfoGLvvvweSk4HiYllDIiIiIhsha2KXkpKCmJgY7N+/H0lJSVCpVIiMjER+fn6593l7eyMrK0t7XLp0qZIitrzDh6WfRUXAiy8CXboA9esD69fLGhYRERHZAGc533z79u06r1esWAFfX18cOXIEnTp1KvM+QRDg5+dn6fAq3fr1wAsvlDx/5QowaBCwdi0wYEDlx0VERES2warG2OXk5AAAfHx8yi2Xl5eHevXqISgoCP369cOJEycqIzyLKi4GJk4ERLHkNc25SZPYLUtERERlk7XF7lFqtRqTJk1C+/bt0aJFizLLNWnSBF9//TVCQkKQk5ODefPm4dlnn8WJEycQGBhYonxhYSEKCwu1r3NzcwEAKpUKKpXK/B/kfzTP1vc9UlIEZGaW/cchitJuFLt3FyE8vJTsz44YWnf0EOvONKw/47HujMe6M40j1J8hn00QxdLaiCrf2LFjsW3bNqSlpZWaoJVFpVKhWbNmGDZsGN57770S1+Pi4hAfH1/ifGJiIjw8PEyK2ZxSU+tg/vw2FZabPPkwOnW6UgkRERERkTUoKChAdHQ0cnJy4O3tXW5Zq0jsYmNjsWnTJqSmpiI4ONjg+wcPHgxnZ2esWrWqxLXSWuyCgoJw48aNCivHFCqVCklJSYiIiICLi0uF5VNSBEREVNyAmpTkGC12htQdPcS6Mw3rz3isO+Ox7kzjCPWXm5uLmjVr6pXYydoVK4oixo8fjw0bNiA5OdmopK64uBjHjx9Hr169Sr2uVCqhVCpLnHdxcamUL4C+79OlCxAYKE2UKC3VFgTpepcuzlAoLBCoFaqsPyN7xLozDevPeKw747HuTGPP9WfI55J18kRMTAxWrlyJxMREeHl5ITs7G9nZ2bh37562zIgRIzB9+nTt69mzZ+OXX37B+fPn8fvvv+PFF1/EpUuX8Oqrr8rxEcxGoQAWLpR+F4TSyyxYAIdJ6oiIiMhwsiZ2S5cuRU5ODjp37gx/f3/tsWbNGm2ZjIwMZGVlaV/fvn0br732Gpo1a4ZevXohNzcXv/32G5o3by7HRzCrAQOkJU3q1NE97+HBpU6IiIioYrJ3xVYkOTlZ5/V///tf/Pe//7VQRPIbMADo1w/Ys0c6Zs4EVCqgY0e5IyMiIiJrZ1Xr2JFEoQA6dwZmzABCQ6XE7quv5I6KiIiIrB0TOysXGyv9/OwzaZsxIiIiorIwsbNyL7wA1KwJZGQAW7bIHQ0RERFZMyZ2Vs7NDdBM+F28WN5YiIiIyLoxsbMBr78OODkBO3cCp07JHQ0RERFZKyZ2NqBePaBvX+n3Tz+VNxYiIiKyXkzsbIRmEsU33wC5ufLGQkRERNaJiZ2NeO45oGlTIC8P+O47uaMhIiIia8TEzkYIwsNWu8WLS99PloiIiBwbEzsb8tJLQJUqwOnTwK5dckdDRERE1sagxK6oqAjffvstrl27Zql4qBze3sDIkdLvXPqEiIiIHmdQYufs7IzXX38d9+/ft1Q8VIGYGOnn5s3ApUvyxkJERETWxeCu2LZt2+Lo0aMWCIX00awZ0LUroFZL24wRERERaTgbesO4ceMwefJkXL58Ga1bt4anp6fO9ZCQELMFR6WLjZUWK/7qK2DWLGl3CiIiIiKDE7uhQ4cCACZMmKA9JwgCRFGEIAgoLi42X3RUquefB+rWlfaP/eEHYMQIuSMiIiIia2BwYnfhwgVLxEEGcHaWthl7+21pEgUTOyIiIgKMSOzq1atniTjIQK++CsTFAYcOAQcPAm3byh0RERERyc2odezOnTuH8ePHo1u3bujWrRsmTJiAc+fOmTs2KketWsD/esW59AkREREBMCKx27FjB5o3b46DBw8iJCQEISEhOHDgAJ588kkkJSVZIkYqg2YnijVrgOvX5Y2FiIiI5GdwV+y0adPwxhtvYM6cOSXOT506FREREWYLjsoXGip1wR48CCxbBkyfLndEREREJCeDW+xOnTqF0aNHlzj/yiuv4OTJk2YJivSnabVbuhQoKpI3FiIiIpKXwYldrVq1Sl2g+OjRo/D19TVHTGSAwYOl8XaXLwM//SR3NERERCQng7tiX3vtNYwZMwbnz5/Hs88+CwDYu3cvPvzwQ0yePNnsAVL53NykGbIJCdIkiv795Y6IiIiI5GJwYjdjxgx4eXnh448/xvT/DeoKCAhAXFyczqLFVHlefx348ENg1y7g5EmgeXO5IyIiIiI5GNQVW1RUhO+++w7R0dHIzMxETk4OcnJykJmZiYkTJ0IQBEvFSeWoWxfo10/6/dNP5Y2FiIiI5GNQYufs7IzXX38d9+/fBwB4eXnBy8vLIoGRYTSTKL79FsjNlTcWIiIikofBkyfatm2LP/74wxKxkAm6dAGaNQPy8qTkjoiIiByPwWPsxo0bhzfffBOZmZlo3bo1PD09da6HhISYLTjSnyBIrXYxMcDcuYCPDxAQAHTsCCgUckdHRERElcHgxG7o//axenSihCAIEEURgiCguLjYfNGRQapWlRK8y5eB4cOlc4GBwMKFwIAB8sZGRERElmdwYnfhwgVLxEEmWr8eeOklQBR1z1+5AgwaBKxdy+SOiIjI3hmU2KlUKjz33HPYsmULmjVrZqmYyEDFxcDEiSWTOkA6JwjApEnSzFl2yxIREdkvgyZPuLi4aGfEkvXYswfIzCz7uihK3bN79lReTERERFT5DJ4VGxMTgw8//BBFZtiYNCEhAaGhofDy8oKvry+ioqKQnp6u9/2rV6+GIAiIiooyORZblpVl3nJERERkmwweY3fo0CHs3LkTv/zyC1q2bFliVuz69ev1flZKSgpiYmIQGhqKoqIivP3224iMjMTJkydLPPdxFy9exJQpU9CxY0dDP4Ld8fc3bzkiIiKyTQYndtWqVcPAgQPN8ubbt2/Xeb1ixQr4+vriyJEj6NSpU5n3FRcXY/jw4YiPj8eePXtw584ds8Rjqzp2lGa/XrlS+jg7AAgKksoRERGR/TI4sVu+fLkl4gAA5OTkAAB8fHzKLTd79mz4+vpi9OjR2MOBY1AopCVNBg2SJkqUltwNHsyJE0RERPZO78Tu+vXr8PX1LfN6UVERfv/9d7Rt29aoQNRqNSZNmoT27dujRYsWZZZLS0vDsmXLcPToUb2eW1hYiMLCQu3r3P/tt6VSqaBSqYyKVR+aZ1vyPR7Vpw+werWAyZMVuHLl4Z693t4icnMFfPONiDfeKELt2pUSjkkqu+7sCevONKw/47HujMe6M40j1J8hn00QxbI673QpFApkZWVpk7uWLVti69atCAoKAgBcu3YNAQEBRi9QPHbsWGzbtg1paWkIDAwstczdu3cREhKCJUuWoGfPngCAUaNG4c6dO9i4cWOp98TFxSE+Pr7E+cTERHh4eBgVqzUrLgZOnqyB27fdUL36fTRufAvTpoXj4sWqeOaZq5g69RAEoeLnEBERkXUoKChAdHQ0cnJy4O3tXW5ZvRM7JycnZGdnaxM7Ly8vHDt2DA0aNAAgJXb+/v5Qq9UGBxwbG4tNmzYhNTUVwcHBZZY7evQonn76aSge6VPUvJ+TkxPS09PRsGFDnXtKa7ELCgrCjRs3KqwcU6hUKiQlJSEiIgIuLi4Wex99HDsGhIU5o6hIwIoVRYiO1uuPXDbWVHe2hnVnGtaf8Vh3xmPdmcYR6i83Nxc1a9bUK7EzeIxdeQQDm4JEUcT48eOxYcMGJCcnl5vUAUDTpk1x/PhxnXPvvvsu7t69i4ULF2pbDx+lVCqhVCpLnHdxcamUL0BlvU952rQBZs6UjjfecEZEhLSPrLWzhrqzVaw707D+jMe6Mx7rzjT2XH+GfC6zJnaGiomJQWJiIjZt2gQvLy9kZ2cDAKpWrQp3d3cAwIgRI1CnTh0kJCTAzc2txPi7atWqAUC54/IImDYN2LQJOHIE+Pe/gc2bwS5ZIiIiO6P3AsWCIODu3bvIzc1FTk4OBEFAXl4ecnNztYehli5dipycHHTu3Bn+/v7aY82aNdoyGRkZyOLKuiZzcQFWrABcXYEtW4Bvv5U7IiIiIjI3vVvsRFHEE088ofP66aef1nltTFdsRZKTk8u9vmLFCoPe05G1aAHExwPTp0t7y3btKq1/R0RERPZB78Ru9+7dloyDKsmUKcDGjcCBA8CrrwLbtrFLloiIyF7ondiFh4dbMg6qJM7OUpfsU08BO3YAy5ZJCR4RERHZPr3H2JH9aNoU+OAD6ffJk4FLl+SNh4iIiMyDiZ2DmjQJaN8euHsXeOUVwIjlB4mIiMjKMLFzUAoFsHw54O4O7NoFfP653BERERGRqZjYObDGjYE5c6Tf33oLOH9e3niIiIjINEzsHFxsLBAeDuTns0uWiIjI1hm880T//v1LXa9OEAS4ubmhUaNGiI6ORpMmTcwSIFmWkxPw9ddASAiQkgIsWiTNmM3KAvz9gY4dpW5bIiIisn4Gt9hVrVoVu3btwu+//w5BECAIAv744w/s2rULRUVFWLNmDVq1aoW9e/daIl6ygAYNgI8+kn5/4w2gSxcgOlr6Wb8+sH69rOERERGRngxO7Pz8/BAdHY3z589j3bp1WLduHc6dO4cXX3wRDRs2xKlTpzBy5EhMnTrVEvGShdSqVfr5K1eAQYOY3BEREdkCgxO7ZcuWYdKkSXByenirk5MTxo8fjy+++AKCICA2NhZ//fWXWQMlyykullrqSqPZ9W3SJKkcERERWS+DE7uioiKcPn26xPnTp0+j+H//53dzczN431iSz549QGZm2ddFEbh8WSpHRERE1svgyRMvvfQSRo8ejbfffhuhoaEAgEOHDuE///kPRowYAQBISUnBk08+ad5IyWKyssxbjoiIiORhcGL33//+F7Vr18bcuXNx7do1AEDt2rXxxhtvaMfVRUZGokePHuaNlCzG39+85YiIiEgeBid2CoUC77zzDt555x3k5uYCALy9vXXK1K1b1zzRUaXo2BEIDJQmSmjG1D0uKEgqR0RERNbLpAWKvb29SyR1ZHsUCmDhQun3soZGhoZyPTsiIiJrZ3Bid+3aNbz00ksICAiAs7MzFAqFzkG2acAAYO1aoE4d3fM+PtLP9euBFSsqPSwiIiIygMFdsaNGjUJGRgZmzJgBf39/zn61IwMGAP36SbNfH915Ii4OeP99YMwYIDhY2oKMiIiIrI/BiV1aWhr27NmDp556ygLhkNwUCqBzZ91z8fHA338DP/wA9O8P7N8PPPGELOERERFROQzuig0KCoJY1gh7sktOTlI3bLt2wO3bwPPPAzdvyh0VERERPc7gxG7BggWYNm0aLl68aIFwyFq5uwObNgH16gFnzgADBwIPHsgdFRERET3K4K7YIUOGoKCgAA0bNoSHhwdcXFx0rt+6dctswZF1qV0b2LIFePZZICVFGnO3fHnZM2mJiIiochmc2C1YsMACYZCtaNEC+PFHoHdv4JtvgCZNgOnT5Y6KiIiIACMSu5EjR1oiDrIh3bsDn3wCjBsHvP020KgRMHiw3FERERGRXoldbm6udiFizW4TZeGCxY5h7FggPV1a2HjECGnsXdu2ckdFRETk2PRK7KpXr46srCz4+vqiWrVqpa5dJ4oiBEFAcXGx2YMk6/Txx8DZs8DPPwN9+wIHDkgJHhEREclDr8Ru165d8PnfFgS7d++2aEBkOxQKYNUqaRHjY8ekZVBSU6XfH13gmBuSEBERVQ69ErvwR7YaCOe2A/QILy/gp5+kNe7++gsICADu3394PTBQ6q4dMEC+GImIiByFwZMnAODOnTs4ePAgrl+/DrVarXNtxIgRZgmMbEdQEPDGG8D//Z9uUgcAV64AgwZJ+9AyuSMiIrIsgxO7n376CcOHD0deXh68vb11xtsJgsDEzgEVFwOLFpV+TRSlde4mTZL2oWW3LBERkeUYvPPEm2++iVdeeQV5eXm4c+cObt++rT24OLFj2rMHyMws+7ooApcvS+WIiIjIcgxO7K5cuYIJEybAw8PDEvGQDcrKMm85IiIiMo7BiV337t1x+PBhs7x5QkICQkND4eXlBV9fX0RFRSE9Pb3ce9avX482bdqgWrVq8PT0xFNPPYXvvvvOLPGQcfz9zVuOiIiIjGPwGLvevXvjrbfewsmTJ9GyZcsSe8X27dtX72elpKQgJiYGoaGhKCoqwttvv43IyEicPHkSnp6epd7j4+ODd955B02bNoWrqyu2bNmCl19+Gb6+vujevbuhH4fMoGNHafbrlStSt2tp3N25gDEREZGlGZzYvfbaawCA2bNnl7hm6ALF27dv13m9YsUK+Pr64siRI+jUqVOp93Tu3Fnn9cSJE/HNN98gLS2NiZ1MFAppSZNBg6SJEqUld/fuSevcbdwIcHMSIiIiyzC4K1atVpd5mLrrRE5ODgBoF0OuiCiK2LlzJ9LT08tMBKlyDBggLWlSp47u+aAgYNYsab273buB8HAgO1ueGImIiOydUevYWYJarcakSZPQvn17tGjRotyyOTk5qFOnDgoLC6FQKLBkyRJERESUWrawsBCFhYXa15q9blUqFVQqlfk+wGM0z7bke1ibPn2AXr2AtDRBu/NEhw4iFArpfJ8+zjh6VED79iJ+/rkIDRuW/hxHrDtzYd2ZhvVnPNad8Vh3pnGE+jPkswmiWNaoqIcWLVqEMWPGwM3NDYvKWrDsfyZMmKD3mz9q7Nix2LZtG9LS0hAYGFhuWbVajfPnzyMvLw87d+7Ee++9h40bN5bopgWAuLg4xMfHlzifmJjImb2VLCvLE3FxYbh2zRNVq97HrFn70aBBjtxhERERWbWCggJER0cjJycH3hWMZ9IrsQsODsbhw4dRo0YNBAcHl/0wQcD58+cNDjg2NhabNm1Campquc8vy6uvvorLly9jx44dJa6V1mIXFBSEGzduVFg5plCpVEhKSkJERESJCSaOLDtbark7dkyAl5eItWuL0aWL7leQdWc81p1pWH/GY90Zj3VnGkeov9zcXNSsWVOvxE6vrtgLFy6U+rupRFHE+PHjsWHDBiQnJxuV1AFSC96jydujlEollEplifMuLi6V8gWorPexFUFBQGoqEBUF7N4toE8fZ3z3HfDCCyXLsu6Mx7ozDevPeKw747HuTGPP9WfI5zJ48oQ5xcTEYOXKlUhMTISXlxeys7ORnZ2Ne/fuacuMGDEC06dP175OSEhAUlISzp8/j1OnTuHjjz/Gd999hxdffFGOj0BG8PYGtm2TZtE+eAAMHQp8+ql0rbgYSEkRkJpaBykpAkycj0NERORQjJo8kZmZic2bNyMjIwMPHjzQuTZ//ny9n7N06VIAJZcwWb58OUaNGgUAyMjIgJPTw/wzPz8f48aNQ2ZmJtzd3dG0aVOsXLkSQ4YMMeajkEyUSmD1amDCBGDJEiA2FkhOBvbvBzIznQG0wfz50vp4CxdKs26JiIiofAYndjt37kTfvn3RoEEDnD59Gi1atMDFixchiiL+9a9/GfQsPYb3ITk5Wef1+++/j/fff9+g9yHrpFAAixcDfn7AzJnScimPu3JFatlbu5bJHRERUUUM7oqdPn06pkyZguPHj8PNzQ3r1q3D5cuXER4ejsGDB1siRrJjggC8/TZQvXrp1zW5/6RJYLcsERFRBQxO7E6dOoURI0YAAJydnXHv3j1UqVIFs2fPxocffmj2AMn+7dkD3L5d9nVRBC5flsoRERFR2QxO7Dw9PbXj6vz9/XHu3DnttRs3bpgvMnIYWVnmLUdEROSoDB5j98wzzyAtLQ3NmjVDr1698Oabb+L48eNYv349nnnmGUvESHbO39+85YiIiByVwYnd/PnzkZeXBwCIj49HXl4e1qxZg8aNGxs0I5ZIo2NHafbrlSsPx9Q9ztMTaNu2cuMiIiKyNQYldsXFxcjMzERISAgAqVv2s88+s0hg5DgUCmlJk0GDpMkUpSV3+flAly7S7NigoMqPkYiIyBYYNMZOoVAgMjISt8sb6U5khAEDpKStTh3d80FBwIwZgI8PcPAg0Lq1tN4dERERlWTw5IkWLVoYtR8sUUUGDAAuXgSSkoowefJhJCUV4cIFYPZs4PBh4KmngH/+Abp1A+bPL7vbloiIyFEZnNi9//77mDJlCrZs2YKsrCzk5ubqHESmUCiA8HARnTpdQXi4CIVCOh8cDOzdC7z0krSe3ZtvAtHRUhctERERSfRO7GbPno38/Hz06tULx44dQ9++fREYGIjq1aujevXqqFatGqqXtcoskRl4eADffAN88gng7CxtSfbMM8DZs3JHRkREZB30njwRHx+P119/Hbt377ZkPETlEgRpX9mnngIGDwb++gto0wb4/nugd2+pNW/PHmnNO39/acatptWPiIjI3umd2Gn2dQ0PD7dYMET66tABOHJESu5++w3o0wd44QWpuzYz82G5wEBpxi33mSUiIkdg0Bg7QRAsFQeRwQICgN27gXHjpIkUa9boJnWAtDbeoEHA+vXyxEhERFSZDFrH7oknnqgwubt165ZJAREZwtUVWLQIWLWq9P1mRVHqvp00CejXj92yRERk3wxK7OLj41G1alVLxUJklD17Sk/qNEQRuHxZKte5c6WFRUREVOkMSuyGDh0KX19fS8VCZJSsLPOWIyIislV6j7Hj+DqyVv7++pWrVs2iYRAREclO78RO5DL/ZKU6dpRmv1b0b49x44CkpMqJiYiISA56J3ZqtZrdsGSVFAppSROgZHKneV2jhrRdWWQkMGoUcPNmZUZIRERUOQzeUozIGg0YAKxdC9Spo3s+MBBYtw64cAGYMEFK9L75BmjeXFoehQ3RRERkT5jYkd0YMEBqldu9G0hMlH5euCCd9/KSWvX27pWSuuvXgaFDpSVQHl37rrgYSE6Wlk9JTpZeExER2QqDZsUSWTuFovwlTcLCgN9/B+bMAT74APjpJymB+/BDoFYt4I03uHMFERHZLrbYkcNRKoFZs4CjR6VE7+5daWLF4MHcuYKIiGwbEztyWM2bA2lpUotcWTNqNWPwJk1itywREVk/Jnbk0JycgJCQ8idRPLpzBRERkTVjYkcOjztXEBGRvWBiRw5P350r7t+3bBxERESmYmJHDk/fnStGjwZeeaXkBAsiIiJrwcSOHF5FO1cIAvDMM9JYu+XLgcaNgalTgdu3Kz9WIiKi8jCxI0L5O1esXQvs2ycdnTpJXbJz5wINGwLz5ul20XKBYyIikhMTO6L/KW/nCkBqtUtOlhY1fvJJqcXurbeAJk2Ab7+VEsD69YEuXYDoaOln/fpcA4+IiCoPd54gekRFO1cIAvD880DPnlIyN3MmkJEBjBxZennNAsdr13L3CiIisjxZW+wSEhIQGhoKLy8v+Pr6IioqCunp6eXe8+WXX6Jjx46oXr06qlevjm7duuHgwYOVFDGRRKEAXn4Z+PtvICGBCxwTEZF1kDWxS0lJQUxMDPbv34+kpCSoVCpERkYiPz+/zHuSk5MxbNgw7N69G/v27UNQUBAiIyNx5cqVSoycSOLu/nBiRVm4wDEREVUWWbtit2/frvN6xYoV8PX1xZEjR9CpU6dS7/n+++91Xn/11VdYt24ddu7ciREjRlgsVqKy6Ltw8dmz5XfzEhERmcqqxtjl5OQAAHx8fPS+p6CgACqVqsx7CgsLUVhYqH2dm5sLAFCpVFCpVCZEWz7Nsy35HvbK1uquVi0B+vxVGj9exNGjasTGqtGwoWVisbW6szasP+Ox7ozHujONI9SfIZ9NEMXyOpEqj1qtRt++fXHnzh2kpaXpfd+4ceOwY8cOnDhxAm5ubiWux8XFIT4+vsT5xMREeHh4mBQzESCNnRszJhI3b7oBKG2wnQiFQkRxsTTyQRBEtGuXhb59z6FZs1s64/OKi4GTJ2vg9m03VK9+H82b34RCUSkfg4iIrFRBQQGio6ORk5MDb2/vcstaTWI3duxYbNu2DWlpaQgMDNTrnjlz5mDu3LlITk5GSEhIqWVKa7ELCgrCjRs3KqwcU6hUKiQlJSEiIgIuLi4Wex97ZIt1t2GDgKFDpQxMFB9maoIg/fVavboYXl7AokVO2L794dDWNm3UmDhRjQEDRGzZImDyZAWuXHl4f506IubPL0b//vr9NbXFurMmrD/jse6Mx7ozjSPUX25uLmrWrKlXYmcVXbGxsbHYsmULUlNT9U7q5s2bhzlz5uDXX38tM6kDAKVSCaVSWeK8i4tLpXwBKut97JEt1d0LLwDOzsDEibpbjgUGCliwABgwQPqr1rMncPIksGCBtFzK4cNOeOklJ0yaBNy8WfK5V68KGDrU2eDlUmyp7qwR6894rDvjse5MY8/1Z8jnknVWrCiKiI2NxYYNG7Br1y4EBwfrdd/cuXPx3nvvYfv27WjTpo2FoyTST0ULHGs0bw588YW0/l18PFCrVulJHcDlUoiIyDCyttjFxMQgMTERmzZtgpeXF7KzswEAVatWhbu7OwBgxIgRqFOnDhISEgAAH374IWbOnInExETUr19fe0+VKlVQpUoVeT4I0f9UtMDxo3x9pQWOn3kG6N697HKPLpfCWbVERFQeWVvsli5dipycHHTu3Bn+/v7aY82aNdoyGRkZyHpkPYmlS5fiwYMHGDRokM498+bNk+MjEJmsrNa6x+m7rAoRETkuWVvs9Jm3kZycrPP64sWLlgmGSCb+/vqVW7dO2n/Wz8+y8RARke2StcWOiICOHYHAwLK3JdNYtw5o0AB4803g2rXKiY2IiGwLEzsimSkUwMKF0u+PJ3eCIB0zZkhj8e7dA+bPlxK8//s/4J9/HpYtLgZSUgSkptZBSorAyRZERA6IiR2RFRgwAFi7FqhTR/d8YKB0fvZs4LffgG3bgLZtgYIC4KOPgOBgYNo0YMUKoH59ICLCGfPnt0FEhDPq1wfWr5fhwxARkWysYh07IpKSu379pNmvWVnS2LuOHaHdeUIQgB49pBm0W7cCs2YBR44AH35Y+vOuXAEGDYLBa+AREZHtYosdkRXRLJcybJj0s7TtxAQB6N0bOHQI2LABKGvdSq6BR0TkeJjYEdkoQQCqVQPK2xv60TXwiIjI/jGxI7Jh+q5t9/bbwM8/l58EFhcDycnAqlXST7byERHZHiZ2RDZM3zXw9u0Dnn9empwxcaLUjfvoMpLr10uTL7p0AaKjpZ+cfEFEZHuY2BHZsIrWwBMEoHZtYPx4aQuzf/4BFi2SZtY2awZ88AHw2WfSJIvMTN17NZMvmNwREdkOJnZENqyiNfAAYMkSKZnLzJS6Y4cNA9zdgfR04N13gbFjdVvvNDj5gojI9jCxI7JxFa2Bp1nqxMUF6NULSEwEsrOB5cuBf/2r/Gdz8gURkW3hOnZEdkCzBt7u3UXYtu0oevZ8Cl26OJe6XAoAeHsDo0YBSqU0pq4iV6+aNVwiIrIQJnZEdkKhAMLDReTnX0F4eKsyk7pH6Tv54p13pDF3w4cDAQGllykuLntxZSIiqhzsiiVyYBVNvtC4eFHamzYoSNr9YtUqaVszDc6qJSKyDkzsiBxYRZMvBAH49lvg88+B9u0BtRrYsUNK3vz9gVdfBd5/n7NqiYisBRM7IgdX0eSLl14CxowB0tKAM2eAmTOl1rjcXGDZMmDGDM6qJSKyFkzsiAgDBkjdrbt3S7Nmd+8GLlx4OKNWo1EjID4eOHdO2p2iZ8/yn8tZtURElYuTJ4gIgNQt27mzfmWdnIDwcGm27LZtFZfXd+szIiIyDVvsiMho+s6q/e9/gc2b2SVLRGRpTOyIyGj6zqo9dEhaZy84WJpskZ1dskxxsdS9u2qV9JNJIBGR4ZjYEZHR9JlVu3gxMGUKUKOGNN5uxgxp2ZQXXpDG8okil0shIjIXJnZEZJKKZtXGxAAffSQth/Ltt0BYGFBUBPz4I/Dcc1KSN3Agl0shIjIHJnZEZDJ9ZtW6uUlLp/z2G3D0KPD664Cnp5TAlYbLpRARGY6zYonILAyZVduqFbB0KfD889JRlkeXS9H32UREjoyJHRHJJjdXv3IffCC12oWHA85l/FeLe9USEbErlohkpO9yKb/+CnTrBvj5SduYbdsGPHjw8DonXxARSZjYEZFsKlouRRCAWrWAV14BatYEbt6UtjHr1Qvw9ZXG7E2bxr1qiYg0mNgRkWwqWi4FAD77TErmsrKAnTuBceOklrucHGDlSuDDD7lXLRGRBhM7IpJVRculaGbWOjtLy6N8+qnUGpeWJi2TUh7uVUtEjoaTJ4hIdgMGSDtT6Dv5wckJaN8eyMgA1q2r+Pn79kkTLyraIYOIyNYxsSMiq2DIcika+k6+ePtt4PvvpTF50dHSosiPKy4GUlIEpKbWgaengC5dOKuWiGwPu2KJyGbps1etuzvg6gqcOCFNtKhXT+rS/frrh8utaGbVRkQ4Y/78NoiIcOasWiKySbImdgkJCQgNDYWXlxd8fX0RFRWF9PT0cu85ceIEBg4ciPr160MQBCxYsKBygiUiq6PPXrUrVwLXrgFffil1x4qitDPG6NFA7dpAhw7c0oyI7IesiV1KSgpiYmKwf/9+JCUlQaVSITIyEvn5+WXeU1BQgAYNGmDOnDnw8/OrxGiJyBrpM/miWjVp/bvkZGnrsw8+AJo2Be7fB/buLf25nFVLRLZI1jF227dv13m9YsUK+Pr64siRI+jUqVOp94SGhiI0NBQAMG3aNIvHSETWz5DJF/XqSWPupk8HvvhC2rO2LJpZtamp0qLH5eHOF0RkDaxq8kROTg4AwMfHx2zPLCwsRGFhofZ17v8G1ahUKqhUKrO9z+M0z7bke9gr1p3xHL3u2rd/+LtaLR3l8fAQoM9/Bl94QURUlBrduol47jkR1arpXt+wQcDkyQpcufKwP7hOHRHz5xejf/9SFtmzQ47+3TMF6840jlB/hnw2QRRLW9qz8qnVavTt2xd37txBWlqaXvfUr18fkyZNwqRJk8osExcXh/j4+BLnExMT4eHhYWy4RGQHjh+vgRkzOhh0j5OTiMaNb+Ppp6/jqaeu4+ZNd3z0UZv/XX10oJ/0n9apUw8hLCzLPAETkUMqKChAdHQ0cnJy4O3tXW5Zq0nsxo4di23btiEtLQ2BgYF63aNPYldai11QUBBu3LhRYeWYQqVSISkpCREREXBxcbHY+9gj1p3xWHeGKS4GGjVyxtWrgCiWnForCCICAoBPPinGrl0CkpKckJ4ulCgj/Ve09Pvr1AHOnCmy+25ZfveMx7ozjSPUX25uLmrWrKlXYmcVXbGxsbHYsmULUlNT9U7q9KVUKqFUKkucd3FxqZQvQGW9jz1i3RmPdacfFxdg0SJp9qsg6G5NJs2yFbBoEdC/vzP695fOZ2QAv/wiHdu2AXl5Za+1IooCMjOB/ftdDF6jz1bxu2c81p1p7Ln+DPlcss6KFUURsbGx2LBhA3bt2oXg4GA5wyEiB6TvlmYadetKM2x/+EHax1YfGRnmiZWIqCKyttjFxMQgMTERmzZtgpeXF7KzswEAVatWhbu7OwBgxIgRqFOnDhISEgAADx48wMmTJ7W/X7lyBUePHkWVKlXQqFEjeT4IEdk0zaza3buLsG3bUfTs+RS6dHGusPv08WSwLLGxwIEDwIgRQNu2pS+ozFm1RGQOsrbYLV26FDk5OejcuTP8/f21x5o1a7RlMjIykJX1cODx1atX8fTTT+Ppp59GVlYW5s2bh6effhqvvvqqHB+BiOyEQgGEh4vo1OkKwsNFvZIqfXa+UCiAu3eBJUuAZ54BmjUD/vMf3VY8zc4XXbpIW5516QLufEFERpG1xU6feRvJyck6r+vXr6/XfURElqbZ+aLsMXrA6tVA1arAt98C69YB6enAO+8A774rJXDNmwOffqp7L/Bw54vSuoOJiMrCvWKJiExQ0Ri9QYOAiAjgu++krc2WLwc6d5YSuV27gMWLSyZ1AHe+ICLjMLEjIjLRgAHSVmW7dwOJidLPCxdKtrR5eQGjRknXL14EXnml/Odqdr7Ys6f8csXF0nZpq1ZJP5kIEjkuJnZERGagUEgtccOGST8rGqNXrx7QrZt+z373XWDFCinJexzH5xHRo6xiHTsiIkfk769fub17pQMAnnhCSgi7dgXy8qQWQI7PIyINttgREcmkolm1ggDUqgW8/bY0o9bJCfj7b2mG7cCBwMiRHJ9HRLqY2BERyUQzqxYomdxpXn/2GfDBB8C+fcCtW8DGjcD48dJCyeXRd3weEdkXJnZERDIyZOeLqlWlhZQXLQLmzNHv+YsWAQcPAmp12WU4+YLIfnCMHRGRzDQ7Xxiy84S+4/M2bJCO2rWB3r2BPn2kMXpVqkjX168HJk4EMjMf3hMYKLUkcnweke1hYkdEZAU0s2r1pRmfd+VK6ePsBAGoXl2aJfvLL9Iael9/LR1KpXQ+MBBYtoyTL4jsCbtiiYhskD7j8778UkrObtwAkpKACROA4GCgsBDYvh346itOviCyN0zsiIhslL7j81xdpe7XhQuBc+eAEyeAMWPKfzYnXxDZJiZ2REQ2TN9dLzQEQdqfVt9u348+Ag4cKL1lT6O4GEhJEZCaWgcpKQJb+YhkxDF2REQ2ztDxeYD+ky+2bpWOunWBwYOBF14AQkMfdvc+nHzhDKAN5s/n5AsiObHFjojIAemzOHLNmsCQIYCnJ5CRAXz8MdCunTRO7623gLlzpUkWj86oBR5OvuC2ZkSVj4kdEZED0mfyxeefA6tXA//8IyVpQ4dKSd6lS8C8ecDUqZx8QWRtmNgRETkofSdfuLsD/ftLCxhfvw6sWyctl1IeQyZfcIFkIvPhGDsiIgdm6OLIHh7SPYWF0kSNivznP9JWaJ07Az4+Ja9zgWQi82JiR0Tk4Cw5+SIpSToEAXjqKaBrV+C556Tk8ZdfpLF4XCCZyHzYFUtERAbTd/JFTIy0vIooAn/8IY3N69ULqFYNGDaMY/SIzI2JHRERGUzfyReLF0sLImdlSevsvfqqNKu2uBh48KDs53OBZCLjMLEjIiKj6Dv5AgD8/KQWui+/BM6fBxYs0O89NmyQxuiVh5MviB5iYkdEREbT7HyRlFSEyZMPIympqNydLzRatdLv+YsWAbVqAc88A8TFAfv2AUVFD6+vXw/Ury/N0o2Oln7Wr8819MhxcfIEERGZRKEAwsNF5OdfQXh4qzJn1D5KM0bvypWytyvz8gKCgoCTJ6VtzQ4cAOLjpfF5ERHSGL7PPuPkC6JHscWOiIgqXUVj9AQBWLFCGp+XkQF89ZW0pVm1asCdO8CPPwJLl5pn8gW7csmeMLEjIiJZ6DtGLygIGD0a+OEHaReM334DRo4s/9mayReLFwN5eWWXY1cu2RsmdkREJBvNGL3du6VZs7t3o9wxes7OQFgY0L27fs+fNAmoWhUICZFm5H7xBXD0qDROb/167nVL9odj7IiISFaWXCC5Zk3gxg3g+HHpWLZMOu/mBqjVZXflCoKUFPbrV/YuHBrFxfrv3EFkaWyxIyIim6PPAslBQUB2ttQit2EDMH26tPOFtzdw/7551tFjVy5ZGyZ2RERkc/RZIHnBAqlcnTpAVJS0b+2vvwK3b0s7YOgjOloaz7dkCfD774BK9fAau3LJGjGxIyIim2TIAsmPcnICWrfW7z2ysoBvv5W2RmvdWmrt69ABeOMN4LXXuCUaWR+OsSMiIps1YIA0Ds7QMW4VraMnCNKzli4FDh+W1tA7eFBaamXvXukoz6NduYaOHyQyBRM7IiKyacZMvtB05Q4aJCVxjyZ3mq7cTz4B+vaVDkCabHHmjJTkffed1K1bkawsw+IiMpWsXbEJCQkIDQ2Fl5cXfH19ERUVhfT09Arv+/HHH9G0aVO4ubmhZcuW2Lp1ayVES0RE9sTQrlwnJ6BJE2DECOCdd/R7j9WrpXX3ytpdo7gYSEkRkJpaBykpArtuyWSyJnYpKSmIiYnB/v37kZSUBJVKhcjISOTn55d5z2+//YZhw4Zh9OjR+OOPPxAVFYWoqCj89ddflRg5ERHZA0PX0dOoaFauxubNQPv2QKNGwMyZwKNtF5oZtRERzpg/vw0iIpw5o5ZMJmtX7Pbt23Ver1ixAr6+vjhy5Ag6depU6j0LFy5Ejx498NZbbwEA3nvvPSQlJWHx4sX47LPPLB4zERHZF0t15c6YAVy6BKxbB5w/D7z3nnSEhgItWwLLl3OfWzI/qxpjl5OTAwDw8fEps8y+ffswefJknXPdu3fHxo0bSy1fWFiIwsJC7evc3FwAgEqlgurReetmpnm2Jd/DXrHujMe6Mw3rz3iOWHd9+gCrVwuYPFmBK1ceNt3VqSPi44+L0b+/lLUtXAj89JOAVaucsGOHgEOHBBw6BAAiAN0mP2lxZBETJwK9ehXptThyWpqgnTjSoYPocIsjO8J3z5DPJohiWT3/lUutVqNv3764c+cO0tLSyizn6uqKb775BsOGDdOeW7JkCeLj43Ht2rUS5ePi4hAfH1/ifGJiIjw8PMwTPBEROaziYuDkyRq4fdsN1avfR/PmN8tMru7cccWPPz6Bn39uWOFzY2L+QKdOmVAq1aVe37fPH1991RI3b7prz9WocQ+vvnocYWGctWFPCgoKEB0djZycHHh7e5db1mpa7GJiYvDXX3+Vm9QZY/r06TotfLm5uQgKCkJkZGSFlWMKlUqFpKQkREREwMXFxWLvY49Yd8Zj3ZmG9Wc8R6+7Pn30L+vkJODnnysu9+mnT2PJkqdQrx7wxBPi/w7p9/PngblzFSW6cm/dcsPcuaFYvfphi6G9c4Tvnqa3UR9WkdjFxsZiy5YtSE1NRWBgYLll/fz8SrTMXbt2DX5+fqWWVyqVUCqVJc67uLhUyhegst7HHrHujMe6Mw3rz3isu4oFBelXztMTyM8XcPEicPGigF9+qfgeURQgCMCUKc4YONCx9rm15++eIZ9L1lmxoigiNjYWGzZswK5duxAcHFzhPWFhYdi5c6fOuaSkJISFhVkqTCIiIrPRd5/bO3eAa9eA1FTgyy+BKVOklsEK2j+0iyNPmwacOCGtv1ca7nNrn2RtsYuJiUFiYiI2bdoELy8vZGdnAwCqVq0Kd3dpzMCIESNQp04dJCQkAAAmTpyI8PBwfPzxx+jduzdWr16Nw4cP44svvpDtcxAREelLnxm1CxYAzs6Ar690dOz4sMyqVVIiVpF586SjalWgXTsgLEw62rUDdu2S3p+zcu2PrC12S5cuRU5ODjp37gx/f3/tsWbNGm2ZjIwMZD2ydPezzz6LxMREfPHFF2jVqhXWrl2LjRs3okWLFnJ8BCIiIoMZu88tIHWZ6qNVK8DDA8jJAX75BYiPB3r0AKpXB4YM4T639krWFjt9JuQmJyeXODd48GAMHjzYAhERERFVDs0+t7t3F2HbtqPo2fMpdOnibJZ9bgMDgSNHpOvHjwP79knHb79Ja+oVFZX9fEP2ubWnMXr2QtYWOyIiIkemUADh4SI6dbqC8HD91qDTdOUCJcfpPdqVq1BI3blPPw2MGyftb3vuHLB0qX6xvfQS8OqrwLJlwMmTJcfqcYyedbKKWbFERESkP01X7sSJQGbmw/OBgVJSV15XbtOm+r1HZqaU1C1bJr2uVu3hWL3iYuD99zlGzxoxsSMiIrJBmq5cQ7tC9enK9fcHPvkEOHhQ6sI9dEiapbtjh3SURdo5Qxqj16+fYy23Yi2Y2BEREdkoS+1z+8knUuKoaXVTqR6O1du4Efj117KfrxmjFxMDDBwIPPUUUKtWyXLr15fe4rhwIVv7TMHEjoiIyMEY2pXr4gL861/S4eNTfmKn8fnn0gEAAQFSgqc5rl0DJkxgV64lMLEjIiJyQMZ25eq73Ep4OHD1KnD2rPTz6lVg69by7zGmKzclRUBqah14egro0oVduUzsiIiIHJQxXbn6Lreyc6f0/Lw8qRv36FHpSE0FTp8u+/martwlS4DXXgPc3Eov97Ar1xlAG8yfz65cgMudEBERkQEMWW4FAKpUkWbSjh0rdc3OnKnf+0yYIO2a8eyzwFtvSWP7/vlHurZ+vdRl+2g3MvCwK9eRl1xhYkdEREQGqYydM6pXBx48kCZszJsH9O8vba/WuLG0xp45ds4oLgaSk6Vt2pKT7WO3DXbFEhERkcEsudxKYKC0Q8bFi8DevQ+PkyelMXvl0XfnDHudlcvEjoiIiIxiqeVWFiyQds1o1Eg6Ro6Uzt+6BcyZA3z0UcXv89JLQKdOQEiIdLRsKbUwCsLDrlx7nJXLrlgiIiKqVMZ25fr4AL166fcemZlAYiIwbZp0T1AQUKOGNFt35Ej77cplix0RERFVOkt25fr5AZ99Bpw4Afz5p3SkpwO3b0uzcstj6125TOyIiIhIFpbqyl28GOjbVzo07t+Xlln5/HMp6avI8OFAly5A69ZAmzbA009LM3wB6+7KZVcsERER2RRjunLd3KRdL4YM0e89rl4Fvv8emDxZGqvn7Q00ayYlfK+8Yp6uXEtgix0RERHZHE1X7u7dRdi27Sh69nwKXbo4m6Ur199fatn74w/gyBHpyMyUWvzKW1wZ0L8r11KY2BEREZFNUiiA8HAR+flXEB7eSq/txPTpyv3kE+D556VD49o1KcFbvlxqFaxIVpZhn8Vc2BVLREREDsWYrtzataXZtTEx+r2Hvgsxmxtb7IiIiMjhWHqB5Y4dLRN3RZjYERERkUOy5ALL+nQLWwK7YomIiIgMYMpeuZbGFjsiIiIiAxnblWtpTOyIiIiIjGBMV66lsSuWiIiIyE4wsSMiIiKyE0zsiIiIiOwEEzsiIiIiO8HEjoiIiMhOMLEjIiIishNM7IiIiIjsBBM7IiIiIjvBxI6IiIjITjCxIyIiIrITDrelmCiKAIDc3FyLvo9KpUJBQQFyc3Ph4uJi0feyN6w747HuTMP6Mx7rznisO9M4Qv1pchZNDlMeh0vs7t69CwAICgqSORIiIiIi/d29exdVq1Ytt4wg6pP+2RG1Wo2rV6/Cy8sLgiBY7H1yc3MRFBSEy5cvw9vb22LvY49Yd8Zj3ZmG9Wc81p3xWHemcYT6E0URd+/eRUBAAJycyh9F53Atdk5OTggMDKy09/P29rbbL5qlse6Mx7ozDevPeKw747HuTGPv9VdRS50GJ08QERER2QkmdkRERER2gomdhSiVSsyaNQtKpVLuUGwO6854rDvTsP6Mx7ozHuvONKw/XQ43eYKIiIjIXrHFjoiIiMhOMLEjIiIishNM7IiIiIjsBBM7C/j0009Rv359uLm5oV27djh48KDcIdmEuLg4CIKgczRt2lTusKxSamoq+vTpg4CAAAiCgI0bN+pcF0URM2fOhL+/P9zd3dGtWzecOXNGnmCtUEX1N2rUqBLfxR49esgTrBVJSEhAaGgovLy84Ovri6ioKKSnp+uUuX//PmJiYlCjRg1UqVIFAwcOxLVr12SK2LroU3+dO3cu8d17/fXXZYrYeixduhQhISHaterCwsKwbds27XV+7x5iYmdma9asweTJkzFr1iz8/vvvaNWqFbp3747r16/LHZpNePLJJ5GVlaU90tLS5A7JKuXn56NVq1b49NNPS70+d+5cLFq0CJ999hkOHDgAT09PdO/eHffv36/kSK1TRfUHAD169ND5Lq5ataoSI7ROKSkpiImJwf79+5GUlASVSoXIyEjk5+dry7zxxhv46aef8OOPPyIlJQVXr17FgAEDZIzaeuhTfwDw2muv6Xz35s6dK1PE1iMwMBBz5szBkSNHcPjwYTz33HPo168fTpw4AYDfOx0imVXbtm3FmJgY7evi4mIxICBATEhIkDEq2zBr1iyxVatWcodhcwCIGzZs0L5Wq9Win5+f+NFHH2nP3blzR1QqleKqVatkiNC6PV5/oiiKI0eOFPv16ydLPLbk+vXrIgAxJSVFFEXpe+bi4iL++OOP2jKnTp0SAYj79u2TK0yr9Xj9iaIohoeHixMnTpQvKBtSvXp18auvvuL37jFssTOjBw8e4MiRI+jWrZv2nJOTE7p164Z9+/bJGJntOHPmDAICAtCgQQMMHz4cGRkZcodkcy5cuIDs7Gyd72HVqlXRrl07fg8NkJycDF9fXzRp0gRjx47FzZs35Q7J6uTk5AAAfHx8AABHjhyBSqXS+e41bdoUdevW5XevFI/Xn8b333+PmjVrokWLFpg+fToKCgrkCM9qFRcXY/Xq1cjPz0dYWBi/d49xuL1iLenGjRsoLi5G7dq1dc7Xrl0bp0+flikq29GuXTusWLECTZo0QVZWFuLj49GxY0f89ddf8PLykjs8m5GdnQ0ApX4PNdeofD169MCAAQMQHByMc+fO4e2330bPnj2xb98+KBQKucOzCmq1GpMmTUL79u3RokULANJ3z9XVFdWqVdMpy+9eSaXVHwBER0ejXr16CAgIwJ9//ompU6ciPT0d69evlzFa63D8+HGEhYXh/v37qFKlCjZs2IDmzZvj6NGj/N49gokdWY2ePXtqfw8JCUG7du1Qr149/PDDDxg9erSMkZGjGTp0qPb3li1bIiQkBA0bNkRycjK6du0qY2TWIyYmBn/99RfHwRqprPobM2aM9veWLVvC398fXbt2xblz59CwYcPKDtOqNGnSBEePHkVOTg7Wrl2LkSNHIiUlRe6wrA67Ys2oZs2aUCgUJWbiXLt2DX5+fjJFZbuqVauGJ554AmfPnpU7FJui+a7xe2g+DRo0QM2aNfld/J/Y2Fhs2bIFu3fvRmBgoPa8n58fHjx4gDt37uiU53dPV1n1V5p27doBAL97AFxdXdGoUSO0bt0aCQkJaNWqFRYuXMjv3WOY2JmRq6srWrdujZ07d2rPqdVq7Ny5E2FhYTJGZpvy8vJw7tw5+Pv7yx2KTQkODoafn5/O9zA3NxcHDhzg99BImZmZuHnzpsN/F0VRRGxsLDZs2IBdu3YhODhY53rr1q3h4uKi891LT09HRkYGv3uouP5Kc/ToUQBw+O9eadRqNQoLC/m9ewy7Ys1s8uTJGDlyJNq0aYO2bdtiwYIFyM/Px8svvyx3aFZvypQp6NOnD+rVq4erV69i1qxZUCgUGDZsmNyhWZ28vDydf8FfuHABR48ehY+PD+rWrYtJkybh/fffR+PGjREcHIwZM2YgICAAUVFR8gVtRcqrPx8fH8THx2PgwIHw8/PDuXPn8H//939o1KgRunfvLmPU8ouJiUFiYiI2bdoELy8v7filqlWrwt3dHVWrVsXo0aMxefJk+Pj4wNvbG+PHj0dYWBieeeYZmaOXX0X1d+7cOSQmJqJXr16oUaMG/vzzT7zxxhvo1KkTQkJCZI5eXtOnT0fPnj1Rt25d3L17F4mJiUhOTsaOHTv4vXuc3NNy7dEnn3wi1q1bV3R1dRXbtm0r7t+/X+6QbMKQIUNEf39/0dXVVaxTp444ZMgQ8ezZs3KHZZV2794tAihxjBw5UhRFacmTGTNmiLVr1xaVSqXYtWtXMT09Xd6grUh59VdQUCBGRkaKtWrVEl1cXMR69eqJr732mpidnS132LIrrc4AiMuXL9eWuXfvnjhu3DixevXqooeHh9i/f38xKytLvqCtSEX1l5GRIXbq1En08fERlUql2KhRI/Gtt94Sc3Jy5A3cCrzyyitivXr1RFdXV7FWrVpi165dxV9++UV7nd+7hwRRFMXKTCSJiIiIyDI4xo6IiIjITjCxIyIiIrITTOyIiIiI7AQTOyIiIiI7wcSOiIiIyE4wsSMiIiKyE0zsiIiIiOwEEzsiIiIiO8HEjohIZoIgYOPGjXKHQUR2gIkdETm0UaNGQRCEEkePHj3kDo2IyGDOcgdARCS3Hj16YPny5TrnlEqlTNEQERmPLXZE5PCUSiX8/Px0jurVqwOQukmXLl2Knj17wt3dHQ0aNMDatWt17j9+/Diee+45uLu7o0aNGhgzZgzy8vJ0ynz99dd48sknoVQq4e/vj9jYWJ3rN27cQP/+/eHh4YHGjRtj8+bNlv3QRGSXmNgREVVgxowZGDhwII4dO4bhw4dj6NChOHXqFAAgPz8f3bt3R/Xq1XHo0CH8+OOP+PXXX3USt6VLlyImJgZjxozB8ePHsXnzZjRq1EjnPeLj4/HCCy/gzz//RK9evTB8+HDcunWrUj8nEdkBkYjIgY0cOVJUKBSip6enzvHBBx+IoiiKAMTXX39d55527dqJY8eOFUVRFL/44guxevXqYl5envb6zz//LDo5OYnZ2dmiKIpiQECA+M4775QZAwDx3Xff1b7Oy8sTAYjbtm0z2+ckIsfAMXZE5PC6dOmCpUuX6pzz8fHR/h4WFqZzLSwsDEePHgUAnDp1Cq1atYKnp6f2evv27aFWq5Geng5BEHD16lV07dq13BhCQkK0v3t6esLb2xvXr1839iMRkYNiYkdEDs/T07NE16i5uLu761XOxcVF57UgCFCr1ZYIiYjsGMfYERFVYP/+/SVeN2vWDADQrFkzHDt2DPn5+drre/fuhZOTE5o0aQIvLy/Ur18fO3furNSYicgxscWOiBxeYWEhsrOzdc45OzujZs2aAIAff/wRbdq0QYcOHfD999/j4MGDWLZsGQBg+PDhmDVrFkaOHIm4uDj8888/GD9+PF566SXUrl0bABAXF4fXX38dvr6+6NmzJ+7evYu9e/di/PjxlftBicjuMbEjIoe3fft2+Pv765xr0qQJTp8+DUCasbp69WqMGzcO/v7+WLVqFZo3bw4A8PDwwI4dOzBx4kSEhobCw8MDAwcOxPz587XPGjlyJO7fv4///ve/mDJlCmrWrIlBgwZV3gckIochiKIoyh0EEZG1EgQBGzZsQFRUlNyhEBFViGPsiIiIiOwEEzsiIiIiO8ExdkRE5eBoFSKyJWyxIyIiIrITTOyIiIiI7AQTOyIiIiI7wcSOiIiIyE4wsSMiIiKyE0zsiIiIiOwEEzsiIiIiO8HEjoiIiMhOMLEjIiIishP/D33MM1/JvekqAAAAAElFTkSuQmCC", "text/plain": [ "
" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/png": "iVBORw0KGgoAAAANSUhEUgAAAnYAAAHWCAYAAAD6oMSKAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjcuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8pXeV/AAAACXBIWXMAAA9hAAAPYQGoP6dpAACLZElEQVR4nOzdd3hT1f8H8HeSpulM94TSlpZRkI1CESmj0IIgSwFFKUNwAIp+XSBbEEXhByqCE5ApS0RRoOxVypAyy7SljJZN0900ub8/YgOhK0nT3rR9v57nPiR3fu5pUj49555zJIIgCCAiIiKiKk8qdgBEREREZBlM7IiIiIiqCSZ2RERERNUEEzsiIiKiaoKJHREREVE1wcSOiIiIqJpgYkdERERUTTCxIyIiIqommNgRERERVRNM7IhqoN27d0MikWD37t0Vdo2OHTuiY8eOFXZ+cxw5cgTt2rWDo6MjJBIJEhISxA6JqpihQ4fCyclJ7DCISsTEjqiCLVmyBBKJRL/Y2dmhfv36GDNmDG7evCl2eJXmxo0bmDp1qmjJlFqtxgsvvIB79+7h//7v/7Bs2TIEBgYWu29h4lu4KBQK+Pj4oGPHjvj0009x+/btSo7+oczMTEyZMgVPPPEEHB0d4eHhgebNm+Ptt9/GjRs3TD7f2bNnMXXqVCQnJ1s+WDMMHTrUoOwf/+4QUelsxA6AqKaYPn06goODkZubi/3792PhwoX466+/cPr0aTg4OIgdnsVt27bN4P2NGzcwbdo0BAUFoXnz5pUez+XLl3HlyhX88MMPePXVV4065q233sKTTz4JjUaD27dv4+DBg5gyZQrmzp2LNWvWoHPnzhUctSG1Wo0OHTrg3LlziImJwdixY5GZmYkzZ85g5cqV6Nu3L/z9/U0659mzZzFt2jR07NgRQUFBFRO4iRQKBX788cci62UymQjREFUtTOyIKkn37t3RunVrAMCrr74KDw8PzJ07F7///jtefPHFcp07Ozvb6pJDW1tbsUMwcOvWLQCAq6ur0cc888wzeP755w3WnThxAt26dUP//v1x9uxZ+Pn5WTLMUm3cuBHHjx/HihUr8NJLLxlsy83NRX5+fqXFUpFsbGzw8ssvix0GUZXEplgikRTW9iQlJenXLV++HK1atYK9vT3c3d0xaNAgXL161eC4jh074oknnsCxY8fQoUMHODg4YMKECQCAoKAg9OzZE9u2bUPz5s1hZ2eHRo0aYcOGDUbFFB8fj+joaLi4uMDBwQERERE4cOCAfntiYiLs7e0xZMgQg+P2798PmUyGDz/80CDOwmfsdu/ejSeffBIAMGzYMH3T2pIlSzBlyhTI5fJimzdHjRoFV1dX5Obmlhr3zp078cwzz8DR0RGurq7o3bs3EhMT9duHDh2KiIgIAMALL7wAiURi9vN/zZo1w7x58/DgwQN88803BtuuX7+O4cOHw8fHBwqFAo0bN8bPP/+s337z5k3Y2Nhg2rRpRc57/vx5SCSSIud81OXLlwEATz/9dJFtdnZ2UCqVBuvOnTuH559/Hu7u7rCzs0Pr1q2xadMm/fYlS5bghRdeAAB06tRJ/3Mp6dnLL7/8EhKJBFeuXCmybfz48bC1tcX9+/cBABcvXkT//v3h6+sLOzs71K5dG4MGDUJ6enqJ92eKwkcc9u7di9deew0eHh5QKpUYMmSIPoZHffvtt2jcuDEUCgX8/f0xevRoPHjwoMh+8fHx6NGjB9zc3ODo6IimTZti/vz5Rfa7fv06+vTpAycnJ3h5eeG9996DRqOxyL0RlQcTOyKRFP4n7eHhAQCYOXMmhgwZgnr16mHu3LkYN24cduzYgQ4dOhT5D+ju3bvo3r07mjdvjnnz5qFTp076bRcvXsTAgQPRvXt3zJo1CzY2NnjhhRcQGxtbajw7d+5Ehw4doFKpMGXKFHz66ad48OABOnfujMOHDwMAwsLC8Mknn2DZsmX6BCErKwtDhw5Fw4YNMX369GLPHRYWpt82atQoLFu2DMuWLUOHDh3wyiuvoKCgAL/++qvBMfn5+Vi3bh369+9f6rNV27dvR1RUFG7duoWpU6fi3XffxcGDB/H000/rnxt77bXX9MnvW2+9hWXLluHjjz8utTxK8/zzz8Pe3t6gufnmzZto27Yttm/fjjFjxmD+/PkIDQ3FiBEjMG/ePACAj48PIiIisGbNmiLn/PXXXyGTyfSJVnEKnwn85ZdfIAhCqTGeOXMGbdu2RWJiIj766CPMmTMHjo6O6NOnD3777TcAQIcOHfDWW28BACZMmKD/uYSFhRV7zgEDBkAikRQb/5o1a9CtWze4ubkhPz8fUVFROHToEMaOHYsFCxZg1KhR+Pfff4tNpopz586dIotKpSqy35gxY5CYmIipU6diyJAhWLFiBfr06WNQPlOnTsXo0aPh7++POXPmoH///vjuu+/QrVs3qNVq/X6xsbHo0KEDzp49i7fffhtz5sxBp06d8OeffxpcU6PRICoqCh4eHvjyyy8RERGBOXPm4Pvvvzfq3ogqlEBEFWrx4sUCAGH79u3C7du3hatXrwqrV68WPDw8BHt7e+HatWtCcnKyIJPJhJkzZxoce+rUKcHGxsZgfUREhABAWLRoUZFrBQYGCgCE9evX69elp6cLfn5+QosWLfTrdu3aJQAQdu3aJQiCIGi1WqFevXpCVFSUoNVq9ftlZ2cLwcHBQteuXfXrNBqN0L59e8HHx0e4c+eOMHr0aMHGxkY4cuSIQSwRERFCRESE/v2RI0cEAMLixYuLxB0eHi60adPGYN2GDRsMYixJ8+bNBW9vb+Hu3bv6dSdOnBCkUqkwZMiQIve8du3aUs9n7L7NmjUT3Nzc9O9HjBgh+Pn5CXfu3DHYb9CgQYKLi4uQnZ0tCIIgfPfddwIA4dSpUwb7NWrUSOjcuXOpcWVnZwsNGjQQAAiBgYHC0KFDhZ9++km4efNmkX27dOkiNGnSRMjNzdWv02q1Qrt27YR69erp161du9aoci4UHh4utGrVymDd4cOHBQDCL7/8IgiCIBw/ftzosn5cTEyMAKDYJSoqSr9f4feqVatWQn5+vn797NmzBQDC77//LgiCINy6dUuwtbUVunXrJmg0Gv1+33zzjQBA+PnnnwVBEISCggIhODhYCAwMFO7fv28Q06PficL4pk+fbrBPixYtipQLkRhYY0dUSSIjI+Hl5YWAgAAMGjQITk5O+O2331CrVi1s2LABWq0WAwYMMKih8PX1Rb169bBr1y6DcykUCgwbNqzY6/j7+6Nv377694XNU8ePH0daWlqxxyQkJODixYt46aWXcPfuXf31s7Ky0KVLF+zduxdarRYAIJVKsWTJEmRmZqJ79+749ttvMX78eP3zg+YYMmQI4uPj9bWYALBixQoEBATom1CLk5qaioSEBAwdOhTu7u769U2bNkXXrl3x119/mR1TWZycnJCRkQEAEAQB69evR69evSAIgsHPMCoqCunp6fjnn38AAP369YONjY1BDeXp06dx9uxZDBw4sNRr2tvbIz4+Hu+//z4AXXPkiBEj4Ofnh7FjxyIvLw8AcO/ePezcuRMDBgxARkaGPpa7d+8iKioKFy9exPXr182674EDB+LYsWMGP6tff/0VCoUCvXv3BgC4uLgAALZu3Yrs7GyTr2FnZ4fY2Ngiy2effVZk31GjRkEul+vfv/HGG7CxsdH/7Ldv3478/HyMGzcOUunD//JGjhwJpVKJzZs3AwCOHz+OpKQkjBs3rshzmBKJpMh1X3/9dYP3zzzzDP7991+T75XI0pjYEVWSBQsWIDY2Frt27cLZs2fx77//IioqCoCu+VQQBNSrVw9eXl4GS2Jiov7B/0K1atUqsXNCaGhokf+I6tevDwAlDmlx8eJFAEBMTEyR6//444/Iy8szeDYqJCQEU6dOxZEjR9C4cWNMmjTJrDIpNHDgQCgUCqxYsQIAkJ6ejj///BODBw8u9j/VQoXPejVo0KDItrCwMH1yWhEyMzPh7OwMALh9+zYePHiA77//vkj5FSbghT9DT09PdOnSxaA589dff4WNjQ369etX5nVdXFwwe/ZsJCcnIzk5GT/99BMaNGiAb775Bp988gkA4NKlSxAEAZMmTSoSz5QpUwziMdULL7wAqVSqT0wFQcDatWvRvXt3/TN+wcHBePfdd/Hjjz/C09MTUVFRWLBggdHP18lkMkRGRhZZiutNXa9ePYP3Tk5O8PPz03/WS/qM2Nraom7duvrthYnqE088UWZ8dnZ28PLyMljn5uZW7LN9RJWNvWKJKslTTz1VYq2WVquFRCLB33//XeyQDo8PiGpvb2/R2Apr47744osShyJ5PIbC58tu3LiBu3fvwtfX1+zru7m5oWfPnlixYgUmT56MdevWIS8vz2p7RqrValy4cEGfBBSW38svv4yYmJhij2natKn+9aBBgzBs2DAkJCSgefPmWLNmDbp06QJPT0+T4ggMDMTw4cPRt29f1K1bFytWrMCMGTP08bz33nv6Px4eFxoaatK1Cvn7++OZZ57BmjVrMGHCBBw6dAgpKSn4/PPPDfabM2cOhg4dit9//x3btm3DW2+9hVmzZuHQoUOoXbu2Wde2Fhx2hawZEzsiKxASEgJBEBAcHKyvXTNXYW3NozVdFy5cAIASxykLCQkBoGu2jYyMLPMaixYtQmxsLGbOnIlZs2bhtddew++//17qMaXVvAG65tjevXvjyJEjWLFiBVq0aIHGjRuXekxhZ4Lz588X2Xbu3Dl4enrC0dGxjLsx3bp165CTk6NPmry8vODs7AyNRmNU+fXp0wevvfaavtbrwoULGD9+vNnxuLm5ISQkBKdPnwYA1K1bFwAgl8vLjKesn0txBg4ciDfffBPnz5/Hr7/+CgcHB/Tq1avIfk2aNEGTJk0wceJEfYeWRYsWYcaMGSZfsyQXL1406DyUmZmJ1NRU9OjRA4DhZ6SwXABd55ykpCR9+RR+B06fPm3Uz5DIWrEplsgK9OvXDzKZDNOmTSvS21EQBNy9e9foc924cUPf6xEAVCoVfvnlFzRv3rzEWrVWrVohJCQEX375JTIzM4tsf3QokqSkJLz//vvo378/JkyYgC+//BKbNm3CL7/8UmpchQlWSb0iu3fvDk9PT3z++efYs2ePUbV1fn5+aN68OZYuXWpw3tOnT2Pbtm36/9wt6cSJExg3bhzc3NwwevRoALoanP79+2P9+vX65OpRjw/l4urqiqioKKxZswarV6+Gra0t+vTpY9S179y5U2T9lStXcPbsWX1zo7e3Nzp27IjvvvsOqamppcZT1s+lOP3794dMJsOqVauwdu1a9OzZ0yCBVqlUKCgoMDimSZMmkEql+ucALeX777836Nm6cOFCFBQUoHv37gB0z7ba2triq6++Mvhu/fTTT0hPT8ezzz4LAGjZsiWCg4P1Q9k86vHvJJE1Y40dkRUICQnBjBkzMH78eCQnJ6NPnz5wdnZGUlISfvvtN4waNQrvvfeeUeeqX78+RowYgSNHjsDHxwc///wzbt68icWLF5d4jFQqxY8//oju3bujcePGGDZsGGrVqoXr169j165dUCqV+OOPPyAIAoYPHw57e3ssXLgQgG4okfXr1+Ptt99GZGRkiTMfhISEwNXVFYsWLYKzszMcHR3Rpk0bBAcHA9DVLg0aNAjffPMNZDKZ0YM2f/HFF+jevTvCw8MxYsQI5OTk4Ouvv4aLiwumTp1q1DlKsm/fPuTm5kKj0eDu3bs4cOAANm3aBBcXF/z2228GifJnn32GXbt2oU2bNhg5ciQaNWqEe/fu4Z9//sH27dtx7949g3MPHDgQL7/8Mr799ltERUUZNXBybGwspkyZgueeew5t27aFk5MT/v33X/z888/Iy8szuN8FCxagffv2aNKkCUaOHIm6devi5s2biIuLw7Vr13DixAkAQPPmzSGTyfD5558jPT0dCoUCnTt3hre3d4lxeHt7o1OnTpg7dy4yMjKKdPrYuXMnxowZgxdeeAH169dHQUEBli1bpk+Ay1JQUIDly5cXu61v374GSWR+fj66dOmCAQMG4Pz58/j222/Rvn17PPfccwB0tanjx4/HtGnTEB0djeeee06/35NPPqn/A0IqlWLhwoXo1asXmjdvjmHDhsHPzw/nzp3DmTNnsHXr1jLjJrIK4nTGJao5CodleHw4kOKsX79eaN++veDo6Cg4OjoKDRs2FEaPHi2cP39ev09ERITQuHHjYo8PDAwUnn32WWHr1q1C06ZNBYVCITRs2LDIsBOPD3dS6Pjx40K/fv0EDw8PQaFQCIGBgcKAAQOEHTt2CIIgCPPnzy8ynIogCEJKSoqgVCqFHj16GMT56HAngiAIv//+u9CoUSPBxsam2KFPCofN6NatW5ll9ajt27cLTz/9tGBvby8olUqhV69ewtmzZ4u9Z1OGOylc5HK54OXlJXTo0EGYOXOmcOvWrWKPu3nzpjB69GghICBAkMvlgq+vr9ClSxfh+++/L7KvSqUS7O3tBQDC8uXLjbrPf//9V5g8ebLQtm1bwdvbW7CxsRG8vLyEZ599Vti5c2eR/S9fviwMGTJE8PX1FeRyuVCrVi2hZ8+ewrp16wz2++GHH4S6desKMpnM6KFPfvjhBwGA4OzsLOTk5BSJc/jw4UJISIhgZ2cnuLu7C506dRK2b99e5nlLG+4EgJCUlCQIwsPv1Z49e4RRo0YJbm5ugpOTkzB48GCDoW8KffPNN0LDhg0FuVwu+Pj4CG+88UaRYU0EQRD2798vdO3aVXB2dhYcHR2Fpk2bCl9//bVBfI6OjkWOmzJlisD/UskaSASBdcxE1UVQUBCeeOKJIgOqVhUnTpxA8+bN8csvv+CVV14ROxyyYkuWLMGwYcNw5MiRcg21Q1Td8Bk7IrIaP/zwA5ycnIwa9oOIiIriM3ZEJLo//vgDZ8+exffff48xY8ZUSE9WIqKagIkdEYlu7NixuHnzJnr06IFp06aJHQ4RUZXFZ+yIiIiIqgk+Y0dERERUTTCxIyIiIqom+IwddPM83rhxA87OzmZNr0NERERUUQRBQEZGBvz9/SGVll4nx8QOuimYAgICxA6DiIiIqERXr15F7dq1S92HiR0AZ2dnALoCUyqVFXINtVqNbdu2oVu3bpDL5RVyjeqKZWcelpv5qmzZabXA1au61wEBQBl/2VeEKlt2VoBlZ56aUG4qlQoBAQH6fKU0TOwAffOrUqms0MTOwcEBSqWy2n7wKgrLzjwsN/NV2bLLygKaNtW9zswERBgPsMqWnRVg2ZmnJpWbMY+LsfMEERERUTXBxI6IiIiommBiR0RERFRN8Bk7IiISnUajgVqtFjsMUanVatjY2CA3NxcajUbscKqM6lBucrkcMpnMIudiYkdERKIRBAFpaWl48OCB2KGIThAE+Pr64urVqxxT1QTVpdxcXV3h6+tb7ntgYkdERKIpTOq8vb3h4OBQpf9jLi+tVovMzEw4OTmVOQgtPVTVy00QBGRnZ+PWrVsAAD8/v3Kdj4kdEVF1YWMDvPnmw9dWTqPR6JM6Dw8PscMRnVarRX5+Puzs7KpkgiKW6lBu9vb2AIBbt27B29u7XM2y1v/NJyIi4ygUwIIFYkdhtMJn6hwcHESOhEh8hd8DtVpdrsSuaqa2RERUbdTk5leiQpb6HrDGjoiouhAE4M4d3WtPT4AJE1GNwxq7SqDVaHFlzxXc33sfV/ZcgVajFTskIqqOsrMBb2/dkp0tdjRUQTp27Ihx48ZZ7HxLliyBq6urxc5niuzsbPTv3x9KpRISiYS9oy1A1MRu79696NWrF/z9/SGRSLBx40aD7Rs2bEC3bt3g4eEBiUSChISEIufIzc3F6NGj4eHhAScnJ/Tv3x83b96snBswQuKGRMwPmo8VXVfgytwrWNF1BeYHzUfihkSxQyMiqja0Gi2Sdyfj1KpTSN6dXOF/QA8dOhQSiQQSiQS2trYIDQ3F9OnTUVBQUKHXrQgDBw7EhQsX9O+nTp2K5s2bV8q1ly5din379uHgwYNITU2Fi4tLkX2WLFmiL2uZTAY3Nze0adMG06dPR3p6eoXHmJ2djfHjxyMkJAR2dnbw8vJCREQEfv/9d6PPUZnJs6hNsVlZWWjWrBmGDx+Ofv36Fbu9ffv2GDBgAEaOHFnsOd555x1s3rwZa9euhYuLC8aMGYN+/frhwIEDFR1+mRI3JGLN82sAwXC96roKa55fgwHrBiCsX5g4wRERVROJGxKx5e0tUF1T6dcpaysRPT+6Qn/HRkdHY/HixcjLy8Nff/2F0aNHQy6XY/z48SafS6PRQBCEsnesAPb29vpemZXt8uXLCAsLwxNPPFHqfkqlEufPn4cgCHjw4AEOHjyIWbNmYfHixdi3bx+cnJwqLMbXX38d8fHx+Prrr9GoUSPcvXsXBw8exN27dyvsmuUhao1d9+7dMWPGDPTt27fY7a+88gomT56MyMjIYrenp6fjp59+wty5c9G5c2e0atUKixcvxsGDB3Ho0KGKDL1MWo0WW97eUiSpA6Bft2XcFjbLEhGVQ+Ef0I8mdcDDP6ArsnVEoVDA19cXgYGBeOONNxAZGYlNmzYBAPLy8vDee++hVq1acHR0RJs2bbB79279sYU1OJs2bUKjRo2gUCiQkpKCN998E3379sW0adPg5eUFpVKJ119/Hfn5+SXGUdq1cnNz0bhxY4waNUq//+XLl+Hs7Iyff/7ZIJbC19OmTcOJEyf0tWRLlizB8OHD0bNnT4PrqtVqeHt746effioxtvXr16Nx48ZQKBQICgrCnDlz9Ns6duyIOXPmYO/evZBIJOjYsWOJ55FIJPD19YWfnx/CwsIwYsQIHDx4EJmZmfjwww/1+2m1WsyaNQvBwcGwt7dHs2bNsG7dOv222rVrY+HChQbnPn78OKRSKa5cuVLstTdt2oQJEyagR48eCAoKQqtWrTB27FgMHz5cv09pP4Pdu3dj2LBhSE9P15fp1KlTS7zX8qrSnSeOHTsGtVptkPg1bNgQderUQVxcHNq2bVvscXl5ecjLy9O/V6l0vxDUarXFprS5sudKkV80BgRAdVWFf3f9i8CIQItcs7oq/JnU9OmGTMVyM1+VLTu1GnL9SzUgQvymlJ1arYYgCNBqtdBqdX/kCoIAdbZxcWs1Wvw99u+S/4CWAH+/9TcCOwdCKiu7HkPuIDe6Z6IgCPrYC9nZ2eHu3bvQarUYPXo0EhMTsXLlSvj7+2Pjxo2Ijo7GiRMnUK9ePWi1WmRnZ+Pzzz/H999/Dw8PD3h5eQEAdu7cCTs7O+zcuRPJyckYMWIE3N3dMWPGDIPrF167rGstW7YM4eHh6N69O3r27ImXX34ZkZGRGDp0qEHZa7VavPDCCzh16hS2bt2Kbdu2AQBcXFwQGhqKjh074vr16/oBdDdt2oTs7Gy88MILBuVQ6NixYxgwYACmTJmCAQMG4ODBgxgzZgzc3NwwdOhQrFu3DuPHj8eZM2ewbt062NraFnueR+N7lKenJ1566SUsXrwYX331FQRBwKxZs7BixQp8++23qFevHvbu3YuXX34ZHh4eiIiIwKBBg7By5Uq89tpr+vMsX74cTz/9NAICAoq9vq+vLzZv3ow+ffrA2dm52M9DaT+Dtm3b4v/+7/8wZcoUJCbq/tBwcnIqci2tVqv7/Bcz3Ikpv4uqdGKXlpYGW1vbIu3WPj4+SEtLK/G4WbNmYdq0aUXWb9u2zWLjKd3fe9+o/fb/vR9nss5Y5JrVXWxsrNghVEksN/NVtbKT5eaisE5l69at0NjZiRaLMWVnY2MDX19fZGZm6muk1FlqfFv7W8sEIQAZ1zPwhdsXRu3+5rU3IXeUl70jdP/RFhQUQKVSQRAE7NmzB9u2bcPIkSNx5swZLFmyBKdOndInQSNHjsTmzZvx3XffYfLkycjNzYVarcZnn32mb4YsnOdULpfj//7v/+Dg4ICAgAB89NFHmDJlCt577z1IpVIUFBQgPz8fKpUKV69eLfNadevWxccff4yRI0eiX79+SE5OxooVK/SVGrm5uRAEQf9eLtcluI+Oq/bEE0+gXr16+PHHH/H2228DAH788Uf07t0bWq1Wf+yjZs+ejYiICLz11lsAgH79+iEhIQFffPEF+vXrBxsbG9jY2EAqleqvVdx5Ho/vUYGBgcjIyMC9e/dQUFCAWbNm4bfffsNTTz2lv+bu3buxYMECtGjRAr1798bcuXNx5swZfSK3evVq/O9//yv2/AAwZ84cjBo1Cl5eXnjiiSfQtm1bPPfcc/rKI2N+Bra2tgAejlVXXJnl5+cjJycHe/fuLfKsZrYJnaGqdGJnrvHjx+Pdd9/Vv1epVAgICEC3bt2gVCotco0rjldwZW7x1bqPat+9PWvsyqBWqxEbG4uuXbtCLjfuly6x3MqjypZdVpb+ZVRUFODoWOkhmFJ2ubm5uHr1KpycnGD3XxKaLyu5ybGiOSudYetoa9S+crkcW7duRe3ataFWq6HVavHiiy/i008/xe7du6HRaPDkk08aHJOXlwdvb28olUrY2dnB1tYW7dq109cSFj5j16xZM/j6+uqP69SpE/73v/8hPT0dgYGBsLGxga2tLZRKJZKTk8u8FgBMmDABW7duxQ8//IDNmzcjKChIv6+dnR0kEol+X4VCAZlMVuT/w5EjR+KHH37ApEmTcPPmTWzfvh3bt28v8f/Ny5cv47nnnjPY3qlTJyxatAiOjo6QyWSwtbWFjY1Nqf/3Ph7foxQKBQBdU+3NmzeRnZ1d5Jn9/Px8tGjRAkqlEk8//TTCwsLw559/4sMPP8SuXbtw+/ZtvPLKKyXG0L17d/z77784dOgQ4uLisGPHDvTo0QNTp07FxIkTjfoZlHYPhXJzc2Fvb48OHTrovw+FSko6i1OlEztfX1/k5+fjwYMHBrV2N2/eNPhSPE6hUOg/DI+Sy+UW+yVet1NdKGsrobquKr6ZQKJ7uLdup7pGNRGQZX8+NQnLzXxVruzs7YGYGACA3N4eEDF2Y8pOo9FAIpFAKpXqp4JSOCkwPtO4zgdX9l7Byh4ry9zvpb9eQmCHsv+ANqUpViKRoFOnTli4cCFsbW3h7+8Pm/+mccvOzoZMJsOxY8eKNKkVzmcqlUphb29vsL2waa6wTAoVvn60nAr3MeZagG6qqgsXLkAmk+Hy5cslnr/w3I++LxQTE4Px48cjPj4eBw8eRHBwMCIiIsosp9LupaRrPerx+B51/vx5KJVKuLu74/bt2wCAzZs3o1atWgb7KRQK/fGDBw/GqlWrMH78eKxevRrR0dH6ZvCSKBQKREREICIiAh999BFmzJiB6dOn46OPPjL6523MfUokkmK/O6b8HqrSiV2rVq0gl8uxY8cO9O/fH4Duh5ySkoLw8HBRY5PKpIieH63rFSuBYXL33++N6HnRTOqIyHIUCmDJErGjKBeJRGJ0rVlItxCj/oAO6RZSIb9rHR0dERoaWmR9ixYtoNFocOvWLTzzzDMmn/fEiRPIycnR91Q9dOgQnJycEBAQYPa1hg8fjiZNmmDEiBEYOXIkIiMjERZWfI9hW1tbfbPwozw8PNCnTx8sXrwYcXFxGDZsWKn3ERYWVmSEigMHDqB+/frlmjKr0K1bt7By5Ur07t0bUqnUoBNKaQnnSy+9hIkTJ+LYsWNYt24dFi1aZPK1GzVqhIKCAuTm5hr1MyipTCuCqIldZmYmLl26pH+flJSEhIQEuLu7o06dOrh37x5SUlJw48YNALqkDdDV1Pn6+sLFxQUjRozAu+++C3d3dyiVSowdOxbh4eEldpyoTGH9wjBg3YDiu+HPq9hu+ERE1Z21/gFdv359DB48GEOGDMGcOXPQokUL3L59Gzt27EDTpk3x7LPPlnp8fn4+RowYoW/mmzJlCsaMGVNsbY8x11qwYAHi4uJw8uRJBAQEYPPmzRg8eDAOHTqkf/brUUFBQfr/j2vXrg1nZ2d9K9err76Knj17QqPRIOa/2uGS/O9//8OTTz6JTz75BAMHDkRcXBy++eYbfPut6c9QCoKAtLQ0/XAncXFx+PTTT+Hi4oJZs2YBAJydnfHee+/hnXfegVarRfv27ZGeno4DBw5AqVTq4w0KCkK7du0wYsQIaDQaPPfcc6Veu2PHjnjxxRfRunVreHh44OzZs5gwYQI6deoEpVIJpVJZ5s8gKCgImZmZ2LFjB5o1awYHB4eKmyNZENGuXbsE6L6KBktMTIwgCIKwePHiYrdPmTJFf46cnBzhzTffFNzc3AQHBwehb9++QmpqqklxpKenCwCE9PR0C97dQ5oCjbDpjU3CVEwVfnrmJ0FToKmQ61RX+fn5wsaNG4X8/HyxQ6lSWG7mq7Jlp9UKQmambtFqRQnBlLLLyckRzp49K+Tk5JTrmmfXnxXm1p4rTMVU/TI3YK5wdv3Zcp23NDExMULv3r1L3J6fny9MnjxZCAoKEuRyueDn5yf07dtXOHnypCAIuv/fXFxcDI7RaDTCiy++KDz33HPC5MmTBQ8PD8HJyUkYOXKkkJubq98vIiJCePvtt426VmJiomBvby+sXLlSv//9+/eFgIAA4YMPPig2ltzcXKF///6Cq6urAEBYvHixfptWqxUCAwOFHj16GFVO69atExo1aiTI5XKhTp06whdffGGw/e233xYiIiJKPcejuYBEIhFcXFyEp556Spg+fbqQnp4uaDQa4f79+4JGoxG0Wq0wb948oUGDBoJcLhe8vLyEqKgoYc+ePQbn/PbbbwUAwpAhQ8q8h08//VQIDw8X3N3dBTs7O6Fu3brCW2+9Jdy5c0e/T1k/b0EQhNdff13w8PAokscUKu37YEqeIhEEkUZEtCIqlQouLi5IT0+3WOeJx51acwobBm6A/1P+GBlf/GDLVDy1Wo2//voLPXr0qFrPO4mM5Wa+Klt2WVlA4UCtmZmidZ4wtuxyc3ORlJSE4ODgIg+Lm0qr0SJlXwoyUjPg7OeMOs/UqXKPumi1Wrz88svIysoyaVaDypSZmYlatWph8eLFxU4sIIbCHqZKpbLUZ9isXWnfB1PylCr9jF1V4lJHN01KqWPbERGRWaQyKYI6BokdRrWl1Wpx584dzJkzB66urmU2X5J4mNhVEufaukENM1MzoVFrIJOX/8FRIiKiypCSkoLg4GDUrl0bS5Ys0fcAJuvDn0wlcfRyhMRGAqFAQMb1DLgGuYodEhERWZlvv/22wh4JKo+goCDR5rIl01TdxugqRiKVQO6he94k/Wq6yNEQERFRdcTErhLJPXWJneoqn7MjIiIiy2NiV4lsvXTjBbHGjoiIiCoCn7GrRLaeusSONXZEVCFkMuD55x++JqIah4ldJSpsik1PYY0dEVUAOztg7VqxoyAiEbEpthLxGTsiIiKqSEzsKlFhUyyfsSMiImsydOhQ9OnTR+wwyAKY2FWiwhq7nLs5UGerRY6GiKqdrCxAItEtWVliR1OtDR06FBKJRL94eHggOjoaJ0+etNg1pk6diubNm5e6z9ixYxEWFlbstpSUFMhkMmzatMliMVna4+VYuDRu3Fi/z8KFC9G0aVMolUoolUqEh4fj77//LvW8GzZsQOvWreHq6gpHR0c0b94cy5Ytq+jbsQpM7CqRzFEGW6f/OlBwajEioiotOjoaqampSE1NxY4dO2BjY4OePXtWagwjRozAuXPncPDgwSLblixZAm9vb/To0aNSYzLF/Pnz9WWYmpqKq1evwt3dHS+88IJ+n9q1a+Ozzz7DsWPHcPToUXTu3Bm9e/fGmTNnSjyvu7s7Pv74Y8TFxeHkyZMYNmwYhg0bhq1bt1bGbYmKiV0lkkgk+qnF2IGCiKhqUygU8PX1ha+vL5o3b46PPvoIV69exe3bt/X7XL16FQMGDICrqyvc3d3Ru3dvJCcn67fv3r0bTz31FBwdHeHu7o6oqChcuXIFS5YswbRp03DixAl9LdaSJUuKxNC8eXO0bNkSP//8s8F6QRCwZMkSxMTEQCKRYMSIEQgODoa9vT0aNGiA+fPnl3pvQUFBmDdvXpFrTZ06Vf/+wYMHePXVV+Hl5QWlUonOnTvjxIkTRpcfALi4uOjL0NfXF0ePHsX9+/cxbNgw/T69evVCjx49UK9ePdSvXx8zZ86Ek5MTDh06VOJ5O3bsiL59+yIsLAwhISF4++230bRpU+zfv9+k+KoiJnaVTBmgmyqGz9kREZUiK6vkJTfX+H1zcozbt5wyMzOxfPlyhIaGwsPDAwCgVqsRFRUFZ2dn7Nu3DwcOHICTkxOio6ORn5+PgoIC9OnTBxERETh58iQOHDigb5ocOHAg/ve//6Fx48b62qyBAwcWe+0RI0ZgzZo1yHrkPnbv3o2kpCQMHz4cWq0WtWvXxtq1a3H27FlMnjwZEyZMwJo1a8p1zy+88AJu3bqFv//+G8eOHUPLli3RpUsX3Lt3DwCQnJwMiUSC3bt3G33On376CZGRkQgMDCx2u0ajwerVq5GVlYXw8HCjzikIAnbs2IHz58+jQ4cORsdSVXG4k0qmrK1L7NgzloioFE5OJW/r0QPYvPnhe29vIDu7+H0jIoBHE4ugIODOnaL7mTEP6p9//gmn/+LMysqCn58f/vzzT0ilujqTX3/9FVqtFj/++CMkEgkAYPHixXB1dcXu3bvRunVrpKeno2fPnggJCYFWq0WtWrWgVCohlUrh5OQEGxsb+Pr6lhrHSy+9hP/9739Yu3Ythg4dqr9O+/btUb9+fQDAtGnT9PsHBwcjLi4Oa9aswYABA0y+bwDYv38/Dh8+jFu3bkGhUAAAvvzyS2zcuBHr1q3DqFGjIJfL0aBBAzg4OBh1zhs3buDvv//GypUri2w7deoUwsPDkZubCycnJ/z2229o1KhRqedLT09HrVq1kJeXB5lMhm+//RZdu3Y1/WarGCZ2lawwsWONHRFR1dapUycsXLgQAHD//n18++236N69Ow4fPozAwECcOHECly5dgrOzs8Fxubm5uHz5Mrp164ahQ4ciKioKXbt2RZcuXRAdHQ2lUmlSHK6urujXrx9+/vlnDB06FCqVCuvXr8eCBQv0+yxYsAA///wzUlJSkJOTg/z8/DI7ZpTmxIkTyMzM1NdOFsrJycHly5cBALVq1cK5c+eMPufSpUvh6upabO/cBg0aICEhAenp6Vi3bh1iYmKwZ8+eUpM7Z2dnJCQkIDMzEzt27MC7776LunXromPHjkbHVBUxsatkyjqssSMiKlNmZsnbHp9V49atkveVPvbE0SPPt5WXo6MjQkND9e9//PFHuLi44IcffsCMGTOQmZmJVq1aYcWKFUWO9fLyAqCrWXvrrbewZcsWrFmzBpMmTcLWrVvRrl07k2IZMWIEunTpgkuXLmHXrl2QyWT6DgirV6/Ge++9hzlz5iA8PBzOzs744osvEB8fX+L5pFIphMdqMdXqh6M5ZGZmws/Pr9hmVldXV5NiB3TNpT///DNeeeUV2NraFtlua2urL+tWrVrhyJEjmD9/Pr777rtS76HwmObNmyMxMRGzZs1iYkeWpa+xY+cJIrI0mUzXTFn4uipzdBR/XxNJJBJIpVLk/PdcX8uWLfHrr7/C29u71Fq4Fi1aoEWLFvjwww/Rtm1brFq1Cu3atYOtrS00Go1R1+7UqROCg4OxePFi7Nq1C4MGDYLjf/d64MABtGvXDm+++aZ+/8JatZJ4eXkhNTVV/16lUiEpKUn/vmXLlkhLS4ONjQ2CgoKMirE0e/bswaVLlzBixAij9tdqtcjLyzPpGuYcUxWx80Qle/QZu8f/GiIiKhc7O92zZ5s3615ThcrLy0NaWhrS0tKQmJiIsWPHIjMzE7169QIADB48GJ6enujduzf27duHpKQk7N69G2+99RauXbuGpKQkjB8/HnFxcbhy5Qq2bduGy5cvo2HDhgB0PVOTkpKQkJCAO3fulJqUSCQSDB8+HAsXLkRcXJxBglSvXj0cPXoUW7duxYULFzBp0iQcOXKk1Hvr3Lkzli1bhn379uHUqVOIiYmB7JE/FiIjIxEeHo4+ffpg27ZtSE5OxsGDB/Hxxx/j6NGjAIDr16+jYcOGOHz4cJll+dNPP6FNmzZ44oknimwbP3489u7di+TkZJw6dQrjx4/H7t27MXjwYP0+r7/+OiZMmKB/P2vWLMTGxuLff/9FYmIi5syZg2XLluHll18uM5aqjjV2laywV2x+Zj7y0vNg58pfvkREVdGWLVvg5+cHQPc8V8OGDbF27Vp9U5+DgwP27t2LDz/8EP369UNGRgZq1aqFLl26QKlUIicnB+fOncPSpUtx9+5d+Pn54dVXX8Vrr70GAOjfvz82bNiATp064cGDB1i8eLG+c0Rxhg4diilTpqBx48Zo06aNfv1rr72G48ePY+DAgZBIJHjxxRfx5ptvljrI7/jx45GUlISePXvCxcUFn3zyiUGNnUQiwV9//YWPP/4Yw4YNw+3bt+Hr64sOHTrAx8cHgK7p9vz588guqWPLf9LT07F+/foSh2C5desWhgwZgtTUVLi4uKBp06bYunWrQUeIa9eu6TtxALrOLG+++SauXbsGe3t7NGzYEMuXLy+xZ3F1IhFYbQSVSgUXFxekp6eb/NCqsdRqNf766y/06NED/+f7f8i5l4PXT74OnyY+FXK96uTRspPL5WKHU2Ww3MzHsjOfKWWXm5uLpKQkBAcHw441jNBqtVCpVPpesWSc6lJupX0fTMlTqm4JVGEudVwAsAMFEVlYVpbuGTJHR04pRlRDMbETgX6QYnagICJLy84ueUw3Iqr2mNiJgLNPEBERUUVgYicClwA2xRIREZHlMbETQWGNHRM7IiIisiQmdiIo7DzBplgiIl2vRqKazlLfA45jJ4JHm2IFrQCJVCJyRERElc/W1hZSqRQ3btyAl5cXbG1tIZHU3N+HWq0W+fn5yM3NrdLDdlS2ql5ugiAgPz8ft2/fhlQqLXZKNVMwsROBcy1nQAJo8jXIup0FJx8nsUMioupAKgUiIh6+tnJSqRTBwcFITU3FjRs3xA5HdIIgICcnB/b29jU6wTVVdSk3BwcH1KlTp9zJKRM7EcjkMjj5OiEzNROqqyomdkRkGfb2QDGTslszW1tb1KlTBwUFBUbPi1pdqdVq7N27Fx06dODA2CaoDuUmk8lgY2NjkcSUiZ1IXAJckJmaifSr6fBv7S92OEREopFIJJDL5VX2P2VLkclkKCgogJ2dXY0vC1Ow3AxZf119NcXZJ4iIiMjSmNiJhLNPEJHFZWUBXl66hVOKEdVIbIoVCceyI6IKceeO2BEQkYhYYyeSwiFPOJYdERERWQoTO5Gwxo6IiIgsTdTEbu/evejVqxf8/f0hkUiwceNGg+2CIGDy5Mnw8/ODvb09IiMjcfHiRYN9goKCIJFIDJbPPvusEu/CPIU1dhk3MqAt4KjrREREVH6iJnZZWVlo1qwZFixYUOz22bNn46uvvsKiRYsQHx8PR0dHREVFITc312C/6dOnIzU1Vb+MHTu2MsIvFydfJ0jlUghaARmpGWKHQ0RERNWAqJ0nunfvju7duxe7TRAEzJs3DxMnTkTv3r0BAL/88gt8fHywceNGDBo0SL+vs7MzfH19KyVmS5FIJVDWUuJB8gOkp6Tra/CIiIiIzGW1z9glJSUhLS0NkZGR+nUuLi5o06YN4uLiDPb97LPP4OHhgRYtWuCLL75AQUFBZYdrFj5nR0QWJZUCrVvrliowpRgRWZ7VDneSlpYGAPDx8TFY7+Pjo98GAG+99RZatmwJd3d3HDx4EOPHj0dqairmzp1b4rnz8vKQl5enf69S6RIrtVoNtVptydvQKzzvo+d3ruUMALiffL/CrlsdFFd2VDaWm/mqbNnZ2AAHDz58L0L8VbbsrADLzjw1odxMuTerTeyM9e677+pfN23aFLa2tnjttdcwa9YsKBSKYo+ZNWsWpk2bVmT9tm3b4ODgUGGxAkBsbKz+9e382wCAk/tP4l7YvQq9bnXwaNmR8Vhu5mPZmY9lZz6WnXmqc7llZ2cbva/VJnaFz8zdvHkTfn5++vU3b95E8+bNSzyuTZs2KCgoQHJyMho0aFDsPuPHjzdICFUqFQICAtCtWzcolUrL3MBj1Go1YmNj0bVrV/1cdsdSjmHrhq1wl7mjR48eFXLd6qC4sqOysdzMx7IzH8vOfCw789SEcitsWTSG1SZ2wcHB8PX1xY4dO/SJnEqlQnx8PN54440Sj0tISIBUKoW3t3eJ+ygUimJr8ypjEupHr+EW5AYAyLiWUW0/jJbEScLNw3IzX5Uru+xsoFEj3euzZ4EKboEoTZUrOyvCsjNPdS43U+5L1MQuMzMTly5d0r9PSkpCQkIC3N3dUadOHYwbNw4zZsxAvXr1EBwcjEmTJsHf3x99+vQBAMTFxSE+Ph6dOnWCs7Mz4uLi8M477+Dll1+Gm5ubSHdlPM4+QUQWJQjAlSsPXxNRjSNqYnf06FF06tRJ/76weTQmJgZLlizBBx98gKysLIwaNQoPHjxA+/btsWXLFtjZ2QHQ1bytXr0aU6dORV5eHoKDg/HOO+8YNLNas8Jesdm3s1GQWwAbO6utQCUiIqIqQNRMomPHjhBK+atSIpFg+vTpmD59erHbW7ZsiUOHDlVUeBXO3t0eNvY2KMgpgOqaCu6h7mKHRERERFUYBzoSkUQigUsdNscSERGRZTCxE5n+ObsUJnZERERUPkzsRMbZJ4iIiMhS+LS+yAoTOzbFElG5SSQPhzuRSMSNhYhEwcROZIVNsayxI6Jyc3AAzpwROwoiEhGbYkVW2HmCiR0RERGVFxM7kembYtl5goiIiMqJiZ3ICpti81R5yFPliRwNEVVp2dlA48a6xYRJw4mo+mBiJzJbJ1vYuepm0mAHCiIqF0HQzRF79iynFCOqoZjYWQEOeUJERESWwMTOCnD2CSIiIrIEJnZWgB0oiIiIyBKY2FkBjmVHRERElsDEzgrwGTsiIiKyBM48YQUKa+z4jB0RlYtEAgQGPnxNRDUOEzsr8GiNnSAIkPAXMhGZw8EBSE4WOwoiEhGbYq2AsrYusSvILUD2HQ4qSkREROZhYmcFbBQ2cPRxBMDn7IiIiMh8TOysBJ+zI6Jyy8kBnnxSt+TkiB0NEYmAiZ2VYM9YIio3rRY4elS3aLViR0NEImBiZyX0gxSzxo6IiIjMxMTOShROK6ZKYY0dERERmYeJnZXgM3ZERERUXkzsrASfsSMiIqLyYmJnJfTzxV5XQavhQ89ERERkOiZ2VsLJzwkSmQSCRkBmWqbY4RBRVeXpqVuIqEZiYmclpDIplLX+6xmbwufsiMgMjo7A7du6xdFR7GiISARM7KwIn7MjIiKi8mBiZ0XYM5aIiIjKg4mdFWGNHRGVS04O0LGjbuGUYkQ1ko3YAdBDTOyIqFy0WmDPnoeviajGYY2dFSmcfYKdJ4iIiMgcTOysCJ+xIyIiovJgYmdFCptis25moSCvQORoiIiIqKphYmdFHDwdYGOne+wx43qGyNEQERFRVcPEzopIJBIoa/83SDGbY4mIiMhETOysDDtQEFG5ODjoFiKqkURN7Pbu3YtevXrB398fEokEGzduNNguCAImT54MPz8/2NvbIzIyEhcvXjTY5969exg8eDCUSiVcXV0xYsQIZGZW3blWOeQJEZnN0RHIytItnFKMqEYSNbHLyspCs2bNsGDBgmK3z549G1999RUWLVqE+Ph4ODo6IioqCrm5ufp9Bg8ejDNnziA2NhZ//vkn9u7di1GjRlXWLVhcYWLHplgiIiIylagDFHfv3h3du3cvdpsgCJg3bx4mTpyI3r17AwB++eUX+Pj4YOPGjRg0aBASExOxZcsWHDlyBK1btwYAfP311+jRowe+/PJL+Pv7V9q9WErhkCessSMiIiJTWe0zdklJSUhLS0NkZKR+nYuLC9q0aYO4uDgAQFxcHFxdXfVJHQBERkZCKpUiPj6+0mO2BDbFEpHZcnOBZ5/VLY+0bBBRzWG1U4qlpaUBAHx8fAzW+/j46LelpaXB29vbYLuNjQ3c3d31+xQnLy8PeXl5+vcqlS6JUqvVUKvVFon/cYXnLev8Dr66h57Tr6ZXWCxVjbFlR4ZYbuarsmWXmwv5X38BANS5uYBMVukhVNmyswIsO/PUhHIz5d6sNrGrSLNmzcK0adOKrN+2bRscKrg3WWxsbKnbNdkaAEDu/Vz8sf4PyOwr/xeztSqr7Kh4LDfzVbWyk+Xmoud/r7du3QqNnZ1osVS1srMmLDvzVOdyy87ONnpfq03sfH19AQA3b96En5+ffv3NmzfRvHlz/T63bt0yOK6goAD37t3TH1+c8ePH491339W/V6lUCAgIQLdu3aBUKi14Fw+p1WrExsaia9eukMvlpe574fULyFPlIbxRODzDPCsknqrElLKjh1hu5quyZZeVpX8ZFRUlSs/YKlt2VoBlZ56aUG6FLYvGsNrELjg4GL6+vtixY4c+kVOpVIiPj8cbb7wBAAgPD8eDBw9w7NgxtGrVCgCwc+dOaLVatGnTpsRzKxQKKBSKIuvlcnmFfyiMuYYyQInbZ24jOy0b8qbV80Nqjsr4+VRHLDfzVbmyeyRWuVxu8L7yQ6liZWdFWHbmqc7lZsp9iZrYZWZm4tKlS/r3SUlJSEhIgLu7O+rUqYNx48ZhxowZqFevHoKDgzFp0iT4+/ujT58+AICwsDBER0dj5MiRWLRoEdRqNcaMGYNBgwZVyR6xhVwCXHD7zG0OeUJEREQmETWxO3r0KDp16qR/X9g8GhMTgyVLluCDDz5AVlYWRo0ahQcPHqB9+/bYsmUL7B55bmTFihUYM2YMunTpAqlUiv79++Orr76q9HuxJPaMJSIiInOImth17NgRgiCUuF0ikWD69OmYPn16ifu4u7tj5cqVFRGeaDitGBEREZnD5HHspk+fXmzvjJycnFITMDIea+yIyCyOjoAg6BZOKUZUI5mc2E2bNq3YuVizs7OLHUKETFc4+wSfsSMiIiJTmJzYCYIAiURSZP2JEyfg7u5ukaBqukdr7EprqiYiIiJ6lNHP2Lm5uUEikUAikaB+/foGyZ1Go0FmZiZef/31CgmyplHW1iV26mw1cu/nwt7dXuSIiKhKyM0FXnlF93rZMkDEAYqJSBxGJ3bz5s2DIAgYPnw4pk2bBhcXF/02W1tbBAUFITw8vEKCrGnk9nI4eDkg+3Y20lPSmdgRkXE0GmDdOt3rJUtEDYWIxGF0YhcTEwNAN3Dw008/DRsbqx3buFpwCXDRJXZX0+HbvORZNIiIiIgKmfyMXUREBK5cuYKJEyfixRdf1E/p9ffff+PMmTMWD7CmYs9YIiIiMpXJid2ePXvQpEkTxMfHY8OGDfoesidOnMCUKVMsHmBNVZjYsWcsERERGcvkxO6jjz7CjBkzEBsbC1tbW/36zp0749ChQxYNriYrHPKENXZERERkLJMTu1OnTqFv375F1nt7e+POnTsWCYo4+wQRERGZzuTEztXVFampqUXWHz9+HLVq1bJIUMRn7IiIiMh0Jid2gwYNwocffoi0tDRIJBJotVocOHAA7733HoYMGVIRMdZI+qbY6yoIWg5STERGcHAAMjN1i4OD2NEQkQhMTuw+/fRTNGzYEAEBAcjMzESjRo3QoUMHtGvXDhMnTqyIGGskZ39nSKQSaNVaZN4sOoUbEVEREolujlhHR91rIqpxTB6MztbWFj/88AMmT56MU6dOITMzEy1atEC9evUqIr4aS2ojhZOfEzKuZ0B1VQVnP2exQyIiIiIrZ/YowwEBAQgICEBBQQFyc3MtGRP9x6WOCzKuZyA9JR21nuLzi0RUhrw84LXXdK+/+w5QKMSNh4gqndFNsX/88QeWPDZFzcyZM+Hk5ARXV1d069YN9+/ft3R8NVrhc3Ycy46IjFJQACxdqlsKCsSOhohEYHRiN3fuXGRlZenfHzx4EJMnT8akSZOwZs0aXL16FZ988kmFBFlTsWcsERERmcLoxO7MmTNo166d/v26devQtWtXfPzxx+jXrx/mzJmDP/74o0KCrKmY2BEREZEpjE7sMjIy4OHhoX+/f/9+dOnSRf++cePGuHHjhmWjq+HYFEtERESmMDqxq1WrFhITEwEAmZmZOHHihEEN3t27d+HAcZMsirNPEBERkSmMTuxeeOEFjBs3DsuWLcPIkSPh6+uLtm3b6rcfPXoUDRo0qJAga6rCptjMtExo8jUiR0NERETWzujhTiZPnozr16/jrbfegq+vL5YvXw6ZTKbfvmrVKvTq1atCgqypHL0cIbOVQZOvQcaNDLgGuYodEhEREVkxoxM7e3t7/PLLLyVu37Vrl0UCoockUgmUtZW4/+99pF9NZ2JHRKVzcABu3Xr4mohqHJOnFKPKxZ6xRGQ0iQTw8tItnFKMqEZiYmfl9D1j2YGCiIiIysDEzsop6+hq7DjkCRGVKS8PGD1at+TliR0NEYmAiZ2VK6yxY1MsEZWpoAD49lvdwinFiGokkxO7q1evVkQcVAI+Y0dERETGMjmxCwoKQkREBH744Qfcv3+/ImKiR3D2CSIiIjKWyYnd0aNH8dRTT2H69Onw8/NDnz59sG7dOuTxeY4KUVhjl3M3B+pstcjREBERkTUzObFr0aIFvvjiC6SkpODvv/+Gl5cXRo0aBR8fHwwfPrwiYqzR7FztYOtkC4C1dkRERFQ6sztPSCQSdOrUCT/88AO2b9+O4OBgLF261JKxEXTl7FzbGQBwYukJJO9OhlajFTkqIiIiskZmJ3bXrl3D7Nmz0bx5czz11FNwcnLCggULLBkbAUjckIgHSQ8AAPtn7cfSTksxP2g+EjckihsYERERWR2jpxQr9N1332HlypU4cOAAGjZsiMGDB+P3339HYGBgRcRXoyVuSMSa59cAguF61XUV1jy/BgPWDUBYvzBxgiMi62NvDyQlPXxNRDWOyYndjBkz8OKLL+Krr75Cs2bNKiImAqDVaLHl7S1FkjoAunUSYMu4LWjQuwGkMg5HSEQApFIgKEjsKIhIRCYndikpKZBwDsIKl7IvBaprpYxdJ+jGtkvZl4KgjkGVFhcRERFZL5OreiQSCfbt24eXX34Z4eHhuH79OgBg2bJl2L9/v8UDrKkyUjMsuh8R1QD5+cD77+uW/HyxoyEiEZic2K1fvx5RUVGwt7fH8ePH9ePXpaen49NPP7V4gBkZGRg3bhwCAwNhb2+Pdu3a4ciRI/rtQ4cOhUQiMViio6MtHkdlc/Zztuh+RFQDqNXAl1/qFjXHvSSqiUxO7GbMmIFFixbhhx9+gFwu169/+umn8c8//1g0OAB49dVXERsbi2XLluHUqVPo1q0bIiMj9TWFABAdHY3U1FT9smrVKovHUdnqPFMHytpKoKRWb4lu8OI6z9Sp1LiIiIjIepmc2J0/fx4dOnQost7FxQUPHjywREx6OTk5WL9+PWbPno0OHTogNDQUU6dORWhoKBYuXKjfT6FQwNfXV7+4ublZNA4xSGVSRM//r+bx8eTuv/fR86LZcYKIiIj0TO484evri0uXLiHosZ5X+/fvR926dS0VFwCgoKAAGo0GdnZ2Buvt7e0NnufbvXs3vL294ebmhs6dO2PGjBnw8PAo8bx5eXkGU6CpVLpOCmq1GuoKar4oPK8p5w/tFYp+q/sh9t1YZFx/+CydspYSkXMiEdortMLitSbmlB2x3MqjypadWg25/qValObYKlt2VoBlZ56aUG6m3JtEEITiBtQo0axZs7B8+XL8/PPP6Nq1K/766y9cuXIF77zzDiZNmoSxY8eaHHBp2rVrB1tbW6xcuRI+Pj5YtWoVYmJiEBoaivPnz2P16tVwcHBAcHAwLl++jAkTJsDJyQlxcXGQyWTFnnPq1KmYNm1akfUrV66Eg4ODReO3BEEj4M6WO7j+w3VInaRosrQJJDL2TCYiQ7LcXPQcNAgA8Ofq1dA89kcxEVVN2dnZeOmll5Ceng6lUlnqviYndoIg4NNPP8WsWbOQnZ0NQNcU+t577+GTTz4xP+oSXL58GcOHD8fevXshk8nQsmVL1K9fH8eOHUNiYtHZF/7991+EhIRg+/bt6NKlS7HnLK7GLiAgAHfu3CmzwMylVqsRGxuLrl27GjybaPTx2Wp86f4lBK2Asclj4exfczpNlLfsaiqWm/mqbNllZUH+36Mo6vv3AUfHSg+hypadFWDZmacmlJtKpYKnp6dRiZ3JTbESiQQff/wx3n//fVy6dAmZmZlo1KgRnJyczA64NCEhIdizZw+ysrKgUqng5+eHgQMHltjsW7duXXh6euLSpUslJnYKhQIKhaLIerlcXuEfCnOvIXeRwzPME7fP3Mbtk7fhHuheAdFZt8r4+VRHLDfzVbmyeyRWuVxu8L7yQ6liZWdFWHbmqc7lZsp9mfXkvSAIUKlU8PHx0c8TW9EcHR3h5+eH+/fvY+vWrejdu3ex+127dg13796Fn59fhcdU2fxb+QMAUo+lihwJEVkle3vg9GndwinFiGokkxK7tLQ0DBkyBG5ubvDx8dF3WBg+fDhu3rxZIQFu3boVW7ZsQVJSEmJjY9GpUyc0bNgQw4YNQ2ZmJt5//30cOnQIycnJ2LFjB3r37o3Q0FBERUVVSDxi8mulS1ZvHL0hciREZJWkUqBxY90iZY95oprI6KZYlUqFdu3aITMzE8OGDUPDhg0hCALOnj2LVatWYf/+/fjnn38sXnuXnp6O8ePH49q1a3B3d0f//v0xc+ZMyOVyFBQU4OTJk1i6dCkePHgAf39/dOvWDZ988kmxTa1VnX9r1tgRERFRyYxO7ObPnw+ZTIYzZ87Ay8vLYNvEiRPx9NNP46uvvsKECRMsGuCAAQMwYMCAYrfZ29tj69atFr2eNfNt7guJVILMtExk3MioUR0oiMgI+flA4QxAEyYAtrbixkNElc7ouvrNmzdjwoQJRZI6APD29sb48ePxxx9/WDQ4MiR30HWgAIAbx9gcS0SPUauBadN0SzUe04uISmZ0YnfhwgW0a9euxO3t2rXD+fPnLRIUlYwdKIiIiKgkRid2KpUKrq6uJW53dXXVz+BAFaewAwUTOyIiInqc0YmdIAiQltLLSiKRwMSxjskM7BlLREREJTG684QgCKhfvz4kkuKnsmJSVznYgYKIiIhKYnRit3jx4oqMg4xk62irn4HixrEbaODfQOyQiIiIyEoYndjFxMRUZBxkAv9W/rh95jZSj6WiQS8mdkRERKTDocmrIHagIKJi2dkBhw/rFjs7saMhIhEYXWNH1kPfgYJj2RHRo2Qy4MknxY6CiETEGrsqSN+BIlXXgYKIiIgIMDKx4/h01sXW0RaeDTkDBRE9Jj8f+OIL3ZKfL3Y0RCQCoxI7Nzc33Lp1CwDQuXNnPHjwoCJjIiPwOTsiKkKtBj74QLdwSjGiGsmoxM7JyQl3794FAOzevRtq/sIQnX9rTi1GREREhozqPBEZGYlOnTohLCwMANC3b1/Y2toWu+/OnTstFx2ViB0oiIiI6HFGJXbLly/H0qVLcfnyZezZsweNGzeGg4NDRcdGpTDoQJGaAWc/zkBBRERU0xmV2Nnb2+P1118HABw9ehSff/45XF1dKzIuKkNhB4rbZ3UDFTv3ZGJHRERU05k83MmuXbv0SZ0gCJwjVkT65tijbI4lIiIiM8ex++WXX9CkSRPY29vD3t4eTZs2xbJlyywdG5WBPWOJiIjoUSbPPDF37lxMmjQJY8aMwdNPPw0A2L9/P15//XXcuXMH77zzjsWDpOIV9oxlBwoiAqCbRmzXroeviajGMTmx+/rrr7Fw4UIMGTJEv+65555D48aNMXXqVCZ2lYgdKIjIgEwGdOwodhREJCKTm2JTU1PRrl27IuvbtWuH1FQ2CVamR2egYHMsERERmZzYhYaGYs2aNUXW//rrr6hXr55FgiLjcTw7ItJTq4EFC3QLB5InqpFMboqdNm0aBg4ciL179+qfsTtw4AB27NhRbMJHFcuvlR9OLjvJGjsi0s0PO2aM7vXQoYBcLmo4RFT5TK6x69+/P+Lj4+Hp6YmNGzdi48aN8PT0xOHDh9G3b9+KiJFK4d/qvw4UHPKEiIioxjO5xg4AWrVqheXLl1s6FjKDb3NfQAJ2oCAiIiLzxrEj62HrZAuvMC8A7EBBRERU0zGxqwbYgYKIiIgAJnbVAmegICIiIoCJXbVQ2IGCiR0REVHNZnJit3jxYmRnZ1dELGSmwg4UGTcykJGaIXY4RCQWhQL480/dolCIHQ0RicDkxO6jjz6Cr68vRowYgYMHD1ZETGQiWyfOQEFEAGxsgGef1S02Zg16QERVnMmJ3fXr17F06VLcuXMHHTt2RMOGDfH5558jLS2tIuIjI+nHs2MHCiIiohrL5MTOxsYGffv2xe+//46rV69i5MiRWLFiBerUqYPnnnsOv//+O7RabUXESqXwa80OFEQ1nloNLFmiWzilGFGNVK7OEz4+Pmjfvj3Cw8MhlUpx6tQpxMTEICQkBLt377ZQiGQMdqAgIuTnA8OG6Zb8fLGjISIRmJXY3bx5E19++SUaN26Mjh07QqVS4c8//0RSUhKuX7+OAQMGICYmxtKxUike7UCRmZYpdjhEREQkApMTu169eiEgIABLlizByJEjcf36daxatQqRkZEAAEdHR/zvf//D1atXLR4slezRDhR8zo6IiKhmMjmx8/b2xp49e3D69GmMGzcO7u7uRfbx8vJCUlKSRQLMyMjAuHHjEBgYCHt7e7Rr1w5HjhzRbxcEAZMnT4afnx/s7e0RGRmJixcvWuTaVY2+A8VRJnZEREQ1kcmJXUREBFq2bFlkfX5+Pn755RcAgEQiQWBgYPmjA/Dqq68iNjYWy5Ytw6lTp9CtWzdERkbi+vXrAIDZs2fjq6++wqJFixAfHw9HR0dERUUhNzfXItevSjgDBRERUc1mcmI3bNgwpKenF1mfkZGBYcOGWSSoQjk5OVi/fj1mz56NDh06IDQ0FFOnTkVoaCgWLlwIQRAwb948TJw4Eb1790bTpk3xyy+/4MaNG9i4caNFY6kK/FuzAwUREVFNZnJiJwgCJBJJkfXXrl2Di4uLRYIqVFBQAI1GAzs7O4P19vb22L9/P5KSkpCWlqZ/vg8AXFxc0KZNG8TFxVk0lqqAHSiIiIhqNqOHJm/RogUkEgkkEgm6dOkCm0dGNddoNEhKSkJ0dLRFg3N2dkZ4eDg++eQThIWFwcfHB6tWrUJcXBxCQ0P1gyL7+PgYHOfj41PqgMl5eXnIy8vTv1epVAAAtVoNdQWN/VR43oo6PwBIFBJ4NPDA3XN3cTX+KkJ7hFbYtSpTZZRddcRyM1+VLTupFJKVKwEAglQqylh2VbbsrADLzjw1odxMuTejE7s+ffoAABISEhAVFQUnJyf9NltbWwQFBaF///7GR2mkZcuWYfjw4ahVqxZkMhlatmyJF198EceOHTP7nLNmzcK0adOKrN+2bRscHBzKE26ZYmNjK/T8Wh8tcA7Y++teXMCFCr1WZavosquuWG7mq5JlV/g7bNs2UcOokmVnJVh25qnO5ZadnW30vkYndlOmTAEABAUFYeDAgUWaRytKSEgI9uzZg6ysLKhUKvj5+WHgwIGoW7cufH19AejG1fPz89Mfc/PmTTRv3rzEc44fPx7vvvuu/r1KpUJAQAC6desGpVJZIfehVqsRGxuLrl27Qi6XV8g1AODwpcPYvmc7nDOc0aNHjwq7TmWqrLKrblhu5mPZmY9lZz6WnXlqQrkVtiwaw+RZosUaeNjR0RGOjo64f/8+tm7ditmzZyM4OBi+vr7YsWOHPpFTqVSIj4/HG2+8UeK5FAoFFApFkfVyubzCPxQVfY3aT9UGAKT9k1btPuCV8fOpjlhu5qtyZVdQAPz2m+51376Ajcm/4i2mypWdFWHZmac6l5sp92XUt97d3R0XLlyAp6cn3Nzciu08UejevXtGX9wYW7duhSAIaNCgAS5duoT3338fDRs2xLBhwyCRSDBu3DjMmDED9erVQ3BwMCZNmgR/f39903FN49fCz6ADhZOvU9kHEVH1kJcHDBige52ZKWpiR0TiMOpb/3//939wdnbWvy4tsbO09PR0jB8/HteuXYO7uzv69++PmTNn6rPXDz74AFlZWRg1ahQePHiA9u3bY8uWLZXWVGxtCmeguJN4BzeO3UD9Z+uLHRIRERFVEqMSu0ebX4cOHVpRsRRrwIABGFD4F2gxJBIJpk+fjunTp1diVNbNv5U/7iTeQeqxVCZ2RERENYjJ49gtWbKk2PUFBQUYP358eeMhC+AMFERERDWTyYndW2+9hRdeeAH379/Xrzt//jzatGmDVatWWTQ4Mk9hYnfjGOeMJSIiqklMTuyOHz+Oa9euoUmTJoiNjcWCBQvQsmVLNGzYECdOnKiIGMlE+g4U1zkDBRERUU1icpepkJAQHDhwAOPGjUN0dDRkMhmWLl2KF198sSLiIzPYOtnCs4En7pxjBwoiIqKaxOQaOwDYvHkzVq9ejfDwcLi6uuKnn37CjRts9rMmfM6OqAaytQUWL9YttrZiR0NEIjA5sXvttdfwwgsv4MMPP8S+fftw8uRJ2NraokmTJlizZk1FxEhm8G/tD4CJHVGNIpcDQ4fqlmo6UCsRlc7kptgDBw4gPj4ezZo1AwD4+vrir7/+woIFCzB8+PBShyahysMOFERERDWPyYndsWPHip2Oa/To0YiMjLRIUFR+Bh0obmbCyYczUBBVewUFwNatutdRUZx5gqgGMrkpVqFQ4PLly5g4cSJefPFF3Lp1CwDw999/o6CgwOIBknkKO1AAbI4lqjHy8oCePXVLXp7Y0RCRCExO7Pbs2YMmTZogPj4eGzZsQGambjiNEydOYMqUKRYPkMynb449yuZYIiKimsDkxO6jjz7CjBkzEBsbC9tHel117twZhw4dsmhwVD7sGUtERFSzmJzYnTp1Cn379i2y3tvbG3fu3LFIUGQZ/q10PWPZgYKIiKhmMDmxc3V1RWpq0Rqg48ePo1atWhYJiizDt4WvQQcKIiIiqt5MTuwGDRqEDz/8EGlpaZBIJNBqtThw4ADee+89DBkypCJiJDMpnBXsQEFERFSDmJzYffrpp2jYsCECAgKQmZmJRo0aoUOHDmjXrh0mTpxYETFSOXA8OyIioprD5EGObG1t8cMPP2DSpEk4ffo0MjMz0aJFC9SrV68i4qNy8m3hi1MrTuH8xvMIfCYQdZ6pA6nMrJnkiMja2doC33zz8DUR1Thmj15Zp04d1KlTx5KxkIUlbkjEgc8PAABS/0nF0k5LoaytRPT8aIT1CxM5OiKyOLkcGD1a7CiISERGJXbvvvuu0SecO3eu2cGQ5SRuSMSa59cAguF61XUV1jy/BgPWDWByR0REVM0YldgdP37cqJNJJJJyBUOWodVoseXtLUWSOgC6dRJgy7gtaNC7AZtliaoTjQbYt0/3+plnAJlM3HiIqNIZldjt2rWrouMgC0rZlwLVNVXJOwiA6qoKKftSENQxqNLiIqIKlpsLdOqke52ZCTg6ihsPEVW6clXXXL16FVevXrVULGQhGakZFt2PiIiIqgaTE7uCggJMmjQJLi4uCAoKQlBQEFxcXDBx4kSo1eqKiJFM5OznbNH9iIiIqGowuVfs2LFjsWHDBsyePRvh4eEAgLi4OEydOhV3797FwoULLR4kmabOM3WgrK2E6rqq+OfsJICythJ1nmGvZiIiourE5MRu5cqVWL16Nbp3765f17RpUwQEBODFF19kYmcFpDIpoudH63rFSlA0uROA6HnR7DhBRERUzZj8P7tCoUBQUFCR9cHBwbDlgJhWI6xfGAasGwBlLWWRbX6t/DjUCRERUTVkco3dmDFj8Mknn2Dx4sVQKBQAgLy8PMycORNjxoyxeIBkvrB+YWjQuwFS9qUgIzUD2gItNg7ZiNRjqbh78S486nmIHSIRERFZkMmJ3fHjx7Fjxw7Url0bzZo1AwCcOHEC+fn56NKlC/r166ffd8OGDZaLlMwilUkNhjQ58+sZXNx8EfFfxaPH1z3EC4yILE8uB2bPfviaiGockxM7V1dX9O/f32BdQECAxQKiitXm7Ta4uPkiEhYnoPMnnWHnaid2SERkKba2wPvvix0FEYnIpMROEARMmzYNXl5esLe3r6iYqALVjawLr0ZeuH32No7/fBzh74aLHRIRERFZiEmdJwRBQGhoKK5du1ZR8VAFk0gkaDOuDQDg8NeHodVoRY6IiCxGowGOHNEtGo3Y0RCRCExK7KRSKerVq4e7d+9WVDxUCZoObgp7d3s8SH6A85vOix0OEVlKbi7w1FO6JTdX7GiISAQmD3fy2Wef4f3338fp06crIh6qBHIHOVq91goAED8vXuRoiIiIyFJMTuyGDBmCw4cPo1mzZrC3t4e7u7vBQlXDk28+CamNFFf2XkHq8VSxwyEiIiILMLlX7Lx58yogDKpsytpKNHq+EU6vPo34+fHos6SP2CERERFROZmc2MXExFREHCSCNuPa4PTq0zi96jQiP4+Ek4+T2CERERFROZg1Wejly5cxceJEvPjii7h16xYA4O+//8aZM2csGhxVrNptaqNWm1rQ5GtwdNFRscMhIiKicjI5sduzZw+aNGmC+Ph4bNiwAZmZmQB0s09MmTLF4gFSxWo7ri0A4OjCoyjIKxA5GiIiIioPkxO7jz76CDNmzEBsbCxsbW316zt37oxDhw5ZNDiNRoNJkyYhODgY9vb2CAkJwSeffAJBEPT7DB06FBKJxGCJjo62aBzVWVj/MDjXckbWzSyc+ZU1rkRVmlwOTJmiWzilGFGNZPIzdqdOncLKlSuLrPf29sadO3csElShzz//HAsXLsTSpUvRuHFjHD16FMOGDYOLiwveeust/X7R0dFYvHix/r1CobBoHNWZTC7Dk6OfxM4JO3Fo3iE0faUpJBKJ2GERkTlsbYGpU8WOgohEZHKNnaurK1JTiw6Pcfz4cdSqVcsiQRU6ePAgevfujWeffRZBQUF4/vnn0a1bNxw+fNhgP4VCAV9fX/3i5uZm0Tiqu1ajWsHGzgZpx9OQsj9F7HCIiIjITCbX2A0aNAgffvgh1q5dC4lEAq1WiwMHDuC9997DkCFDLBpcu3bt8P333+PChQuoX78+Tpw4gf3792Pu3LkG++3evRve3t5wc3ND586dMWPGDHh4eJR43ry8POTl5enfq1QqAIBarYZarbboPRQqPG9Fnb885Eo5nnj5CST8mIC4uXHwb+svdkgGrLnsrBnLzXxVtuy0WiAxUfc6LAyQmtU/rlyqbNlZAZadeWpCuZlybxLh0QfWjJCfn4/Ro0djyZIl0Gg0sLGxgUajwUsvvYQlS5ZAJpOZHHBJtFotJkyYgNmzZ0Mmk0Gj0WDmzJkYP368fp/Vq1fDwcEBwcHBuHz5MiZMmAAnJyfExcWVGMvUqVMxbdq0IutXrlwJBwcHi8VfleSk5OD8W+cBKRC2MAwKHzZnE1U1stxc9Bw0CADw5+rV0NjZiRwREVlCdnY2XnrpJaSnp0OpVJa6r8mJXaGrV6/i1KlTyMzMRIsWLVCvXj2zgi3N6tWr8f777+OLL75A48aNkZCQgHHjxmHu3Lkljqf377//IiQkBNu3b0eXLl2K3ae4GruAgADcuXOnzAIzl1qtRmxsLLp27Qq5lT7UvKrHKiRtT0Kbd9qgy+fFl50YqkLZWSOWm/mqbNllZUH+36Mo6vv3AUfHSg+hypadFWDZmacmlJtKpYKnp6dRiZ3RTbFarRZffPEFNm3ahPz8fHTp0gVTpkyBvb19uQMuyfvvv4+PPvoIg/77C7RJkya4cuUKZs2aVWJiV7duXXh6euLSpUslJnYKhaLYDhZyubzCPxSVcQ1ztR3XFknbk5DwcwI6T+8MWyfbsg+qRNZcdtaM5Wa+Kld2j8Qql8tF7Rlb5crOirDszFOdy82U+zL6AYyZM2fqmzlr1aqF+fPnY/To0WYFaKzs7GxIH3tGRCaTQavVlnjMtWvXcPfuXfj5+VVobNVRve714F7PHXnpeUhYmiB2OERERGQioxO7X375Bd9++y22bt2KjRs34o8//sCKFStKTbLKq1evXpg5cyY2b96M5ORk/Pbbb5g7dy769u0LAMjMzMT777+PQ4cOITk5GTt27EDv3r0RGhqKqKioCourupJIJWjzdhsAQPz8eAhas1rpiYiISCRGJ3YpKSno0aOH/n1kZCQkEglu3LhRIYEBwNdff43nn38eb775JsLCwvDee+/htddewyeffAJAV3t38uRJPPfcc6hfvz5GjBiBVq1aYd++fRzLzkzNY5pD4aLAvYv3cGnLJbHDISIiIhMY/YxdQUEB7B7rYSWXyyu0e7GzszPmzZuHefPmFbvd3t4eW7durbDr10S2TrZo+WpLxM2Jw6F5h1Cvh+U7xRAREVHFMDqxEwQBQ4cONagJy83Nxeuvvw7HR3pebdiwwbIRUqV7asxTOPR/h/Bv7L+4deYWvBt7ix0SERlDLgfee+/hayKqcYxO7Irrhfryyy9bNBiyDq5BrmjYpyESNyQi/qt49Pqul9ghEZExbG2BL74QOwoiEpHRid2jc7FS9ddmXBskbkjEyV9OosunXeDgUTMHbiYiIqpKKn++GaoS6rSvA98WvijILcCO8TtwatUpJO9OhlZTcb2giaictFogOVm3VOCIBURkvUyeK5ZqBolEgjrt6yDteBr++eEf/PPDPwAAZW0loudHI6xfmMgRElEROTlAcLDudWamKDNPEJG4WGNHxUrckIjD3xwusl51XYU1z69B4oZEEaIiIiKi0jCxoyK0Gi22vL0FKG584v/WbRm3hc2yREREVoaJHRWRsi8FqmuqkncQANVVFVL2pVReUERERFQmJnZUREZqhkX3IyIiosrBxI6KcPZztuh+REREVDmY2FERdZ6pA2VtJSApYQcJoAxQos4zdSo1LiIiIiodEzsqQiqTInp+tO5NccmdAETPi4ZUxo8PkVWxsQHefFO32HA0K6KaiP8zU7HC+oVhwLoBUNZSFtkmU8hQO7y2CFERUakUCmDBAt3yyLzeRFRz8E86KlFYvzA06N0AKftSkJGaASdfJ+wYvwPX469j16RdeO7H58QOkYiIiB7BGjsqlVQmRVDHIDR5sQmCOwUjep6uifb4z8eRdiJN5OiIyIAgALdv6xahuIEoiai6Y2JHJqndtjYaD2wMCMC2d7dB4H8eRNYjOxvw9tYt2dliR0NEImBiRyaL/CwSMoUMSTuTcHHzRbHDISIiov8wsSOTuQa5ou24tgCAbe9tg0atETkiIiIiApjYkZnaj28PBy8H3D1/F8e+OyZ2OERERAQmdmQmOxc7dJreCQCwe+pu5NzPETkiIiIiYmJHZmv5akt4NfJCzt0c7Ju5T+xwiIiIajwmdmQ2qY0U3eZ0AwDEfxWPe5fviRwRERFRzcbEjsolNDoUIVEh0Kq12P7hdrHDIarZbGyAmBjdwinFiGokJnZUbt2+7AaJVILE9Ym4su+K2OEQ1VwKBbBkiW7hlGJENRITOyo37ye80XJkSwD/DVqs5aDFREREYmBiRxbRcVpH2Drb4sbRGzi18pTY4RDVTIIAZGXpFs4KQ1QjMbEji3DyccIzE54BAOwYvwPqbLXIERHVQNnZgJOTbuGUYkQ1EhM7spi249rCJdAFqmsqxP1fnNjhEBER1ThM7MhibOxsEPlZJABg/6z9yEzLFDkiIiKimoWJHVlU44GNUbttbaiz1Ng5aafY4RAREdUoTOzIoiQSCbrN1Q1afPyn40g7kSZyRERERDUHEzuyuIDwADQe2BgQgK3vbkXSriScWnUKybuTodVoxQ6PiIio2uLQ5FQhIj+LROL6RCTvTEbyzmT9emVtJaLnRyOsX5h4wREREVVTrLGjCpH6Tyq0BUVr51TXVVjz/BokbkgUISqiak4mA55/XrfIZGJHQ0QiYI0dWZxWo8WWt7cUv1EAIAG2jNuCBr0bQCrj3xZEFmNnB6xdK3YURCQi/q9KFpeyLwWqa6qSdxAA1VUVUvalVF5QRERENYBVJ3YajQaTJk1CcHAw7O3tERISgk8++QTCI1PlCIKAyZMnw8/PD/b29oiMjMTFixdFjJoyUjMsuh8REREZx6oTu88//xwLFy7EN998g8TERHz++eeYPXs2vv76a/0+s2fPxldffYVFixYhPj4ejo6OiIqKQm5uroiR12zOfs4W3Y+IjJSVBUgkuiUrS+xoiEgEVv2M3cGDB9G7d288++yzAICgoCCsWrUKhw8fBqCrrZs3bx4mTpyI3r17AwB++eUX+Pj4YOPGjRg0aJBosddkdZ6pA2VtJVTXVbpn6orh5OuEOs/UqdzAiIiIqjmrrrFr164dduzYgQsXLgAATpw4gf3796N79+4AgKSkJKSlpSEyMlJ/jIuLC9q0aYO4OM5VKhapTIro+dG6N5Li9ynIL8CD5AeVFhMREVFNYNU1dh999BFUKhUaNmwImUwGjUaDmTNnYvDgwQCAtDTdrAY+Pj4Gx/n4+Oi3FScvLw95eXn69yqV7kF/tVoNtVpt6dvQn/vRf6u70F6h6Le6H2LfjUXG9YfP0jn5O0EikSDjegaWdl6KV3a8ApdAl1LPVdPKzlJYbuarsmWnVkOuf6kGRIi/ypadFWDZmacmlJsp92bVid2aNWuwYsUKrFy5Eo0bN0ZCQgLGjRsHf39/xMTEmH3eWbNmYdq0aUXWb9u2DQ4ODuUJuUyxsbEVen6rogDqflUXmWczUXC/ADZuNnBq5IQCVQEufXwJqhQVfmj/A0JnhsLW07bM09WosrMglpv5qlrZyXJz0fO/11u3boXGzk60WKpa2VkTlp15qnO5ZWdnG72vRHi0i6mVCQgIwEcffYTRo0fr182YMQPLly/HuXPn8O+//yIkJATHjx9H8+bN9ftERESgefPmmD9/frHnLa7GLiAgAHfu3IFSqayQe1Gr1YiNjUXXrl0hl8vLPqCay7iegeWRy3H/8n24h7pj8PbBcPYvvjMFy848LDfzVdmyy8qC3M0NAKC+fx9wdKz0EKps2VkBlp15akK5qVQqeHp6Ij09vcw8xapr7LKzsyGVGj4GKJPJoNXqZjQIDg6Gr68vduzYoU/sVCoV4uPj8cYbb5R4XoVCAYVCUWS9XC6v8A9FZVyjKnAPckfMzhgsiViCe5fuYVX0KsTsjoGTj1OJx7DszMNyM1+VK7tHYpXL5QbvKz+UKlZ2VoRlZ57qXG6m3JdVd57o1asXZs6cic2bNyM5ORm//fYb5s6di759+wIAJBIJxo0bhxkzZmDTpk04deoUhgwZAn9/f/Tp00fc4KlMLnVcMGTnEChrK3Hn3B0si1yG7DvGVzcT0WNkMqBHD93CKcWIaiSrrrH7+uuvMWnSJLz55pu4desW/P398dprr2Hy5Mn6fT744ANkZWVh1KhRePDgAdq3b48tW7bATsRnS8h4bsFuGLJzCJZELMGt07ewrOsyDNkxBPbu9mKHRlT12NkBmzeLHQURiciqa+ycnZ0xb948XLlyBTk5Obh8+TJmzJgBW9uHD9pLJBJMnz4daWlpyM3Nxfbt21G/fn0RoyZTedTzQMzOGDh6OyItIQ3Lo5YjN50DTBMREZnKqhM7qjk8G3rqauo87HHj6A2siF6BvIw8aDVaXNlzBff33seVPVeg1WjFDpWIiMhqWXVTLNUs3k94Y8j2IVjaeSmuHbqGH5/6EXkZefpx8K7MvQJlbSWi50cjrF+YyNESWaGsLMDbW/f61i1ResUSkbhYY0dWxbe5L16JfQU2Dja4c+6OweDGAKC6rsKa59cgcUOiSBESWbnsbN1CRDUSEzuyOr7NfaFwKjocDQD93LNbxm1hsywREdFjmNiR1UnZl4KsW1kl7yAAqqsqpOxLqbygiIiIqgAmdmR1MlIzyt7JhP2IiIhqCiZ2ZHWc/YqfWszc/YiIiGoKJnZkdeo8UwfK2kpAUvI+jt6OqPNMncoLioiIqApgYkdWRyqTInp+tO5NCcldzv0cXNx8sfKCIqoKpFIgIkK3SPnrnagm4jefrFJYvzAMWDcAylpKg/XOtZ3h19IPWrUWv/b9FUe/OypShERWyN4e2L1bt9hzWj6imogDFJPVCusXhga9G+DfXf9i/9/70b57e9TtVBcQgD9f/xPHfzqOza9vRsb1DHSc1hESSSltt0RERDUAa+zIqkllUgRGBMKtgxsCIwIhlUkhtZGi1w+9EDElAgCw95O92DRiEzRqjcjREhERiYuJHVVJEokEHad2RM/ve0IilSBhcQJW916N/Mx8sUMjEk9WFuDlpVuyShkLkoiqLSZ2VKW1GtkKg34fBBt7G1z6+xKWdlpa+uDGRNXdnTu6hYhqJCZ2VOXV71kfMbti4ODpgBtHb+Cndj/h3qV70Gq0SN6djFOrTiF5dzKnICMiomqPnSeoWqjdpjaGHxiO5dHLcf/yfXzX6jvI7eQGtXfK2kpEz49GWL8wESMlIiKqOKyxo2rDo74HRsSNgGuwK/JV+UWaZFXXVVjz/BokbkgUKUIiIqKKxcSOqhUHTwdo8kroHSvo/tkybgubZYmIqFpiYkfVSsq+FGTcyCh5BwFQXVUhZV9K5QVFRERUSfiMHVUrGamlJHWP2DlpJ9qMbYOQbiGwc7Urdh+tRqtLFFMz4OznjDrP1IFUxr+FyIpJpUDr1g9fE1GNw8SOqhVnP2ej9ru6/yqu7r8KqY0UdZ6pg3rP1kP9nvXhUd8DEokEiRsSseXtLVBdU+mPYecLsnr29sCRI2JHQVRjWGMFABM7qlbqPFMHytpKqK6r9M/UGZAADl4OaPZKM1z86yLuJN5B8q5kJO9KRux7sXAPdYdHQw9c/PNikUMLO18MWDeAyR0RUQ1nrRUArKunakUqkyJ6frTuzeNTx/73vufCnuj2ZTeMPjsaYy+NRfT8aNTtWhdSuRT3Lt0rNqkDwM4XREQEQJfUrXl+jUFSB1jH6AtM7KjaCesXhgHrBkBZS2mwXllbWaS2zT3EHW3eaoNXtr2CD+5+gI7TO5Z+cna+IGuWnQ0EBemW7GyxoyGqlrQaLba8vaX4ViErqABgUyxVS2H9wtCgdwOTnn1QOCvgHupu1Pl3T92NDpM6IKhjUInntMZnL6iaEwTgypWHr4nI4lL2pRSpqTPwSAVAUMegSourEBM7qrakMqnJXypjO19c2XMFy/Ysg5OvExoPaowmLzWBf2t/SCS69l5rffaCiIjMpy3Q4sKfF4za19hRGiyNiR3RI4ztfNGwd0Mkrk9EZlom4ufFI35ePNxD3fHES0/AwdOh2Gp6dr4gIrIuxras3Lt8D8d/Oo6EJQnITM006tzGVhRYGhM7okcUdr5Y8/waXWeLR5OzRzpfhPULQ49veuDytss4tfIUzm08h3uX7mHv9L0ln1zQnWPLuC1o0LsBm2WJiERUVstKQW4BEn9LxD8//IPkXcn6few97aHJ1SA/K7/ECgBlbSXqPFOn4m+iGEzsiB5T2Pmi2C/8vIdNqTJbGer3rI/6PesjPzMf534/h8NfH8b1+Osln1zkZy+IiKyNGM8jF/ZqLallJbR7KK7FXUPu/VzdBgkQ0i0ELUe2RINeDXDhzwulVgBEz4sW7Y93JnZExTC184Wtky2aDm4KiVSCDS9tKPP8Yj17QURkTcR4HtmYXq2X/rqkiyVAiRbDW6D5sOZwDXTV72ZsBYAYmNgRlaAiO19IbdgMSxVAIgEaNXr4msiKlVVrVlHPI5fZq/U/kZ9HIvx/4SX+QW/O6AuVgYkdkQWV2fniPxte3oDrh6+j/Uft4eDhUHkBUvXm4ACcOSN2FERlKrPWrAKfR74Wf82o/ZQByjKvbU4FQEVjtQGRBRkz84VnmCe0+VrEfRmHr+p+hT2f7EF+Zn6Rc2k1WiTvTsapVaeQvDuZs10QUbVhylhwpdFqtLiy5wru772PK3uulPh7UnVNhQOzD2Bh04XY8dEOo2IUq1drebHGjsjCynr2omHfhri05RJ2TtiJtIQ07J68G4e/PoxnPn4GrV9vDRuFDcfBI6JKU97OC8YeLwgCbp2+hQt/XkDC4gSjzn1o3iEU5BUgoF0AFM4Kg22P/568MveKwe/J3PRcJK5PxMnlJ5G8O1lfOyiVSyGVSVGQW1D8RUXu1VpeTOyIKkBZz17U614PoVGhOLPmDHZN2oV7l+5h67itODT3EOr3qo8j3x7hOHhkuuxs4Mknda+PHNE1zRKVorx/RJZ1vDpHjeRdybjw5wVc3HwR6SnpJsV3/vfzOP/7eUhkEvi19ENgRCACOwQi934uNg7dWPzvyf5rUDu8NlL/SYUmT6PfFtghEE0GN0Gj5xsheXey7vk+wOp6tZYXEzuiClLWsxcSqQRPDHoCYf3DkLA4AXum7UF6SjqOLDhS/AEcB4/KIgjA2bMPXxOVorydF0o9vv8a+LX2w+0zt1GQ87BmzMbOBnUj6yK0Ryj2frIXmWmZJY4FZ+dmh/rP1kfKvhQ8SH6AG0du4MaRG4j7Mq7km/rvXNfidM/ReYZ5oukrTdHkpSZVpldreTGxIxKZTC5Dq1Gt0PSVptjyzhb8890/Je/McfCIyAKMGfJj06ubkHkzEzJbGaQyKSQyCaQ2Uv0flZvf3Fzq8alHUwHoOiHUe7Ye6vesj+BOwZA7yAEATj5OpY4F99wPz+kTrPSUdFzZdwVX9lzBpS2XoLpadq/Wnt/3RMtXW+qnenyctfZqLS+rT+yCgoJwpXBS60e8+eabWLBgATp27Ig9e/YYbHvttdewaNGiygqRyCLk9nIERQSVntj9h+PgEVF5GDPkR+79XPz15l/luk6vH3uhxfAWxSZXptSaudRxQdPBTdF0cFOcWnXKqPFCbZ1sS0zqClljr9bysvrE7siRI9BoHraRnz59Gl27dsULL7ygXzdy5EhMnz5d/96Bz5VQFWVsL6wj3xyBtkCLBs81gJ2LXZHtBj3FHK+gbqe6Vf6vUCJrZokOCJX1nc25l6N7jtcI/q394eTrBK1GC0EjQFughVajRWZaJu6ev1vm8XIHeanJlTm1Zsb+nqyqvVrLy+oTOy8vL4P3n332GUJCQhAREaFf5+DgAF9f38oOjcjijB0H7+rBq7h68CpktjKEdAtB2PNhaNi7Iexc7crsKUZERZUnMbN0B4SK+s7eT7qPQ/93CMd/Og51ttqoY7p+0bXYGq3k3clY2mlpmccbk1yZWmtW5u/JKt6rtbysPrF7VH5+PpYvX453333X4C+AFStWYPny5fD19UWvXr0wadKkUmvt8vLykJeXp3+vUum+TGq1Gmq1cR92UxWet6LOX53VtLKLnBOJDYM2lPjcSZfZXZCXnodz68/hTuIdXPjzAi78eQF/yP+AV2Mv3Ey4WeSchQ9D91vdDw37NqyU+6jKquxnTq2GXP9SDYgQf1Usu3O/nUPsu7HIuP7wEQfnWs7oOrdrmd+Xc7+d031fS+iAUNZ3rrzHA7qk9Or+q8hMzYSTnxMC2gcYJKWp/6Ti0JxDOLf+HASt7kJeTbyQcS0DuQ9yS06Oainh19av2J+lX1s/ONdyRsaNDLOOL6+yfk9GfhkJjVYDjVZT3OFVjillKBGEqtN1as2aNXjppZeQkpICf39/AMD333+PwMBA+Pv74+TJk/jwww/x1FNPYcOGktvfp06dimnTphVZv3LlSjbjklV4EPcA13+8DvXdh19muacctUbUgmu4q35d7tVcPDj4AA8OPEBuSm6Z55V7ytHou0aQyDjdVHUky8tD5zFjAAA7v/kGGoWijCPoQdwDJH+eXOL2oA+DDL5zjxI0As6OOmvwPX2cjbsN6s+u/3DAcuHhv4JWwMWPLqLgfgnjqaHs72yxvys85PAf4Q+ZQoZbG28h81SmfptzM2d49/WGUzMnpB9KN/veC69dnuPLy9jfk9VBdnY2XnrpJaSnp0OpVJa6b5VK7KKiomBra4s//vijxH127tyJLl264NKlSwgJCSl2n+Jq7AICAnDnzp0yC8xcarUasbGx6Nq1K+RyedkHkF5NLbuy/gp/3MllJ/HniD/LPO/g2MEIjAi0ZKjVTk39zFlCVSo7rUaLBaELDGrqHmfvbo8OUzsgLz0PufdzkfsgFzn3c5D7IBeqFBXuX75f4XG2fL0lgjoFwaWOC5QBSjh4OUAikZRY2/c4iUyCRgMaoe07beHT3MdgW3G1lcraSkTOiTSqdr+8x5eXVqNF0u4kHIo9hLZd2yK4Y3C1fJ5YpVLB09PTqMSuyjTFXrlyBdu3by+1Jg4A2rRpAwClJnYKhQKKYv6SlcvlFf6LqDKuUV3VuLKTA6GRoUbvbmtva9R+sf+LRdu326Jhn4awd7cvdp/yPgheXdS4z5wFVXbZmfOZvbDtQqlJHaDraLD1ra3lC06iG7dSIpHoa+4kEgm0Wi2EgrLrVv5Z9A/+WfSwt7xMIYMyQKkb8qO0wyVAm7fbIPydcLjUcSl2lyYDmqBx/8Zmf9/Le3y5yYGQLiE4n3ceIV1Cqu331ZT7qjKJ3eLFi+Ht7Y1nn3221P0SEhIAAH5+fpUQFZH1MLYH2K2Tt7BpxCb8+dqfqBtZF41eaGSQ5HE6M6pqjPnMCoKAe5fu4VrcNVw9eBXX4q7h5qmiz6MWx7+1P7ybeMPOzQ72bvb6f9NT0rFjfNnzjsbsjClXB4SgjkEoyC1Aeko6MlIzoMnT4P4lI2oKBaBh74YlJnWFyjvkR3UcMqQqqxKJnVarxeLFixETEwMbm4chX758GStXrkSPHj3g4eGBkydP4p133kGHDh3QtGlTESMmqnzG9BRz8nFC6zdbI3F9Im6euIlLWy7h0pZL+iTPNcQVR789Wu7pzFjjJ5KcHKBDB93rvXsB++JrZKuTsmY/aDK4CfJUebgWdw3Zd7LNukZJPUO1Gi2OLDhidu9MY3t3vrL9Ff33R5OvgeqaCscXH8e+GfvKjJ1jXtY8VSKx2759O1JSUjB8+HCD9ba2tti+fTvmzZuHrKwsBAQEoH///pg4caJIkRKJRyqTInp+dKkjufdY0ANh/cIQMSkCdy/cxZm1Z3B2zVncPKlL8kpkwnRmrPETkVYLHD368LWph4uckJt6fWNmTzi14pR+lUwhg38rf9RuVxsB4QHwf8ofP4f/bHZiZsx3rrQ5R805XmYrg1tdN9TtUteoxK6mjuVWk1WJxK5bt24oro9HQEBAkVkniGoyU0Zy96jvgQ4fd0CHjzvgzvk7ODD7ABJ+Tij55P9NZxb7YSzqda8Ht7pucAlwgdTm4X865Z17ksRjiYS8PIPsGnt9QSvg7sW7uHH0Bs5tPFfm7AkA0PrN1mj2SjP4tvCFjcLwv73yJGZA+eccNfd4juVGJakSiR0RGa9wJPd/d/2L/X/vR/vu7cv8D9azgSfqRtYtPbH7z6E5h3BoziEAut52roGucAtxg2uQK86sOVNy7YmRNX5A+WqOqlqtkzWwREJenkF2y7p+m7fbQCqT4sbRG0j9JxX5Gfkm3V+d9nVQu23tYrdZYjL48s45as53try1hVR9MbEjqoakMikCIwJxJusMAiMCjfrlbmyTTa02tZCXnof7Sfd1D3H/ex/3/zXuQW7VVRXO/HoGjQc2LjGm8tQcVZVaJ2tSZnOmEQm5OYmhoBWQn5mPnPs5ZU4mHz8v3mC1jZ0NfFv4wsnXCed+O1fmPZb12bbEZPCW6IBg6nfWEkkpVT9M7IgIgPFNO8MPDIdUJoWgFZCRmoH7l3WJ3flN5436T3bD4A3YNGITPOp7wLOhJzwa6v71CvPC7cTb2DC45FH4S6s5svZaJ2vteFLmZPD/JeRLOy+FspYSMrkMUrkUMlvdv1KZFP/8+E+pidn6wevh29wX+Rn5yEvPQ54qD3kZeWWOv/aoBn0aoMFzDeDf2h9eYV6Q2kih1WgxP2i+RZojq2rPTkskpVS9MLEjIgCmN+1IpBIoaymhrKVEYIdAuAa5GpXYSeVSFOQW4ObJm7h50rjhJgpj2fTqJuRn5kPuIIdMIYONwgY2djaQ2EhKr/WpoFonQJeIZd3OKvf1C2Oo7Bq/W6dvGbVfyt4Us6+hydXg+qHrxW6TSCX6aa5K03hAYzR5sYnBOjZH6lTVpJQqBhM7ItIrT9OOsTV+Yy+NRca1DNxOvI075+7gzrk7uHvuLm6evIk8VV4xBz6Uez8XG2M2mn5j/9U6LXxiIZS1lVC4KKBQKh7+66zAvk/3lVrrtHHoRlz48wJy7uUg+062brmdjZz7OWXXPP13/S1vb0FY/zD4NPWBg4fh9IWWqPHTarQQXNwhaAVc33sFAd0aFpvUFOQV4Pzv55GwOAGXtpbSG/oRT731FNyC3aBRa6BVa6HJ10Cj1uDmyZu4+OfFMo9v+05b1Hu2Huxc7AzK/tqha/il8y9lHl9ScyqbI4kMMbEjIgPmNu0YW3tiY2sDt7pucKvrhvrP1tfvcmrVKWx4qfSZZQDA+wndQLGaPA0KcgtQkFeAnLs5Ro1RVphImiM/Ix8JixPMOrbQkQVHcGTBEQCAs78zfJr6wLupN7yf8Ebs+7HlrnHc8vYWqNLf0q3osdagtk8QBKQdT8PxxcdxasUp5N5/OLewzFYGTX4Jk6X/l5BHzY0q9trJu5ONSuwaPNeg2FqlwA6B5e7dyeZIooeY2BFREeY27ZSn9sTYzhvdv+5eJDZjR/DvNLMTXOu4Ik+Vh9z0XN2zXul5uHnyJq4euFrm8Y1eaITgzsFw8HKAg+fD5dbpW1gWuazM4wOeDkBmaibu/3sfGTcykHEjo/TxAwv9V+OXsi+l2J9LWbV9zYc2R+qxVIOmb2VtJZrFNEPzoc1x8+RN3fH/XUvPiObM8g67YanmVDZHEukwsSMiizK39qQ8CYKxx7b/sH2JtU7GJIZPvvlkscmDg6eDUdcfumcopDIp8jLycOv0Lf1zhkk7knD3/N0yr7+y50q4h7hDGaDUTwivrKXEtve2ldqMXFjTKFPI0LBPQ7QY3gLBXR5Olu4e6m52Qm6JxIzNqUSWw8SOiCzOnNqT8iQI5U0uKrvWSeGsQEB4AALCAwAYn1iqs9SldjqxgRqDsRwAsAIvowAPJw5v83YbREyJgL1b8dOMlac50xrGgiMiHSZ2RGQ1ypMglOdYsWudjEksnf2d8dJfLyHzRibSU9KRfjUdqqsqXD9yHXfO3vlvNwFBuKJ//ahabWqVmNQ9Wg7mNmeaM8iuJa9PRDpM7IjIqpS35qgq1joZk1h2/6o7fJv6Ak0NjzW2tq8y5gw1Z5BdIrIsJnZEZHXKU3NTVWudOGcoEVkCEzsiokeIWetkTo2fQW3f42rQIL1EpMPEjojIiphT41dY27d97O/AjYfr2auUqOZhYkdEVA2E9QtDg8jagMt4AMDgvwaXOPMEEVVfTOyIiKoJqUwKOOimKgvsEAgwqSOqcZjYERFVF46OQFaW2FEQkYj45xwRERFRNcHEjoiIiKiaYGJHRFRd5OYCzz6rW3JzxY6GiETAZ+yIiKoLjQb466+Hr4moxmGNHREREVE1wcSOiIiIqJpgYkdERERUTTCxIyIiIqommNgRERERVRPsFQtAEAQAgEqlqrBrqNVqZGdnQ6VSQS6XV9h1qiOWnXlYbuarsmX36KwTKpUoPWOrbNlZAZadeWpCuRXmJ4X5SmmY2AHIyMgAAAQEBIgcCRGRhfj7ix0BEVlYRkYGXFxcSt1HIhiT/lVzWq0WN27cgLOzMyQSSYVcQ6VSISAgAFevXoVSqayQa1RXLDvzsNzMx7IzH8vOfCw789SEchMEARkZGfD394dUWvpTdKyxAyCVSlG7du1KuZZSqay2H7yKxrIzD8vNfCw787HszMeyM091L7eyauoKsfMEERERUTXBxI6IiIiommBiV0kUCgWmTJkChUIhdihVDsvOPCw387HszMeyMx/LzjwsN0PsPEFERERUTbDGjoiIiKiaYGJHREREVE0wsSMiIiKqJpjYVYIFCxYgKCgIdnZ2aNOmDQ4fPix2SFZv6tSpkEgkBkvDhg3FDssq7d27F7169YK/vz8kEgk2btxosF0QBEyePBl+fn6wt7dHZGQkLl68KE6wVqasshs6dGiRz2F0dLQ4wVqRWbNm4cknn4SzszO8vb3Rp08fnD9/3mCf3NxcjB49Gh4eHnByckL//v1x8+ZNkSK2HsaUXceOHYt87l5//XWRIrYeCxcuRNOmTfXj1YWHh+Pvv//Wb+dnToeJXQX79ddf8e6772LKlCn4559/0KxZM0RFReHWrVtih2b1GjdujNTUVP2yf/9+sUOySllZWWjWrBkWLFhQ7PbZs2fjq6++wqJFixAfHw9HR0dERUUhNze3kiO1PmWVHQBER0cbfA5XrVpViRFapz179mD06NE4dOgQYmNjoVar0a1bN2Q9MlftO++8gz/++ANr167Fnj17cOPGDfTr10/EqK2DMWUHACNHjjT43M2ePVukiK1H7dq18dlnn+HYsWM4evQoOnfujN69e+PMmTMA+JnTE6hCPfXUU8Lo0aP17zUajeDv7y/MmjVLxKis35QpU4RmzZqJHUaVA0D47bff9O+1Wq3g6+srfPHFF/p1Dx48EBQKhbBq1SoRIrRej5edIAhCTEyM0Lt3b1HiqUpu3bolABD27NkjCILuMyaXy4W1a9fq90lMTBQACHFxcWKFaZUeLztBEISIiAjh7bffFi+oKsTNzU348ccf+Zl7BGvsKlB+fj6OHTuGyMhI/TqpVIrIyEjExcWJGFnVcPHiRfj7+6Nu3boYPHgwUlJSxA6pyklKSkJaWprBZ9DFxQVt2rThZ9BIu3fvhre3Nxo0aIA33ngDd+/eFTskq5Oeng4AcHd3BwAcO3YMarXa4HPXsGFD1KlTh5+7xzxedoVWrFgBT09PPPHEExg/fjyys7PFCM9qaTQarF69GllZWQgPD+dn7hGcK7YC3blzBxqNBj4+PgbrfXx8cO7cOZGiqhratGmDJUuWoEGDBkhNTcW0adPwzDPP4PTp03B2dhY7vCojLS0NAIr9DBZuo5JFR0ejX79+CA4OxuXLlzFhwgR0794dcXFxkMlkYodnFbRaLcaNG4enn34aTzzxBADd587W1haurq4G+/JzZ6i4sgOAl156CYGBgfD398fJkyfx4Ycf4vz589iwYYOI0VqHU6dOITw8HLm5uXBycsJvv/2GRo0aISEhgZ+5/zCxI6vUvXt3/eumTZuiTZs2CAwMxJo1azBixAgRI6OaZNCgQfrXTZo0QdOmTRESEoLdu3ejS5cuIkZmPUaPHo3Tp0/zGVgzlFR2o0aN0r9u0qQJ/Pz80KVLF1y+fBkhISGVHaZVadCgARISEpCeno5169YhJiYGe/bsETssq8Km2Ark6ekJmUxWpFfOzZs34evrK1JUVZOrqyvq16+PS5cuiR1KlVL4OeNn0DLq1q0LT09Pfg7/M2bMGPz555/YtWsXateurV/v6+uL/Px8PHjwwGB/fu4eKqnsitOmTRsA4OcOgK2tLUJDQ9GqVSvMmjULzZo1w/z58/mZewQTuwpka2uLVq1aYceOHfp1Wq0WO3bsQHh4uIiRVT2ZmZm4fPky/Pz8xA6lSgkODoavr6/BZ1ClUiE+Pp6fQTNcu3YNd+/erfGfQ0EQMGbMGPz222/YuXMngoODDba3atUKcrnc4HN3/vx5pKSk1PjPXVllV5yEhAQAqPGfu+JotVrk5eXxM/cINsVWsHfffRcxMTFo3bo1nnrqKcybNw9ZWVkYNmyY2KFZtffeew+9evVCYGAgbty4gSlTpkAmk+HFF18UOzSrk5mZafCXfFJSEhISEuDu7o46depg3LhxmDFjBurVq4fg4GBMmjQJ/v7+6NOnj3hBW4nSys7d3R3Tpk1D//794evri8uXL+ODDz5AaGgooqKiRIxafKNHj8bKlSvx+++/w9nZWf8Mk4uLC+zt7eHi4oIRI0bg3Xffhbu7O5RKJcaOHYvw8HC0bdtW5OjFVVbZXb58GStXrkSPHj3g4eGBkydP4p133kGHDh3QtGlTkaMX1/jx49G9e3fUqVMHGRkZWLlyJXbv3o2tW7fyM/cosbvl1gRff/21UKdOHcHW1lZ46qmnhEOHDokdktUbOHCg4OfnJ9ja2gq1atUSBg4cKFy6dEnssKzSrl27BABFlpiYGEEQdEOeTJo0SfDx8REUCoXQpUsX4fz58+IGbSVKK7vs7GyhW7dugpeXlyCXy4XAwEBh5MiRQlpamthhi664MgMgLF68WL9PTk6O8Oabbwpubm6Cg4OD0LdvXyE1NVW8oK1EWWWXkpIidOjQQXB3dxcUCoUQGhoqvP/++0J6erq4gVuB4cOHC4GBgYKtra3g5eUldOnSRdi2bZt+Oz9zOhJBEITKTCSJiIiIqGLwGTsiIiKiaoKJHREREVE1wcSOiIiIqJpgYkdERERUTTCxIyIiIqommNgRERERVRNM7IiIiIiqCSZ2RERERNUEEzsiIishkUiwceNGscMgoiqMiR0REYChQ4dCIpEUWaKjo8UOjYjIaDZiB0BEZC2io6OxePFig3UKhUKkaIiITMcaOyKi/ygUCvj6+hosbm5uAHTNpAsXLkT37t1hb2+PunXrYt26dQbHnzp1Cp07d4a9vT08PDwwatQoZGZmGuzz888/o3HjxlAoFPDz88OYMWMMtt+5cwd9+/aFg4MD6tWrh02bNlXsTRNRtcLEjojISJMmTUL//v1x4sQJDB48GIMGDUJiYiIAICsrC1FRUXBzc8ORI0ewdu1abN++3SBxW7hwIUaPHo1Ro0bh1KlT2LRpE0JDQw2uMW3aNAwYMAAnT55Ejx49MHjwYNy7d69S75OIqjCBiIiEmJgYQSaTCY6OjgbLzJkzBUEQBADC66+/bnBMmzZthDfeeEMQBEH4/vvvBTc3NyEzM1O/ffPmzYJUKhXS0tIEQRAEf39/4eOPPy4xBgDCxIkT9e8zMzMFAMLff/9tsfskouqNz9gREf2nU6dOWLhwocE6d3d3/evw8HCDbeHh4UhISAAAJCYmolmzZnB0dNRvf/rpp6HVanH+/HlIJBLcuHEDXbp0KTWGpk2b6l87OjpCqVTi1q1b5t4SEdUwTOyIiP7j6OhYpGnUUuzt7Y3aTy6XG7yXSCTQarUVERIRVUN8xo6IyEiHDh0q8j4sLAwAEBYWhhMnTiArK0u//cCBA5BKpWjQoAGcnZ0RFBSEHTt2VGrMRFSzsMaOiOg/eXl5SEtLM1hnY2MDT09PAMDatWvRunVrtG/fHitWrMDhw4fx008/AQAGDx6MKVOmICYmBlOnTsXt27cxduxYvPLKK/Dx8QEATJ06Fa+//jq8vb3RvXt3ZGRk4MCBAxg7dmzl3igRVVtM7IiI/rNlyxb4+fkZrGvQoAHOnTsHQNdjdfXq1XjzzTfh5+eHVatWoVGjRgAABwcHbN26FW+//TaefPLJ/2/Xjm0YhIEAip5bagazBD1LMIc9itejczq6SKlCcnpvAOuu+7IulmWJbduitXa/dRxHXNcVvfc4zzPWdY1937+3IJBemXPOp4cA+HWllBhjRK316VEA3nJjBwCQhLADAEjCjR3AB1ytAP/Ajx0AQBLCDgAgCWEHAJCEsAMASELYAQAkIewAAJIQdgAASQg7AIAkhB0AQBIvMDv/2KbUjGQAAAAASUVORK5CYII=", "text/plain": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# Measuring the perplexity of the dev set\n", "dev_set_perplexity = measure_perplexity(dev_x_indexes, dev_y_indexes, language_model, index_mapping=token2index)\n", "\n", "# Displaying the perplexity of the dev set\n", "print('\\033[35m' + 'The perplexity of the dev set on the language model is:' + '\\033[0m' + ' {:.1f}'.format(dev_set_perplexity))\n", "\n", "plot_list(train_errors, 'Training Errors vs Epoch', 'Epoch', 'Training Error', 'blue', 'Training Error', show_best_value=False)\n", "plot_list(dev_perplexities, 'Perplexity of Dev Set vs Epoch', 'Epoch', 'Perplexity of Dev Set', 'purple', 'Perplexity of Dev Set')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "4.2) Now measure the space saving amount of the trained model on the test text.\n", "Also check that when you decompress the compressed test text, you get exactly the same string as the test text.\n", "\n", "Note: You may need to strip off the new line character from the end of the test text when comparing it to the decompressed text." ] }, { "cell_type": "code", "execution_count": 38, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[1mThe space saving of the language model on the test set:\u001b[0m 3.7%\n", "\u001b[1mCorrect!\u001b[0m\n" ] } ], "source": [ "# Calculating the space saved by the language model on the test set mentioned above\n", "space_saved = calculate_space_saving(test_set, language_model, index_mapping=token2index)\n", "print(f'\\033[1m' + 'The space saving of the language model on the test set:' + '\\033[0m' + ' {:.1%}'.format(space_saved))\n", "\n", "# Checking the compression and decompression of the test set\n", "compressed_test_set = compress(test_set, language_model, index_mapping=token2index)\n", "decompressed_test_set = decompress(compressed_test_set, language_model, index_mapping=token2index)\n", "\n", "assert decompressed_test_set == test_set, 'Decompressed text is not the same as the original text.'\n", "print('\\033[1m' + 'Correct!' + '\\033[0m')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "4.3) Now you need to analyse the model's output.\n", "Split the test text into sentences and compress each individual sentence.\n", "Print out the top 5 most compressed sentences and the top 5 least compressed sentences according to the space saving metric together with the compressed sentences." ] }, { "cell_type": "code", "execution_count": 39, "metadata": {}, "outputs": [], "source": [ "def analyse_output(model, test_set, index_mapping):\n", " \"\"\"Analyzes the output of the given model on the given test set.\n", "\n", " Args:\n", " model: The language model.\n", " test_set (str): The test set.\n", " index_mapping (dict): A dictionary mapping tokens to indices.\n", "\n", " Returns:\n", " space_saved_dict (dict): A dictionary mapping sentences to the space saved by compressing the sentence.\n", " \"\"\"\n", " # Setting variable for the print size\n", " print_size = 100\n", "\n", " # Creating a dictionary to store the space saved for each sentence\n", " space_saved_dict = {}\n", "\n", " # Splitting the test set into sentences\n", " sentences = test_set.split('\\n')\n", "\n", " # Iterating through the sentences\n", " for sentence in sentences:\n", " # Calculating the space saved for the sentence\n", " space_saved = calculate_space_saving(sentence, model, index_mapping=index_mapping)\n", "\n", " # Adding the space saved to the dictionary\n", " space_saved_dict[sentence] = space_saved\n", "\n", " # Sorting the dictionary by the space saved\n", " sorted_space_saved_dict = sorted(space_saved_dict.items(), key=lambda x: x[1], reverse=True)\n", "\n", " # Printing the top 5 sentences with the most space saved\n", " print('\\033[1m' + 'The top 5 sentences with the most space saved are:' + '\\033[0m')\n", " print('-' * print_size)\n", " for i in range(5):\n", " print('\\033[1m' + 'Sentence:' + '\\033[0m' + ' {}'.format(i+1))\n", " print('\\033[1m' + 'Original Sentence:' + '\\033[0m' + ' {}'.format(sorted_space_saved_dict[i][0]))\n", " print('\\033[1m' + 'Compressed Sentence:' + '\\033[0m' + ' {}'.format(compress(sorted_space_saved_dict[i][0], model, index_mapping=index_mapping)))\n", " print('\\033[1m' + 'Space Saved:' + '\\033[0m' + ' {:.1%}'.format(sorted_space_saved_dict[i][1]))\n", " print('-' * print_size)\n", "\n", " print('\\n'*3)\n", " \n", " # Printing the top 5 sentences with the least space saved\n", " print('\\033[1m' + 'The top 5 sentences with the least space saved are:' + '\\033[0m')\n", " print('=' * print_size)\n", " for i in range(1, 6):\n", " print('\\033[1m' + 'Sentence:' + '\\033[0m' + ' {}'.format(i))\n", " print('\\033[1m' + 'Original Sentence:' + '\\033[0m' + ' {}'.format(sorted_space_saved_dict[-i][0]))\n", " print('\\033[1m' + 'Compressed Sentence:' + '\\033[0m' + ' {}'.format(compress(sorted_space_saved_dict[-i][0], model, index_mapping=index_mapping)))\n", " print('\\033[1m' + 'Space Saved:' + '\\033[0m' + ' {:.1%}'.format(sorted_space_saved_dict[-i][1]))\n", " print('=' * print_size)\n", "\n", " # Returning the space saved dictionary\n", " return space_saved_dict" ] }, { "cell_type": "code", "execution_count": 40, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[1mThe top 5 sentences with the most space saved are:\u001b[0m\n", "----------------------------------------------------------------------------------------------------\n", "\u001b[1mSentence:\u001b[0m 1\n", "\u001b[1mOriginal Sentence:\u001b[0m 3 4 . 6 % of all households were made up of individuals , and 1 5 . 7 % had someone living alone who was 6 5 years of age or older .\n", "\u001b[1mCompressed Sentence:\u001b[0m 3 4 . 6 X X all X X X X X X , X X 5 X 7 X had X X X X X X X years X X or X X\n", "\u001b[1mSpace Saved:\u001b[0m 42.4%\n", "----------------------------------------------------------------------------------------------------\n", "\u001b[1mSentence:\u001b[0m 2\n", "\u001b[1mOriginal Sentence:\u001b[0m hispanic or latino of any race were 3 . 0 0 % of the population .\n", "\u001b[1mCompressed Sentence:\u001b[0m hispanic X X X X X X 3 X 0 0 % X X X X\n", "\u001b[1mSpace Saved:\u001b[0m 41.5%\n", "----------------------------------------------------------------------------------------------------\n", "\u001b[1mSentence:\u001b[0m 3\n", "\u001b[1mOriginal Sentence:\u001b[0m the average household size was 2 . 6 1 and the average family size was 2 . 9 4 .\n", "\u001b[1mCompressed Sentence:\u001b[0m X average X X X X X 6 1 and the X X X X X X X 4 X\n", "\u001b[1mSpace Saved:\u001b[0m 38.7%\n", "----------------------------------------------------------------------------------------------------\n", "\u001b[1mSentence:\u001b[0m 4\n", "\u001b[1mOriginal Sentence:\u001b[0m 1 4 . 0 % of all households were made up of individuals , and 4 . 5 % had someone living alone who was 6 5 years of age or older .\n", "\u001b[1mCompressed Sentence:\u001b[0m 1 4 . 0 X X all X X X X X individuals , X 4 X X X had X X X X X X X years X X or X X\n", "\u001b[1mSpace Saved:\u001b[0m 35.4%\n", "----------------------------------------------------------------------------------------------------\n", "\u001b[1mSentence:\u001b[0m 5\n", "\u001b[1mOriginal Sentence:\u001b[0m 1 7 . 0 % of all households were made up of individuals , and 3 . 8 % had someone living alone who was 6 5 years of age or older .\n", "\u001b[1mCompressed Sentence:\u001b[0m 1 7 . 0 X X all X X X X X individuals , X 3 X 8 X had X X X X X X X years X X or X X\n", "\u001b[1mSpace Saved:\u001b[0m 35.4%\n", "----------------------------------------------------------------------------------------------------\n", "\n", "\n", "\n", "\n", "\u001b[1mThe top 5 sentences with the least space saved are:\u001b[0m\n", "====================================================================================================\n", "\u001b[1mSentence:\u001b[0m 1\n", "\u001b[1mOriginal Sentence:\u001b[0m vartox is in love with lana lang and has shared a rivalry with superman for her affections .\n", "\u001b[1mCompressed Sentence:\u001b[0m vartox is in love with lana lang and has shared a rivalry with superman for her affections .\n", "\u001b[1mSpace Saved:\u001b[0m 0.0%\n", "====================================================================================================\n", "\u001b[1mSentence:\u001b[0m 2\n", "\u001b[1mOriginal Sentence:\u001b[0m then reliance appointed defence secretary shashikant sharma as new cag to audit kg basin , said prashant bhushan .\n", "\u001b[1mCompressed Sentence:\u001b[0m then reliance appointed defence secretary shashikant sharma as new cag to audit kg basin , said prashant bhushan .\n", "\u001b[1mSpace Saved:\u001b[0m 0.0%\n", "====================================================================================================\n", "\u001b[1mSentence:\u001b[0m 3\n", "\u001b[1mOriginal Sentence:\u001b[0m offa is brought in , bound to a chair ; in his distraction he freely confesses his crimes .\n", "\u001b[1mCompressed Sentence:\u001b[0m offa is brought in , bound to a chair ; in his distraction he freely confesses his crimes .\n", "\u001b[1mSpace Saved:\u001b[0m 0.0%\n", "====================================================================================================\n", "\u001b[1mSentence:\u001b[0m 4\n", "\u001b[1mOriginal Sentence:\u001b[0m near somwarpet where the coorgs were led by mathanda appachu the resistance was most furious .\n", "\u001b[1mCompressed Sentence:\u001b[0m near somwarpet where the coorgs were led by mathanda appachu the resistance was most furious .\n", "\u001b[1mSpace Saved:\u001b[0m 0.0%\n", "====================================================================================================\n", "\u001b[1mSentence:\u001b[0m 5\n", "\u001b[1mOriginal Sentence:\u001b[0m substituted fulvenes are readily prepared by the condensation of cyclopentadiene and aldehydes and ketones :\n", "\u001b[1mCompressed Sentence:\u001b[0m substituted fulvenes are readily prepared by the condensation of cyclopentadiene and aldehydes and ketones :\n", "\u001b[1mSpace Saved:\u001b[0m 0.0%\n", "====================================================================================================\n" ] } ], "source": [ "# Analyzing the output of the language model on the test set\n", "space_saved_dict = analyse_output(language_model, test_set, index_mapping=token2index)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "4.4) Is the reason for whether a sentence is compressible or not due to its similarity to the train set (a sentence that is similar to one in the train set would be easier to predict and thus more tokens will be compressed)?\n", "Find out the answer to this by doing the following:\n", "\n", "Extract all the trigrams from the train set (you can use `nltk.trigrams` to do this).\n", "For each sentence in the test set, count how many of its trigrams are also found in the train set.\n", "Turn this count into a domain similarity measure by dividing it by the number of trigrams in the test sentence.\n", "\n", "Note: In order for this fraction to be meaningful from the language model's point of view, the edge token must be added to the front of the test sentences and out-of-vocabulary tokens must be replaced with the unknown token.\n", "\n", "Create a list that maps each sentence's domain similarity to its space saving amount.\n", "Plot a scatter plot showing how the domain similarity measure relates to the space saving amount of each test sentence.\n", "If there is a correlation between these two measures, then the points in the scatter plot will form approximately into a straight line." ] }, { "cell_type": "code", "execution_count": 41, "metadata": {}, "outputs": [], "source": [ "def plot_domain_similarity_vs_space_saved(train_set, test_set, vocabulary, space_saved_dict, color='blue', legend_label='Data Points', linestyle='-', marker='o'):\n", " \"\"\"Plots a graph of the domain similarity vs the space saved for the given train and test sets.\n", "\n", " Args:\n", " train_set (str): The train set.\n", " test_set (str): The test set.\n", " vocabulary (list): A list of the vocabulary tokens.\n", " space_saved_dict (dict): A dictionary mapping sentences to the space saved by compressing the sentence.\n", " color (str): The color of the markers (default: 'blue').\n", " legend_label (str): The legend label for the plot (default: 'Data Points').\n", " linestyle (str): The line style (default: '-').\n", " marker (str): The marker style (default: 'o', set 'None' to remove markers).\n", " \n", " Returns:\n", " domain_similarities (list): A list of the domain similarities for each sentence in the test set.\n", " \"\"\"\n", " # Splitting the train set into sentences\n", " train_sentences = train_set.split('\\n')\n", "\n", " # Splitting the test set into sentences\n", " test_sentences = test_set.split('\\n')\n", "\n", " # Extracting the tokens from the train set based on the vocabulary, whilst adding the edge token to the beginning of each sentence\n", " train_tokens = [token if token in vocabulary else UNKNOWN_TOKEN for sentence in train_sentences for token in [EDGE_TOKEN] + sentence.split()]\n", "\n", " # Extracting the trigrams from the train set \n", " train_trigrams = set(nltk.trigrams(train_tokens))\n", " \n", " # Calculating the trigram counts for the train set\n", " trigram_counts = Counter(train_trigrams)\n", "\n", " # Declaring a list to store the domain similarities\n", " domain_similarities = []\n", " \n", " # Iterating through the test sentences\n", " for sentence in test_sentences:\n", " # Error handling for empty sentences\n", " if not sentence:\n", " continue\n", " \n", " # Adding the edge token to the beginning of the sentence, and converting the sentence to a list of tokens depending on the vocabulary\n", " sentence = [EDGE_TOKEN] + [token if token in vocabulary else UNKNOWN_TOKEN for token in sentence.split()]\n", "\n", " # Calculating the trigrams for the sentence\n", " sentence_trigrams = list(nltk.trigrams(sentence))\n", "\n", " # Calculating the domain similarity for the sentence\n", " count = sum(trigram_counts[trigram] for trigram in sentence_trigrams if trigram in train_trigrams)\n", "\n", " # Appending the domain similarity to the list of domain similarities, by dividing the count by the number of trigrams in the sentence\n", " domain_similarities.append(count / len(sentence_trigrams))\n", "\n", " # Converting the list of domain similarities to a numpy array\n", " domain_similarities = np.array(domain_similarities)\n", "\n", " # Plotting the graph\n", " plt.figure(figsize=(15, 7))\n", " # Plotting best fit line\n", " plt.plot(np.unique(domain_similarities), np.poly1d(np.polyfit(domain_similarities, [space_saved_dict[sentence] for sentence in test_sentences], 1))(np.unique(domain_similarities)), color='red', linestyle='--', label='Best Fit Line')\n", " plt.scatter(domain_similarities, [space_saved_dict[sentence] for sentence in test_sentences], color=color, linestyle=linestyle, marker=marker, label=legend_label)\n", " plt.title('Domain Similarity vs Space Saved')\n", " plt.xlabel('Domain Similarity')\n", " plt.ylabel('Space Saved')\n", " plt.grid(True)\n", " plt.legend()\n", " plt.tight_layout()\n", " plt.show()\n", "\n", " # Returning the list of domain similarities\n", " return domain_similarities" ] }, { "cell_type": "code", "execution_count": 42, "metadata": {}, "outputs": [ { "data": { "image/png": "iVBORw0KGgoAAAANSUhEUgAABdEAAAKyCAYAAAA6kpdwAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjcuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8pXeV/AAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOzdeXhU5f3//9dkIIQAYQ0QSTSCVgQXVFSkBhBBRJBoRBGsCHWpVStI3aiWRVBwQ9CKtlrFqiCL+bjhhkhKUCz+sCitS11AtiCbgIBCmJzfH+c7SSaZk5yZOTNnlufjunJN5sw9Z+6ZOXOfc973fd63xzAMQwAAAAAAAAAAoJY0tysAAAAAAAAAAEC8IogOAAAAAAAAAIAFgugAAAAAAAAAAFggiA4AAAAAAAAAgAWC6AAAAAAAAAAAWCCIDgAAAAAAAACABYLoAAAAAAAAAABYIIgOAAAAAAAAAIAFgugAAAAAAAAAAFggiA4AAIC44fF4NGnSpJi/7vr16+XxeDRnzhzH1llSUiKPx6OSkpLKZaNGjVJ+fr5jr+Hn1ueG1DBp0iR5PB63qwEAAOAagugAAABJYM6cOfJ4PJV/GRkZOuKIIzRgwAA9+uij+umnn9yuomtef/119e7dW23btlVmZqY6duyoyy67TG+//bbbVYuaDz/8UJMmTdLu3bvdrkpIDh06pFmzZumUU05RVlaWWrRooa5du+q6667Tl19+6Xb1IrZ9+3aNGTNGnTt3VuPGjdW2bVudccYZuuOOO7Rv3z63qwcAAAALDdyuAAAAAJxzzz336Oijj1Z5ebm2bt2qkpISjR07VjNmzNBrr72mk046ye0q1unnn39WgwbOHaI+9NBDuu2229S7d2+NHz9emZmZ+uabb/Tee+/ppZde0vnnny9JOuqoo/Tzzz+rYcOGjr12r1699PPPPys9Pd2xdVqp+bl9+OGHmjx5skaNGqUWLVpE/fWdcskll+itt97S8OHDde2116q8vFxffvml3njjDfXs2VOdO3d2u4ph27Vrl7p37669e/fqt7/9rTp37qydO3fqs88+0xNPPKHf//73atq0qdvVBAAAQBAE0QEAAJLIwIED1b1798r748eP1/vvv6/BgwdryJAh+uKLL9S4cWMXa1i3jIwMx9Z1+PBhTZkyRf3799e7775b6/Ft27ZV/u8fve+ktLQ0x9dZXUVFhQ4dOqSMjIyovk6sfPzxx3rjjTd077336k9/+lPAY3/5y18SblR9TX//+9+1YcMGffDBB+rZs2fAY3v37o1JZwsAAADCQzoXAACAJNe3b1/9+c9/1vfff68XXngh4LH3339fBQUFatKkiVq0aKHCwkJ98cUXAWX8+ZD/97//6Te/+Y2aN2+u7Oxs/fnPf5ZhGNq4caMKCwuVlZWl9u3b6+GHHw54/qFDhzRhwgSddtppat68uZo0aaKCggItW7asVl1r5vb2v/Y333xTOaq6efPmGj16tA4cOFDn+96xY4f27t2rX//610Efb9u2beX/wXKijxo1Sk2bNtWGDRs0ePBgNW3aVB06dNDjjz8uSVq7dq369u2rJk2a6KijjtLcuXMD1h8sJ3owDz30kHr27KnWrVurcePGOu2007Ro0aKgn81NN92kF198UV27dlWjRo0qU9JU/9wmTZqk2267TZJ09NFHV6b4Wb9+vXr37q2TTz45aD2OO+44DRgwwLKegwcPVseOHYM+dtZZZwV03ixZskRnn322WrRooaZNm+q4446rFRiv6dtvv5WkoN+X1+tV69atK+/7t4svv/xSl112mbKystS6dWuNGTNGv/zyS8Bzn332WfXt21dt27ZVo0aN1KVLFz3xxBNB6/DWW2+pd+/eatasmbKysnT66afX+l7/9a9/6fzzz1fz5s2VmZmp3r1764MPPqjzvfnfn9frVY8ePWo9lpWVFdARUlpaqksvvVRHHnmkGjVqpLy8PN1yyy36+eefK8s89NBD8ng8+v7772utb/z48UpPT9ePP/4Ycr1XrFih008/XRkZGerUqZP++te/1vveAAAAkh1BdAAAgBRw5ZVXSlLAiOz33ntPAwYM0LZt2zRp0iSNGzdOH374oX79619r/fr1tdYxbNgwVVRUaPr06TrzzDM1depUzZw5U/3791eHDh10//3365hjjtGtt96q5cuXVz5v7969evrpp9WnTx/df//9mjRpkrZv364BAwZozZo1tup/2WWX6aefftK0adN02WWXac6cOZo8eXKdz2nbtq0aN26s119/Xbt27bL1OjX5fD4NHDhQeXl5euCBB5Sfn6+bbrpJc+bM0fnnn6/u3bvr/vvvV7NmzTRy5EitW7cu5Nfw5wC/5557dN9996lBgwa69NJLtXjx4lpl33//fd1yyy0aNmyYZs2aFXSS0qKiIg0fPlyS9Mgjj+j555/X888/r+zsbF155ZX67LPP9J///CfgOR9//HFlJ4mVYcOGad26dfr4448Dln///ff66KOPdPnll0uS/vvf/2rw4ME6ePCg7rnnHj388MMaMmRIvYHmo446SpL04osv6vDhw3WW9bvsssv0yy+/aNq0abrgggv06KOP6rrrrgso88QTT+ioo47Sn/70Jz388MPKy8vTDTfcUNkZ4jdnzhwNGjRIu3bt0vjx4zV9+nR169YtIHf++++/r169emnv3r2aOHGi7rvvPu3evVt9+/bVqlWr6n1/Pp9Pzz//fL3va+HChTpw4IB+//vf67HHHtOAAQP02GOPaeTIkQHv3ePxaMGCBbWev2DBAp133nlq2bJlSPVeu3atzjvvvMo2YfTo0Zo4caL+7//+r946AwAAJDUDAAAACe/ZZ581JBkff/yxZZnmzZsbp5xySuX9bt26GW3btjV27txZuezTTz810tLSjJEjR1YumzhxoiHJuO666yqXHT582MjNzTU8Ho8xffr0yuU//vij0bhxY+Oqq64KKHvw4MGAuvz4449Gu3btjN/+9rcByyUZEydOrPXaNctdfPHFRuvWrS3fq9+ECRMMSUaTJk2MgQMHGvfee6+xevXqWuXWrVtnSDKeffbZymVXXXWVIcm47777ar0/j8djvPTSS5XLv/zyy1p1X7ZsmSHJWLZsWcA6jzrqqIDXPnDgQMD9Q4cOGSeccILRt2/fgOWSjLS0NOO///1vrfrXfO0HH3zQkGSsW7cuoNzu3buNjIwM44477ghYfvPNNxtNmjQx9u3bV2vdfnv27DEaNWpk/PGPfwxY/sADDxgej8f4/vvvDcMwjEceecSQZGzfvt1yXcFUVFQYvXv3NiQZ7dq1M4YPH248/vjjleutzr9dDBkyJGD5DTfcYEgyPv3008plNT9fwzCMAQMGGB07dqy8v3v3bqNZs2bGmWeeafz888+16uW/PfbYY40BAwZULvOv/+ijjzb69+9f5/vbunWrkZ2dbUgyOnfubFx//fXG3Llzjd27d9cqG6zO06ZNC/icDcMwzjrrLOO0004LKLdq1SpDkvGPf/wj5HpfdNFFRkZGRsBrfP7554bX6zU4dQQAAKmMkegAAAApomnTpvrpp58kSWVlZVqzZo1GjRqlVq1aVZY56aST1L9/f7355pu1nn/NNddU/u/1etW9e3cZhqGrr766cnmLFi103HHH6bvvvgso68/3XFFRoV27dunw4cPq3r27PvnkE1t1v/766wPuFxQUaOfOndq7d2+dz5s8ebLmzp2rU045Re+8847uuusunXbaaTr11FNrpa2xUv19+99fkyZNdNlll1UuP+6449SiRYuA921X9Rz1P/74o/bs2aOCgoKgn03v3r3VpUuXkF/Dr3nz5iosLNS8efNkGIYkc7T9/PnzddFFF6lJkyaWz83KytLAgQO1YMGCyudK0vz589WjRw8deeSRklQ5kemrr76qiooK23XzeDx65513NHXqVLVs2VLz5s3TjTfeqKOOOkrDhg0LmhP9xhtvDLj/hz/8QZICtt/qn++ePXu0Y8cO9e7dW99995327NkjyUw/89NPP+nOO++slV/e4/FIktasWaOvv/5aI0aM0M6dO7Vjxw7t2LFD+/fv17nnnqvly5fX+X7btWunTz/9VNdff71+/PFHPfnkkxoxYoTatm2rKVOmBHym1eu8f/9+7dixQz179pRhGPr3v/9d+diwYcO0evXqylQ4kvl9NGrUSIWFhSHV2+fz6Z133tFFF11U+V1K0vHHH19nmh8AAIBUQBAdAAAgRezbt0/NmjWTpMo8yscdd1ytcscff3xlkK266oE1yQzIZmRkqE2bNrWWV8/FLEnPPfecTjrpJGVkZKh169bKzs7W4sWLK4OY9an52v40FTVfJ5jhw4ertLRUP/74o959912NGDFC//73v3XhhRfWyp9dU0ZGhrKzswOWNW/eXLm5uZXB1erL7dSnpjfeeEM9evRQRkaGWrVqpezsbD3xxBNBP5ujjz465PXXNHLkSG3YsEGlpaWSzLQ+P/zwQ2XKn7oMGzZMGzdu1MqVKyWZeb5Xr16tYcOGBZT59a9/rWuuuUbt2rXT5ZdfrgULFtgKqDdq1Eh33XWXvvjiC23ZskXz5s1Tjx49tGDBAt100021yh977LEB9zt16qS0tLSAdEQffPCB+vXrV5n3Pzs7uzI/u/8z9gehTzjhBMu6ff3115Kkq666StnZ2QF/Tz/9tA4ePFjv9pyTk6MnnnhCZWVl+uqrr/Too48qOztbEyZM0N///vfKchs2bKjs4GratKmys7PVu3fvgDpL0qWXXqq0tDTNnz9fkmQYhhYuXKiBAwcqKysrpHpv375dP//8c63PVAreTgAAAKSSBm5XAAAAANG3adMm7dmzR8ccc0zY6/B6vbaWSQoYVfvCCy9o1KhRuuiii3Tbbbepbdu28nq9mjZtWsAI2lBfu+br1CcrK0v9+/dX//791bBhQz333HP617/+VRmcDOV1naiPZE4gOWTIEPXq1UuzZ89WTk6OGjZsqGeffbbWhJZS4AjlcA0YMEDt2rXTCy+8oF69eumFF15Q+/bt1a9fv3qfe+GFFyozM1MLFixQz549tWDBAqWlpenSSy8NqOPy5cu1bNkyLV68WG+//bbmz5+vvn376t1337X87GrKycnR5ZdfrksuuURdu3bVggULNGfOHDVoYH0KU7Nj49tvv9W5556rzp07a8aMGcrLy1N6errefPNNPfLIIyGNlPeXffDBB9WtW7egZZo2bWprXR6PR7/61a/0q1/9SoMGDdKxxx6rF198Uddcc418Pp/69++vXbt26Y477lDnzp3VpEkTbd68WaNGjQqo8xFHHKGCggItWLBAf/rTn/TRRx9pw4YNuv/++0Ou98GDB23VHQAAIBURRAcAAEgB/skM/WkZ/JM4fvXVV7XKfvnll2rTpk2dqT1CsWjRInXs2FHFxcUBQc6JEyc6sv5wdO/eXc8995zKyspcq4Mkvfzyy8rIyNA777yjRo0aVS5/9tlnI1pvzWBydV6vVyNGjNCcOXN0//3365VXXtG1115rK7jdpEkTDR48WAsXLtSMGTM0f/58FRQU6Igjjggol5aWpnPPPVfnnnuuZsyYofvuu0933XWXli1bZitYX13Dhg110kkn6euvv9aOHTvUvn37yse+/vrrgNH533zzjSoqKionXH399dd18OBBvfbaawFXMyxbtizgNTp16iRJ+s9//mPZ0eQvk5WVFfJ7qEvHjh3VsmXLym1x7dq1+t///qfnnnsuYCLRJUuWBH3+sGHDdMMNN+irr77S/PnzlZmZqQsvvDDkemdnZ6tx48aVI9erC9ZOAAAApBLSuQAAACS5999/X1OmTNHRRx+tK664QpI5yrdbt2567rnnAnJN/+c//9G7776rCy64wLHX9wdnq4/S/te//lWZEiRaDhw4YPkab731liT301R4vV55PB75fL7KZevXr9crr7wS0Xr9HSDB8ohL0pVXXqkff/xRv/vd77Rv3z795je/sb3uYcOGacuWLXr66af16aefBqRykaRdu3bVeo5/BHRdo52//vprbdiwodby3bt3a+XKlWrZsmWt1DqPP/54wP3HHntMkjRw4EBJwbe9PXv21OqkOO+889SsWTNNmzatVoof/3NPO+00derUSQ899JD27dtXq57bt2+3fG+Suc3XTJEkSatWrdLOnTsrt8VgdTYMQ7NmzQq63ksuuURer1fz5s3TwoULNXjw4IAOMLv19nq9GjBggF555ZWA7+GLL77QO++8U+d7AwAASHaMRAcAAEgib731lr788ksdPnxYP/zwg95//30tWbJERx11lF577bWASRMffPBBDRw4UGeddZauvvpq/fzzz3rsscfUvHlzTZo0ybE6DR48WMXFxbr44os1aNAgrVu3Tk8++aS6dOkSNKjnlAMHDqhnz57q0aOHzj//fOXl5Wn37t165ZVXVFpaqosuukinnHJK1F7fjkGDBmnGjBk6//zzNWLECG3btk2PP/64jjnmGH322Wdhr/e0006TJN111126/PLL1bBhQ1144YWVwdVTTjlFJ5xwghYuXKjjjz9ep556qu11X3DBBWrWrJluvfVWeb1eXXLJJQGP33PPPVq+fLkGDRqko446Stu2bdPs2bOVm5urs88+23K9n376qUaMGKGBAweqoKBArVq10ubNm/Xcc89py5YtmjlzZq3R8uvWrdOQIUN0/vnna+XKlXrhhRc0YsQInXzyyZLM4Hh6erouvPDCyg6Dp556Sm3btg24CiErK0uPPPKIrrnmGp1++ukaMWKEWrZsqU8//VQHDhzQc889p7S0ND399NMaOHCgunbtqtGjR6tDhw7avHmzli1bpqysLL3++uuW7+/555/Xiy++qIsvvlinnXaa0tPT9cUXX+iZZ55RRkZGZZ72zp07q1OnTrr11lu1efNmZWVl6eWXX7bMt9+2bVudc845mjFjhn766adanRqh1Hvy5Ml6++23VVBQoBtuuEGHDx/WY489pq5du0a0PQIAACQ6gugAAABJZMKECZKk9PR0tWrVSieeeKJmzpyp0aNHV04q6tevXz+9/fbbmjhxoiZMmKCGDRuqd+/euv/++x2ZwNJv1KhR2rp1q/7617/qnXfeUZcuXfTCCy9o4cKFKikpcex1amrRooWeeuopLV68WM8++6y2bt0qr9er4447Tg8++KBuvvnmqL22XX379tXf//53TZ8+XWPHjtXRRx+t+++/X+vXr48oaHn66adrypQpevLJJ/X222+roqJC69atCxihPHLkSN1+++22JhStLiMjQ0OGDNGLL76ofv36qW3btgGPDxkyROvXr9czzzyjHTt2qE2bNurdu7cmT56s5s2bW663V69emjJlit566y3NmDFD27dvV7NmzXTKKafo/vvvrxWsl6T58+drwoQJuvPOO9WgQQPddNNNevDBBysfP+6447Ro0SLdfffduvXWW9W+fXv9/ve/V3Z2tn77298GrOvqq69W27ZtNX36dE2ZMkUNGzZU586ddcstt1SW6dOnj1auXKkpU6boL3/5i/bt26f27dvrzDPP1O9+97s6P7ff/e53yszM1NKlS/Xqq69q7969ys7O1nnnnafx48dXdug0bNhQr7/+um6++WZNmzZNGRkZuvjii3XTTTdVdg7UNGzYML333ntq1qxZ0KtI7Nb7pJNO0jvvvKNx48ZpwoQJys3N1eTJk1VWVkYQHQAApDSPEersRwAAAAAS3qxZs3TLLbdo/fr1AfnCE8GkSZM0efJkbd++XW3atHG7OgAAAEhy5EQHAAAAUoxhGPr73/+u3r17J1wAHQAAAIg10rkAAAAAKWL//v167bXXtGzZMq1du1avvvqq21UCAAAA4h5BdAAAACBFbN++XSNGjFCLFi30pz/9SUOGDHG7SgAAAEDcIyc6AAAAAAAAAAAWyIkOAAAAAAAAAIAFgugAAAAAAAAAAFhIuZzoFRUV2rJli5o1ayaPx+N2dQAAAAAAAAAALjAMQz/99JOOOOIIpaVZjzdPuSD6li1blJeX53Y1AAAAAAAAAABxYOPGjcrNzbV8POWC6M2aNZNkfjBZWVku18Yd5eXlevfdd3XeeeepYcOGblcHgAtoBwDQDgCgHQBAOwAg1duBvXv3Ki8vrzJmbCXlguj+FC5ZWVkpHUTPzMxUVlZWSv44ANAOAKAdAEA7AIB2AADtgF99ab+ZWBQAAAAAAAAAAAsE0QEAAAAAAAAAsEAQHQAAAAAAAAAACymXE90un8+n8vJyt6sRFeXl5WrQoIF++eUX+Xw+t6sT9xo2bCiv1+t2NQAAAAAAAAC4gCB6DYZhaOvWrdq9e7fbVYkawzDUvn17bdy4sd6k+TC1aNFC7du35/MCAAAAAAAAUgxB9Br8AfS2bdsqMzMzKYOmFRUV2rdvn5o2baq0NDL61MUwDB04cEDbtm2TJOXk5LhcIwAAAAAAAACxRBC9Gp/PVxlAb926tdvViZqKigodOnRIGRkZBNFtaNy4sSRp27Ztatu2LaldAAAAAAAAgBRCBLUafw70zMxMl2uCeOPfJpI1Tz4AAAAAAACA4AiiB5GMKVwQGbYJAAAAAAAAIDURRAcAAAAAAAAAwAJBdMTUqFGjdNFFFzm6zvXr18vj8WjNmjWOrhcAAAAAAAAACKIniVGjRsnj8VT+tW7dWueff74+++wzx15j0qRJ6tatm61y1evi/3vvvfc0a9YszZkzp7Jsnz59NHbs2HrXWVe5vLw8lZWV6YQTTrD3RgAAAAAAAADAJoLoSeT8889XWVmZysrKtHTpUjVo0ECDBw92pS5du3atrIv/r1evXmrevLlatGjh6Gt5vV61b99eDRo0cHS9AAAAAAAAAEAQPYk0atRI7du3V/v27dWtWzfdeeed2rhxo7Zv315ZZuPGjRo2bJiOOuootWnTRoWFhVq/fn3l4yUlJTrjjDPUpEkTtWjRQr/+9a/1/fffa86cOZo8ebI+/fTTypHl1UeU19SgQYPKuvj/0tPTA9K5jBo1Sv/85z81a9asynVWr4tdNdO5lJSUyOPxaOnSperevbsyMzPVs2dPffXVVwHPe/XVV3XqqacqIyNDHTt21OTJk3X48OGQXx8AAAAAAABA8mLorl3791s/5vVKGRn2yqalSY0b11+2SZPQ6lfDvn379MILL+iYY45R69atJUnl5eUaMGCAevTooTfffFMtWrTQfffdV5n2JS0tTRdddJGuvfZazZs3T4cOHdKqVavk8Xg0bNgw/ec//9Hbb7+t9957T5LUvHnziOo4a9Ys/e9//9MJJ5yge+65R5KUnZ0d0Tqru+uuu/Twww8rOztb119/vX7729/qgw8+kCSVlpZq5MiRevTRR1VQUKBvv/1W1113nSRp4sSJjtUBAAAAAAAAQGIjiG5X06bWj11wgbR4cdX9tm2lAweCl+3dWyopqbqfny/t2FG7nGGEXMU33nhDTf9fPffv36+cnBy98cYbSkszLziYP3++Kioq9NRTT+mnn35SVlaWnn32WbVo0UIlJSXq3r279uzZo8GDB6tTp06SpOOPP75y/U2bNq0cYV6ftWvXVtZFkrp06aJVq1YFlGnevLnS09OVmZlpa52huvfee9W7d29J0p133qlBgwbpl19+UUZGhiZPnqw777xTV111lSSpY8eOmjJlim6//XaC6AAAAAAAAAAqEURPIuecc46eeOIJSdKPP/6o2bNna+DAgVq1apWOOuooffrpp/rmm29qjSD/5Zdf9O233+q8887TqFGjNGDAAPXv31/9+vXTZZddppycnJDrctxxx+m1116rvN+oUaPI3lwYTjrppMr//e9h27ZtOvLII/Xpp5/qgw8+0L333ltZxufz6ZdfftGBAweUmZkZ8/oCAAAAAAAAiD8E0e3at8/6Ma838P62bdZl02qkoQ8jB7iVJk2a6Jhjjqm8//TTT6t58+Z66qmnNHXqVO3bt0+nnXaann/+ee3bt09NmzatHKXuT6Py7LPP6uabb9bbb7+t+fPn6+6779aSJUvUo0ePkOqSnp4eUBc3NGzYsPJ/j8cjSaqoqJBkpruZPHmyioqKaj0vo3pqHgAAAAAAAAApjSC6XaHkKI9W2RB5PB6lpaXp559/liSdeuqpmj9/vtq2bau2bdsqKyurMohe3SmnnKJTTjlF48eP11lnnaW5c+eqR48eSk9Pl8/nc7SO0VinHaeeeqq++uor1wP9AAAAAAAAAOIbQfQkcvDgQW3dulWSmc7lL3/5i/bt26cLL7xQknTFFVfowQcf1MUXX6zbbrtNxx13nDZu3Kji4mLdfvvtKi8v19/+9jcNGTJERxxxhL766it9/fXXGjlypCQpPz9f69at05o1a5Sbm6tmzZpFnKYlPz9f//rXv7R+/Xo1bdpUrVq1ChrYl6Tt27drzZo1AcvCSTUjSRMmTNDgwYN15JFHaujQoUpLS9Onn36q//znP5o6dWpY6wQAAAAAAACQfIJHK5GQ3n77beXk5CgnJ0dnnnmmPv74Yy1cuFB9+vSRJGVmZmr58uXKy8vTyJEj1bVrV1199dX65ZdflJWVpczMTH355Ze65JJL9Ktf/UrXXXedbrzxRv3ud7+TJF1yySU6//zzdc455yg7O1vz5s2LuM633nqrvF6vunTpouzsbG3YsMGy7Ny5cytHyfv/nnrqqbBed8CAAXrjjTf07rvv6vTTT1ePHj30yCOP6Kijjgr3rQAAAAAAAACVfD6ppESaN8+8dSEZAxziMQzDcLsSsbR37141b95ce/bsUVZWVsBjv/zyi9atW6ejjz46qfNiV1RUaO/evZbpXFBbqmwbSB3l5eV68803dcEFFwTMHwAgddAOAKAdAEA7AERPcbE0Zoy0aVPVstxcadYsKcgUfa5J9XagrlhxdURQAQAAAAAAAMAhxcXS0KGBAXRJ2rzZXF5c7E69ED6C6AAAAAAAAADgAJ/PHIEeLPeHf9nYsaR2STQE0QEAAAAAAADAAaWltUegV2cY0saNZjkkDoLoAAAAAAAAAOCAsjJnyyE+EEQHAAAAAAAAAAfk5DhbDvGBIDoAAAAAAAAAOKCgQMrNlTye4I97PFJenlkOiYMgOgAAAAAAAAA4wOuVZs0y/68ZSPffnznTLIfEQRAdAAAAAAAAABxSVCQtWiR16BC4PDfXXF5U5E69EL4GblcAAAAAAAAAAJJJUZFUWCiVlpqTiObkmClcGIGemAiiI65NmjRJr7zyitasWeN2VQAAAAAAAOrk8xE0RRWvV+rTx+1awAmkc0kSo0aNksfjkcfjUcOGDdWuXTv1799fzzzzjCoqKkJa15w5c9SiRQtH6tWnT5/KemVkZKhLly6aPXu27effeuutWrp0aUivmZ+fr5kzZ4ZYUwAAAAAAgPAVF0v5+dI550gjRpi3+fnmcgCJjSB6lPh8UkmJNG+eeevzRf81zz//fJWVlWn9+vV66623dM4552jMmDEaPHiwDh8+HP0KWLj22mtVVlamzz//XJdddpluvPFGzZs3z9ZzmzZtqtatW0e5hgAAAAAAAOErLpaGDpU2bQpcvnmzuZxAOpDYCKJHgVs9j40aNVL79u3VoUMHnXrqqfrTn/6kV199VW+99ZbmzJlTWe6RRx5Rz5491axZM+Xl5emGG27Qvn37JEklJSUaPXq09uzZUzmCfNKkSZKk559/Xt27d1ezZs3Uvn17jRgxQtu2bau3XpmZmWrfvr06duyoSZMm6dhjj9Vrr70mSdqwYYMKCwvVtGlTZWVl6bLLLtMPP/xQ+dxJkyapW7dulfdHjRqliy66SA899JBycnLUunVr3XjjjSovL5dkjnz//vvvdcstt1TWX5K+//57XXjhhWrZsqWaNGmirl276s0334zk4wYAAAAAAJDPJ40ZIxlG7cf8y8aOjc0ASwDRQRDdYfHW89i3b1+dfPLJKq72wmlpabr//vu1du1aPffcc3r//fd1++23S5J69uypmTNnKisrS2VlZSorK9Ott94qSSovL9eUKVP06aef6pVXXtH69es1atSokOvUuHFjHTp0SBUVFSosLNSuXbv0z3/+U0uWLNF3332nYcOG1fn8ZcuW6dtvv9WyZcv03HPPac6cOZWdBMXFxcrNzdU999xTWX9JuvHGG3Xw4EEtX75ca9eu1f3336+mTZuGXHcAAAAAAIDqSktrx4GqMwxp40azHIDExMSiDqqv59HjMXseCwtjO6lE586d9dlnn1XeHzNmjPbu3ausrCx17NhRU6dO1fXXX6/Zs2crPT1dzZs3l8fjUfv27QPW89vf/rby/44dO+rRRx/V6aefrn379tkKSPt8Ps2bN0+fffaZrrvuOi1dulRr167VunXrlJeXJ0n6xz/+oa5du+rjjz/W6aefHnQ9LVu21F/+8hd5vV517txZgwYN0tKlS3XttdeqVatW8nq9laPl/TZs2KBLLrlEJ554YmX9AQAAAAAAIvX/xu85Vg5A/GEkuoPitefRMIzKtCaS9N5776mwsFB5eXlq1qyZrrzySu3cuVMHDhyocz2rV6/WhRdeqCOPPFLNmjVT7969JZkB6rrMnj1bTZs2VePGjXXttdfqlltu0e9//3t98cUXysvLqwygS1KXLl3UokULffHFF5br69q1q7zVeiFycnLqTStz8803a+rUqfr1r3+tiRMnBnQqAAAAAAAAhCsnx9lyAOIPQXQHxWvP4xdffKGjjz5akrR+/XoNGTJEXbt21cKFC7V69Wo9/vjjkqRDhw5ZrmP//v0aMGCAsrKy9OKLL+rjjz/W//3f/9X7PEm64oortGbNGq1bt0779+/XjBkzlJYW/qbXsGHDgPsej0cVFRV1Pueaa67Rd999pyuvvFJr165V9+7d9dhjj4VdBwAAAAAAAEkqKJByc80MBMF4PFJenlkOQGIiiO6geOx5fP/997V27VpdcsklkszR5BUVFZo6dap69OihX/3qV9qyZUvAc9LT0+WrMdvFl19+qZ07d2r69OkqKChQ586dbU0qKknNmzfXMcccow4dOgQEz48//nht3LhRGzdurFz2+eefa/fu3erSpUu4bzlo/SUpLy9P119/vYqLi/XHP/5RTz31VNivAQAAAAAAIJkpe2fNMv+vGUj33585M7apfQE4iyC6g9zueTx48KC2bt2qzZs365NPPtF9992nwsJCDR48WCNHjpQkHXPMMSovL9ff/vY3fffdd3r++ef15JNPBqwnPz9f+/bt09KlS7Vjxw4dOHBARx55pNLT0/XYY4/pu+++02uvvaYpU6ZEVN9+/frpxBNP1BVXXKFPPvlEq1at0siRI9W7d29179497PXm5+dr+fLl2rx5s3bs2CFJGjt2rN555x2tW7dOn3zyiZYtW6bjjz8+ovoDAAAAAABIUlGRtGiR1KFD4PLcXHN5UZE79QLgDILoDnK75/Htt99WTk6O8vPzdf7552vZsmV69NFH9eqrr1bmED/55JP18MMPa9asWTrppJP04osvatq0aQHr6dmzp66//noNGzZM2dnZeuCBB5Sdna05c+Zo4cKF6tKli6ZPn66HHnooovp6PB69+uqratmypXr16qV+/fqpY8eOmj9/fkTrveeee7R+/Xp16tRJ2dnZksxJTW+88UYdf/zxOv/88/WrX/1Ks2fPjuh1AAAAAAAA/IqKpPXrpWXLpLlzzdt16wigA8nAYxiG4XYlYmnv3r1q3ry59uzZo6ysrIDHfvnlF61bt05HH320MjIywn6N4mJpzJjASUbz8swAejw0nBUVFdq7d6+ysrIiyk2eSpzaNoB4UV5erjfffFMXXHBBrXkGAKQG2gEAtAMAaAcApHo7UFesuLoGMaxTyigqkgoLpdJScxLRnBwzhQu5rwAAAAAAAAAgsRBEjxKvV+rTx+1aAAAAAAAAAAAiQS4PAAAAAAAAAAAsEEQHAAAAAAAAAMACQXQAAAAAAAAAACwQRA+ioqLC7SogzrBNAAAAAAAAAKmJiUWrSU9PV1pamrZs2aLs7Gylp6fL4/G4XS3HVVRU6NChQ/rll1+UlkY/Sl0Mw9ChQ4e0fft2paWlKT093e0qAQAAAAAAAIghgujVpKWl6eijj1ZZWZm2bNnidnWixjAM/fzzz2rcuHFSdhJEQ2Zmpo488kg6HQAAAAAAAIAUQxC9hvT0dB155JE6fPiwfD6f29WJivLyci1fvly9evVSw4YN3a5O3PN6vWrQoAEdDgAAAAAAAEAKiosg+uOPP64HH3xQW7du1cknn6zHHntMZ5xxRr3Pe+mllzR8+HAVFhbqlVdecaw+Ho9HDRs2TNoAs9fr1eHDh5WRkZG07xEAAAAAAAAAnOB6bor58+dr3Lhxmjhxoj755BOdfPLJGjBggLZt21bn89avX69bb71VBQUFMaopAAAAAAAAACDVuB5EnzFjhq699lqNHj1aXbp00ZNPPqnMzEw988wzls/x+Xy64oorNHnyZHXs2DGGtQUAAAAAAAAApBJX07kcOnRIq1ev1vjx4yuXpaWlqV+/flq5cqXl8+655x61bdtWV199tUpLS+t8jYMHD+rgwYOV9/fu3SvJzAteXl4e4TtITP73narvHwDtAADaAQC0AwBoBwDQDth9364G0Xfs2CGfz6d27doFLG/Xrp2+/PLLoM9ZsWKF/v73v2vNmjW2XmPatGmaPHlyreXvvvuuMjMzQ65zMlmyZInbVQDgMtoBALQDAGgHANAOAEjVduDAgQO2ysXFxKJ2/fTTT7ryyiv11FNPqU2bNraeM378eI0bN67y/t69e5WXl6fzzjtPWVlZ0apqXCsvL9eSJUvUv39/JhYFUhTtAADaAQC0AwBoBwCkejvgz1pSH1eD6G3atJHX69UPP/wQsPyHH35Q+/bta5X/9ttvtX79el144YWVyyoqKiRJDRo00FdffaVOnToFPKdRo0Zq1KhRrXU1bNgwJTeM6vgMANAOAKAdAEA7AIB2AECqtgN237OrE4ump6frtNNO09KlSyuXVVRUaOnSpTrrrLNqle/cubPWrl2rNWvWVP4NGTJE55xzjtasWaO8vLxYVh8AAAAAAAAAkORcT+cybtw4XXXVVerevbvOOOMMzZw5U/v379fo0aMlSSNHjlSHDh00bdo0ZWRk6IQTTgh4fosWLSSp1nIAAAAAAAAAACLlehB92LBh2r59uyZMmKCtW7eqW7duevvttysnG92wYYPS0lwdMA8AAAAAAAAASFGuB9El6aabbtJNN90U9LGSkpI6nztnzhznKwQAAAAAAAAAgFzOiQ4AAAAAAAAAQDwjiA4AAAAAAAAAgAWC6AAAAAAAAAAAWCCIDgAAAAAAAACABYLoAAAAAAAAAJBifD5pxQrz/xUrzPsIjiA6AAAAAAAAAKSQ4mIpP18aNMi8P2iQeb+42M1axS+C6AAAAAAAAACQIoqLpaFDpU2bApdv3mwuJ5BeG0F0AAAAAAAAAEgBPp80ZoxkGLUf8y8bO5bULjURRAcAAAAAAACAFFBaWnsEenWGIW3caJZDFYLoAAAAAAAAAJACysqcLZcqCKIDAAAAAAAAQArIyXG2XKogiA4AAAAAAAAAKaCgQMrNlTye4I97PFJenlkOVQiiAwAAAAAAAEAK8HqlWbPM/2sG0v33Z840y6EKQXQAAAAAAAAASBFFRdKiRVKHDoHLc3PN5UVF7tQrnjVwuwIAAAAAAAAAgNgpKpIKC6Xly6W9e6XFi6VevRiBboWR6AAAAAAAAACQYrxe6eyzzf/PPpsAel0IogMAAAAAAAAAYIEgOgAAAAAAAAAAFgiiAwAAAAAAAABggSA6AAAAAAAAAAAWCKIDAAAAAAAAAGCBIDoAAAAAAAAAABYIogMAAAAAAAAAYIEgOgAAAAAAAAAAFgiiAwAAAAAAAABggSA6AAAAAAAAAAAWCKIDAAAAAAAAAGCBIDoAAAAAAAAAABYIogMAAAAAAAAAYIEgOgAAAAAAAAAAFgiiAwAAAAAAAABggSA6AAAAAAAAAAAWCKIDAAAAAAAAAGCBIDoAAAAAAAAAABYIogMAAAAAAAAAYIEgOgAAAAAAAAAAFgiiAwAAAAAAAABggSA6AAAAAAAAAAAWCKIDAAAAAAAAAGCBIDoAAAAAAAAAABYIogMAAAAAAAAAYIEgOgAAAAAAAAAAFgiiAwAAAAAAAABggSA6AAAAAAAAAAAWCKIDAAAAAAAAAGCBIDoAAAAAAAAAABYIogMAAAAAAAAAYIEgOgAAAAAAAAAAFhq4XQEAAAAAAAAASCaHDkmzZ0vffit16iTdcIOUnu52rRAugugAAAAAAAAA4JDbb5dmzJB8vqplt94qjRsnPfCAe/VC+AiiAwAAAAAAAIADbr9devDB2st9vqrlBNITDznRAQAAAAAAACBChw6ZI9DrMmOGWQ6JhSA6AAAAAAAAAERo9uzAFC7B+HxmOSQWgugAAAAAAAAAEKFvv3W2HOIHQXQAAAAAAAAAiFCnTs6WQ/wgiA4AAAAAAAAAEbrhBsnrrbuM12uWQ2IhiA4AAAAAAAAAEUpPl8aNq7vMuHFmOSSWBm5XAAAAAAAAAACSwQMPmLczZgROMur1mgF0/+NILATRAQAAAAAAAMAhDzwgTZ0qzZ5tTiLaqZOZwoUR6ImLIDoAAAAAAAAAOCg9XRo71u1awCnkRAcAAAAAAAAAwAJBdAAAAAAAAAAALBBEBwAAAAAAAADAAkF0AAAAAAAAAAAsEEQHAAAAAAAAAMACQXQAAAAAAAAAACwQRAcAAAAAAAAAwAJBdAAAAAAAAAAALBBEBwAAAAAAAADAAkF0AAAAAAAAAAAsEEQHAAAAAAAAAMACQXQAAAAAAAAAACwQRAcAAAAAAAAAwAJBdAAAAAAAAAAALBBEBwAAAAAAAADAAkF0AAAAAAAAAAAsEEQHAAAAAAAAAMACQXQAAAAAAAAAACwQRAcAAAAAAAAAwAJBdAAAAAAAAAAALBBEBwAAAAAAAADAAkF0AAAAAAAAAAAsEEQHAAAAAAAAAMACQXQAAAAAAAAAACwQRAcAAAAAAAAAwAJBdAAAAAAAAAAALBBEBwAAAAAAAADAAkF0AAAAAAAAAAAsEEQHAAAAAAAAAMACQXQAAAAAAAAAACwQRAcAAAAAAAAAwAJBdAAAAAAAAAAALBBEBwAAAAAAAADAAkF0AAAAAAAAAAAsEEQHAAAAAAAAAMACQXQAAAAAAAAAACwQRAcAAAAAAAAAwAJBdAAAAAAAAAAALBBEBwAAAAAAAADAAkF0AAAAAAAAAAAsEEQHAAAAAAAAAMACQXQAAAAAAAAAACwQRAcAAAAAAAAAwAJBdAAAAAAAAAAALBBEBwAAAAAAAADAAkF0AAAAAAAAAAAsEEQHAAAAAAAAAMACQXQAAAAAAAAAACwQRAcAAAAAAAAAwAJBdAAAAAAAAAAALBBEBwAAAAAAAADAAkF0AAAAAAAAAAAsEEQHAAAAAAAAAMACQXQAAAAAAAAAACwQRAcAAAAAAAAAwAJBdAAAAAAAAAAALBBEBwAAAAAAAADAAkF0AAAAAAAAAAAsxEUQ/fHHH1d+fr4yMjJ05plnatWqVZZli4uL1b17d7Vo0UJNmjRRt27d9Pzzz8ewtgAAAAAAAACAVOF6EH3+/PkaN26cJk6cqE8++UQnn3yyBgwYoG3btgUt36pVK911111auXKlPvvsM40ePVqjR4/WO++8E+OaAwAAAAAAAACSnetB9BkzZujaa6/V6NGj1aVLFz355JPKzMzUM888E7R8nz59dPHFF+v4449Xp06dNGbMGJ100klasWJFjGsOAAAAAAAAAEh2rgbRDx06pNWrV6tfv36Vy9LS0tSvXz+tXLmy3ucbhqGlS5fqq6++Uq9evaJZVQAAAAAAAABACmrg5ovv2LFDPp9P7dq1C1jerl07ffnll5bP27Nnjzp06KCDBw/K6/Vq9uzZ6t+/f9CyBw8e1MGDByvv7927V5JUXl6u8vJyB95F4vG/71R9/wBoBwDQDgCgHQBAOwCAdsDu+3Y1iB6uZs2aac2aNdq3b5+WLl2qcePGqWPHjurTp0+tstOmTdPkyZNrLX/33XeVmZkZg9rGryVLlrhdBQAuox0AQDsAgHYAAO0AgFRtBw4cOGCrnMcwDCPKdbF06NAhZWZmatGiRbrooosql1911VXavXu3Xn31VVvrueaaa7Rx48agk4sGG4mel5enHTt2KCsrK+L3kIjKy8u1ZMkS9e/fXw0bNnS7OgBcQDsAgHYAAO0AANoBAKneDuzdu1dt2rTRnj176owVuzoSPT09XaeddpqWLl1aGUSvqKjQ0qVLddNNN9leT0VFRUCgvLpGjRqpUaNGtZY3bNgwJTeM6vgMANAOAKAdAEA7AIB2AECqtgN237Pr6VzGjRunq666St27d9cZZ5yhmTNnav/+/Ro9erQkaeTIkerQoYOmTZsmyUzP0r17d3Xq1EkHDx7Um2++qeeff15PPPGEm28DAAAAAAAAAJCEXA+iDxs2TNu3b9eECRO0detWdevWTW+//XblZKMbNmxQWlpaZfn9+/frhhtu0KZNm9S4cWN17txZL7zwgoYNG+bWWwAAAAAAAAAAJCnXg+iSdNNNN1mmbykpKQm4P3XqVE2dOjUGtQIAAAAAAAAApLq0+osAAAAAAAAAAJCaCKIDAAAAAAAAAGCBIDoAAAAAAAAAABYIogMAAAAAAAAAYIEgOgAAAAAAAAAAFgiiAwAAAAAAAABggSA6AAAAAAAAAAAWGrhdAQAAAAAAACAZ+HxSaalUVibl5EgFBZLX63atAESKIDoAAAAAAAAQoeJiacwYadOmqmW5udKsWVJRkXv1AhA50rkAAAAAAAAAESguloYODQygS9Lmzeby4mJ36gXAGQTRAQAAAAAAgDD5fOYIdMOo/Zh/2dixZjkAiYkgOgAAAAAAABCm0tLaI9CrMwxp40azHIDERBAdAAAAAAAACFNZmbPlAMQfgugAAAAAAABAmHJynC0HIP4QRAcAAAAAAADCVFAg5eZKHk/wxz0eKS/PLAcgMRFEBwAAAAAAAMLk9UqzZpn/1wyk++/PnGmWA5CYCKIDAAAAAAAAESgqkhYtkjp0CFyem2suLypyp14AnNHA7QoAAAAAAAAAia6oSCoslEpLzUlEc3LMFC6MQAcSH0F0AAAAAAAAwAFer9Snj9u1AOA00rkAAAAAAAAAAGCBIDoAAAAAAAAAABYIogMAAAAAAAAAYIEgOgAAAAAAAAAAFgiiAwAAAAAAAABgoYHbFQAAAAAAAAAQOp9PKi2VysqknBypoEDyet2uFZB8CKIDAAAAAAAACaa4WBozRtq0qWpZbq40a5ZUVORevYBkRDoXAAAAAAAAIIEUF0tDhwYG0CVp82ZzeXGxO/UCkhVBdAAAAAAAACBB+HzmCHTDqP2Yf9nYsWY5AM4giA4AAAAAAAAkiNLS2iPQqzMMaeNGsxwAZxBEBwAAAAAAABJEWZmz5QDUjyA6AAAAAAAAkCBycpwtB6B+BNEBAAAAAACABFFQIOXmSh5P8Mc9HikvzywHwBkE0QEAAAAAAIAE4fVKs2aZ/9cMpPvvz5xplgPgDILoAAAAAAAAQAIpKpIWLZI6dAhcnptrLi8qcqdeQLJq4HYFAAAAAAAAAISmqEgqLJRKS81JRHNyzBQujEAHnEcQHQAAAAAAAEhAXq/Up4/btQCSH+lcAAAAAAAAAACwQBAdAAAAAAAAAAALBNEBAAAAAAAAALBAEB0AAAAAAAAAAAsE0QEAAAAAAAAAsEAQHQAAAAAAAAAACw3crgAAAAAAAMnA55NKS6WyMiknRyookLxet2sFAAAiRRAdAAAAAIAIFRdLY8ZImzZVLcvNlWbNkoqK3KsXAACIHOlcAAAAAACIQHGxNHRoYABdkjZvNpcXF7tTLwAA4AyC6AAAAAAAhMnnM0egG0btx/zLxo41ywEAgMREEB0AAAAAgDCVltYegV6dYUgbN5rlAABAYiKIDgAAAABAmMrKnC0HAADiD0F0AAAAAADClJPjbDkAABB/CKIDAAAAABCmggIpN1fyeII/7vFIeXlmOQAAkJgIogMAAAAAECavV5o1y/y/ZiDdf3/mTLMcAABITATRAQAAAACIQFGRtGiR1KFD4PLcXHN5UZE79QIAAM5o4HYFAAAAAABIdEVFUmGhVFpqTiKak2OmcGEEOgAAiY8gOgAAAAAADvB6pT593K4FAABwGulcAAAAAAAAAACwQBAdAAAAAAAAAAALBNEBAAAAAAAAALBAEB0AAAAAAAAAAAsE0QEAAAAAAAAAsEAQHQAAAAAAAAAACwTRAQAAAAAAAACwQBAdAAAAAAAAAAALBNEBAAAAAAAAALBAEB0AAAAAAAAAAAsN7BR69NFHba/w5ptvDrsyAAAAAAAAAADEE1tB9EceeSTg/vbt23XgwAG1aNFCkrR7925lZmaqbdu2BNEBAAAAAAAAAEnDVjqXdevWVf7de++96tatm7744gvt2rVLu3bt0hdffKFTTz1VU6ZMiXZ9AQAAAAAAAACIGVsj0av785//rEWLFum4446rXHbcccfpkUce0dChQ3XFFVc4WkEAAAAAAAAgHvl8UmmpVFYm5eRIBQWS1+t2rQA4LeQgellZmQ4fPlxruc/n0w8//OBIpQAAAAAAAIB4VlwsjRkjbdpUtSw3V5o1Syoqcq9eAJxnK51Ldeeee65+97vf6ZNPPqlctnr1av3+979Xv379HK0cAAAAAAAAEG+Ki6WhQwMD6JK0ebO5vLjYnXoBiI6Qg+jPPPOM2rdvr+7du6tRo0Zq1KiRzjjjDLVr105PP/10NOoIAAAAAAAAxAWfzxyBbhi1H/MvGzvWLAcgOYScziU7O1tvvvmm/ve//+nLL7+UJHXu3Fm/+tWvHK8cAAAAAAAAEE9KS2uPQK/OMKSNG81yffrErFoAoijkILpffn6+DMNQp06d1KBB2KsBAAAAAAAAEkZZmbPlAMS/kNO5HDhwQFdffbUyMzPVtWtXbdiwQZL0hz/8QdOnT3e8ggAAAAAAAEC8yMlxthyA+BdyEH38+PH69NNPVVJSooyMjMrl/fr10/z58x2tHAAAAAAAABBPCgqk3FzJ4wn+uMcj5eWZ5QAkh5CD6K+88or+8pe/6Oyzz5anWmvRtWtXffvtt45WDgAAAAAAAIgnXq80a5b5f81Auv/+zJlmOQDJIeQg+vbt29W2bdtay/fv3x8QVAcAAAAAAACSUVGRtGiR1KFD4PLcXHN5UZE79QIQHSEH0bt3767FixdX3vcHzp9++mmdddZZztUMAAAAAAAAiFNFRdL69dKyZdLcuebtunUE0IFk1CDUJ9x3330aOHCgPv/8cx0+fFizZs3S559/rg8//FD//Oc/o1FHAAAAAAAAIO54vVKfPm7XAkC0hTwS/eyzz9aaNWt0+PBhnXjiiXr33XfVtm1brVy5Uqeddlo06ggAAAAAAAAAgCtCHokuSZ06ddJTTz3ldF0AAAAAAAAAAIgrIY9E79evn+bMmaO9e/dGoz4AAAAAAAAAAMSNkIPoXbt21fjx49W+fXtdeumlevXVV1VeXh6NugEAAAAAAAAA4KqQg+izZs3S5s2b9corr6hJkyYaOXKk2rVrp+uuu46JRQEAAAAAAAAASSXkILokpaWl6bzzztOcOXP0ww8/6K9//atWrVqlvn37Ol0/AAAAAAAAAABcE9bEon5bt27VSy+9pBdeeEGfffaZzjjjDKfqBQAAAAAAAACA60Ieib537149++yz6t+/v/Ly8vTEE09oyJAh+vrrr/XRRx9Fo44AAAAAAAAAALgi5JHo7dq1U8uWLTVs2DBNmzZN3bt3j0a9AAAAAAAAAABwXchB9Ndee03nnnuu0tLCSqcOAAAAAAAAAEDCCDmI3r9//2jUAwAAAAAAAACAuBPWxKKLFi3SggULtGHDBh06dCjgsU8++cSRigEAAAAAAAAA4LaQc7I8+uijGj16tNq1a6d///vfOuOMM9S6dWt99913GjhwYDTqCAAAAAAAAACAK0IOos+ePVt/+9vf9Nhjjyk9PV233367lixZoptvvll79uyJRh0BAAAAAAAAAHBFyEH0DRs2qGfPnpKkxo0b66effpIkXXnllZo3b56ztQMAAAAAAAAAwEUhB9Hbt2+vXbt2SZKOPPJIffTRR5KkdevWyTAMZ2sHAAAAAAAAAICLQg6i9+3bV6+99pokafTo0brlllvUv39/DRs2TBdffLHjFQQAAAAAAAAAwC0NQn3C3/72N1VUVEiSbrzxRrVu3VoffvihhgwZot/97neOVxAAAAAAAAAAALeEHERPS0tTWlrVAPbLL79cl19+uaOVAgAAAAAAAAAgHthO57Jjxw59//33Acv++9//avTo0brssss0d+5cxysHAAAAAMH4fFJJiTRvnnnr87ldIwAAACQr20H0P/zhD3r00Ucr72/btk0FBQX6+OOPdfDgQY0aNUrPP/98VCoJAAAAAH7FxVJ+vnTOOdKIEeZtfr65HAAAAHCa7SD6Rx99pCFDhlTe/8c//qFWrVppzZo1evXVV3Xffffp8ccfj0olAQAAAEAyA+VDh0qbNgUu37zZXE4gHQAAAE6zHUTfunWr8vPzK++///77KioqUoMGZlr1IUOG6Ouvv3a8ggAAAAAgmSlbxoyRDKP2Y/5lY8eS2gUAgHhFOjYkKttB9KysLO3evbvy/qpVq3TmmWdW3vd4PDp48KCjlQMAAAAAv9LS2iPQqzMMaeNGsxwAAIgvpGNDIrMdRO/Ro4ceffRRVVRUaNGiRfrpp5/Ut2/fysf/97//KS8vLyqVBAAAAICyMmfLAU5jhCUABEc6NiQ620H0KVOm6LXXXlPjxo01bNgw3X777WrZsmXl4y+99JJ69+4dlUoCAAAAQE6Os+UAJzHCEgCCIx0bkkEDuwVPOukkffHFF/rggw/Uvn37gFQuknT55ZerS5cujlcQAAAAACSpoEDKzTVHrQU7Efd4zMcLCmJfN6Q2/wjLmtulf4TlokVSUZE7dUNwPp+Z+qmszOx4KyiQvF63awUkp1DSsfXpE7NqASGxPRJdktq0aaPCwsJaAXRJGjRokI4++mjHKgYAAAAA1Xm90qxZ5v8eT+Bj/vszZxIIQ2wxwjLxcNUAEFukY0MyCCmIDgAAAABuKioyR/V26BC4PDeX0b5wBxPeJhbyMgOxRzo2JAPb6VwAAAAAIB4UFUmFhaRiQHxghGXiqO+qAY/HvGqgsJD2BHAS6diQDAiiAwAAAEg4Xi95UxEfGGGZOMjLDLjDn45t6FAzYF49kE46NiQK0rkAAAAAABAm/wjLmnn6/TweKS+PEZbxgKsGAPeQjg2JLqwg+rfffqu7775bw4cP17Zt2yRJb731lv773/86WjkAAAAAAOIZE94mDq4aANxVVCStXy8tWybNnWverltHAB2JIeQg+j//+U+deOKJ+te//qXi4mLt27dPkvTpp59q4sSJjlcQAAAAAIB4xgjLxMBVA4D7/OnYhg83b+lgRKIIOYh+5513aurUqVqyZInS09Mrl/ft21cfffSRo5UDAAAAACARMMIy/nHVAAAgXCFPLLp27VrNnTu31vK2bdtqx44djlQKAAAAAIBE48aEtz6fORFmWZmZhqSggCBwXfxXDYwZEzjJaG6uGUCn0wMAEEzIQfQWLVqorKxMRx99dMDyf//73+pQ89o1AAAAAAAQFcXFwYPBs2YRDK5LUZFUWEjnAwDAvpCD6JdffrnuuOMOLVy4UB6PRxUVFfrggw906623auTIkdGoIwAAAAAAqKa4WBo6VDKMwOWbN5vLycVeNzeuGgAAJK6Qc6Lfd9996ty5s/Ly8rRv3z516dJFvXr1Us+ePXX33XdHo44AAAAAAOD/8fnMEeg1A+hS1bKxY81yAAAgciGPRE9PT9dTTz2lCRMmaO3atdq3b59OOeUUHXvssdGoHwAAAAAAqKa0NDCFS02GIW3caJZjtDUAAJELeSS6X15eni644AJddtllEQfQH3/8ceXn5ysjI0NnnnmmVq1aZVn2qaeeUkFBgVq2bKmWLVuqX79+dZYHAAAAACCZlJU5Ww4AANQt5CD6JZdcovvvv7/W8gceeECXXnppyBWYP3++xo0bp4kTJ+qTTz7RySefrAEDBmjbtm1By5eUlGj48OFatmyZVq5cqby8PJ133nnavHlzyK8NAAAAAECiyclxthwAAKhbyEH05cuX64ILLqi1fODAgVq+fHnIFZgxY4auvfZajR49Wl26dNGTTz6pzMxMPfPMM0HLv/jii7rhhhvUrVs3de7cWU8//bQqKiq0dOnSkF8bAAAAAIBEU1Ag5eZKHk/wxz0eKS/PLAcAACIXck70ffv2KT09vdbyhg0bau/evSGt69ChQ1q9erXGjx9fuSwtLU39+vXTypUrba3jwIEDKi8vV6tWrYI+fvDgQR08eLDyvr+O5eXlKi8vD6m+ycL/vlP1/QOgHQBAOwCAdiDRzZolXXml+X/1CUb9gfWZM6WKCvMPsEI7ACDV2wG77zvkIPqJJ56o+fPna8KECQHLX3rpJXXp0iWkde3YsUM+n0/t2rULWN6uXTt9+eWXttZxxx136IgjjlC/fv2CPj5t2jRNnjy51vJ3331XmZmZIdU32SxZssTtKgBwGe0AANoBALQDicnrlebOrbvMm2/Gpi5IfLQDAFK1HThw4ICtciEH0f/85z+rqKhI3377rfr27StJWrp0qebNm6eFCxeGurqITJ8+XS+99JJKSkqUkZERtMz48eM1bty4yvt79+6tzKOelZUVq6rGlfLyci1ZskT9+/dXw4YN3a4OABfQDgCgHQBAO5AcfD5p5Upp61apfXvprLPMADtgB+0AgFRvB+xmVgk5iH7hhRfqlVde0X333adFixapcePGOumkk/Tee++pd+/eIa2rTZs28nq9+uGHHwKW//DDD2rfvn2dz33ooYc0ffp0vffeezrppJMsyzVq1EiNGjWqtbxhw4YpuWFUx2cAgHYAAO0AANqBxNawoXTOOW7XAomOdgBAqrYDdt9zyEF0SRo0aJAGDRoUzlMDpKen67TTTtPSpUt10UUXSVLlJKE33XST5fMeeOAB3XvvvXrnnXfUvXv3iOsBAAAAAAAAAEAwYQXRnTRu3DhdddVV6t69u8444wzNnDlT+/fv1+jRoyVJI0eOVIcOHTRt2jRJ0v33368JEyZo7ty5ys/P19atWyVJTZs2VdOmTV17HwAAAAAAAACA5BNyEN3n8+mRRx7RggULtGHDBh06dCjg8V27doW0vmHDhmn79u2aMGGCtm7dqm7duuntt9+unGx0w4YNSktLqyz/xBNP6NChQxo6dGjAeiZOnKhJkyaF+nYAAAAAAAAAALAUchB98uTJevrpp/XHP/5Rd999t+666y6tX79er7zyiiZMmBBWJW666SbL9C0lJSUB99evXx/WawAAAAAAAAAAEKq0+osEevHFF/XUU0/pj3/8oxo0aKDhw4fr6aef1oQJE/TRRx9Fo44AAAAAAAAAALgi5CD61q1bdeKJJ0oy85Dv2bNHkjR48GAtXrzY2doBAAAAAAAAAOCikIPoubm5KisrkyR16tRJ7777riTp448/VqNGjZytHQAAAAAAAAAALgo5iH7xxRdr6dKlkqQ//OEP+vOf/6xjjz1WI0eO1G9/+1vHKwgAAAAAAAAAgFtCnlh0+vTplf8PGzZMRx55pFauXKljjz1WF154oaOVAwAAAAAAAADATSEH0Ws666yzdNZZZzlRFwAAAAAAAAAA4kpYQfSvvvpKjz32mL744gtJ0vHHH68//OEPOu644xytHAAAAAAAABAJn08qLZXKyqScHKmgQPJ63a4VgEQSck70l19+WSeccIJWr16tk08+WSeffLI++eQTnXDCCXr55ZejUUcAAAAAAAAgZMXFUn6+dM450ogR5m1+vrkcAOwKeST67bffrvHjx+uee+4JWD5x4kTdfvvtuuSSSxyrHAAAAAAAABCO4mJp6FDJMAKXb95sLl+0SCoqcqduABJLyCPRy8rKNHLkyFrLf/Ob36isrMyRSgEAAAAAAADh8vmkMWNqB9ClqmVjx5rlAKA+IQfR+/Tpo9LS0lrLV6xYoYKCAkcqBQAAAAAAAISrtFTatMn6ccOQNm40ywFAfUJO5zJkyBDdcccdWr16tXr06CFJ+uijj7Rw4UJNnjxZr732WkBZAAAAAAAAIJbsJksgqQIAO0IOot9www2SpNmzZ2v27NlBH5Mkj8cjH9fEAAAAAAAAIMZycpwtByC1hRxEr6ioiEY9AAAAAAAAAEcUFEi5ueYkosHyons85uNkJgZgR8g50QEAAAAAAIB45vVKs2aZ/3s8gY/578+caZYDgPrYDqKvXLlSb7zxRsCyf/zjHzr66KPVtm1bXXfddTp48KDjFQQAAAAAAABCVVQkLVokdegQuDw311xeVOROvQAkHttB9HvuuUf//e9/K++vXbtWV199tfr166c777xTr7/+uqZNmxaVSgIAAAAAAAChKiqS1q+Xli2T5s41b9etI4AOIDS2c6KvWbNGU6ZMqbz/0ksv6cwzz9RTTz0lScrLy9PEiRM1adIkxysJAAAAAAAAhMPrlfr0cbsWABKZ7ZHoP/74o9q1a1d5/5///KcGDhxYef/000/Xxo0bna0dAAAAAAAAAAAush1Eb9eundatWydJOnTokD755BP16NGj8vGffvpJDRs2dL6GAAAAAAAAAAC4xHYQ/YILLtCdd96p0tJSjR8/XpmZmSooKKh8/LPPPlOnTp2iUkkAAAAAAAAAANxgOyf6lClTVFRUpN69e6tp06Z67rnnlJ6eXvn4M888o/POOy8qlQQAAAAAAAAAwA22g+ht2rTR8uXLtWfPHjVt2lRerzfg8YULF6pp06aOVxAAAAAAAAAAALfYDqL7NW/ePOjyVq1aRVwZAAAAAAAAAADiie2c6AAAAAAAAAAApBqC6AAAAAAAAAAAWCCIDgAAAAAAAACABYLoAAAAAAAAAABYIIgOAAAAAAAAAIAFgugAAAAAAAAAAFggiA4AAAAAAAAAgIUGblcAAADATT6fVFoqlZVJOTlSQYHk9bpdKwAAwsN+DQBgl88nrVhh/r9ihdSrF/sMK4xEBwAAKau4WMrPl845RxoxwrzNzzeXAwCQaNivAQDs8u8zBg0y7w8axD6jLgTRAQBASiouloYOlTZtCly+ebO5nINHAEAiYb8GALCLfUboCKIDAICU4/NJY8ZIhlH7Mf+ysWPNcgAAxDv2awAAu9hnhIcgOgAASDmlpbVHXVRnGNLGjWY5AADiHfs1AIBd7DPCQxAdAACknLIyZ8sBAOAm9msAALvYZ4SHIDoAAEg5OTnOlgMAwE3s1wAAdrHPCA9BdAAAkHIKCqTcXMnjCf64xyPl5ZnlYI/PJ5WUSPPmmbfkUASA2GG/BgCwi31GeAiiAwCAlOP1SrNmmf/XPHj035850yyH+hUXS/n50jnnSCNGmLf5+eZyAED0sV8DANjFPiM8BNEBAEBKKiqSFi2SOnQIXJ6bay4vKnKnXommuFgaOrT25ESbN5vLCaQDQGywXwMA2MU+I3QN3K4AAABwls9nzqReVmbmsSsoYBSBlaIiqbCQzytcPp80ZoxkGLUfMwxzJMvYseZnzGcKp9HWAbWxXwMA2OXfZyxfLu3dKy1eLPXqxT7DCkF0AACSSHGxGdSsPio4N9e8XI/RBMF5vVKfPm7XIjGVltYegV6dYUgbN5rl+IzhJNo6AACAyHm90tlnS2++ad4SQLdGOhcAAJIEaTUQa2VlzpYD7KCtA6wxRwUAANFBEB0AgCRQX1oNyUyr4fPFtFpIcjk5zpYD6kNbB1ijgwkAgOghiA4AQBIIJa0G4JSCAjOFhscT/HGPR8rLM8sBTqCtA4KjgwkAgOgiiA4AQBIgrQbc4PWaOail2oF0//2ZM8mtCOfQ1gHB0cEEAEB0EUQHACAJkFYDbikqkhYtkjp0CFyem2suZ5JHOIm2DgiODiYAAKKrgdsVAAAAkfOn1di8Ofil3B6P+ThpNRANRUVSYaE5wrGszAxgFhQwAh3Oo60DgqODKXQ+H/stAIB9jEQHACAJkFYDbvN6pT59pOHDzVu2NUQDbR0QHHNUhKa4WMrPl845RxoxwrzNz2fyVQCANYLoAAAkCdJqAEgFtHVAbXQw2VdcLA0dWjuH/ObN5nIC6QCAYEjnAgBAEiGtBoBUQFsH1ObvYBozJjBAnJtrBtDpYDJTuIwZEzwdlGGYHQ5jx5rtC+0JAKA6gugAACQZf1oNAEhmtHWIR27n2aaDqW6lpbVHoFdnGNLGjWY52hcAQHUE0QEAAAAAiFBxcfBR4LNmxXYUeKw7mNzuOAhFWZmz5QAAqYOc6AAAAAAARCBV82wn2gSdOTnOlgMApA6C6AAAAAAAhKm+PNuSmWfb54tptaIuETsOCgrMqwNqTr7q5/FIeXlmOQAAqiOIDgAAAABAmELJs50sErXjwOs10+tItQPp/vszZ8ZvOppk4fNJJSXSvHnmbbxtJwAQDEF0AAAAAADClIp5thO546CoSFq0SOrQIXB5bq65PJb561NRoqUAAgA/JhYFAAAAACBMqZhnO9E7DoqKpMLCxJkQNVn4UwDVvILBnwKIToz4lkiTCAPRQBAdAAAAAIAw+fNsb94cPL2Jx2M+nkx5tpOh48Drlfr0cbsWqaO+FEAej5kCqLCQwGw8Ki42v7/qV6Dk5prpkej4QKognQsAAAAAAGFKxTzb4UzQSR7s1JbIKYBSXSJOIgxEA0F0AAAAAAAiUFQk3XqrlFbjDDstzVyebCM1Q+04IA82Ej0FUKpK1EmEgWggiA4AAAAAQASKi6WHHqodSPL5zOXJGCy2O0Eno1ghJUcKoFTEFQRAFYLoAAAAAACEqa6Rmn7JOlKzqEhav15atkyaO9e8XbeuKoDOKFb4hZMCCO7jCgKgCkF0AAAAAADClOojNf0TdA4fbt5Wz/2e6p8NqqTi3AHJgCsIgCoE0QEAAAAACBMjNa3x2aA6uymAED+4giD5+XzSihXm/ytWcGVQXQiiAwAAAECK4aTZOYzUtMZng5rqSwGE+MIVBMnNP+nzoEHm/UGDmPS5LgTRAQBA3PL5pJISad4885YgDwBELtlPmmO972CkpjU+GwRTVwogxB+uIEhOTPocOoLoAAAgLvmDPOecI40YYd4mU5AHANyQ7CfNbuw7GKlpjc8GSA5cQZBcmPQ5PATRAQBA3En2IA8AuCHZT5rd3HcwUtManw38uMIwsXEFQfJg0ufwNHC7AgAAANXVF+TxeMwgT2EhB+8AEIpQTpr79IlZtRwRD/uOoiJz/aWl5kSZOTlmmhL2VXw2MDuxxowJbINyc80rFehIAWKLSZ/DQxAdAADElWQO8gCAm5L5pDle9h3+kZqojc8mdfmvEqnZyeW/SoQrEoDYYtLn8JDOBQAAxJVkDvIAgJuS+aSZfQcQn5I9jRSQiJj0OTwE0QEAQFxJ5iAPALgpmU+a2XcA8Yncy0D8YdLn8BBEBwAAcSWZgzxAdUywhlhL5pNm9h1AfOIqESA+Melz6AiiAwAQAwTL7EvmIA/gV1ws5edL55wjjRhh3ubnm8uBaErWk2b2HUB84ioRIH4VFUnr10uLF5v3Fy+W1q1L3GOBaCOIDgBAlBEsC12yBnkAqWqCtZqXt/snWKNtQLQl60kz+w4g/nCVCBDfvF7p7LPN/88+m87muhBEBwAgigiWhc8f5Fm2TJo717xNhiAPUhsTrCFeJOtJM/sOIL5wlQiAZNHA7QoAAJCs6guWeTxmsKywkBMHK16v1KeP27UAnBPKBGvR3PZ9PvM1ysrMS+gLCmiHkDzYdwDxxX+VyJgxgfvA3FwzgE4nF4BEwEh0AEgxPp+0YoX5/4oVjHaMplCCZQBSQzxMsEaKKcQCc4EAqI6rRID4RHzAPoLoAJBC/IGTQYPM+4MGETiJpngIlgGIL25PsEaKKcQCHTUAgvFfJTJ8uHnLFVCAu4gPhIYgOgCkCAInsed2sAxA/HFzgjXysdvDCOrIcLwBAED8Y38dOoLoAJACCJy4w81gGYD45OYEa6SYqh8jqCPD8QYAAPGP/XV4CKIDQAogcOION4NlAOKXf4K1Dh0Cl+fmmsujlR821immEm1ENyOyIsfxBgAA8Y/9dXgIogNACiA3t3vcCpYBiSbRAq6RcmOCtVimmEq0Ed2MyHIGxxsAAMQ/9tfhaeB2BQAA0UdubncVFUmFhWZPflmZ+TkXFDACHfArLjYDmNVHxOTmmldyJHNHk3+CtVjxp5javDl4sNjjMR+PNMWUf0R3zdfwj+iOxw7EUEZkxfI7SzSxOt7w+dinAgAQLuID4WEkOgCkAHJzu88fLBs+3LzlZB8wkUIjdvwppoIF0CVzeaQpphJ1RDcjspwRi+ONRLvKAQCAeEN8IDwE0QEgBZCbO7WkWloMJK5EDbjCWqLm2GREljOifbxBpxuQODgeBeIX8YHwEEQHgBRBbu7UwAg9JJJEDbgmKp9Puu66ustcd11kgY5EHdHNiCznROt4g043IHFwPArEP//++ogjApd36EB8wApBdABIIf6J7BYvNu8vXhz9iewQO4zQQ6KJt4Brso+aKymRdu6su8zOnWa5cCXqiG5GZDkrGhPn0ukGJAaOR4HEYjWAALURRAeAFOP1Smefbf5/9tkEBJIFI/SQiOIp4BrqqLlEDLjbDY5HEkRP5BHdXLHlLKfnAom3TjcAtXE8CiQOOrxCRxAdAIAkkKwj9BIxUAn7/AHXusQi4BrqSQSXqVtL9BHd0RhBDWfEU6cbgOCS9XgUSDZ0eIWHIDoAAEkgGUfoEahMfl6vOUq1LpdfHt2Aa6gnEYk8aqdPH2fLWUn0Ed1Oj6CGMxL5KgdEjk71xJCMx6NAMqLDKzwE0QEASALJNkIvkQOVsM/nMwMidXnppegGS0I5iUj0UTsFBVJaPUf/aWnOBCEZ0Q2nJfpVDggfneqJI9mOR4FkRYdXeAiiAwCQBJJphF6iByphX30BbCn6o2BCOYlI9FE7H34oVVTUXaaiwiznBEZ0w2mJfpUDQkenemJJpuNRIJnR4RUegugAACSBZBqhl+iBStgXD6NgQjmJiIf6RiLR6w9IXOWQSuhUTzzJdDwKJDM6vMJDEB0AgCSRLCP0CPSlDidGwUSaJzeUk4hEH7WT6PUH/Oq7yoH82ckhnjvV2casJcvxKJDM6PAKD0F0AACSSDKM0CPQlzoiHQXjRJ7cUE4iEn3UTqLXH7CD/NnJI1471dnG6pcMx6NAsqPDK3QE0QEASDKJnoeYQF/qiGQUjJN5cu2eRCT6qJ1Erz9QH/JnJ5d47FRnG7Mv0Y9HgVTg7/BavNi8v3gxHV51IYgOAADiCoG+1BLOKJho5Mm1O2ou0UftJHr9ASvkz04+8dapzjYGIBl5vdLZZ5v/n30251h1aeB2BQAAAGryB/rGjAkc7ZWbawbQCfQll6IiqbDQzGtbVmaOKiwosD6IDyVPbp8+9uvhHzXndH3jTaLXHwgmWu0C3OPvVB861AyYVw9eu9GpzjYGAKmNIDoAAIhLBPpSi90AtuRunlyfL3CbvOyyxNwmQ/m8gUQQr/mzEZl46lRnGwOcUfNYiuN7d/l80ooV5v8rVki9evF9WCGIDgBAiDjwi51kCfSxzTjLrTy5xcXBAzmzZnF1BOC2eMyfHSn2HaZ46VRP1m2M4BliiWOp+OL/PnbulObNkwYNklq35vuwQk50AABCUFws5edL55wjjRhh3ubnM5EUrLHNOM+NPLlMJgfEt3jLnx0p9h2B4mGSymTdxgYNMu8PGpTa2xiij2Op+ML3ETqC6AAA2MSBBkLFNhMdsZ58lsnkgPiXTJNSs++IT2xjQPg4loovfB/hIYgOAIANHGggVE5uMz6fVFJiXmZZUsJ2JlXlye3QIXB5bq653MlLUEOZTA6Ae2LZLkRLffsOw5Cuv146dCj2dUNqbGMSx7RwHsdS8YXvIzzkRAcAwIZQDjSSIYc3IufUNkPuSGuxypPLZHKpJdZ5qMl77ax4yZ8drvr2HZK0fbu5H3jySfYDbkj2bYxjWkQDx1Lxhe8jPATRAQCwgQMNhMqJbcZ/uXXN0WL+y60TZdRbNMVi8tloTSZH8DT+xLrTik6y6EjkSant7ju2b2c/4KZU2MY4poWTknFi3kTG9xEe0rkAAGADBxqwy5965fPP7ZW32ma43Dp+RGMyOSYNjJzTaY5inSOYnMR1S9U0VqEeR7AfQKg4poUbkm1i3kTH9xEegugAANjAgQbsqB4YnTq17rL1bTPkKowfTk8mR/A0ck53QsS604pOsrqlcidTfccb1bEfQDjcOqZN1Y4xmJJpYt5kwPcRHoLoAADYwIEG6mMVGA3GzjYTyuXWnJhGn1OTyRE8jVw0OiFi3WlFJ5m1VO9kqn68YRdpNxAKN45pU7ljDFWSYWLeZML3ETqC6AAA2MSBBqzUFRgNxs42Y/cy6q+/5sQ0VoqKpPXrpWXLpLlzzdt160L77RM8jUyonRB2O5hinSM4FXISh9O5RyeTyX+80aaNvfKk3UCoYnlMm+odYwjkxLEUnOP/PhYvNu8vXsz3URcmFgUAIARFRVJhIZMBIlB9gVG/u++Wzj3X3jbjv9x68+bgASWPR2rVSpo4sfZjTDwaPZFOJpcKwdNoCqUTYtcu+5N2xjpHcLLnJA53wtRQvt9EndTRrqIiafBg83Pbvj14GY/HfJxUcu5LxImi/ce0y5dLe/eawbNevZytd30dYx6P2TFWWBj/nxeck8gT8yYjr1c6+2zpzTfNW36L1hiJDgApxueTVqww/1+xIr5GcyVKSgr/gd/w4eYtBxqwG/Ds0sX+NmPncmsrqTRiM9Eke/A02uz+1l59NbSRj7HOEZzM82xEMuqUTqZA6enSk0+a2wOp5OJXIqcq8QfPpOgEz7j6CkAyIYgOACnEf5A/aJB5f9Cg+DnIT+QTkESXKJ0X8SxagdG6LreeNEnaudP6uZyYxqdkDp7Ggt3f0IsvhpYSJNY5gpN1no1I07HQyVQbqeTiG6lK6kbHGIBkQhAdAFJEPB/kx3Pdkh2dF86IZmDUKnfkscfaez4npvElWYOnsWLnt5adbZ3+QrLuYIp1sDIZg6ORjjqlkyk4cgjHJ3L4183nk374wV7ZVOoYA5C4CKIDQAqI54P8eK5bskuEzotEGSXvD4xaTSxqGJEFRoOlEGLEZuJKpuBprH+jdjohrrjC3rqCdTDFOliZbMHRSEed0slkjVRy8YdUJdb8gzRuuaXucqnaMQYgMRFEB4AUEM8H+fFct2SWCJ0XjJKvGyM2E1syBE/d+o3W1wlRWGhvPVYdTLEOViZTcNSJzr1k6mRCciNVSXBWgzRqSvWOMQCJx/Ug+uOPP678/HxlZGTozDPP1KpVqyzL/ve//9Ull1yi/Px8eTwezZw5M3YVBYAEFs8H+fFct2QW750XiTBKvjp/p4QVj8f5TglGbCa+RA6euv0brasTIlodTIlyZYybnPrsg32/33wjtWrF54/4wRVhtdU1SKMmOsYAJBpXg+jz58/XuHHjNHHiRH3yySc6+eSTNWDAAG3bti1o+QMHDqhjx46aPn262rdvH+PaAkDiiueD/HiuWzKL586LRBglX5NbnRKM2IQb4uU3WrMTQjKDqwsWSNdea953qoMp0lH3qRKAd7Jzr/r3u2uX1KkTVyYlk2T4TXBFWG31HQ/5PfJI4l19BQCuBtFnzJiha6+9VqNHj1aXLl305JNPKjMzU88880zQ8qeffroefPBBXX755WrUqFGMawsAiSueD/LjuW7JLJ47L+J9lHwwbnZKJENaECSWePyN1gxyT5xojlpu1SqwXDgdTJGOuk+11FROd+65fdUDnJcsvwmuCKvN7nFOu3ap9bkASA6uBdEPHTqk1atXq1+/flWVSUtTv379tHLlSreqBQBJKZ4P8uO5bsksnjsv4nmUvBW3OyUSOS0IEk+8/Uatgqy7dkk7d0qTJ4ffwVTfqHvDkK6/Xjp0KLS6JXsA2KnOvUg/f8SfZPtNcEVYILePhwAgmhq49cI7duyQz+dTu3btApa3a9dOX375pWOvc/DgQR08eLDy/t69eyVJ5eXlKi8vd+x1Eon/fafq+wdS1YUXmgfzd9wh7dpl/v4bNy5Xbq40fbr5uFvNQvW6bd5ctTwe6pbMZs2SrrzS/L96gKJ650VFhfkXS+3bS40b2ysXL9tFjx7SMcdIW7YED/Z4POYJdo8e8VNnjgcQrnj6jfp85r4jIyP44x6P9MIL0mefmZ1LobZpK1aYgfi63u++fWaqkVmzzP1VKHW7807pggvc6/iKdjvw619X/R/O/sTu53/MMeY+q/rnj/iTCL+JcFx4oVnnlSulrVvNtu+ss8z3kAi7WCfbgUQ8HgLAeYHd9+0xDDtTPjhvy5Yt6tChgz788EOdddZZlctvv/12/fOf/9S//vWvOp+fn5+vsWPHauzYsXWWmzRpkiZPnlxr+dy5c5WZmRlW3QEAAAAAAAAAie3AgQMaMWKE9uzZo6ysLMtyro1Eb9Omjbxer3744YeA5T/88IOjk4aOHz9e48aNq7y/d+9e5eXl6bzzzqvzg0lm5eXlWrJkifr376+GDRu6XR0ALkiGduD112uPXO/QQbr/fkaihcrnqz166s033f18X3+97lHyzz8fX9+z/zNcvFiaP98cOelX/YqKeOHzSR9+WK6fflqiZs36q2fPhgk16g/uC+U3Gs32etEi6eqr6y/397+bqSJCtWKFNGiQvbL+EZb+Ue/RrpsT4v14IJLPH3Vz4zgqEX4TqSga7UCw7Ssej4cAmOL9eCDa/FlL6uNaED09PV2nnXaali5dqosuukiSVFFRoaVLl+qmm25y7HUaNWoUdBLShg0bpuSGUR2fAYBEbQf8+TRrXkv17bfmcjdyUPp85iR6ZWVmnseCgsQ5iW/Y0JzUyy8ePl//+seMCcybmpdnXrIfTzlGi4tr1zM7W7riCqmwMP62BX99d+6U5s2TBg9uqNatG2rWrPj6XBHf7P5GrdqTb76RLrlEWrBAuvTS8OuRkyP9/LO9cuHs7nr1klq3NgNBdq7f/fpr6aOPzLkJol03J8Xr8UAknz+subWfT6TfRCpysh0oKjKPgRL12BhwSqKdI8br8UC02X3PrgXRJWncuHG66qqr1L17d51xxhmaOXOm9u/fr9GjR0uSRo4cqQ4dOmjatGmSzMlIP//888r/N2/erDVr1qhp06Y65phjXHsfAIDYqW+SMY9HGjvWPHCP1QFKsCBqbq4SMigZT59vIpyAWQUiduwwv/94rm/1HMP+Cd2cDJzE6qTB6nUS7aQlEdX3G62rPfEbPtxsV8IddeqfJNkqyOrxmI+HO0myf/LrUOrnn1A12nVLBZF8/gjOzf08v4nU4p/0HEhVyXSOCFOamy8+bNgwPfTQQ5owYYK6deumNWvW6O23366cbHTDhg0qq3YUtGXLFp1yyik65ZRTVFZWpoceekinnHKKrrnmGrfeAgDY5vNJJSXmyM+SEvM+QldaGnggUpNhSBs3muViwR+UrFknf1CyuLju58fbdhFvn6//BGz4cPM2noKghw5Jv/uddSBCMgMRbn+nfvUFTiTn6ltcLOXnm1c4jBhh3ubn1/97cOp1br89Nq/vpHhrC+yq6zdaX3sime/z0kvD/278QVapKpWMX/VJkkNpO2p+F4WFZgdTdra95+fkRK9uqaioyPz827SxV97/+SM4N/fz/CYApIpIzxERn1wNokvSTTfdpO+//14HDx7Uv/71L5155pmVj5WUlGjOnDmV9/Pz82UYRq2/kpKS2FccAEIQq4BSKrA7wiwWI9EiDUrG43YRT59vPCsuNkeS7NhhXSbaHQ6hBl1jFTiJ1UmD1ets2iQ9+GBinbTEY1vghFDaiUg6cPxB1g4dApfn5oZ+dYXVdyGZ21RdgVyPx0xnU30UrZN1S2VFReZvuK6OjGCfv12J2okVDrf38/wmACS7WA5cQWy5HkQHgGRHL7Sz7I4wi8VItEiCkvG6XcTT5xuv/N/d9u32ykcjEBFO0DUWgZNYnTTYSRMSzdd3Ury2BU4IpZ2ItAOnqEhav15atkyaO9e8Xbcu9AB6Xd/FG29If/2rGawNZRStE3WDlJ4uPflk6J9/fZK1E8tKPOzn+U0ASGbxdmUvnEMQHQCiiF5o5/nzadY8gfaLZCRaqMINSsbzdhFPn6+brEYlhhO8dToQEW7QNRaBk1idNNhJExLN13eKm21BLEbe+tsTuyLtcIok/ZPd78Kf2iXUUbTxnJoqkYQzirmubT0anVjxPqo9Xvbz/CYAJCu3r/hB9BBEB4AoohfaefGUTzPcoGQ8bxfx9Pm6pa5RiaEEb6MRiIgk6BqLwEmsThrcfr5T3GoLYjXytnp7YoebV7iE8l0witZdoXz+dW3r0ejESoRR7eznASC64uGKH0QHQXQAKS+aI4bohY6OeMmnGW5QMt63i3j5fJ1g5/ddvcw990iXXGI9KvHVV0N7facDEZEEXWMROInVSYPbz3eKG21BrNPHFBVJCxbUvV3FwxUuoX4X9Y2ijffRyInOzijm+rb1e+91thMrkVIzJdN+HgDiTbxc8QPnNXC7AgDgpuJicxRS9ROe3Fwz0OTECQS90NHh80mtWknTp5t5qbOzzRPBgoLYjpzyByWHDjUPhqqPZqsrKJkI20VRkZm2oLTUDBrl5MT+842Und93sDLBGIb5nb74or3Xzs42c/c6HYiINOjqD5yMGSPt3Fm1PDfX3FYjra//pGHz5uCjOz0e8/FITxrqex0rTr2+U2LdFtQ38tbjqUpZ4uRv/dJLzXVfemntx+Jl5KuT30W0jy3c4POFvz+I5LmR1Le+bf3RR+2ty06769ZvKxLJsJ8HgHgU7jki4h8j0QGkrFiMGKIX2nnVL5X+zW+kW26R7rxT2rXLnQORcEZz2ckTHA/bRSLnK7Xz+7YqY8UwqjptrH7Tkvn4pk3RCZbZDfS1bWv9WFGR9O230rRp5v1p06RvvnGmvrFKE1DX61iJx5OWWO8j3EwlNXSo9PLLtdu+eBn56tR3kUijke2KJEWJW+lN7Gzr1TsS62Kn3Y3nNG11SeT9PADEM674SU4E0QGkpFhN5kbeSWfFa3Ai1Py4Xq95wlqXyy9nuwiXnd/3mDHSzTeHNorZ74orzNtgv2mPxxyBnp4e+nrtqC/Q5zdqlPXvobhY6tRJGj/evD9+vHnfqd9PuCcNoaa/sHqdvDzpttviN1hbXaz3EW6nkornXOJOfBfxPGl0uCLZ77q5z7a7Dbdq5Uwnltu/LQBA/Inn4x6EhyA6gJQUyxFD9EI7I96DE6GM5vL5zEBhXV56KbECLfHEzu970yYzkBOOwkL3ftN2R2BbBamKi4PnfN+0yVzuZCA9lJOGcEerWr3OAw8kzklLLPcR8ZBKKp5Hvkb6XSTqaGQrkex33d5n13U1TnVjxpi3kXZixcNvy03MAQAAwcXzcQ9CR050ACkp1iOGyDsZuVCCE336xKxaYanvvUiJ817iUTRH+vlHJXq97v2mCwulSZPM4M6PPwYvEywHr88nXXdd3eu+7jrncvb6Txrq4x+tWjPY5u8IqC94afU6dl8/HsRqHxGrnPWJLJLvItbHFpHmGvf5pBUrzP9XrJB69Qp8fiT7XTf32cXF5pVGdfFv63fdJZ1wQvAc9qHME5HKv61knAMAAIBgCKIDSElujBhKpIBOPEqmS6WT6b3Eo2iO9KueZseN37TdiVCl2kGqkpL6cwDv3GmW69MnNh0EiTgZX7TEYntioit7wv0uYnlsEWng0v/8nTvN0cODBkmtWwc+P5J9lRP7uXA6Caw65aqrua070YmVqr8tq8970yZ7naAAACQS0rkASElM+Jl44v1S6VAuZXZicshYSNTLs+3mDQ+Hm2l2Qp0I1c8fpCopsVf+ySdjNxFgsqW/SASkGIueWB1bRJpr3O7zI9nvRrrPDifFU12dctV16FB7W3ficnur31aw10sG9X3ehpF4cwBEQ6IeSwEAaiOIDiAlMeFn4onnjo9QT/btBnmvusq9yVLDzVEdD+zmDQ9HLAK6wU647QaHggm1Y2nRouA506MxESBXZbgjmhNdpXLAKBbHFvVdvVFf4DKUXOWR7HcjeW64nQR2UqVJ0siR5oSi0do2a3624bTbiSCU1HSpKpGPpQAAtRFEB5CyGI2XWOK14yOck327Qd4tW6ITuKxPpKMc44HV7zs7O/J1RzOgW1wsHXVU4An3UUdJ994b+gj0mkGqSFOFGIaZM93JwJPdqy3cviojEqkUVHYiYJTon1e0jy0iDVyGcvVHJPvdcJ9rN8h/6FDt7cRu23zffdEJZvr3nTUnrXZrXx5tdifnDncS70SXDMdSAIBABNEBpLRojsZD5GoGUwoL46vjI5QRfTVZBVpCWUc0RPKe4k2w3/emTZGneolWyqDiYumSS2oHHDZvliZODG1dwYJUBQVSWoRHfjt3mgF9VKkr6BuvoxCjUS8nAkbx+nmFKprHFpEGLkO9+iOSToFwnms3yN+hQ+3Oxq+/tvfe/JwMZibTvtOu7dudLZdMUnF7AJC4ak40TttkjYlFAaQ8JvwMTzgTfoWirknT1q+PzaSH9QllRF+wbayoSGreXOrXL/x1OC3S9xRvgv2+rSZ/q4/HY26D0UgZ5POZo7ydkptrBtCrB6k+/FCqqIh83bNmSXfd5cxvbts2Z8vFWl3tlBR8wj1/4M6tK56iMRGgExPEWtWrrs8rWvshJ9YbrWOLSAOX4eQqj2TizVCfazfIv2NH4H1/Z2Pr1tKuXfbadicnL062facddq/scuIKsESTitsDgMRkZ6JxVCGIDgAIWV2BIyd2tuEEU9zgRD5nu8HBzZvNUa7R7jhIhRzV/tGRNbfhvDzp8sulhx4y71ff/qKdMqikxDx4dUJ2tvTNN1J6euByp76zXbucO/GP9wmD67JokXTppbWX+9upVq0iCypHg92JAEOtV6QBIzujNq+/Xvr5Z3MEckGB9Oqrke2HrALl0d6/Rap168jK+XOVb94c/PO26iyMpFMglOdG+ls/eLDqN2Y3kO5EMDMV9p011XUlXTjlEk1dnW2puD3EQrQH8ACppvo5d+PGVcvj7Zw7npDOBQAQkmjneEykS2CdCADaXcctt8QmxUEiBzVDYZVu4YEH3EkZ9P77zq1r+3Zz1HlNTn5nTp34x/OEwXVZuNDscAnGP7ljXZ0i1QN3sRStiQAjDRjZqdf27dJvfmO2f+3amamPwt0PWaWNuf32+M9hbLezzapcvM4v4md34m0r+/aZI9JDDdxG2qalyr6zOv93VZd4bL+dUF/qqVTcHqItWdJ9AfEikc654wlB9BRDriMkkkSfXCwZxWJna3dE42OPub9tOBEAtBswqHlpfrSCOoka1HSSG3MlbNxor1znzvbKBQsI2flus7Lsrd+pE/94D+gFU1wsXXaZM+1OrEchRmsiwEgDRqF+DlYBYjv7IauO4E2bpAcfjP+TSSdSaMTzxOr+NiGUVFs1+XxVbfjdd9t7TqRtWiruO/3flccTvP32eOKv/XaCncEkqbg9RBOTtALOC+UqQlQhiJ5C/L23gwaZ9wcNovcW8YvRBvEpFjtbu8GUW25xf9twIgBY1zrqEq2gjp33NGOG+R273YkRifraGH/6geHDzdtoBwHy8uyVO+00e+WCBYTsfLd//3vd6SKiceIfzwG9mvwdiU6J9SjEaE0EGGnAyMnPoa79UH3pbMJdbyx9+629cvWNxPZ3Fi5ebN5fvDi5Jlb3t+GTJsUmmJmIHYJOSKT22wl2B5NIqbk9RAOjZYHoIO1UeAiipwh6b5FI2F7jVyx2tuEEU9zcNpw4gbRaR30jDqMV1KnrPd16a+xSy0TLwoWRpYKIhr597ZUbOTKygFB92+vQodLf/ma9bkl6+GHnO1HcGP0fDjtpR+xwaxRitCYCjDSAGGkKj2CC7Yec+P7cPJksLjZTldQnkUe4OtFRVT23eSyD26kWUPaLVfsdD1eohjKYJFW3B6cxWhaIDtJOhYcgegqg9xaJJJLtNR4OrpNdLHa24QRT3G7LnDiBDLaORx6x99xoBHWC1efhh81JN+Mp+ByqRYvM0eXBuLkd9elT/4SBrVtL554beUCovhGoRUXSyy/XznXr70QZNy46nSixHv0fjlB+a/V9n26MQozmRICRBIzCvSKnLsH2Q060lW6dTNoNLttNoRGvV6hG2tHRunXtCUJjGcxMlA5Bp0W7/Y6XK1RDHUySqtuDkxgtC0QHaafCQxA9BdB7i0QS7vYaLwfXyS4WO9tI0pu42ZY5cQJZcx12A1nRCupUr09BgRk8TeQO2eJi6dJL666jW9uR12s9Atzvb38zyzkREPJ6pbPPNv8/++za22uwE/8ZMxK/EyVSofzW/vY36bbban+2Xq/ZGeFGEKWgwF5nTbhteCQBI6vtOlR17YciaSvdPpm0G1yeNKn+zzuer/iLNBDmbydrIpiZuOJpew1nMEkidBDHM0bLAg4pL5e2bZO++kr66CN5t2ysPOfO13qd7VteWZS0U9YauF0BRB+9t0gk4Wyv/oPrmsE9/8F1LC6Z9PnME9yyMvMgrqAgOXc4/gD30KHmzrX6Z+7kztYfTBkzJvQRaYnWltW17fg7LTZvDh689njMx2MR1Amlg6vmKMB4EGqKADe2I/8I8JtvDpzYMTfX/N1Vb8eKiqTCwui2O/4Tf8n8/PLzrTtRPB6zE6WwMDZtXyzb3Oqv1batGeTdssU6r7bXK730kvn/Qw/VLldRYU5gWV5ufl7Jtr+ovt2Eqvp2vXmzmTpqx47QcpgbhvV+yN+m1rdfieb+LVx226Rjj6378fqu+Iv1b7mmaAbCItk27Sourn3sEqwNd0IqHHvG2/YaT8dlqYLPHKjm8GFzdvUffwz+16+fdNZZZtnVq6XRo6se278/cF3Tp6vojju0aJH01O93qfeupZLOlGT+pmbOpKM5GILoKYDeWySSULfXeDi4juUJUzywCnA7vbOtGST84QczoFKfRGrL6tt2YtVpYUeidsj6gwxLl4bWIePWdhRKcDwWASG/eOpEiWWbG+y1Wreu2r8E2/fMmyddfHHdnQ6S+dudOTO2+4vSUvPcqy47d7rbGVZ9u27cOHj7V5exY60/S6/XHA364IPWzx88WFqzJrr7t3A4dTwf6m85moHaYOuuL2BWF7c7AGI5qCMZjz2DbQ/xtO+R4uu4LFXwmSPpHDxo3jZqZN6WlUnvvWcGunfvrh0YHzPGnMxJkv75TzNQbiU9vSqILklr19Yuk5UltWwpZWRI+n/nHj3z9PlTp+o7mWkee/XiN2XJSDF79uwxJBl79uxxuyoxc/iwYeTmGobHYxiSYTRufMh45ZVXjMaNDxmSuTwvzywHuK3m9lrzr+b2umxZ8HI1/5Yti059X345eF09HvPv5Zej87qROnTIbAcOHToU9joOHzY/17lzzdtotyGhbhvxUm8roWw7L79svvfq5fLyYrt9uf1bC0ewz83OX6rsE0NpB+bOtffZzZ0b3TpHu82t3j5Mnmz9WpJhtG5t/Zu0+3uJ9f4iXr7HUIT6O66rDfLvR+pbxy23xMd+ojqn9oE1t4Ga5wXVt4Fgn31urjPbal3r9v/Ord5rPO6H6tu2nDzfStRjz7pYbQ9jx8ZnmxUPx2VOcuK8INpuu80wvN7Az9zrNZcDMXfggGFs3mwY//mPYZSWGsZrrxnG+vVVj69ZYxhXXmkYgwcbxq9/bRhduhhGTo5hZGSYG++TT1aVfe+9uhu46dOryq5ebTb0LVoYxtFHG8appxrGuecaxtChhnHttYaxeHFV2Z9+Mox33zWMjz82jG++MYydO+vcCSVCOxBNdmPFjERPATV7b6uj9xbxJtTRBm6Ojo2HUfBuiuUoWP/rRToSJV5GboW67cQidUd97IwObN3afG8+n/vbvNWIQDvYJ9bmxlVtNUcl9uwZ3TY3WPsQjP+1Gjc2Bw5t21b7NxnKPieW+4tEvDrR3/6VlEiXXSbt2hW8nJ1L+u3mFX/kEalBA+mBB8KqclQ4NRrT7nf79ddmfvWavzcnRlXbGbEd7Iq31q3rv5JCcueKqFiNmE7GY8+6toeZM+2tI9ZtVjwcl6WS4uLg6dF8PnN5jx6JewUGXLZvnzlBRrAR4D/+KF1xhXSmmeJE77wjjRplLvePJq/ur3+VrrvO/H/HDun5561f98cfq/7v0MEcXd6yZfC/bt2qynbrZqZ0SbMxvWXTplL//vWXQ0gIoqeI6ukXqh98xsPlqUBNoaQLcTMgEG+XmNrl80krVpj/r1gR/cu1nLwUPJJUMsXFVVfCVbdpk7n85Zdj1xaGs+3EutOiproCOH47d5rHgE52TISz/dQVZKjPzTezTwwm1jlJgwW027Qxz0msRNLmhtrpYhhm3fzpQWoKdZ9Tve7+FAbRCMz07Gmed1VUWJdJSzPLxROvVzr3XOmpp8zvSQoviBxKcHXGDGnqVPPKaCk+8k87kU7Nzm+5Qwdzgs5oBGrtBoHXrasdpPT56r6K3c+NTqBYDepI1GNPK/VtD5K5jVVUxGbfEwq3j8tShZ1jukTrOIJDDMPM8/3jj2awuWlTc/n//ie98UZgMLx6kPyBB6QLLzTLvv22dOml1q/RtWtVEL1BA2nr1qrH0tKqAt0tWkjNm1c91rmz+TrVH68eGM/KCiy7ZIm992wneI6oIoieQoqKzDyPTzxh3p82Tfr976tODhBf4uFkzU12R3i4OdlMIuaI9gemdu408/YOGmSO7IrWSOxojPwOZ/SPz1c1MMDKddfZPwCP9PeZiNuOZH/CV6fyv4a7/dgdbRrMxReH97xkF8ucpFYB7boC6NWF+ruJpNPF6rXCzev86qvSlVdG72qZ0tK6A+iS+XhpqRm0jjeRBpFDCa76fNLs2WZwxqpTZ/bsus+9oyHSEbB2rlC99lpp4kTrdUQSqA01CFx9/T5f/E4wGKtBHYl6/GDFzv7a5zNvyYedmpKt4wg1GIY5GjzYKPC+fc0JZiRp2TIzKF0zMF5ebj4+f755uZokffaZ9Mc/Wr/mli1V/7dpY54MVw9wt2oVfBT4GWdI//531WPNmtXekfp16CDddluYHwriGUH0FFIzeDZ+vHn5UyJPQJOs4iXlhNvsjPBwc7KZRLssvnpgqnHjquXRmPCq5utVt2lT5K8X6uifkhJ7k+mVlNQfOHLi95lo2051dlIrOJVaI9wJ2sINHuTluRN8SRSxmFQ4koC2X6i/m0g6Xaxey86VG8EES13gZBtdUmK/XDwG0aXIgsj+zg273/e339bdqXPZZeYAlT/+MbaDHSIdAVvfFarBrlIPJpy2NpIgcDxPMBirQR2JfPwQjN3tYexYc5uNtwl/EX3J1nGU9H74Qfrvf4OPAP/xRzOwfOqpZtl//EP67W+respqmj+/Koi+c6c5ajyYBg2kAweq7h9zjHmZoFV6lOOPryrbp4/9URrNmgUG1ZGSCKKniFgHz5JVLEaHRxI4SlWxCOwE4+Yo+FDFOodmfYEww4jtpZdOBY6c+n327Gm+b6tjRsl8PJSUCpG2T6E83+s1/6xyE0uRjQyKdHsNJ3jg8TCazY5o54GNJKAdbpu7eXN0XsvulRv+9aWlBW8T/L8DJ9rM+kahh1rOLeEGkf1B2GCpvYLJz6+/U+eNN8y/RBvs4P8tL18u7d0rLV5cld7N7j4znLY20iCwW8d89YlVgD+Rjj3tsLs9FBaag79S+SrdVJVsHUdxq6LC3Bn4g93HHFOVcmTVKun//i/4aPHdu81gt/8E6vXXzcuZrFx8cVUQvUmTqgOfhg1rB7tbt6563hlnSM88Ezwo3qRJ4Ijwbt2kuXOd+mSAAATRU0AyTkDjhliMDue7Cp8bE/xE64QpGp01sb4U0k4gLNEuvXTy9/nhh3UH0P2v9+GH9j6fSNuncJ4fzZFBkW6voY42bdZMmjMncYJfbotmHthIRpIZhnTNNaE/b/v20MqH0r5X3ze9+mrwkeb+/Ud9bYITbWaLFs6WS0RFRdJLL0mXX153Oa9XOvFE++2IE1dZxZrXK519tvTmm+atf3uOZqDWiXWHe8wX7cEwVgH+Dh2cO1+I59H44QhleyAHeWpKto6jqKqokPbsCR7s/vFHacQI87JLSVqwIDA9yp49gT3o775bNSnlZ59J06dbv271S5qOOMIc6W01Cvzkk6vKnn++eXDTsqWUmWmdGkWSjjxSGj069M8EcBhB9BRAHrHIxWp0ON9VZNw4uHZ6RFS0OmtifSmk3ZGdNctF6wS3Tx9zgjg75aw4+fsM5/uw+mwibZ/CfX40RwZFur2GOtr0D39InKBXsrO7vWRnBw9+T5xoTj4ZSpuZnW2/flLo7bt/39Snj/m7DdbGn3iiGcisTzij5qvbvdvZcolq2DDp44+lhx+2LjNuXP1pwIJJhsEO0QzUhrvuYPvAUI75Ypkqseb+NJL0VMHE62j8cCRbpwCcl3LbiM9XdXmaJH39tZmH2yowPmuWOfmlZO7Ubr/det2nnloVRN+7V1q9unaZjAwzqH34cNWyk0+Wbr7ZOjB+1FFVZS+4wPyzo0kT8w9IIATRUwB5xCITy9HhfFeJyT9p7+zZZv7UTp2kG24IfdLeaHbWxPpSSLsjO6uXi+YJbp8+5hWBdQVEWreu+4Tcyd9nqN+H1WczY4YZ6Am1ffIHIzZvNh+v6/nXXy/9/LM5kq56p0Y0Rwa1bRt5uaIiM6A6eXL96+nb197rJQI3J6V24rXtblfffGMOigo2+WGobWaHDvbqdvfd5tXKkXym1ecU8KfM8HrtbadS6KPma/KfkztVLpE99JD5PmfMCLwKwOs129UHHrCf1sQv0QY7+HzSihXm/ytWVKVzkaIbqA113U5cbRWLwTCxTMnoxhWY0ZJMnQKIjoTbRg4frp0LvGdP89JHyczt/fLLVY/t2lX1/969Zi9v9+5m2VdeqTswvmVLVRC9ZUvzNjMzeLC7TZuq5513npl6pWaZjIzar3H66eYfAMlIMXv27DEkGXv27HG7KjGzbJlhmIdz5l/jxoeMV155xWjc+FDA8mXL3K5pfKr5+Vn9OfH5xfK14JyXXzaM3NzA7yg311xu1+HDtddR/c/jMYy8PLNcOPzr93iCtwORrr+mF16wty2/8IJZ/uWXq+pW8317PKF9llZefrnuutT3GpH+Pg8fNh+bO9cw3nsv8Puo6/uu67OxU5+adQq2vdr9q7ld++tWsy6Rfm/vvGOvPu+8U/d6Dh40jKysutfRurVz271Tqm8ry5bZr1+obdGhQ2Y7cOjQoYjr7EQ7WH1d9W1XTraZ9a1LcrZ9XLjQMLKzw/sN+tvMcL33nr3Xee89Z95rIjh40DAeecQwbrrJvD14sOqxw4cNo02b0L+nuXPdejf2+X+z1Y8Hgv1mw22P7LCz7kiPD6J9fGX3dUJtR6L5ucerVHzP8cLJ44Foivk2smePYXz1lWF89JFhvPWW+cKPP24YU6caxh//aBhlZVVlH33UMI480jCaNQveAKxaVVX2gQfsH+AWFxtGr16GUVhoGKNGGcYttxjGPfcYxmOPmQcFW7ZUlf3lF/MPCEOitAPRYjdWrBjVJ26kYhA91sGzZDN3buxOmGp+V9E60IdznAr+hhKgreuE305dPZ7AdsDJQHU47ydWJ7iGYb7HDh3CC/RF8vsMFmBs3brqeVbbjp2T8lDaJ6vt1e5fsG0l2HvLy4tse/rTn+zV509/sl6H3c4CJ7d7J4QbjA6nLXLqYDkanWD1bVdOdzrX9dtwsn287bbIfsuRdqIfPmwYTZvW/RpNm3KcUd2CBc58T/EUIKy+vUf7eCASThwfTJ4cm+/MyTbJyU5JwI6kDZ4dPGgYW7caRnl51bJVqwzjL38xjClTDGPcOMMYPdowLrrIMHr3NoyTTjKMdeuqytZ3QFpfYLxZMzOwfvLJhvHxx1VlP/rIfP2//MUwXnzRMN580zBWrjSML780jB9+CKwvECNJ2w7YRBDdQioG0Q0jtsGzZBPr0eHRGtkJ50VyclfzxMzuyO3Bgw3D6w1c5vWagRk7go08CzfgWdfJZSgjsmL9G4skkBHO77O+keT+YHr1zyXUQKGdz86pgHyw7drp4NBvfmOvLr/5Td3fU13PjceARLjB6HDaosOHDeP998124P33D4X8nfm/8xdeqHukbvXXDnU7qat8NDq4b7stsva1PuEEY6v/OXHVxOHDtducaLxOsrHb+WG1368vKBrLAHvN9iLYFarxMmAj0uOD+q5Aq6utCDWQHeoVeFZicWUeUFNcB89++cUc8f3554bxwQeG8cYbhvH884axf39VmX/8wzCGDDGMggLDOOEEc8RMZmbVD+jrr6vKjh9f94+0emD8oYfMSxqPOsowunUzjHPOMYyiIsO4+mrDuPVWw/juu6qyGzeawfGvvjKMbdsMIx4/S6AOcd0OxABBdAupGkQ3DGeDZ6nEjdHh0RjZCeeFe3IX7PsN53Lxmn92Az2RBs+s3kO4qT7sBsPuvjt+RvDZ/X3aCVzn5pqpEyIJFFr9VW+fnArIW23XTopkJLqdzzw72/4VHLFit97/+Id5BcoLL1RtL6G2RXbTOFgJJyXQ5MnOjqx0Oi1JtANXhw9bX+Ft98+J4DZp48J3662GkZZWd3sbbFupb9u67bb6fxtOBtkTKc1jJJ1loXYc10x7Fmp78Mgj9l7nkUes328sr8xDfHLripWYBc82bjSMFSsM4/XXzQOaWbMMY9IkwxgzxjBGjjSM3buryt55p2E0bmz9g6geGK/vwPH/+/+qys6fbxiXXGIY11xjNsD33WcYTzxhGC+9ZKZRqV6Hiorofh5AHCGIbi9WzMSiKcQ/Ac3y5eZ8FYsXB04ghODcmBE8mSYLSmbhTDRpNenUjh11r6PmthfMjBnS1Kn1T2jq9Upnny29+aZ5G+p2ZXfiLLuTANmdZHPq1MB1ODHhaDhC+X2Wlga+92A2bTKfO3x47cdCmei1vvbJ6QmJoznBcd++0n332StXk53PfPt26cMPa0/8F6tJOYO9jt16jxwZuCw31/zd2VFWFvj7bdy46jG7E99Z/f7r48QEoNESiwnES0qkn36KpJbmxMiRTljp5gTmVr8vNyfDtau4+P9v78zDoyi2PvybDKuEJYSAkARRxAURV0RBFK+4XLcgoAiI4oILoESUK2AU4y6CICr6gXIRIyKbooKyo6io1wVFxQ1F9n0nGEhyvj/azvR0eqnqrp6ZZM77PPVAZnq6q2s5VXXq1DnAqFHO7d4qwJ1b2wKAZ54p/52xbwBqg25v2KD2uiDxExRdRKbqZGdHgmB7lQcZGWLPcrrOLc9E6gPXVoT+FySJ9P5+A+gGCpEWZV4PftmyZSQC9YcfAp9/Hh0c05h++AFIT9eufeIJ4KWX7J+TlwfUrav9PxTSnqn/v1696ACY+kQX0Dpk06bWwTTr1o2u1Guv1ZIIxmcwDMMAYCV6kuFXeZasxCMieDisboLMBIPs4s5pYWbEShkqorAqKQHGjdMWd0Ehu7gUUTi3axdRpIgSb+WbaP/0q6wQKZtwGJgyBbj3XjWbFaLY3U/FgrRjR229tWOH/TXp6dZ1IKr8W7QoOo+zZ5eX8Q0aANdfr7VhVQtru0WyqCLczPr1Wj2L0LAh0KePd2WxqAwTxY+CeutWddfFQnG1dKm335nxq9z2o5T0g12779EDePNNdUqjIBRiIu0+IwP4/ffym9gyilwjet+47TZrOehnDNy2Te11QdKhg9YeNmywLv9QSPteV4AbkekrRmMYr/IgM1PsWU7XxXqTK6GVtjEgkd5f1EDFF0RAYaGlojtl+3aEjjkmcu2IEcA770Rfd+hQ5Ptt27RJEgC8+66zYnzXrogSPTsbaN7cWtmdlqYpynVyc4G+fbXP69SJKO2tOOssLTEMwwQMK9EZRhC2DmfMyC7uRBfTDRpEL16zsoBWrYAPPnD/7erVYnn3ipfFpZvC+bPP5BTo+nNUWIcGjV9lhUjZlJRoytE1a5zlk1t7FcVJaaFqQRoOA+PHA1272l8zfrx1vXs52WCnsN++XVOujBmjZmHttEgWVYTb4bTZotcZ4E9Z7FUh6IRXBbVKZXA8rbNl8avc9qOU9Ipdu1+/3t0K26q/2SnKg1KI+Tnd4qfNENlvJPoZA1VYTMcK/TSo3VhAZH8aVLSv5OdHtw+v8kB007tdO/vvY7nJFROlbQKTSO8vZaCSon2gy8HCL1ai6eHVaNl4F1L2GBTeulX4e+8BVf5R+fTuDbzxhmUewgCqTp4c+WDNGmD5cosLw5pSe//+iBL9/PO1jNopxrOzI78fOlRLIjRsKHYdwzBMDGElOsNIwNbhiU2sj2TKuvoRXZiNHq1ZKhnf4/nnxZTozZtLvYI0QSibvCoZgjjWrBq/ygqZ8naTT07tVRYrpYXqBWmXLsDMmfJKMS+bBU4W7zrr12uKHH0hKytfRNw6hMNAaam3utEVN06ySNR6267dBalElr23SmWw6DpdN6TzQseO0Rs3sqhSbhvlgB0qXdR5Ob3gpCB2smgfOTIYhZifcU+1Rb8Rr2OgCovpioDIWJCVBTzwQPRnXhXZopveVpstOrHa5IqFC6tEJu7vT6T59/pH4f390j1Yv/78sq9vwGtoiy+Qhl1aol1IW7cLJem7EC7cg7ffKMTdg6pg/XpgCp5AK0y1f9bu3RFld5062r9VqpRTdJfWrRtdILfcAnTqpH1fv37k2tTU8i5OunfXEsMwTDIQIx/tCUMyBxbVSfaAAUzlRCTQZbyf7SegW1ERUTjs/LtwWDxYolc5EERQOr8BL60CiiUKfssriPK2aq/p6WLPSU/3FkDVTzC0wkKi/v2JLr5Y+7ewUOwdrYLaqkyy8kWmnXvNd26uc9BbvwEF8/ODK08vQQxFgxe7IRqktEED72NKcbF7P9Pjp/l9HxEGDy4/poTD4gGqnTAGxhMNtujWLoqL7dufW3/xG4zRjxx2C06vIsmOgWZ5bSUHEiV4pd+xxYuMEAlIavVMP0FQ/eZZlmQPMKzs/ffuJfrzT6JvviFatIhoxgyiCROIRowgGj48+tq77yY69lhtILCY0IdxONJGcJ1jxhpgW9mfeXiEPsPZNAf/pgL0pN8v7U+Ul0c0ahTRxIlE+/dH8rBnD9G+fZbBMlk/wDBMsssBDizKMEzSkAhHMs3PNv8N+LMwqlYNGDTI+ui7zqBB7kFF/aLiuLIZv25GZC39YnliQX83J1cAxoBmdr9XbZXmpZwBzXfxRReV/zwon9L/+Y8WMFdvb/PnAy+/rLX1ESPsf2cXx0IlsvJF1Jo1N1e7p5d85+Ro1rh27dtPeyop0VzoBEH9+tr9S0rk+qJbvJKcHM0XuV4W7dppZaP7J+/YUUubN4s9b/t26zoXkSkiLooKCrR/g46/MmuWtdV2aan2+dlne3+WlaW4H/RguHffbR87wk2eeZE/xjpt2NB7v1F5AsgO2THQmCe791F5GsEPfscWWRmh990ePZznW9ddV758RE+0uF0XizhMFcmFVRDo7xVCKWpjH/aibtl3F2AxjsXvSMMuNHx2F/Dmrmif4B99FLnRtddqQTXtyMuLuFLZulULnGCkenUgLQ0Hqqeh1l8HyvLxNq7Gb2ih26GXpRHj03DX8PrYsal+2S0ew4N4DA9q7xMCsn4E/nzfpv/qluiKSaTgrEGRDO/IMIwgMVLqJwxsic47TEzlIkgLWBF0iyGr51pZDPm1MBo8mCglJfq3KSny1oOJYomuWyzm5spb33mp23icWBg82Pk93OpOpVWaXXsVTXYWdKos8FSWG1G0RWxenvf3VtEGZfqOnu+CAqKMDLE6E82HsT0ZLVDd2pPfEyMiyWtfNNazXn5Wfd0sOwHNKLBPH+91LitTRK63eh9VBDlm+pUvVik/X909ReWP02kdr3LY6p7Z2Zocc5LvVm3WmGROoNnlySgHjCdXEgFVY4uojMjKIpo2zZsluuiJloULxd49SDlQWSzRi4uJliwsphnjd9Dygt+p+PP/Ec2fT/Tuu9EXPvUUUbduRBdeSHT66VTY+GjaiXpUghDtQe2od56LS50L5fDhyH179CCqUYOocWOili2J2rcnuuIKot69Nctz49G5778nWraM6IcfiDZsiPrO7cSKLpdF25iXevO6LojnSeBYkQzvyDBErCcU1RUjRvlJGFiJzp2DCY4gJ/x2xHMh4FUZYbeYFpmMxVuJrlJZalUO5hOufhUX5ufJbHioQMSFQ3q6e1/x02aMeXFTDHjtR6r7oWr3RTJ5VFkuRkQXyVbyQsRdhWxfkFWeifZ9s2ySuV5VXwxCmWtV515lSjzGSp2gxkwV8sVchllZau8p8k5OdQqUl+cyctiu3u3ku6j7pNGjvbel4mKixYs1ObB48aGEcOFiJKj26lbPXp4ZxGZyUHgdjwJnzRqiL78k+vBDojffJBo3jujxx4nuu6/cRHd926tpd6iu9QvUrh1930udFeNGVyoPIp9m40p6LXQDFQ8YSPTww0TPPUc0eTLRe+9FK9EVFpCIwUSQbczLuiAe8+pYkwzvyDA6ya4nZCW6DaxE587BBEO8dunjuWjx6ydVVomiwjJXJ96W6G4L2NxcZ2sx1QrkoBaMKi3T/Cre/CqRMzLsldaqF+SifpRHjxZ/fxHFvNckY+Hq5VSBlf9qr31BR1Z55qX9iPrat/rdwoXe+qNqZa5dKihQI1NirVD3O2ba5VflJpXeH1T54JepC7c6zcrS2qaK+jKW5cKF5e/rZeMqM1N+bIynEt2t/Qeh7FUlI8x9JNGsu93KVrnv9UOHiLZu1RThRt58k+ixx4juvZfo5puJrr6aqGNHolNOITrnnOhr27a1LziDYnzmzPIW4/tQi9Yii77DybT1pPOJSkqiX/b55zXBPWcOff3CZ3Q8VlFDbKZq+DvudWXMpkxcE5X5ll0XxPskcCxIhndkGJ14zwcSAVai28BKdFaiM+qJ5y59PBctsVTgJ0pgURULWi+T0lgpkI2uNFQoSURdiFx/ffBKNC8KGXNyc1OhakHer59Yfvr1E79nvC3RjeUksynkZlU9bZr4s83IyIFYBEiUaW92xMLtDCC+0ePUNtw2n4NQsPsZM53y60W+6O5M7PqDCpnlJH+KirR6HDBA+3fePPX93Q4RwwPRTVirJNJvrE6kxNJFgajxhWplryoZYW4Hqk6eqUCmbI3XVcEhOrXJFpo39mei5cuJ5s7VFM/mieyAAUTnn0/UurXWYVNTIzdp2jT6WkHFOBERde2q3a91a+3+nTsT3XQT0T33ED36KFFpadlY1By/0XH4mTKwhaqiKKpduM1DE/nUgJPcD/IEgey6INE2jYIgGd6RYYjiPx9IFFiJbgMr0VmJzqgl3rv08TySGsvJlWrLXD9ywO+CNh6TUtEFU26u2hMVXvxwBzVpEVXINGjg3J+d6ljFqQEiov79xfLav7/4PWUVclWquF/jVb6IKkeDlq+ycsCu7weVvCjJVCheReq8oEDsejsljNvms5VyWYVsUO1WyKvVeF5e5Bl2/cGLEtm82Wwnf6xOd4i2a7+KNVHDg/nzvbdTN2WtMQ8ysRFU4SWejIqxhci/jLDrI4miRDeW7Rn4H12G96kXXqe7MJYeQj79ekUu0Y03aj67KdL/dh51qn3Gs7OjH+KkGG/cOPraRx/VLNDvvVezSH/xRa0SPviA6PPPpd9PxRyyIitHlZ8g+AfZ+UAib0SoIhnekWHiPR9IJER1xVXiFdCUYZjKwbJlwPr19t8TAevWadd17Kj++eEw8NxzQLduWlR6osh3oZD275gxwURQ79AByMoCNmyIfq7x+VlZ2nV+Wb1a7XV+6NIFmDEDGDgwuu6zsrSy7tLF+febNok9R/Q6ERo2FLtuzJjyn23YoLWvGTPc381Mx47AY4/J/cbP86woKdH638KFYtdPmgT06QNs317+OyKtXefmAjk55ftVly7a58uWafXXuLHW/mX7X9u2wIsvil0nSuPGcnkoLgbatwfatLFuF4BWHkHJFyD+8tWMXd8PCr29DRwI1K0LbN3q3qZE+7oV3bsDn37qXubPPgs0aCB2T6t2V1KivZPVuKF/9swz5b9TIRuMY6Yd5jbtlt9QCJgwAcjM1PIowoUXRp4RDlu335ISsXsZKS3V/tVllFVb+c9/rMvX6v2skJUlRkTKMjdXu+6OO7w/Z8cOYOlSrZy95sFKxqvAy/NVjS2AXP3JzCuXLdPK3YkdOwTl9d9/A7t2aam0FGjVKvLds88Ca9dGvjckym6KgRuWl+W5ANfjBPwSfe/3//k3O1sTBv9QUrV65Jq6dYG0NC3Vq6d1biMPPgjs3699p1+nX1vFpF7Iy3N5WTlUzCFjOX9Xjd85uCpE+5EfeRlvkuEdmeQm3vOBigor0RmG8UU8FKJm4jWh9KPA1xWboovBo48Wy1Pz5sLZ94WfBa3MpFS2nILAzySiY0cgPd19Ya3qeWZmzZJXeE6daq1AN+bPSXFrpxCToUkTtdcBkUWzTFl8+ikwYID49SJY1UlWliZLzLIqEeSrGXPf/+EH4IkngnsekVZWnTpFPrMrL7+89RYwbRqQkQHMng288QawbVv56+65R9NjOSlhAO0+7dqV/9xtc8QOVbKhSxfgvvu0dzAqqsNhYNCg8uUqspmzfj2Qnw8MH+787FBI08eVlABvvqnJ9XbtgM8+Ky/nly2Tfze9jGbOBEaOLF9Ghw5p7+2V7Gx/ijXRjbFrr/X+DB07JbrqzTmncdrqO6/PVzG2AO4KVJ30dO1f4/jtNK80y+EaOIg07CqXak/cBaypq+1W6+TkAL//HlGI//135LvWrYHvvov8/X//B/z6q2Wei4rDWL818vcPaIUDqFUuF9f0TcMx5zSKGo+OxNsoQnXUzqyL0WPDzvL18ssdvgwWFYrNeBrgqEDlppJXKvJGhCjJ8I5McpNoxjoVBVaiM0ySoVopmSi79F26AP/+NzB4MPDbb0CLFpqlWc2awT93xgzg7rujLfAyM+2VPDJKNP16kUV/OAz06yf/Dl7xuqAVnZRu2wY0ayZeTk5s3ep+jRP6JMJOKWFHOAyMHw907erteSKTFrs+PWuWtkAUta7U2b9f7DpRxa0XmSNqgSpynfH5ffsCDz8sVya33mr/XSgE3HILsGiRJnP69QOqVbO/3q5O7CyMvcjXWG887dkT3L3tcLLI9tPXQyHg3nuBP//U+l27dtbKzA0bNKv1++7TFLVmJYzOtm3axqZZZvnZ9FCxoJk1S8u3Oc+lpdrnZ5/tLb8tWmjK69tus9441Mvp4MHoTZFwOLov63LeK05lNG6cNwt3neuu89efYrnh5TcPItdZzWfq19c+O/FEbVPGPIY7nYIwsmGDNubayTI3WWf3va5AdRuXd+4gVMFh5OdXQ4sW/9xj7xyEd24DxuwuZwV+XtVmAF4o+/0aNEMjWAik1wF81zpaif7LL1oyEgpplt116kR/fvPNwO7d5a3A09Iw/9N0YGDk0msww/Ldml4ArKgePR5thjaQ7N6o9jScH6zqUJViM54W3SrGaVWbSl5x60dBn9SLBRV9s4Vh3EhEY50KQYzcyyQM7BM9uX2iBxGkqyIhGmhIhnj6JDdi5d80HNY+DxqZcvXiB1TUT6vMu8ZbDrj5dBw82Lmcpk2T68uqAonVry/fX2bO9P48Nz+Ldm1v2jRnX9pOaeRIsetEfIV6lTnDhonlYdgw+eenp0fHQFOZnGSO14C6MvJVtry9yAGrZ8Qj2Y0tKvq6LlNE6mv6dPfrzLJdRR69+mD10g5l/QcXF2s+0uvXj/7ezV+0OXXp4q+MdL/rxrlf587+7ul3PhOrwLeAJh+txkdzHow+UK3q0w6Z+YmxfYlea47PYZRlbrIu8n0p1cI+ysJa6tTwO/rokaVEn38eNS6Pwj1UgJ40B/+mz3A2rcLxtBkN6W9UoyU4P7rOGza0zXBJq5Oj5qE/4zg6jDBtQzr9imPpC7ShebiYiq/pTvTAA9GFuXgx0aJFRN98Q/Tnn0S7dxOVlATWvhYujG88IxGc6lilX/BYrw2DWIupwOt8wKmdxfudVKEyJgPDJBKq5gOVBQ4sagMr0eOvPIsXXiYtMsHfEl0577TY8Rs0IqggN6IMHuw8iQtSkS6jFJdVXrhdr6eUFPl3TAQ5YDcpdVNKAeU3TET6spMyUibJtGmRQGNuC13jvYxyZvp0+7bn9XkpKUSFhWo2xmQ3jIz07i2W3969vT0fIGre3H9bsEv33lt+TPAayExUvsqWd3Ex0eLFmhxYvPiQ0LjlRWkWdDKXV1FRefkgm/LyxIMCL1miPTMjw/4aO9nupyyNskEGL+3Q62a5UWYtXEiUmRn79pGe7k8Gi7Q5GVSNRTK/z8zUNjV0eVRUFJ0H86JZRMaLzk/sknwfLaWjsIZOxbf0UvcldDVm0U14lQZhJD2KB6gv/i9qE/47nExbkEGHUD5C9NYTz4vK+2bYK8ZXoHV0nV97LdEllxBddx3RnXdqOxXPPEP0yiv03dMfRP28Jg4QUKq0/fhtX3rdigbtjZfiRGQ8q4iKTT/zoqCRXRcEHfg80agIa32GkcU8ZniZD1QmWIluAyvRE0N5Fmu8TFpEle6JalFgRGSx41dAxmsyK6IwCYe161QjO4GUVV6IXj9/vnzevcoBVZNI/T4FBUSjR2v/yiobrVJurn2+3JSR6eliigmZCYXoQtUu6Yoyq/7lV1Ho1P7sykpP+fn+FCxuZTh0qFhehw71/vwmTYIpP6uUlaW1TZFrrSyM3eSrbHnr9zNOlkU3omJVZqLJXF6xtPTVn+9FMe0kj0TulZnpbXydMsVbufrdLI91vQSZBgzwNv7p45udLJBRjA8f7j3/WVmR016hULQcCK4+S6kOdlN9bI+8L0roVkyg+zCCHsdQGoc7aAquow9wCX2Os+gF9Iv6fRGq2j5gKc4r+zMcLq8YL0JV2oyG9DOOo+nVe0X9fCBG0z0YRX0wkTpjFp2PJdQaKygbf1Et7LPsD1Z47Vuy7cdt/uU2fufmim8Ses2rH2TGs4qk2Ex0pbPsusCrYQDDMImFcczwMh+oTLAS3QZWoiefEt3LpEVU6Z7IFgVGYjXRicdkdvRosXcbPVr9s2XLVXaBFeSCTJUbBy8bRm73EX1vp2SXLye3P7JWtiL9RXSh6lS3sbb+1duTm9sOp7r3K3NGjRL7/ahR/p7fvn1sylRFu3KSr/n54vc2tieZybJfJeiwYeXde5hTSor8fXXL2tGjNeWm6CkGVUmvE5FrrRTTVpsjRgWnU5vyMs/w0zdFN8ut2qoKuW5MunV5PE9GZGVFW3g7zXlENkKNJ7FErP69ulYyWmybN9McjR9KSoh27SL64w/64PGv6V9YSF0xnc7D0rJ7V8EhmopraR4uoi9xJv2G5rQd9akYWud+GzmGvIgrxgGiNWhKm9CIfsIJ9CnOofdxGb2OXjQWA+hOvBh17Zn4klrhe8rEOjoC+8nKIlwmiYz3fsc9JxkvO/9StfEeDwVoZVXOJvp7ya4Lgt40YhgmdlgZ1yT6yZ4gENUVc2BRptIjG3W4pEQLMkNkfW0oBOTmAldcIXZdTk78A44YA16quM6OeAS5Wb1a7XUyyAbjkA0SKHN90MEEZQMi+rmPiiC0VvmyC6ZXUqJ9PmOGlvr2BXbudH9GLIKsNGyoxR6zkjNBPhPQyi0nB3j8cWD48PLXrV9vX/d+A9U0aiT2e7vrRJ/fvz/QoAEwe7bY9V4Rrb9wWAtmafedlXydNcu6fqzYsAEYMkR83DLKlZ9+EnuGHRddBJxxhnMwv9JSID9fC1Cpt3234HHvv68FqfQTLNILxuB1y5aJ/cYs2/Q+ZiW7zz67fMA7I3qZ3HGHNh9xCmhrpEMHID3dOvCnTnq6dVA+p/zq2AXO7ttXLH9u5OVF+sH77wNvvKEFcFVBOKwFIz9wQKzPrl8f3ffsAl/PmmXd7vU2q/c5vSxTUsQC2RnrY9Ei4LHHxN6TCKiCYvw0eQX+mLgLv3yxDcXzPsHK63/E0fX2ImXeLmDLqcCdd2o/+PtvoEkTLZjlPxm69J8EAO8gBx/jfABAMaqgM95BdRyyfHYqjJGrQ3j/iGtxTrsU7A3XQ/VGadhemobnC9KwC2lYj6yo3zbDX2IvCOArtBG+1o2MjEiQU6e5lZ+Al04B5wH5+ZexbcyerbUZGRkpGpwzCCpjoLuSEq2PilBR3stL4HOGYRITfcz4+GNg715gzhzgvPPir8NKWGKk1E8Y2BI9+SzRZXfKRS0FRC2gE8FSIp7W2kFTkSzRZf3Kil5vFUTSzUJcRg6oOoIqeh/dX6tI2Tol85Ff0XdQ6SvUjzuXjAyiefP8l4NsMvth9+IKyq/FVax+n5+vXV9YSNS/P9FFFxHVqhX7Mhd5JysrRVkXK2Z56RRASHUA0cJC9xgBVm5nnFyIeDlJoLtu8uOf22wFHlSAbVH50aCBXJwGt8C6qaneTpK5nc4TdZnllHJzy7fL2rW9369XL+0Ew+jR2tjj5gpDpl3o5e3mkz09vXx5O1r9FxcTbd9O9NtvRGvXEpEmF2riAA3BE/Q0BtN43ErT0ZUW4l/0NU6j1TiaxmJA2b1q4oBzpnJyIpkpLSWqVi3yXc2aVNqkCf1c5ST6GOfS4xga9dNbMZ6ux2S6HO9RO3xCJ+JHaowNVAOFlo8yyrxYuf1p0MBbHbvNrby4PRLpN05tzkm2eHXDFc/TtIlusS2L7FjqNd6FX7z6RFc97jEMEz+STU9oht252MBK9OTrHEG53BgwQOy6RDjGVlAglteCgnjnVJ54+kT38mzZBZbb9fqxf7vFl90iSEYOqFrQyNxn5kz5RZ/T/WSeLbIwyMrSFjoiQYf9BLVzc38RRDLKLK9173dxVVTk7tojJcW+X4sG7zP3EdH3DdKFhJ1PdLPSVw8WKHrf7OzyY4GdEj03V/07jh7t3Xe4WQGRnk6UliafB6NcNG5KyLqAsYuP4sdnuBUyLlBEnyGqmJdV5IhsVCaCCxardmnGzwaSWbbZlXcYh6kBttKx+JXa4Av65skPid58k2jcOKIFC8rKdNm7O2lzywto77GnUulRRxHVqRN9oz59iEiTBW6KcbMrld9xDO3KbkUl555LG886i0p699Y6f35++cb0yy9EmzYR/f13VDmpqAOjzBOR3eGw9++NxgdeNktE+rNMjCBVsSb8biiby082WL1KKpNy1os7voqgRBeJ75BIbk0ZhnGnuJho8WJNDixefKhCyFjViOqKU+JrB88wwaMfr9SPwZoJhYDs7MiRRdFjZ82bi12XCMfYMjPVXpdIVKsGDBrkfM2gQeJH3WX47DP347ElJdp1Ol26aEdvzWWdlWV/JNfu+mnTgDff1KasZvTPcnP9uzlQdbRW5j5dumh5V8GmTXLPDocjR6jNckM/Xn/woOZComdP4IILgGbNtOPYZsJhYPx452emp9t/J+JWRjVGmSXq4mnduui/3coQiLgksGLZMs21hxOlpfZuNPTnW/UNM7m5wKFD2lH9mTPdrweAyy8Xu84L5jFDdwVhrosNG8TduABaeR95pNi1BQViZSfDRx+Jl6+xv3bpAqxZAyxZAkyZorl72bED2LVLPg9GOau7x+nRAzjqKLn7WJWNrGy3Qj/y/+CDWtq4US5fIvJ+8WKxe4lepyPiOm/HDq3+zGUkclw4FArmWHFGRvnPjG1uwACnX0caQk0U4lJ8gOtoCq5c9yLW3vYYcO+9qHfvLZiJLrgT48qubYyNKEZVbEND/Ibj8CXa4rShl2qNsV8/zUcNtPc998LqaPTTEtT+fQVCf/2lnbPWSU0FUlJQUqKNMwdRExNwK0ZhEPLwKPrjBfRCAS7DHJyDzzAQzxnyHsKxWI0Vk1eiZPFifDlsGEpefRUYPRp46KHyDfa44zQBUr16VDnNnOk8homwZYs2l1m6VPvbaewIhZznfMbv7caeW28FiouBhx+Wn/eKzK3MMmvJEuDPP61lgFu/EcVujuPFNUhpqebizmpOEzS6CzEr9zWA2PzByzOXLo20QVWuwZzcgzqxdaua5wfFrFnanPeCC7R6AMrXhcy4xzBM/NH7tb6+ufxy+7UtAyBGSv2EgS3Rk88SnUjOQkzUAkJ3OVERLCW8umSoSDgFjPSCSJBUP0F1ZIOwWl3vx0I8kS3RR4/W3lPUVY9IvlRawHqxuhk8uLxldUqK9nlRkea6RcW7+klWMks0wGfduvbH1EUt8oyIBmTNy3O+j6iltmz5L1mieTvwWs6i5e/3JIOehg/X7me2irWzRI93cnJpI2u12awZ0cUXa+56Cguj76XLVNF2bqwru/5uDHKquwixeg+zPJ8507quZa0Y3eRwr15i9+nVy/k+ZmTGQ/P7FxVFWzVazdWCamuLPigi2ryZaNUqos8+01yk6GzdSmu73UMT0YfeRg4txXn0HU6mtciifahFo3BP2X2aYL3jgyaiT6TfGSzG96A2rUFT2tjwFNp5akda2+Zq+vXu5yNyoLRUs1D/4AOizz/XLMK3biUyjN1erI2Nc1m/lmfFxZqsNZ+cyspyP01lnrfppzzcxg63OZ/d+G3uY/qJnoICb+OAX1QF3FVpiW5sH7FcF4gG31Vp3Wx3ykvFM7yWfSIHFnVyPQRoMlxkTcMwTOJg7NfGdUEynihhdy42sBI9OZXoRHLKHFGlexDHt4OiIuXVKyLKCxGs2kr9+tpCyzgxDOpYvCh+lPhefKL73TASPabt9LfXRaDXdzAqexYudPajHAppi/CCguhFhJu/UxmXHFaLFhXJSg7MnCnnTsZOjshuGBGpU6KrUlCY24nuCsDPfdzKn8ifT31j0mWQuTwSTYlu7ofmtuO3PHQlm5WMd3Mf5JZXvc+4xaewusbsocNPcnMh17On2H169nTvp0ZUbbbazdXs3AYARCkopiOxkU7Ej9QOn9DleI964XUagLH0IPLpIswru7YZ/qCVOInWIZP244jyN8vNjWRmvbhivAYK6RucSotwAc1AF9p42S1E991Hv938ON2BcXQuPjb8tJTSsY3COFz2WYMG0be3mnPYISvnjO7gsrKi5YCbz28n7DaHZNym2LlckhlTjbEK9N+7jbPDh6vta6Ljnl8f8CKu0fzMo2Kl0BVVzuobbjLzCadnOr2733WRl34ZT4Mmt3WBqvhIDMMkDuZ+bV4XJFu/ZiW6DaxET14lOpGcMkdU6e7V0jIeiCzwg8aLQi2WuPkvTE+PlFe8leiiylc9eKIRWTkwbZr7glcEP0HbrBZWV1wR/bdTvpzq1ukd9DYrqtg19i2roK9WbUrkfmaFtptiSSaZZZYXP54qJ1rz54s9c/585/uoDFKnt6np0/35sLUKjGg3Zsi2ObtkFzg70ZToQPQmtdVmZrzzZ066kklEseelX3nNjx1BWaL73mwtLCQ6cICINEXZuMd20OROr9GSzmOoOG84retyN72G3vQurqBlaE+346Wye5+ElY4v8yxyy/60sxjfiXq0Jnw0/XTNQ5E8HTxINHgwrez1BN2Bl6g7ptJFmEdn4ktqjt+oDna7vqff0yTGOYcdshux4bB2kiZWlmciFsaibcWLIk+V33HRviZj3Swav8MpOdWV3zFwwIDg5+qip2Wtxl6vaxivAX9lkCn7RDBoclsXVLaArwzDiK8LkqVfsxLdBlaiJ7cSXRZRhW+iK4Z1/BxbVPGO8VTii+RfZqE1c6Y/S3C/yChjsrLKv6+MHHAKsuZlw0h2QW31vfG5MhtZsm5//AaY87pwtUoLF5Zvw34sc/v3tz614VfhoE+0/MgMVRtUKhQU5jblVylhdMdkVzb69507q2k7xjpxsjiJd9KVFrFQNtsl2efq7knc+kxWVjCKPGMS2cQaOlTsXkOHivdXIiIqLaV33thPmVhPrbCSzsXHdCVm0wn4qUxB9MGLq4muv57o8suJ2rUjOvFEoiOPJKpeXXtofn6ZzG2JHxwzaFaMlyBEO5BGv+MY+h/OoPnoRG/hGnoZt1E3TCu7tgoOUSfMpzPwPzoGv1MadlAKisvq3k6RJTIW2P3ebwBOJ+Wair4SC8szo8wTddVmJStFxwbjgl/lZqpb+XixbvZjXGBlJGFE1UZ7kHN1P/XjVfkcCyMYmflHIhhfua0L4rnmYRgmGERPqCZLv2Ylug2sRGclerIievzV7rd+ld9+nu8X0fzLTOSzs70t5lTgRclpzoOoHHBboE+f7v0dZBfUuq90J6Wjk8JWtg3GUpFXv77zs6w2Qoi8K9Ht/NAS+Vc4TJniX2b4XayZj/H7Of1gtsTz6iJGVDHlZ+NG5JmDB0e+V6VE18t36lRtc8bPvUaOjL/F+ciR4qcAZGIuBJ1E+tczz7jfpyYO0H/v+Y5o6VKit98mmjhRcxyfl6d1iHnzIjf86iuihg2JqlWzvNmDyI8oiFY6W4z/ekVuWT9tgK00DxfRVFxLL+N2ehJD6P3znqa+GE/dMJ1a4gfDT0sphBIlZehmBW2UK2ajBCdFmJURg9mFi1NKT9fkfRAW1m6WZ6oNRURlqNWpHVHZYBwbVLr1cpqz+rFu9ir3nRQbfjdvRN/bLwUF/vNn1T+cUOUyzg0nV5p6G08E46viYvfYCGyJzsSSimKgWNFhS/RoWIluAyvRWYnuh4oq0P34sZNRPNqVTzz96MnkX3ahtXBhMMFl3dqZF4VNQUH0PUTkQKzqLRbWLbLvEtTxb7vUp4+zotfuSL8q5YCxP/i9p660FulzdvhZrIkGlBNN5md4DeIn8u6qN26sZHQQlujGDRLVfujjkfLyxKwI69fXxoHJk+Of5zJX3qWlRHv3Ev31F9GuXZHKX7uWaNQomn92Hj2P/vQGetBcXErL0ZZ+xnF0M14pu1d7LHN+mNH89QeTxXg4TKUNGtCBrBa0rflZ9Ms9L0XGiF27iEaMIJowgWjGDKJFi4i++Ybozz+peOceysosdWzLdi4dggjMLLJglJ0Tmq/3ojxUueGpJyfLsyBOEMZi0ykoS3SnjRK/1s3FxfIB1VUGYXZLQc3VVQWRl2mbsVKiEyW+2089f26xEVTFR2IYNxLB/WyyYO7X7BOdleiWsBKdleheqcgC3atCSkbx6FQ+sbJeMC9Qi4rkFKeyCy19gWlnZeLFakeknXlRUo0eHf0cETkQq3qLxXNknxFry9KCAq2O7RS9du1JdT4zMoiGDfP221BIa6tuwVdFJmNFRe6BHlNSygcPdgtO1r273DulpGgKUqtNQSflqpOlvx2qlR4ip22CUKInilW2n6QrTkTdLKgMDKqlUqqNPdQUa+gUfEsdsZiuxky6Ga/Qifix7LrT8DV9gEvoc5xFB7JaaKbNVapEbjR2bKTylzkrxh/Cw2V/nogfaXs4g+i444jatiW69FKiHj2I+vUjeuCBaGF88CDRihWa0n7vXk2Jb2jTokpmGRltvO/ChVpsBNWnF0Q2bf0aVvjpK9Onq9uwspMDw4cHc4LQiwwVTUH4RM/IELMYVqGYlalTp7FUpm3JbjCrtkhUYYku2zZjHdMoUY2wjHMmkdgIqtc8DGMmnifXkxVjvw46Rkqiw0p0G1iJzkp0L1R0ge7V0ld0Eu5meSrqk9GPpbGV8ln0qLSdv2DR38n62XZ6B5F25tcSXeTYJlHs/B/GIsCT7LvE2ppWX1TJKqBV+vz2k/Q2Khrgzm0R7mWBK7Lp51UxA0Qrit2OaJsVem6xJ7xYIDql/Hzr/iLq+9Br/c+cGftTHEEkY7tS4V6nPrbTBVhEN6bOoFsxge7DCHocQ+kl3E5TcS39CwvLrr0EH9Bh2DfUu/Bc2Z+OFuPVqmm+W3TWrCHq2ZPGV+9PjyCP7sEo6oOJlIO36TwspSZYH/XztDTnPuqGrOGBl/FGpesjc3KTUSoMK/z0lXBYU3KreFc7OeA0h/JrneYmQ70kpzm5F9cmskE1VSjRZeZ3dnKeSM5ljq7gHTBAvg+qIJY+63ViMe9MdNxOptmVY6Jb1gdFom6EVCbieXI92bE6kZIM/doMK9FtYCU6K9FlqQwC3aulr+gk3MkCLBQSP2rt1brFrwsE86Lc7V5mC3yno40i7m7079wW0/ozvShOdaWQ6LFNP+3GjEgQxaAXM/G0RHdT3Or16rW8Y+m7XX+Oub70iZaqjRcvyohYWUDrFonTplm7jbErNyfljipFoJ3bH7syUhlYVFQuVoRUWPhPgZWUEO3cScW/rqYvxn1FR9XaVnZNS/xAT+J+ehm30Vu4huajE/0PZ9DvOIZ2II16oqDs2ivwruMD7RTjB1GdNuJI+hEn0idoR+/hcuqMWZH6xja6Ef+lq/AOdW34MRWvWEm0fj3RgQNRFuFGGjUSK4NGjZz7qBNeDA9kNu2dnqGyHXt5P0DOz7Ffv9Xp6f7LwY8c8GOVbKeMEzW8MM893Rb806bJbaTKvpsK62a3zXRzyszU+oR5fuVlPhEvn9dBbbyKbIQ5/b6yK4/8+EJONoVyRT6NXpFgv/vxRdTIrjLDSnQbWIme3Ep0L4N+ZRDoXv3YqVRKZWQE40dPxeTbSikpogxT5e5Gpqz1vIq6GdBTZqZmGS9zbFOk3WRkaFbudv1JZOKpoo+59e2iIvfFczgccQ+iysI7FIoud6vvZX1JW1nHuSliVSmbdCWFXXmrkpdelOiiihdVKSuL6K23NAvyAQO0YJSyJwlUKwLtAtAa+4mT70MVySijvPqh95pCofLWsykopjTsoGPwO52B/1EnzKdr8BbdhpfpfjxJJ+Cnsms7YT59hdPpz5SjqahWvXKVcz0ml/0poxg/E1/SL1VaUmm79rTxjCtoavXeNAZ303AMp7sxhlpjRdm11fA3NcYGqoFCz2XvxLXXit3r2mvd7+XUxmT6gVXbdPq91QaWOdWq5a39uJ0ulJlziCpZ/PSV1FT//caPHFBxEs08loiOIwsXys/pRcZZr3NSFQYBfuWm3ua8zPvj6fM6iE0xkbaZzMpR0ZNpqk8eVDQq+mn0ikSsTkAz9iSznpCIlei2JLsSPZl3mLxOlCqLQPfix05kQVC9ulj55OYG40fPr6LfTulUXKxZ9zhZOqlydzNzprhPSKNbFj8WrDLHNmXK0liPolY+fvtYUIp6v4s6o0sfkeOvsm3Z/I668iE3t/zpD2NAPi/vlJcnHjhPxSJc1qKvuDiY4IJBJK/uo2Tvb4exXwahRDf2Uzs5mpUVsZ5s3979nmEcpjAOl/3dFGuoO96kOzCOhuJxGoH7aAJuoRnoQr9mXUDn4uOya6+Hc9RPo2L8crxnec3h6kfQjiMyqRdeL/u4BX6h0RhID+FhugvP0fWYTJfjPWqHT+gE/ES1sSeq3RtdAclYmnotezvmzRO717x57veyQlSOjR5dXvkpMt7InG5zS2YFtMjRZRk5LTO/sesrQaS6daP/9iMHund3fy+3k2jm74NS5lq53vNTZ1b4sW5WoUg25t/LvD+ePq/9nkwwJ1HjpmSzqtbxY4meLFSG0+gVicpguFjRYSU6K9EtSWYluowbh8qGn13kyiTQZX13iyjRZSazQfjR8+u7Oj1ds2pzcrNi950qdzfZ2ZoVq8i9zAFCi4q0zy69VC64nehkWUaJbrbSF7XI8tPHRPu2V0X99On+ApwZ8yCiTJBRcrttgFk9S/YEg125OKFiEV5UJGaRqp8cEG1DbsFKY5H0sgzK/YxbXQWtRLdyVVBcTLR0wSGa+fJW+nzyL1T86edEH3xAtHUrjRql/a49ltEruJlm4mpajI70LU6hNWhKe1CbCKAX//1emQWyjGJctxjfh1q0Fln0HU6mpTiP3kYOTUSfKIV7BrbQvzGHzsZndDxWUeOUzVQNf0u9f+3a0X8bx7ig3dyIzEOKi4lq1HC+T40ackoBo7wRPUViTPpc1K9rE9Gkz3u8KM9kgyDKKlmKi7U+FKQy/Y47ov+2kwN164q1V7s5pNWGkTE+hNMGuGpl7uDBYmWjwgesF6MdlZuqbqcg3d4xnj6v/ZxM8NrnkhW3k2lcjpVLB1ARiOdpGEaDleisRLckWZXoxoVbskXd9buL7EegJ5J1g4zvbh0VSh5z+aguE9E8yiiYRTeXVCrBhg0Tuy4oS3Q9ma1IZe+v1/f8+WLXL1wo5w/eiEzf9joR9lvHshM+WSW3lwmll3Yju0DwuwiXtUQX3SS54gpvmwgqk16WQQWvdXN75BRITCSlYi8dh5+pLZbTpZhLPVFA/fE85eERGoV76NNJv0Qe+MYbWsXb+Zx47z0qKtI2N9wU44cnTi5TME644WNa3fR8+vbozvRh5k30fLVB9AAepX54gXrgDToKf5b9tAoOUVUUxax+58+3HuNE5aloQGxzEpUDqmNQqPDpr/fJIN3/1K1L1K+ftumsb77JMnOmdyt4LzI0qLLo1y/6bzs5MHCgmKw0ukITzb+dmzOzJbXTOCI6nxRx5xYKaXF4vbYNM7Jz3SA2VY2nnmTn3bH6jQgyBgaJuq5NpPWgEeOcM9n0A0bs6qeynEavSMTzNAzDSnRWotuQjEp0t0VzZd/VU7GL7PVIZCz87IlMzLxuJPhV8sRiwBPZ5MjKImrSRD7/bvkWXZiJPEvUes/sE91r3dgtmo1WpH4Wdb17i783kbuVmJWlm0zf9qo4krU6dKs3EWKh5NblRkFBsPEKvC4aZX2iy7QFO9mcn6+Vh1clpkgytjHVShORulqyRPO53QibqBr+LpMDbap/RQMwlh5EPj2LXHqz+o30Dq6ij9CBvkcrapvyZdlz7sJzjhlZet97kQdOLq8YP1yrDpUedRTRqaeW+QwZPJjoRPxIQ/E43YFx1B1v0sX4kNrgCzoWv9Lw/tto1rTDgbi/Cap+rcpe5B4ffujt9IvoOKvSsi5oy3rVyY+1oN939aJkefDBYMph9Ojov51Opt10k/g9dUTGW6dTQUZZ5nSqSnSObX5fp6Rqni47/gWxqRpLxV7Qax5RA4NYWczLkOh+161OqpvLMVE3AVTgVD9siR4f4nkaJtlhJTor0S1JRiV6svs8U7WLLCPQYxWERHRiFi8r3FgNeG6bHPn53vLvZo2nUgm2cKG4klfFsV8RJbqfRV3nzmLX5eV5t0SX6dtelegyi2+3PMigL1gGDAjm/ka8xkvwuqAS+a2sEl32xJBTHry6vBFJxj7sx2VDDRykI7GRTsSP1A6f0BV4j3pjMr33322RF3n7baIrryQ691yik04iatKEDlerWXaT9lhWJgcGVX3W8YFX4N2yP3uigHahLv2BZvQ1TqOF+BdNR1caj1vpaQymLyeujORh61Za/PSXdO6Rv1F9bC/za241Tg0eXF6xlpKifV5RlLV2411xsVybln1ubq54/1M1JwrKp3+QyaucVPGuXubYoidyRJMuB4uK3E+k6PJSdAwaMEB9vu3KTHaOLfoOTveQwYvSNEhLdD+IjNexWvNYuaRMSdH88ieqcjdWZeOX4mL7mGmJvgngB7f6cYslVNkNEeNJZd64SWRYic5KdEuSUYme7NG3Ve4iB2n1LYvMxMzrotnrwvHii/0dmfZaHnabHH6UwVb+fXVErZRr1XL+vk4dosJC9T7EnZKIHPDznBEjxK6bN0/8OeZAdDJ926scUGWJ7tSOnIiVFYzsJqHXBZXob2Xduej3VnUEVIWLCruUnx997yOxkc7Fx3QlZtMNmEQDMZoexkP0HO6iybiemmJN2bV5R4yi4qoODq2XLSt7h5LR9hbjJQjRpZhbJgcuq/YBTUM3+j/0pafwH1p2+ZNE//d/RNOm0aKhCygd24TezTy2ubl0MNeJHuNhwIDIGBKUstbsu9xPcmr/sm3JixJdpv+rkimqFbyxSKIBkr2WmVXyM+cLwjrZ7J/fzY2D6EbyyJGRfHtpw1bJal3iZY4tuxnup868Kk1lY6IElX/zu7iN116NILzkRdYlZbyJ1XpQFVbKs4qyCeAF0fqZNs373JIVwUxFg5XorES3JBmV6MluiR6LIBXGQVJ0su6nvGUnZn4WzaLBmKxSrC0VrBQwMu9vlXRLVytEg4EecYT7NaIuJPR25vV9ZOSAiPW2VapfX1yJvnCht/fJzCQaPlwsaGtxsfeNJFXWYcZgajLEMshO0BZnMr+VDSxqfIbMEVAnVwHmgHjlUykdgf2UiXXUCt9HBaA8D0spHw/SWAyg19GL3sdl9CnOoZ9wAm1CIzoBP5Vd+xAednxQeywr+/P1tmPLPi9NSaG/U+tTYZPmVHrmmUQXXUT01Vdl+f9Xox/oVoynrphO/8JCurTh1/TwjX9QXeyiEEoc5YAx9oLMSR6zckWF7+0gLDRVJ7v+LWNBr/fl4cPFn+ul/4u4IbPycW1+ryADXwadZOcmXsdcv4om1RsV5hMLIm4cRNoLoLnM03+nSoluNSf1Mp8VfQeR5zvhV2nqtBEcqzZnzIvTc/T7x2Kjv6Ipo3UqmisQs/Ksopa7KH7dAHoJ0FtZLPgrC7zJEY3TiZRkgZXoNiSjEt2shEk2n+hEwQap8Gqx6MfyX3Zi5lUR59cCMGhLBePgl59fXumlT1b8WPg4KdFFg4GqTPoGgezv0tKiY/tZKc/MCq3iYvt4gKqSPnFRfV9z2/Ni2ayXgSorWK99IQj5ZZ44FhWpO2Wj36ugQGurBQVauToppc0yyGt9Wb2bnQuXadOIsjJLqRb2UTb+otZYQd0aLKFJObPoZrxKgzCS6mB32bP64v/oM5xNq3A8bUZDKkLVqMy0xA9lfz4IZ82zUTF+CybQrziWvkAb+hAX05voTuNwBz2OoXQvnqFs/EU1amjH1uthJx2FP6kOdlOVlBLLWAFOmxXmz9w209wUKXoKh7XyNJax6Caj2ymNoAKwqkx62ebmRtqcF9nRvbv8s2X7v1/FTkVxreO37LwYR5g3w2Vc2lnJLdVKdKs6FVk0ixhTGMcjFfm222DzuiHuxSBEdp6uKgaTWW7UqSOeZxVuFGU2QEVP6xk3ZmWpaMponYoWlNKsRK+o5S6KbP3IKFwrswV/ZYE3OaKx2lRPxvIQ1RVXAVPpCYeB554Duna1/p4IGDNGu66y0qULMGMGMHAgsH595POsLO3du3Txdt9Zs4Bu3bQylKVhQ2DpUmDTJqBxY6BDB/E62LRJ7jq9DXTrBoRC0fkNhbR/rdrAsmXR5SULkXb/3FwgJ0dtG5s1q3x9mlm/Xmv3M2fav78bHTvaf5eSIn4fVbzwgvZvOAyUlIj/7q23gB49gP37xX+zdKnc9V7Q235WFrBhg7e+ZIW5bx86JPY783XGvgOU7zuy+XXqCyUlWp8zywQ7+ZWZqeVNRH4Z7/3bb8D48Vp5G9/T2J4aNADGjdPurf9uyxbn/kYErFunlf22be55svrtsmVan1u6VOx3S5cCF/7rn0r4R5iFf12FjjtXAYW7gK92AQt24Y+vd2Hlx7tQ/eAuDMRkbENDAMBI3Id78WzkhtsBzAZu/OfPebgEP6IuAKAxNuEcfF4uD4dRBbuQhpo4WPbZF2iLF9EPu5BmmX5Di7JrX8WteBW3Or/o39o/u5GG3UjT/igFnnlG+++IEVr9LV0K9O1r3S71z9xkR3a21vZKSrQ2J8LUqZo8bNZMfsxYuhS48ELt/1Z9oHFjufsZkZWTXtHLdswYLWVlafUgWxZvvSV3fY0actcD8vMHI3qbUCWng6BBA2D7drFrb7vNWh5bzS+c2lIopNX5778Dn30mP6+zel5Wlv28XRY9fx06lP8uHAbOPReYO1f71yq/I0Zo/z77rH0ZGOd7v/8OpKcDO3Y458lLOxKVB+brRN7B67N0/PQtnS5dtDb5+OPa+L5zJ7B3r9h9hw0DHnnE/1x76VLnugO075cuFR/rZecERlSUazzw2lYThYpa7qLI1k847Lwm1HEaJ4NcFzPi2OlvNmzQPp8xw7tuqCJiLI+aNSOfJ2t5CBEjpX7CkIyW6ETR1mRWlmfJssuk8tiOVwvVUEiz4LCzmhbBq3WAlYsCp+eqtABUaakgawmnW8zInhpwczVQEXzC6ha+5ryKuHNRdSTbKV9G9xkqgjmGQpo7BHO9XX+92O+vv96+zVlZLMi4XnDqC1b3z8iIWLZOn16+74q6iPHj3zvokwhl9YYSqotdNHvMH0Rff00Tey2kKoi0zS6YQeNwB72J7vQhLqYv0IZ+xbG0v2a6Zga9fj0RafW+tluu48OsLMaLUJU2oyGtwvH0Gc6mOfg3FaAnHYPfy649ET9SDt6m87CUTsZ3lIW1VAv7CCgVapdBlV04TDR1qrc6tpIDunW76DiTn+/POlk/7WPXx956q3zAUZHy1oOCLVniXZbJPjcW9W2VZOZw8+aJ3XPevPK/TWTXOuaTMKInxcwnIWTbsl/LQpmTI17Lxc0Xt+jxbdG2o49ZfvNuHitFAjK7na4tLCS64w6iKlWcny3iasqMKstdr/J09Gi5/NohEwSZLdHtiaU7PhUkmyV6UPVT2cutolPZ3RTJYi6PZPRYYYQt0ZkyRKzJkmVHVHQXWQQvVtq65Y2VhYfMbp+b5a6T1ZFueS6CSusIVZYKXizhdIsZ3cLHaJE7fLj978aPd+4THTpo1pelpfbXhEJAkybAxo1yeVbJmDHA1q1i18bCosTq9ENODvDwwxHLK68QAfn5QOvW0f1I1KLe6Tpz/RHJ9ScdcxnbWURs2xaxbLViw4bISQs7meHntAwgfxIhFfuQgW029te78DAeRhE089mHkI/eeB1p2IV62I0wSoFc7T43AcjDemxEJgDgXHyCO/Fy+Qfqxt+7dmHWF5kYOBC4Yv1x6I1zsAtpKKyWhi2H0rDTkIvNOLLs56NwL0bhXhTiCADOlbkKLbEKLeUK5B9SUrR6kLU0FqGkBLjuOnX3mzgRePJJcVlQVGRv/S5Cx47OVkHdu8vfs359TX7r8v6rr+R+r/frevW8yaNYy/qBA8XncCtXit1z5Urg4oujP0tUi0PjmFKtmtamFi0S+635JITb/MJsQe3nRKObxaIKnPI3axZw991aG3/zTeDyy7W+M3as9fVu1sk6s2drc1m7/HTrZj+uGTG2N5HTh04nK0Xv4Qc/c3PA/TSRGxkZ8r/xS2am2uus8Fuu8cLrKeBEQeSUaHp64pW7KEHVTzwt+O1OtDIR3PQ3RNEnYys7XB4eiZFSP2FIRkv0ZA8sGhRerLSzspz9DMrs9sn6Sfbin01klz4jQ27H3ek0gMhJAa+WcHa+zWfO1AJiGa8VtfCVsdSMhw/ZjAz74E92cmD06Ej5i1qdySazz04/ltJOzzC2H1H/zCNHWrcRlZaC5uCtft89PT0SoNXsA1z23ikopjTsIKN1dTt8QrfhZbofT9JT+A/9H/rSNHSjBbiQvsLpVBMHyq79L250fEATrC/781nklvu+tEYNosaNqfSEE+kYrC776mJ8SMMxnO7GGLoBk+hKzKYO+JgOfbOSaP16mjXtcIXw05yenlj+pO3kwMKFsbE6TknRLENV939As6j3et/sbLmAqomQROdw/fqJ3a9fP+9jXqyTlR9oGWtaL+9Xv77WRvxYZwVdnqNHOwex1K8TPaGqIr/TpslbaopaZjv5A/di3e1lXeQ1homKeZCqdZxMTBKReYaMFaNTsO+gYlsFjZeglPHAbIlOJBYXJdHeQxbV9RMvS3T28S1GRYtVEDTm8rBbFyRLeXBgURuSUYluPmpn1zn8HLVLRkQnmSNHRiaDor8RHVhFB34/R5ecFh6h0D/B+QSPw1m5k9EV1qKDv1cXM05KdLfn2k3qZQbiIBTFbsnYp90CDAOaWwhzOahy52FUzhuDWAa5wWDsR4WFYr8pLJTrOzLJqp8FoUQ5KvMwvfffbfT5679SG3xBF+NDuhZTyagYvxMv0nR0pYX4F32N0+gPNKNdqFt2Ez+K8QOoSevRhFbiJPoY59JsXEmTcAONxkBqgK1l1x6LX6kdPqET8SMdiY3UpP5BT4FFVdZRkEl35aXCbZGqZDcfyMlxd5ugKvXvH/9yMCZdMVoRApoak+gC5447xO53xx3lfyuysV67dmzfOyNDG1PMeAlOLOqaQn9Xv8q7INuYk+LSHDhSJNC41e9kk9Hljui8UUS+6xvJTu/rZYzwqjSQVcqpCNar8ri9TGBRt/zL9BG3+XhFUUZbodKdaFBYKdHd2kJlcfUQhLvXWLrx4UCm4rC7nWhE3b2aXd9VVliJbkMyKtFHjxbrHKp86SULXhZoQex+FhVpdTdggPav1WLS74AxeHB5BWs4HPGdK2IhImLNIDIB96p0tBL+IpMOp0m9bLkWF8fWutHKJ76bHDCXg988WPk+j5XC09iPvPYBlX7vrSaybjIhC2vpLHxOl+ADug5T6E68SMPwGD2De+n/0JeMivEJuIX2wF6D5VUx3g8v0NvIof/iRnoWufQg8mkAxlIvvE6X4X2qiQNlJ1JCKFHSZmWsSBPVOtYu5eeX7wP6IjVI5brVvd3kgFef4BU1GeWVqnbVpUts8i664OvZU+x+PXta/95tvO/a1Vv+8/K0GBBefmvcpDWexJFRBBKVny+LJD9WtkHFVXFTmnhdNPtVohvbqqhlsQrjEz8nGL0q1ESVcio2gYNQkrnN2a1Ou/qJ9SSqBPR7mpWxx0qJzgpHb8Ty5AT7+JajosUqCBpWokfDSnQbklGJzpbo3nGakHlRiKuejKi23rZS3otObJ0CI/q1aDQOZm6Dn1VKTbW2qHJbuNSpYz/A6kHrvBxjtSor1coqu+e6yQGrd7UrB7dk1UZiaYFr7Ede+sDMmf7abRUcogxsoeb4jRo00AIkjh5NNP6yt+nTfz9KxQMH0cZLb6JZ6ExLcD6tQGv6Dc3JqBh/GzmODzEqxieiT9R3+0Kp9BeyaQVa0xKc/4+bFu3rTphP/fAC9cAbdCnmUlssp+OxihpiM1VFkdD7de4c2bzTXXL4rV+9/IcMEbt+yJCKaTFsNbbYWdm1aaPmudnZ5RWconIg2ZJeJyradIMGwec3K0t8wde5s9g9O3e2v4fT3MOrYtjousOsjJMtC+OY43Stea4kY4lulXcn7MrMycWTvpjXT/yJ5CU93V1BY96ktJMD5hN8qjaWdDnvZlksMwY7GZ/4HSOCdIngt0yDtMSWUYz7cSWhQgnIriz8Y6VEZ9cX3onVyQne6JCnIruHUg3rCaNhJboNyahEZ5/o3nCbkHkZtFTufsosDr0OsLITW10xlJurXnFgzJvd4GeXrI4l+1246O9+773O1+nW+maMZaWynPSUk+Ncl7LKMy/1aZwsxtLlhlU/kj05orexavibGmETHY9VdDY+o39jDvVEAd2MV6J+9ygeoKU4j77DybQWWbQPtcq+/BvV6Oy2pWUbJTKK8efRn9agKX2LU2gxOtJMXE2v4GZ6BvfSMDwWdW02/qIW+IUaYCtVgVavGRmx2bjIytLaut9n6f1cxuWESkv0WLgvcRprzcr1oiJ3y0+3Dbj69SOuDkQtTpI9GZV88c6LSJJZ8I0aJXbPUaPs7+Hkmk3WWtno4kPV/MG8eSuqCPQqS3JznctcJK6G22JedM4wfbp7Gxg2LPo3dnJg2LDo36nasDTPi518YHu5p6p6tasLlciUqV4e+fmxs7YWse7260rCrxKQXVmogS3R1ROL0xG80eGNiuweSiXssSIaVqLbkIxKdBHlWTIdWxFBZELm5aiw8d5+dj9ln+1Vee9l8hSUtbF5B1TWLYh5gqdqMejm/9WqDRjrMSjFsh6wz64uZZVnubliGxft21tPFmPlcsOuH+lBUk/Bt3Q53qPrMZnuwnP0EB6mZ5FL/8WN9Bp607x5kXqZh4tsH/Q3qpGoxfhu1KEaKCz7qB9eoPG4lZ7GYBqCJ+il1uPoOrxJl+BDaoMvKIzDyspDtN5UlbvfYI56m7nzTrHf3HmnP4vhBx+MjXsFq3cUQSY/du+fmxvpj0VF0Ur3RFeix8t3vD5eTJsW/zJwSiJWx2bMbcAqpaRYu4YjEvN/LLr5YJQbfqzPrZKxrxnd3o0cqY0HVuOUSNlYpYwM7+O8HivB/P6q49sYMQfatpMD5kDbKsZxkVMTMnMjkXdWcaokqCP+MmWaiAoeFW3SjxKQXVmow84nOru+SGx4o8M77AKKaNIksfnApEnxzmlsYCW6DcmoRCeKVtwaOwfv0pdHdEImYiFop0D1u/vpxR+7F+W97MQ2SKWw1Q5ocbG472Tz5DuWfpTt/IjJ5iEjQ9tMEA3EV6dOpF5Fj2vZJd2HqUj9Wlnf+920qIFCaowN1BI/0On4ioCIb+nb8RKNwd30GnrTghpX0LYT2hO1bEnUuDFRs2ZEFGknS3Ge7UP+RjXKe6C0rF50xXgJQrQT9Wg1jqavcDotwIU0Dd3KrL0BovOxhK7BW9QJ8+kM/I+Owe+Uhh2UgmLXd0tJ0Vy9BNF3ZOrNbzJblF52mdzvjTJINvih7OkUQLPQNsvnoiIq8+9u945O38u8owii8q1bt/J1bBUo2ByTIdGV6NnZsY0jYVQIFBerP1Glym1X167OgRTdyMlxvr/5JJOOyBjvFEjc/P7Z2dp4EVR9isg/o1W6n0200aOt60N0nF+40H0xL3ovKx/xRrwe31ahjBbZ+JGZG4muYdw2dqpWFW9TKhEpU7fAqfHE66lcL5vXVmXPCkR1WCnRidj1RaLDGx2MH8w6Bbv5QP/+8c5pbBDVFVcBkxR06QLMmAEMHAjs2BH5PCsLGDNG+57RWLYMWL/e/nsiYN06YNy46LK0YscO4PnngUaNgMaNgQ4dgHBYK++cHO1ZmzZFfyfC0qXi1114ofZ/Yxswvp9TG2jYUOw5+nVuZeeHjIzyn4XD2vs99pj77xs3jv67Qwft3Tds0Oo0SBYtitSDkU2bxO8RCgEvv6zV02efif1m716gWzet3rdtE3+WmfR0oKREa7P//jeQmgqUltpf/+yzWp1Uqxb5rHFjoCYKUR87kYZdSMMu1MPusv+XIgXP4+6y6yfhRrTB/8q+r4Gisu+2oCHaZG/BAw8ADzwA7Dv9TdT7/mPty78B/GzITNWqABFKS0MAgB9xEo5AIXYhDbtR75+7R1LDUsKmTdq1t+IV3IT/Yg/qgpDiWEYfoaNIUVpSWqr11aee0urpzz+BKVOA7dsj16Sna+10587IZ6GQc9tNT4/IFaO8efFF4NNPy1/frp1427JCl42DBmltYM4c4L77gFGjnH8XDgNvvhktg1JTxZ6pX2cn35y45ZZomTtrFnD33fZ9JaQ1C4wbB9xzj7zsyM8Pbqw94QRg6lStjmfP1mR6SUn0NRs2AMOHB/N8lYweHT1mlpQAjzxS/n2CgAh45hlt3P7oo+g+qIL+/bV7++XjjzUZITpnMFJSoo1JTixerF1nvr/IGL9unXadPs9ZujQyZznvPCAlBdi6Vavfdu2AJk3k30GUd94Bxo517qcbNkTGyW+/9f6se+7RZN1zz0X3c9FxfutWoEcP52tE73XPPZH/Z2WVz1Nmpth9zNeFw9q9unVzH3/s2LkzUt528nDDBrF71a8PTJigRq4ePix2ncy8TQSnMtXHnPHjreeQiYBoeejXzZplvQ5JT9fahlWbCoW0azp08P98Rh4v60cmdojIkDFjvM0XmMqP6DgetK6kosFK9CRCX9B8/LGmXJszR1vQsFCNRnSitXq12HVui5lYIqO8LykBvvtO7v5BTlIzM7U8mfPeoYM2+Xba0NCViUb8LgZDIU1JXFTkfu2CBcDJJ0eXd0kJsGWL2LMaNAD+7/+0+ps1CygoEM8nEXDHHcCTT4r/xsyOHUCnTkCDdMKpJxahtLRG2XcXYT4ysSFaFV2yCxtO3YWjW9fRNHvQ3vurqueg5eHvLZ+xBQ2jlOjHpKxBy9JVUdcUI4zdqIftaIBnn420hTMu7IE6/26PlPQ0IM2Q6tXT/oX2XwDoj3GO7zoiLbLhsgMNJErJHy+9pCVAkxMvvaTVu7Gtl5RoCtzVq4GjjwYefzxaqW7m8OGIIiwcBjp21D6vXl1T1G/cGLm2SRNNVq1d638j7MUXtQ2fQYOAkSOBs84Cune3v37qVK0fGlmxQuxZxuuM8m3DBqBfP22ss2P8eODAAaBFC62Mr7vO+VmZmRH5nZJSPs9OhEJAy5bi1+t07Ci2SVhaqr13u3ZA797W1yT6BFhXlNx1V/SYtGxZbBToOj17Om8S+uGoo4CZM4G+fZ37rhvbtmllpW+syrB4MbB/v/M1+/Zp1110UfTnospN/brZs60VL889p7XtRYvcjRH8MGmSe7sn0tpebq593xHFqJDX68W8gW+HyHWi93LLk9d5E6Dd4777tI1SL/3SWN45OdbzT9FN/wceEGv/JSVaO1SBlzpwoyIrKWXa96xZWls090njhrTVfJwIuPVW/89nvOPX+IsJloosQ5j40qKF2uuShhhZxicMyerOxYjdcS1GQ+a4rOwxVie/wTJR5HX/zm5p3jxvZSDr/kF3lRKUi5TsbM03rVWZTZtGlJrq/PvUVPtjbF5dXYRCRG3ayP9OD8Ao88wmTSJ+Zr0eo65RQ/9/KaViL7Wo/jstHj2aLq62gM7D0qhr8/EgvYEeNBeX0nK0pZ9xHG1BBhWhKq3C8VHXfoeT7R/asCERRfzRfpd2Ph1GmLaiAf2CFvQ5zqIPcAlNwXU0BndH/bQtllNHLKZT8C01xRqqjT2k+yDPyZHvP0OGiJXTkCFqjqz7SVZHZK1cI4ikjIzy93G6XrVrBd21j1U/y8iI9tdtpF07sfu3a2dd30HIopSUaFdFM2fKuXaxChJodrmgf15QoPWZyZM1t0yiz5B1P5Io7lzsjoXLuOyqCCknR6vf+fPVlZvsUfpevcTu3atX+d+KzntGjrR3w6PXdX4+0Vlnxb9OjEk06KpbnZgDrssctXfy0ep1bLJ6hnHeZCUH7OZNKuPe2LnYMLubsUtmdzN2qBgPYuESoSL65xVt30VF3mIDGJPVPI9dWaiD9QMVn4ooQ5j4UlQU7f7Raj4QDtvHyalssE90G1iJzoOkG7ITQlWLCRnfcl58ooviZYGkL4REFnhWfnoHD3b2t6d/b1Vmonm0K4uZMzUltcz76hN50eCHqtqG2Qd/Nv6iU/ENXYBF1AUz6BZMoPswgh7DMBqMp6OuXYrzaBvS6TDC5R5gVIxfdRXRynBr28xsRsOoj17EnTQH/6YC9KTn0Z8eQR4Nwkh6reOrVPz2bBo8OFLn1fA3GYNxBlFGdv2nZ0+x+/TsGd0P4qlIN/oW9nu/6dPFAxI/+KC69zBOvPTJfW5ueWWveXHcqZPY/Tt1sq5vVYGDrZJRkV5UJK641uvUbkPQT1BWrylRlOhWMUFi5cs/Hikz070viiQvCqL27cXu3b59+d+KKjfT0uJfxl5SQYH7prxosgq47uZT2KrNm2Wjn7FJ99tunkPayQHzvEnEJ35GBlG/fmL5sQoUSaTez7Xf8YB9PzvjNkeZOVMuNoDbBpzVWME+u/3D+gGGSU6MBlRW8wGrWGeVFVai28BKdB4kRZBZ8KhUtIkuiP1EsndCNjCoVX7dym76dOtdcrtgq9Onq1Gk5OVF3lF/vpeAdfn5kTxPnuyjrlFCdbGLGmJz1Oe98RoNxtP0BIbQS7idpuJamoeL6EucSW/hmqhr/0K27QPcLMb/RjU6WK8erQodT+/iirKv7riD6Ca8Srl4lm7Ef+kqvEMd8BG1wveUiXV0BPYLv6MqZYRMql/fOgCXF6VsIijxFi5Uo2wLh8WV4w8+qHbzwBgU2GmTzihbZU4OWBFk4OCUFKLCQrF3SvRkpzw7/vjYPD811bq/VuQyFUmq300maJ7shmKs+pXqVLeu/G8WLlQ3bpnnX24B5e3avN3JJK9jU1aWFpjW+JmdHNDnTbL1L3piwa7dygSwFcFvuxUJhqqSimZNKqJEF123FBS4W6xb1b1b/3Ii0co7Xvlh/QDDJC+DB2vrG+N8wHwCNxlgJboNrETnQVIU0QlZEIo2twVxUNHoZRYaThYeTmXndlTZ/J2qRXtenv+66tbNVF4LiykNO+gY/E5n4H90IRZQN0yjSzE36nf/xY20ABfS/3AG/Y5jaAfSqBgpRAAtR9uoa2UU48vRljagMf2AlrQM7ek9XE6TcT09h7voXjwTde3J+I5OwkpqgvVUEweoZo0iy0WzqPIy0ZPZei8nR+x3OTnRdWxskwsXenOp4icNGxb/svSb+vWLlKWIJbyVpaRdsjphov++fv3g3qlu3ej2ZXdaJtGTnfKsZs3YPN9q/JDdzOUkt2H++ONi93z88cSsGzcltz43uftu+XurPIVjNf9ycuMkqzg03kvGvaCVnBJVooueRJg82b+LDZENV1Flo18XbVlZsVNkipxGSCRE267omO5nA8aL8jnRyjue+WH9AMMkL7rbUON8IDMzcceeoBDVFXNgUYaxQTSIivm6LVuig4l6wS1AZ4cOWrAQYzAeI06R7P0814gxyJ4Zu7KbPRto1sw6yFiXLtHBDwEtGNSiRXLvYEeVKtYBjYycga9QHzujg2T+k9agGVJOeCBycXY2zt+wATtR/oafoy0+xL/L/v4XFqMp1lk+syYORv39DjqjLvZY5CANW9Ew6tpz8LnAm2usROvo54YOW15XpZKMCuZgauedp7U/N847L/pvc5vs2RN45hn737dpA/zvf56ybMnateruFS8KCoALLwR++ME9iOCOHVrA1AceEAt8Z6wbQAtcZg6sFAR79mjta9o04KefnNtEoiATQPngQfdr/OAUZHvZsuDrr7IhEzRPdExdtAgYNiz6M2NAbkC8Pank5Ze1+cemTcBvvwETJlgHUqtfHxg7Vu7eY8b4z5/T/Ms8nui4tXkiYN067Tr998Z7lZQAo0bZzwnN9xLFnFfRgJ87dtgHbg+FtH/HjHEOSmgXKC87O1JPTvNJI+Z2K8v69dFlHxQzZgDXXFP+c6vgsImCaNstLdXqwSkYbTisjesiWK1X7PqXHU6BTuNR3omWn0SlpIQDnFYUuK4qBrNmAV27av+vWTPy+YYN2uczZ7LsKUeMlPoJA1ui805z0KgISihiQR6ED0AZq2/Z3UmZo8r69aIWb2EcpnRso2PxKx2D3w3fldJQPE7Phu+jKUfcQjPQhRbhAvoGp9KfOKqce5S9sDdxW4620Vav2RGL8f04gtYhk75HK/oIHegF9Iv6eQ+8QddjMl2O9+gcfEon4CdqhE1UHQc9txG/yckHajyDaqpMRmu3wkKx3xjddJgRPWJ+333lff97SdnZlcMSXU+1aoldV7++VtZuQU7NRwzj4QIkJSX+5SqasrOJHn44+rNY+kS/804xC8Eg/dlXtuTFJ3qLFmL3btHC/h5W43Os3HeZ50d64OoBA7R/jTEY4mE172X+pcJFnx/3glZyoHbt8u1KNuCnnVVtfr64tbCVdbHsfNJYRl7bhKx7RFmmTXOeNyRqgEzRtisaINqvKyBRvJz+CJJEyE9F0A8k2skBxh6uq4qB+ZSw1XxAPyWcDLA7FxuSXYleXEy0eLHWORYvPpQ0HSLWeF3MyE6S/PgAtEJmA0BGWS+ymD066xAVb9xC9PPPtPjJ5fRvzKUeeIP64QXKwduR56KEFqMjrUBr+gvZ5RTfc3Fp1H3dFOPGj5ajLX2Hk2kpzqO3kUMT0YdG4R7KwyN0e2pBdL388QfNemnzP8EyvS3KgkiifmCtBkljIMvKoETX05IlRPPmiV07b559O5Zxo6Qrdvr18+abV+9bokegK1vSN3OcrjHKykRwM5HIqXNnrU2aN5NiqUQfOlRsHErWNi+bvG6Yn3aa2P1PO835PkblZvfusXlfqxgsTov0WI9l9es714eduwlVLvq8KolFF81e8mmOQ+NXqeJX2ajnp6CAqE8f8c0fv0pbJ2SCh6vIh0qf26JtQlSJrvtE9+MKSGW+g6z3RMtPoivRvW6eMbGH66ri4DXQeGWFleg2JLMSXZ9cGzsH7wjKITPxtFNw675zVVmQy06G3XySywTbLDeZLSmJ3OzwYaI5c4gKCujXu5+nPDxCo3APTUQfehs5lIdHyu4TxmHHB4kqxvegNr2NnKiPn8G9NBKD6AE8Sv3wAvXAG3Qp5lJbLKdm+EP4XY31opeh6KJAtCyt/m/1t1PKzbVvX26DpNGyNxGCaqpKU6YQXX+92LXXX2/fd7xYC3rx6W8MYibiR7wyJtG+pS8oK0rAw3gE29VTVhbRjTdGf2Y3Wa5TR73ysXdv57FJJ9GU6Ckp8a03p/r0Mn+77jqx+193ndj9pk8P/l3tgmuKLNJlx7IjjvCeT6dFppPC382AIRTSvl+4UMz/t4yPdMBeDpgVdn4CfqpSqqhWNhYVETVo4O2dVCC7AazPL7wqwlVbh4q0XRmf6EuWBHPS1oyK0x8qSYT8xFuJ7rY+jbelPiMG11XFwrzeEo2RUllhJboNyapEN05ejZ2DdwTF8TLxtJsQqLYgV/EO+nfV8Dc1wiY6AT/ROfiUTsLKsmtroJCeRS79FzfSO7iKPkIH+h6t6O8GmdrKs0ePyMMOyynG96A2EUCHa9WhP3EUfYNTaREuoBnoQkPxeNS1V+EduhgfUht8QcfiV0rHNgrjsPAiRCY1aFB+4R6EcllXnNq1DdHNjYULtWvNQRWzsqIVQSKWZ3r7zc3VlGpBlG8s0pIlmiWuyLWdO9v3H5lFoI4X1xRmV0kyVmp+UzicGKcQRJXo+oKyorgAiaf7F5mAgm3aqG8H998vNk4lQl327x9xDzJ1qvqAwk6bpqJJV9jKKtNEXUQNG+ZeV8XFRBkZ4nm+5hrnd87N1cYvc3mb50eyi/Sggw27Bf60G7+Nc3AnxSFQfjPVaf4p61bQTg5YKey8KDhVKlWCUDbKug5TiewGsK5k9qIID8o6VKRNiCrbY7VOSgTL70TLTzyV6G5tOhHKhxGD66piwUr0aFiJbkMyKtHNk1dz50imHUE/lhuqJ54qj1OWo6SEaONGoh9/JPrkE6J336X/3fUaDcQYGo7h1BXTy96hDvbQSpxE69GEDqBmuZd8Az3K/nSzGKdLL43Ox7nnEv3rX/TLyV1pPG6lpzGYhuAJuh0v0YVYEPXTethJo54+HJgCxYuiIiMj4l+VyPvR8FGj3BfvWVmRNmDl41VkAZKeXn4SWr++toA3uzOROa5VXKxeiRSLZJRtI0aI/WbECOsuNXOmmAImJSW6zXixkLazuoxlHdgthtPTg1Wye7FaI5I7QcMpkuzkwIUXaj56VSr977xTbPhKhFMFugIuKHcgujLISnEgevJkyhTNCtysxHZTpqlwbeW1rrKyNIWkm3LMbX7kdZHux2+4Xi8iymOZzXbjOOWlPZjr2rj5bfc882eiluhO7+ek4FSpVFGtoPFjXe92X5E5vsycNztb6/Ne1iNBW4eKtAnZDZgg10mq691vXmU3GYIgXkp0kTV2IljqJwKB6g4UwXVVsWB3LtGwEt2GZFSimyecspPlyoJXy424HEsqLSU6cIBo797IZ/v3U8nESfRb/9H0fZeHaN3Vd1FJr+uJLr+cqF07okcfjVy7bZvjyOWmGC9BiHYgjX7HMfQc7or6+hHk0f14kvri/6gbptGFWED/e/krotWriXbvtnwdUcu3Xr2COcrvVREkY/nmlGRcU7idFhBx1WL+LhQi6tZNTA5Y7TR7VWp5Da45erQ2uTrvPO91bl6UzZ0r9ru5c8u/v6wizTjR8NpurKyyYqVEHzjQfjHsRwkl+t661Zqb8kg/OSFaP4lgYe81WW2QqUh2cqB7d/WyuF8/gbGP3JUJsUijR2u+eWWsrN1SnTraPc0LX/OmqaiS28kPuZMyTbReRRZMspveuuyYPt1ZEeCmKPCzSJdRcGdkRNeZjKJQtn3oc3Dju4tYzxtPkFnlzzwO64pYYx/zYlwjo8xRqVRRrWwMwmpSZr0hM7+aNs37eiQW1qEibSJeJ3GtUHUCQZWLnFi4sXEiHkp00TW2l5OglY2KEqiTLdErFhxYNBpWotuQjEp08+RV5thmZcGPJbnnwaC0lGj/fqJ164i+/57oo4+I3nmH6OuvI9ds26Zpji+7jOicc4hOOIGoUSOiatWIAFp/1Z1lk9F3XnFWjJdzpRIOa6uv5s1pz/Fn0jxcRFNxLb2E26kPJkb9tCMW02n4mprhD6qLXRRCidA7i/rplPEdnpWl3tr1iiu8/c7YLvxYR4puIuj+zJ3aqd0kyknhGAqVd8cio0SXVZTUr6+1Cd1iSrQuzQtAP0o886LMqwsDL0pw8z1ycry/h9E/qNd7yKZatYiGDy/fr40Wjm4+ZL2kjIxoX/A1ajhfX6OGpoCUrR/9dIaVQqJ2bfG2Gqv60NO8eerL3U4O9OqlNuYDoCmIRYlncGOvm39u7cVqnmElzxs0UOOD3U6ZVlAg9vuCAvd68nrSxknJKaIo8LtIl/Eb3rVrtAxcuFDrG3l52v9l/PY6Jas5uMyGh9M8F9DkttmtoD4+B+3mUbVSRaWyUbXVpOx6Q2TTMByObDx5LUfR98zLC15ZkgjWtKos0VWfVI7nJkM8lOiibVoPNh9PS/14EpQrpiBIhFMVjBxGt6FW64JEal9Bw0p0G5JRiZ7sluh+LcmnTNH8hLfGCjofS6gzZtFNeJUGYSQ9igfoBfSja/BWZIK9Zg1Rw4ZEVataP9B4pl3SYvxDXExvojuNwx30OIbSfXiGbsErtHzwTKIVK6Lf+1BJ2SRVtTLEmET8dIpa1un1YfV/Lykc1ixJVCz0/biZGTlS7DonBZkxP+YFiBdls9txLeMzZIKUmSdzgweLKaWsJoLFxd582I4eXb4/9+4t9ltz8EMvbcd4j6Iif224oCB+AV6NAU6tFnYZGZpiRjaInVUyu04SlRmibnrs2qm5L+lKeSfZk5HhPfigH5/zQchxOznwn/+ofV44HF2/IkyfHoxCO9bJzlIsFhsFVvM6v66tjHiV0ea8ibggMY4PKhbpsmN6err9fEdFsHGruhK9X8+ezvVgVx66XDfKgSAUdkEoVVQpG0XHeP2EnFtQVy/rDbcTXtOmadf5UfjLzGUS0bpVR5UCXsXGTlAnleO1yRAPJbpMm463pX68qIiBOpO1rioy+oln43wgkceCoGAlug3JqERP9mMaSxaXUm3soaZYQw2wNfLO2Eb34hl6DMPoRdxJm/91HdEllxCddRZRixZETzyh/X4JUXP85ji6v4g7IxMts2K8ShVN63LccURt2xI99VQkc4cPaxrWV18lmjWLaMkSWjhqBTXFX5SKvQSUuk4srAbPoIJfiiSrAVJWyRsKaW3Sr/sKPUCjH/cAer36sUSfNMl9ASnqNsCPhZExWcmBUEhTdIkcCXcqb2M7FC1zffFrDsYmo6Bxmkh6tUT3UrZDh0Z+//TT/tqw6AZMkGnwYGcLGLNrAJlkN6Hu1Uvs9+3be38v/cSEqEJD/2z4cO/vqZell7ISbcMyyU6Jftttat25iB6LN7o26d8/uDYNlN8ICUphb+Vb3I/FskyyUqb16CH2W+PhNjv8+M03+p0XKQsrF1dO17st/FT43tf7sagfe5H3MqJ648xq/lBcTLR4sSYHFi8+ZLlRr2J9EIRSRUU+RS3BjX/7dc1iVQ8imwJ+7i8zD05URZdKdxYqTiBUNrcViWyJrpdhIrkDihUVtZ0lY11VdKzmA8kGK9FtYCV6BVWil5QQ7dpF9McfmjsU3VfE+PFEX3wRuW71aqKLLyZq04bo2GOJ0tOpJCUy+30Mw8re+Vj86jwa/WMxXlxM1KrJDtqMhrQKx9NnOJvm4N9UgJ70PPrTo8ijGxrMiZRfSQnRd98RrV1LtG+f5tZFEL9+t5cssQ86FOtktCz1asW9cKGYT1C7ZHaD4kV5pU+g/Sji+/d3X0DaWeDZ5ceIF2WAnfJs+HDv7ce4mBFpy3Xran6S9eCpfjZ/3BZ9Xv0AeynbUaMiv2/Vytv76GnIEH+/V5HclIsZGURTp3prN3YLYFHluN/y1fNg9tGsbwwYr9Mn/14UW/qpGCL5TSp9U9GvKxer+rGTA+3bi/mlF00iiybRUyuqU/36RH36BHf/tLTy7x+r4KlWi2rRvtW+vXN9uSmxRfLmxRrfqEzx0+ZitZHhlFSNW6LJTiFoVJ4F6Xc3UZUqsvNDu3rzq5h12xTwa9Ev856JZt2q2p2FCsVkLAIoxtIqPZ4+0WXadCK4A4olFTlQZ7LVVWUgXgGGEwVWotuQjEr0hHTnsmcP0YIFmhnT//2fZp19//2a+ds110TOLhJpSnMnUyej6ehv9hbjB1GdnsJ/yj6qg900GdfTc7iLHsZD9Fv/0ZrJ8OzZRB9/TPTXX9JHjP2iYmEtq4RQ6T7FnBo00MrG63sZLdX85E2fgHlR0hr7xbRp3p6vB9Szen56umZxLRM0R9YFRSgk7hPdzSe0Uz0Y+4Nsncsq66yCpTn1Q5lAlebAbrKbJ0Zfwscd573dAkTXX+/v97FKDRpoSlDZDS875YyoJfq55wbzPllZWn+3mvx7tQ41u6Mw3nvaNPtNNq/vYG7v2dla2A3jZ05KdF1m+S1LEWWMW4C3IFOsNp2N7dyPezDRlJFhXeYqLNH9KqCzs73FMwC0shM93l5U5LyAV9G+/STj5ppdOavayALcLdEfffRQ4H53RZUqsVa+eNncNMu1WFiM+rXol50HJ4J1axDuLFS4GAq6vmMdSDJeyrMgXX9UBiVuRbVEZyomrERnJbolyahENweRsls0iwSRouJiou3bNWX1l18SrV8f+e7PPzVHqn37EnXrRnThhUSnn0509NFE9epFm2d++aXzSGD0h/CrwWK8Rg2ixo2JWrbUVvlXXKEpvnUOHCB67TWid98lWraM6IcfqHjtBjo2s1B6omQ1eTHr8s3+MP0O0rFYWJuTrny0U/D6vb8fdw/5+c71IZP0yYVeVwUF4j7I/T7fGFCvuNjaTUlmpvux+HCY6K23rCfVdm4i9M+6dYv+3E4OqKjv7Gzx4HV+koiPUnOfdrqfXT8QDTZpbmtERLff7u8dg3DhEWR6+GH59mK1SBL1iR5EgFNjMu7n6ni1DjXKFKsxw0vQYLuUmmqtQHzyyejr7OTAk09G3nfaNDUW4nb9tajIu0uQeCeZAKDGE3+xsESfPt1aDj71lNjvjZ7nzPjJv97f8/O9/X7hQvHnm+WDlQLKaz5UJnPQTyNBbmRZ+UQXvUeQyqlYKw91vMSCMfv2j0VAPb8W/cXF4pvBiWDdKuO3Xtavvh/lrcgJ1awsb/Udj0CS8VSeBXFKJV5yRDUcqJOJJaxEZyW6JcmoRB81KlrY1qpxkOZOnkytqv9IbfAFXYwPqTvepAVdxxE9/ni0e5SvviI67TSiZs003wtmyW2MPOWmGDdajP/5J9FJJ2lmhFddRXTjjdoqIj+faOxYos8/j1x7+DDRxo1EBw96LgPZiZKo5bOuvFQ1SMfqiHdenvXCR0XASrvB3c7S0q18rfJXUKBNlgsKxJWM+iaR0eeufoTfrV34sYRPSYkOqBdkMLnu3e0noea6DEqJricVwSbdkuzizk0ZYef7WyaZJ7KFhd7uo/eb+fODL0eVqX59bxtm5sCiRUWJ4ZYqJYVo4MBoWenXOjQ/337MUCWD69SxDuT5zDPR19nJgWeeif7d9Olqy9U4RiaC33+vKT1drp0aAzf7iSPgdo2TdbOoi6ghQ+zv4XXDXw9W7PVUl16GXp9vNecrLvYff0VVcgpC6zWPIvNcmfmA7oYnSJcvsVYeWuHVhUKsAur53cSoSNatMv1dth36Vd66ucgxBmgXJV6BJOOtPFO5MZcockQVsZIrDBNvORBvWIluQzIq0c1KxiuqzXGegYgoxmvV0kb4MWMi127aRHTPPUSPPEL0/POa1nLOHKLPPiNatYpo9+7Yv7wB0YmSCj+ZXgc1PwtrmSQ6KVaZH7uFl0xerSZY5k0iuzRqlLXP3ZSU8taExnbhtz3Urh2tfAvaB2uTJpqSzjwJFYmNYA605ycVFAT/rsaTCiJt2U3x6dca1q7P5+TI30e/l2qfuLFIw4d7kxm6+yei2G0oyiTj4ly1Gwi7McPPiY6MjPL369cv+ho75ZnugsqIaNwG2fft3Dn+desn5eeLn1bJy4uUp9c4HU6nxzIyrE9PGOnZU+w5PXva30O2f4ZCmlwoKvIXdwOIjG1+2p5VMPZE2LRzmjt6sZI2thfzvYxtR0aJnpsbnHIqXspDK1QHCU00C1iR+b1d8O1YI9PfvbRDv8rbmTPt55d2G3dOz4vXBkdlUZ4lkhxRSaLGlGAqF5VFDniFleg2JKMS3Xxk79zqnxEBtBep9BeyaQVa0xKcTz8e35no5ps1xbfOnj1Ec+cSLV9O9PPPRFu2WJu3VRBEJkqqlDdeB2mvC+ug8qQqP8YAnUuWaJbgMr+zW5R07Sp2n7PPdv6+e3frdqGiPegT3VgpBu0WEEbFn9WieeBAdXlYsiQ2fo5FJ4+xUEa3aRN5nlnWXHml+H2Mk+J4uHgytiMvv8vL8+4iQW+78Xxvkfzp/UmlOxkr+ez3RIdZFvTvH/29nfKsf//yfUi1/NLfV9RHd6KmKVPET0R17hw9xrhtLOt90Gpj1ErOiIztovEGevWyv4fsBvv06c6KJpmkv6ffDX6zAsqPtbfKJDJP86sAFY2VZJWsDqXK5N2JRLKO9uNCwaotZWYmnrJLdH5v3gCItZ9p2f4eayWpiIGMftpOZIMlXoEkK4vyLJHkiGoqg493JrGpLHLAK6xEtyEZlehm5VGtGgdp9owZ5SbL+jHjZEe18sbLIG232zx9unY/L4Ht/FgJ2eVn8GBtYuilHGQmOU7H8mTe3+n7cNh6f0hFe9AnurFSDDr5P9WvsVo0q/ANqz+7qEhtQDSZ97QiVr7Fc3Ks+4uostXs01O0n/TpI++73S1lZ2ubS7K/091F+Xmu6KZHRkZsLUjNbS4I3/9GWen3/ub8Tp4c/b2d8mzy5PJ9KKiTUrfdpr4MVfcFt/qS3aQzKk2MAczNciIIK7OhQ8XyaAxNY4WIAk5/zyD8evvd4LdSQOkxS0TvoY9xQcggt7mjn+P9orGSgsq7HfFSHtrhpYwrmhsJkROixrzHy8reS3+PlZJUdJ5mNy6Z2wZbovsj0eQIw1QkKosc8IqorjgFTKWnY0cgPT3yd2koDKpSJeqa9HTtOgZo3Fjt/TZtkv9Nly7AmjXAkiXAlCnav3/+CXTrptXTww8DWVlAKGR/j3A4+u+sLGDGDO3eqvIzYgSwfj3QoIH9b0MhIDsb6NAh+vMOHZzfQf9du3bAwIHalMeM1Wd2uF1bUgKMG1f+cxXtQb+H13s51bMVRMC6dcCyZZHPSkq0cnR6xoQJWp14Rc/nmDHas3fs8H4vEaze046//go2LzqzZwNdu2r9wsj27WK/b9Qouu+K9pNXXtGekZHhLd/6verVA/r1A0aPBn75Bfj0U/n7dOzor9+sWwccOiR27XPPaf/K9hGvmNtcZqb6ZxjHDL/3N+c3O1vsd1bXhcPu5V2/vnwezWOVCvbtU39PK/SxzTzPcmPDBm08nzVLe/+OHbU+t3lz+XHWy5jthGg+3a7r0kWbUzi1USKgtNR57BHBOLbo7cXu+aIy0EpGhcPAQw8BM2eWv29mJjB9enT9bNlifa0K3OaOdu8vMtfbts1//pzwMu8FxMcN1fN0O2TLWJ9nOc1Xc3O16xIFfX6/cKG9/Nbzfttt1vMbozwLMp9u8saM13Yoi+hz7MYlc9sQnfeZ11WMRqLJEYZhKh+sRE8CwmFg/Hjna8aPD2YhWxFxm7zI4nWQ1hfWPXpo/xrrx0mZEQpp6c03vS/GS0qApUu1eyxdqv1tl59q1YD/+7/Ic815AaIXvqLvoP/us8/KT9iDYvXq8p/p7cEL5omuyMQ4Pd16wTZ8uPzzjRP7Zcucy5FI+75vX+u6FMG4sFy8WP73AJDiYVSK1UIpFpjlhWg/CYe1vvjyy97rjwjYvVvbTLrnHqBpU/m+p2/I+pWjb7whdt3GjdYL6+xsICenvNxRJdf1Nif6nllZQH6+2L1/+ikid/3IHyOzZ2v/itzPaXHupFTKzwfGjtWUwQUF2r8ieOnziUAoFOl7IvMsI3YKNadx34jVGC1Kw4bqrtMVcHZte+NG4Jpr5OWIuU3YKS2tNvjXrw9OAZWSUr5+zHno3l3+vlaIzB3tDBzc5np+NltF8DrvTUTloUwZi8yzRDf+Y4kuw3butL+GyN4wwmmDwI+sMqPXhejYEislqYrnGNuGzLyPKU8iyhGGYSoZMbKMTxiS0Z2Ljn4Ez3hsM9EC3SQKKvyAx8InXxBBRmSPahqPoptdu4jkxe0dYukbefRo+zx6qX+ro7six4OtfN6JBMZ0OuppLke749tTpsgHgD3rLK3sjO5wrr/eX13k5or7gxY50hordy5+kpO8kOnrXgL4qkrG/PiRo+eeK3Zd587as8x9Zvr0YN28GN2fuQUl7N490odl3KEYXWGoeBejL3f9fmY5IOpuwFje+fnl/f9mZWkBLkV8CptdzMQqnXmm99+q7HuyR/L9ulMYMUIsX8YY804EETB72jT/gf68ujrx447Dra+ag5g79Ysg545+fKK7pfR0f3n3U3fxpiK7kVA11zbKs6Bcv/jxVx8EKl2dGdtGrANJViY3DhVZjjBMPKlMcsAL7BPdhmRWohNpA/3ixVrnWLz4EAekcMCPIiqWg7TKICOyi0c738+5uXJ5cXoHlYFenb6384muk5sr9zynia7bxNiuPESV+VYLCNFFs74AKi7WFIX164u/s3Fx5EdpbfSrrmqhNH++2LMffDAxFNBWiPR1/RrR8h82TE1wTLugaV7kaHa2ePDD66+3LoOg69AcQ8QpiK45GKnoxoKbH1qZZOVP2ryp7mVx7havws6nvvHdVAYsDYW098rMVLeJMnq05kNa/9dtbPMaPNtveYvOOUQDufboIZYnlfUXDmsKdBV4UUC5yQ6nMUdE7mRlabJDn0/ES8FjzqvVfEBm7Dcmv0p0otgrD1VRkQMaqurHujwL2jd8oilJVW12m9tGLANJVjblWUWVIwwTTyqbHJCFleg2JLsSnYg7hwxmazu74JqVYZCWXTzGKniSKgsPtwCJgwc750N0gZGXJzbRdVKUO1nuzJxZ3upTpPzN5WhlgeoWjFQk6c+WDbRnt5hQtVASzc/ChdGnK+rWGik9hwAAKfpJREFU9f8eIik3V+w9nPCiaPUSpNiu3OwoKhJX1Ot1Om+e2PXz5pV/nkqlnl0yKj69yE7RejL+Vm+XBQXeNz6MC3S/m+p+NivMm4aqNj2Mmw7xPk2mWqHmR8FrpH17sXy1by+WL5WnxaZPF3umKLIKKD91JvvbeCt4jH3EOB/QP/MTaFyFkjiWykNVJJqFtAyq5tp6XamQVW7Euw9Z5cd8IjdW440KKqN+oCLKEYaJJ5VRDsjASnQbWInOncMPdoNxZRikZRaAsZog67gpUtPTxRYtgwdrlm7G78NhdwU6UWwWR6IbE0Ylr1mZ5mYB77RotvudzGLaaEUu637GnIwWTX4XSl6PWcsogP0kJyW0CF6toFQp0Z2saUVlS0ZGdBt3c32Qmmrd32LhAsqoJPKieNP7sGj5m5VSXpXE5nryMx/wulmRn2+9WefXDYbZTUC8T5OpHjNUKeVFT3n06qU2X/o7W32enp4Yhgd+3HF4+W28545OJ1L8KFUT0V1JrEg0C2kZVM21Y2mRH+8+ZMbLnDFR2gbrBxiGSXY5IKorrqDhnBgmPtgF/RINBpbIiAZn3LQp9sGTnILZzZgRCejmFoBnxAigsFALSjRggPZvYaH2uRtBB/opKQEGDtTKzoz+mR60SW9vo0cDmzeLBxVzK0e737VoIf4eet1/9plcoD0r9GBNXoOnWd1L9jqnwLlmrrpKC6wZa5zajh16YKWOHdXkwal8RWXL6NGROg2Hgddec77+tdes+5vXIF+hkNYXZANSychOHb0Pt2wp/1vAvi+7oTLQmpeAvqEQ8Mor5T/X38cc9DQ7G5g5U6trpz6Yn6/JCKNMMMqNvDy5fLrJRBFUjxle2pkVN9wgdh/R60SDuE2bVr691q+v1d2WLf7KWhVexwmvv4333FHvI3PmaH/PmRMZW53arxuxCuiYiHidZyUCqubaqmSVCPHuQ2ac5oz63+Z5YkVoGwzDMIyBGCn1Ewa2ROcdJsYaGcuReAVPcrI4idWxzqCeE2vLHRk3Dl4sTp2syDMzxS2aVOHXKtTqPWrVImrdmqh/f6LCwsh1smXlt6/I1o/R6kmkXMynN2Tryk/bnjmTqEmT8u1HxK+xjAWl2f+4jCVhLF1AWL2r7uIlI0O+fcfDEl3kfVTLeNExa8AA9daMqsYMVWOEn1MeTu8o0mcSzWrUjJ9xoiK78nCSA17dTyU7id7WnfArhyuyb3hVOJVTorYN1g8wDJPsckBUV1wl3kp8JrZs26ZZDT39NHDyyZqlcEZGvHMVP0pKtDLYtEmznOnQIdqKwe17nUOHgHHjgNWrgebNgX79NGsEu89VPvvgQWDwYOC33zSL4WeeAWrWtH9nuzzp1mROFuZ16wLTp4tbJVlZI+3fD/TuHXn+668DqanWv7cqAzvL2S5dgH//W64sdKzKJBy2Lv8uXYCcnPLfHTqkWbc7Pdv4nKZNtc/WrtWeKWrBbLbcEW0nRg4eBF56CejVS/u3TZvydWC8b8OGmmXShg1ieQSircgvvrh8nc+fD3TrZv1bIuCkk4Dnnwduvx344gvt2du2afIqMxNo106zdjd/bvf+ulWd3TMBZ6tQY707PbNLF81y9q67gI0bhYsLn36qvY9ZTogga82VlaWNAYsXaxZTJ52k9ftQSCt7Hb2fn3eeZs1rBRFw4YVam3rlFa2Ojz5aG1+2b9faQbt22jM3bIi+v/E5WVnR1t06XboAp52mWWwXFQHVq2t1cPTR9u9nrGurdyLS+tuOHZHP69XT6vfgQa1Op00D7r47umyPPBK44w4tH0uXavktKQG+/hqoVQs4cMA+T+np2rX6SRK9f23YADRooJWVFcayserrOikpmvx5+OHy7wxofz/7bHT73rMHuPpq7RTDJZcAb7+tyXgrzM9u1077LC0N2LXL/r3tWLfO+vNDhzSLPF2Otm0bkaNm2ZueDqxcqbXNtWut+83OncD55wN//SWWr65dtfZ2/vnaPZs21axzzeXiNLabsRszZC0m9THaSz8yop/y6NrV/hq7Ux526BasAwdGzyGysjS5ajxhInL6xa6tW5WhyBgoWl9+xolwWOtj115r/9unn9bKSHaO4vQOMm3R7r4vvQQ0a6bd5847o39vHvsWLgQmTSp/H68n8rzMYUR/a57HAMDWreLtx0/egkbP27p12hyJSGtTsvVvhbGfmssgJ8denult8bffgDp1gL17re/vJKtUrY1k8NuHrHCT+6pOATKVg0SWNVZUtPwyjHJipNR35IUXXqCjjjqKqlevTmeddRZ98cUXjtdPmzaNjj/+eKpevTq1atWK5syZI/ysZLZE1wPkmQMK1q0b75zFB5EAjk7f69j52W7Txt7/tqpn5+RYW3fk5Fi/s5NP8Jkz/fuwdrNGatPG+vo2beTrR+bdnLD6XUpKeUs9p2eL1IPVc8zPlLXckS0jYx2Y5YCxDqzuK5o/3dpGr3unsrH7TiTZlaXb+8v2GTMiZe7HF7NouzUiavV13HHatVddJd6P/QYZ08tn8GBvfmKrVLG+Z5Uq7uViJxNycpyD8wJENWq4v1dqqly/MJaFSPswW8ebf5OeXl5mO+XJ2E6bN9c+M8uB5s3F2ryTLBNJKSnl27hM3xSR940ayfe7hg2tvzOWi5/YGn5R6W/ZrnwaNfKePxUWlqJt3a4vmeWxl/ryMk44yf1wONLnZO7p9g5O80wR9Psa5YDd793GNS+nK7zMYUR/65Zft/YTZN784tbWVMkimfdwm+OKyCpVayMZ4inPE41kt0CNF0HLC9VUtPwyciS7HKgwgUWnTp1K1apVo4kTJ9KPP/5Iffv2pXr16tGWLVssr//0008pHA7TiBEj6KeffqK8vDyqWrUqrVy5Uuh5yapE1xXoQPlFM5B8inS3AI66wsdt8jd4sNjiXCTJPttNAWlemKnMq5cJsp0CXU9mJa5IGYi+m91kWKZM7J4tUg+qyr5atYhSQraMzHVgJQfatPEeoNKq7flRkvttg3aLPC/tRKZdqig/0fzoTJsmfk9ZxaKq+tBlm4xbCzsFup6cFOkq6yFeSS8ble8SCkW3ASs5YFQYB12OehuXGc9E+nEQ7bx5c/8yRAUq3MPYKXSt2kAsUdHejPLYS315+Y3ffDsp0r3OH0QMCPRrreSA8fdu72cVLNgNL3MY0d/azaNF249I2wrivfyUm2pZJPMeMm3UTlapWpfJkAjyPJFIduVZPAhaXqimouWXkSfZ5UCFUaKfddZZ1L9//7K/S0pKqEmTJvTkk09aXn/ttdfS5ZdfHvVZ27Zt6fbbbxd6XjIq0bdujRZ0VpNlQLsuGdD9VjpNnER8ABcW+rfG8/rsffvE7qX7aS4qCiavohNk0fzu2+deP2Yrd5F3C4e164x4KRPzswsLY1OmfsvIqg7s5ICbha5ICoeJdu+Ofdk4vb/XdiIqN0Ih7XsV5SeSHxl5lghJr5OiIjFL1b/+ErvvX39V3DKxKqOMDM2/uV42Qb+LnRzYvTs25SgjKwoLYzuWeX0ftz6rAj8W36LlvXt3ULm3RmV7C4U0Wex2UsRcX17GCVX51udrRvy0d6e2aL6vlRzQf+9lvuG3rkV8z7u9e1B93E/e/PqMl2lrfmSRzHuItNGUFKLJk+1llap1mUy5+p0TVkaSXXkWa4KWF6qpaPllvJHscqBC+EQ/dOgQvv76awwdOrTss5SUFHTq1AnLly+3/M3y5csxaNCgqM8uueQSvPPOO5bXFxUVoaioqOzvvf84aDt8+DAOHz7s8w0qBh06RPtcrFnzcNS/xutWroxlzuLDJ59ovnBF/VBasX07MGSIf595Xp99881i+R8yBBg5UvN3GWRe+/YFzj5b8xl8zjmaXzRj9xLN7803a/443epn+3bg44+Bc88Vf7eXXtL8HBr/9lImxmcPGeKvHXnBSxnpvxORAzt3qnmnq6+OfdkYMb+/13aiIyI3dB/bKt/bLj8y+UoUtm/XfL/rdQIApaVaMnPmmWLvdOaZ5X31V6QyMbN/P9CkCdC+vVYuQb+LnRy4+mrgwQdjU46ismLIEOCYY+Iz7srg1mdV0b595P92/cgK0fK++mpg3jxvefOC6ra+c6cWQ8ENY315GSdU5Vufr5mf46e927VF833t5MBLLwGtW8vPN9wQKTO7eyaCfPeTN9mykr2/Ea+ySOY9vv9erI3u3Alcd521rFK1LpMpV79zwsqIrhdJFv1IvAlaXqimouWX8UayywHR9w4REQWcF1s2btyIzMxMfPbZZzjnnHPKPv/Pf/6Djz76CF988UW531SrVg2vvfYaevToUfbZuHHjkJ+fjy1btpS7/uGHH0Z+fn65z6dMmYIjjjhC0ZswDMMwDMMwDMMwDMMwDMMwFYnCwkL07NkTe/bsQZ06dWyvi6sleiwYOnRolOX63r17kZ2djYsvvtixYCoTJ58MrF0b+btmzcOYOHEBbr75Ihw8WLXs86ZNk8cS/fLL/d+nb19gwgT/9/HCFVcA77/vfl3fvppl07hxgOHAh3KefNLZUqNXL7H8XnGFZmUtUj9z5mg73aLvZs6jnzLRn33ffbFvA17KCChfB3ZyQBVnnw18/rny20phfH+v7URHldyQxa1vxStfXjHWiROZmZpVthupqdaW6BWpTMwYyyjod7GTA2efrVmix6IcRWVF376aJXqQY5kK3PpsvLnkErHyPvvs2Fuix1vGehknVM4pzZbofududm3RfF87OfDkk5oluux8ww3RMrO6Z6LIdz95kykrL/fX8SqLZN7j++/9za1knieSH9Fy9TsnrIwcPnwYCxYswEUXXYSqVdWvC5hogpYXqqlo+WW8kexyQPda4kpMnMvYUFRUROFwmN5+++2oz2+44Qa66qqrLH+TnZ1No0ePjvrsoYceotatWws9k32is0903aeXU2CecNj++1j4RHd7diL5RBfxGejFJ7pbGbBPdPEysqoDJ5/ofgO7VWaf6E5lrvtEVxWIUcYneqIH0ZT1lajCJ3qil4lIGQX9LiI+0YMsR/aJHnsS3Se6ivbGPtHV+0SXmW/4rWsRv+Ne5/Aq2pbXvFU0n+gi76HCt7iqdRn7RPdHsvtCjjVBywvVVLT8Mt5IdjkgqitOCVKT70a1atVwxhlnYNGiRWWflZaWYtGiRVHuXYycc845UdcDwIIFC2yvZ4CMDKBuXedr6tbVrksGwmHguee0/4dC0d+FQlrSDy9YfQ8AY8ZoPsFM7vml8PPs1FQgJ8f5/jk5Eb9l1aqJ5dXumU4MGuTuVzA1FWjTxvmaNm2069zqB9DKIBzW/i/yblZ5FC0Tp2fXrClWD4MHiz/HCa9lBIjXwdix1veVYdAgTaa4lU2QmN/fazvRESnz555TU34i+RHJlxWNGvnPlyx2bdKJpk2BKi5n5apU0a4zI1smQZCTE5HpItiVkep3CYXc20Dz5lr/jUU5isoKfTwT6ceDB4u1c9l3at7cXZaL9Nl4U7eu9i5O6G0glqhqb/pvx44F7r3X+VpzfXkZJ/R8+8mzcb5mRHaeYsSpLcq8p5f5hht+7ulnDi+C8Teq8+b0WxFk2pofWSTzHn7nViLPE10byZSrinwzjB+ClheqqWj5ZZhAiZFS35apU6dS9erVadKkSfTTTz/RbbfdRvXq1aPNmzcTEVHv3r1pyJAhZdd/+umnVKVKFRo5ciStWrWKhg8fTlWrVqWVK1cKPS8ZLdF16ta1tjipWzfeOYsPM2eWt+jIztY+F/leZ/Dg8tYM4TBRmzbWnw8erO7ZOTnWu8E5OdbvbJdXtzw5/U6GNm2s89umjXz9yLybE1a/S0khSk0Vf7ZIPVg9xyqvQZYRUeT+ZjlgvL/Vfc15T00tb+VnVd5OZeNWJm4WQlafu72/37YsUuZW19SoYZ3f5s3V9C2rZ9q1R7s6MefRro6tZJtTcqsTJ6pUsb5nlSreyiQ7Wytbt7Kyqy+ZPiDzfLcysrpXerqW3D6zekbz5tZyoHlzsWfb1b/58+xsrb2JtHGZ8UykHzdqZH2/Ro3s68buN8ZyUTUexhu9DTi9azwQbeuifclLfXn5jZMMzs62H9vt5msi+XGaZ4qg39coB+x+72W+4Yafe3qZR8u0nyDz5hend1Mpi2TeQ4VcVLU2kqGyyHMVJLsFarwIWl6opqLll5Ej2eWAqK44roFFdV544QU888wz2Lx5M0499VSMHTsWbdu2BQB07NgRzZo1w6RJk8qunz59OvLy8rBmzRq0aNECI0aMwGWXXSb0rL1796Ju3bquzuIrK9u2AR06HMbTT8/F/fdfhmXLqiaNBboVJSXAsmXApk1A48ZAhw7RO6hu3+scOqT511u9WrPg6tdPs16w+1zlsw8e1KzjfvsNaNECeOYZ58jZXvPk9DsZ9u8HeveO3Of11zUraStEy0Dk3Zyw+l04LPdskXowPke3oF27tnxegywj/f4333wYvXrNxRtvXIaJE6uWu7/5vu3aAZ99Fv2ckhKx8nYqG3PZ33or8Morkb9vvx344gvN7/W2bdqJmczMSH7Mn4u8v9+2LFLmVtccOmRdDqr6lvGZ9eoB774L/PGHdXu0qpNq1crn2a6Onert6KO1WBzbt4u3SSfWrgVOOgkoLASOOAL48UdrC3S3MjHmRf9cbz/p6cCOHdHtyFxfTz0FfPWVXB9we75Mv7X6DWD/mVvf2LMHuPrqwxg4cC6ee+4yvP12VVvrYzt5YNcvze8l2sZlxjORe+7cCZx/PrBxI9CkCfDRR0D9+s51s2eP5vdz7Vqtnc2ZU94qW1WfjTci7xoPRNu6aF/yUl9efmOWK+a+JztfE8mP37Z46BDw0kuH0azZXKxZcxnuvLOq7e+9yC03/NxTZh7dsKH22dat4u0nyLz5Rb//unXaHIlIa1OqZZHMe6iQi6rWRjJUFnnul8OHD2Pu3Lm47LLLktIXcjwJWl6opqLllxEn2eWAqK44IZTosSTZlegAdw6GYVgOMAzDcoBhGJYDDMOwHGAYhuWAqK44rj7RGYZhGIZhGIZhGIZhGIZhGCaRYSU6wzAMwzAMwzAMwzAMwzAMw9jASnSGYRiGYRiGYRiGYRiGYRiGsYGV6AzDMAzDMAzDMAzDMAzDMAxjAyvRGYZhGIZhGIZhGIZhGIZhGMYGVqIzDMMwDMMwDMMwDMMwDMMwjA2sRGcYhmEYhmEYhmEYhmEYhmEYG1iJzjAMwzAMwzAMwzAMwzAMwzA2sBKdYRiGYRiGYRiGYRiGYRiGYWxgJTrDMAzDMAzDMAzDMAzDMAzD2MBKdIZhGIZhGIZhGIZhGIZhGIaxgZXoDMMwDMMwDMMwDMMwDMMwDGMDK9EZhmEYhmEYhmEYhmEYhmEYxgZWojMMwzAMwzAMwzAMwzAMwzCMDaxEZxiGYRiGYRiGYRiGYRiGYRgbWInOMAzDMAzDMAzDMAzDMAzDMDawEp1hGIZhGIZhGIZhGIZhGIZhbGAlOsMwDMMwDMMwDMMwDMMwDMPYwEp0hmEYhmEYhmEYhmEYhmEYhrGBlegMwzAMwzAMwzAMwzAMwzAMY0OVeGcg1hARAGDv3r1xzkn8OHz4MAoLC7F3715UrVo13tlhGCYOsBxgGIblAMMwLAcYhmE5wDBMsssBXUes64ztSDol+r59+wAA2dnZcc4JwzAMwzAMwzAMwzAMwzAME2/27duHunXr2n4fIjc1eyWjtLQUGzduRO3atREKheKdnbiwd+9eZGdnY926dahTp068s8MwTBxgOcAwDMsBhmFYDjAMw3KAYZhklwNEhH379qFJkyZISbH3fJ50lugpKSnIysqKdzYSgjp16iRl52AYJgLLAYZhWA4wDMNygGEYlgMMwySzHHCyQNfhwKIMwzAMwzAMwzAMwzAMwzAMYwMr0RmGYRiGYRiGYRiGYRiGYRjGBlaiJyHVq1fH8OHDUb169XhnhWGYOMFygGEYlgMMw7AcYBiG5QDDMCwHxEi6wKIMwzAMwzAMwzAMwzAMwzAMIwpbojMMwzAMwzAMwzAMwzAMwzCMDaxEZxiGYRiGYRiGYRiGYRiGYRgbWInOMAzDMAzDMAzDMAzDMAzDMDawEr2S8uKLL6JZs2aoUaMG2rZtiy+//NLx+unTp+OEE05AjRo1cPLJJ2Pu3LkxyinDMEEhIwcmTJiADh06IC0tDWlpaejUqZOr3GAYJvGRnQ/oTJ06FaFQCJ07dw42gwzDBIqsDNi9ezf69++Pxo0bo3r16jjuuON4XcAwFRxZOTBmzBgcf/zxqFmzJrKzs3HPPffg77//jlFuGYZRzccff4wrr7wSTZo0QSgUwjvvvOP6m6VLl+L0009H9erVceyxx2LSpEmB57MiwEr0Sshbb72FQYMGYfjw4fjmm29wyimn4JJLLsHWrVstr//ss8/Qo0cP3HLLLfj222/RuXNndO7cGT/88EOMc84wjCpk5cDSpUvRo0cPLFmyBMuXL0d2djYuvvhibNiwIcY5ZxhGFbJyQGfNmjW477770KFDhxjllGGYIJCVAYcOHcJFF12ENWvWYMaMGfjll18wYcIEZGZmxjjnDMOoQlYOTJkyBUOGDMHw4cOxatUqvPrqq3jrrbcwbNiwGOecYRhVHDhwAKeccgpefPFFoev//PNPXH755bjggguwYsUK5Obm4tZbb8W8efMCzmniEyIiincmGLW0bdsWbdq0wQsvvAAAKC0tRXZ2Nu666y4MGTKk3PXdu3fHgQMH8P7775d9dvbZZ+PUU0/Fyy+/HLN8MwyjDlk5YKakpARpaWl44YUXcMMNNwSdXYZhAsCLHCgpKcF5552Hm2++GcuWLcPu3buFrFUYhkk8ZGXAyy+/jGeeeQY///wzqlatGuvsMgwTALJyYMCAAVi1ahUWLVpU9tm9996LL774Ap988knM8s0wTDCEQiG8/fbbjqdN77//fsyZMyfKsPa6667D7t278eGHH8Ygl4kLW6JXMg4dOoSvv/4anTp1KvssJSUFnTp1wvLlyy1/s3z58qjrAeCSSy6xvZ5hmMTGixwwU1hYiMOHD6N+/fpBZZNhmADxKgceeeQRNGzYELfccksssskwTEB4kQHvvvsuzjnnHPTv3x+NGjVCq1at8MQTT6CkpCRW2WYYRiFe5EC7du3w9ddfl7l8+eOPPzB37lxcdtllMckzwzDxh3WE9lSJdwYYtWzfvh0lJSVo1KhR1OeNGjXCzz//bPmbzZs3W16/efPmwPLJMExweJEDZu6//340adKk3ODJMEzFwIsc+OSTT/Dqq69ixYoVMcghwzBB4kUG/PHHH1i8eDF69eqFuXPn4vfff0e/fv1w+PBhDB8+PBbZZhhGIV7kQM+ePbF9+3ace+65ICIUFxfjjjvuYHcuDJNE2OkI9+7di4MHD6JmzZpxyln8YUt0hmEYJoqnnnoKU6dOxdtvv40aNWrEOzsMw8SAffv2oXfv3pgwYQIaNGgQ7+wwDBMHSktL0bBhQ4wfPx5nnHEGunfvjgceeIDdOzJMErF06VI88cQTGDduHL755hvMmjULc+bMwaOPPhrvrDEMw8QdtkSvZDRo0ADhcBhbtmyJ+nzLli048sgjLX9z5JFHSl3PMExi40UO6IwcORJPPfUUFi5ciNatWweZTYZhAkRWDqxevRpr1qzBlVdeWfZZaWkpAKBKlSr45Zdf0Lx582AzzTCMMrzMBRo3boyqVasiHA6XfXbiiSdi8+bNOHToEKpVqxZonhmGUYsXOfDggw+id+/euPXWWwEAJ598Mg4cOIDbbrsNDzzwAFJS2A6TYSo7djrCOnXqJLUVOsCW6JWOatWq4YwzzogKBFJaWopFixbhnHPOsfzNOeecE3U9ACxYsMD2eoZhEhsvcgAARowYgUcffRQffvghzjzzzFhklWGYgJCVAyeccAJWrlyJFStWlKWrrroKF1xwAVasWIHs7OxYZp9hGJ94mQu0b98ev//+e9kGGgD8+uuvaNy4MSvQGaYC4kUOFBYWllOU6xtrRBRcZhmGSRhYR2gPW6JXQgYNGoQbb7wRZ555Js466yyMGTMGBw4cwE033QQAuOGGG5CZmYknn3wSADBw4ECcf/75GDVqFC6//HJMnToVX331FcaPHx/P12AYxgeycuDpp5/GQw89hClTpqBZs2ZlMRFSU1ORmpoat/dgGMY7MnKgRo0aaNWqVdTv69WrBwDlPmcYpmIgOxe488478cILL2DgwIG466678Ntvv+GJJ57A3XffHc/XYBjGB7Jy4Morr8Szzz6L0047DW3btsXvv/+OBx98EFdeeWXUKRWGYSoO+/fvx++//172959//okVK1agfv36aNq0KYYOHYoNGzZg8uTJAIA77rgDL7zwAv7zn//g5ptvxuLFizFt2jTMmTMnXq+QMLASvRLSvXt3bNu2DQ899BA2b96MU089FR9++GFZYIC1a9dG7S63a9cOU6ZMQV5eHoYNG4YWLVrgnXfe4UUzw1RgZOXASy+9hEOHDqFbt25R9xk+fDgefvjhWGadYRhFyMoBhmEqF7IyIDs7G/PmzcM999yD1q1bIzMzEwMHDsT9998fr1dgGMYnsnIgLy8PoVAIeXl52LBhAzIyMnDllVfi8ccfj9crMAzjk6+++goXXHBB2d+DBg0CANx4442YNGkSNm3ahLVr15Z9f/TRR2POnDm455578NxzzyErKwuvvPIKLrnkkpjnPdEIEZ/JYRiGYRiGYRiGYRiGYRiGYRhL2PyIYRiGYRiGYRiGYRiGYRiGYWxgJTrDMAzDMAzDMAzDMAzDMAzD2MBKdIZhGIZhGIZhGIZhGIZhGIaxgZXoDMMwDMMwDMMwDMMwDMMwDGMDK9EZhmEYhmEYhmEYhmEYhmEYxgZWojMMwzAMwzAMwzAMwzAMwzCMDaxEZxiGYRiGYRiGYRiGYRiGYRgbWInOMAzDMAzDMAzDMAzDMAzDMDawEp1hGIZhGIZhKgiTJk1CvXr1An9Onz590LlzZ1/3WLp0KUKhEHbv3g1AXd7XrFmDUCiEFStW+L4XwzAMwzAMw4jASnSGYRiGYRiGgaY4DoVCCIVCqFq1Kho1aoSLLroIEydORGlpabyzBwDo3r07fv31V9/3mTBhAk455RSkpqaiXr16OO200/Dkk0+Wff/cc89h0qRJvp7Rrl07bNq0CXXr1vWZ22iys7OxadMmtGrVCkB5ZT3DMAzDMAzDqKZKvDPAMAzDMAzDMInCpZdeiv/+978oKSnBli1b8OGHH2LgwIGYMWMG3n33XVSpEt/pc82aNVGzZk1f95g4cSJyc3MxduxYnH/++SgqKsL333+PH374oewaFYrvatWq4cgjj/R9HyOHDh0K5L4MwzAMwzAM4wRbojMMwzAMwzDMP1SvXh1HHnkkMjMzcfrpp2PYsGGYPXs2PvjggyjL7LVr1yInJwepqamoU6cOrr32WmzZsqXs+4cffhinnnoqJk6ciKZNmyI1NRX9+vVDSUkJRowYgSOPPBINGzbE448/HvX8Z599FieffDJq1aqF7Oxs9OvXD/v37y/73uwSRX/O66+/jmbNmqFu3bq47rrrsG/fPtt3fPfdd3HttdfilltuwbHHHouTTjoJPXr0iMqL2Z1Lx44dcddddyE3NxdpaWlo1KgRJkyYgAMHDuCmm25C7dq1ceyxx+KDDz4o+42bhfjq1auRk5ODRo0aITU1FW3atMHChQujrmnWrBkeffRR3HDDDahTpw5uu+22KHcua9aswQUXXAAASEtLQygUQp8+fTB58mSkp6ejqKgo6n6dO3dG7969bcuGYRiGYRiGYaxgJTrDMAzDMAzDOPCvf/0Lp5xyCmbNmgUAKC0tRU5ODnbu3ImPPvoICxYswB9//IHu3btH/W716tX44IMP8OGHH+LNN9/Eq6++issvvxzr16/HRx99hKeffhp5eXn44osvyn6TkpKCsWPH4scff8Rrr72GxYsX4z//+Y9j/lavXo133nkH77//Pt5//3189NFHeOqpp2yvP/LII/H555/jr7/+kiqH1157DQ0aNMCXX36Ju+66C3feeSeuueYatGvXDt988w0uvvhi9O7dG4WFhUL3279/Py677DIsWrQI3377LS699FJceeWVWLt2bdR1I0eOxCmnnIJvv/0WDz74YNR32dnZmDlzJgDgl19+waZNm/Dcc8/hmmuuQUlJCd59992ya7du3Yo5c+bg5ptvlnpvhmEYhmEYhmElOsMwDMMwDMO4cMIJJ2DNmjUAgEWLFmHlypWYMmUKzjjjDLRt2xaTJ0/GRx99hP/9739lvyktLcXEiRPRsmVLXHnllbjgggvwyy+/YMyYMTj++ONx00034fjjj8eSJUvKfpObm4sLLrgAzZo1w7/+9S889thjmDZtmmPeSktLMWnSJLRq1QodOnRA7969sWjRItvrhw8fjnr16qFZs2Y4/vjj0adPH0ybNs3V7/spp5yCvLw8tGjRAkOHDkWNGjXQoEED9O3bFy1atMBDDz2EHTt24PvvvxcoUe1+t99+O1q1aoUWLVrg0UcfRfPmzaMU34C2iXHvvfeiefPmaN68edR34XAY9evXBwA0bNgQRx55JOrWrYuaNWuiZ8+e+O9//1t2bUFBAZo2bYqOHTsK5Y9hGIZhGIZhdFiJzjAMwzAMwzAuEBFCoRAAYNWqVcjOzkZ2dnbZ9y1btkS9evWwatWqss+aNWuG2rVrl/3dqFEjtGzZEikpKVGfbd26tezvhQsX4sILL0RmZiZq166N3r17Y8eOHY7W3ebnNG7cOOqeZho3bozly5dj5cqVGDhwIIqLi3HjjTfi0ksvdVSkt27duuz/4XAY6enpOPnkk6PeBYDjs43s378f9913H0488UTUq1cPqampWLVqVTlL9DPPPFPofmb69u2L+fPnY8OGDQA0Vzh68FiGYRiGYRiGkYGV6AzDMAzDMAzjwqpVq3D00UdL/aZq1apRf4dCIcvPdMX1mjVrcMUVV6B169aYOXMmvv76a7z44osAtICaMs9xsyoHgFatWqFfv34oKCjAggULsGDBAnz00Uee30dXTos8GwDuu+8+vP3223jiiSewbNkyrFixAieffHK5d61Vq5bQ/cycdtppOOWUUzB58mR8/fXX+PHHH9GnTx9P92IYhmEYhmGSmyrxzgDDMAzDMAzDJDKLFy/GypUrcc899wAATjzxRKxbtw7r1q0rs0b/6aefsHv3brRs2dLzc77++muUlpZi1KhRZdbqbq5cVKHn+8CBAzF5HgB8+umn6NOnD66++moAmmW67jJHhmrVqgEASkpKyn136623YsyYMdiwYQM6deoUdXqAYRiGYRiGYURhS3SGYRiGYRiG+YeioiJs3rwZGzZswDfffIMnnngCOTk5uOKKK3DDDTcAADp16oSTTz4ZvXr1wjfffIMvv/wSN9xwA84//3zPrkcA4Nhjj8Xhw4fx/PPP448//sDrr7+Ol19+WdWrlXHnnXfi0Ucfxaeffoq//voLn3/+OW644QZkZGTgnHPOUf48O1q0aIFZs2ZhxYoV+O6779CzZ09hK3YjRx11FEKhEN5//31s27YN+/fvL/uuZ8+eWL9+PSZMmMABRRmGYRiGYRjPsBKdYRiGYRiGYf7hww8/ROPGjdGsWTNceumlWLJkCcaOHYvZs2cjHA4D0NyWzJ49G2lpaTjvvPPQqVMnHHPMMXjrrbd8PfuUU07Bs88+i6effhqtWrXCG2+8gSeffFLFa0XRqVMnfP7557jmmmtw3HHHoWvXrqhRowYWLVqE9PR05c+z49lnn0VaWhratWuHK6+8EpdccglOP/106ftkZmYiPz8fQ4YMQaNGjTBgwICy7+rWrYuuXbsiNTUVnTt3Vph7hmEYhmEYJpkIERHFOxMMwzAMwzAMwzBBcOGFF+Kkk07C2LFj450VhmEYhmEYpoLCSnSGYRiGYRiGYSodu3btwtKlS9GtWzf89NNPOP744+OdJYZhGIZhGKaCwoFFGYZhGIZhGIapdJx22mnYtWsXnn76aVagMwzDMAzDML5gS3SGYRiGYRiGYRiGYRiGYRiGsYEDizIMwzAMwzAMwzAMwzAMwzCMDaxEZxiGYRiGYRiGYRiGYRiGYRgbWInOMAzDMAzDMAzDMAzDMAzDMDawEp1hGIZhGIZhGIZhGIZhGIZhbGAlOsMwDMMwDMMwDMMwDMMwDMPYwEp0hmEYhmEYhmEYhmEYhmEYhrGBlegMwzAMwzAMwzAMwzAMwzAMYwMr0RmGYRiGYRiGYRiGYRiGYRjGBlaiMwzDMAzDMAzDMAzDMAzDMIwN/w8PauKtyarZ3wAAAABJRU5ErkJggg==", "text/plain": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# Loading the train set as text\n", "train_set = load_into_string('train.txt')\n", "\n", "# Plotting the graph\n", "domain_similarities = plot_domain_similarity_vs_space_saved(train_set, test_set, train_vocab, space_saved_dict) " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "4.5) The scatter plot should not have created a straight line and should show a lot of bias towards very low space saving amounts, regardless of domain similarity.\n", "Why is domain similarity not enough for explaining the compressability?" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", "
Anwser:
\n", "
\n", "\n", "**Domain similarity** is insufficient to explain compressibility as compressibility is `not solely based on the similarity of the test sentence to the train set`. Moreover, some factors that may affect compressibility, which are not captured by the domain similarity measure are:\n", "* The length of the sentence.\n", "* The language used in the sentence.\n", "* The complexity of the sentence.\n", "* Repeated word patterns in the sentence.\n", "* The size of the dataset used to train the model.\n", "* The compression algorithm utilised.\n", "\n", "Additionally, the language model is able to predict the next token based on prior tokens in the sentence, instead of just the previous two tokens (per-trigram). Hence, this discrepancy between the domain similarity measure and the language model can be illustrated in the above scatter plot.\n", "\n", "\n", "
" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 5) Conclusions (10%)\n", "\n", "Write the following conclusions:" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "5.1) What is a simple change in the compression algorithm that can be made to increase compression?\n", "Do not suggest any fundamental changes; the algorithm must still work by predicting missing tokens." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", "
Anwser:
\n", "
\n", "\n", "The compression algorithm can be improved by encoding common phrases as a single token. This approach reduces the vocabulary size by replacing common phrases with a single representative token or code while retaining the algorithm's predictive capabilities. For example, the common phrase `\"the dog\"` can be encoded as a single token or code, thus the phrase `\"the dog bit the cat\"` can be compressed to `\"X bit X cat\"` by replacing the phrase \"the dog\" with a single token or code.\n", "\n", "
" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "5.2) Write, in less than 300 words, your interpretation of the results and how you think the model could perform better.\n", "You should talk about things like overfitting/underfitting and whether the model is learning anything deep about English sentences." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", "
Anwser:
\n", "
\n", "\n", "The results of the **Neural Language Model** suggest that the model is capable of compressing text by replacing predictable tokens with the single letter `'X'`. Although there wasn't a significant improvement in the space saving amount of the neural language model, when compared to the mock model, the space saving amount of the neural language model was still higher than the mock model. This is evident from the percentage shit from the `2.4%` achieved by the mock model to a new range of `3.5%` to `3.8%` attained by the language model.\n", "\n", "Nevertheless, it was also apparent that the neural language model's dev perplexity, having a range of `73.2` to `73.8` was significantly lower than the mock model's dev perplexity of `7062.2`. This significant improvement to the dev perplexity can be attributed to a number of reasons, those being:\n", "* The utilization of a dropout layer, which prevents `overfitting`.\n", "* Applying a weight decay to the optimizer, which prevents `overfitting`.\n", "* Applying early stopping to prevent `overfitting`.\n", "* Applying gradient clipping to the optimizer to prevent `exploding gradients`.\n", "* Performing hyperparameter tuning to find the `best hyperparameters` for the model.\n", "\n", "Moreover, as illustrated by the training error and perplexity curves, the model avoids overfitting due to its gradual descent and consistent learning behaviour.\n", "\n", "With regards to whether the model is learning anything \"deep\" about English sentences, it is likely that the model is learning some patterns and structures inherent in the English language, such as common phrases or grammatical structures. However, it is impossible to judge how far this comprehension goes without a more thorough examination of the model's predictions.\n", "\n", "In terms of architectural improvements, a more sophisticated language model could be used, such as a `transformer model`. Furthermore, the model could also be trained on a more diversified dataset, allowing it to understand additional patterns and structures inherent in the English language. In addition, another approach to improving the model's performance can be attributed to adjusting the token omission threshold with the aim of increasing the space saving amount. Lastly, to ensure that the compressed text keeps the same meaning as the original text, a semantic similarity metric could potentially be incorporated.\n", "\n", "
" ] } ], "metadata": { "interpreter": { "hash": "75ee2b71ad44bf9ef4e9bee896f68ffbc764a6a2c6d1f57c86c48f99ffc25ca8" }, "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.9.18" } }, "nbformat": 4, "nbformat_minor": 4 }