instance_labels
list
instance_words
list
instance_tags
list
instance_groups
list
instance_languages
list
[ "mono" ]
[ [ "You’re", "running", "you", "test", "suite", "or", "your", "Docker", "image", "packaging", "on", "a", "EC2", "server.", "And", "it’s", "slow.", "docker", "pull", "takes", "15", "minutes", "just", "to", "verify", "the", "images", "it", "downloaded", "in", "1", "minute.", "takes", "15", "minutes", "just", "to", "verify", "the", "images", "it", "downloaded", "in", "1", "dnf", "installs", "take", "another", "15", "minutes.", "or", "installs", "take", "another", "15", "minutes.", "pip", "install", "or", "conda", "install", "take", "even", "more", "time.", "It’s", "a", "fast", "machine", "with", "plenty", "of", "memory—in", "fact,", "you", "may", "have", "be", "using", "a", "custom", "machine", "precisely", "because", "Travis", "CI", "or", "Circle", "CI", "builders", "are", "underpowered.", "And", "yet", "it’s", "still", "taking", "forever.", "Why?", "Quite", "possibly", "the", "problem", "is", "with", "your", "EBS", "disk’s", "IOPS.", "IOPS", "as", "bottleneck", "Your", "EC2", "virtual", "machine", "has", "a", "virtual", "hard", "drive,", "typically", "an", "AWS", "EBS", "volume.", "And", "these", "drives", "have", "limited", "I/O", "operations", "per", "second", "(“IOPS”),", "a", "limited", "number", "of", "reads", "and", "writes", "per", "second.", "For", "the", "gp2", "disk", "type", "there", "are", "two", "limits:", "The", "standard", "IOPS,", "3", "IOPS", "per", "GiB", "of", "storage,", "with", "a", "minimum", "of", "100", "volume", "size.", "If", "you", "have", "a", "100GiB", "EBS", "volume", "it", "will", "do", "300", "IOPS;", "a", "500GiB", "volume", "will", "do", "1500", "IOPS.", "The", "burst", "IOPS", "of", "3000.", "The", "way", "the", "burst", "IOPS", "works", "is", "that", "you", "get", "a", "5.4", "million", "credit,", "and", "that", "gets", "used", "up", "at", "a", "3000/sec", "rate.", "Once", "the", "credit", "is", "used", "up", "you’re", "back", "to", "the", "minimum", "IOPS,", "and", "over", "time", "the", "credit", "rebuilds.", "(You", "can", "get", "the", "full", "details", "in", "the", "AWS", "documentation).", "For", "application", "servers,", "this", "works", "great:", "you’re", "not", "doing", "a", "lot", "of", "I/O", "once", "your", "application", "has", "started", "running.", "For", "CI", "workloads—tests", "and", "packaging—limited", "IOPS", "can", "be", "a", "performance", "problem.", "When", "you", "download", "a", "Docker", "image,", "operating", "system", "package,", "or", "Python", "package,", "you", "are", "doing", "lots", "and", "lots", "of", "disk", "I/O.", "The", "packages", "get", "written", "to", "disk,", "they", "get", "re-read,", "they", "get", "unpackaged", "and", "lots", "of", "small", "files", "are", "written", "to", "disk.", "It", "all", "adds", "up.", "A", "few", "concurrent", "CI", "runs", "might", "use", "up", "all", "of", "your", "burst", "IOPS—and", "if", "you", "have", "a", "100GiB", "hard", "drive,", "you", "suddenly", "drop", "from", "3000", "IOPS", "to", "100", "IOPS.", "And", "now", "installing", "packages", "is", "going", "to", "take", "as", "much", "as", "30×", "as", "long,", "because", "it", "takes", "so", "much", "longer", "to", "write", "and", "read", "to", "disk.", "Diagnosis", "In", "general", "this", "problem", "is", "much", "more", "likely", "if", "you", "have", "a", "small", "EBS", "volume", "(since", "it", "will", "have", "less", "IOPS).", "And", "you", "can", "get", "a", "hint", "that", "it’s", "happening", "if", "package", "installs", "are", "particularly", "slow.", "But", "you", "can", "also", "explicitly", "check.", "In", "the", "AWS", "console", "for", "EC2,", "go", "to", "Volumes,", "and", "look", "at", "the", "Monitoring", "tab", "for", "your", "particular", "volume.", "One", "of", "the", "graphs", "will", "be", "“Burst", "Balance”.", "If", "the", "balance", "has", "flatlined", "and", "is", "at", "0%,", "that", "means", "you’ve", "got", "no", "credit", "left", "for", "now,", "and", "you’re", "running", "at", "the", "minimal", "IOPS.", "Solving", "the", "problem", "Given", "an", "existing", "EBS", "volume,", "the", "easiest", "way", "to", "solve", "the", "problem", "is", "to", "increase", "the", "size", "of", "your", "gp2", "volume.", "For", "example,", "500GiB", "will", "give", "you", "1500", "IOPS,", "a", "much", "more", "reasonable", "minimum", "than", "300", "IOPS", "you’d", "get", "for", "100GiB.", "Other", "solutions:", "You", "can", "switch", "to", "a", "io1", "type", "EBS", "volume,", "that", "has", "configurable", "dedicated", "IOPS,", "but", "it’s", "probably", "not", "worth", "the", "cost", "just", "for", "running", "tests.", "type", "EBS", "volume,", "that", "has", "configurable", "dedicated", "IOPS,", "but", "it’s", "probably", "not", "worth", "the", "cost", "just", "for", "running", "tests.", "You", "can", "switch", "to", "using", "local", "instance", "storage.", "Some", "EC2", "instances", "have", "dedicated", "NVMe", "SSD", "storage", "with", "vastly", "more", "IOPS,", "e.g.", "c5d", "or", "m5d", "instances.", "If", "your", "test", "suite", "is", "unreasonably", "slow", "on", "EC2,", "do", "check", "for", "this", "problem.", "I’ve", "seen", "it", "take", "the", "run", "time", "of", "a", "Docker", "build", "from", "over", "an", "hour", "(not", "sure", "how", "much", "over,", "because", "at", "that", "point", "it", "timed", "out,", "unfinished)", "to", "just", "15", "minutes—and", "diagnosing", "and", "fixing", "the", "problem", "takes", "only", "5", "minutes", "of", "your", "time." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "You’re", "running", "you", "test", "suite", "or", "your", "Docker", "image", "packaging", "on", "a", "EC2", "server.", "And", "it’s", "slow.", "docker", "pull", "takes", "15", "minutes", "just", "to", "verify", "the", "images", "it", "downloaded", "in", "1", "minute.", "takes", "15", "minutes", "just", "to", "verify", "the", "images", "it", "downloaded", "in", "1", "dnf", "installs", "take", "another", "15", "minutes.", "or", "installs", "take", "another", "15", "minutes.", "pip", "install", "or", "conda", "install", "take", "even", "more", "time.", "It’s", "a", "fast", "machine", "with", "plenty", "of", "memory—in", "fact,", "you", "may", "have", "be", "using", "a", "custom", "machine", "precisely", "because", "Travis", "CI", "or", "Circle", "CI", "builders", "are", "underpowered.", "And", "yet", "it’s", "still", "taking", "forever.", "Why?", "Quite", "possibly", "the", "problem", "is", "with", "your", "EBS", "disk’s", "IOPS.", "IOPS", "as", "bottleneck", "Your", "EC2", "virtual", "machine", "has", "a", "virtual", "hard", "drive,", "typically", "an", "AWS", "EBS", "volume.", "And", "these", "drives", "have", "limited", "I/O", "operations", "per", "second", "(“IOPS”),", "a", "limited", "number", "of", "reads", "and", "writes", "per", "second.", "For", "the", "gp2", "disk", "type", "there", "are", "two", "limits:", "The", "standard", "IOPS,", "3", "IOPS", "per", "GiB", "of", "storage,", "with", "a", "minimum", "of", "100", "volume", "size.", "If", "you", "have", "a", "100GiB", "EBS", "volume", "it", "will", "do", "300", "IOPS;", "a", "500GiB", "volume", "will", "do", "1500", "IOPS.", "The", "burst", "IOPS", "of", "3000.", "The", "way", "the", "burst", "IOPS", "works", "is", "that", "you", "get", "a", "5.4", "million", "credit,", "and", "that", "gets", "used", "up", "at", "a", "3000/sec", "rate.", "Once", "the", "credit", "is", "used", "up", "you’re", "back", "to", "the", "minimum", "IOPS,", "and", "over", "time", "the", "credit", "rebuilds.", "(You", "can", "get", "the", "full", "details", "in", "the", "AWS", "documentation).", "For", "application", "servers,", "this", "works", "great:", "you’re", "not", "doing", "a", "lot", "of", "I/O", "once", "your", "application", "has", "started", "running.", "For", "CI", "workloads—tests", "and", "packaging—limited", "IOPS", "can", "be", "a", "performance", "problem.", "When", "you", "download", "a", "Docker", "image,", "operating", "system", "package,", "or", "Python", "package,", "you", "are", "doing", "lots", "and", "lots", "of", "disk", "I/O.", "The", "packages", "get", "written", "to", "disk,", "they", "get", "re-read,", "they", "get", "unpackaged", "and", "lots", "of", "small", "files", "are", "written", "to", "disk.", "It", "all", "adds", "up.", "A", "few", "concurrent", "CI", "runs", "might", "use", "up", "all", "of", "your", "burst", "IOPS—and", "if", "you", "have", "a", "100GiB", "hard", "drive,", "you", "suddenly", "drop", "from", "3000", "IOPS", "to", "100", "IOPS.", "And", "now", "installing", "packages", "is", "going", "to", "take", "as", "much", "as", "30×", "as", "long,", "because", "it", "takes", "so", "much", "longer", "to", "write", "and", "read", "to", "disk.", "Diagnosis", "In", "general", "this", "problem", "is", "much", "more", "likely", "if", "you", "have", "a", "small", "EBS", "volume", "(since", "it", "will", "have", "less", "IOPS).", "And", "you", "can", "get", "a", "hint", "that", "it’s", "happening", "if", "package", "installs", "are", "particularly", "slow.", "But", "you", "can", "also", "explicitly", "check.", "In", "the", "AWS", "console", "for", "EC2,", "go", "to", "Volumes,", "and", "look", "at", "the", "Monitoring", "tab", "for", "your", "particular", "volume.", "One", "of", "the", "graphs", "will", "be", "“Burst", "Balance”.", "If", "the", "balance", "has", "flatlined", "and", "is", "at", "0%,", "that", "means", "you’ve", "got", "no", "credit", "left", "for", "now,", "and", "you’re", "running", "at", "the", "minimal", "IOPS.", "Solving", "the", "problem", "Given", "an", "existing", "EBS", "volume,", "the", "easiest", "way", "to", "solve", "the", "problem", "is", "to", "increase", "the", "size", "of", "your", "gp2", "volume.", "For", "example,", "500GiB", "will", "give", "you", "1500", "IOPS,", "a", "much", "more", "reasonable", "minimum", "than", "300", "IOPS", "you’d", "get", "for", "100GiB.", "Other", "solutions:", "You", "can", "switch", "to", "a", "io1", "type", "EBS", "volume,", "that", "has", "configurable", "dedicated", "IOPS,", "but", "it’s", "probably", "not", "worth", "the", "cost", "just", "for", "running", "tests.", "type", "EBS", "volume,", "that", "has", "configurable", "dedicated", "IOPS,", "but", "it’s", "probably", "not", "worth", "the", "cost", "just", "for", "running", "tests.", "You", "can", "switch", "to", "using", "local", "instance", "storage.", "Some", "EC2", "instances", "have", "dedicated", "NVMe", "SSD", "storage", "with", "vastly", "more", "IOPS,", "e.g.", "c5d", "or", "m5d", "instances.", "If", "your", "test", "suite", "is", "unreasonably", "slow", "on", "EC2,", "do", "check", "for", "this", "problem.", "I’ve", "seen", "it", "take", "the", "run", "time", "of", "a", "Docker", "build", "from", "over", "an", "hour", "(not", "sure", "how", "much", "over,", "because", "at", "that", "point", "it", "timed", "out,", "unfinished)", "to", "just", "15", "minutes—and", "diagnosing", "and", "fixing", "the", "problem", "takes", "only", "5", "minutes", "of", "your", "time." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Navi", "is", "the", "only", "one", "who", "talks", "in", "the", "ocarina", "of", "time", "3,796", "shares" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Navi", "is", "the", "only", "one", "who", "talks", "in", "the", "ocarina", "of", "time", "3,796", "shares" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "(Reuters)", "-", "Gunmen", "from", "Somalia’s", "Al", "Shabaab", "group", "killed", "six", "people", "including", "at", "least", "four", "soldiers", "in", "the", "streets", "of", "the", "capital,", "a", "day", "after", "the", "Islamist", "movement", "kidnapped", "scores", "of", "elders", "in", "a", "central", "region,", "officials", "said.", "The", "militants", "drove", "up", "to", "a", "tuk-tuk", "vehicle", "carrying", "the", "soldiers", "in", "Mogadishu’s", "Karan", "district", "and", "opened", "fire,", "killing", "all", "four", "of", "them", "on", "Tuesday,", "police", "said.", "“We", "heard", "the", "gunfire", "and", "we", "rushed", "to", "the", "scene", "but...", "the", "killers", "escaped,”", "police", "captain", "Farah", "Aden", "told", "Reuters.", "Al", "Shabaab", "fighters", "also", "shot", "two", "people", "dead", "in", "the", "Wardigley", "district", "in", "the", "heart", "of", "the", "city,", "he", "added.", "The", "militants", "said", "the", "two", "were", "an", "officer", "and", "his", "bodyguard,", "in", "a", "statement", "claiming", "responsibility", "for", "both", "attacks.", "Abdiasis", "Abu", "Musab,", "Shabaab’s", "military", "operations", "spokesman,", "said", "the", "militants", "also", "set", "off", "a", "car", "bomb", "that", "seriously", "injured", "a", "man", "working", "for", "the", "finance", "ministry.", "There", "was", "no", "immediate", "comment", "from", "the", "authorities.", "Al", "Shabaab", "-", "which", "is", "fighting", "to", "impose", "its", "form", "of", "Islam", "and", "topple", "the", "Western-backed", "government", "-", "has", "regular", "guerrilla", "attacks", "across", "the", "country", "since", "the", "army", "backed", "by", "African", "peacekeepers", "pushed", "it", "out", "of", "the", "capital", "in", "2011.", "On", "Monday,", "the", "group", "kidnapped", "more", "than", "60", "elders", "from", "Galgadud,", "in", "the", "central,", "semi-autonomous", "state", "of", "Galmudug,", "officials", "said.", "Al", "Shabaab", "said", "it", "took", "the", "local", "leaders", "because", "their", "sub-clan", "had", "refused", "to", "pay", "full", "compensation", "for", "five", "people", "killed", "from", "another", "clan.", "“We", "do", "not", "want", "the", "two", "clans", "to", "fight", "again,”", "said", "Abdullahi", "Abu", "Khalid,", "named", "as", "al", "Shabaab’s", "governor", "for", "Galgadud.", "The", "militant", "group", "has", "kept", "up", "a", "presence", "in", "remote", "parts", "of", "Somalia,", "many", "of", "them", "already", "riven", "by", "years", "of", "ethnic", "rivalries", "and", "blood", "feuds.", "Some", "clans", "are", "seen", "as", "linked", "to", "the", "militants,", "others", "to", "the", "government.", "Galmudug’s", "president,", "Ahmed", "Duale", "Gele", "Haaf,", "said", "the", "militants", "had", "kidnapped", "62", "elders", "in", "a", "bid", "to", "destabilize", "his", "region.", "“They", "will", "either", "kill", "them", "or", "order", "them", "to", "spread", "chaos,”", "he", "said.", "He", "accused", "the", "central", "government", "in", "Mogadishu", "of", "not", "giving", "enough", "resources", "or", "troops", "to", "protect", "the", "region.", "Somalia", "has", "been", "gripped", "by", "violence", "and", "lawlessness", "since", "dictator", "Mohamed", "Siad", "Barre", "was", "toppled", "in", "1991." ] ]
[ [ "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "(Reuters)", "-", "Gunmen", "from", "Somalia’s", "Al", "Shabaab", "group", "killed", "six", "people", "including", "at", "least", "four", "soldiers", "in", "the", "streets", "of", "the", "capital,", "a", "day", "after", "the", "Islamist", "movement", "kidnapped", "scores", "of", "elders", "in", "a", "central", "region,", "officials", "said.", "The", "militants", "drove", "up", "to", "a", "tuk-tuk", "vehicle", "carrying", "the", "soldiers", "in", "Mogadishu’s", "Karan", "district", "and", "opened", "fire,", "killing", "all", "four", "of", "them", "on", "Tuesday,", "police", "said.", "“We", "heard", "the", "gunfire", "and", "we", "rushed", "to", "the", "scene", "but...", "the", "killers", "escaped,”", "police", "captain", "Farah", "Aden", "told", "Reuters.", "Al", "Shabaab", "fighters", "also", "shot", "two", "people", "dead", "in", "the", "Wardigley", "district", "in", "the", "heart", "of", "the", "city,", "he", "added.", "The", "militants", "said", "the", "two", "were", "an", "officer", "and", "his", "bodyguard,", "in", "a", "statement", "claiming", "responsibility", "for", "both", "attacks.", "Abdiasis", "Abu", "Musab,", "Shabaab’s", "military", "operations", "spokesman,", "said", "the", "militants", "also", "set", "off", "a", "car", "bomb", "that", "seriously", "injured", "a", "man", "working", "for", "the", "finance", "ministry.", "There", "was", "no", "immediate", "comment", "from", "the", "authorities.", "Al", "Shabaab", "-", "which", "is", "fighting", "to", "impose", "its", "form", "of", "Islam", "and", "topple", "the", "Western-backed", "government", "-", "has", "regular", "guerrilla", "attacks", "across", "the", "country", "since", "the", "army", "backed", "by", "African", "peacekeepers", "pushed", "it", "out", "of", "the", "capital", "in", "2011.", "On", "Monday,", "the", "group", "kidnapped", "more", "than", "60", "elders", "from", "Galgadud,", "in", "the", "central,", "semi-autonomous", "state", "of", "Galmudug,", "officials", "said.", "Al", "Shabaab", "said", "it", "took", "the", "local", "leaders", "because", "their", "sub-clan", "had", "refused", "to", "pay", "full", "compensation", "for", "five", "people", "killed", "from", "another", "clan.", "“We", "do", "not", "want", "the", "two", "clans", "to", "fight", "again,”", "said", "Abdullahi", "Abu", "Khalid,", "named", "as", "al", "Shabaab’s", "governor", "for", "Galgadud.", "The", "militant", "group", "has", "kept", "up", "a", "presence", "in", "remote", "parts", "of", "Somalia,", "many", "of", "them", "already", "riven", "by", "years", "of", "ethnic", "rivalries", "and", "blood", "feuds.", "Some", "clans", "are", "seen", "as", "linked", "to", "the", "militants,", "others", "to", "the", "government.", "Galmudug’s", "president,", "Ahmed", "Duale", "Gele", "Haaf,", "said", "the", "militants", "had", "kidnapped", "62", "elders", "in", "a", "bid", "to", "destabilize", "his", "region.", "“They", "will", "either", "kill", "them", "or", "order", "them", "to", "spread", "chaos,”", "he", "said.", "He", "accused", "the", "central", "government", "in", "Mogadishu", "of", "not", "giving", "enough", "resources", "or", "troops", "to", "protect", "the", "region.", "Somalia", "has", "been", "gripped", "by", "violence", "and", "lawlessness", "since", "dictator", "Mohamed", "Siad", "Barre", "was", "toppled", "in", "1991." ] ] ]
[ [ "de" ] ]
[ "mono" ]
[ [ "Check", "out", "our", "new", "site", "Makeup", "Addiction", "add", "your", "own", "caption", "add", "your", "own", "caption", "add", "your", "own", "caption", "add", "your", "own", "caption", "add", "your", "own", "caption", "add", "your", "own", "caption", "add", "your", "own", "caption", "add", "your", "own", "caption", "add", "your", "own", "caption", "add", "your", "own", "caption", "add", "your", "own", "caption", "\"Now", "I'm", "getting", "all", "the", "upvotes!\"", "Au" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Check", "out", "our", "new", "site", "Makeup", "Addiction", "add", "your", "own", "caption", "add", "your", "own", "caption", "add", "your", "own", "caption", "add", "your", "own", "caption", "add", "your", "own", "caption", "add", "your", "own", "caption", "add", "your", "own", "caption", "add", "your", "own", "caption", "add", "your", "own", "caption", "add", "your", "own", "caption", "add", "your", "own", "caption", "\"Now", "I'm", "getting", "all", "the", "upvotes!\"", "Au" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "You", "make", "essentially", "the", "most", "of", "your", "social", "media", "when", "you", "are", "aware", "the", "way", "it", "operates.", "With", "SOCi", "the", "advance", "of", "each", "new", "platform", "we", "all", "have", "to", "find", "out", "new", "skills.", "Sometimes", "that", "skill", "is", "how", "to", "get", "our", "marketing", "message", "into", "140", "characters;", "for", "others", "the", "process", "is", "to", "turn", "a", "work-oriented", "message", "in", "a", "picture.", "In", "both", "cases,", "that", "difference", "in", "perspective,", "that", "change", "in", "the", "way", "we", "present", "the", "story", "of", "a", "product's", "benefit,", "makes", "each", "of", "us", "a", "better", "marketer.", "So,", "while", "it", "is", "annoying", "to", "always", "stop", "doing", "business", "as", "usual", "and", "learn", "a", "new", "group", "of", "skills,", "it", "can", "make", "us", "more", "skilled", "in", "the", "end.DaniWeb's", "Ron", "Miller", "notes", "how", "the", "lines", "between", "work", "and", "home", "life", "are", "quickly", "becoming", "blurred", "and", "social", "network", "sites", "need", "to", "be", "prepared", "to", "carry", "on.", "He", "produces", "a", "number", "of", "compelling", "points", "in", "their", "article,", "but", "this", "is", "exactly", "what", "really", "stood", "out", "for", "me", "personally.", "It's", "possible", "that", "these", "social", "network", "tools", "are", "just", "a", "sluggish", "start", "something,", "that", "they", "can", "may", "lead", "to", "ways", "of", "finding", "and", "interacting", "with", "one", "another", "we", "never", "imagined,", "but", "no", "matter", "what,", "you", "can", "not", "dismiss", "these", "power", "tools", "easily.Active", "Support", "is", "conducted", "on", "online", "social", "networking", "sites.", "An", "entity", "creates", "a", "profile,", "and", "open", "their", "public", "comment", "space", "to", "customers", "to", "submit", "their", "customer", "satisfaction", "inquiries.", "The", "entity", "can", "reply", "to", "each", "inquiry,", "along", "with", "the", "exchange", "is", "conducted", "comparable", "to", "some", "other", "customer", "satisfaction", "call.", "New", "submissions", "can", "be", "viewed", "by", "anyone,", "leaving", "the", "exchange", "in", "a", "very", "public", "domain.", "The", "exchanges", "may", "also", "be", "used", "meetSOCi", "to", "improve", "the", "image", "of", "an", "company,", "should", "it", "perform", "exceptional", "service", "before", "an", "must", "say", "that", "I", "don't", "worry", "about", "the", "valuation", "of", "fake", "profiles", "and", "advertising", "rates", "and", "so", "on,", "but", "I,", "like", "millions", "upon", "an", "incredible", "number", "of", "others,", "are", "getting", "to", "be", "a", "true", "Facebookaholic.", "Facebook,", "personally", "or", "anything", "else,", "has", "developed", "into", "a", "vacation", "home,", "my", "house", "out", "of", "the", "house.", "I", "find", "every", "opportunity", "and", "reason", "possible,", "while", "working", "on", "my", "computer,", "to", "visit", "it.", "I", "constantly", "check", "my", "notifications.", "Who", "likes", "what", "I", "posted?", "Who", "is", "sending", "me", "a", "message", "now,", "that's", "apping", "me,", "poking", "me,", "is", "ticked", "off", "at", "me,", "unfriending", "me", "or", "giving", "me", "lip?", "However,", "that", "doesn't", "mean", "I", "simply", "love", "all", "things", "in", "the", "entire", "world", "about", "Facebook.", "I", "think", "I'd", "like", "one", "to", "take", "on", "the", "project", "too,", "while", "you", "are", "in", "internet", "Mr.", "Zuckerberg,", "I", "bet", "many", "other", "Facebookaholics", "would", "accept", "me.", "I'd", "like", "to", "find", "out", "some", "changes", "by", "people", "that", "use", "Facebook.In", "closing,", "it's", "best", "for", "a", "person", "just", "getting", "started", "with", "the", "social", "websites", "systems", "to", "create", "a", "arrange", "for", "what", "you", "can", "do", "on", "the", "internet", "and", "that", "they", "can", "do", "it.", "The", "most", "crucial", "part", "of", "this", "plan", "is", "to", "ensure", "that", "a", "person", "acknowledges", "every", "post", "that", "they", "post", "on", "the", "social", "support", "systems", "before", "they", "post", "it.", "The", "second", "most", "critical", "thing", "they're", "able", "to", "place", "on", "this", "plan", "is", "what", "applications", "they're", "going", "to", "get", "involved", "with", "and", "what", "applications", "they're", "going", "to", "skip.", "This", "will", "help", "them", "resist", "the", "impulse", "to", "play", "games", "and", "applications", "about", "the", "system", "on", "the", "expense", "of", "their", "privacy.", "Any", "person", "who", "produces", "a", "good", "social", "media", "marketing", "privacy", "program", "get", "each", "year", "better", "privacy", "compared", "to", "those", "those", "who", "usually", "do", "not." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "You", "make", "essentially", "the", "most", "of", "your", "social", "media", "when", "you", "are", "aware", "the", "way", "it", "operates.", "With", "SOCi", "the", "advance", "of", "each", "new", "platform", "we", "all", "have", "to", "find", "out", "new", "skills.", "Sometimes", "that", "skill", "is", "how", "to", "get", "our", "marketing", "message", "into", "140", "characters;", "for", "others", "the", "process", "is", "to", "turn", "a", "work-oriented", "message", "in", "a", "picture.", "In", "both", "cases,", "that", "difference", "in", "perspective,", "that", "change", "in", "the", "way", "we", "present", "the", "story", "of", "a", "product's", "benefit,", "makes", "each", "of", "us", "a", "better", "marketer.", "So,", "while", "it", "is", "annoying", "to", "always", "stop", "doing", "business", "as", "usual", "and", "learn", "a", "new", "group", "of", "skills,", "it", "can", "make", "us", "more", "skilled", "in", "the", "end.DaniWeb's", "Ron", "Miller", "notes", "how", "the", "lines", "between", "work", "and", "home", "life", "are", "quickly", "becoming", "blurred", "and", "social", "network", "sites", "need", "to", "be", "prepared", "to", "carry", "on.", "He", "produces", "a", "number", "of", "compelling", "points", "in", "their", "article,", "but", "this", "is", "exactly", "what", "really", "stood", "out", "for", "me", "personally.", "It's", "possible", "that", "these", "social", "network", "tools", "are", "just", "a", "sluggish", "start", "something,", "that", "they", "can", "may", "lead", "to", "ways", "of", "finding", "and", "interacting", "with", "one", "another", "we", "never", "imagined,", "but", "no", "matter", "what,", "you", "can", "not", "dismiss", "these", "power", "tools", "easily.Active", "Support", "is", "conducted", "on", "online", "social", "networking", "sites.", "An", "entity", "creates", "a", "profile,", "and", "open", "their", "public", "comment", "space", "to", "customers", "to", "submit", "their", "customer", "satisfaction", "inquiries.", "The", "entity", "can", "reply", "to", "each", "inquiry,", "along", "with", "the", "exchange", "is", "conducted", "comparable", "to", "some", "other", "customer", "satisfaction", "call.", "New", "submissions", "can", "be", "viewed", "by", "anyone,", "leaving", "the", "exchange", "in", "a", "very", "public", "domain.", "The", "exchanges", "may", "also", "be", "used", "meetSOCi", "to", "improve", "the", "image", "of", "an", "company,", "should", "it", "perform", "exceptional", "service", "before", "an", "must", "say", "that", "I", "don't", "worry", "about", "the", "valuation", "of", "fake", "profiles", "and", "advertising", "rates", "and", "so", "on,", "but", "I,", "like", "millions", "upon", "an", "incredible", "number", "of", "others,", "are", "getting", "to", "be", "a", "true", "Facebookaholic.", "Facebook,", "personally", "or", "anything", "else,", "has", "developed", "into", "a", "vacation", "home,", "my", "house", "out", "of", "the", "house.", "I", "find", "every", "opportunity", "and", "reason", "possible,", "while", "working", "on", "my", "computer,", "to", "visit", "it.", "I", "constantly", "check", "my", "notifications.", "Who", "likes", "what", "I", "posted?", "Who", "is", "sending", "me", "a", "message", "now,", "that's", "apping", "me,", "poking", "me,", "is", "ticked", "off", "at", "me,", "unfriending", "me", "or", "giving", "me", "lip?", "However,", "that", "doesn't", "mean", "I", "simply", "love", "all", "things", "in", "the", "entire", "world", "about", "Facebook.", "I", "think", "I'd", "like", "one", "to", "take", "on", "the", "project", "too,", "while", "you", "are", "in", "internet", "Mr.", "Zuckerberg,", "I", "bet", "many", "other", "Facebookaholics", "would", "accept", "me.", "I'd", "like", "to", "find", "out", "some", "changes", "by", "people", "that", "use", "Facebook.In", "closing,", "it's", "best", "for", "a", "person", "just", "getting", "started", "with", "the", "social", "websites", "systems", "to", "create", "a", "arrange", "for", "what", "you", "can", "do", "on", "the", "internet", "and", "that", "they", "can", "do", "it.", "The", "most", "crucial", "part", "of", "this", "plan", "is", "to", "ensure", "that", "a", "person", "acknowledges", "every", "post", "that", "they", "post", "on", "the", "social", "support", "systems", "before", "they", "post", "it.", "The", "second", "most", "critical", "thing", "they're", "able", "to", "place", "on", "this", "plan", "is", "what", "applications", "they're", "going", "to", "get", "involved", "with", "and", "what", "applications", "they're", "going", "to", "skip.", "This", "will", "help", "them", "resist", "the", "impulse", "to", "play", "games", "and", "applications", "about", "the", "system", "on", "the", "expense", "of", "their", "privacy.", "Any", "person", "who", "produces", "a", "good", "social", "media", "marketing", "privacy", "program", "get", "each", "year", "better", "privacy", "compared", "to", "those", "those", "who", "usually", "do", "not." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "[webkit-dev]", "Cleaning", "House", "Hi", "folks.", "Since", "we", "no", "longer", "need", "to", "support", "the", "Chromium", "port,", "let's", "take", "the", "opportunity", "to", "streamline.", "Hopefully,", "this", "will", "make", "development", "easier", "and", "more", "coherent", "for", "everyone.", "Adam", "and", "Eric", "offered", "to", "do", "some", "of", "this", "cleanup,", "but", "I", "think", "it's", "healthier", "for", "people", "who", "will", "continue", "to", "be", "a", "part", "of", "WebKit", "to", "decide", "what", "gets", "cleaned", "up,", "and", "execute", "on", "the", "plan.", "Below", "is", "a", "high-level", "view", "of", "some", "improvements", "we're", "planning", "over", "the", "coming", "weeks.", "Concepts", "we", "plan", "to", "remove:", "Layering", "violations", "in", "WebCore/platform,", "where", "a", "Page*", "or", "Frame*", "is", "passed", "to", "a", "function", "Supplementable", "and", "Supplement", "#if", "USE(GOOGLEURL)", "Skia", "DOMFileSystem", "WebLayer", "and", "its", "scrolling", "implementation", "Features", "#defines", "that", "haven't", "gained", "traction", "Specific", "files", "we", "plan", "to", "remove:.gyp", "build", "files", "WebCore/bindings/v8", "LayoutTests/platform/chromium*", "WTF/wtf/chromium", "WebCore/*Chromium*", "Source/Platform/chromium", "ManualTests/chromium/", "Tools/BuildSlaveSupport/chromium/", "Tools/DumpRenderTree/chromium/", "Also:", "libc++", "Please", "let", "me", "know", "if", "you", "have", "other", "suggestions", "for", "improvements,", "or", "if", "you", "see", "something", "in", "the", "list", "that", "shouldn't", "be", "there.", "Thanks,", "Geoff" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "[webkit-dev]", "Cleaning", "House", "Hi", "folks.", "Since", "we", "no", "longer", "need", "to", "support", "the", "Chromium", "port,", "let's", "take", "the", "opportunity", "to", "streamline.", "Hopefully,", "this", "will", "make", "development", "easier", "and", "more", "coherent", "for", "everyone.", "Adam", "and", "Eric", "offered", "to", "do", "some", "of", "this", "cleanup,", "but", "I", "think", "it's", "healthier", "for", "people", "who", "will", "continue", "to", "be", "a", "part", "of", "WebKit", "to", "decide", "what", "gets", "cleaned", "up,", "and", "execute", "on", "the", "plan.", "Below", "is", "a", "high-level", "view", "of", "some", "improvements", "we're", "planning", "over", "the", "coming", "weeks.", "Concepts", "we", "plan", "to", "remove:", "Layering", "violations", "in", "WebCore/platform,", "where", "a", "Page*", "or", "Frame*", "is", "passed", "to", "a", "function", "Supplementable", "and", "Supplement", "#if", "USE(GOOGLEURL)", "Skia", "DOMFileSystem", "WebLayer", "and", "its", "scrolling", "implementation", "Features", "#defines", "that", "haven't", "gained", "traction", "Specific", "files", "we", "plan", "to", "remove:.gyp", "build", "files", "WebCore/bindings/v8", "LayoutTests/platform/chromium*", "WTF/wtf/chromium", "WebCore/*Chromium*", "Source/Platform/chromium", "ManualTests/chromium/", "Tools/BuildSlaveSupport/chromium/", "Tools/DumpRenderTree/chromium/", "Also:", "libc++", "Please", "let", "me", "know", "if", "you", "have", "other", "suggestions", "for", "improvements,", "or", "if", "you", "see", "something", "in", "the", "list", "that", "shouldn't", "be", "there.", "Thanks,", "Geoff" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Values", "of", "the", "Jaguar", "XJS", "have", "been", "rallying", "in", "recent", "years", "–", "could", "this", "be", "the", "start", "of", "a", "major", "push", "upmarket", "as", "we", "saw", "with", "the", "E-Type?", "When", "it", "comes", "to", "values", "of", "classic", "cars,", "everyone", "is", "trying", "to", "find", "the", "next", "‘big", "thing’.", "We", "all", "know", "the", "cars", "that", "have", "‘gone’", "–", "so", "to", "speak.", "’60s", "&", "’70s", "Porsches,", "Aston", "Martin", "DB4/5s", "and", "virtually", "anything", "with", "a", "Ferrari", "badge", "are", "just", "some", "of", "the", "big", "hitters", "that", "first", "come", "to", "mind.", "All", "of", "these", "cars", "have", "seen", "a", "huge", "growth", "in", "value", "in", "the", "past", "10", "years", "and", "the", "Jaguar", "E-Type", "can", "be", "included", "among", "this", "group.", "It", "doesn’t", "take", "a", "detailed", "analysis", "of", "our", "results", "on", "E-Types", "to", "see", "their", "values", "have", "seen", "extreme", "growth.", "Indeed", "the", "most", "collectable", "models", "have", "seen", "values", "increase", "by", "over", "100%", "in", "10", "years", "–", "a", "remarkable", "figure", "in", "an", "era", "of", "low", "inflation.", "However,", "it", "is", "not", "just", "the", "‘low-drags’", "and", "‘flat-floors’", "that", "are", "seeing", "all", "the", "growth.", "Similar,", "if", "not", "quite", "such", "extreme", "trends", "can", "be", "seen", "in", "more", "everyday", "models.", "Put", "shortly,", "E-Type", "owners", "having", "been", "laughing", "their", "way", "to", "the", "bank", "–", "except", "perhaps", "when", "it", "comes", "to", "ensuring", "their", "newly", "valuable", "cars.", "So,", "is", "the", "XJS", "going", "to", "follow", "its", "predecessor?", "Well,", "a", "40-year-old", "Jaguar", "XJS", "is", "not", "worth", "as", "much", "as", "a", "40-year-old", "E-Type", "was", "worth", "ten", "years,", "taking", "into", "account", "similar", "spec", "and", "condition.", "The", "E-Type", "does", "seem", "to", "have", "a", "higher", "inherent", "value", "than", "the", "XJS,", "for", "whatever", "reason.", "However,", "the", "XJS", "does", "seem", "to", "have", "begun", "a", "growth", "curve", "in", "recent", "years", "that", "suggest", "similar", "levels", "of", "growth", "to", "what", "we", "have", "seen", "in", "E-Types", "are", "to", "come.", "There", "are", "now", "far", "more", "cars", "selling", "for", "more", "than", "£10k,", "and", "the", "cars", "fetching", "over", "£20k", "are", "no", "longer", "just", "ultra-collectible", "cars", "or", "super", "low-milers.", "High", "spec,", "exceptional", "condition", "cars", "are", "now", "achieving", "these", "figures", "too.", "With", "an", "approximate", "value", "increase", "of", "50%", "in", "10", "years,", "Jaguar", "XJS", "don’t", "need", "to", "get", "much", "higher", "before", "the", "annual", "value", "increase", "is", "in", "the", "thousands.", "So,", "the", "XJS", "isn’t", "going", "to", "reach", "E-Type", "values", "anytime", "soon", "and", "probably", "never", "will,", "but", "as", "a", "percentage,", "it", "could", "well", "be", "just", "as", "‘big’a", "‘thing’", "as", "the", "E-Type.", "But", "what", "do", "you", "think?", "Are", "XJS", "values", "going", "to", "increase", "at", "the", "rate", "we", "have", "seen", "in", "the", "past", "10", "years?", "Or", "do", "you", "think", "it", "is", "just", "a", "bubble?", "Will", "they", "ever", "be", "worth", "as", "much", "as", "E-Types?" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Values", "of", "the", "Jaguar", "XJS", "have", "been", "rallying", "in", "recent", "years", "–", "could", "this", "be", "the", "start", "of", "a", "major", "push", "upmarket", "as", "we", "saw", "with", "the", "E-Type?", "When", "it", "comes", "to", "values", "of", "classic", "cars,", "everyone", "is", "trying", "to", "find", "the", "next", "‘big", "thing’.", "We", "all", "know", "the", "cars", "that", "have", "‘gone’", "–", "so", "to", "speak.", "’60s", "&", "’70s", "Porsches,", "Aston", "Martin", "DB4/5s", "and", "virtually", "anything", "with", "a", "Ferrari", "badge", "are", "just", "some", "of", "the", "big", "hitters", "that", "first", "come", "to", "mind.", "All", "of", "these", "cars", "have", "seen", "a", "huge", "growth", "in", "value", "in", "the", "past", "10", "years", "and", "the", "Jaguar", "E-Type", "can", "be", "included", "among", "this", "group.", "It", "doesn’t", "take", "a", "detailed", "analysis", "of", "our", "results", "on", "E-Types", "to", "see", "their", "values", "have", "seen", "extreme", "growth.", "Indeed", "the", "most", "collectable", "models", "have", "seen", "values", "increase", "by", "over", "100%", "in", "10", "years", "–", "a", "remarkable", "figure", "in", "an", "era", "of", "low", "inflation.", "However,", "it", "is", "not", "just", "the", "‘low-drags’", "and", "‘flat-floors’", "that", "are", "seeing", "all", "the", "growth.", "Similar,", "if", "not", "quite", "such", "extreme", "trends", "can", "be", "seen", "in", "more", "everyday", "models.", "Put", "shortly,", "E-Type", "owners", "having", "been", "laughing", "their", "way", "to", "the", "bank", "–", "except", "perhaps", "when", "it", "comes", "to", "ensuring", "their", "newly", "valuable", "cars.", "So,", "is", "the", "XJS", "going", "to", "follow", "its", "predecessor?", "Well,", "a", "40-year-old", "Jaguar", "XJS", "is", "not", "worth", "as", "much", "as", "a", "40-year-old", "E-Type", "was", "worth", "ten", "years,", "taking", "into", "account", "similar", "spec", "and", "condition.", "The", "E-Type", "does", "seem", "to", "have", "a", "higher", "inherent", "value", "than", "the", "XJS,", "for", "whatever", "reason.", "However,", "the", "XJS", "does", "seem", "to", "have", "begun", "a", "growth", "curve", "in", "recent", "years", "that", "suggest", "similar", "levels", "of", "growth", "to", "what", "we", "have", "seen", "in", "E-Types", "are", "to", "come.", "There", "are", "now", "far", "more", "cars", "selling", "for", "more", "than", "£10k,", "and", "the", "cars", "fetching", "over", "£20k", "are", "no", "longer", "just", "ultra-collectible", "cars", "or", "super", "low-milers.", "High", "spec,", "exceptional", "condition", "cars", "are", "now", "achieving", "these", "figures", "too.", "With", "an", "approximate", "value", "increase", "of", "50%", "in", "10", "years,", "Jaguar", "XJS", "don’t", "need", "to", "get", "much", "higher", "before", "the", "annual", "value", "increase", "is", "in", "the", "thousands.", "So,", "the", "XJS", "isn’t", "going", "to", "reach", "E-Type", "values", "anytime", "soon", "and", "probably", "never", "will,", "but", "as", "a", "percentage,", "it", "could", "well", "be", "just", "as", "‘big’a", "‘thing’", "as", "the", "E-Type.", "But", "what", "do", "you", "think?", "Are", "XJS", "values", "going", "to", "increase", "at", "the", "rate", "we", "have", "seen", "in", "the", "past", "10", "years?", "Or", "do", "you", "think", "it", "is", "just", "a", "bubble?", "Will", "they", "ever", "be", "worth", "as", "much", "as", "E-Types?" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Noting", "the", "war", "crimes", "now", "known", "and", "admitted", "to", "by", "George", "Bush", "and", "Dick", "Cheney,", "George", "Washington", "University's", "highly-respected", "constitutional", "law", "professor", "Jonathon", "Turley", "asked", "MSNBC's", "Keith", "Olbermann", "last", "week:", "\"If", "someone", "commits", "a", "crime", "and", "everyone's", "around", "to", "see", "it", "and", "does", "nothing,", "is", "it", "still", "a", "crime?\"", "The", "discussion", "came", "in", "the", "wake", "of", "a", "new", "bipartisan", "US", "Senate", "report", "(pdf)", "that", "found", "that", "Bush", "was", "responsible", "for", "approving", "torture", "and", "abuse", "at", "the", "Abu", "Ghraib", "in", "Iraq", "and", "Cheney's", "admission", "during", "an", "ABC", "interview", "that", "he", "helped", "to", "approve", "torture", "and", "abuse", "in", "interrogations.", "During", "the", "interview,", "Turley", "mentioned", "that", "it'll", "be", "up", "to", "the", "citizens", "whether", "or", "not", "any", "action", "is", "actually", "taken", "to", "prosecute", "those", "who", "committed", "these", "crimes.", "\"It", "will", "ultimately", "depend", "on", "citizens,", "and", "whether", "they", "will", "remain", "silent", "in", "the", "face", "of", "a", "crime", "that's", "been", "committed", "in", "plain", "view,\"", "Turley", "suggested.", "\"It", "is", "equally", "immoral", "to", "stand", "silent", "in", "the", "face", "of", "a", "war", "crime", "and", "do", "nothing,", "and", "that", "is", "what", "the", "citizens", "are", "doing.\"", "But", "is", "there", "any", "real", "basis", "for", "his", "well-meaning", "argument", "that", "accountability", "could", "possibly", "be", "brought", "by", "popular", "demand?", "Unfortunately,", "as", "the", "media", "has", "been", "virtually", "silent", "about", "what", "may", "be", "the", "most", "offensive", "crimes", "ever", "committed", "by", "an", "executive", "branch", "in", "the", "US", "(just", "as", "silent", "as", "they", "were", "during", "the", "lead-up", "and", "follow-through", "of", "the", "Iraq", "war,", "when", "those", "same", "officials", "sent", "our", "nation", "into", "war", "on", "the", "basis", "of", "demonstrable", "lies),", "it's", "bloody", "unlikely", "that", "most", "citizens", "will", "even", "learn", "about", "these", "scandals,", "much", "less", "take", "action", "on", "them.", "And", "if", "they", "did,", "who", "would", "bother", "to", "report", "it?", "As", "Turley", "said:", "\"There's", "this", "gigantic", "yawn", "as", "we", "hear", "about", "a", "war", "crime", "on", "national", "television", "being", "discussed", "matter-of-factly", "by", "the", "vice-president.\"", "But", "how", "much", "can", "citizens", "actually", "do,", "particularly", "with", "the", "sparse", "amount", "of", "information", "they've", "been", "presented?", "They", "hit", "the", "streets", "to", "protest", "by", "the", "millions,", "prior", "to", "and", "during", "the", "Iraq", "war,", "and", "the", "bulk", "of", "the", "media", "didn't", "bother", "to", "even", "cover", "it.", "I'm", "currently", "driving", "through", "Oklahoma", "(passenger", "seat)", "as", "I", "write", "this.", "Republicanist", "Sean", "Hannity", "is", "yammering", "away,", "misinforming", "listeners", "on", "the", "radio,", "and", "a", "station", "promo", "just", "announced", "he'll", "be", "followed", "by", "Michael", "Savage", "for", "three", "hours,", "then", "Laura", "Ingraham", "for", "three", "hours,", "then", "John", "Gibson", "for", "three", "hours.", "Rightwing", "nuts", "all.", "I'm", "Rush", "Limbaugh", "was", "on", "before", "Hannity.", "So,", "in", "those", "15", "consecutive", "hours", "of", "rightwing", "talk", "–", "on", "our", "publicly", "owned", "airwaves", "–", "who", "exactly", "will", "be", "informing", "citizens", "of", "the", "documented", "evidence", "of", "war", "crimes", "committed", "by", "Bush", "and", "Cheney?", "Yes,", "if", "the", "citizens", "began", "throwing", "shoes", "everywhere", "by", "the", "millions,", "someone", "in", "the", "corporate", "mainstream", "media", "might", "cover", "it", "somewhere.", "But", "without", "the", "daily", "barrage", "of", "a", "real", "media,", "covering", "the", "topics", "that", "actually", "matter,", "with", "the", "attention", "they", "deserve,", "the", "citizens", "are", "often", "clueless,", "and", "otherwise", "virtually", "powerless,", "in", "this", "wingnut-fed", "media", "world", "we've", "allowed", "to", "be", "created", "around", "us.", "If", "you", "doubt", "any", "of", "that,", "just", "ask", "yourselves", "what", "we'd", "be", "listening", "to", "on", "talk", "radio,", "and", "thus", "watching", "on", "the", "cable", "news", "network,", "and", "thus", "see", "debated", "on", "the", "floor", "of", "Congress,", "had", "a", "bipartisan", "panel", "found", "that", "President", "Bill", "Clinton", "had", "approved", "war", "crimes", "that", "hastened", "the", "deaths", "of", "thousands", "of", "US", "troops,", "just", "before", "vice-president", "Al", "Gore", "went", "on", "ABC", "News", "to", "admit", "it,", "and", "even", "crow", "about", "it.", "You", "suppose", "that", "coverage", "might", "help", "inspire", "a", "citizen", "uprising", "in", "that", "case?", "You", "bet.", "But", "it", "is,", "for", "the", "moment,", "a", "wingnut", "world.", "We", "just", "live", "in", "it.", "Do", "Americans", "simply", "not", "care", "about", "war", "crimes?", "Of", "course", "they", "do.", "But", "not", "unless", "they", "know", "about", "them,", "and", "not", "unless", "the", "argument", "that", "they", "occurred,", "and", "the", "evidence", "of", "it,", "is", "presented", "in", "the", "detail", "that", "such", "an", "issue", "merits.", "While", "a", "small", "number", "of", "outraged", "citizens", "who", "take", "action", "actually", "can", "make", "enormous", "differences", "on", "the", "local", "level,", "accountability", "for", "international", "war", "crimes", "requires", "an", "untiring,", "responsible,", "focused", "media", "to", "inspire", "the", "mobilisation", "of", "a", "nation.", "Such", "as", "it", "is,", "these", "crimes", "were", "committed", "by", "Republicans,", "and", "didn't", "overtly", "involve", "sex,", "so", "they", "don't", "actually", "matter.", "Arguably,", "as", "Turley", "noted,", "none", "of", "it", "even", "happened", "at", "all.", "\"I", "think", "that's", "really", "the", "argument", "of", "this", "administration:", "'It", "can't", "be", "a", "crime", "because", "no", "one's", "prosecuted", "us", "for", "it.'\"", "It's", "good", "to", "be", "king." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Noting", "the", "war", "crimes", "now", "known", "and", "admitted", "to", "by", "George", "Bush", "and", "Dick", "Cheney,", "George", "Washington", "University's", "highly-respected", "constitutional", "law", "professor", "Jonathon", "Turley", "asked", "MSNBC's", "Keith" ], [ "last", "week:", "\"If", "someone", "commits", "a", "crime", "and", "everyone's", "around", "to", "see", "it", "and", "does", "nothing,", "is", "it", "still", "a", "crime?\"", "The", "discussion", "came", "in", "the", "wake", "of", "a", "new", "bipartisan", "US", "Senate", "report", "(pdf)", "that", "found", "that", "Bush", "was", "responsible", "for", "approving", "torture", "and", "abuse", "at", "the", "Abu", "Ghraib", "in", "Iraq", "and", "Cheney's", "admission", "during", "an", "ABC", "interview", "that", "he", "helped", "to", "approve", "torture", "and", "abuse", "in", "interrogations.", "During", "the", "interview,", "Turley", "mentioned", "that", "it'll", "be", "up", "to", "the", "citizens", "whether", "or", "not", "any", "action", "is", "actually", "taken", "to", "prosecute", "those", "who", "committed", "these", "crimes.", "\"It", "will", "ultimately", "depend", "on", "citizens,", "and", "whether", "they", "will", "remain", "silent", "in", "the", "face", "of", "a", "crime", "that's", "been", "committed", "in", "plain", "view,\"", "Turley", "suggested.", "\"It", "is", "equally", "immoral", "to", "stand", "silent", "in", "the", "face", "of", "a", "war", "crime", "and", "do", "nothing,", "and", "that", "is", "what", "the", "citizens", "are", "doing.\"", "But", "is", "there", "any", "real", "basis", "for", "his", "well-meaning", "argument", "that", "accountability", "could", "possibly", "be", "brought", "by", "popular", "demand?", "Unfortunately,", "as", "the", "media", "has", "been", "virtually", "silent", "about", "what", "may", "be", "the", "most", "offensive", "crimes", "ever", "committed", "by", "an", "executive", "branch", "in", "the", "US", "(just", "as", "silent", "as", "they", "were", "during", "the", "lead-up", "and", "follow-through", "of", "the", "Iraq", "war,", "when", "those", "same", "officials", "sent", "our", "nation", "into", "war", "on", "the", "basis", "of", "demonstrable", "lies),", "it's", "bloody", "unlikely", "that", "most", "citizens", "will", "even", "learn", "about", "these", "scandals,", "much", "less", "take", "action", "on", "them.", "And", "if", "they", "did,", "who", "would", "bother", "to", "report", "it?", "As", "Turley", "said:", "\"There's", "this", "gigantic", "yawn", "as", "we", "hear", "about", "a", "war", "crime", "on", "national", "television", "being", "discussed", "matter-of-factly", "by", "the", "vice-president.\"", "But", "how", "much", "can", "citizens", "actually", "do,", "particularly", "with", "the", "sparse", "amount", "of", "information", "they've", "been", "presented?", "They", "hit", "the", "streets", "to", "protest", "by", "the", "millions,", "prior", "to", "and", "during", "the", "Iraq", "war,", "and", "the", "bulk", "of", "the", "media", "didn't", "bother", "to", "even", "cover", "it.", "I'm", "currently", "driving", "through", "Oklahoma", "(passenger", "seat)", "as", "I", "write", "this.", "Republicanist", "Sean", "Hannity", "is", "yammering", "away,", "misinforming", "listeners", "on", "the", "radio,", "and", "a", "station", "promo", "just", "announced", "he'll", "be", "followed", "by", "Michael", "Savage", "for", "three", "hours,", "then", "Laura", "Ingraham", "for", "three", "hours,", "then", "John", "Gibson", "for", "three", "hours.", "Rightwing", "nuts", "all.", "I'm", "Rush", "Limbaugh", "was", "on", "before", "Hannity.", "So,", "in", "those", "15", "consecutive", "hours", "of", "rightwing", "talk", "–", "on", "our", "publicly", "owned", "airwaves", "–", "who", "exactly", "will", "be", "informing", "citizens", "of", "the", "documented", "evidence", "of", "war", "crimes", "committed", "by", "Bush", "and", "Cheney?", "Yes,", "if", "the", "citizens", "began", "throwing", "shoes", "everywhere", "by", "the", "millions,", "someone", "in", "the", "corporate", "mainstream", "media", "might", "cover", "it", "somewhere.", "But", "without", "the", "daily", "barrage", "of", "a", "real", "media,", "covering", "the", "topics", "that", "actually", "matter,", "with", "the", "attention", "they", "deserve,", "the", "citizens", "are", "often", "clueless,", "and", "otherwise", "virtually", "powerless,", "in", "this", "wingnut-fed", "media", "world", "we've", "allowed", "to", "be", "created", "around", "us.", "If", "you", "doubt", "any", "of", "that,", "just", "ask", "yourselves", "what", "we'd", "be", "listening", "to", "on", "talk", "radio,", "and", "thus", "watching", "on", "the", "cable", "news", "network,", "and", "thus", "see", "debated", "on", "the", "floor", "of", "Congress,", "had", "a", "bipartisan", "panel", "found", "that", "President", "Bill", "Clinton", "had", "approved", "war", "crimes", "that", "hastened", "the", "deaths", "of", "thousands", "of", "US", "troops,", "just", "before", "vice-president", "Al", "Gore", "went", "on", "ABC", "News", "to", "admit", "it,", "and", "even", "crow", "about", "it.", "You", "suppose", "that", "coverage", "might", "help", "inspire", "a", "citizen", "uprising", "in", "that", "case?", "You", "bet.", "But", "it", "is,", "for", "the", "moment,", "a", "wingnut", "world.", "We", "just", "live", "in", "it.", "Do", "Americans", "simply", "not", "care", "about", "war", "crimes?", "Of", "course", "they", "do.", "But", "not", "unless", "they", "know", "about", "them,", "and", "not", "unless", "the", "argument", "that", "they", "occurred,", "and", "the", "evidence", "of", "it,", "is", "presented", "in", "the", "detail", "that", "such", "an", "issue", "merits.", "While", "a", "small", "number", "of", "outraged", "citizens", "who", "take", "action", "actually", "can", "make", "enormous", "differences", "on", "the", "local", "level,", "accountability", "for", "international", "war", "crimes", "requires", "an", "untiring,", "responsible,", "focused", "media", "to", "inspire", "the", "mobilisation", "of", "a", "nation.", "Such", "as", "it", "is,", "these", "crimes", "were", "committed", "by", "Republicans,", "and", "didn't", "overtly", "involve", "sex,", "so", "they", "don't", "actually", "matter.", "Arguably,", "as", "Turley", "noted,", "none", "of", "it", "even", "happened", "at", "all.", "\"I", "think", "that's", "really", "the", "argument", "of", "this", "administration:", "'It", "can't", "be", "a", "crime", "because", "no", "one's", "prosecuted", "us", "for", "it.'\"", "It's", "good", "to", "be", "king." ] ] ]
[ [ "en", "en" ] ]
[ "mono" ]
[ [ "Let’s", "just", "list", "this", "as", "the", "next", "in", "an", "ongoing", "series", "of", "reasons", "why", "you", "should", "be", "glad", "that", "you", "don’t", "live", "in", "California.", "(And", "for", "those", "of", "you", "who", "actually", "do,", "I", "don’t", "have", "too", "much", "pity.", "You’ve", "had", "plenty", "of", "warning", "signals", "and", "you", "should", "have", "moved", "by", "now.)", "In", "the", "race", "to", "lead", "the", "nation", "in", "identity", "politics", "and", "political", "correctness", "taken", "to", "the", "umpteenth", "degree,", "California", "should", "be", "surging", "into", "the", "lead.", "A", "bill", "has", "actually", "been", "passed", "in", "the", "State", "Senate", "and", "is", "now", "under", "consideration", "in", "the", "Assembly", "which", "would", "impose", "criminal", "penalties", "–", "including", "jail", "time", "–", "if", "you", "are", "found", "to", "be", "addressing", "a", "transgender", "person", "which", "don’t", "match", "the", "gender", "they", "imagine", "themselves", "to", "be.", "(Daily", "Caller)", "A", "bill", "that", "passed", "the", "California", "state", "senate", "and", "is", "now", "moving", "through", "the", "Assembly", "could", "threaten", "jail", "time", "for", "anyone", "who", "refuses", "to", "use", "a", "transgender", "person’s", "preferred", "pronoun.", "The", "law", "is", "currently", "limited", "in", "its", "effects", "to", "nursing", "homes", "and", "intermediate-care", "facilities,", "but", "if", "passed,", "those", "who", "“willfully", "and", "repeatedly”", "refuse", "“to", "use", "a", "transgender", "resident’s", "preferred", "name", "or", "pronouns”", "could", "be", "slapped", "with", "a", "$1,000", "fine", "and", "up", "to", "one", "year", "in", "prison,", "according", "to", "the", "California", "Heath", "and", "Safety", "code.", "The", "state", "senate", "passed", "the", "bill", "26-12", "at", "the", "end", "of", "May.", "Since", "then,", "the", "Assembly", "Judiciary", "committee", "recommended", "the", "bill", "unanimously", "and", "the", "General", "Assembly", "held", "its", "first", "hearing", "on", "the", "legislation", "Wednesday.", "For", "the", "moment,", "this", "would", "only", "apply", "in", "nursing", "homes.", "(These", "are", "locations", "which", "are", "not", "traditionally", "known", "for", "an", "overwhelming", "number", "transgender", "But", "legal", "analysts", "are", "already", "speculating", "that", "the", "prohibition", "would", "spread", "well", "beyond", "those", "confines", "and", "do", "so", "quickly.", "This", "is", "one", "of", "those", "cases", "where", "I", "do", "honestly", "hope", "that", "they", "can", "manage", "to", "pass", "this", "into", "law.", "And", "then", "we’ll", "need", "a", "volunteer", "to", "go", "violate", "it", "and", "take", "this", "question", "to", "court.", "Can", "the", "government", "actually", "regulate", "people’s", "speech", "based", "on", "whether", "or", "not", "it’s", "polite", "William", "Johnson", "prefers", "to", "be", "called", "“Mr.", "Johnson”", "and", "lets", "you", "know", "it,", "the", "polite", "thing", "to", "do", "would", "be", "to", "refer", "to", "him", "as", "such.", "If", "you", "continue", "calling", "him", "“Bill”", "he", "can", "be", "annoyed", "with", "you", "or", "simply", "walk", "away", "and", "refuse", "to", "talk", "to", "such", "a", "rude", "individual.", "But", "he", "can’t", "have", "you", "arrested.", "But", "just", "because", "a", "basically", "fictitious", "(medically", "and", "scientifically),", "politically", "favored", "subset", "of", "people", "are", "involved,", "we’re", "going", "to", "make", "an", "exception", "and", "lock", "up", "the", "offenders?", "If", "this", "law", "can", "actually", "be", "passed", "and", "survive", "a", "challenge,", "we’ve", "really", "thrown", "in", "the", "towel", "on", "the", "Constitution.", "And", "I’ll", "be", "joining", "in", "with", "one", "of", "the", "people", "I", "follow", "on", "Twitter", "with", "this", "opinion", "as", "well." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Let’s", "just", "list", "this", "as", "the", "next", "in", "an", "ongoing", "series", "of", "reasons", "why", "you", "should", "be", "glad", "that", "you", "don’t", "live", "in", "California.", "(And", "for", "those", "of", "you", "who", "actually", "do,", "I", "don’t", "have", "too", "much", "pity.", "You’ve", "had", "plenty", "of", "warning", "signals", "and", "you", "should", "have", "moved", "by", "now.)", "In", "the", "race", "to", "lead", "the", "nation", "in", "identity", "politics", "and", "political", "correctness", "taken", "to", "the", "umpteenth", "degree,", "California", "should", "be", "surging", "into", "the", "lead.", "A", "bill", "has", "actually", "been", "passed", "in", "the", "State", "Senate", "and", "is", "now", "under", "consideration", "in", "the", "Assembly", "which", "would", "impose", "criminal", "penalties", "–", "including", "jail", "time", "–", "if", "you", "are", "found", "to", "be", "addressing", "a", "transgender", "person", "which", "don’t", "match", "the", "gender", "they", "imagine", "themselves", "to", "be.", "(Daily", "Caller)", "A", "bill", "that", "passed", "the", "California", "state", "senate", "and", "is", "now", "moving", "through", "the", "Assembly", "could", "threaten", "jail", "time", "for", "anyone", "who", "refuses", "to", "use", "a", "transgender", "person’s", "preferred", "pronoun.", "The", "law", "is", "currently", "limited", "in", "its", "effects", "to", "nursing", "homes", "and", "intermediate-care", "facilities,", "but", "if", "passed,", "those", "who", "“willfully", "and", "repeatedly”", "refuse", "“to", "use", "a", "transgender", "resident’s", "preferred", "name", "or", "pronouns”", "could", "be", "slapped", "with", "a", "$1,000", "fine", "and", "up", "to", "one", "year", "in", "prison,", "according", "to", "the", "California", "Heath", "and", "Safety", "code.", "The", "state", "senate", "passed", "the", "bill", "26-12", "at", "the", "end", "of", "May.", "Since", "then,", "the", "Assembly", "Judiciary", "committee", "recommended", "the", "bill", "unanimously", "and", "the", "General", "Assembly", "held", "its", "first", "hearing", "on", "the", "legislation", "Wednesday.", "For", "the", "moment,", "this", "would", "only", "apply", "in", "nursing", "homes.", "(These", "are", "locations", "which", "are", "not", "traditionally", "known", "for", "an", "overwhelming", "number", "transgender", "But", "legal", "analysts", "are", "already", "speculating", "that", "the", "prohibition", "would", "spread", "well", "beyond", "those", "confines", "and", "do", "so", "quickly.", "This", "is", "one", "of", "those", "cases", "where", "I", "do", "honestly", "hope", "that", "they", "can", "manage", "to", "pass", "this", "into", "law.", "And", "then", "we’ll", "need", "a", "volunteer", "to", "go", "violate", "it", "and", "take", "this", "question", "to", "court.", "Can", "the", "government", "actually", "regulate", "people’s", "speech", "based", "on", "whether", "or", "not", "it’s", "polite", "William", "Johnson", "prefers", "to", "be", "called", "“Mr.", "Johnson”", "and", "lets", "you", "know", "it,", "the", "polite", "thing", "to", "do", "would", "be", "to", "refer", "to", "him", "as", "such.", "If", "you", "continue", "calling", "him", "“Bill”", "he", "can", "be", "annoyed", "with", "you", "or", "simply", "walk", "away", "and", "refuse", "to", "talk", "to", "such", "a", "rude", "individual.", "But", "he", "can’t", "have", "you", "arrested.", "But", "just", "because", "a", "basically", "fictitious", "(medically", "and", "scientifically),", "politically", "favored", "subset", "of", "people", "are", "involved,", "we’re", "going", "to", "make", "an", "exception", "and", "lock", "up", "the", "offenders?", "If", "this", "law", "can", "actually", "be", "passed", "and", "survive", "a", "challenge,", "we’ve", "really", "thrown", "in", "the", "towel", "on", "the", "Constitution.", "And", "I’ll", "be", "joining", "in", "with", "one", "of", "the", "people", "I", "follow", "on", "Twitter", "with", "this", "opinion", "as", "well." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Story", "highlights", "Boy", "was", "transferred", "to", "Fargo", "for", "further", "treatment,", "mayor", "says", "\"As", "far", "as", "I", "know,", "he's", "a", "well-behaved,", "good", "kid,\"", "mayor", "says", "Town", "is", "trying", "\"to", "figure", "out", "what", "could", "have", "possibly", "happened,\"", "mayor", "adds", "Boy", "was", "coherent", "after", "he", "shot", "himself", "with", "a", "small", "principal", "A", "North", "Dakota", "freshman", "walked", "in", "front", "of", "his", "class,", "made", "an", "apology", "and", "then", "shot", "himself", "with", "a", "handgun", "Thursday", "morning,", "Richland", "County", "authorities", "said.", "The", "injured", "boy", "was", "coherent", "when", "he", "was", "taken", "to", "a", "hospital,", "said", "Principal", "Jay", "Townsend", "of", "Fairmount", "Public", "School,", "which", "has", "112", "students", "from", "kindergarten", "through", "12th", "grade.", "Authorities", "don't", "know", "what", "the", "apology", "was", "about,", "Sheriff", "Larry", "Leshovsky", "said.", "The", "student", "wasn't", "in", "any", "kind", "of", "trouble", "that", "the", "principal", "was", "aware", "of.", "The", "freshman,", "whose", "name", "wasn't", "being", "released,", "has", "lived", "in", "the", "small,", "rural", "community", "of", "380", "residents", "his", "entire", "life", "and", "has", "spent", "all", "educational", "years", "at", "Fairmount", "School,", "Mayor", "Jon", "Nelk", "said.", "The", "student", "was", "transferred", "to", "a", "hospital", "in", "Fargo,", "but", "the", "mayor", "had", "no", "further", "details.", "The", "student's", "grandparents", "grew", "up", "in", "the", "Fairmount", "area", "and", "his", "parents", "have", "lived", "in", "town", "their", "entire", "lives,", "Nelk", "\"As", "far", "as", "I", "know,", "he's", "a", "well-behaved,", "good", "kid,\"", "the", "mayor", "said.", "\"We're", "a", "rural", "area,", "but", "guns", "are", "not", "commonplace.\"", "The", "shooting", "was", "\"an", "isolated", "incident\"", "for", "the", "town,", "Nelk", "said.", "\"I'm", "sure", "when", "we", "sit", "down", "this", "evening", "and", "start", "playing", "it", "back,", "we'll", "try", "to", "figure", "out", "what", "could", "have", "possibly", "happened", "and", "why", "this", "happened,\"", "Nelk", "said.", "\"It's", "a", "very", "tight", "community.", "\"I've", "had", "a", "lot", "of", "conversations", "with", "parents", "and", "some", "students.", "They're", "quite", "worried", "and", "hoping", "that", "our", "prayers", "go", "out", "to", "the", "child", "and", "the", "family", "and", "the", "friends,\"", "the", "mayor", "said.", "A", "teacher", "provided", "first-aid", "to", "the", "boy,", "and", "the", "school", "went", "into", "lockdown", "shortly", "after", "the", "8:40", "a.m.", "shooting,", "Townsend", "said.", "An", "alert", "system", "called", "all", "parents,", "and", "school", "was", "canceled", "for", "the", "day,", "Townsend", "said.", "School", "will", "resume", "Friday,", "when", "counselors", "will", "be", "on", "hand,", "the", "principal", "said.", "\"This", "has", "never", "happened", "here", "before,\"", "said", "Townsend,", "who", "has", "been", "principal", "of", "the", "school", "for", "five", "years.", "\"This", "kind", "of", "situation", "is", "very", "rare", "and", "new", "to", "North", "Dakota,", "the", "community,", "our", "school", "and", "the", "students.\"" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Story", "highlights", "Boy", "was", "transferred", "to", "Fargo", "for", "further", "treatment,", "mayor", "says", "\"As", "far", "as", "I", "know,", "he's", "a", "well-behaved,", "good", "kid,\"", "mayor", "says", "Town", "is", "trying", "\"to", "figure", "out", "what", "could", "have", "possibly", "happened,\"", "mayor", "adds", "Boy", "was", "coherent", "after", "he", "shot", "himself", "with", "a", "small", "principal", "A", "North", "Dakota", "freshman", "walked", "in", "front", "of", "his", "class,", "made", "an", "apology", "and", "then", "shot", "himself", "with", "a", "handgun", "Thursday", "morning,", "Richland", "County", "authorities", "said.", "The", "injured", "boy", "was", "coherent", "when", "he", "was", "taken", "to", "a", "hospital,", "said", "Principal", "Jay", "Townsend", "of", "Fairmount", "Public", "School,", "which", "has", "112", "students", "from", "kindergarten", "through", "12th", "grade.", "Authorities", "don't", "know", "what", "the", "apology", "was", "about,", "Sheriff", "Larry", "Leshovsky", "said.", "The", "student", "wasn't", "in", "any", "kind", "of", "trouble", "that", "the", "principal", "was", "aware", "of.", "The", "freshman,", "whose", "name", "wasn't", "being", "released,", "has", "lived", "in", "the", "small,", "rural", "community", "of", "380", "residents", "his", "entire", "life", "and", "has", "spent", "all", "educational", "years", "at", "Fairmount", "School,", "Mayor", "Jon", "Nelk", "said.", "The", "student", "was", "transferred", "to", "a", "hospital", "in", "Fargo,", "but", "the", "mayor", "had", "no", "further", "details.", "The", "student's", "grandparents", "grew", "up", "in", "the", "Fairmount", "area", "and", "his", "parents", "have", "lived", "in", "town", "their", "entire", "lives,", "Nelk", "\"As", "far", "as", "I", "know,", "he's", "a", "well-behaved,", "good", "kid,\"", "the", "mayor", "said.", "\"We're", "a", "rural", "area,", "but", "guns", "are", "not", "commonplace.\"", "The", "shooting", "was", "\"an", "isolated", "incident\"", "for", "the", "town,", "Nelk", "said.", "\"I'm", "sure", "when", "we", "sit", "down", "this", "evening", "and", "start", "playing", "it", "back,", "we'll", "try", "to", "figure", "out", "what", "could", "have", "possibly", "happened", "and", "why", "this", "happened,\"", "Nelk", "said.", "\"It's", "a", "very", "tight", "community.", "\"I've", "had", "a", "lot", "of", "conversations", "with", "parents", "and", "some", "students.", "They're", "quite", "worried", "and", "hoping", "that", "our", "prayers", "go", "out", "to", "the", "child", "and", "the", "family", "and", "the", "friends,\"", "the", "mayor", "said.", "A", "teacher", "provided", "first-aid", "to", "the", "boy,", "and", "the", "school", "went", "into", "lockdown", "shortly", "after", "the", "8:40", "a.m.", "shooting,", "Townsend", "said.", "An", "alert", "system", "called", "all", "parents,", "and", "school", "was", "canceled", "for", "the", "day,", "Townsend", "said.", "School", "will", "resume", "Friday,", "when", "counselors", "will", "be", "on", "hand,", "the", "principal", "said.", "\"This", "has", "never", "happened", "here", "before,\"", "said", "Townsend,", "who", "has", "been", "principal", "of", "the", "school", "for", "five", "years.", "\"This", "kind", "of", "situation", "is", "very", "rare", "and", "new", "to", "North", "Dakota,", "the", "community,", "our", "school", "and", "the", "students.\"" ] ] ]
[ [ "en" ] ]
[ "mono", "mono" ]
[ [ "Mistä", "on", "kyse?", "Facebookin", "Klikinsäästäjä-yhteisö", "on", "ärsyyntynyt", "Ylen", "otsikoista", "Se", "lähestyi", "Yleä", "hiljattain", "avoimella", "kirjeellä", "Ylen", "uutis-", "ja", "ajankohtaistoiminnan", "verkkotuottajan", "Timo", "Kämäräisen", "mielestä", "klikkiotsikot", "eivät", "ole", "Ylellä", "kovin", "suuri", "ongelma", "Facebookin", "Klikinsäästäjä-yhteisössä", "on", "ruodittu", "paljon", "esimerkiksi", "iltapäivälehtien", "otsikoita,", "mutta", "viime", "aikoina", "myös", "Ylen", "otsikot", "ovat", "alkaneet", "ärsyttää", "yhteisön", "jäseniä.", "Hiljattain", "Klikinsäästäjä", "lähestyi", "Yleä", "avoimella", "kirjeellä.", "–", "Se", "lähti", "huomiosta,", "että", "Ylelläkin", "alkaa", "olla", "jonkin", "verran", "klikkiotsikoita", "ja", "kysyimme,", "miksi", "Yle", "lähtee", "tähän.", "Rahoituspohja", "on", "sellainen,", "ettei", "siltä", "puolelta", "ainakaan", "tarvetta", "löydy,", "toteaa", "Klikinsäästäjä-yhteisön", "perustaja", "ja", "ylläpitäjä", "Lauri", "Skön.", "Skönin", "mielestä", "Yle", "on", "pitkään", "ollut", "asiallisuuden", "ja", "puolueettomuuden", "linnake,", "josta", "ei", "turhaa", "sensaatiohakuisuutta", "löydy.", "–", "Meillä", "on", "huoli", "siitä,", "ettei", "lipsuta", "väärälle", "puolelle.", "Haluamme", "keskusteluttaa,", "että", "ovatko", "klikit", "se", "paras", "mittari?", "Vai", "olisiko", "parempi", "mittari", "esimerkiksi", "laatu,", "eli", "kuinka", "pitkään", "juttuja", "sivustoilla", "luetaan.", "Klikit,", "jaot", "ja", "viihtyvyys", "Ylellä", "klikkausten", "määrä", "on", "yksi", "seurata", "juttujen", "menekkiä", "ja", "laatua.", "Niiden", "ohella", "paljon", "painoarvoa", "annetaan", "myös", "some-jaoille.", "Skönin", "ehdotuksen", "tapaan", "Ylelläpidetään", "silmällä", "myös", "sitä,", "kuinka", "kauan", "lukija", "viihtyy", "jutussa.", "Meillä", "on", "huoli", "siitä,", "ettei", "lipsuta", "väärälle", "puolelle.", "Lauri", "Skön", "–", "Kansainvälinen", "trendikin", "on", "se,", "että", "klikkausten", "sijaan", "ainakin", "niiden", "rinnalla", "pyritään", "seuraamaan", "myös", "jutussa", "vietettyä", "aikaa.", "Tärkeää", "ei", "ole", "pelkkä", "klikkaus", "vaan", "myös", "se,", "että", "lukija", "viihtyy", "artikkelissa", "pidempään,", "sanoo", "Ylen", "uutis-", "ja", "ajankohtaistoiminnan", "verkkotuottaja", "Kämäräinen.", "Raflaava", "otsikko", "ei", "ole", "klikkiotsikko", "Mikä", "sitten", "klikkiotsikko?", "Klikinsäästäjän", "perustaja", "Lauri", "Skön", "nostaa", "esiin", "esimerkin,", "joka", "jäänyt", "mieleen.", "–", "Tamperelainen-lehdessä", "oli", "otsikko:", "Festarit", "eivät", "pärjää", "enää", "pelkillä", "makkaraperunoilla", "–", "eniten", "myydään", "tätä.", "Vastaus", "tähän", "oli", "makkaraperunat.", "Se", "on", "sellainen", "yksi", "ylitse", "muiden", "-klikkiotsikko.", "Skönin", "mukaan", "raflaava", "otsikko", "ei", "välttä" ], [ "mättä", "ole", "sama", "kuin", "klikkiotsikko.", "–", "Otsikko", "voi", "olla", "raflaava,", "kunhan", "juttukin", "on", "raflaava.", "Klikkiotsikointia", "on", "se,", "jos", "johdetaan", "harhaan", "ja", "käytetään", "epäselviä", "termejä,", "kun", "asia", "on", "sanottavissa", "selvemminkin.", "Harmaa", "alue", "Ylen", "uutis-", "ja", "ajankohtaistoiminnan", "verkkotuottaja", "Timo", "Kämäräinen", "on", "Lauri", "Skönin", "kanssa", "samaa", "mieltä.", "–", "Klikkiotsikko", "piilottaa", "sisällön", "ytimen.", "Otsikko", "on", "klikkiotsikko,", "jos", "se", "on", "harhaanjohtava", "tai", "valheellinen,", "Kämäräinen", "linjaa.", "Jokainen", "toimittaja", "haluaa,", "että", "yleisö", "löytää", "jutun.", "Otsikko", "on", "siinä", "avainasemassa.", "Timo", "Kämäräinen", "Hän", "muistuttaa", "myös", "otsikoiden", "\"harmaasta", "alueesta\".", "–", "Harmaalle", "alueelle", "kuuluu", "valtava", "määrä", "otsikoita,", "joihin", "enemmän", "tai", "vähemmän", "piilotettu", "se", "journalistinen", "idea.", "Rajatapauksia", "varmasti", "valtava", "määrä.", "Otsikko", "valmistuu", "porukalla", "Kämäräisen", "mukaan", "Yle", "on", "pyrkinyt", "koko", "ajan", "eroon", "klikkiotsikoista.", "–", "Keskeinen", "ohjenuora", "uutisjutuissamme", "on", "se,", "että", "tuodaan", "houkuttelevin", "journalistinen", "oivallus", "otsikkoon", "eikä", "suinkaan", "piiloteta", "sitä.", "Kämäräinen", "myös", "muistuttaa,", "että", "otsikointi", "on", "myyntitapahtuma.", "–", "Jokainen", "toimittaja", "haluaa,", "että", "yleisö", "löytää", "jutun.", "Otsikko", "siinä", "avainasemassa.", "Neuvomme", "toimittajia", "käyttämään", "aikaa", "otsikointiin,", "luonnostelemaan", "useita", "vaihtoehtoja", "ja", "katsomaan", "porukalla,", "mikä", "on", "paras.", "Ei", "suuri", "ongelma", "Kämäräisen", "mielestä", "klikkiotsikointi", "ei", "ole", "Ylellä", "kovin", "suuri", "ongelma.", "–", "Korostan,", "että", "juttuja", "on", "todella", "paljon.", "Silloin", "otsikoissakin", "vaihtelua.", "Kokonaisuutena", "pärjäämme", "erittäin", "hyvin.", "Ohjenuoramme", "tuoda", "journalistinen", "oivallus", "otsikkoon,", "ei", "piilottaa", "sitä.", "Timo", "Kämäräinen", "Otsikoita", "myös", "korjataan,", "jos", "ne", "ovat", "liian", "mysteerimäisiä.", "Toisaalta", "korjataan", "myös", "liian", "tylsiä", "otsikoita.", "–", "Voi", "olla", "arvokas", "aihe,", "joka", "ei", "löydä", "yleisöä.", "Silloin", "mietimme,", "miten", "löytyy", "houkuttelevampi,", "mutta", "totuudenmukainen", "otsikko.", "Facebookin", "Klikinsäästäjä-yhteisön", "tarkoitus", "on", "spoilata", "klikkiotsikoita", "kertomalla", "saatetekstissä,", "mitä", "otsikolla", "ajetaan", "takaa.", "Skön", "ja", "Timo", "Kämäräinen", "olivat", "Ajantasan", "haastattelussa", "torstaina", "22.10." ] ]
[ [ "de", "de", "de", "de", "de", "de", "de", "de", "de", "en", "en", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "fr", "en", "en", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "it", "it", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "pt", "pt", "co", "co", "co", "co", "co", "co", "co", "co", "co", "co", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "fr", "fr", "fr", "fr", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "de", "de", "de", "de", "de", "de", "de", "co", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "nl", "de", "de", "de", "de", "de", "de", "de", "es", "es", "es", "es", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de" ], [ "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "it", "it", "it", "it", "it", "it", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "co", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "en", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "fr", "fr", "fr", "fr", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "co", "co", "co", "nl", "nl", "nl", "nl", "it", "it", "fr", "fr", "fr", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "fr", "fr", "fr", "fr", "pt", "pt", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "co", "co" ] ]
[ [ [ "Mistä", "on", "kyse?", "Facebookin", "Klikinsäästäjä-yhteisö", "on", "ärsyyntynyt", "Ylen", "otsikoista", "Se", "lähestyi", "Yleä", "hiljattain", "avoimella", "kirjeellä", "Ylen", "uutis-", "ja", "ajankohtaistoiminnan", "verkkotuottajan", "Timo", "Kämäräisen", "mielestä", "klikkiotsikot", "eivät", "ole", "Ylellä", "kovin", "suuri", "ongelma", "Facebookin", "Klikinsäästäjä-yhteisössä", "on", "ruodittu", "paljon", "esimerkiksi", "iltapäivälehtien", "otsikoita,", "mutta", "viime", "aikoina", "myös", "Ylen", "otsikot", "ovat", "alkaneet", "ärsyttää", "yhteisön", "jäseniä.", "Hiljattain", "Klikinsäästäjä", "lähestyi", "Yleä", "avoimella", "kirjeellä.", "–", "Se", "lähti", "huomiosta,", "että", "Ylelläkin", "alkaa", "olla", "jonkin", "verran", "klikkiotsikoita", "ja", "kysyimme,", "miksi", "Yle", "lähtee", "tähän.", "Rahoituspohja", "on", "sellainen,", "ettei", "siltä", "puolelta", "ainakaan", "tarvetta", "löydy,", "toteaa", "Klikinsäästäjä-yhteisön", "perustaja", "ja", "ylläpitäjä", "Lauri", "Skön.", "Skönin", "mielestä", "Yle", "on", "pitkään", "ollut", "asiallisuuden", "ja", "puolueettomuuden", "linnake,", "josta", "ei", "turhaa", "sensaatiohakuisuutta", "löydy.", "–", "Meillä", "on", "huoli", "siitä,", "ettei", "lipsuta", "väärälle", "puolelle.", "Haluamme", "keskusteluttaa,", "että", "ovatko", "klikit", "se", "paras", "mittari?", "Vai", "olisiko", "parempi", "mittari", "esimerkiksi", "laatu,", "eli", "kuinka", "pitkään", "juttuja", "sivustoilla", "luetaan.", "Klikit,", "jaot", "ja", "viihtyvyys", "Ylellä", "klikkausten", "määrä", "on", "yksi", "seurata", "juttujen", "menekkiä", "ja", "laatua.", "Niiden", "ohella", "paljon", "painoarvoa", "annetaan", "myös", "some-jaoille.", "Skönin", "ehdotuksen", "tapaan", "Ylelläpidetään", "silmällä", "myös", "sitä,", "kuinka", "kauan", "lukija", "viihtyy", "jutussa.", "Meillä", "on", "huoli", "siitä,", "ettei", "lipsuta", "väärälle", "puolelle.", "Lauri", "Skön", "–", "Kansainvälinen", "trendikin", "on", "se,", "että", "klikkausten", "sijaan", "ainakin", "niiden", "rinnalla", "pyritään", "seuraamaan", "myös", "jutussa", "vietettyä", "aikaa.", "Tärkeää", "ei", "ole", "pelkkä", "klikkaus", "vaan", "myös", "se,", "että", "lukija", "viihtyy", "artikkelissa", "pidempään,", "sanoo", "Ylen", "uutis-", "ja", "ajankohtaistoiminnan", "verkkotuottaja", "Kämäräinen.", "Raflaava", "otsikko", "ei", "ole", "klikkiotsikko", "Mikä", "sitten", "klikkiotsikko?", "Klikinsäästäjän", "perustaja", "Lauri", "Skön", "nostaa", "esiin", "esimerkin,", "joka", "jäänyt", "mieleen.", "–", "Tamperelainen-lehdessä", "oli", "otsikko:", "Festarit", "eivät", "pärjää", "enää", "pelkillä", "makkaraperunoilla", "–", "eniten", "myydään", "tätä.", "Vastaus", "tähän", "oli", "makkaraperunat.", "Se", "on", "sellainen", "yksi", "ylitse", "muiden", "-klikkiotsikko.", "Skönin", "mukaan", "raflaava", "otsikko", "ei", "välttä" ] ], [ [ "mättä", "ole", "sama", "kuin", "klikkiotsikko.", "–", "Otsikko", "voi", "olla", "raflaava,", "kunhan", "juttukin", "on", "raflaava.", "Klikkiotsikointia", "on", "se,", "jos", "johdetaan", "harhaan", "ja", "käytetään", "epäselviä", "termejä,", "kun", "asia", "on", "sanottavissa", "selvemminkin.", "Harmaa", "alue", "Ylen", "uutis-", "ja", "ajankohtaistoiminnan", "verkkotuottaja", "Timo", "Kämäräinen", "on", "Lauri", "Skönin", "kanssa", "samaa", "mieltä.", "–", "Klikkiotsikko", "piilottaa", "sisällön", "ytimen.", "Otsikko", "on", "klikkiotsikko,", "jos", "se", "on", "harhaanjohtava", "tai", "valheellinen,", "Kämäräinen", "linjaa.", "Jokainen", "toimittaja", "haluaa,", "että", "yleisö", "löytää", "jutun.", "Otsikko", "on", "siinä", "avainasemassa.", "Timo", "Kämäräinen", "Hän", "muistuttaa", "myös", "otsikoiden", "\"harmaasta", "alueesta\".", "–", "Harmaalle", "alueelle", "kuuluu", "valtava", "määrä", "otsikoita,", "joihin", "enemmän", "tai", "vähemmän", "piilotettu", "se", "journalistinen", "idea.", "Rajatapauksia", "varmasti", "valtava", "määrä.", "Otsikko", "valmistuu", "porukalla", "Kämäräisen", "mukaan", "Yle", "on", "pyrkinyt", "koko", "ajan", "eroon", "klikkiotsikoista.", "–", "Keskeinen", "ohjenuora", "uutisjutuissamme", "on", "se,", "että", "tuodaan", "houkuttelevin", "journalistinen", "oivallus", "otsikkoon", "eikä", "suinkaan", "piiloteta", "sitä.", "Kämäräinen", "myös", "muistuttaa,", "että", "otsikointi", "on", "myyntitapahtuma.", "–", "Jokainen", "toimittaja", "haluaa,", "että", "yleisö", "löytää", "jutun.", "Otsikko", "siinä", "avainasemassa.", "Neuvomme", "toimittajia", "käyttämään", "aikaa", "otsikointiin,", "luonnostelemaan", "useita", "vaihtoehtoja", "ja", "katsomaan", "porukalla,", "mikä", "on", "paras.", "Ei", "suuri", "ongelma", "Kämäräisen", "mielestä", "klikkiotsikointi", "ei", "ole", "Ylellä", "kovin", "suuri", "ongelma.", "–", "Korostan,", "että", "juttuja", "on", "todella", "paljon.", "Silloin", "otsikoissakin", "vaihtelua.", "Kokonaisuutena", "pärjäämme", "erittäin", "hyvin.", "Ohjenuoramme", "tuoda", "journalistinen", "oivallus", "otsikkoon,", "ei", "piilottaa", "sitä.", "Timo", "Kämäräinen", "Otsikoita", "myös", "korjataan,", "jos", "ne", "ovat", "liian", "mysteerimäisiä.", "Toisaalta", "korjataan", "myös", "liian", "tylsiä", "otsikoita.", "–", "Voi", "olla", "arvokas", "aihe,", "joka", "ei", "löydä", "yleisöä.", "Silloin", "mietimme,", "miten", "löytyy", "houkuttelevampi,", "mutta", "totuudenmukainen", "otsikko.", "Facebookin", "Klikinsäästäjä-yhteisön", "tarkoitus", "on", "spoilata", "klikkiotsikoita", "kertomalla", "saatetekstissä,", "mitä", "otsikolla", "ajetaan", "takaa.", "Skön", "ja", "Timo", "Kämäräinen", "olivat", "Ajantasan", "haastattelussa", "torstaina", "22.10." ] ] ]
[ [ "de" ], [ "de" ] ]
[ "mono" ]
[ [ "Blockchain", "has", "been", "around", "for", "a", "while", "now,", "mostly", "as", "something", "that", "promises", "all", "kinds", "of", "technological", "advancements,", "somewhere", "in", "the", "future.", "Numerous", "start-ups", "have", "sprung", "up", "with", "theoretical", "benefits", "through", "blockchain,", "all", "with", "one", "hurdle", "still", "to", "overcome:", "adoption.", "To", "achieve", "main", "stream", "adoption,", "just", "like", "the", "Internet", "around", "2000,", "blockchain", "must", "prove", "itself", "in", "real-world", "practical", "use", "cases.", "This", "is", "where", "V-ID’s", "file", "fraud", "prevention", "service", "has", "taken", "the", "lead.", "V-ID’s", "platform", "is", "up", "and", "running,", "and", "already", "in", "use", "at", "organisations", "like", "Airbus", "&", "Krohne,", "leader", "in", "flow", "measurement", "instruments,", "Maritime", "Cyber", "Alliance", "and", "Dutch", "HBOD.", "files,", "like", "diploma’s,", "certificates,", "documents,", "audit", "but", "also", "security", "footage,", "database", "exports,", "anything", "as", "long", "as", "it", "is", "a", "digital", "file.", "Recipients", "can", "verify", "the", "file’s", "integrity", "in", "5", "seconds", "with", "just", "an", "internet", "browser.", "This", "combination", "of", "security", "and", "convenience", "was", "simply", "not", "possible", "before", "blockchain", "technology", "existed.", "V-ID", "explained", "in", "90", "seconds", "The", "backbone", "of", "V-ID’s", "validation", "service", "is", "a", "utility", "token", "named", "VIDT.", "With", "every", "validation,", "a", "transaction", "with", "VIDT", "is", "coupled", "with", "the", "file,", "which", "records", "the", "file’s", "fingerprint", "and", "all", "the", "crucial", "details", "around", "the", "origin", "of", "the", "file,", "on", "the", "blockchain.", "V-ID’s", "customer", "base", "buys", "VIDT", "in", "monthly", "bundles", "to", "facilitate", "the", "validation", "of", "their", "files.", "Read", "about", "the", "validation", "process", "here", "V-ID’s", "platform", "maturity", "allows", "a", "new", "organisation", "to", "have", "the", "validation", "service", "up", "and", "running", "within", "weeks.", "The", "team", "behind", "V-ID", "is", "made", "up", "of", "industry", "veterans,", "ex-CTO’s", "and", "CIO’s", "from", "American", "Express,", "KPMG,", "Seagull,", "and", "core", "developers", "all", "with", "15+", "years", "experience", "in", "secure", "software", "platforms.", "V-ID’s", "homebase", "is", "in", "The", "Netherlands", "and", "the", "UK.", "For", "more", "information,", "visit", "v-id.org." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "en", "en", "en", "en", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Blockchain", "has", "been", "around", "for", "a", "while", "now,", "mostly", "as", "something", "that", "promises", "all", "kinds", "of", "technological", "advancements,", "somewhere", "in", "the", "future.", "Numerous", "start-ups", "have", "sprung", "up", "with", "theoretical", "benefits", "through", "blockchain,", "all", "with", "one", "hurdle", "still", "to", "overcome:", "adoption.", "To", "achieve", "main", "stream", "adoption,", "just", "like", "the", "Internet", "around", "2000,", "blockchain", "must", "prove", "itself", "in", "real-world", "practical", "use", "cases.", "This", "is", "where", "V-ID’s", "file", "fraud", "prevention", "service", "has", "taken", "the", "lead.", "V-ID’s", "platform", "is", "up", "and", "running,", "and", "already", "in", "use", "at", "organisations", "like", "Airbus", "&", "Krohne,", "leader", "in", "flow", "measurement", "instruments,", "Maritime", "Cyber", "Alliance", "and", "Dutch", "HBOD.", "files,", "like", "diploma’s,", "certificates,", "documents,", "audit", "but", "also", "security", "footage,", "database", "exports,", "anything", "as", "long", "as", "it", "is", "a", "digital", "file.", "Recipients", "can", "verify", "the", "file’s", "integrity", "in", "5", "seconds", "with", "just", "an", "internet", "browser.", "This", "combination", "of", "security", "and", "convenience", "was", "simply", "not", "possible", "before", "blockchain", "technology", "existed.", "V-ID", "explained", "in", "90", "seconds", "The", "backbone", "of", "V-ID’s", "validation", "service", "is", "a", "utility", "token", "named", "VIDT.", "With", "every", "validation,", "a", "transaction", "with", "VIDT", "is", "coupled", "with", "the", "file,", "which", "records", "the", "file’s", "fingerprint", "and", "all", "the", "crucial", "details", "around", "the", "origin", "of", "the", "file,", "on", "the", "blockchain.", "V-ID’s", "customer", "base", "buys", "VIDT", "in", "monthly", "bundles", "to", "facilitate", "the", "validation", "of", "their", "files.", "Read", "about", "the", "validation", "process", "here", "V-ID’s", "platform", "maturity", "allows", "a", "new", "organisation", "to", "have", "the", "validation", "service", "up", "and", "running", "within", "weeks.", "The", "team", "behind", "V-ID", "is", "made", "up", "of", "industry", "veterans,", "ex-CTO’s", "and", "CIO’s", "from", "American", "Express,", "KPMG,", "Seagull,", "and", "core", "developers", "all", "with", "15+", "years", "experience", "in", "secure", "software", "platforms.", "V-ID’s", "homebase", "is", "in", "The", "Netherlands", "and", "the", "UK.", "For", "more", "information,", "visit", "v-id.org." ] ] ]
[ [ "en" ] ]
[ "mono", "mono" ]
[ [ "プロパイロットチェアの動画(日産のユーチューブ投稿動画から)", "車内放置事故防止活動の動画", "日産自動車がデジタルマーケティングの活動領域を広げている。2015年から会員制交流サイト(SNS)を活用して、自社のイメージ向上や新技術の紹介を目的とした動画配信やキャンペーンを開始した。自動車に関心の低い人々との接点をつくり、日産をより身近に感じてもらうことで潜在顧客の獲得につなげる。店内が満席となった飲食店の外に、ぎっしりと並べられた空席待ち用いす。最前列のいすから人が離れると、いすが最後列に移動し、2番目以降のいすが人を乗せたまま前に詰めていく。いすはすべて自動で動くため、行列待ちのストレス軽減につながる。「プロパイロットチェア」と題したこの動画は、日産が動画投稿サイト「ユーチューブ」や個人向けSNS「フェイスブック」を通じて配信している。同社の同一車線自動運転技術「プロパイロット」の利便性や快適さを分かりやすく伝えるため、同技術を生活に身近な場面に置き換える形で制作した。そのほか、同社の自動駐車技術をオフィス用いすで再現した動画なども配信。ブランド&メディア戦略部主担の石黒英介氏は「車に興味のない人に技術の良さや利点を伝え、日産を好きになっていただくことがゴール」と、取り組みの狙いを説明する。日本の自動車販売市場は、人口減少や若者の車離れを背景に成長は見込みにくく、今後の車メーカー同士の競争激化が予想される。また日産独自の調査によると、車を購入する人の中で日産車を検討する比率が低いことが判明。そのため、「我々が普段接" ], [ "していない人々に情報をどう届けて、振り向いてもらうか」(石黒主担)がマーケティング面での課題となっていた。そこで、人々のエンゲージメント率(つながり度)が高く、同社が届かない人々にも情報が拡散しやすいSNSの活用を決定。15年にフェイスブックなどを通じて、冬場の車発進時に起こり得る猫の巻き込み事故を防ぐための活動を提唱した。また、夏の子どもやペットの車内放置事故防止を推進する動画も制作。これらの活動を通じて、まずは同社が世の中の課題解決に取り組んでいる点を訴求することで、“日産ファン”を増やす狙いだ。活動の反響は徐々に高まっていった。猫の事故防止に向けた推進活動では専用ステッカーを作成。販売店からステッカー送付の要求が相次いだほか、顧客から「テレビで宣伝すべきだ」との声も聞かれるなど「ポジティブな成果を得られている」(同)という。(文=土井俊)", "日刊工業新聞2017年9月1日" ] ]
[ [ "fr", "fr", "fr" ], [ "fr", "fr" ] ]
[ [ [ "プロパイロットチェアの動画(日産のユーチューブ投稿動画から)", "車内放置事故防止活動の動画", "日産自動車がデジタルマーケティングの活動領域を広げている。2015年から会員制交流サイト(SNS)を活用して、自社のイメージ向上や新技術の紹介を目的とした動画配信やキャンペーンを開始した。自動車に関心の低い人々との接点をつくり、日産をより身近に感じてもらうことで潜在顧客の獲得につなげる。店内が満席となった飲食店の外に、ぎっしりと並べられた空席待ち用いす。最前列のいすから人が離れると、いすが最後列に移動し、2番目以降のいすが人を乗せたまま前に詰めていく。いすはすべて自動で動くため、行列待ちのストレス軽減につながる。「プロパイロットチェア」と題したこの動画は、日産が動画投稿サイト「ユーチューブ」や個人向けSNS「フェイスブック」を通じて配信している。同社の同一車線自動運転技術「プロパイロット」の利便性や快適さを分かりやすく伝えるため、同技術を生活に身近な場面に置き換える形で制作した。そのほか、同社の自動駐車技術をオフィス用いすで再現した動画なども配信。ブランド&メディア戦略部主担の石黒英介氏は「車に興味のない人に技術の良さや利点を伝え、日産を好きになっていただくことがゴール」と、取り組みの狙いを説明する。日本の自動車販売市場は、人口減少や若者の車離れを背景に成長は見込みにくく、今後の車メーカー同士の競争激化が予想される。また日産独自の調査によると、車を購入する人の中で日産車を検討する比率が低いことが判明。そのため、「我々が普段接" ] ], [ [ "していない人々に情報をどう届けて、振り向いてもらうか」(石黒主担)がマーケティング面での課題となっていた。そこで、人々のエンゲージメント率(つながり度)が高く、同社が届かない人々にも情報が拡散しやすいSNSの活用を決定。15年にフェイスブックなどを通じて、冬場の車発進時に起こり得る猫の巻き込み事故を防ぐための活動を提唱した。また、夏の子どもやペットの車内放置事故防止を推進する動画も制作。これらの活動を通じて、まずは同社が世の中の課題解決に取り組んでいる点を訴求することで、“日産ファン”を増やす狙いだ。活動の反響は徐々に高まっていった。猫の事故防止に向けた推進活動では専用ステッカーを作成。販売店からステッカー送付の要求が相次いだほか、顧客から「テレビで宣伝すべきだ」との声も聞かれるなど「ポジティブな成果を得られている」(同)という。(文=土井俊)", "日刊工業新聞2017年9月1日" ] ] ]
[ [ "fr" ], [ "fr" ] ]
[ "mono" ]
[ [ "Former", "President", "Barack", "Obama", "has", "been", "named", "this", "year’s", "winner", "of", "the", "John", "F.", "Kennedy", "Profile", "in", "Courage", "Award", "and", "scored", "a", "lucrative", "deal", "for", "his", "upcoming", "memoir.", "His", "former", "attorney", "general", "says", "Obama", "is", "“ready", "to", "roll”", "helping", "Democrats", "get", "elected.", "NBC’s", "Andrea", "Mitchell", "reports", "for", "TODAY." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Former", "President", "Barack", "Obama", "has", "been", "named", "this", "year’s", "winner", "of", "the", "John", "F.", "Kennedy", "Profile", "in", "Courage", "Award", "and", "scored", "a", "lucrative", "deal", "for", "his", "upcoming", "memoir.", "His", "former", "attorney", "general", "says", "Obama", "is", "“ready", "to", "roll”", "helping", "Democrats", "get", "elected.", "NBC’s", "Andrea", "Mitchell", "reports", "for", "TODAY." ] ] ]
[ [ "en" ] ]
[ "mono", "mono" ]
[ [ "March", "2,", "the", "opening", "day", "of", "the", "2013", "MLS", "season,", "is", "just", "around", "the", "corner.", "Which,", "of", "course,", "means", "it's", "time", "to", "start", "talking", "fantasy.", "MLS", "Fantasy", "Soccer:", "Manager", "launched", "on", "Thursday,", "and", "there", "are", "some", "cool", "new", "features", "and", "an", "incredible", "new", "design.", "Plus,", "the", "winner", "will", "win", "a", "trip", "to", "the", "2014", "MLS", "All-Star", "Game.", "So", "how", "are", "you", "going", "to", "win?", "Well,", "to", "start,", "you're", "going", "to", "need", "a", "few", "of", "the", "top", "players.", "Here's", "a", "quick", "look", "at", "the", "best", "players", "worth", "owning", "at", "each", "position", "in", "2013.", "The", "more", "you", "can", "get,", "the", "better", "off", "you’ll", "be", "come", "March", "2.", "And", "beyond.", "Goalkeepers", "Jimmy", "Nielsen", "–", "The", "“White", "Puma”", "and", "Allstate", "Goalkeeper", "of", "the", "Year", "in", "2013", "has", "his", "entire", "defense", "back,", "two", "of", "whom", "made", "the", "MLS", "Best", "–", "Matt", "Besler", "and", "Aurélien", "Collin", "…", "need", "we", "say", "more?", "(2012", "–", "77", "saves,", "15", "clean", "sheets)", "Andy", "Gruenebaum", "(right)", "–", "Went", "from", "starting", "two", "games", "in", "2011", "to", "starting", "33", "in", "2012.", "Hopefully", "by", "adding", "Brazilian", "center", "back", "Gláuber", "to", "the", "mix,", "it", "will", "shore", "up", "some", "of", "the", "questionable", "defending", "the", "Crew", "displayed", "last", "season.", "(2012", "–", "124", "saves,", "8", "clean", "sheets)", "Tally", "Hall", "–", "The", "Dynamo", "lost", "Geoff", "Cameron", "and", "Andre", "Hainault,", "but", "youngster", "Kofi", "Sarkodie", "and", "the", "acquisition", "of", "Eric", "Brunner", "from", "Portland", "should", "help", "Hall", "reach", "new", "heights", "this", "season.", "(2012", "–", "88", "saves,", "12", "clean", "sheets)", "Johnson", "–", "USMNT", "prospect,", "but", "he’s", "not", "the", "finished", "product", "just", "yet.", "If", "he", "can", "continue", "to", "make", "brilliant", "saves", "and", "eliminate", "the", "unforced", "errors,", "this", "could", "be", "a", "breakout", "year", "for", "him.", "(2012", "–", "108", "saves,", "5", "clean", "sheets)", "Ryan", "Meara", "–", "If", "he", "gets", "the", "call", "to", "start", "the", "season,", "he", "should", "be", "in", "for", "a", "good", "one.", "With", "an", "improved", "defensive", "corps", "in", "front", "of", "him,", "Meara", "–", "who", "suffered", "a", "long-term", "injury", "midway", "through", "2012", "–", "a", "lot", "of", "shutouts", "could", "be", "in", "the", "offing.", "(2012", "–", "59", "saves,", "3", "clean", "sheets)", "Sign", "Up", "to", "play", "MLS", "Fantasy", "Manager", "Defenders", "Omar", "Gonzalez", "–", "USMNT", "MLS", "of", "the", "Year", "is", "back,", "and", "he’s", "stronger", "than", "ever.", "How", "many", "set-piece", "goals", "do", "you", "see", "in", "his", "future", "for", "2013?", "(2012", "–", "254", "CBIs)", "Austin", "Berry", "–", "The", "2012", "Rookie", "of", "the", "Year", "amassed", "in", "2012", "a", "ton", "of", "CBIs", "(Clearances,", "Blocks,", "Interceptions).", "He'll", "be", "that", "much", "more", "confident", "this", "year,", "and", "he", "has", "a", "decent", "supporting", "cast,", "too.", "(2012", "–", "378", "CBIs)", "Collin", "–", "Tall,", "ferocious", "and", "plays", "with", "some", "of", "the", "best", "in", "the", "league.", "He’s", "a", "bit", "of", "a", "wild", "man,", "but", "as", "long", "as", "he", "can", "stay", "out", "of", "trouble,", "his", "CBIs", "should", "be", "among", "the", "leaders", "once", "again.", "And", "he", "can", "get", "on", "the", "scoresheet,", "too,", "now", "and", "then.", "(2012", "–", "366", "CBIs)", "Parke", "–", "Had", "a", "good", "showing", "last", "season", "and", "will", "replace", "the", "void", "left", "by", "the", "loaning", "of", "Carlos", "Valdés.", "He", "had", "a", "great", "season", "last", "year", "and", "he", "gathers", "a", "lot", "of", "points", "on", "CBIs.", "(2012", "–", "371", "CBIs)", "Jámison", "Olave", "–", "If", "he", "can", "stay", "healthy,", "the", "sky", "is", "the", "limit,", "and", "with", "the", "Red", "Bulls'", "overall", "playmaking", "abilities,", "he", "could", "get", "on", "the", "scoresheet", "more", "on", "set", "(2012", "–", "207", "CBIs)", "Sign", "Up", "to", "play", "MLS", "Fantasy", "Manager", "Midfielders", "Brad", "Davis", "–", "He", "has", "consistently", "put", "up", "huge", "numbers", "–", "52", "assists", "in", "the", "last", "four", "seasons", "–", "and", "with", "even", "more", "attacking", "options", "in", "the", "Dynamo", "fold", "this", "year", "(Omar", "Cummings),", "he", "should", "be", "able", "to", "put", "up", "even", "(2012", "–", "8", "goals,", "12", "assists)", "Landon", "–", "Do", "you", "really", "expect", "him", "to", "pass", "up", "a", "chance", "at", "a", "three-peat?", "I", "don’t", "either.", "Enough", "said.", "But", "I", "wouldn't", "put", "him", "on", "my", "team", "to", "start", "the", "season.", "(2012", "–", "9", "goals,", "14", "assists)", "Graham", "Zusi", "–", "Made", "a", "big", "name", "for", "himself", "last", "year,", "leading", "the", "league", "in", "assists.", "Sporting", "KC's", "pressure-filled", "attack", "and", "his", "strong", "supporting", "cast,", "too.", "(2012", "–", "5", "goals,", "15", "assists)", "Javier", "–", "If", "he", "can", "get", "back", "to", "his", "2010", "form", "(7", "9", "assists),", "RSL", "won’t", "have", "to", "worry", "much", "about", "the", "departures", "of", "Espindola,", "Olave", "and", "(2012", "–", "3", "goals,", "9", "assists)", "De", "Rosario", "–", "Played", "recently", "for", "Canada", "in", "a", "friendly", "against", "the", "US", "and", "looked", "good.", "He’s", "34", "years", "old,", "but", "should", "still", "be", "a", "key" ], [ "contributor", "to", "D.C.", "United’s", "success", "again", "in", "2013.", "(2012", "–", "7", "goals,", "12", "assists)", "Sign", "Up", "to", "play", "MLS", "Fantasy", "Soccer:", "Forwards", "Robbie", "Keane", "–", "Beckham", "who?", "With", "Donovan", "expected", "to", "return", "at", "some", "point", "and", "another", "big-name", "star", "prossibly", "joining", "the", "club", "in", "the", "near", "future,", "Keane", "should", "be", "in", "for", "another", "monster", "year.", "(2012", "–", "16", "9", "Chris", "Wondolowski", "(right)", "–", "Only", "an", "injury", "will", "prevent", "the", "2012", "Golden", "Boot", "winner", "from", "showing", "up", "this", "season.", "For", "the", "league's", "best", "poacher,", "a", "goal", "is", "a", "goal.", "If", "he", "gets", "off", "to", "a", "fast", "start,", "who", "knows", "how", "many", "he", "can", "put", "away", "in", "2013?", "(2012", "–", "27", "7", "assists)", "Álvaro", "–", "The", "departure", "of", "forwards", "Fabián", "Espíndola,", "Jr.", "Justin", "Braun", "should", "mean", "even", "more", "opportunities", "for", "Sabo,", "and", "the", "addition", "of", "forward", "Robbie", "Findley", "will", "open", "up", "more", "space", "for", "the", "Costa", "Rican", "to", "operate", "in.", "(2012", "–", "17", "3", "assists)", "Thierry", "Henry", "–", "The", "Red", "Bulls", "jettisoned", "a", "lot", "in", "the", "off-season,", "but", "Henry's", "still", "the", "offensive", "mainstay.", "The", "arrival", "of", "Juninho", "and", "the", "healthiness", "of", "Lloyd", "Sam", "will", "make", "the", "RBNY", "offense", "even", "more", "potent,", "giving", "Henry", "more", "chances", "for", "goals", "and", "assists.", "(2012", "–", "15", "goals,", "12", "assists)", "Eddie", "Johnson", "–", "Fredy", "Montero", "is", "gone,", "so", "the", "Sounders", "will", "rely", "heavily", "on", "EJ.", "His", "scoring", "touch", "in", "2012", "was", "Midas-like,", "and", "with", "a", "2014", "World", "Cup", "spot", "in", "the", "cards,", "he'll", "be", "motivated", "to", "keep", "pouring", "them", "in", "this", "year.", "(2012", "–", "14", "3", "assists)", "Sign", "Up", "to", "play", "MLS", "Fantasy", "Soccer:", "Manager" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "fr", "fr", "fr", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "de", "de", "nl", "nl", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "pt", "pt", "pt", "en", "en", "en", "en", "en", "es", "es", "es", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "March", "2,", "the", "opening", "day", "of", "the", "2013", "MLS", "season,", "is", "just", "around", "the", "corner.", "Which,", "of", "course,", "means", "it's", "time", "to", "start", "talking", "fantasy.", "MLS", "Fantasy", "Soccer:", "Manager", "launched", "on", "Thursday,", "and", "there", "are", "some", "cool", "new", "features", "and", "an", "incredible", "new", "design.", "Plus,", "the", "winner", "will", "win", "a", "trip", "to", "the", "2014", "MLS", "All-Star", "Game.", "So", "how", "are", "you", "going", "to", "win?", "Well,", "to", "start,", "you're", "going", "to", "need", "a", "few", "of", "the", "top", "players.", "Here's", "a", "quick", "look", "at", "the", "best", "players", "worth", "owning", "at", "each", "position", "in", "2013.", "The", "more", "you", "can", "get,", "the", "better", "off", "you’ll", "be", "come", "March", "2.", "And", "beyond.", "Goalkeepers", "Jimmy", "Nielsen", "–", "The", "“White", "Puma”", "and", "Allstate", "Goalkeeper", "of", "the", "Year", "in", "2013", "has", "his", "entire", "defense", "back,", "two", "of", "whom", "made", "the", "MLS", "Best", "–", "Matt", "Besler", "and", "Aurélien", "Collin", "…", "need", "we", "say", "more?", "(2012", "–", "77", "saves,", "15", "clean", "sheets)", "Andy", "Gruenebaum", "(right)", "–", "Went", "from", "starting", "two", "games", "in", "2011", "to", "starting", "33", "in", "2012.", "Hopefully", "by", "adding", "Brazilian", "center", "back", "Gláuber", "to", "the", "mix,", "it", "will", "shore", "up", "some", "of", "the", "questionable", "defending", "the", "Crew", "displayed", "last", "season.", "(2012", "–", "124", "saves,", "8", "clean", "sheets)", "Tally", "Hall", "–", "The", "Dynamo", "lost", "Geoff", "Cameron", "and", "Andre", "Hainault,", "but", "youngster", "Kofi", "Sarkodie", "and", "the", "acquisition", "of", "Eric", "Brunner", "from", "Portland", "should", "help", "Hall", "reach", "new", "heights", "this", "season.", "(2012", "–", "88", "saves,", "12", "clean", "sheets)", "Johnson", "–", "USMNT", "prospect,", "but", "he’s", "not", "the", "finished", "product", "just", "yet.", "If", "he", "can", "continue", "to", "make", "brilliant", "saves", "and", "eliminate", "the", "unforced", "errors,", "this", "could", "be", "a", "breakout", "year", "for", "him.", "(2012", "–", "108", "saves,", "5", "clean", "sheets)", "Ryan", "Meara", "–", "If", "he", "gets", "the", "call", "to", "start", "the", "season,", "he", "should", "be", "in", "for", "a", "good", "one.", "With", "an", "improved", "defensive", "corps", "in", "front", "of", "him,", "Meara", "–", "who", "suffered", "a", "long-term", "injury", "midway", "through", "2012", "–", "a", "lot", "of", "shutouts", "could", "be", "in", "the", "offing.", "(2012", "–", "59", "saves,", "3", "clean", "sheets)", "Sign", "Up", "to", "play", "MLS", "Fantasy", "Manager", "Defenders", "Omar", "Gonzalez", "–", "USMNT", "MLS", "of", "the", "Year", "is", "back,", "and", "he’s", "stronger", "than", "ever.", "How", "many", "set-piece", "goals", "do", "you", "see", "in", "his", "future", "for", "2013?", "(2012", "–", "254", "CBIs)", "Austin", "Berry", "–", "The", "2012", "Rookie", "of", "the", "Year", "amassed", "in", "2012", "a", "ton", "of", "CBIs", "(Clearances,", "Blocks,", "Interceptions).", "He'll", "be", "that", "much", "more", "confident", "this", "year,", "and", "he", "has", "a", "decent", "supporting", "cast,", "too.", "(2012", "–", "378", "CBIs)", "Collin", "–", "Tall,", "ferocious", "and", "plays", "with", "some", "of", "the", "best", "in", "the", "league.", "He’s", "a", "bit", "of", "a", "wild", "man,", "but", "as", "long", "as", "he", "can", "stay", "out", "of", "trouble,", "his", "CBIs", "should", "be", "among", "the", "leaders", "once", "again.", "And", "he", "can", "get", "on", "the", "scoresheet,", "too,", "now", "and", "then.", "(2012", "–", "366", "CBIs)", "Parke", "–", "Had", "a", "good", "showing", "last", "season", "and", "will", "replace", "the", "void", "left", "by", "the", "loaning", "of", "Carlos", "Valdés.", "He", "had", "a", "great", "season", "last", "year", "and", "he", "gathers", "a", "lot", "of", "points", "on", "CBIs.", "(2012", "–", "371", "CBIs)", "Jámison", "Olave", "–", "If", "he", "can", "stay", "healthy,", "the", "sky", "is", "the", "limit,", "and", "with", "the", "Red", "Bulls'", "overall", "playmaking", "abilities,", "he", "could", "get", "on", "the", "scoresheet", "more", "on", "set", "(2012", "–", "207", "CBIs)", "Sign", "Up", "to", "play", "MLS", "Fantasy", "Manager", "Midfielders", "Brad", "Davis", "–", "He", "has", "consistently", "put", "up", "huge", "numbers", "–", "52", "assists", "in", "the", "last", "four", "seasons", "–", "and", "with", "even", "more", "attacking", "options", "in", "the", "Dynamo", "fold", "this", "year", "(Omar", "Cummings),", "he", "should", "be", "able", "to", "put", "up", "even", "(2012", "–", "8", "goals,", "12", "assists)", "Landon", "–", "Do", "you", "really", "expect", "him", "to", "pass", "up", "a", "chance", "at", "a", "three-peat?", "I", "don’t", "either.", "Enough", "said.", "But", "I", "wouldn't", "put", "him", "on", "my", "team", "to", "start", "the", "season.", "(2012", "–", "9", "goals,", "14", "assists)", "Graham", "Zusi", "–", "Made", "a", "big", "name", "for", "himself", "last", "year,", "leading", "the", "league", "in", "assists.", "Sporting", "KC's", "pressure-filled", "attack", "and", "his", "strong", "supporting", "cast,", "too.", "(2012", "–", "5", "goals,", "15", "assists)", "Javier", "–", "If", "he", "can", "get", "back", "to", "his", "2010", "form", "(7", "9", "assists),", "RSL", "won’t", "have", "to", "worry", "much", "about", "the", "departures", "of", "Espindola,", "Olave", "and", "(2012", "–", "3", "goals,", "9", "assists)", "De", "Rosario", "–", "Played", "recently", "for", "Canada", "in", "a", "friendly", "against", "the", "US", "and", "looked", "good.", "He’s", "34", "years", "old,", "but", "should", "still", "be", "a", "key" ] ], [ [ "contributor", "to", "D.C.", "United’s", "success", "again", "in", "2013.", "(2012", "–", "7", "goals,", "12", "assists)", "Sign", "Up", "to", "play", "MLS", "Fantasy", "Soccer:", "Forwards", "Robbie", "Keane", "–", "Beckham", "who?", "With", "Donovan", "expected", "to", "return", "at", "some", "point", "and", "another", "big-name", "star", "prossibly", "joining", "the", "club", "in", "the", "near", "future,", "Keane", "should", "be", "in", "for", "another", "monster", "year.", "(2012", "–", "16", "9", "Chris", "Wondolowski", "(right)", "–", "Only", "an", "injury", "will", "prevent", "the", "2012", "Golden", "Boot", "winner", "from", "showing", "up", "this", "season.", "For", "the", "league's", "best", "poacher,", "a", "goal", "is", "a", "goal.", "If", "he", "gets", "off", "to", "a", "fast", "start,", "who", "knows", "how", "many", "he", "can", "put", "away", "in", "2013?", "(2012", "–", "27", "7", "assists)", "Álvaro", "–", "The", "departure", "of", "forwards", "Fabián", "Espíndola,", "Jr.", "Justin", "Braun", "should", "mean", "even", "more", "opportunities", "for", "Sabo,", "and", "the", "addition", "of", "forward", "Robbie", "Findley", "will", "open", "up", "more", "space", "for", "the", "Costa", "Rican", "to", "operate", "in.", "(2012", "–", "17", "3", "assists)", "Thierry", "Henry", "–", "The", "Red", "Bulls", "jettisoned", "a", "lot", "in", "the", "off-season,", "but", "Henry's", "still", "the", "offensive", "mainstay.", "The", "arrival", "of", "Juninho", "and", "the", "healthiness", "of", "Lloyd", "Sam", "will", "make", "the", "RBNY", "offense", "even", "more", "potent,", "giving", "Henry", "more", "chances", "for", "goals", "and", "assists.", "(2012", "–", "15", "goals,", "12", "assists)", "Eddie", "Johnson", "–", "Fredy", "Montero", "is", "gone,", "so", "the", "Sounders", "will", "rely", "heavily", "on", "EJ.", "His", "scoring", "touch", "in", "2012", "was", "Midas-like,", "and", "with", "a", "2014", "World", "Cup", "spot", "in", "the", "cards,", "he'll", "be", "motivated", "to", "keep", "pouring", "them", "in", "this", "year.", "(2012", "–", "14", "3", "assists)", "Sign", "Up", "to", "play", "MLS", "Fantasy", "Soccer:", "Manager" ] ] ]
[ [ "en" ], [ "en" ] ]
[ "mono" ]
[ [ "Unfinished:", "Halo", "5:", "Guardians", "06/15/2015", "Wait.", "Is", "Halo", "5's", "Warzone", "mode", "a", "MOBA?", "That", "can't", "be", "right.", "Sometimes", "we", "look", "at", "a", "game", "before", "it's", "done.", "When", "that's", "the", "case?", "Well...", "it", "must", "be", "Unfinished.", "Jun.", "16", "2015", "Cast:", "Brad,", "Drew,", "Dan", "Posted", "by:", "Drew" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Unfinished:", "Halo", "5:", "Guardians", "06/15/2015", "Wait.", "Is", "Halo", "5's", "Warzone", "mode", "a", "MOBA?", "That", "can't", "be", "right.", "Sometimes", "we", "look", "at", "a", "game", "before", "it's", "done.", "When", "that's", "the", "case?", "Well...", "it", "must", "be", "Unfinished.", "Jun.", "16", "2015", "Cast:", "Brad,", "Drew,", "Dan", "Posted", "by:", "Drew" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "The", "chief", "executive", "officers", "of", "two", "major", "video", "game", "companies", "have", "found", "their", "way", "onto", "As", "You", "Sow’s", "2019", "report", "on", "\"The", "100", "Most", "Overpaid", "CEOs\",", "a", "report", "that", "uses", "pay", "data", "to", "call", "out", "pay", "disparities", "in", "publicly", "traded", "American", "companies.", "Both", "Electronic", "Arts’", "Andrew", "Wilson", "and", "Activision", "Blizzard’s", "Bobby", "Kotick", "have", "earned", "spots", "on", "this", "year’s", "list", "along", "with", "the", "likes", "of", "Walt", "Disney’s", "Iger,", "Netflix’s", "Reed", "Hastings,", "and", "96", "other", "high-earning", "execs.", "This", "all", "comes", "just", "a", "week", "after", "Activision", "Blizzard", "announced", "that", "it", "would", "lay", "off", "an", "estimated", "800", "employees", "following", "the", "close", "of", "a", "record", "year.", "As", "You", "Sow", "takes", "more", "than", "a", "CEO’s", "yearly", "earnings", "into", "account", "when", "ranking", "its", "list,", "something", "detailed", "in", "full", "in", "the", "full", "report.", "In", "short,", "the", "organization", "looks", "at", "factors", "like", "total", "shareholder", "return", "and", "votes", "against", "CEO", "pay", "packages", "to", "calculate", "the", "chief", "execs", "earning", "in", "excess.", "The", "methods", "for", "calculating", "that", "exact", "excess", "can", "be", "found", "in", "Appendix", "C", "in", "the", "full", "report", "as", "well.", "Following", "that", "methodology,", "the", "group", "clocked", "Activision", "Blizzard", "CEO", "Bobby", "Kotick", "as", "number", "45", "on", "that", "ranked", "list", "of", "the", "most", "overpaid", "CEOs.", "By", "As", "You", "Sow’s", "data,", "Kotick", "is", "paid", "$28,698,375", "(an", "excess", "of", "$12,835,277", "by", "the", "organization's", "estimates).", "The", "ratio", "of", "Kotick’s", "pay", "compared", "to", "median", "worker", "pay", "at", "Activision", "Blizzard", "is", "301:1.", "The", "median", "pay", "ratio", "for", "S&P", "500", "companies", "is", "142.1,", "while", "the", "median", "pay", "ratio", "for", "the", "100", "members", "of", "As", "You", "Sow’s", "list", "is", "300:1.", "Electronic", "Arts’", "Andrew", "Wilson,", "meanwhile,", "is", "ranked", "a", "bit", "lower", "on", "the", "list", "as", "number", "98.", "His", "yearly", "take", "is", "$35,728,764", "(an", "estimated", "excess", "of", "$19,673,861", "as", "determined", "by", "the", "report),", "a", "paycheck", "that", "was", "supported", "by", "97", "percent", "of", "shareholders’", "votes.", "Though", "median", "pay", "ratio", "wasn’t", "used", "as", "a", "metric", "for", "ranking", "those", "high-earning", "CEOs,", "the", "difference", "between", "Wilson’s", "own", "pay", "and", "that", "of", "the", "median", "Electronic", "Arts", "employer", "is", "greater", "than", "Kotick’s.", "As", "You", "Sow", "records", "that", "ratio", "as", "371:1.", "The", "gap", "between", "median", "worker", "pay", "and", "CEO", "pay", "has", "ballooned", "in", "just", "the", "past", "several", "decades,", "as", "explained", "in", "the", "following", "quote", "captured", "by", "Axios.", "\"If", "you", "look", "at", "the", "pay", "of", "top", "CEOs", "relative", "to", "workers,", "that", "ratio", "in", "the", "1950s", "was", "20", "to", "1,", "was", "about", "30", "to", "1", "by", "the", "late", "'70s,", "and", "by", "the", "mid-1990s", "it", "was", "120", "to", "1,\"", "said", "Robert", "Labor", "Secretary", "for", "President", "Bill", "Clinton,", "during", "a", "recent", "call", "with", "Axios", "and", "other", "reporters.", "”When", "I", "was", "working", "in", "the", "White", "House", "that", "was", "a", "cause", "of", "real", "concern.", "That", "ratio", "seemed", "appalling", "to", "most", "people.", "Now", "it’s", "300", "to", "1.\"" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "The", "chief", "executive", "officers", "of", "two", "major", "video", "game", "companies", "have", "found", "their", "way", "onto", "As", "You", "Sow’s", "2019", "report", "on", "\"The", "100", "Most", "Overpaid", "CEOs\",", "a", "report", "that", "uses", "pay", "data", "to", "call", "out", "pay", "disparities", "in", "publicly", "traded", "American", "companies.", "Both", "Electronic", "Arts’", "Andrew", "Wilson", "and", "Activision", "Blizzard’s", "Bobby", "Kotick", "have", "earned", "spots", "on", "this", "year’s", "list", "along", "with", "the", "likes", "of", "Walt", "Disney’s", "Iger,", "Netflix’s", "Reed", "Hastings,", "and", "96", "other", "high-earning", "execs.", "This", "all", "comes", "just", "a", "week", "after", "Activision", "Blizzard", "announced", "that", "it", "would", "lay", "off", "an", "estimated", "800", "employees", "following", "the", "close", "of", "a", "record", "year.", "As", "You", "Sow", "takes", "more", "than", "a", "CEO’s", "yearly", "earnings", "into", "account", "when", "ranking", "its", "list,", "something", "detailed", "in", "full", "in", "the", "full", "report.", "In", "short,", "the", "organization", "looks", "at", "factors", "like", "total", "shareholder", "return", "and", "votes", "against", "CEO", "pay", "packages", "to", "calculate", "the", "chief", "execs", "earning", "in", "excess.", "The", "methods", "for", "calculating", "that", "exact", "excess", "can", "be", "found", "in", "Appendix", "C", "in", "the", "full", "report", "as", "well.", "Following", "that", "methodology,", "the", "group", "clocked", "Activision", "Blizzard", "CEO", "Bobby", "Kotick", "as", "number", "45", "on", "that", "ranked", "list", "of", "the", "most", "overpaid", "CEOs.", "By", "As", "You", "Sow’s", "data,", "Kotick", "is", "paid", "$28,698,375", "(an", "excess", "of", "$12,835,277", "by", "the", "organization's", "estimates).", "The", "ratio", "of", "Kotick’s", "pay", "compared", "to", "median", "worker", "pay", "at", "Activision", "Blizzard", "is", "301:1.", "The", "median", "pay", "ratio", "for", "S&P", "500", "companies", "is", "142.1,", "while", "the", "median", "pay", "ratio", "for", "the", "100", "members", "of", "As", "You", "Sow’s", "list", "is", "300:1.", "Electronic", "Arts’", "Andrew", "Wilson,", "meanwhile,", "is", "ranked", "a", "bit", "lower", "on", "the", "list", "as", "number", "98.", "His", "yearly", "take", "is", "$35,728,764", "(an", "estimated", "excess", "of", "$19,673,861", "as", "determined", "by", "the", "report),", "a", "paycheck", "that", "was", "supported", "by", "97", "percent", "of", "shareholders’", "votes.", "Though", "median", "pay", "ratio", "wasn’t", "used", "as", "a", "metric", "for", "ranking", "those", "high-earning", "CEOs,", "the", "difference", "between", "Wilson’s", "own", "pay", "and", "that", "of", "the", "median", "Electronic", "Arts", "employer", "is", "greater", "than", "Kotick’s.", "As", "You", "Sow", "records", "that", "ratio", "as", "371:1.", "The", "gap", "between", "median", "worker", "pay", "and", "CEO", "pay", "has", "ballooned", "in", "just", "the", "past", "several", "decades,", "as", "explained", "in", "the", "following", "quote", "captured", "by", "Axios.", "\"If", "you", "look", "at", "the", "pay", "of", "top", "CEOs", "relative", "to", "workers,", "that", "ratio", "in", "the", "1950s", "was", "20", "to", "1,", "was", "about", "30", "to", "1", "by", "the", "late", "'70s,", "and", "by", "the", "mid-1990s", "it", "was", "120", "to", "1,\"", "said", "Robert", "Labor", "Secretary", "for", "President", "Bill", "Clinton,", "during", "a", "recent", "call", "with", "Axios", "and", "other", "reporters.", "”When", "I", "was", "working", "in", "the", "White", "House", "that", "was", "a", "cause", "of", "real", "concern.", "That", "ratio", "seemed", "appalling", "to", "most", "people.", "Now", "it’s", "300", "to", "1.\"" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "An", "Apple", "logo", "hangs", "above", "the", "entrance", "to", "the", "Apple", "store", "on", "5th", "Avenue", "in", "the", "Manhattan", "borough", "of", "New", "York", "City,", "July", "21,", "2015.", "An", "Apple", "logo", "hangs", "above", "the", "entrance", "to", "the", "Apple", "store", "on", "5th", "Avenue", "in", "the", "Manhattan", "borough", "of", "New", "York", "City,", "July", "21,", "2015.", "Reuters/Mike", "Segar", "Apple", "has", "released", "an", "official", "statement", "regarding", "the", "iPhone", "6S", "battery", "issues", "that", "have", "affected", "a", "number", "of", "users.", "The", "tech", "giant", "says", "that", "the", "unexpected", "iPhone", "shutdowns", "“can", "occur", "under", "normal", "conditions”", "and", "that", "the", "main", "culprit", "of", "the", "batteries’", "problems", "is", "“ambient", "air.”", "After", "launching", "an", "iPhone", "6s", "battery", "replacement", "program", "about", "two", "weeks", "ago,", "Apple", "says", "it", "is", "done", "investigating", "the", "issue.", "The", "Cupertino-based", "company", "points", "to", "“controlled", "ambient", "air”", "as", "the", "reason", "why", "select", "models", "of", "the", "iPhone", "6s", "have", "been", "shutting", "down", "unexpectedly.", "READ:", "Apple", "iPhone", "'Game", "of", "the", "Year'", "now", "available", "on", "Apple", "TV", "“As", "a", "result", "of", "our", "investigation", "on", "this,", "we", "found", "that", "a", "small", "number", "of", "iPhone", "6s", "devices", "made", "in", "September", "and", "October", "2015", "contained", "a", "battery", "component", "that", "was", "exposed", "to", "controlled", "ambient", "air", "longer", "than", "it", "should", "have", "been", "before", "being", "assembled", "into", "battery", "packs,”", "Apple", "explained", "in", "its", "post.", "The", "iPhone", "maker", "apologised", "for", "any", "inconvenience", "the", "battery", "mishap", "may", "have", "caused", "but", "reiterated", "that", "it’s", "not", "a", "safety", "issue.", "Apple", "also", "acknowledged", "the", "handful", "of", "iPhone", "6s", "users", "who", "have", "experienced", "untimely", "shutdowns", "despite", "owning", "handsets", "that", "fall", "outside", "of", "the", "supposedly", "affected", "models.", "The", "company", "seemed", "to", "downplay", "the", "shutdowns", "as", "common", "manifestations.", "READ:", "Apple", "iPhone", "8", "update:", "New", "4.7-inch", "iPhone", "8", "could", "be", "the", "iPhone", "SE's", "successor", "“A", "small", "number", "of", "customers", "outside", "of", "the", "affected", "range", "have", "also", "reported", "an", "unexpected", "shutdown.", "Some", "of", "these", "shutdowns", "can", "occur", "under", "normal", "conditions", "in", "order", "for", "the", "iPhone", "to", "protect", "its", "electronics,”", "Apple", "clarified.", "To", "help", "figure", "things", "out,", "Apple", "is", "going", "to", "include", "“additional", "diagnostic", "capability”", "in", "its", "new", "iOS", "software", "update", "that", "will", "be", "made", "available", "next", "week.", "The", "diagnostic", "tool", "will", "allow", "Apple", "to", "gather", "enough", "information", "for", "it", "to", "improve", "its", "capacity", "to", "manage", "battery", "performance", "and", "inconvenient", "shutdowns.", "Apple", "added", "that", "any", "progress", "and", "fixes", "developed", "out", "of", "the", "data", "that", "will", "be", "collected", "shall", "be", "delivered", "in", "future", "software", "updates." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "An", "Apple", "logo", "hangs", "above", "the", "entrance", "to", "the", "Apple", "store", "on", "5th", "Avenue", "in", "the", "Manhattan", "borough", "of", "New", "York", "City,", "July", "21,", "2015.", "An", "Apple", "logo", "hangs", "above", "the", "entrance", "to", "the", "Apple", "store", "on", "5th", "Avenue", "in", "the", "Manhattan", "borough", "of", "New", "York", "City,", "July", "21,", "2015.", "Reuters/Mike", "Segar", "Apple", "has", "released", "an", "official", "statement", "regarding", "the", "iPhone", "6S", "battery", "issues", "that", "have", "affected", "a", "number", "of", "users.", "The", "tech", "giant", "says", "that", "the", "unexpected", "iPhone", "shutdowns", "“can", "occur", "under", "normal", "conditions”", "and", "that", "the", "main", "culprit", "of", "the", "batteries’", "problems", "is", "“ambient", "air.”", "After", "launching", "an", "iPhone", "6s", "battery", "replacement", "program", "about", "two", "weeks", "ago,", "Apple", "says", "it", "is", "done", "investigating", "the", "issue.", "The", "Cupertino-based", "company", "points", "to", "“controlled", "ambient", "air”", "as", "the", "reason", "why", "select", "models", "of", "the", "iPhone", "6s", "have", "been", "shutting", "down", "unexpectedly.", "READ:", "Apple", "iPhone", "'Game", "of", "the", "Year'", "now", "available", "on", "Apple", "TV", "“As", "a", "result", "of", "our", "investigation", "on", "this,", "we", "found", "that", "a", "small", "number", "of", "iPhone", "6s", "devices", "made", "in", "September", "and", "October", "2015", "contained", "a", "battery", "component", "that", "was", "exposed", "to", "controlled", "ambient", "air", "longer", "than", "it", "should", "have", "been", "before", "being", "assembled", "into", "battery", "packs,”", "Apple", "explained", "in", "its", "post.", "The", "iPhone", "maker", "apologised", "for", "any", "inconvenience", "the", "battery", "mishap", "may", "have", "caused", "but", "reiterated", "that", "it’s", "not", "a", "safety", "issue.", "Apple", "also", "acknowledged", "the", "handful", "of", "iPhone", "6s", "users", "who", "have", "experienced", "untimely", "shutdowns", "despite", "owning", "handsets", "that", "fall", "outside", "of", "the", "supposedly", "affected", "models.", "The", "company", "seemed", "to", "downplay", "the", "shutdowns", "as", "common", "manifestations.", "READ:", "Apple", "iPhone", "8", "update:", "New", "4.7-inch", "iPhone", "8", "could", "be", "the", "iPhone", "SE's", "successor", "“A", "small", "number", "of", "customers", "outside", "of", "the", "affected", "range", "have", "also", "reported", "an", "unexpected", "shutdown.", "Some", "of", "these", "shutdowns", "can", "occur", "under", "normal", "conditions", "in", "order", "for", "the", "iPhone", "to", "protect", "its", "electronics,”", "Apple", "clarified.", "To", "help", "figure", "things", "out,", "Apple", "is", "going", "to", "include", "“additional", "diagnostic", "capability”", "in", "its", "new", "iOS", "software", "update", "that", "will", "be", "made", "available", "next", "week.", "The", "diagnostic", "tool", "will", "allow", "Apple", "to", "gather", "enough", "information", "for", "it", "to", "improve", "its", "capacity", "to", "manage", "battery", "performance", "and", "inconvenient", "shutdowns.", "Apple", "added", "that", "any", "progress", "and", "fixes", "developed", "out", "of", "the", "data", "that", "will", "be", "collected", "shall", "be", "delivered", "in", "future", "software", "updates." ] ] ]
[ [ "en" ] ]
[ "mono", "mono" ]
[ [ "Last", "week", "I", "went", "with", "my", "wife", "to", "the", "U.S.", "Consulate", "in", "Jerusalem.", "The", "nursery", "school", "teacher", "somehow", "managed", "to", "take", "a", "picture", "of", "the", "little", "one", "that", "was", "acceptable", "for", "the", "online", "visa-application", "forms,", "so", "we", "were", "finally", "able", "to", "register", "and", "set", "a", "date", "for", "an", "interview", "at", "the", "consulate.", "There", "were", "a", "few", "particularly", "scary", "items", "on", "those", "forms.", "I", "knew", "I", "could", "trust", "myself,", "but", "I", "had", "to", "ask", "my", "wife", "some", "things", "before", "marking", "“yes”", "or", "“no”", "in", "the", "security-related", "questionnaire.", "“Tell", "me,", "did", "you", "ever", "take", "part", "in", "genocide?”", "I", "found", "myself", "asking", "her", "in", "the", "living", "room,", "with", "the", "children", "listening.", "“Were", "you", "ever", "a", "member", "of", "a", "terrorist", "organization?”", "“No,”", "she", "said.", "“Are", "you", "nuts?!", "What’s", "with", "you?”", "“I", "have", "to", "hear", "it", "from", "you,”", "I", "told", "her,", "and", "went", "on:", "“Have", "you", "ever", "been", "in", "contact", "with", "anyone", "who", "was", "ever", "a", "member", "of", "a", "terrorist", "organization?”", "Here", "I", "looked", "her", "straight", "in", "the", "eyes", "to", "make", "sure", "she", "was", "telling", "the", "truth.", "“No,”", "she", "replied", "firmly,", "and", "I", "bought", "her", "answer.", "“Is", "that", "what", "they", "are", "asking?”", "she", "wanted", "to", "know.", "“Yes,", "you", "have", "to", "answer", "all", "these", "questions", "in", "order", "to", "enter", "America,”", "I", "replied,", "and", "continued:", "“Do", "you", "intend", "to", "marry", "an", "American", "citizen", "and", "remain", "in", "the", "United", "States?”", "“What?!”", "my", "wife", "snapped", "back.", "“I", "have", "to", "see", "that", "question.”", "“Forget", "it,”", "I", "told", "her", "and", "hid", "the", "forms.", "“I’ll", "write", "‘no.’”", "Armed", "with", "the", "right", "forms", "for", "applying", "for", "what", "is", "called", "an", "exchange", "visitor’s", "visa,", "we", "arrived", "at", "the", "consulate’s", "entrance", "right", "on", "time.", "There", "was", "a", "long", "line", "leading", "to", "the", "outer", "booth,", "where", "a", "young", "woman", "seated", "behind", "glass,", "which", "I", "could", "have", "sworn", "was", "bulletproof,", "received", "the", "arrivals.", "We", "took", "our", "places", "in", "line.", "It", "took", "me", "a", "few", "minutes", "to", "take", "in", "the", "fact", "that", "the", "uniformed", "security", "guards", "standing", "at", "the", "entrance", "to", "the", "consulate", "were", "speaking", "Arabic", "between", "themselves.", "It", "always", "surprises", "me,", "this", "thing", "with", "Arab", "security", "guards.", "True,", "I’ve", "already", "grasped", "that", "the", "guards", "in", "the", "malls,", "at", "the", "International", "Writers", "Festival", "last", "month", "at", "Mishkenot", "Sha’ananim", "and", "in", "other", "venues", "in", "Jerusalem", "are", "from", "the", "eastern", "part", "of", "the", "city,", "but", "I", "can’t", "quite", "grasp", "this", "situation.", "I’m", "not", "talking", "here", "about", "Arabs", "who", "served", "in", "the", "army", "and", "were", "placed", "in", "security", "positions,", "but", "about", "Arabs", "like", "me", "who", "have", "never", "touched", "a", "weapon", "and", "are", "manning", "the", "security", "slots.", "They’re", "never", "armed,", "it’s", "true,", "but", "rabak!", "me", "when", "an", "Arab", "checks", "under", "the", "car", "hood", "and", "exchanges", "a", "couple", "of", "sentences", "in", "Hebrew", "with", "me", "in", "order", "to", "check", "out", "my", "accent.", "But", "I", "was", "happy", "now.", "“Stand", "in", "a", "single", "line,", "please,”", "the", "girl", "behind", "the", "glass", "requested", "through", "a", "loudspeaker,", "and", "we", "all", "closed", "ranks.", "My", "wife", "and", "I", "did", "likewise,", "because", "like", "everyone", "else,", "we", "wanted", "a", "visa", "to", "America.", "You", "know", "how", "it", "is", "in", "the", "West.", "Even", "though", "the", "clerk", "is", "an", "Arab,", "just", "like", "the", "guards,", "they", "have", "different", "rules,", "it’s", "a", "different", "culture,", "and", "a", "line", "is", "a", "line", "–", "maybe", "it’s", "some", "sort", "of", "an", "admissions", "test", "–", "and", "no", "one", "here", "wants", "to", "wreck", "his", "visa", "prospects", "because", "he", "didn’t", "stand", "in", "like", "a", "individual.", "“Did", "you", "notice", "that", "everyone", "here", "is", "either", "an", "Arab", "or", "an", "ultra-Orthodox", "Jew?”", "my", "wife", "whispered", "to", "me,", "and", "I", "replied,", "“This", "is", "Jerusalem", "–", "what", "else", "is", "there?”", "The", "line", "advanced", "rapidly,", "and", "after", "we", "passed", "the", "polite", "young", "woman", "in", "the", "booth,", "we", "went", "by", "the", "Arab", "guards,", "too.", "You’re", "not", "allowed", "to", "take", "in", "mobile", "phones,", "so", "we", "left", "them", "in", "compartments", "at", "the", "entrance.", "For", "an", "instant", "I", "felt", "uptight,", "cut", "off", "and", "frightened", "by", "the", "sheer", "fact", "that", "I", "was", "not", "going", "to", "be", "available.", "“I", "am", "available,", "therefore", "I", "exist”", "–", "in", "a", "twinkling", "I", "had", "grasped", "the", "meaning", "of", "life.", "After", "security,", "you", "enter", "a", "large", "waiting", "room", "with", "seats,", "and", "windows", "behind", "which", "are", "more", "clerks.", "The", "long", "lines", "move", "along", "relatively", "quickly,", "and", "the", "clerks", "are", "unfailingly", "courteous", "and", "smiling,", "even", "though", "some", "of", "them", "are", "not", "Americans", "but", "Arabs", "and", "Israelis.", "“This", "is", "what", "I", "call", "service,”", "I", "whispered", "to", "my", "wife", "as", "we", "left", "our", "fingerprints", "in", "a", "machine", "and", "handed", "over", "our", "documents.", "“You’re", "right,”" ], [ "she", "said,", "and", "told", "me", "about", "a", "girlfriend", "of", "hers", "who", "spent", "two", "years", "in", "America", "and", "related", "that", "“Life", "in", "the", "United", "States", "is", "a", "lot", "more", "comfortable.”", "“What", "do", "you", "mean", "‘comfortable’?”", "I", "asked", "with", "discomfort.", "“For", "example,", "if", "you", "go", "into", "a", "supermarket", "and", "there", "are", "no", "carts", "they", "bring", "you", "one", "–", "there", "are", "workers", "whose", "job", "that", "is.”", "“Really?”", "“Yes,”", "she", "replied.", "“And", "she", "also", "told", "me", "that", "there", "are", "no", "lines", "at", "the", "checkout", "counters,", "because", "if", "there", "is", "pressure,", "they", "straightaway", "open", "a", "new", "counter.", "There’s", "no", "waiting.”", "“So", "we’re", "going", "to", "the", "United", "States", "because", "shopping", "in", "the", "supermarket", "is", "easier?”", "“And", "for", "the", "children’s", "English.”", "Unlike", "my", "wife", "and", "children,", "I", "am", "very", "anxious", "about", "the", "looming", "trip.", "We", "will", "be", "living", "in", "southern", "Illinois,", "where", "the", "winters", "are", "like", "the", "ones", "you", "read", "about", "in", "books.", "I", "imagine", "myself", "shoveling", "the", "snow", "off", "the", "driveway", "and", "trying", "to", "defrost", "the", "frozen", "windows", "of", "the", "car,", "and", "already", "I", "feel", "that", "all", "I", "want", "is", "to", "be", "back", "in", "my", "own", "home", "with", "the", "tea", "and", "lemon", "and", "all", "the", "rest", "of", "it.", "I", "will", "be", "teaching", "there,", "and", "that", "scares", "me", "very", "much;", "I", "have", "no", "idea", "what", "kind", "of", "teacher", "I", "will", "be.", "My", "tasks", "include", "teaching", "Hebrew,", "and", "when", "I", "think", "that", "I", "will", "have", "American", "students", "who", "go", "off", "speaking", "Hebrew", "with", "an", "Arabic", "accent,", "I", "get", "more", "than", "a", "little", "freaked", "out.", "But", "my", "biggest", "worry", "about", "the", "United", "States", "is", "the", "kids.", "Right", "now", "they", "are", "enthusiastic", "and", "excited", "about", "the", "year-long", "stay,", "but", "I", "sometimes", "suspect", "that", "they", "think", "it’s", "like", "a", "family", "outing", "and", "haven’t", "grasped", "the", "implications", "of", "a", "different", "language,", "a", "new", "culture,", "another", "type", "of", "society", "and", "the", "inevitable", "acclimatization", "problems.", "“It’s", "easiest", "for", "the", "children,”", "friends", "assure", "me,", "but", "I", "don’t", "believe", "them.", "I’ve", "already", "enrolled", "the", "youngest", "in", "a", "preschool", "in", "the", "neighborhood", "where", "we’ve", "rented", "a", "place", "for", "the", "year,", "and", "I", "will", "enroll", "the", "older", "ones", "in", "public", "schools", "that", "are", "supposed", "to", "be", "good.", "I", "perused", "sites", "that", "rank", "schools", "and", "I", "contacted", "the", "local", "government", "for", "information.", "Going", "through", "the", "visa", "forms", "beforehand,", "I", "had", "been", "thrown", "by", "the", "“race”", "rubric.", "I", "looked", "for", "Arab", "but", "could", "find", "no", "such", "category.", "There", "was", "white,", "black,", "Hispanic", "and", "Asiatic,", "but", "no", "Arab.", "I", "looked", "on", "the", "Internet", "to", "find", "out", "what", "we", "are", "and", "discovered", "that", "in", "the", "United", "States,", "people", "coming", "from", "the", "Middle", "East", "or", "North", "Africa", "are", "considered", "whites.", "That", "really", "surprised", "me,", "because", "I", "never", "considered", "myself", "white.", "I", "now", "remember", "the", "moment", "when", "I", "checked", "the", "“white”", "box", "on", "the", "forms:", "I", "grinned", "with", "a", "leer", "and", "knew", "that", "I", "was", "going", "to", "be", "a", "racist", "–", "and", "how", "I", "was", "going", "to", "be", "a", "racist!", "Especially", "after", "40", "years", "of", "experience", "with", "this.", "“That’s", "us,”", "I", "said", "to", "my", "wife", "when", "our", "name", "was", "called", "through", "the", "loudspeaker:", "“Kasuha.”", "“Kasuha?”", "she", "asked,", "puzzled.", "“Believe", "it", "or", "not,”", "I", "said", "to", "her", "as", "we", "made", "our", "way", "to", "the", "clerk,", "“a", "white", "folks’", "name.”" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Last", "week", "I", "went", "with", "my", "wife", "to", "the", "U.S.", "Consulate", "in", "Jerusalem.", "The", "nursery", "school", "teacher", "somehow", "managed", "to", "take", "a", "picture", "of", "the", "little", "one", "that", "was", "acceptable", "for", "the", "online", "visa-application", "forms,", "so", "we", "were", "finally", "able", "to", "register", "and", "set", "a", "date", "for", "an", "interview", "at", "the", "consulate.", "There", "were", "a", "few", "particularly", "scary", "items", "on", "those", "forms.", "I", "knew", "I", "could", "trust", "myself,", "but", "I", "had", "to", "ask", "my", "wife", "some", "things", "before", "marking", "“yes”", "or", "“no”", "in", "the", "security-related", "questionnaire.", "“Tell", "me,", "did", "you", "ever", "take", "part", "in", "genocide?”", "I", "found", "myself", "asking", "her", "in", "the", "living", "room,", "with", "the", "children", "listening.", "“Were", "you", "ever", "a", "member", "of", "a", "terrorist", "organization?”", "“No,”", "she", "said.", "“Are", "you", "nuts?!", "What’s", "with", "you?”", "“I", "have", "to", "hear", "it", "from", "you,”", "I", "told", "her,", "and", "went", "on:", "“Have", "you", "ever", "been", "in", "contact", "with", "anyone", "who", "was", "ever", "a", "member", "of", "a", "terrorist", "organization?”", "Here", "I", "looked", "her", "straight", "in", "the", "eyes", "to", "make", "sure", "she", "was", "telling", "the", "truth.", "“No,”", "she", "replied", "firmly,", "and", "I", "bought", "her", "answer.", "“Is", "that", "what", "they", "are", "asking?”", "she", "wanted", "to", "know.", "“Yes,", "you", "have", "to", "answer", "all", "these", "questions", "in", "order", "to", "enter", "America,”", "I", "replied,", "and", "continued:", "“Do", "you", "intend", "to", "marry", "an", "American", "citizen", "and", "remain", "in", "the", "United", "States?”", "“What?!”", "my", "wife", "snapped", "back.", "“I", "have", "to", "see", "that", "question.”", "“Forget", "it,”", "I", "told", "her", "and", "hid", "the", "forms.", "“I’ll", "write", "‘no.’”", "Armed", "with", "the", "right", "forms", "for", "applying", "for", "what", "is", "called", "an", "exchange", "visitor’s", "visa,", "we", "arrived", "at", "the", "consulate’s", "entrance", "right", "on", "time.", "There", "was", "a", "long", "line", "leading", "to", "the", "outer", "booth,", "where", "a", "young", "woman", "seated", "behind", "glass,", "which", "I", "could", "have", "sworn", "was", "bulletproof,", "received", "the", "arrivals.", "We", "took", "our", "places", "in", "line.", "It", "took", "me", "a", "few", "minutes", "to", "take", "in", "the", "fact", "that", "the", "uniformed", "security", "guards", "standing", "at", "the", "entrance", "to", "the", "consulate", "were", "speaking", "Arabic", "between", "themselves.", "It", "always", "surprises", "me,", "this", "thing", "with", "Arab", "security", "guards.", "True,", "I’ve", "already", "grasped", "that", "the", "guards", "in", "the", "malls,", "at", "the", "International", "Writers", "Festival", "last", "month", "at", "Mishkenot", "Sha’ananim", "and", "in", "other", "venues", "in", "Jerusalem", "are", "from", "the", "eastern", "part", "of", "the", "city,", "but", "I", "can’t", "quite", "grasp", "this", "situation.", "I’m", "not", "talking", "here", "about", "Arabs", "who", "served", "in", "the", "army", "and", "were", "placed", "in", "security", "positions,", "but", "about", "Arabs", "like", "me", "who", "have", "never", "touched", "a", "weapon", "and", "are", "manning", "the", "security", "slots.", "They’re", "never", "armed,", "it’s", "true,", "but", "rabak!", "me", "when", "an", "Arab", "checks", "under", "the", "car", "hood", "and", "exchanges", "a", "couple", "of", "sentences", "in", "Hebrew", "with", "me", "in", "order", "to", "check", "out", "my", "accent.", "But", "I", "was", "happy", "now.", "“Stand", "in", "a", "single", "line,", "please,”", "the", "girl", "behind", "the", "glass", "requested", "through", "a", "loudspeaker,", "and", "we", "all", "closed", "ranks.", "My", "wife", "and", "I", "did", "likewise,", "because", "like", "everyone", "else,", "we", "wanted", "a", "visa", "to", "America.", "You", "know", "how", "it", "is", "in", "the", "West.", "Even", "though", "the", "clerk", "is", "an", "Arab,", "just", "like", "the", "guards,", "they", "have", "different", "rules,", "it’s", "a", "different", "culture,", "and", "a", "line", "is", "a", "line", "–", "maybe", "it’s", "some", "sort", "of", "an", "admissions", "test", "–", "and", "no", "one", "here", "wants", "to", "wreck", "his", "visa", "prospects", "because", "he", "didn’t", "stand", "in", "like", "a", "individual.", "“Did", "you", "notice", "that", "everyone", "here", "is", "either", "an", "Arab", "or", "an", "ultra-Orthodox", "Jew?”", "my", "wife", "whispered", "to", "me,", "and", "I", "replied,", "“This", "is", "Jerusalem", "–", "what", "else", "is", "there?”", "The", "line", "advanced", "rapidly,", "and", "after", "we", "passed", "the", "polite", "young", "woman", "in", "the", "booth,", "we", "went", "by", "the", "Arab", "guards,", "too.", "You’re", "not", "allowed", "to", "take", "in", "mobile", "phones,", "so", "we", "left", "them", "in", "compartments", "at", "the", "entrance.", "For", "an", "instant", "I", "felt", "uptight,", "cut", "off", "and", "frightened", "by", "the", "sheer", "fact", "that", "I", "was", "not", "going", "to", "be", "available.", "“I", "am", "available,", "therefore", "I", "exist”", "–", "in", "a", "twinkling", "I", "had", "grasped", "the", "meaning", "of", "life.", "After", "security,", "you", "enter", "a", "large", "waiting", "room", "with", "seats,", "and", "windows", "behind", "which", "are", "more", "clerks.", "The", "long", "lines", "move", "along", "relatively", "quickly,", "and", "the", "clerks", "are", "unfailingly", "courteous", "and", "smiling,", "even", "though", "some", "of", "them", "are", "not", "Americans", "but", "Arabs", "and", "Israelis.", "“This", "is", "what", "I", "call", "service,”", "I", "whispered", "to", "my", "wife", "as", "we", "left", "our", "fingerprints", "in", "a", "machine", "and", "handed", "over", "our", "documents.", "“You’re", "right,”" ] ], [ [ "she", "said,", "and", "told", "me", "about", "a", "girlfriend", "of", "hers", "who", "spent", "two", "years", "in", "America", "and", "related", "that", "“Life", "in", "the", "United", "States", "is", "a", "lot", "more", "comfortable.”", "“What", "do", "you", "mean", "‘comfortable’?”", "I", "asked", "with", "discomfort.", "“For", "example,", "if", "you", "go", "into", "a", "supermarket", "and", "there", "are", "no", "carts", "they", "bring", "you", "one", "–", "there", "are", "workers", "whose", "job", "that", "is.”", "“Really?”", "“Yes,”", "she", "replied.", "“And", "she", "also", "told", "me", "that", "there", "are", "no", "lines", "at", "the", "checkout", "counters,", "because", "if", "there", "is", "pressure,", "they", "straightaway", "open", "a", "new", "counter.", "There’s", "no", "waiting.”", "“So", "we’re", "going", "to", "the", "United", "States", "because", "shopping", "in", "the", "supermarket", "is", "easier?”", "“And", "for", "the", "children’s", "English.”", "Unlike", "my", "wife", "and", "children,", "I", "am", "very", "anxious", "about", "the", "looming", "trip.", "We", "will", "be", "living", "in", "southern", "Illinois,", "where", "the", "winters", "are", "like", "the", "ones", "you", "read", "about", "in", "books.", "I", "imagine", "myself", "shoveling", "the", "snow", "off", "the", "driveway", "and", "trying", "to", "defrost", "the", "frozen", "windows", "of", "the", "car,", "and", "already", "I", "feel", "that", "all", "I", "want", "is", "to", "be", "back", "in", "my", "own", "home", "with", "the", "tea", "and", "lemon", "and", "all", "the", "rest", "of", "it.", "I", "will", "be", "teaching", "there,", "and", "that", "scares", "me", "very", "much;", "I", "have", "no", "idea", "what", "kind", "of", "teacher", "I", "will", "be.", "My", "tasks", "include", "teaching", "Hebrew,", "and", "when", "I", "think", "that", "I", "will", "have", "American", "students", "who", "go", "off", "speaking", "Hebrew", "with", "an", "Arabic", "accent,", "I", "get", "more", "than", "a", "little", "freaked", "out.", "But", "my", "biggest", "worry", "about", "the", "United", "States", "is", "the", "kids.", "Right", "now", "they", "are", "enthusiastic", "and", "excited", "about", "the", "year-long", "stay,", "but", "I", "sometimes", "suspect", "that", "they", "think", "it’s", "like", "a", "family", "outing", "and", "haven’t", "grasped", "the", "implications", "of", "a", "different", "language,", "a", "new", "culture,", "another", "type", "of", "society", "and", "the", "inevitable", "acclimatization", "problems.", "“It’s", "easiest", "for", "the", "children,”", "friends", "assure", "me,", "but", "I", "don’t", "believe", "them.", "I’ve", "already", "enrolled", "the", "youngest", "in", "a", "preschool", "in", "the", "neighborhood", "where", "we’ve", "rented", "a", "place", "for", "the", "year,", "and", "I", "will", "enroll", "the", "older", "ones", "in", "public", "schools", "that", "are", "supposed", "to", "be", "good.", "I", "perused", "sites", "that", "rank", "schools", "and", "I", "contacted", "the", "local", "government", "for", "information.", "Going", "through", "the", "visa", "forms", "beforehand,", "I", "had", "been", "thrown", "by", "the", "“race”", "rubric.", "I", "looked", "for", "Arab", "but", "could", "find", "no", "such", "category.", "There", "was", "white,", "black,", "Hispanic", "and", "Asiatic,", "but", "no", "Arab.", "I", "looked", "on", "the", "Internet", "to", "find", "out", "what", "we", "are", "and", "discovered", "that", "in", "the", "United", "States,", "people", "coming", "from", "the", "Middle", "East", "or", "North", "Africa", "are", "considered", "whites.", "That", "really", "surprised", "me,", "because", "I", "never", "considered", "myself", "white.", "I", "now", "remember", "the", "moment", "when", "I", "checked", "the", "“white”", "box", "on", "the", "forms:", "I", "grinned", "with", "a", "leer", "and", "knew", "that", "I", "was", "going", "to", "be", "a", "racist", "–", "and", "how", "I", "was", "going", "to", "be", "a", "racist!", "Especially", "after", "40", "years", "of", "experience", "with", "this.", "“That’s", "us,”", "I", "said", "to", "my", "wife", "when", "our", "name", "was", "called", "through", "the", "loudspeaker:", "“Kasuha.”", "“Kasuha?”", "she", "asked,", "puzzled.", "“Believe", "it", "or", "not,”", "I", "said", "to", "her", "as", "we", "made", "our", "way", "to", "the", "clerk,", "“a", "white", "folks’", "name.”" ] ] ]
[ [ "en" ], [ "en" ] ]
[ "mono" ]
[ [ "Health", "officials", "report", "that", "it’s", "likely", "a", "severe", "respiratory", "illness", "that", "has", "sickened", "hundreds", "of", "children", "in", "more", "than", "10", "states", "has", "made", "its", "way", "to", "Minnesota", "and", "Wisconsin.", "However,", "there", "have", "been", "no", "confirmed", "cases", "as", "health", "care", "providers", "send", "samples", "to", "the", "lab", "for", "testing.", "State", "epidemiologist", "Aaron", "DeVries", "says", "health", "officials", "have", "identified", "a", "handful", "of", "enterovirus", "68", "cases", "in", "each", "of", "the", "past", "few", "years", "in", "Minnesota.", "DeVries", "said", "he", "would", "not", "be", "surprised", "to", "find", "the", "virus", "circulating", "again.", "Emergency", "room", "workers", "at", "Children’s", "Hospitals", "and", "Clinics’", "St.", "Paul", "and", "Minneapolis", "campuses", "have", "been", "busier", "than", "usual", "treating", "children", "with", "respiratory", "problems.", "Children’s", "infectious", "disease", "director", "Patsy", "Stinchfield", "said", "more", "children", "are", "coming", "in", "with", "severe", "asthma", "symptoms", "and", "most", "are", "being", "admitted.", "The", "situation", "is", "similar", "in", "Wisconsin.", "Although", "no", "cases", "have", "been", "confirmed,", "Paul", "Biedrzycki", "of", "the", "Milwaukee", "Health", "Department", "said", "there’s", "no", "reason", "to", "believe", "it", "isn’t", "circulating", "there.", "He", "said", "health", "officials", "are", "“enhancing", "surveillance", "and", "getting", "messaging", "out", "to", "parents", "and", "health", "care", "providers", "to", "be", "looking", "for", "it.”" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Health", "officials", "report", "that", "it’s", "likely", "a", "severe", "respiratory", "illness", "that", "has", "sickened", "hundreds", "of", "children", "in", "more", "than", "10", "states", "has", "made", "its", "way", "to", "Minnesota", "and", "Wisconsin.", "However,", "there", "have", "been", "no", "confirmed", "cases", "as", "health", "care", "providers", "send", "samples", "to", "the", "lab", "for", "testing.", "State", "epidemiologist", "Aaron", "DeVries", "says", "health", "officials", "have", "identified", "a", "handful", "of", "enterovirus", "68", "cases", "in", "each", "of", "the", "past", "few", "years", "in", "Minnesota.", "DeVries", "said", "he", "would", "not", "be", "surprised", "to", "find", "the", "virus", "circulating", "again.", "Emergency", "room", "workers", "at", "Children’s", "Hospitals", "and", "Clinics’", "St.", "Paul", "and", "Minneapolis", "campuses", "have", "been", "busier", "than", "usual", "treating", "children", "with", "respiratory", "problems.", "Children’s", "infectious", "disease", "director", "Patsy", "Stinchfield", "said", "more", "children", "are", "coming", "in", "with", "severe", "asthma", "symptoms", "and", "most", "are", "being", "admitted.", "The", "situation", "is", "similar", "in", "Wisconsin.", "Although", "no", "cases", "have", "been", "confirmed,", "Paul", "Biedrzycki", "of", "the", "Milwaukee", "Health", "Department", "said", "there’s", "no", "reason", "to", "believe", "it", "isn’t", "circulating", "there.", "He", "said", "health", "officials", "are", "“enhancing", "surveillance", "and", "getting", "messaging", "out", "to", "parents", "and", "health", "care", "providers", "to", "be", "looking", "for", "it.”" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Careers,", "like", "lives,", "hinge", "on", "the", "smallest", "moments", "and", "decisions.", "For", "Mark", "Webber,", "a", "36-year-old", "driver", "at", "the", "Red", "Bull", "team,", "while", "the", "season", "may", "still", "offer", "him", "a", "chance", "to", "win", "the", "title", "—", "there", "are", "six", "races", "left,", "and", "he", "is", "in", "fifth", "place", "in", "the", "series,", "62", "points", "behind", "the", "leader,", "Fernando", "Alonso", "of", "Spain", "—", "it", "was", "in", "2010", "that", "the", "Australian", "appeared", "to", "have", "had", "his", "best", "chance", "to", "take", "the", "title.", "Maybe", "a", "once-in-a-lifetime", "chance.", "Going", "into", "the", "last", "race", "of", "that", "season,", "in", "Abu", "Dhabi,", "four", "drivers", "had", "a", "mathematical", "chance", "to", "win", "the", "title,", "with", "Webber", "in", "second", "place", "in", "the", "standings.", "He", "had", "led", "the", "series", "for", "most", "of", "the", "second", "half", "of", "the", "season", "until", "he", "suddenly", "slipped", "behind", "Ferrari’s", "Alonso.", "Still,", "his", "chances", "looked", "much", "better", "than", "those", "of", "Lewis", "Hamilton,", "the", "McLaren", "driver", "who", "was", "sitting", "fourth", "in", "the", "series,", "or", "of", "Sebastian", "Vettel,", "Webber’s", "teammate", "at", "Red", "Bull,", "where", "he", "had", "long", "been", "a", "protégé", "of", "the", "Austrian", "energy", "drink", "company’s", "young", "driver", "program.", "Webber,", "11", "years", "older", "than", "Vettel", "and", "therefore", "less", "interesting", "as", "a", "marketing", "tool", "for", "Red", "Bull,", "had", "seemed", "to", "be", "a", "second", "thought", "for", "the", "team.", "So", "heavily", "did", "the", "dice", "seemed", "to", "be", "fixed", "in", "Vettel’s", "favor", "within", "the", "team", "that", "after", "Webber", "won", "the", "British", "Grand", "Prix", "that", "year,", "he", "said", "cynically", "to", "his", "team,", "“Not", "bad", "for", "a", "No.", "2", "driver.”" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Careers,", "like", "lives,", "hinge", "on", "the", "smallest", "moments", "and", "decisions.", "For", "Mark", "Webber,", "a", "36-year-old", "driver", "at", "the", "Red", "Bull", "team,", "while", "the", "season", "may", "still", "offer", "him", "a", "chance", "to", "win", "the", "title", "—", "there", "are", "six", "races", "left,", "and", "he", "is", "in", "fifth", "place", "in", "the", "series,", "62", "points", "behind", "the", "leader,", "Fernando", "Alonso", "of", "Spain", "—", "it", "was", "in", "2010", "that", "the", "Australian", "appeared", "to", "have", "had", "his", "best", "chance", "to", "take", "the", "title.", "Maybe", "a", "once-in-a-lifetime", "chance.", "Going", "into", "the", "last", "race", "of", "that", "season,", "in", "Abu", "Dhabi,", "four", "drivers", "had", "a", "mathematical", "chance", "to", "win", "the", "title,", "with", "Webber", "in", "second", "place", "in", "the", "standings.", "He", "had", "led", "the", "series", "for", "most", "of", "the", "second", "half", "of", "the", "season", "until", "he", "suddenly", "slipped", "behind", "Ferrari’s", "Alonso.", "Still,", "his", "chances", "looked", "much", "better", "than", "those", "of", "Lewis", "Hamilton,", "the", "McLaren", "driver", "who", "was", "sitting", "fourth", "in", "the", "series,", "or", "of", "Sebastian", "Vettel,", "Webber’s", "teammate", "at", "Red", "Bull,", "where", "he", "had", "long", "been", "a", "protégé", "of", "the", "Austrian", "energy", "drink", "company’s", "young", "driver", "program.", "Webber,", "11", "years", "older", "than", "Vettel", "and", "therefore", "less", "interesting", "as", "a", "marketing", "tool", "for", "Red", "Bull,", "had", "seemed", "to", "be", "a", "second", "thought", "for", "the", "team.", "So", "heavily", "did", "the", "dice", "seemed", "to", "be", "fixed", "in", "Vettel’s", "favor", "within", "the", "team", "that", "after", "Webber", "won", "the", "British", "Grand", "Prix", "that", "year,", "he", "said", "cynically", "to", "his", "team,", "“Not", "bad", "for", "a", "No.", "2", "driver.”" ] ] ]
[ [ "en" ] ]
[ "mono", "mono" ]
[ [ "Alexey", "Pajitnov,", "programmer", "In", "the", "early", "80s,", "I", "worked", "at", "the", "computing", "lab", "for", "the", "Academy", "of", "Science", "of", "the", "USSR,", "researching", "artificial", "intelligence.", "It", "was", "one", "of", "the", "very", "few", "Soviet", "institutes", "able", "to", "communicate", "with", "the", "rest", "of", "the", "world,", "so", "people", "occasionally", "sent", "us", "new", "hardware.", "We'd", "assess", "how", "powerful", "it", "was", "by", "writing", "a", "simple", "program", "for", "it,", "which", "became", "my", "excuse", "for", "making", "games.", "I've", "loved", "puzzles", "ever", "since", "I", "was", "a", "child,", "especially", "pentominoes.", "You", "could", "get", "three", "of", "these", "geometric", "games", "for", "a", "rouble", "in", "Moscow", "toyshops.", "In", "June", "1984,", "it", "occurred", "to", "me", "that", "they", "might", "be", "a", "good", "basis", "for", "a", "computer", "game.", "But", "having", "the", "12", "pentomino", "pieces", "rotating", "in", "real", "time", "seemed", "too", "complicated,", "so", "I", "scaled", "it", "down", "to", "tetrominoes,", "of", "which", "there", "are", "seven.", "Also,", "the", "Electronika", "60,", "the", "Russian", "computer", "I", "originally", "wrote", "Tetris", "for,", "didn't", "have", "proper", "graphics,", "just", "a", "monitor", "that", "could", "display", "text,", "so", "I", "used", "letters", "to", "form", "the", "playing", "pieces.", "Next", "I", "put", "together", "the", "procedures", "for", "manipulating", "the", "pieces:", "pick", "a", "tile,", "flip", "it,", "rotate", "it.", "But", "the", "playfield", "filled", "up", "in", "20", "seconds", "flat.", "Also,", "once", "you'd", "filled", "a", "line,", "it", "was", "kind", "of", "dead,", "so", "why", "keep", "it", "on", "the", "screen?", "So", "I", "made", "each", "line", "disappear,", "which", "was", "key.", "I", "was", "a", "pretty", "good", "programmer", "and", "it", "took", "me", "about", "three", "weeks", "to", "get", "something", "controllable", "on", "screen.", "I", "I", "was", "debugging", "my", "program,", "in", "truth", "I", "just", "couldn't", "stop", "playing", "it.", "When", "other", "people", "tried", "it,", "they", "couldn't,", "either.", "It", "was", "so", "abstract", "–", "that", "was", "its", "great", "quality.", "It", "appealed", "to", "everybody.", "I", "had", "no", "idea", "how", "to", "publish", "it.", "I", "suspected", "that", "trying", "to", "would", "get", "me", "into", "trouble,", "but", "the", "PC", "version", "had", "been", "smuggled", "to", "Hungary", "and", "western", "companies", "started", "producing", "unauthorised", "versions.", "Perestroika", "had", "started,", "so", "I", "granted", "my", "rights", "to", "the", "government", "for", "10", "years.", "It", "was", "among", "the", "first", "pieces", "of", "software", "exported", "by", "the", "Soviet", "Union.", "Spectrum", "HoloByte,", "the", "US", "company", "who", "produced", "one", "of", "the", "earlier", "versions,", "had", "a", "big", "influence", "on", "how", "it", "was", "marketed.", "I", "found", "all", "those", "matryoshka", "dolls", "and", "churches", "a", "bit", "tacky,", "but", "they", "helped", "sales.", "They", "chose", "Korobeiniki,", "a", "19th-century", "Russian", "folk", "song,", "for", "the", "music;", "and", "Nintendo", "later", "included", "Tchaikovsky's", "Nutcracker", "theme.", "It", "was", "very", "embarrassing", "for", "me:", "when", "kids", "of", "the", "world", "hear", "these", "pieces", "of", "music,", "they", "start", "screaming:", "\"Tetris!", "Tetris!\"", "That's", "not", "very", "good", "for", "Russian", "culture.", "I", "didn't", "make", "much", "money", "at", "first,", "but", "I", "was", "happy,", "because", "my", "main", "priority", "was", "to", "see", "people", "enjoying", "my", "game.", "Tetris", "came", "along", "early", "and", "had", "a", "very", "important", "role", "in", "breaking", "down", "ordinary", "people's", "inhibitions", "in", "front", "of", "computers,", "which", "were", "scary", "objects", "to", "non-professionals", "used", "to", "pen", "and", "paper.", "But", "the", "fact", "that", "something", "so", "simple", "and", "beautiful", "could", "appear", "on", "screen", "destroyed", "that", "barrier.", "Impossible", "to", "stop", "playing...", "Tetris.", "Rogers,", "videogame", "licenser", "My", "job", "in", "the", "80s", "was", "acquiring", "games", "for", "the", "Japanese", "market.", "When", "I", "first", "came", "across", "Tetris", "in", "January", "1988,", "at", "the", "Consumer", "Electronics", "Show", "in", "Las", "Vegas,", "I", "was", "hooked", "instantly,", "which", "was", "unusual.", "I", "licensed", "every", "version", "on", "every", "system", "I", "could", "through", "Spectrum", "HoloByte.", "But", "it", "turned", "out", "their", "parent", "company,", "Mirrorsoft", "[owned", "by", "Robert", "Maxwell],", "had", "already", "given", "some", "of", "the", "Japanese", "rights", "I", "thought", "I", "owned", "to", "Atari.", "It", "was", "a", "total", "mess,", "so", "when", "it", "came", "to", "securing", "the", "Game", "Boy", "rights,", "I", "went", "straight", "to", "Moscow", "to", "speak", "to", "Elorg,", "the", "bureau", "handling", "the", "export", "of", "software.", "I", "didn't", "know", "anyone", "in", "the", "capital,", "or", "where", "the", "ministry", "was.", "The", "Muscovites", "were", "completely", "unfriendly:", "nobody", "spoke", "English,", "and", "they", "weren't", "allowed", "to", "talk", "to", "me", "anyway.", "I'd", "planned", "to", "get", "a", "fur", "coat", "when", "I", "arrived,", "but", "I", "found", "it", "impossible", "to", "buy", "anything,", "so", "I", "was", "freezing", "my", "ass", "off.", "I", "play", "the", "board", "game", "Go,", "so", "I", "tried", "to", "find", "a", "local", "Go", "association,", "thinking", "I", "could", "make", "a", "friend.", "I", "ended", "up", "playing", "the", "third", "strongest", "player", "in", "the", "Soviet", "Union", "–", "and", "I", "beat", "him.", "But", "he", "spoke", "no", "English.", "Finally,", "I", "hired", "an", "interpreter", "from", "a", "booth", "in", "the", "lobby", "of", "my", "hotel.", "They", "were", "all", "KGB,", "but", "she", "was", "beautiful", "and", "very", "perky,", "when", "everybody", "else", "was", "doom", "and", "gloom.", "She", "took", "me", "to", "Elorg,", "but", "she", "wouldn't", "take", "me", "in", "because", "I", "hadn't", "been", "officially", "invited.", "I", "was", "breaking", "a", "cardinal", "rule", "–", "trying", "to", "do", "business", "on", "a", "tourist", "visa", "–", "but", "I", "told", "her", "I", "hadn't", "come", "all", "this", "way", "for", "nothing.", "It", "was", "like", "standing", "on", "a", "rock", "50ft", "above", "water.", "You", "just", "have", "to", "jump", "and", "trust", "it's", "not", "going", "to", "be" ], [ "as", "bad", "as", "you", "think.", "The", "director", "of", "Elorg,", "a", "Mr", "Belikov,", "told", "me", "they", "had", "never", "given", "rights", "to", "anybody.", "I", "was", "in", "deep", "kimchi,", "because", "I", "had", "200,000", "game", "cartridges", "at", "$10", "apiece", "being", "manufactured", "in", "Japan,", "and", "I'd", "put", "up", "all", "of", "my", "in-laws'", "property", "up", "as", "collateral.", "We", "reconvened", "the", "following", "day", "and", "they", "had", "a", "lineup", "of", "10", "people", "–", "KGB,", "business", "guys,", "lawyers,", "Alexey", "–", "who", "grilled", "me", "for", "two", "hours.", "I", "didn't", "realise", "at", "first,", "but", "they", "were", "negotiating", "simultaneously", "with", "Kevin", "Maxwell.", "The", "KGB", "even", "sent", "two", "agents", "to", "my", "office", "in", "Tokyo.", "Because", "I'd", "had", "no", "contact", "with", "my", "staff,", "they", "thought:", "\"Oh", "my", "God,", "what's", "happened", "to", "Henk?\"", "But", "I", "was", "very", "open", "with", "the", "Russians", "and", "they", "decided", "to", "give", "me", "console", "rights.", "I", "gave", "them", "the", "best", "contract", "I've", "ever", "seen", "in", "the", "industry", "–", "clear,", "concise,", "no", "bullshit", "–", "partly", "because", "there", "wasn't", "time", "for", "any", "renegotiations.", "Elorg", "used", "it", "as", "the", "template", "for", "all", "their", "other", "deals.", "The", "Maxwells", "were", "furious,", "and", "tried", "to", "lobby", "Gorbachev,", "whose", "autobiography", "they'd", "published.", "Tetris", "made", "Game", "Boy", "and", "Game", "Boy", "made", "Tetris.", "It", "was", "the", "perfect", "platform", "for", "the", "game,", "since", "you", "could", "carry", "it", "around.", "That's", "how", "it", "caught", "on.", "And", "it's", "even", "bigger", "•", "World", "Tetris", "Day", "is", "on", "6", "June,", "the", "game's", "30th", "anniversary." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Alexey", "Pajitnov,", "programmer", "In", "the", "early", "80s,", "I", "worked", "at", "the", "computing", "lab", "for", "the", "Academy", "of", "Science", "of", "the", "USSR,", "researching", "artificial", "intelligence.", "It", "was", "one", "of", "the", "very", "few", "Soviet", "institutes", "able", "to", "communicate", "with", "the", "rest", "of", "the", "world,", "so", "people", "occasionally", "sent", "us", "new", "hardware.", "We'd", "assess", "how", "powerful", "it", "was", "by", "writing", "a", "simple", "program", "for", "it,", "which", "became", "my", "excuse", "for", "making", "games.", "I've", "loved", "puzzles", "ever", "since", "I", "was", "a", "child,", "especially", "pentominoes.", "You", "could", "get", "three", "of", "these", "geometric", "games", "for", "a", "rouble", "in", "Moscow", "toyshops.", "In", "June", "1984,", "it", "occurred", "to", "me", "that", "they", "might", "be", "a", "good", "basis", "for", "a", "computer", "game.", "But", "having", "the", "12", "pentomino", "pieces", "rotating", "in", "real", "time", "seemed", "too", "complicated,", "so", "I", "scaled", "it", "down", "to", "tetrominoes,", "of", "which", "there", "are", "seven.", "Also,", "the", "Electronika", "60,", "the", "Russian", "computer", "I", "originally", "wrote", "Tetris", "for,", "didn't", "have", "proper", "graphics,", "just", "a", "monitor", "that", "could", "display", "text,", "so", "I", "used", "letters", "to", "form", "the", "playing", "pieces.", "Next", "I", "put", "together", "the", "procedures", "for", "manipulating", "the", "pieces:", "pick", "a", "tile,", "flip", "it,", "rotate", "it.", "But", "the", "playfield", "filled", "up", "in", "20", "seconds", "flat.", "Also,", "once", "you'd", "filled", "a", "line,", "it", "was", "kind", "of", "dead,", "so", "why", "keep", "it", "on", "the", "screen?", "So", "I", "made", "each", "line", "disappear,", "which", "was", "key.", "I", "was", "a", "pretty", "good", "programmer", "and", "it", "took", "me", "about", "three", "weeks", "to", "get", "something", "controllable", "on", "screen.", "I", "I", "was", "debugging", "my", "program,", "in", "truth", "I", "just", "couldn't", "stop", "playing", "it.", "When", "other", "people", "tried", "it,", "they", "couldn't,", "either.", "It", "was", "so", "abstract", "–", "that", "was", "its", "great", "quality.", "It", "appealed", "to", "everybody.", "I", "had", "no", "idea", "how", "to", "publish", "it.", "I", "suspected", "that", "trying", "to", "would", "get", "me", "into", "trouble,", "but", "the", "PC", "version", "had", "been", "smuggled", "to", "Hungary", "and", "western", "companies", "started", "producing", "unauthorised", "versions.", "Perestroika", "had", "started,", "so", "I", "granted", "my", "rights", "to", "the", "government", "for", "10", "years.", "It", "was", "among", "the", "first", "pieces", "of", "software", "exported", "by", "the", "Soviet", "Union.", "Spectrum", "HoloByte,", "the", "US", "company", "who", "produced", "one", "of", "the", "earlier", "versions,", "had", "a", "big", "influence", "on", "how", "it", "was", "marketed.", "I", "found", "all", "those", "matryoshka", "dolls", "and", "churches", "a", "bit", "tacky,", "but", "they", "helped", "sales.", "They", "chose", "Korobeiniki,", "a", "19th-century", "Russian", "folk", "song,", "for", "the", "music;", "and", "Nintendo", "later", "included", "Tchaikovsky's", "Nutcracker", "theme.", "It", "was", "very", "embarrassing", "for", "me:", "when", "kids", "of", "the", "world", "hear", "these", "pieces", "of", "music,", "they", "start", "screaming:", "\"Tetris!", "Tetris!\"", "That's", "not", "very", "good", "for", "Russian", "culture.", "I", "didn't", "make", "much", "money", "at", "first,", "but", "I", "was", "happy,", "because", "my", "main", "priority", "was", "to", "see", "people", "enjoying", "my", "game.", "Tetris", "came", "along", "early", "and", "had", "a", "very", "important", "role", "in", "breaking", "down", "ordinary", "people's", "inhibitions", "in", "front", "of", "computers,", "which", "were", "scary", "objects", "to", "non-professionals", "used", "to", "pen", "and", "paper.", "But", "the", "fact", "that", "something", "so", "simple", "and", "beautiful", "could", "appear", "on", "screen", "destroyed", "that", "barrier.", "Impossible", "to", "stop", "playing...", "Tetris.", "Rogers,", "videogame", "licenser", "My", "job", "in", "the", "80s", "was", "acquiring", "games", "for", "the", "Japanese", "market.", "When", "I", "first", "came", "across", "Tetris", "in", "January", "1988,", "at", "the", "Consumer", "Electronics", "Show", "in", "Las", "Vegas,", "I", "was", "hooked", "instantly,", "which", "was", "unusual.", "I", "licensed", "every", "version", "on", "every", "system", "I", "could", "through", "Spectrum", "HoloByte.", "But", "it", "turned", "out", "their", "parent", "company,", "Mirrorsoft", "[owned", "by", "Robert", "Maxwell],", "had", "already", "given", "some", "of", "the", "Japanese", "rights", "I", "thought", "I", "owned", "to", "Atari.", "It", "was", "a", "total", "mess,", "so", "when", "it", "came", "to", "securing", "the", "Game", "Boy", "rights,", "I", "went", "straight", "to", "Moscow", "to", "speak", "to", "Elorg,", "the", "bureau", "handling", "the", "export", "of", "software.", "I", "didn't", "know", "anyone", "in", "the", "capital,", "or", "where", "the", "ministry", "was.", "The", "Muscovites", "were", "completely", "unfriendly:", "nobody", "spoke", "English,", "and", "they", "weren't", "allowed", "to", "talk", "to", "me", "anyway.", "I'd", "planned", "to", "get", "a", "fur", "coat", "when", "I", "arrived,", "but", "I", "found", "it", "impossible", "to", "buy", "anything,", "so", "I", "was", "freezing", "my", "ass", "off.", "I", "play", "the", "board", "game", "Go,", "so", "I", "tried", "to", "find", "a", "local", "Go", "association,", "thinking", "I", "could", "make", "a", "friend.", "I", "ended", "up", "playing", "the", "third", "strongest", "player", "in", "the", "Soviet", "Union", "–", "and", "I", "beat", "him.", "But", "he", "spoke", "no", "English.", "Finally,", "I", "hired", "an", "interpreter", "from", "a", "booth", "in", "the", "lobby", "of", "my", "hotel.", "They", "were", "all", "KGB,", "but", "she", "was", "beautiful", "and", "very", "perky,", "when", "everybody", "else", "was", "doom", "and", "gloom.", "She", "took", "me", "to", "Elorg,", "but", "she", "wouldn't", "take", "me", "in", "because", "I", "hadn't", "been", "officially", "invited.", "I", "was", "breaking", "a", "cardinal", "rule", "–", "trying", "to", "do", "business", "on", "a", "tourist", "visa", "–", "but", "I", "told", "her", "I", "hadn't", "come", "all", "this", "way", "for", "nothing.", "It", "was", "like", "standing", "on", "a", "rock", "50ft", "above", "water.", "You", "just", "have", "to", "jump", "and", "trust", "it's", "not", "going", "to", "be" ] ], [ [ "as", "bad", "as", "you", "think.", "The", "director", "of", "Elorg,", "a", "Mr", "Belikov,", "told", "me", "they", "had", "never", "given", "rights", "to", "anybody.", "I", "was", "in", "deep", "kimchi,", "because", "I", "had", "200,000", "game", "cartridges", "at", "$10", "apiece", "being", "manufactured", "in", "Japan,", "and", "I'd", "put", "up", "all", "of", "my", "in-laws'", "property", "up", "as", "collateral.", "We", "reconvened", "the", "following", "day", "and", "they", "had", "a", "lineup", "of", "10", "people", "–", "KGB,", "business", "guys,", "lawyers,", "Alexey", "–", "who", "grilled", "me", "for", "two", "hours.", "I", "didn't", "realise", "at", "first,", "but", "they", "were", "negotiating", "simultaneously", "with", "Kevin", "Maxwell.", "The", "KGB", "even", "sent", "two", "agents", "to", "my", "office", "in", "Tokyo.", "Because", "I'd", "had", "no", "contact", "with", "my", "staff,", "they", "thought:", "\"Oh", "my", "God,", "what's", "happened", "to", "Henk?\"", "But", "I", "was", "very", "open", "with", "the", "Russians", "and", "they", "decided", "to", "give", "me", "console", "rights.", "I", "gave", "them", "the", "best", "contract", "I've", "ever", "seen", "in", "the", "industry", "–", "clear,", "concise,", "no", "bullshit", "–", "partly", "because", "there", "wasn't", "time", "for", "any", "renegotiations.", "Elorg", "used", "it", "as", "the", "template", "for", "all", "their", "other", "deals.", "The", "Maxwells", "were", "furious,", "and", "tried", "to", "lobby", "Gorbachev,", "whose", "autobiography", "they'd", "published.", "Tetris", "made", "Game", "Boy", "and", "Game", "Boy", "made", "Tetris.", "It", "was", "the", "perfect", "platform", "for", "the", "game,", "since", "you", "could", "carry", "it", "around.", "That's", "how", "it", "caught", "on.", "And", "it's", "even", "bigger", "•", "World", "Tetris", "Day", "is", "on", "6", "June,", "the", "game's", "30th", "anniversary." ] ] ]
[ [ "en" ], [ "en" ] ]
[ "mono" ]
[ [ "All", "posts", "are", "copyrighted", "by", "Fulcrum", "Inquiry®", "as", "of", "their", "publication", "date", "The", "authors", "and", "publishers", "are", "not", "intending", "to", "render", "legal,", "accounting,", "tax,", "or", "other", "professional", "advice.", "No", "client", "relationship", "is", "established", "from", "making", "general", "information", "available", "on", "this", "site,", "or", "from", "your", "making", "a", "comment", "or", "transmitting", "an", "email", "message", "to", "us.", "None", "of", "the", "information", "on", "this", "site", "should", "be", "used", "as", "a", "substitute", "for", "consultation", "with", "competent", "advisors", "that", "are", "able", "to", "consider", "the", "application", "of", "any", "general", "information", "to", "your", "specific", "situation.", "While", "we", "have", "attempted", "to", "ensure", "that", "information", "contained", "on", "this", "site", "is", "reliable,", "we", "are", "not", "responsible", "for", "any", "errors", "or", "omissions,", "or", "for", "the", "results", "obtained", "from", "the", "use", "of", "such", "information.", "No", "guarantee", "of", "completeness,", "accuracy,", "timeliness,", "or", "of", "the", "results", "obtained", "from", "the", "use", "of", "this", "information", "is", "provided." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "All", "posts", "are", "copyrighted", "by", "Fulcrum", "Inquiry®", "as", "of", "their", "publication", "date", "The", "authors", "and", "publishers", "are", "not", "intending", "to", "render", "legal,", "accounting,", "tax,", "or", "other", "professional", "advice.", "No", "client", "relationship", "is", "established", "from", "making", "general", "information", "available", "on", "this", "site,", "or", "from", "your", "making", "a", "comment", "or", "transmitting", "an", "email", "message", "to", "us.", "None", "of", "the", "information", "on", "this", "site", "should", "be", "used", "as", "a", "substitute", "for", "consultation", "with", "competent", "advisors", "that", "are", "able", "to", "consider", "the", "application", "of", "any", "general", "information", "to", "your", "specific", "situation.", "While", "we", "have", "attempted", "to", "ensure", "that", "information", "contained", "on", "this", "site", "is", "reliable,", "we", "are", "not", "responsible", "for", "any", "errors", "or", "omissions,", "or", "for", "the", "results", "obtained", "from", "the", "use", "of", "such", "information.", "No", "guarantee", "of", "completeness,", "accuracy,", "timeliness,", "or", "of", "the", "results", "obtained", "from", "the", "use", "of", "this", "information", "is", "provided." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Fedora", "is", "a", "big", "project,", "and", "it’s", "hard", "to", "keep", "up", "with", "everything.", "This", "series", "highlights", "interesting", "happenings", "in", "five", "different", "areas", "every", "week.", "It", "isn’t", "comprehensive", "news", "coverage", "—", "just", "quick", "summaries", "with", "links", "to", "each.", "Here", "are", "the", "five", "things", "for", "Pi", "Day,", "3/14/15:", "Google", "Summer", "of", "Code", "Fedora", "has", "been", "selected", "as", "a", "mentoring", "organization", "for", "the", "2015", "version", "of", "the", "Google", "Summer", "of", "(If", "you’re", "not", "familiar:", "this", "is", "a", "global", "program", "where", "students", "are", "paid", "stipends", "to", "write", "code", "for", "open", "source", "projects", "—", "a", "wonderful", "contribution", "from", "Google", "both", "for", "the", "learning", "experience", "for", "students", "getting", "into", "open", "source,", "and", "to", "the", "projects", "that", "benefit.)", "If", "you’re", "interested", "in", "working", "either", "as", "a", "student", "or", "as", "a", "mentor,", "please", "check", "out", "the", "Fedora", "GSOC", "2015", "page.", "Of", "particular", "note,", "the", "program", "opens", "for", "student", "applications", "on", "Monday,", "March", "16,", "and", "21st", "—", "see", "our", "GSOC", "Guide", "for", "Students", "for", "information", "on", "getting", "started", "and", "other", "important", "information.", "Fedora", "22", "Alpha", "Release", "is", "Here!", "I", "hope", "no", "one", "missed", "it,", "but", "just", "in", "case:", "the", "Fedora", "22", "Alpha", "was", "released", "ealier", "this", "week.", "If", "you’re", "interested", "in", "checking", "out", "what’s", "coming,", "or", "helping", "shake", "out", "bugs,", "give", "it", "a", "try.", "KDE", "&", "Xfce", "in", "the", "Alpha", "The", "release", "notes", "mention", "our", "alternate", "spins", "showcasing", "the", "KDE", "and", "Xfce", "desktop", "environments.", "If", "you’re", "a", "fan", "of", "one", "of", "these,", "or", "interested", "in", "trying", "something", "new,", "these", "F22", "alpha", "releases", "could", "use", "your", "attention", "too.", "You", "can", "get", "both", "from", "the", "Spins", "Prerelease", "page.", "The", "F22", "KDE", "spin", "features", "the", "new", "Plasma", "5", "desktop,", "with", "a", "beautiful", "new", "look,", "better", "HiDPI", "support,", "and", "more.", "Xfce", "updates", "to", "4.12,", "which", "sounds", "less", "dramatic,", "but", "consider", "that.12", "was", "three", "years", "inthe", "making", "—", "there", "are", "many,", "many", "improvements,", "and", "if", "you’re", "a", "Xfce", "user", "this", "is", "definitely", "cause", "for", "excitement.", "Other", "Spins", "Alpha", "News", "In", "addition", "to", "the", "desktop", "environment", "spins,", "we", "have", "a", "number", "of", "spins", "which", "present", "a", "tailored", "selection", "of", "applications", "for", "a", "specific", "purpose.", "Fedora", "contributors", "recently", "blogged", "about", "several", "of", "these", "and", "the", "F22", "alpha:", "Luya", "Tshimbalanga", "discusses", "the", "Fedora", "22", "Design", "Suite,", "for", "graphic", "artists", "and", "content", "creators,", "and", "Amit", "Saha", "shows", "off", "Fedora", "22", "Scientific,", "aimed", "at", "scientific", "computing", "users.", "(The", "former", "is", "based", "on", "GNOME", "and", "the", "latter", "on", "KDE,", "by", "the", "way.)", "Again,", "check", "out", "all", "the", "spins", "on", "the", "Spins", "Prerelease", "page.", "(You’ll", "find", "ARM", "images", "there", "too,", "by", "the", "way!)", "Easier", "Copr", "Access", "Coming", "Soon", "Copr", "is", "a", "software", "build", "service", "designed", "to", "create", "a", "lower-barrier-to-entry", "way", "to", "package", "and", "make", "software", "available", "to", "Fedora", "users.", "Everything", "included", "is", "open", "source", "and", "must", "fit", "the", "same", "legal", "criteria", "as", "software", "in", "the", "main", "distribution,", "but", "there", "are", "no", "requirements", "for", "packaging", "polish.", "The", "wide", "repository", "of", "high-quality", "packages", "is,", "of", "course,", "one", "of", "the", "great", "things", "about", "Fedora,", "but", "Coprs", "makes", "it", "easy", "to", "distribute", "(and", "get)", "Fedora", "packages", "which", "for", "one", "reason", "or", "another", "aren’t", "quite", "ready", "for", "the", "mainstream.", "Up", "until", "now,", "you", "could", "either", "find", "a", "Copr", "repository", "on", "the", "web", "site", "and", "enable", "it", "manually,", "or", "use", "an", "option", "to", "the", "command-line", "tool", "dnf", "(the", "successor", "to", "yum", ").", "In", "the", "future,", "though,", "select", "Copr", "repositories", "may", "also", "show", "up", "in", "the", "GNOME", "Software", "center", "—", "as", "I", "understand", "the", "plan,", "they’ll", "show", "in", "search", "results,", "but", "won’t", "be", "enabled", "by", "default,", "and", "there", "will", "be", "some", "mechanism", "to", "help", "users", "understand", "the", "tradeoffs", "they", "may", "be", "making.", "This", "week,", "FESCo", "(the", "Fedora", "Engineering", "Steering", "Committee,", "our", "community-elected", "technical", "oversight", "body)", "updated", "the", "Third", "Party", "Repository", "Policy", "to", "reflect", "this.", "Note:", "no", "5tFTW", "next", "week", "This", "Five", "Things", "in", "Fedora", "This", "Week", "is", "coming", "at", "pretty", "much", "the", "last", "of", "what", "can", "be", "actually", "considered", "“this", "week”.", "Unless", "there", "is", "a", "lot", "of", "early-week", "drama", "next", "week,", "I’ll", "collect", "items", "with", "the", "goal", "of", "getting", "back", "to", "approximately-Tuesday", "posting", "the", "week", "after", "that." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Fedora", "is", "a", "big", "project,", "and", "it’s", "hard", "to", "keep", "up", "with", "everything.", "This", "series", "highlights", "interesting", "happenings", "in", "five", "different", "areas", "every", "week.", "It", "isn’t", "comprehensive", "news", "coverage", "—", "just", "quick", "summaries", "with", "links", "to", "each.", "Here", "are", "the", "five", "things", "for", "Pi", "Day,", "3/14/15:", "Google", "Summer", "of", "Code", "Fedora", "has", "been", "selected", "as", "a", "mentoring", "organization", "for", "the", "2015", "version", "of", "the", "Google", "Summer", "of", "(If", "you’re", "not", "familiar:", "this", "is", "a", "global", "program", "where", "students", "are", "paid", "stipends", "to", "write", "code", "for", "open", "source", "projects", "—", "a", "wonderful", "contribution", "from", "Google", "both", "for", "the", "learning", "experience", "for", "students", "getting", "into", "open", "source,", "and", "to", "the", "projects", "that", "benefit.)", "If", "you’re", "interested", "in", "working", "either", "as", "a", "student", "or", "as", "a", "mentor,", "please", "check", "out", "the", "Fedora", "GSOC", "2015", "page.", "Of", "particular", "note,", "the", "program", "opens", "for", "student", "applications", "on", "Monday,", "March", "16,", "and", "21st", "—", "see", "our", "GSOC", "Guide", "for", "Students", "for", "information", "on", "getting", "started", "and", "other", "important", "information.", "Fedora", "22", "Alpha", "Release", "is", "Here!", "I", "hope", "no", "one", "missed", "it,", "but", "just", "in", "case:", "the", "Fedora", "22", "Alpha", "was", "released", "ealier", "this", "week.", "If", "you’re", "interested", "in", "checking", "out", "what’s", "coming,", "or", "helping", "shake", "out", "bugs,", "give", "it", "a", "try.", "KDE", "&", "Xfce", "in", "the", "Alpha", "The", "release", "notes", "mention", "our", "alternate", "spins", "showcasing", "the", "KDE", "and", "Xfce", "desktop", "environments.", "If", "you’re", "a", "fan", "of", "one", "of", "these,", "or", "interested", "in", "trying", "something", "new,", "these", "F22", "alpha", "releases", "could", "use", "your", "attention", "too.", "You", "can", "get", "both", "from", "the", "Spins", "Prerelease", "page.", "The", "F22", "KDE", "spin", "features", "the", "new", "Plasma", "5", "desktop,", "with", "a", "beautiful", "new", "look,", "better", "HiDPI", "support,", "and", "more.", "Xfce", "updates", "to", "4.12,", "which", "sounds", "less", "dramatic,", "but", "consider", "that.12", "was", "three", "years", "inthe", "making", "—", "there", "are", "many,", "many", "improvements,", "and", "if", "you’re", "a", "Xfce", "user", "this", "is", "definitely", "cause", "for", "excitement.", "Other", "Spins", "Alpha", "News", "In", "addition", "to", "the", "desktop", "environment", "spins,", "we", "have", "a", "number", "of", "spins", "which", "present", "a", "tailored", "selection", "of", "applications", "for", "a", "specific", "purpose.", "Fedora", "contributors", "recently", "blogged", "about", "several", "of", "these", "and", "the", "F22", "alpha:", "Luya", "Tshimbalanga", "discusses", "the", "Fedora", "22", "Design", "Suite,", "for", "graphic", "artists", "and", "content", "creators,", "and", "Amit", "Saha", "shows", "off", "Fedora", "22", "Scientific,", "aimed", "at", "scientific", "computing", "users.", "(The", "former", "is", "based", "on", "GNOME", "and", "the", "latter", "on", "KDE,", "by", "the", "way.)", "Again,", "check", "out", "all", "the", "spins", "on", "the", "Spins", "Prerelease", "page.", "(You’ll", "find", "ARM", "images", "there", "too,", "by", "the", "way!)", "Easier", "Copr", "Access", "Coming", "Soon", "Copr", "is", "a", "software", "build", "service", "designed", "to", "create", "a", "lower-barrier-to-entry", "way", "to", "package", "and", "make", "software", "available", "to", "Fedora", "users.", "Everything", "included", "is", "open", "source", "and", "must", "fit", "the", "same", "legal", "criteria", "as", "software", "in", "the", "main", "distribution,", "but", "there", "are", "no", "requirements", "for", "packaging", "polish.", "The", "wide", "repository", "of", "high-quality", "packages", "is,", "of", "course,", "one", "of", "the", "great", "things", "about", "Fedora,", "but", "Coprs", "makes", "it", "easy", "to", "distribute", "(and", "get)", "Fedora", "packages", "which", "for", "one", "reason", "or", "another", "aren’t", "quite", "ready", "for", "the", "mainstream.", "Up", "until", "now,", "you", "could", "either", "find", "a", "Copr", "repository", "on", "the", "web", "site", "and", "enable", "it", "manually,", "or", "use", "an", "option", "to", "the", "command-line", "tool", "dnf", "(the", "successor", "to", "yum", ").", "In", "the", "future,", "though,", "select", "Copr", "repositories", "may", "also", "show", "up", "in", "the", "GNOME", "Software", "center", "—", "as", "I", "understand", "the", "plan,", "they’ll", "show", "in", "search", "results,", "but", "won’t", "be", "enabled", "by", "default,", "and", "there", "will", "be", "some", "mechanism", "to", "help", "users", "understand", "the", "tradeoffs", "they", "may", "be", "making.", "This", "week,", "FESCo", "(the", "Fedora", "Engineering", "Steering", "Committee,", "our", "community-elected", "technical", "oversight", "body)", "updated", "the", "Third", "Party", "Repository", "Policy", "to", "reflect", "this.", "Note:", "no", "5tFTW", "next", "week", "This", "Five", "Things", "in", "Fedora", "This", "Week", "is", "coming", "at", "pretty", "much", "the", "last", "of", "what", "can", "be", "actually", "considered", "“this", "week”.", "Unless", "there", "is", "a", "lot", "of", "early-week", "drama", "next", "week,", "I’ll", "collect", "items", "with", "the", "goal", "of", "getting", "back", "to", "approximately-Tuesday", "posting", "the", "week", "after", "that." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "AKRON,", "Ohio", "--", "A", "federal", "appeals", "court", "has", "forced", "Akron", "Judge", "Adams", "to", "recuse", "himself", "from", "a", "criminal", "case", "after", "the", "defendant", "claimed", "that", "he", "often", "used", "heroin", "with", "the", "judge's", "brother", "and", "nephew.", "Eric", "Ramey", "was", "in", "front", "of", "Adams", "on", "charges", "of", "creating", "and", "passing", "counterfeit", "money", "at", "Holmes", "County", "businesses.", "Ramey", "wrote", "in", "a", "petition", "to", "the", "6th", "U.S.", "Circuit", "Court", "of", "Appeals", "in", "November", "that", "he", "used", "heroin", "and", "opiates", "with", "Jerry", "Adams", "Sr.", "and", "Jerry", "Adams", "Jr.", "every", "day", "for", "14", "months.", "The", "judge", "said", "that", "he", "was", "estranged", "from", "this", "part", "of", "his", "family", "and", "he", "refused", "to", "step", "down", "from", "the", "case", "after", "Ramey", "and", "his", "attorney", "brought", "the", "information", "to", "his", "attention.", "In", "a", "two-page", "order", "issued", "Tuesday,", "a", "three-judge", "panel", "from", "the", "Cincinnati-based", "appeals", "court", "wrote", "that", "it", "felt", "that", "removal", "\"is", "warranted", "in", "this", "case.\"", "The", "panel", "did", "not", "provide", "any", "further", "explanation", "for", "its", "decision.", "Ramey,", "30,", "of", "Orrville,", "had", "asked", "the", "court", "to", "seal", "filings", "in", "the", "appeals", "court", "case,", "which", "would", "have", "kept", "the", "matter", "secret.", "The", "court", "rejected", "the", "request.", "(You", "can", "read", "the", "filings", "at", "the", "bottom", "of", "this", "story.)", "In", "his", "petition,", "Ramey", "wrote", "that", "his", "girlfriend", "and", "Adams'", "nephew", "were", "involved", "in", "a", "theft", "case", "and", "that", "Ramey", "might", "be", "called", "as", "a", "witness.", "Ramey", "also", "wrote", "that", "he", "was", "friends", "with", "Jerry", "Adams", "Jr.,", "\"and", "on", "one", "occasion", "actually", "encountered", "Judge", "Adams", "at", "a", "nursing", "home.\"", "\"Estranged", "or", "otherwise,", "knowledge", "that", "a", "defendant", "has", "used", "drugs", "on", "a", "daily", "basis", "with", "a", "close", "family", "member", "for", "an", "extended", "period", "of", "time", "in", "[and]", "of", "itself", "would", "lead", "a", "reasonable", "person", "to", "believe", "that", "the", "Judge's", "impartiality'might", "reasonably", "be", "questioned,'\"", "Ramey's", "petition", "says.", "Adams", "called", "Ramey's", "statements", "into", "question", "in", "a", "November", "letter", "to", "the", "appeals", "court.", "The", "Akron", "judge", "also", "wrote", "that", "Ramey", "did", "not", "show", "that", "he", "would", "treat", "Ramey", "different", "than", "other", "defendants.", "\"As", "Mr.", "Ramey", "has", "shown", "nothing", "more", "than", "the", "fact", "he", "alleged", "had", "an", "illicit", "relationship", "that", "involved", "conduct", "wholly", "unrelated", "to", "his", "indictment,", "he", "falls", "well", "short", "of", "demonstrating", "any", "appearance", "of", "antagonism,", "let", "alone", "a", "deep", "seated", "antagonism,\"", "Adams", "wrote.", "The", "case", "was", "re-assigned", "to", "U.S.", "District", "Judge", "Sara", "Lioi,", "another", "Akron", "federal", "judge.", "Ramey", "is", "scheduled", "to", "plead", "guilty", "on", "Carlos", "Ramey's", "in", "an", "email", "statement", "that", "\"Mr.", "Ramey", "is", "doing", "well", "in", "his", "recovery", "and", "I", "hope", "he", "continues", "on", "his", "current", "positive", "path.\"", "Adams", "said", "in", "an", "email", "sent", "by", "his", "law", "clerk", "that,", "\"I", "have", "no", "independent", "knowledge", "of", "a", "relationship", "between", "the", "defendant", "and", "the", "persons", "referenced", "in", "the", "petition", "or", "the", "activities", "alleged", "in", "the", "petition,", "but", "I", "have", "followed", "the", "direction", "of", "the", "appellate", "court", "and", "recused", "from", "the", "matter.\"", "He", "continued,", "\"As", "the", "Sixth", "Circuit", "did", "not", "detail", "any", "reason", "for", "my", "need", "to", "recuse,", "I", "cannot", "comment", "further", "on", "the", "issue.\"", "Adams'", "time", "on", "the", "bench", "has", "proved", "controversial.", "Appointed", "by", "President", "George", "W.", "Bush", "in", "2003,", "the", "6th", "Circuit", "has", "removed", "the", "judge", "from", "at", "least", "two", "other", "cases", "in", "recent", "years.", "One", "involved", "a", "lawsuit", "filed", "by", "a", "group", "of", "firefighters", "against", "the", "city", "of", "Akron", "alleging", "discrimination", "in", "the", "city's", "promotion", "process.", "That", "case,", "along", "with", "another", "case", "he", "presided", "over", "involving", "the", "city,", "caused", "then-Akron", "Mayor", "Don", "Plusquellic", "to", "send", "a", "public", "letter", "to", "the", "judge", "to", "ask", "him", "to", "recuse", "himself", "from", "all", "cases", "involving", "the", "city.", "Adams", "also", "publicly", "federal", "public", "defender", "Migdal", "in", "2011", "issuing", "subpoenas", "in", "a", "criminal", "case.", "The", "appeals", "court", "later", "admonished", "Adams", "for", "punishing", "Migdal,", "writing", "that", "he", "abused", "his", "discretion", "and", "that", "he", "\"relied", "on", "clearly", "erroneous", "factual", "findings.\"", "The", "judge", "is", "also", "known", "for", "taking", "steps", "to", "admonish", "attorneys", "who", "commit", "wrongdoing,", "something", "that", "other", "judges", "rarely", "do.", "Adams", "had", "attorney", "Brent", "English", "arrested", "in", "October", "outside", "the", "Cleveland", "Justice", "Center.", "He", "brought", "English", "to", "court", "to", "have", "him", "explain", "why", "he", "missed", "a", "hearing", "in", "a", "six-year-old", "foreclosure", "case.", "On", "Friday,", "he", "publicly", "admonished", "longtime", "Cleveland", "criminal", "Weintraub", "the", "attorney", "was", "overheard", "cursing", "at", "a", "prosecutor.", "If", "you'd", "like", "to", "discuss", "or", "comment", "on", "this", "post,", "please", "visit", "the", "cleveland.com", "crime", "and", "courts", "comments", "section." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "es", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "nl", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "AKRON,", "Ohio", "--", "A", "federal", "appeals", "court", "has", "forced", "Akron", "Judge", "Adams", "to", "recuse", "himself", "from", "a", "criminal", "case", "after", "the", "defendant", "claimed", "that", "he", "often", "used", "heroin", "with", "the", "judge's", "brother", "and", "nephew.", "Eric", "Ramey", "was", "in", "front", "of", "Adams", "on", "charges", "of", "creating", "and", "passing", "counterfeit", "money", "at", "Holmes", "County", "businesses.", "Ramey", "wrote", "in", "a", "petition", "to", "the", "6th", "U.S.", "Circuit", "Court", "of", "Appeals", "in", "November", "that", "he", "used", "heroin", "and", "opiates", "with", "Jerry", "Adams", "Sr.", "and", "Jerry", "Adams", "Jr.", "every", "day", "for", "14", "months.", "The", "judge", "said", "that", "he", "was", "estranged", "from", "this", "part", "of", "his", "family", "and", "he", "refused", "to", "step", "down", "from", "the", "case", "after", "Ramey", "and", "his", "attorney", "brought", "the", "information", "to", "his", "attention.", "In", "a", "two-page", "order", "issued", "Tuesday,", "a", "three-judge", "panel", "from", "the", "Cincinnati-based", "appeals", "court", "wrote", "that", "it", "felt", "that", "removal", "\"is", "warranted", "in", "this", "case.\"", "The", "panel", "did", "not", "provide", "any", "further", "explanation", "for", "its", "decision.", "Ramey,", "30,", "of", "Orrville,", "had", "asked", "the", "court", "to", "seal", "filings", "in", "the", "appeals", "court", "case,", "which", "would", "have", "kept", "the", "matter", "secret.", "The", "court", "rejected", "the", "request.", "(You", "can", "read", "the", "filings", "at", "the", "bottom", "of", "this", "story.)", "In", "his", "petition,", "Ramey", "wrote", "that", "his", "girlfriend", "and", "Adams'", "nephew", "were", "involved", "in", "a", "theft", "case", "and", "that", "Ramey", "might", "be", "called", "as", "a", "witness.", "Ramey", "also", "wrote", "that", "he", "was", "friends", "with", "Jerry", "Adams", "Jr.,", "\"and", "on", "one", "occasion", "actually", "encountered", "Judge", "Adams", "at", "a", "nursing", "home.\"", "\"Estranged", "or", "otherwise,", "knowledge", "that", "a", "defendant", "has", "used", "drugs", "on", "a", "daily", "basis", "with", "a", "close", "family", "member", "for", "an", "extended", "period", "of", "time", "in", "[and]", "of", "itself", "would", "lead", "a", "reasonable", "person", "to", "believe", "that", "the", "Judge's", "impartiality'might", "reasonably", "be", "questioned,'\"", "Ramey's", "petition", "says.", "Adams", "called", "Ramey's", "statements", "into", "question", "in", "a", "November", "letter", "to", "the", "appeals", "court.", "The", "Akron", "judge", "also", "wrote", "that", "Ramey", "did", "not", "show", "that", "he", "would", "treat", "Ramey", "different", "than", "other", "defendants.", "\"As", "Mr.", "Ramey", "has", "shown", "nothing", "more", "than", "the", "fact", "he", "alleged", "had", "an", "illicit", "relationship", "that", "involved", "conduct", "wholly", "unrelated", "to", "his", "indictment,", "he", "falls", "well", "short", "of", "demonstrating", "any", "appearance", "of", "antagonism,", "let", "alone", "a", "deep", "seated", "antagonism,\"", "Adams", "wrote.", "The", "case", "was", "re-assigned", "to", "U.S.", "District", "Judge", "Sara", "Lioi,", "another", "Akron", "federal", "judge.", "Ramey", "is", "scheduled", "to", "plead", "guilty", "on" ], [ "Ramey's", "in", "an", "email", "statement", "that", "\"Mr.", "Ramey", "is", "doing", "well", "in", "his", "recovery", "and", "I", "hope", "he", "continues", "on", "his", "current", "positive", "path.\"", "Adams", "said", "in", "an", "email", "sent", "by", "his", "law", "clerk", "that,", "\"I", "have", "no", "independent", "knowledge", "of", "a", "relationship", "between", "the", "defendant", "and", "the", "persons", "referenced", "in", "the", "petition", "or", "the", "activities", "alleged", "in", "the", "petition,", "but", "I", "have", "followed", "the", "direction", "of", "the", "appellate", "court", "and", "recused", "from", "the", "matter.\"", "He", "continued,", "\"As", "the", "Sixth", "Circuit", "did", "not", "detail", "any", "reason", "for", "my", "need", "to", "recuse,", "I", "cannot", "comment", "further", "on", "the", "issue.\"", "Adams'", "time", "on", "the", "bench", "has", "proved", "controversial.", "Appointed", "by", "President", "George", "W.", "Bush", "in", "2003,", "the", "6th", "Circuit", "has", "removed", "the", "judge", "from", "at", "least", "two", "other", "cases", "in", "recent", "years.", "One", "involved", "a", "lawsuit", "filed", "by", "a", "group", "of", "firefighters", "against", "the", "city", "of", "Akron", "alleging", "discrimination", "in", "the", "city's", "promotion", "process.", "That", "case,", "along", "with", "another", "case", "he", "presided", "over", "involving", "the", "city,", "caused", "then-Akron", "Mayor", "Don", "Plusquellic", "to", "send", "a", "public", "letter", "to", "the", "judge", "to", "ask", "him", "to", "recuse", "himself", "from", "all", "cases", "involving", "the", "city.", "Adams", "also", "publicly", "federal", "public", "defender", "Migdal", "in", "2011", "issuing", "subpoenas", "in", "a", "criminal", "case.", "The", "appeals", "court", "later", "admonished", "Adams", "for", "punishing", "Migdal,", "writing", "that", "he", "abused", "his", "discretion", "and", "that", "he", "\"relied", "on", "clearly", "erroneous", "factual", "findings.\"", "The", "judge", "is", "also", "known", "for", "taking", "steps", "to", "admonish", "attorneys", "who", "commit", "wrongdoing,", "something", "that", "other", "judges", "rarely", "do.", "Adams", "had", "attorney", "Brent", "English", "arrested", "in", "October", "outside", "the", "Cleveland", "Justice", "Center.", "He", "brought", "English", "to", "court", "to", "have", "him", "explain", "why", "he", "missed", "a", "hearing", "in", "a", "six-year-old", "foreclosure", "case.", "On", "Friday,", "he", "publicly", "admonished", "longtime", "Cleveland", "criminal" ], [ "the", "attorney", "was", "overheard", "cursing", "at", "a", "prosecutor.", "If", "you'd", "like", "to", "discuss", "or", "comment", "on", "this", "post,", "please", "visit", "the", "cleveland.com", "crime", "and", "courts", "comments", "section." ] ] ]
[ [ "en", "en", "en" ] ]
[ "mono" ]
[ [ "Im", "very", "happy", "with", "my", "present", ":).", "I", "received", "The", "Body", "Shop", "lip", "balm", "in", "TBS", "in", "strawberry,", "Lucas", "paw", "paw", "ointment", "tube", "and", "a", "cute", "red", "love", "slap", "bracelet.", "S.S.", "gave", "me", "quality", "branded", "products", "that", "I", "will", "use", "so", "Im", "very", "pleased", "with", "my", "gift", ":).", "Thank", "you", "secret", "santa!" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Im", "very", "happy", "with", "my", "present", ":).", "I", "received", "The", "Body", "Shop", "lip", "balm", "in" ], [ "in", "strawberry,", "Lucas", "paw", "paw", "ointment", "tube", "and", "a", "cute", "red", "love", "slap", "bracelet.", "S.S.", "gave", "me", "quality", "branded", "products", "that", "I", "will", "use", "so", "Im", "very", "pleased", "with", "my", "gift", ":).", "Thank", "you", "secret", "santa!" ] ] ]
[ [ "en", "en" ] ]
[ "mono" ]
[ [ "Our", "Politics", "newsletter", "is", "now", "daily.", "Join", "thousands", "of", "others", "and", "get", "the", "latest", "Scottish", "politics", "news", "sent", "straight", "to", "your", "inbox.", "Subscribe", "Thank", "you", "for", "subscribing", "We", "have", "more", "newsletters", "Show", "me", "See", "our", "privacy", "notice", "Invalid", "Email", "NICOLA", "STURGEON'S", "Dad", "has", "failed", "in", "his", "bid", "to", "join", "his", "wife", "and", "daughter", "in", "elected", "office", "after", "losing", "a", "council", "by-election.", "Robin", "Sturgeon,", "an", "engineer,", "has", "been", "a", "prominent", "member", "of", "the", "SNP", "and", "local", "activist", "for", "a", "number", "of", "years.", "He", "was", "standing", "in", "the", "Irvine", "West", "by-election", "caused", "by", "the", "election", "of", "SNP", "councillor", "Ruth", "Maguire", "as", "an", "MSP", "in", "May.", "(Image:", "Steve", "McKendrick)", "He", "was", "defeated", "by", "Louise", "McPhater", "of", "Labour.", "The", "First", "Minister’s", "mum", "Joan", "Sturgeon", "is", "also", "a", "councillor", "for", "a", "neighbouring", "word", "in", "Irvine,", "and", "as", "the", "provost", "in", "North", "Ayrshire.", "Ironically,", "Sturgeon's", "loss", "could", "cost", "his", "wife", "that", "position,", "as", "the", "leadership", "of", "the", "council", "is", "in", "doubt,", "with", "Labour", "leapfrogging", "the", "SNP", "as", "the", "largest", "party.", "Councillor", "McPhater", "was", "elected", "after", "the", "other", "5", "candidates", "were", "knocked", "out", "under", "the", "STV", "system.", "(Image:", "Steve", "McKendrick)", "Sturgeon", "had", "won", "the", "most", "amount", "of", "first", "preference", "votes,", "with", "1,164", "to", "1,029,", "but", "he", "didn’t", "receive", "enough", "secondary", "votes", "from", "supporters", "of", "other", "parties", "to", "get", "over", "the", "line.", "This", "morning,", "the", "First", "Minister", "that", "she", "was'very", "proud'", "of", "her", "dad's", "efforts", "in", "fighting", "what", "MSP", "Maguire", "called", "a", "positive", "campaign.", "Among", "Labour", "activists,", "there", "was", "instant", "argument", "about", "whether", "Jeremy", "Corbyn's", "leadership", "had", "contributed", "to", "the", "gain,", "or", "whether", "McPhater's", "win", "had", "come", "in", "spite", "of", "it." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Our", "Politics", "newsletter", "is", "now", "daily.", "Join", "thousands", "of", "others", "and", "get", "the", "latest", "Scottish", "politics", "news", "sent", "straight", "to", "your", "inbox.", "Subscribe", "Thank", "you", "for", "subscribing", "We", "have", "more", "newsletters", "Show", "me", "See", "our", "privacy", "notice", "Invalid", "Email", "NICOLA", "STURGEON'S", "Dad", "has", "failed", "in", "his", "bid", "to", "join", "his", "wife", "and", "daughter", "in", "elected", "office", "after", "losing", "a", "council", "by-election.", "Robin", "Sturgeon,", "an", "engineer,", "has", "been", "a", "prominent", "member", "of", "the", "SNP", "and", "local", "activist", "for", "a", "number", "of", "years.", "He", "was", "standing", "in", "the", "Irvine", "West", "by-election", "caused", "by", "the", "election", "of", "SNP", "councillor", "Ruth", "Maguire", "as", "an", "MSP", "in", "May.", "(Image:", "Steve", "McKendrick)", "He", "was", "defeated", "by", "Louise", "McPhater", "of", "Labour.", "The", "First", "Minister’s", "mum", "Joan", "Sturgeon", "is", "also", "a", "councillor", "for", "a", "neighbouring", "word", "in", "Irvine,", "and", "as", "the", "provost", "in", "North", "Ayrshire.", "Ironically,", "Sturgeon's", "loss", "could", "cost", "his", "wife", "that", "position,", "as", "the", "leadership", "of", "the", "council", "is", "in", "doubt,", "with", "Labour", "leapfrogging", "the", "SNP", "as", "the", "largest", "party.", "Councillor", "McPhater", "was", "elected", "after", "the", "other", "5", "candidates", "were", "knocked", "out", "under", "the", "STV", "system.", "(Image:", "Steve", "McKendrick)", "Sturgeon", "had", "won", "the", "most", "amount", "of", "first", "preference", "votes,", "with", "1,164", "to", "1,029,", "but", "he", "didn’t", "receive", "enough", "secondary", "votes", "from", "supporters", "of", "other", "parties", "to", "get", "over", "the", "line.", "This", "morning,", "the", "First", "Minister", "that", "she", "was'very", "proud'", "of", "her", "dad's", "efforts", "in", "fighting", "what", "MSP", "Maguire", "called", "a", "positive", "campaign.", "Among", "Labour", "activists,", "there", "was", "instant", "argument", "about", "whether", "Jeremy", "Corbyn's", "leadership", "had", "contributed", "to", "the", "gain,", "or", "whether", "McPhater's", "win", "had", "come", "in", "spite", "of", "it." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Planning", "to", "remodel", "your", "home?", "Sounds", "exciting", "isn’t", "it", "However,", "along", "with", "it", "comes", "the", "stress", "of", "doing", "all", "the", "things", "and", "managing", "in", "such", "a", "manner", "that", "you", "get", "the", "desired", "results", "without", "any", "fuss.", "We", "understand", "the", "stress", "one", "feels", "when", "it", "comes", "to", "home", "renovation/remodeling.", "Wondering", "how", "to", "begin", "and", "how", "will", "the", "entire", "process", "work", "and", "if", "its", "a", "nice", "idea", "to", "do", "so?", "Well,", "firstly", "ofcourse", "its", "a", "nice", "idea.", "Secondly,", "following", "certain", "tips", "and", "understanding", "how", "to", "handle", "things", "before", "you", "actually", "do", "so", "will", "definitely", "prove", "helpful", "thereby", "reducing", "the", "stress.", "Here,", "we", "have", "come", "up", "with", "certain", "helpful", "tips", "that", "will", "help", "you", "in", "proper", "remodeling", "of", "your", "house", "without", "any", "kind", "of", "stress.", "Read", "them", "out!", "1.", "Visualise", "your", "Design", "The", "very", "first", "step", "is", "the", "visualisation", "of", "the", "design", "of", "your", "home", "that", "by", "envisioning", "your", "home.", "Think", "about", "the", "colors", "and", "textures", "you", "would", "want", "to", "incorporate", "and", "which", "all", "are", "he", "areas", "of", "your", "home", "that", "you", "would", "want", "to", "renovate", "and", "why.", "You", "can", "go", "in", "for", "magazines", "to", "get", "ideas", "for", "the", "home", "remodeling.", "Incase,", "you", "are", "interested", "in", "DIY", "stuff,", "you", "can", "check", "out", "the", "online", "design", "boards,", "other", "social", "networking", "websites", "and", "blogs", "to", "get", "the", "ideas.", "2.", "Understand", "the", "Utility", "Factor", "Besides", "aesthetics,", "for", "home", "remodeling", "one", "needs", "to", "think", "about", "the", "utility", "and", "smart", "functionality.", "Remodeled", "spaces", "must", "function", "properly", "for", "the", "home’s", "residents.", "While", "planning", "to", "remodel", "your", "house", "think", "of", "every", "aspect", "of", "the", "result", "you", "want", "to", "get", "after", "putting", "in", "your", "efforts,", "time", "and", "money.", "Fixtures,", "safety", "system", "and", "other", "things", "are", "some", "of", "the", "utility", "factors", "that", "if", "needed", "to", "be", "fixed", "get", "it", "done.", "3.", "Set", "your", "Budget", "It", "is", "always", "recommended", "to", "do", "the", "budgeting,", "check", "for", "additional", "costs", "and", "other", "things", "before", "hand.", "Also,", "keep", "the", "extra", "cash", "for", "the", "hidden", "charges", "which", "you", "might", "come", "to", "know", "about", "while", "final", "remodeling", "is", "being", "done.", "Planning", "ahead", "is", "a", "good", "way", "to", "deal", "with", "the", "money", "issues", "as", "it", "helps", "you", "know", "exactly", "what", "to", "expect", "and", "in", "terms", "of", "money", "and", "time.", "4.", "Tackle", "One", "Job", "at", "a", "Time", "It", "is", "advisable", "to", "spend", "time", "wisely", "while", "remodeling.", "Take", "one", "job", "at", "a", "time", "instead", "of", "trying", "to", "do", "multi-tasking", "which", "will", "lead", "you", "nowhere.", "Handling", "one", "task", "at", "a", "time,", "completing", "it", "and", "then", "moving", "further", "to", "the", "other", "one", "is", "right", "way", "to", "get", "things", "done", "the", "right", "way.", "5.", "Plan", "your", "Time", "Consider", "thinking", "as", "to", "how", "much", "time", "is", "expected", "for", "the", "remodeling", "of", "your", "house.", "If", "you", "have", "plan", "of", "time", "that", "you", "need", "to", "invest", "you", "will", "try", "getting", "the", "work", "done", "in", "the", "stipulated", "time.", "Whatever", "your", "plans", "are", "to", "remodel", "your", "home,", "it", "is", "suggested", "to", "plan", "wisely", "and", "understanding", "everything", "beforehand", "like", "cost,", "expected", "time", "and", "other", "factors", "that", "will", "help", "you", "get", "things", "done", "the", "right", "way", "and", "for", "worry-free", "home", "remodeling.", "Have", "any", "suggestions", "for", "those", "interested", "in", "remodeling", "their", "homes?", "Leave", "your", "comments", "below", "to", "share", "the", "same." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Planning", "to", "remodel", "your", "home?", "Sounds", "exciting", "isn’t", "it", "However,", "along", "with", "it", "comes", "the", "stress", "of", "doing", "all", "the", "things", "and", "managing", "in", "such", "a", "manner", "that", "you", "get", "the", "desired", "results", "without", "any", "fuss.", "We", "understand", "the", "stress", "one", "feels", "when", "it", "comes", "to", "home", "renovation/remodeling.", "Wondering", "how", "to", "begin", "and", "how", "will", "the", "entire", "process", "work", "and", "if", "its", "a", "nice", "idea", "to", "do", "so?", "Well,", "firstly", "ofcourse", "its", "a", "nice", "idea.", "Secondly,", "following", "certain", "tips", "and", "understanding", "how", "to", "handle", "things", "before", "you", "actually", "do", "so", "will", "definitely", "prove", "helpful", "thereby", "reducing", "the", "stress.", "Here,", "we", "have", "come", "up", "with", "certain", "helpful", "tips", "that", "will", "help", "you", "in", "proper", "remodeling", "of", "your", "house", "without", "any", "kind", "of", "stress.", "Read", "them", "out!", "1.", "Visualise", "your", "Design", "The", "very", "first", "step", "is", "the", "visualisation", "of", "the", "design", "of", "your", "home", "that", "by", "envisioning", "your", "home.", "Think", "about", "the", "colors", "and", "textures", "you", "would", "want", "to", "incorporate", "and", "which", "all", "are", "he", "areas", "of", "your", "home", "that", "you", "would", "want", "to", "renovate", "and", "why.", "You", "can", "go", "in", "for", "magazines", "to", "get", "ideas", "for", "the", "home", "remodeling.", "Incase,", "you", "are", "interested", "in", "DIY", "stuff,", "you", "can", "check", "out", "the", "online", "design", "boards,", "other", "social", "networking", "websites", "and", "blogs", "to", "get", "the", "ideas.", "2.", "Understand", "the", "Utility", "Factor", "Besides", "aesthetics,", "for", "home", "remodeling", "one", "needs", "to", "think", "about", "the", "utility", "and", "smart", "functionality.", "Remodeled", "spaces", "must", "function", "properly", "for", "the", "home’s", "residents.", "While", "planning", "to", "remodel", "your", "house", "think", "of", "every", "aspect", "of", "the", "result", "you", "want", "to", "get", "after", "putting", "in", "your", "efforts,", "time", "and", "money.", "Fixtures,", "safety", "system", "and", "other", "things", "are", "some", "of", "the", "utility", "factors", "that", "if", "needed", "to", "be", "fixed", "get", "it", "done.", "3.", "Set", "your", "Budget", "It", "is", "always", "recommended", "to", "do", "the", "budgeting,", "check", "for", "additional", "costs", "and", "other", "things", "before", "hand.", "Also,", "keep", "the", "extra", "cash", "for", "the", "hidden", "charges", "which", "you", "might", "come", "to", "know", "about", "while", "final", "remodeling", "is", "being", "done.", "Planning", "ahead", "is", "a", "good", "way", "to", "deal", "with", "the", "money", "issues", "as", "it", "helps", "you", "know", "exactly", "what", "to", "expect", "and", "in", "terms", "of", "money", "and", "time.", "4.", "Tackle", "One", "Job", "at", "a", "Time", "It", "is", "advisable", "to", "spend", "time", "wisely", "while", "remodeling.", "Take", "one", "job", "at", "a", "time", "instead", "of", "trying", "to", "do", "multi-tasking", "which", "will", "lead", "you", "nowhere.", "Handling", "one", "task", "at", "a", "time,", "completing", "it", "and", "then", "moving", "further", "to", "the", "other", "one", "is", "right", "way", "to", "get", "things", "done", "the", "right", "way.", "5.", "Plan", "your", "Time", "Consider", "thinking", "as", "to", "how", "much", "time", "is", "expected", "for", "the", "remodeling", "of", "your", "house.", "If", "you", "have", "plan", "of", "time", "that", "you", "need", "to", "invest", "you", "will", "try", "getting", "the", "work", "done", "in", "the", "stipulated", "time.", "Whatever", "your", "plans", "are", "to", "remodel", "your", "home,", "it", "is", "suggested", "to", "plan", "wisely", "and", "understanding", "everything", "beforehand", "like", "cost,", "expected", "time", "and", "other", "factors", "that", "will", "help", "you", "get", "things", "done", "the", "right", "way", "and", "for", "worry-free", "home", "remodeling.", "Have", "any", "suggestions", "for", "those", "interested", "in", "remodeling", "their", "homes?", "Leave", "your", "comments", "below", "to", "share", "the", "same." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Participants", "will", "gain", "insight", "into", "global", "opportunities", "of", "the", "blockchain,", "revealing", "advanced", "technological", "potential", "for", "business", "and", "government", "leaders,", "industry", "practitioners", "and", "startups.", "One", "of", "the", "key", "speakers", "at", "the", "summit", "will", "be", "the", "CEO", "of", "Hacken,", "Dmytro", "Budorin.", "On", "May", "2-3,", "2018,", "The", "Future", "Blockchain", "Summit", "will", "take", "place", "in", "Dubai,", "the", "UAE.", "Aisha", "Bint", "Butti", "Bin", "Bishr,", "Director", "General", "Smart", "Dubai", "Office,", "where", "the", "summit", "will", "be", "hosted,", "described", "the", "event", "as", "“the", "world’s", "first", "inspirational", "festival", "of", "global", "blockchain", "adoption", "across", "all", "industries”.", "In", "less", "than", "5", "months", "Hacken", "turned", "from", "an", "ICO", "startup", "into", "a", "profitable", "and", "mature", "cybersecurity", "company.", "Today,", "it", "provides", "a", "wide", "range", "of", "services", "to", "top", "market", "players", "such", "as", "Nucleus", "Vision,", "Qbao,", "Jibrel", "Network", "and", "others.", "The", "global", "aim", "of", "the", "company", "is", "to", "unite", "cybersecurity", "experts", "from", "different", "parts", "of", "the", "world", "to", "improve", "existing", "security", "standards.", "As", "part", "of", "this", "global", "effort,", "the", "Hacken", "team", "focuses", "heavily", "on", "securing", "and", "educating", "participants", "of", "Middle", "East", "markets.", "A", "flourishing", "business", "landscape,", "uninhibited", "by", "many", "government", "restrictions", "makes", "Dubai", "a", "focal", "point", "for", "leading", "innovations.", "Thus,", "there", "is", "no", "surprise", "that", "the", "city", "wants", "to", "implement", "blockchain", "technology", "in", "all", "spheres", "of", "human", "life.", "Considering", "the", "global", "cybersecurity", "threat,", "Hacken", "plans", "to", "open", "its", "headquarters", "in", "Dubai,", "in", "order", "to", "protect", "the", "burgeoning", "cyber", "landscape.", "hat", "hacker,", "Yasser", "Hasan", "Ali,", "Hacken’s", "representative", "in", "Dubai:", "After", "the", "implementation", "of", "the", "blockchain", "technology", "in", "all", "spheres", "of", "Dubai's", "life,", "we", "will", "need", "the", "assistance", "of", "such", "cybersecurity", "professionals", "as", "Hacken", "to", "ensure", "that", "the", "initiative", "is", "not", "used", "for", "malevolent", "benefit.", "At", "The", "Future", "Blockchain", "Summit", "organized", "by", "Smart", "Dubai,", "Dmytro", "Budorin", "will", "talk", "about", "global", "cybersecurity", "threat", "and", "how", "companies", "such", "as", "Hacken", "thwart", "cybercriminals.", "DmytroBudorin:", "Our", "goal", "is", "to", "enhance", "the", "global", "cybersecurity", "standards,", "and", "participation", "in", "events", "such", "as", "The", "Future", "Blockchain", "Summit", "enables", "us", "to", "contribute", "to", "the", "prosperity", "of", "the", "blockchain", "industry.", "Today,", "operating", "at", "full", "power,", "the", "Hacken", "Team:", "Secures", "more", "than", "20", "clients", "worldwide", "with", "anti-phishing,", "smart", "contract", "audits,", "and", "penetration", "testing", "services.", "Three", "large", "clients", "are", "utilizing", "the", "bug", "bounty", "platform", "HackenProof,", "which", "was", "successfully", "launched", "a", "month", "ago.", "Prepares", "the", "opening", "of", "the", "headquarters", "in", "Dubai.", "Develops", "a", "unique", "and", "highly", "demanded", "product", "for", "the", "evaluation", "of", "crypto", "exchanges,", "the", "Crypto", "Exchange", "Ranks.", "The", "product", "is", "going", "to", "test", "a", "broad", "range", "of", "parameters", "to", "identify", "the", "most", "secure", "and", "reliable", "exchanges", "in", "the", "industry.", "Currently", "operating", "in", "pre-alpha,", "the", "MVP", "is", "expected", "to", "be", "launched", "by", "the", "end", "of", "spring", "2018.", "Some", "of", "the", "Hacken", "team", "members", "are", "on", "a", "worldwide", "tour", "enhancing", "brand", "awareness", "and", "representing", "Hacken", "services", "at", "different", "conferences", "throughout", "Asia.", "While", "the", "UAE", "is", "set", "to", "be", "home", "to", "the", "new", "Hacken", "headquarters,", "the", "team", "is", "also", "considering", "agency", "in", "China.", "Official", "website:", "https://hacken.io/", "https://hub.hacken.io/", "https://twitter.com/Hacken_io", "Telegram:", "https://t.me/hacken_en", "-Ends-", "©", "Press", "Release", "2018" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "pt", "pt", "pt", "en", "en", "en" ] ]
[ [ [ "Participants", "will", "gain", "insight", "into", "global", "opportunities", "of", "the", "blockchain,", "revealing", "advanced", "technological", "potential", "for", "business", "and", "government", "leaders,", "industry", "practitioners", "and", "startups.", "One", "of", "the", "key", "speakers", "at", "the", "summit", "will", "be", "the", "CEO", "of", "Hacken,", "Dmytro", "Budorin.", "On", "May", "2-3,", "2018,", "The", "Future", "Blockchain", "Summit", "will", "take", "place", "in", "Dubai,", "the", "UAE.", "Aisha", "Bint", "Butti", "Bin", "Bishr,", "Director", "General", "Smart", "Dubai", "Office,", "where", "the", "summit", "will", "be", "hosted,", "described", "the", "event", "as", "“the", "world’s", "first", "inspirational", "festival", "of", "global", "blockchain", "adoption", "across", "all", "industries”.", "In", "less", "than", "5", "months", "Hacken", "turned", "from", "an", "ICO", "startup", "into", "a", "profitable", "and", "mature", "cybersecurity", "company.", "Today,", "it", "provides", "a", "wide", "range", "of", "services", "to", "top", "market", "players", "such", "as", "Nucleus", "Vision,", "Qbao,", "Jibrel", "Network", "and", "others.", "The", "global", "aim", "of", "the", "company", "is", "to", "unite", "cybersecurity", "experts", "from", "different", "parts", "of", "the", "world", "to", "improve", "existing", "security", "standards.", "As", "part", "of", "this", "global", "effort,", "the", "Hacken", "team", "focuses", "heavily", "on", "securing", "and", "educating", "participants", "of", "Middle", "East", "markets.", "A", "flourishing", "business", "landscape,", "uninhibited", "by", "many", "government", "restrictions", "makes", "Dubai", "a", "focal", "point", "for", "leading", "innovations.", "Thus,", "there", "is", "no", "surprise", "that", "the", "city", "wants", "to", "implement", "blockchain", "technology", "in", "all", "spheres", "of", "human", "life.", "Considering", "the", "global", "cybersecurity", "threat,", "Hacken", "plans", "to", "open", "its", "headquarters", "in", "Dubai,", "in", "order", "to", "protect", "the", "burgeoning", "cyber", "landscape." ], [ "representative", "in", "Dubai:", "After", "the", "implementation", "of", "the", "blockchain", "technology", "in", "all", "spheres", "of", "Dubai's", "life,", "we", "will", "need", "the", "assistance", "of", "such", "cybersecurity", "professionals", "as", "Hacken", "to", "ensure", "that", "the", "initiative", "is", "not", "used", "for", "malevolent", "benefit.", "At", "The", "Future", "Blockchain", "Summit", "organized", "by", "Smart", "Dubai,", "Dmytro", "Budorin", "will", "talk", "about", "global", "cybersecurity", "threat", "and", "how", "companies", "such", "as", "Hacken", "thwart", "cybercriminals.", "DmytroBudorin:", "Our", "goal", "is", "to", "enhance", "the", "global", "cybersecurity", "standards,", "and", "participation", "in", "events", "such", "as", "The", "Future", "Blockchain", "Summit", "enables", "us", "to", "contribute", "to", "the", "prosperity", "of", "the", "blockchain", "industry.", "Today,", "operating", "at", "full", "power,", "the", "Hacken", "Team:", "Secures", "more", "than", "20", "clients", "worldwide", "with", "anti-phishing,", "smart", "contract", "audits,", "and", "penetration", "testing", "services.", "Three", "large", "clients", "are", "utilizing", "the", "bug", "bounty", "platform", "HackenProof,", "which", "was", "successfully", "launched", "a", "month", "ago.", "Prepares", "the", "opening", "of", "the", "headquarters", "in", "Dubai.", "Develops", "a", "unique", "and", "highly", "demanded", "product", "for", "the", "evaluation", "of", "crypto", "exchanges,", "the", "Crypto", "Exchange", "Ranks.", "The", "product", "is", "going", "to", "test", "a", "broad", "range", "of", "parameters", "to", "identify", "the", "most", "secure", "and", "reliable", "exchanges", "in", "the", "industry.", "Currently", "operating", "in", "pre-alpha,", "the", "MVP", "is", "expected", "to", "be", "launched", "by", "the", "end", "of", "spring", "2018.", "Some", "of", "the", "Hacken", "team", "members", "are", "on", "a", "worldwide", "tour", "enhancing", "brand", "awareness", "and", "representing", "Hacken", "services", "at", "different", "conferences", "throughout", "Asia.", "While", "the", "UAE", "is", "set", "to", "be", "home", "to", "the", "new", "Hacken", "headquarters,", "the", "team", "is", "also", "considering", "agency", "in", "China.", "Official", "website:", "https://hacken.io/", "https://hub.hacken.io/", "https://twitter.com/Hacken_io", "Telegram:", "https://t.me/hacken_en", "-Ends-", "©", "Press", "Release", "2018" ] ] ]
[ [ "en", "en" ] ]
[ "mono" ]
[ [ "Key", "Ethereum", "classic", "price", "is", "slowly", "recovering", "from", "the", "$8.90", "swing", "low", "against", "the", "US", "dollar.", "This", "week’s", "followed", "important", "ascending", "channel", "formed", "is", "active", "with", "support", "at", "$9.40", "on", "the", "hourly", "chart", "of", "the", "ETC/USD", "pair", "(Data", "feed", "via", "Kraken).", "The", "pair", "may", "continue", "to", "rise", "towards", "the", "$10.20", "and", "$10.80", "resistance", "levels.", "Ethereum", "classic", "price", "is", "forming", "a", "base", "for", "an", "upward", "move", "against", "the", "US", "Dollar", "and", "Bitcoin.", "ETC/USD", "could", "gain", "strength", "above", "$10.00", "for", "more", "gains", "in", "the", "near", "term.", "Ethereum", "Classic", "Price", "Analysis", "Recently,", "we", "saw", "a", "downside", "move", "below", "the", "$10.00", "support", "in", "ETC", "price", "against", "the", "US", "dollar.", "The", "ETC/USD", "pair", "even", "broke", "the", "$9.00", "support", "and", "traded", "as", "low", "as", "$8.92.", "Later,", "buyers", "appeared", "and", "pushed", "the", "price", "back", "above", "the", "$9.00", "level.", "The", "price", "traded", "higher", "steadily", "and", "broke", "the", "23.6%", "Fib", "retracement", "level", "of", "the", "previous", "decline", "from", "the", "$10.80", "swing", "high", "to", "$8.90", "swing", "low.", "Furthermore,", "there", "was", "a", "close", "above", "the", "$9.50", "level", "and", "the", "100", "hourly", "simple", "moving", "average.", "However,", "the", "upside", "move", "failed", "near", "the", "$9.80-9.85", "resistance", "area.", "More", "importantly,", "there", "was", "a", "failure", "near", "the", "50%", "Fib", "retracement", "level", "of", "the", "previous", "decline", "from", "the", "$10.80", "swing", "high", "to", "$8.90", "swing", "low.", "At", "the", "outset,", "this", "week’s", "followed", "important", "ascending", "channel", "formed", "is", "active", "with", "support", "at", "$9.40", "on", "the", "hourly", "chart", "of", "the", "ETC/USD", "pair.", "The", "pair", "is", "placed", "nicely", "above", "the", "channel", "support,", "$9.20", "and", "the", "100", "hourly", "SMA.", "Therefore,", "it", "could", "rally", "above", "the", "$9.80", "and", "$10.00", "resistance", "levels", "in", "the", "near", "term.", "The", "chart", "suggests", "that", "ETC", "price", "may", "possibly", "gain", "momentum", "once", "there", "is", "a", "convincing", "break", "above", "the", "$10.00", "resistance.", "The", "next", "stop", "for", "buyers", "in", "the", "mentioned", "case", "could", "be", "$10.50", "or", "$10.80.", "Hourly", "MACD", "–", "The", "MACD", "for", "ETC/USD", "is", "slightly", "placed", "in", "the", "bearish", "zone.", "Hourly", "RSI", "–", "The", "RSI", "for", "ETC/USD", "is", "currently", "placed", "above", "the", "50", "level.", "Major", "Support", "Level", "–", "$9.20", "Major", "Level", "–", "$10.00" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Key", "Ethereum", "classic", "price", "is", "slowly", "recovering", "from", "the", "$8.90", "swing", "low", "against", "the", "US", "dollar.", "This", "week’s", "followed", "important", "ascending", "channel", "formed", "is", "active", "with", "support", "at", "$9.40", "on", "the", "hourly", "chart", "of", "the", "ETC/USD", "pair", "(Data", "feed", "via", "Kraken).", "The", "pair", "may", "continue", "to", "rise", "towards", "the", "$10.20", "and", "$10.80", "resistance", "levels.", "Ethereum", "classic", "price", "is", "forming", "a", "base", "for", "an", "upward", "move", "against", "the", "US", "Dollar", "and", "Bitcoin.", "ETC/USD", "could", "gain", "strength", "above", "$10.00", "for", "more", "gains", "in", "the", "near", "term.", "Ethereum", "Classic", "Price", "Analysis", "Recently,", "we", "saw", "a", "downside", "move", "below", "the", "$10.00", "support", "in", "ETC", "price", "against", "the", "US", "dollar.", "The", "ETC/USD", "pair", "even", "broke", "the", "$9.00", "support", "and", "traded", "as", "low", "as", "$8.92.", "Later,", "buyers", "appeared", "and", "pushed", "the", "price", "back", "above", "the", "$9.00", "level.", "The", "price", "traded", "higher", "steadily", "and", "broke", "the", "23.6%", "Fib", "retracement", "level", "of", "the", "previous", "decline", "from", "the", "$10.80", "swing", "high", "to", "$8.90", "swing", "low.", "Furthermore,", "there", "was", "a", "close", "above", "the", "$9.50", "level", "and", "the", "100", "hourly", "simple", "moving", "average.", "However,", "the", "upside", "move", "failed", "near", "the", "$9.80-9.85", "resistance", "area.", "More", "importantly,", "there", "was", "a", "failure", "near", "the", "50%", "Fib", "retracement", "level", "of", "the", "previous", "decline", "from", "the", "$10.80", "swing", "high", "to", "$8.90", "swing", "low.", "At", "the", "outset,", "this", "week’s", "followed", "important", "ascending", "channel", "formed", "is", "active", "with", "support", "at", "$9.40", "on", "the", "hourly", "chart", "of", "the", "ETC/USD", "pair.", "The", "pair", "is", "placed", "nicely", "above", "the", "channel", "support,", "$9.20", "and", "the", "100", "hourly", "SMA.", "Therefore,", "it", "could", "rally", "above", "the", "$9.80", "and", "$10.00", "resistance", "levels", "in", "the", "near", "term.", "The", "chart", "suggests", "that", "ETC", "price", "may", "possibly", "gain", "momentum", "once", "there", "is", "a", "convincing", "break", "above", "the", "$10.00", "resistance.", "The", "next", "stop", "for", "buyers", "in", "the", "mentioned", "case", "could", "be", "$10.50", "or", "$10.80.", "Hourly", "MACD", "–", "The", "MACD", "for", "ETC/USD", "is", "slightly", "placed", "in", "the", "bearish", "zone.", "Hourly", "RSI", "–", "The", "RSI", "for", "ETC/USD", "is", "currently", "placed", "above", "the", "50", "level.", "Major", "Support", "Level", "–", "$9.20", "Major", "Level", "–", "$10.00" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Autism,", "which", "usually", "isn't", "diagnosed", "until", "children", "are", "toddlers,", "may", "be", "predicted", "by", "creases", "and", "folds", "in", "a", "newborn's", "placenta,", "according", "to", "a", "new", "study.", "The", "placenta,", "which", "provides", "fetuses", "with", "nutrients", "from", "the", "mother", "during", "pregnancy,", "is", "usually", "discarded", "after", "birth", "—", "but", "the", "study,", "published", "in", "the", "journal", "Biological", "Psychiatry,", "found", "that", "it", "could", "be", "a", "roadmap", "to", "determining", "autism", "risk", "in", "children.", "\"At", "birth", "we", "have", "a", "tool", "now", "that", "can", "tell", "us", "who's", "at", "risk", "and", "who", "isn't", "at", "risk", "for", "autism,\"", "said", "the", "study's", "main", "author,", "Yale", "researcher", "Dr.", "Harvey", "Kliman.", "\"This", "gives", "us", "the", "opportunity", "to", "intervene", "at", "a", "time", "when", "the", "brain", "is", "most", "plastic", "and", "able", "to", "transform.\"", "Dr.", "Kliman", "and", "his", "team,", "including", "an", "initially-skeptical", "obstetrician-gynecologist", "Dr.", "Cheryl", "analyzed", "\"Milky", "Way", "bar-size", "sections\"", "of", "placentas", "from", "217", "newborns,", "and", "found", "that", "those", "with", "abnormal", "creases,", "called", "trophoblast", "inclusions,", "may", "be", "more", "prone", "to", "autism.", "While", "\"two-thirds", "of", "the", "low-risk", "placentas", "had", "no", "inclusions...77", "high-risk", "placentas", "had", "inclusions,", "48", "of", "them", "had", "two", "or", "more,", "including", "16", "with", "between", "5", "and", "15", "inclusions,\"", "the", "New", "York", "Times", "reported.", "Though", "the", "scientists", "behind", "the", "study", "still", "need", "to", "wait", "at", "least", "one", "more", "year", "to", "see", "if", "their", "predictions", "ring", "true", "—", "the", "children", "analyzed", "were", "between", "2", "and", "5", "years", "old,", "and", "may", "not", "be", "diagnosed", "until", "later", "on", "—", "the", "idea", "that", "a", "biomarker,", "or", "early", "indicator,", "for", "autism", "exists", "is", "promising.", "“I", "think", "it’s", "a", "great", "way", "for", "parents", "to", "say,", "‘O.K.,", "we", "have", "some", "risk", "factors;", "we’re", "not", "going", "to", "ignore", "it,'\"", "said", "Dr.", "Chris", "Sullivan,", "who", "had", "her", "placenta", "analysed", "by", "Dr.", "Kliman", "after", "her", "was", "born", "and", "began", "early", "intensive", "treatment", "after", "5", "inclusions", "were", "found.", "However,", "Dr.", "Kliman", "noted", "that", "more", "research", "is", "needed", "in", "order", "to", "solidify", "the", "link,", "calling", "the", "placenta", "a", "“check-engine", "light,", "a", "marker", "of:", "something’s", "wrong,", "but", "I", "don’t", "know", "what", "it", "is,”", "according", "to", "the", "Times.", "However,", "the", "study", "may", "pave", "the", "way", "for", "the", "placenta", "to", "become", "a", "more", "legitimate", "focus", "of", "study", "for", "early", "prediction", "of", "other", "diseases.", "Autism", "has", "spiked", "in", "the", "United", "States,", "with", "one", "in", "50", "schoolchildren", "in", "the", "US", "being", "diagnosed", "every", "year,", "far", "more", "than", "the", "original", "government", "estimate", "of", "one", "in", "88.", "More", "from", "GlobalPost:", "1", "in", "50", "US", "schoolchildren", "have", "it,", "says", "CDC" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Autism,", "which", "usually", "isn't", "diagnosed", "until", "children", "are", "toddlers,", "may", "be", "predicted", "by", "creases", "and", "folds", "in", "a", "newborn's", "placenta,", "according", "to", "a", "new", "study.", "The", "placenta,", "which", "provides", "fetuses", "with", "nutrients", "from", "the", "mother", "during", "pregnancy,", "is", "usually", "discarded", "after", "birth", "—", "but", "the", "study,", "published", "in", "the", "journal", "Biological", "Psychiatry,", "found", "that", "it", "could", "be", "a", "roadmap", "to", "determining", "autism", "risk", "in", "children.", "\"At", "birth", "we", "have", "a", "tool", "now", "that", "can", "tell", "us", "who's", "at", "risk", "and", "who", "isn't", "at", "risk", "for", "autism,\"", "said", "the", "study's", "main", "author,", "Yale", "researcher", "Dr.", "Harvey", "Kliman.", "\"This", "gives", "us", "the", "opportunity", "to", "intervene", "at", "a", "time", "when", "the", "brain", "is", "most", "plastic", "and", "able", "to", "transform.\"", "Dr.", "Kliman", "and", "his", "team,", "including", "an", "initially-skeptical", "obstetrician-gynecologist", "Dr.", "Cheryl", "analyzed", "\"Milky", "Way", "bar-size", "sections\"", "of", "placentas", "from", "217", "newborns,", "and", "found", "that", "those", "with", "abnormal", "creases,", "called", "trophoblast", "inclusions,", "may", "be", "more", "prone", "to", "autism.", "While", "\"two-thirds", "of", "the", "low-risk", "placentas", "had", "no", "inclusions...77", "high-risk", "placentas", "had", "inclusions,", "48", "of", "them", "had", "two", "or", "more,", "including", "16", "with", "between", "5", "and", "15", "inclusions,\"", "the", "New", "York", "Times", "reported.", "Though", "the", "scientists", "behind", "the", "study", "still", "need", "to", "wait", "at", "least", "one", "more", "year", "to", "see", "if", "their", "predictions", "ring", "true", "—", "the", "children", "analyzed", "were", "between", "2", "and", "5", "years", "old,", "and", "may", "not", "be", "diagnosed", "until", "later", "on", "—", "the", "idea", "that", "a", "biomarker,", "or", "early", "indicator,", "for", "autism", "exists", "is", "promising.", "“I", "think", "it’s", "a", "great", "way", "for", "parents", "to", "say,", "‘O.K.,", "we", "have", "some", "risk", "factors;", "we’re", "not", "going", "to", "ignore", "it,'\"", "said", "Dr.", "Chris", "Sullivan,", "who", "had", "her", "placenta", "analysed", "by", "Dr.", "Kliman", "after", "her", "was", "born", "and", "began", "early", "intensive", "treatment", "after", "5", "inclusions", "were", "found.", "However,", "Dr.", "Kliman", "noted", "that", "more", "research", "is", "needed", "in", "order", "to", "solidify", "the", "link,", "calling", "the", "placenta", "a", "“check-engine", "light,", "a", "marker", "of:", "something’s", "wrong,", "but", "I", "don’t", "know", "what", "it", "is,”", "according", "to", "the", "Times.", "However,", "the", "study", "may", "pave", "the", "way", "for", "the", "placenta", "to", "become", "a", "more", "legitimate", "focus", "of", "study", "for", "early", "prediction", "of", "other", "diseases.", "Autism", "has", "spiked", "in", "the", "United", "States,", "with", "one", "in", "50", "schoolchildren", "in", "the", "US", "being", "diagnosed", "every", "year,", "far", "more", "than", "the", "original", "government", "estimate", "of", "one", "in", "88.", "More", "from", "GlobalPost:", "1", "in", "50", "US", "schoolchildren", "have", "it,", "says", "CDC" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "McLaren", "confirmed", "on", "Tuesday", "night", "that", "Redding", "would", "be", "leaving", "the", "Woking-based", "team,", "and", "will", "be", "replaced", "by", "erstwhile", "chief", "James.", "In", "a", "statement", "issued", "on", "Wednesday,", "Williams", "made", "it", "clear", "that", "Redding’s", "move", "has", "come", "about", "because", "Nielsen", "is", "eager", "to", "take", "a", "more", "factory-based", "role", "for", "next", "season.", "Claire", "Williams,", "deputy", "team", "principal,", "said:", "“From", "the", "start,", "our", "sporting", "manager,", "Steve", "Nielsen", "has", "always", "been", "clear", "about", "his", "desire", "to", "do", "less", "travelling", "following", "the", "end", "of", "the", "2017", "season", "and", "we", "fully", "understood", "and", "respected", "his", "request", "given", "he", "has", "been", "in", "travelling", "roles", "for", "over", "30", "years.", "“Steve", "has", "done", "a", "fantastic", "job", "since", "joining", "the", "team", "in", "2014,", "from", "restructuring", "the", "race", "team", "to", "the", "brilliant", "work", "in", "driving", "the", "turnaround", "of", "our", "pitstop", "performance.", "“We", "can", "confirm", "that", "Dave", "Redding", "will", "join", "Williams", "as", "team", "manager", "later", "this", "year", "to", "work", "alongside", "Steve", "to", "ensure", "a", "seamless", "handover", "ahead", "of", "taking", "full", "responsibility", "for", "the", "race", "team", "in", "2018.”", "Nielsen’s", "at", "Williams", "helped", "the", "team", "become", "the", "pace-setters", "in", "F1", "pitstops", "last", "year,", "as", "it", "consistently", "delivered", "the", "quickest", "tyre", "changes", "for", "Felipe", "and", "Valtteri", "Bottas." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de" ] ]
[ [ [ "McLaren", "confirmed", "on", "Tuesday", "night", "that", "Redding", "would", "be", "leaving", "the", "Woking-based", "team,", "and", "will", "be", "replaced", "by", "erstwhile", "chief", "James.", "In", "a", "statement", "issued", "on", "Wednesday,", "Williams", "made", "it", "clear", "that", "Redding’s", "move", "has", "come", "about", "because", "Nielsen", "is", "eager", "to", "take", "a", "more", "factory-based", "role", "for", "next", "season.", "Claire", "Williams,", "deputy", "team", "principal,", "said:", "“From", "the", "start,", "our", "sporting", "manager,", "Steve", "Nielsen", "has", "always", "been", "clear", "about", "his", "desire", "to", "do", "less", "travelling", "following", "the", "end", "of", "the", "2017", "season", "and", "we", "fully", "understood", "and", "respected", "his", "request", "given", "he", "has", "been", "in", "travelling", "roles", "for", "over", "30", "years.", "“Steve", "has", "done", "a", "fantastic", "job", "since", "joining", "the", "team", "in", "2014,", "from", "restructuring", "the", "race", "team", "to", "the", "brilliant", "work", "in", "driving", "the", "turnaround", "of", "our", "pitstop", "performance.", "“We", "can", "confirm", "that", "Dave", "Redding", "will", "join", "Williams", "as", "team", "manager", "later", "this", "year", "to", "work", "alongside", "Steve", "to", "ensure", "a", "seamless", "handover", "ahead", "of", "taking", "full", "responsibility", "for", "the", "race", "team", "in", "2018.”", "Nielsen’s", "at", "Williams", "helped", "the", "team", "become", "the", "pace-setters", "in", "F1", "pitstops", "last", "year,", "as", "it", "consistently", "delivered", "the", "quickest", "tyre", "changes", "for", "Felipe" ] ] ]
[ [ "en" ] ]
[ "mono", "mono" ]
[ [ "Dan", "Graziano", "says", "the", "Vikings", "aren't", "getting", "ahead", "of", "themselves", "even", "though", "they", "sit", "atop", "the", "NFC", "North", "and", "continue", "to", "be", "encouraged", "by", "Latavius", "Murray's", "113-yard", "rushing", "day.", "(0:48)", "MINNEAPOLIS", "--", "If", "you", "ever", "wondered", "what", "early-20th-century,", "leather-helmet", "football", "would", "have", "looked", "like", "in", "a", "$1.1", "stadium,", "Sunday", "was", "your", "day", "to", "find", "out.", "The", "Minnesota", "Vikings", "slugged", "their", "way", "to", "a", "24-16", "victory", "over", "the", "Baltimore", "Ravens", "in", "a", "game", "that", "was", "nowhere", "near", "as", "high-flying", "as", "the", "final", "score", "makes", "it", "appear.", "What", "you", "need", "to", "know", "in", "the", "NFL", "•", "Statistics", "•", "•", "2017", "•", "Standings", "The", "Vikings", "kicked", "six", "field", "goals", "and", "scored", "one", "touchdown,", "after", "which", "the", "same", "kicker", "missed", "the", "extra", "point.", "The", "Ravens", "scored", "on", "three", "field", "goals", "(which,", "combined", "with", "Minnesota's", "six,", "tied", "an", "NFL", "single-game", "record)", "and", "didn't", "get", "the", "ball", "inside", "the", "Vikings'", "20-yard", "line", "until", "the", "game's", "final", "minute,", "when", "they", "scored", "a", "touchdown", "on", "the", "last", "play", "of", "the", "game.", "\"That", "was", "a", "little", "disappointing,\"", "linebacker", "Anthony", "Barr", "said.", "\"We", "wanted", "to", "keep", "them", "out", "of", "the", "end", "zone.\"", "Point", "of", "pride,", "interrupted.", "But", "the", "Vikings", "won,", "and", "the", "Green", "Bay", "Packers", "lost.", "Now", "Minnesota", "stands", "alone", "in", "first", "place", "in", "the", "NFC", "North", "at", "5-2.", "The", "Vikings", "won", "this", "division", "two", "years", "ago,", "so", "they", "know", "they", "can", "win", "it", "this", "year.", "But", "they", "also", "know", "that,", "since", "QBAaron", "Rodgers", "is", "out", "for", "the", "Packers", "and", "injuries", "have", "shredded", "the", "wide", "receiver", "corps", "here", "and", "in", "Chicago", "and", "Detroit,", "this", "division", "is", "going", "to", "have", "to", "be", "won", "ugly.", "\"I", "don't", "really", "care", "what", "it", "looks", "like,\"", "Vikings", "receiver", "Adam", "Thielen", "said.", "\"And", "I", "think", "Coach", "(Mike)", "Zimmer", "would", "say", "the", "same", "thing.\"", "The", "Vikings", "gave", "up", "only", "208", "yards", "to", "the", "Ravens", "in", "their", "win,", "with", "only", "64", "on", "the", "ground.", "Hannah", "Foslien/Getty", "No", "doubt,", "Adam.", "The", "Vikings", "are", "playing", "with", "their", "No.", "3", "choice", "at", "quarterback,", "Case", "Keenum.", "They", "were", "without", "top", "receiver", "Stefon", "Diggs", "(groin)", "for", "the", "second", "week", "in", "a", "row.", "And", "their", "back,", "Dalvin", "Cook,", "is", "out", "for", "the", "year.", "But", "in", "the", "NFC", "North", "right", "now,", "that", "isn't", "going", "to", "get", "anyone", "to", "feel", "sorry", "for", "you.", "To", "wit:", "The", "Packers,", "preseason", "favorites", "and", "defending", "division", "champions,", "lost", "Rodgers", "to", "a", "shoulder", "injury", "last", "week.", "He", "won't", "be", "back", "until", "late", "December", "at", "the", "earliest,", "which", "means", "untested", "Brett", "Hundley,", "playing", "behind", "an", "offensive", "line", "that's", "been", "decimated", "by", "injuries,", "has", "to", "lead", "Green", "Bay's", "point-scoring", "efforts.", "Hundley", "was", "game", "Sunday,", "but", "the", "Packers", "fell", "short", "against", "the", "rejuvenated", "Saints", "defense.", "So", "the", "Packers", "sit", "at", "4-3", "with", "a", "head-to-head", "loss", "in", "Minnesota", "on", "their", "record.", "The", "Detroit", "Lions,", "on", "a", "bye", "this", "week,", "have", "been", "playing", "all", "season", "without", "left", "tackle", "Taylor", "Decker", "and", "have", "struggled", "to", "push", "the", "ball", "downfield.", "They", "lost", "top", "wideout", "Golden", "Tate", "to", "injury", "in", "their", "most", "recent", "game", "and", "believe", "he", "will", "miss", "multiple", "weeks.", "Detroit", "sits", "at", "3-3", "after", "a", "couple", "of", "tough", "losses", "to", "Carolina", "and", "New", "Orleans", "heading", "into", "their", "bye,", "but", "they", "did", "beat", "the", "Vikings", "head-to-head.", "The", "Chicago", "Bears,", "of", "whom", "little", "was", "expected,", "are", "playing", "with", "a", "rookie", "quarterback,", "Mitchell", "Trubisky,", "and", "without", "wide", "receivers", "Cameron", "Meredith", "and", "Kevin", "White.", "The", "Bears", "managed", "to", "beat", "the", "Panthers", "on", "Sunday", "without", "scoring", "an", "offensive", "touchdown.", "Chicago", "beat", "the", "same,", "sorry-looking", "Ravens", "team", "last", "week", "with", "the", "help", "of", "another", "defensive", "score,", "and", "are", "somehow", "3-4.", "The", "Bears'", "big", "problem", "is", "that", "they", "lost", "head-to-head", "games", "against", "Green", "Bay", "and", "Minnesota,", "so", "even", "if", "they", "can", "muscle", "their", "way", "into", "this", "thing", "with", "defense,", "they", "have", "further", "to", "go", "on", "the", "tiebreaker", "front.", "But", "with", "Rodgers", "out,", "Bears", "players", "are", "in", "\"Why", "Not", "Us\"", "mode", "as", "they", "head", "to", "New", "Orleans", "next", "week", "to", "try", "to", "stop", "the", "Saints'", "NFC", "North", "win", "streak.", "And", "out", "here", "in", "Minnesota", "they", "have", "the", "Vikings,", "who've", "been", "living", "on", "defense", "for", "at", "least", "three", "seasons", "now", "and", "know", "how", "it", "feels.", "They", "don't", "know", "when", "or", "whether", "they'll", "get", "back", "QBs", "Sam", "Bradford", "or", "Teddy", "Bridgewater", "from", "their", "knee", "injuries.", "They", "don't", "know", "if", "they", "can", "count", "on", "any", "more", "113", "rush-yard", "games", "from", "RB", "Latavius", "Murray.", "The", "Vikings", "do", "know", "their", "defense", "is", "one", "of", "the", "toughest", "in", "the", "league", "and", "can", "win", "games", "if", "that's", "what", "must", "be", "done.", "\"As", "an", "offense,", "we", "feel", "like", "we're", "trying", "even", "harder", "to", "score", "to", "reward", "them", "for", "how", "well", "they're", "playing,\"", "Thielen", "said.", "The", "Vikings", "say", "they're", "not", "thinking", "about", "the", "division", "race", "yet.", "They", "were", "5-0", "last", "season", "and" ], [ "missed", "the", "playoffs.", "They", "remember", "it", "too", "well", "to", "take", "anything", "for", "granted.", "They", "know", "they're", "in", "first", "place,", "that", "they", "play", "a", "winless", "Browns", "team", "in", "London", "next", "week", "and", "that", "they're", "off", "the", "week", "after", "that.", "They", "understand", "the", "opportunity", "in", "front", "of", "them.", "They're", "just", "determined", "not", "to", "focus", "on", "it.", "\"We", "can't", "win", "the", "division", "next", "week,", "and", "we", "certainly", "could", "put", "ourselves", "in", "some", "trouble,\"", "tight", "end", "Kyle", "Rudolph", "said.", "\"For", "us", "it's", "about", "focusing", "on", "each", "and", "every", "week,", "then", "come", "the", "new", "year,", "see", "where", "we're", "at.\"", "They", "know", "it's", "going", "to", "be", "a", "slog.", "All", "four", "of", "these", "NFC", "North", "teams", "surely", "do.", "The", "Vikings", "happen", "to", "be", "the", "ones", "at", "the", "top", "right", "now,", "but", "there's", "plenty", "of", "ugly", "left", "to", "come", "before", "this", "one's", "over.", "After", "the", "game", "Sunday,", "someone", "asked", "Zimmer", "if", "he", "5-2.", "\"Right", "now,", "I", "feel", "tired,\"", "Zimmer", "said.", "Get", "used", "to", "it,", "Zim.", "Your", "team", "looks", "good,", "but", "the", "only", "thing", "we", "know", "for", "sure", "about", "the", "NFC", "North", "right", "now", "is", "that", "it", "looks", "as", "if", "it's", "going", "to", "be", "exhausting." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Dan", "Graziano", "says", "the", "Vikings", "aren't", "getting", "ahead", "of", "themselves", "even", "though", "they", "sit", "atop", "the", "NFC", "North", "and", "continue", "to", "be", "encouraged", "by", "Latavius", "Murray's", "113-yard", "rushing", "day.", "(0:48)", "MINNEAPOLIS", "--", "If", "you", "ever", "wondered", "what", "early-20th-century,", "leather-helmet", "football", "would", "have", "looked", "like", "in", "a", "$1.1", "stadium,", "Sunday", "was", "your", "day", "to", "find", "out.", "The", "Minnesota", "Vikings", "slugged", "their", "way", "to", "a", "24-16", "victory", "over", "the", "Baltimore", "Ravens", "in", "a", "game", "that", "was", "nowhere", "near", "as", "high-flying", "as", "the", "final", "score", "makes", "it", "appear.", "What", "you", "need", "to", "know", "in", "the", "NFL", "•", "Statistics", "•" ], [ "•", "Standings", "The", "Vikings", "kicked", "six", "field", "goals", "and", "scored", "one", "touchdown,", "after", "which", "the", "same", "kicker", "missed", "the", "extra", "point.", "The", "Ravens", "scored", "on", "three", "field", "goals", "(which,", "combined", "with", "Minnesota's", "six,", "tied", "an", "NFL", "single-game", "record)", "and", "didn't", "get", "the", "ball", "inside", "the", "Vikings'", "20-yard", "line", "until", "the", "game's", "final", "minute,", "when", "they", "scored", "a", "touchdown", "on", "the", "last", "play", "of", "the", "game.", "\"That", "was", "a", "little", "disappointing,\"", "linebacker", "Anthony", "Barr", "said.", "\"We", "wanted", "to", "keep", "them", "out", "of", "the", "end", "zone.\"", "Point", "of", "pride,", "interrupted.", "But", "the", "Vikings", "won,", "and", "the", "Green", "Bay", "Packers", "lost.", "Now", "Minnesota", "stands", "alone", "in", "first", "place", "in", "the", "NFC", "North", "at", "5-2.", "The", "Vikings", "won", "this", "division", "two", "years", "ago,", "so", "they", "know", "they", "can", "win", "it", "this", "year.", "But", "they", "also", "know", "that,", "since", "QBAaron", "Rodgers", "is", "out", "for", "the", "Packers", "and", "injuries", "have", "shredded", "the", "wide", "receiver", "corps", "here", "and", "in", "Chicago", "and", "Detroit,", "this", "division", "is", "going", "to", "have", "to", "be", "won", "ugly.", "\"I", "don't", "really", "care", "what", "it", "looks", "like,\"", "Vikings", "receiver", "Adam", "Thielen", "said.", "\"And", "I", "think", "Coach", "(Mike)", "Zimmer", "would", "say", "the", "same", "thing.\"", "The", "Vikings", "gave", "up", "only", "208", "yards", "to", "the", "Ravens", "in", "their", "win,", "with", "only", "64", "on", "the", "ground.", "Hannah", "Foslien/Getty", "No", "doubt,", "Adam.", "The", "Vikings", "are", "playing", "with", "their", "No.", "3", "choice", "at", "quarterback,", "Case", "Keenum.", "They", "were", "without", "top", "receiver", "Stefon", "Diggs", "(groin)", "for", "the", "second", "week", "in", "a", "row.", "And", "their", "back,", "Dalvin", "Cook,", "is", "out", "for", "the", "year.", "But", "in", "the", "NFC", "North", "right", "now,", "that", "isn't", "going", "to", "get", "anyone", "to", "feel", "sorry", "for", "you.", "To", "wit:", "The", "Packers,", "preseason", "favorites", "and", "defending", "division", "champions,", "lost", "Rodgers", "to", "a", "shoulder", "injury", "last", "week.", "He", "won't", "be", "back", "until", "late", "December", "at", "the", "earliest,", "which", "means", "untested", "Brett", "Hundley,", "playing", "behind", "an", "offensive", "line", "that's", "been", "decimated", "by", "injuries,", "has", "to", "lead", "Green", "Bay's", "point-scoring", "efforts.", "Hundley", "was", "game", "Sunday,", "but", "the", "Packers", "fell", "short", "against", "the", "rejuvenated", "Saints", "defense.", "So", "the", "Packers", "sit", "at", "4-3", "with", "a", "head-to-head", "loss", "in", "Minnesota", "on", "their", "record.", "The", "Detroit", "Lions,", "on", "a", "bye", "this", "week,", "have", "been", "playing", "all", "season", "without", "left", "tackle", "Taylor", "Decker", "and", "have", "struggled", "to", "push", "the", "ball", "downfield.", "They", "lost", "top", "wideout", "Golden", "Tate", "to", "injury", "in", "their", "most", "recent", "game", "and", "believe", "he", "will", "miss", "multiple", "weeks.", "Detroit", "sits", "at", "3-3", "after", "a", "couple", "of", "tough", "losses", "to", "Carolina", "and", "New", "Orleans", "heading", "into", "their", "bye,", "but", "they", "did", "beat", "the", "Vikings", "head-to-head.", "The", "Chicago", "Bears,", "of", "whom", "little", "was", "expected,", "are", "playing", "with", "a", "rookie", "quarterback,", "Mitchell", "Trubisky,", "and", "without", "wide", "receivers", "Cameron", "Meredith", "and", "Kevin", "White.", "The", "Bears", "managed", "to", "beat", "the", "Panthers", "on", "Sunday", "without", "scoring", "an", "offensive", "touchdown.", "Chicago", "beat", "the", "same,", "sorry-looking", "Ravens", "team", "last", "week", "with", "the", "help", "of", "another", "defensive", "score,", "and", "are", "somehow", "3-4.", "The", "Bears'", "big", "problem", "is", "that", "they", "lost", "head-to-head", "games", "against", "Green", "Bay", "and", "Minnesota,", "so", "even", "if", "they", "can", "muscle", "their", "way", "into", "this", "thing", "with", "defense,", "they", "have", "further", "to", "go", "on", "the", "tiebreaker", "front.", "But", "with", "Rodgers", "out,", "Bears", "players", "are", "in", "\"Why", "Not", "Us\"", "mode", "as", "they", "head", "to", "New", "Orleans", "next", "week", "to", "try", "to", "stop", "the", "Saints'", "NFC", "North", "win", "streak.", "And", "out", "here", "in", "Minnesota", "they", "have", "the", "Vikings,", "who've", "been", "living", "on", "defense", "for", "at", "least", "three", "seasons", "now", "and", "know", "how", "it", "feels.", "They", "don't", "know", "when", "or", "whether", "they'll", "get", "back", "QBs", "Sam", "Bradford", "or", "Teddy", "Bridgewater", "from", "their", "knee", "injuries.", "They", "don't", "know", "if", "they", "can", "count", "on", "any", "more", "113", "rush-yard", "games", "from", "RB", "Latavius", "Murray.", "The", "Vikings", "do", "know", "their", "defense", "is", "one", "of", "the", "toughest", "in", "the", "league", "and", "can", "win", "games", "if", "that's", "what", "must", "be", "done.", "\"As", "an", "offense,", "we", "feel", "like", "we're", "trying", "even", "harder", "to", "score", "to", "reward", "them", "for", "how", "well", "they're", "playing,\"", "Thielen", "said.", "The", "Vikings", "say", "they're", "not", "thinking", "about", "the", "division", "race", "yet.", "They", "were", "5-0", "last", "season", "and" ] ], [ [ "missed", "the", "playoffs.", "They", "remember", "it", "too", "well", "to", "take", "anything", "for", "granted.", "They", "know", "they're", "in", "first", "place,", "that", "they", "play", "a", "winless", "Browns", "team", "in", "London", "next", "week", "and", "that", "they're", "off", "the", "week", "after", "that.", "They", "understand", "the", "opportunity", "in", "front", "of", "them.", "They're", "just", "determined", "not", "to", "focus", "on", "it.", "\"We", "can't", "win", "the", "division", "next", "week,", "and", "we", "certainly", "could", "put", "ourselves", "in", "some", "trouble,\"", "tight", "end", "Kyle", "Rudolph", "said.", "\"For", "us", "it's", "about", "focusing", "on", "each", "and", "every", "week,", "then", "come", "the", "new", "year,", "see", "where", "we're", "at.\"", "They", "know", "it's", "going", "to", "be", "a", "slog.", "All", "four", "of", "these", "NFC", "North", "teams", "surely", "do.", "The", "Vikings", "happen", "to", "be", "the", "ones", "at", "the", "top", "right", "now,", "but", "there's", "plenty", "of", "ugly", "left", "to", "come", "before", "this", "one's", "over.", "After", "the", "game", "Sunday,", "someone", "asked", "Zimmer", "if", "he", "5-2.", "\"Right", "now,", "I", "feel", "tired,\"", "Zimmer", "said.", "Get", "used", "to", "it,", "Zim.", "Your", "team", "looks", "good,", "but", "the", "only", "thing", "we", "know", "for", "sure", "about", "the", "NFC", "North", "right", "now", "is", "that", "it", "looks", "as", "if", "it's", "going", "to", "be", "exhausting." ] ] ]
[ [ "en", "en" ], [ "en" ] ]
[ "mono", "mono" ]
[ [ "It", "has", "been", "less", "than", "a", "week", "since", "states", "and", "major", "cities", "began", "instituting", "quarantines", "along", "with", "stay-home", "and", "shelter-in-place", "directives", "to", "reduce", "the", "spread", "of", "COVID-19.", "The", "full", "impacts", "on", "electricity", "usage", "are", "not", "yet", "known,", "but", "grid", "operators", "say", "demand", "is", "both", "shifting", "and", "falling.", "Data", "from", "overseas", "may", "give", "an", "indication", "of", "just", "how", "steep", "the", "declines", "could", "become.", "Italy", "instituted", "lockdowns", "and", "closed", "essential", "businesses", "earlier", "this", "month,", "in", "response", "to", "a", "spike", "in", "novel", "coronavirus", "infections.", "According", "to", "the", "Electric", "Power", "Research", "Institute", "(EPRI),", "the", "country", "has", "since", "witnessed", "a", "significant", "decline", "in", "electricity", "demand.", "Five", "to", "seven", "days", "after", "Italy's", "lockdown", "began,", "the", "country", "saw", "an", "18%", "to", "21%", "reduction", "in", "peak", "demand", "and", "energy", "use", "on", "a", "year-over-year", "basis,", "according", "to", "EPRI", "data.", "The", "demand", "decline", "began", "with", "a", "more", "modest", "10%", "reduction", "in", "peak", "demand", "in", "the", "first", "two", "days", "after", "beginning", "its", "lockdown", "on", "March", "12", "and", "13.", "In", "the", "United", "States,", "grid", "operators", "say", "it", "is", "too", "soon", "to", "get", "a", "firm", "handle", "on", "the", "impacts", "of", "coronavirus", "shutdowns,", "but", "some", "are", "already", "seeing", "usage", "declines.", "Propelling", "those", "declines,", "S&P", "Global", "is", "predicting", "a", "global", "recession", "this", "year,", "and", "estimates", "the", "United", "States", "economy", "will", "see", "a", "6%", "seasonally", "adjusted", "second", "quarter", "contraction", "before", "beginning", "to", "recover", "in", "the", "second", "half", "of", "the", "year.", "\"In", "the", "near", "term,", "utilities", "will", "likely", "see", "some", "reduced", "sales", "volumes", "as", "major", "sporting", "events,", "concerts", "and", "businesses", "scale", "back", "drastically,", "compounded", "even", "further", "by", "social", "distancing", "requirements", "being", "mandated", "or", "recommended", "by", "federal", "and", "local", "governments", "across", "North", "America,\"", "S&P", "in", "a", "March", "19", "report.", "While", "the", "firm", "believes", "\"the", "majority", "of", "North", "American", "regulated", "utilities", "are", "well", "positioned", "to", "handle", "the", "immediate", "impact", "of", "COVID-19,\"", "the", "report", "also", "warned", "a", "few", "with", "\"disproportionate", "exposure", "to", "[the]", "commercial", "and", "industrial", "class", "of", "customers", "could", "be", "vulnerable", "to", "reduced", "sales", "volumes.\"", "Some", "of", "those", "impacts", "could", "be", "passed", "along", "to", "consumers,", "according", "to", "James", "Newcomb,", "managing", "director", "of", "emerging", "solutions", "at", "Rocky", "Mountain", "Institute", "(RMI).", "\"As", "a", "consequence", "of", "lower", "energy", "use", "and", "lower", "capacity", "demands", "from", "the", "system,", "utilities", "will", "collect", "less", "revenue", "in", "the", "form", "of", "rates", "during", "this", "downturn", "of", "industrial", "productivity", "and", "economic", "activity,\"", "Newcomb", "told", "Utility", "Dive", "in", "an", "email.", "While", "some", "of", "this", "lost", "revenue", "will", "be", "mitigated", "through", "cost", "reductions", "including", "lower", "fuel", "expenditures,", "Newcomb", "also", "said", "RMI's", "preliminary", "assessment", "indicates", "\"this", "will", "only", "mitigate", "part", "of", "the", "lost", "revenue.\"", "\"Utilities", "may", "ask", "regulators", "for", "increased", "cost", "recovery", "through", "rate", "increases", "in", "the", "future", "as", "a", "result,\"", "Newcomb", "said,", "adding", "that", "this", "will", "also", "depend", "on", "specific-state", "policies", "such", "as", "decoupling.", "However,", "investment", "research", "platform", "SSR", "estimates", "that", "utilities", "in", "the", "early", "stages", "of", "rate", "cases", "right", "now", "will", "be", "very", "vulnerable", "and", "could", "have", "their", "return", "on", "equity", "lowered", "by", "regulators.", "SSR", "identified", "the", "four", "most", "vulnerable", "companies", "as", "CMS", "Energy,", "Hawaiian", "Electric", "and", "Pinnacle", "West", "Capital,", "the", "parent-company", "of", "Arizona", "Public", "Service.", "\"They're", "on", "the", "front", "line", "because", "they're", "the", "first", "ones", "in", "before", "regulators,\"", "Eric", "Selmon,", "report", "co-author", "and", "co-head", "of", "SSR's", "utility", "and", "renewable", "energy", "research,", "told", "Utility", "Dive.", "\"Deferring", "their", "rate", "cases", "may", "be", "the", "best", "thing", "they", "can", "do,\"", "to", "avoid", "pressure", "from", "regulators.", "Because", "of", "limits", "on", "public", "meetings,", "he", "added,", "the", "rate", "cases", "may", "be", "put", "off", "by", "the", "commissions", "as", "well.", "While", "the", "impacts", "on", "electricity", "demand", "are", "only", "beginning", "to", "emerge,", "grid", "operators", "around", "the", "country", "are", "reporting", "demand", "declines", "and", "shifts", "in", "load", "shapes.", "Load", "declines,", "shifts", "in", "major", "ISO", "New", "England,", "in", "a", "Friday", "blog", "post,", "said", "it", "has", "witnessed", "a", "decline", "in", "demand", "of", "approximately", "3%", "to", "5%,", "\"compared", "to", "what", "would", "normally", "be", "expected", "under", "weather", "conditions", "in", "the", "region.\"", "Along", "with", "demand", "reductions,", "the", "grid", "operator", "said", "the", "changes", "are", "also", "affecting", "demand", "patterns", "across", "the", "region.", "\"ISO", "forecasters", "see", "load", "patterns", "that", "resemble", "those", "of", "snow", "days,", "when", "schools", "are", "closed", "and", "many", "are", "home", "during", "the", "day,\"", "the", "grid", "operator", "said.", "\"These", "patterns", "include", "a", "slower", "than", "normal", "ramp", "of", "usage", "in", "the", "morning,", "and", "increased", "energy", "use", "in", "the", "afternoon.\"", "\"We", "have", "already", "begun", "to", "see", "a", "decline", "in", "power", "futures", "in", "MISO", "and", "other", "markets.", "These", "declines", "will", "result", "in", "revenues", "for", "James", "Newcomb", "Managing", "director", "of", "emerging", "solutions,", "Rocky", "Mountain", "Institute", "PJM", "Interconnection", "reported", "a", "similar", "load", "decline", "as", "well.", "The", "grid", "operator", "for", "much", "of", "the", "Mid-Atlantic", "told", "Utility", "Dive", "in", "an", "email", "that", "on", "March", "16,", "when", "the", "system", "would", "normally", "have", "expected", "about", "100,000", "MW", "of", "load,", "\"with", "the", "special", "circumstances,", "we", "dialed", "down", "the", "forecast", "to", "about", "94,500", "and", "it", "came", "in", "at", "about", "95,500.\"", "\"We", "don’t", "have", "a", "complete", "picture", "yet", "of", "what", "the", "impacts", "are" ], [ ",", "but", "we", "can", "tell", "you", "that", "the", "shift", "in", "work", "patterns", "and", "business", "closures", "is", "likely", "behind", "subtle", "shifts", "in", "electricity", "use,\"", "PJM", "spokesman", "Jeff", "Shields", "said", "in", "an", "email.", "PJM's", "highest", "electricity", "use", "is", "now", "coming", "in", "a", "little", "later", "in", "the", "morning,", "and", "the", "grid", "operator", "expects", "electricity", "use", "to", "\"drop", "to", "some", "degree", "if", "schools", "and", "businesses", "continue", "to", "stay", "shuttered", "because", "of", "the", "coronavirus.", "Electricity", "use", "will", "more", "closely", "resemble", "weekend", "days.\"", "In", "California,", "Democratic", "Gov.", "Gavin", "Newsom", "issued", "a", "stay-at-home", "order", "on", "March", "19.", "The", "state's", "grid", "operator", "is", "in", "a", "\"very", "fluid", "situation,", "with", "the", "state", "and", "counties", "announcing", "new", "policies", "almost", "daily", "this", "past", "week,\"", "California", "ISO", "spokesperson", "Anne", "Gonzales", "told", "Utility", "Dive.", "\"In", "the", "areas", "currently", "under", "shelter-in-place", "orders", "and", "directives,", "we", "are", "seeing", "reduction", "in", "load,", "especially", "in", "those", "areas", "that", "have", "more", "population,", "such", "as", "the", "Bay", "Area,", "where", "there’s", "small", "businesses", "and", "corporate", "concentration,\"", "she", "said.", "California", "inland", "areas", "with", "more", "industrial", "users", "\"are", "not", "seeing", "the", "[same]", "level", "of", "load", "reduction,", "but", "they", "are", "also", "generally", "not", "in", "shelter-in-place", "areas,\"", "Gonzales", "added.", "\"While", "we", "are", "seeing", "lower", "consumption", "needs,", "we", "are", "still", "analyzing", "how", "much", "of", "a", "reduction", "there", "is", "and", "running", "models", "to", "isolate", "for", "shelter-in-place", "behavior.\"", "Midcontinent", "ISO", "(MISO)", "officials", "say", "that", "while", "load", "is", "weather", "dependent,", "the", "grid", "operator", "has", "seen", "peaks", "this", "month", "down", "18%", "compared", "to", "March", "2019", "and", "down", "13%", "month", "to", "date", "compared", "to", "the", "March", "average", "since", "2014.", "\"We", "believe", "this", "is", "attributed", "to", "a", "combination", "of", "both", "the", "milder", "weather", "and", "the", "pandemic-related", "closures", "and", "adjusted", "operating", "hours", "of", "non-critical", "businesses,\"", "Allison", "Bermudez", "said", "in", "an", "email.", "RMI's", "Newcomb", "said", "the", "impacts", "of", "coronavirus", "are", "showing", "up", "in", "the", "grid", "operator's", "wholesale", "futures", "markets.", "\"In", "competitive", "markets,", "the", "reduction", "in", "overall", "demand", "from", "the", "slowdown", "will", "have", "an", "impact", "on", "the", "dispatch", "of", "resources", "and", "the", "generation", "mix,\"", "Newcomb", "said.", "\"We", "have", "already", "begun", "to", "see", "a", "decline", "in", "power", "futures", "in", "MISO", "and", "other", "markets.", "These", "declines", "will", "result", "in", "lower", "revenues", "for", "generators.\"", "Newcomb", "said", "RMI", "has", "seen", "declines", "of", "around", "$1/MWh", "to", "$2/MWh,", "though", "he", "added", "\"this", "will", "fluctuate", "in", "the", "weeks", "ahead.\"", "\"Depending", "on", "how", "long", "this", "economic", "downturn", "persists,", "this", "may", "push", "some", "generators", "out", "of", "the", "market", "for", "the", "long-term,\"", "Newcomb", "said.", "Older", "and", "less-efficient", "coal", "generators", "are", "\"particularly", "vulnerable", "and", "may", "drop", "out", "of", "the", "market.\"", "Renewables", "in", "competitive", "markets", "could", "benefit", "The", "reduction", "in", "market", "clearing", "prices", "will", "also", "favor", "wind", "generators", "that", "have", "low", "or", "no", "marginal", "costs,", "Newcomb", "said.", "And", "while", "the", "global", "economic", "slowdown", "has", "reduced", "oil", "and", "gas", "prices", "significantly,", "he", "said", "it", "is", "still", "unclear", "how", "the", "dispatch", "of", "gas-fired", "resources", "will", "be", "impacted.", "Shifts", "in", "load", "profiles", "could", "also", "lead", "to", "a", "better", "match", "of", "Newcomb", "said.", "\"As", "a", "consequence,", "we", "expect", "to", "see", "a", "reduction", "in", "curtailment", "of", "solar", "power,\"", "he", "told", "Utility", "Dive.", "There", "may", "also", "be", "a", "reduction", "in", "the", "amount", "of", "demand", "response", "participating", "in", "markets,", "Newcomb", "said,", "\"since", "many", "demand", "response", "resources", "are", "integrated", "with", "industrial", "and", "commercial", "business", "operations,", "many", "of", "which", "may", "have", "slowed", "or", "stopped", "altogether.\"", "Not", "all", "grid", "operators", "have", "witnessed", "load", "impacts,", "however.", "The", "Southwest", "Power", "Pool", "\"has", "not", "seen", "a", "discernible", "difference", "in", "load", "within", "the", "footprint,\"", "spokesperson", "Meghan", "Sever", "told", "Utility", "Dive", "in", "an", "email,", "though", "there", "have", "been", "changes", "to", "usage", "patterns.", "\"The", "virus’s", "impact", "on", "schools", "and", "local", "businesses", "means", "more", "people", "are", "at", "home", "using", "electricity", "during", "the", "day,\"", "Sever", "said.", "In", "Texas,", "grid", "officials", "told", "Utility", "Dive", "they", "are", "monitoring", "any", "changes", "to", "energy", "use", "but", "\"because", "school", "and", "business", "closures", "continue", "to", "evolve,", "it", "is", "too", "early", "to", "determine", "COVID-19’s", "impact", "on", "electric", "load", "patterns.\"", "Any", "changes", "to", "the", "summer", "peak", "load", "forecast", "will", "be", "announced", "in", "the", "Electric", "Reliability", "Council", "of", "Texas'", "final", "Assessment", "of", "Resource", "Adequacy", "in", "early", "May.", "In", "New", "York,", "grid", "officials", "say", "it", "is", "too", "soon", "to", "draw", "conclusions.", "\"We", "are", "not", "currently", "seeing", "a", "significant", "decrease", "in", "daily", "peak", "demand,", "but", "we", "are", "observing", "shifts", "in", "energy", "usage", "patterns", "throughout", "the", "state", "compared", "to", "prior", "weeks,\"", "New", "York", "ISO", "spokesman", "Zachary", "Hutchins", "said", "in", "an", "email.", "\"We", "will", "continue", "to", "monitor", "for", "as", "new", "data", "becomes", "available.\"" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "it", "it", "it", "it", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "It", "has", "been", "less", "than", "a", "week", "since", "states", "and", "major", "cities", "began", "instituting", "quarantines", "along", "with", "stay-home", "and", "shelter-in-place", "directives", "to", "reduce", "the", "spread", "of", "COVID-19.", "The", "full", "impacts", "on", "electricity", "usage", "are", "not", "yet", "known,", "but", "grid", "operators", "say", "demand", "is", "both", "shifting", "and", "falling.", "Data", "from", "overseas", "may", "give", "an", "indication", "of", "just", "how", "steep", "the", "declines", "could", "become.", "Italy", "instituted", "lockdowns", "and", "closed", "essential", "businesses", "earlier", "this", "month,", "in", "response", "to", "a", "spike", "in", "novel", "coronavirus", "infections.", "According", "to", "the", "Electric", "Power", "Research", "Institute", "(EPRI),", "the", "country", "has", "since", "witnessed", "a", "significant", "decline", "in", "electricity", "demand.", "Five", "to", "seven", "days", "after", "Italy's", "lockdown", "began,", "the", "country", "saw", "an", "18%", "to", "21%", "reduction", "in", "peak", "demand", "and", "energy", "use", "on", "a", "year-over-year", "basis,", "according", "to", "EPRI", "data.", "The", "demand", "decline", "began", "with", "a", "more", "modest", "10%", "reduction", "in", "peak", "demand", "in", "the", "first", "two", "days", "after", "beginning", "its", "lockdown", "on", "March", "12", "and", "13.", "In", "the", "United", "States,", "grid", "operators", "say", "it", "is", "too", "soon", "to", "get", "a", "firm", "handle", "on", "the", "impacts", "of", "coronavirus", "shutdowns,", "but", "some", "are", "already", "seeing", "usage", "declines.", "Propelling", "those", "declines,", "S&P", "Global", "is", "predicting", "a", "global", "recession", "this", "year,", "and", "estimates", "the", "United", "States", "economy", "will", "see", "a", "6%", "seasonally", "adjusted", "second", "quarter", "contraction", "before", "beginning", "to", "recover", "in", "the", "second", "half", "of", "the", "year.", "\"In", "the", "near", "term,", "utilities", "will", "likely", "see", "some", "reduced", "sales", "volumes", "as", "major", "sporting", "events,", "concerts", "and", "businesses", "scale", "back", "drastically,", "compounded", "even", "further", "by", "social", "distancing", "requirements", "being", "mandated", "or", "recommended", "by", "federal", "and", "local", "governments", "across", "North", "America,\"", "S&P", "in", "a", "March", "19", "report.", "While", "the", "firm", "believes", "\"the", "majority", "of", "North", "American", "regulated", "utilities", "are", "well", "positioned", "to", "handle", "the", "immediate", "impact", "of", "COVID-19,\"", "the", "report", "also", "warned", "a", "few", "with", "\"disproportionate", "exposure", "to", "[the]", "commercial", "and", "industrial", "class", "of", "customers", "could", "be", "vulnerable", "to", "reduced", "sales", "volumes.\"", "Some", "of", "those", "impacts", "could", "be", "passed", "along", "to", "consumers,", "according", "to", "James", "Newcomb,", "managing", "director", "of", "emerging", "solutions", "at", "Rocky", "Mountain", "Institute", "(RMI).", "\"As", "a", "consequence", "of", "lower", "energy", "use", "and", "lower", "capacity", "demands", "from", "the", "system,", "utilities", "will", "collect", "less", "revenue", "in", "the", "form", "of", "rates", "during", "this", "downturn", "of", "industrial", "productivity", "and", "economic", "activity,\"", "Newcomb", "told", "Utility", "Dive", "in", "an", "email.", "While", "some", "of", "this", "lost", "revenue", "will", "be", "mitigated", "through", "cost", "reductions", "including", "lower", "fuel", "expenditures,", "Newcomb", "also", "said", "RMI's", "preliminary", "assessment", "indicates", "\"this", "will", "only", "mitigate", "part", "of", "the", "lost", "revenue.\"", "\"Utilities", "may", "ask", "regulators", "for", "increased", "cost", "recovery", "through", "rate", "increases", "in", "the", "future", "as", "a", "result,\"", "Newcomb", "said,", "adding", "that", "this", "will", "also", "depend", "on", "specific-state", "policies", "such", "as", "decoupling.", "However,", "investment", "research", "platform", "SSR", "estimates", "that", "utilities", "in", "the", "early", "stages", "of", "rate", "cases", "right", "now", "will", "be", "very", "vulnerable", "and", "could", "have", "their", "return", "on", "equity", "lowered", "by", "regulators.", "SSR", "identified", "the", "four", "most", "vulnerable", "companies", "as", "CMS", "Energy,", "Hawaiian", "Electric", "and", "Pinnacle", "West", "Capital,", "the", "parent-company", "of", "Arizona", "Public", "Service.", "\"They're", "on", "the", "front", "line", "because", "they're", "the", "first", "ones", "in", "before", "regulators,\"", "Eric", "Selmon,", "report", "co-author", "and", "co-head", "of", "SSR's", "utility", "and", "renewable", "energy", "research,", "told", "Utility", "Dive.", "\"Deferring", "their", "rate", "cases", "may", "be", "the", "best", "thing", "they", "can", "do,\"", "to", "avoid", "pressure", "from", "regulators.", "Because", "of", "limits", "on", "public", "meetings,", "he", "added,", "the", "rate", "cases", "may", "be", "put", "off", "by", "the", "commissions", "as", "well.", "While", "the", "impacts", "on", "electricity", "demand", "are", "only", "beginning", "to", "emerge,", "grid", "operators", "around", "the", "country", "are", "reporting", "demand", "declines", "and", "shifts", "in", "load", "shapes.", "Load", "declines,", "shifts", "in", "major", "ISO", "New", "England,", "in", "a", "Friday", "blog", "post,", "said", "it", "has", "witnessed", "a", "decline", "in", "demand", "of", "approximately", "3%", "to", "5%,", "\"compared", "to", "what", "would", "normally", "be", "expected", "under", "weather", "conditions", "in", "the", "region.\"", "Along", "with", "demand", "reductions,", "the", "grid", "operator", "said", "the", "changes", "are", "also", "affecting", "demand", "patterns", "across", "the", "region.", "\"ISO", "forecasters", "see", "load", "patterns", "that", "resemble", "those", "of", "snow", "days,", "when", "schools", "are", "closed", "and", "many", "are", "home", "during", "the", "day,\"", "the", "grid", "operator", "said.", "\"These", "patterns", "include", "a", "slower", "than", "normal", "ramp", "of", "usage", "in", "the", "morning,", "and", "increased", "energy", "use", "in", "the", "afternoon.\"", "\"We", "have", "already", "begun", "to", "see", "a", "decline", "in", "power", "futures", "in", "MISO", "and", "other", "markets.", "These", "declines", "will", "result", "in", "revenues", "for", "James", "Newcomb", "Managing", "director", "of", "emerging", "solutions,", "Rocky", "Mountain", "Institute", "PJM", "Interconnection", "reported", "a", "similar", "load", "decline", "as", "well.", "The", "grid", "operator", "for", "much", "of", "the", "Mid-Atlantic", "told", "Utility", "Dive", "in", "an", "email", "that", "on", "March", "16,", "when", "the", "system", "would", "normally", "have", "expected", "about", "100,000", "MW", "of", "load,", "\"with", "the", "special", "circumstances,", "we", "dialed", "down", "the", "forecast", "to", "about", "94,500", "and", "it", "came", "in", "at", "about", "95,500.\"", "\"We", "don’t", "have", "a", "complete", "picture", "yet", "of", "what", "the", "impacts", "are" ] ], [ [ ",", "but", "we", "can", "tell", "you", "that", "the", "shift", "in", "work", "patterns", "and", "business", "closures", "is", "likely", "behind", "subtle", "shifts", "in", "electricity", "use,\"", "PJM", "spokesman", "Jeff", "Shields", "said", "in", "an", "email.", "PJM's", "highest", "electricity", "use", "is", "now", "coming", "in", "a", "little", "later", "in", "the", "morning,", "and", "the", "grid", "operator", "expects", "electricity", "use", "to", "\"drop", "to", "some", "degree", "if", "schools", "and", "businesses", "continue", "to", "stay", "shuttered", "because", "of", "the", "coronavirus.", "Electricity", "use", "will", "more", "closely", "resemble", "weekend", "days.\"", "In", "California,", "Democratic", "Gov.", "Gavin", "Newsom", "issued", "a", "stay-at-home", "order", "on", "March", "19.", "The", "state's", "grid", "operator", "is", "in", "a", "\"very", "fluid", "situation,", "with", "the", "state", "and", "counties", "announcing", "new", "policies", "almost", "daily", "this", "past", "week,\"", "California", "ISO", "spokesperson", "Anne", "Gonzales", "told", "Utility", "Dive.", "\"In", "the", "areas", "currently", "under", "shelter-in-place", "orders", "and", "directives,", "we", "are", "seeing", "reduction", "in", "load,", "especially", "in", "those", "areas", "that", "have", "more", "population,", "such", "as", "the", "Bay", "Area,", "where", "there’s", "small", "businesses", "and", "corporate", "concentration,\"", "she", "said.", "California", "inland", "areas", "with", "more", "industrial", "users", "\"are", "not", "seeing", "the", "[same]", "level", "of", "load", "reduction,", "but", "they", "are", "also", "generally", "not", "in", "shelter-in-place", "areas,\"", "Gonzales", "added.", "\"While", "we", "are", "seeing", "lower", "consumption", "needs,", "we", "are", "still", "analyzing", "how", "much", "of", "a", "reduction", "there", "is", "and", "running", "models", "to", "isolate", "for", "shelter-in-place", "behavior.\"", "Midcontinent", "ISO", "(MISO)", "officials", "say", "that", "while", "load", "is", "weather", "dependent,", "the", "grid", "operator", "has", "seen", "peaks", "this", "month", "down", "18%", "compared", "to", "March", "2019", "and", "down", "13%", "month", "to", "date", "compared", "to", "the", "March", "average", "since", "2014.", "\"We", "believe", "this", "is", "attributed", "to", "a", "combination", "of", "both", "the", "milder", "weather", "and", "the", "pandemic-related", "closures", "and", "adjusted", "operating", "hours", "of", "non-critical", "businesses,\"", "Allison", "Bermudez", "said", "in", "an", "email.", "RMI's", "Newcomb", "said", "the", "impacts", "of", "coronavirus", "are", "showing", "up", "in", "the", "grid", "operator's", "wholesale", "futures", "markets.", "\"In", "competitive", "markets,", "the", "reduction", "in", "overall", "demand", "from", "the", "slowdown", "will", "have", "an", "impact", "on", "the", "dispatch", "of", "resources", "and", "the", "generation", "mix,\"", "Newcomb", "said.", "\"We", "have", "already", "begun", "to", "see", "a", "decline", "in", "power", "futures", "in", "MISO", "and", "other", "markets.", "These", "declines", "will", "result", "in", "lower", "revenues", "for", "generators.\"", "Newcomb", "said", "RMI", "has", "seen", "declines", "of", "around", "$1/MWh", "to", "$2/MWh,", "though", "he", "added", "\"this", "will", "fluctuate", "in", "the", "weeks", "ahead.\"", "\"Depending", "on", "how", "long", "this", "economic", "downturn", "persists,", "this", "may", "push", "some", "generators", "out", "of", "the", "market", "for", "the", "long-term,\"", "Newcomb", "said.", "Older", "and", "less-efficient", "coal", "generators", "are", "\"particularly", "vulnerable", "and", "may", "drop", "out", "of", "the", "market.\"", "Renewables", "in", "competitive", "markets", "could", "benefit", "The", "reduction", "in", "market", "clearing", "prices", "will", "also", "favor", "wind", "generators", "that", "have", "low", "or", "no", "marginal", "costs,", "Newcomb", "said.", "And", "while", "the", "global", "economic", "slowdown", "has", "reduced", "oil", "and", "gas", "prices", "significantly,", "he", "said", "it", "is", "still", "unclear", "how", "the", "dispatch", "of", "gas-fired", "resources", "will", "be", "impacted.", "Shifts", "in", "load", "profiles", "could", "also", "lead", "to", "a", "better", "match", "of", "Newcomb", "said.", "\"As", "a", "consequence,", "we", "expect", "to", "see", "a", "reduction", "in", "curtailment", "of", "solar", "power,\"", "he", "told", "Utility", "Dive.", "There", "may", "also", "be", "a", "reduction", "in", "the", "amount", "of", "demand", "response", "participating", "in", "markets,", "Newcomb", "said,", "\"since", "many", "demand", "response", "resources", "are", "integrated", "with", "industrial", "and", "commercial", "business", "operations,", "many", "of", "which", "may", "have", "slowed", "or", "stopped", "altogether.\"", "Not", "all", "grid", "operators", "have", "witnessed", "load", "impacts,", "however.", "The", "Southwest", "Power", "Pool", "\"has", "not", "seen", "a", "discernible", "difference", "in", "load", "within", "the", "footprint,\"", "spokesperson", "Meghan", "Sever", "told", "Utility", "Dive", "in", "an", "email,", "though", "there", "have", "been", "changes", "to", "usage", "patterns.", "\"The", "virus’s", "impact", "on", "schools", "and", "local", "businesses", "means", "more", "people", "are", "at", "home", "using", "electricity", "during", "the", "day,\"", "Sever", "said.", "In", "Texas,", "grid", "officials", "told", "Utility", "Dive", "they", "are", "monitoring", "any", "changes", "to", "energy", "use", "but", "\"because", "school", "and", "business", "closures", "continue", "to", "evolve,", "it", "is", "too", "early", "to", "determine", "COVID-19’s", "impact", "on", "electric", "load", "patterns.\"", "Any", "changes", "to", "the", "summer", "peak", "load", "forecast", "will", "be", "announced", "in", "the", "Electric", "Reliability", "Council", "of", "Texas'", "final", "Assessment", "of", "Resource", "Adequacy", "in", "early", "May.", "In", "New", "York,", "grid", "officials", "say", "it", "is", "too", "soon", "to", "draw", "conclusions.", "\"We", "are", "not", "currently", "seeing", "a", "significant", "decrease", "in", "daily", "peak", "demand,", "but", "we", "are", "observing", "shifts", "in", "energy", "usage", "patterns", "throughout", "the", "state", "compared", "to", "prior", "weeks,\"", "New", "York", "ISO", "spokesman", "Zachary", "Hutchins", "said", "in", "an", "email.", "\"We", "will", "continue", "to", "monitor", "for", "as", "new", "data", "becomes", "available.\"" ] ] ]
[ [ "en" ], [ "en" ] ]
[ "mono" ]
[ [ "Der", "Wechsel", "von", "Thiago", "Alcantara", "zum", "FC", "Bayern", "München", "scheint", "so", "gut", "wie", "perfekt.", "Spanischen", "Medienberichten", "zufolge", "hat", "Bayerns", "Vorstandsvorsitzender", "Karl-Heinz", "Rummenigge", "Kontakt", "mit", "dem", "Präsidenten", "des", "FC", "Barcelona", "aufgenommen:", "Man", "werde", "die", "Klausel", "im", "Vertrag", "des", "Mittelfeldspielers", "ziehen.", "Diverse", "Medien", "wie", "etwa", "\"Sky", "Italia\"", "hatten", "bereits", "darüber", "berichtet,", "dass", "der", "22-Jährige", "die", "Katalanen", "verlasssen,", "aber", "nicht", "wie", "zuvor", "vermutet", "zu", "Manchester", "United", "wechseln", "werde.", "Artikel", "und", "Videos", "zum", "Thema", "Ausgewählte", "Bundesliga-Spiele", "live", "auf", "DAZN.", "Hol", "Dir", "jetzt", "Deinen", "Gratismonat!", "Thiago", "Alcantara:", "Der", "Prozess-Beschleuniger", "Bayerns", "Trainer", "Pep", "Guardiola", "hatte", "das", "Interesse", "des", "Triple-Siegers", "an", "Thiago", "am", "Donnerstagmittag", "dann", "bestätigt.", "Wie", "der", "katalanische", "Radiosender", "\"RAC1\"", "berichtet,", "hat", "Rummenigge", "nun", "mit", "Präsident", "Sandro", "Rosell", "gesprochen.", "Bayern", "mit", "Thiago", "-", "So", "könnten", "sie", "spielen", "©", "spox", "1/7", "4-2-3-1", "offensiv:", "Javi", "Martinez", "weicht", "für", "Thiago", "aus", "dem", "Mittelfeld", "in", "die", "Innenverteidigung.", "Thiago", "übernimmt", "die", "Rolle", "des", "offensiveren", "Sechsers", "©", "spox", "2/7", "4-2-3-1", "defensiv:", "Martinez", "spielt", "neben", "Thiago", "auf", "der", "Doppelsechs.", "Schweinsteiger", "rückt", "dafür", "eine", "Position", "auf", "und", "gibt", "den", "Zehner", "©", "spox", "3/7", "4-2-3-1", "falsche", "Neun:", "Thiago", "und", "Schweinsteiger", "besetzen", "die", "Zentrale", "in", "einem", "System", "ohne", "echten", "Stoßstürmer.", "Götze", "agiert", "variabel", "im", "Verbund", "mit", "der", "offensiven", "Dreierkette", "©", "spox", "4/7", "4-3-3,", "Variante", "1:", "In", "Anlehnung", "an", "Barcelona", "gibt", "Thiago", "den", "Xavi,", "Schweinsteiger", "den", "Iniesta", "und", "Martinez", "den", "Quarterback.", "Vorne:", "Ein", "echter", "Stoßstürmer", "©", "spox", "5/7", "4-3-3,", "Variante", "2:", "Jetzt", "spielt", "Martinez", "in", "der", "Innenverteidigung,", "Schweinsteiger", "übernimmt", "seinen", "Part", "©", "spox", "6/7", "4-3-3,", "3:", "Eine", "Variante", "ohne", "Stoßstürmer", "und", "Robben", "und", "Ribery.", "Thiago", "übernimmt", "den", "linken", "Flügel", "©", "spox", "7/7", "3-4-3:", "So", "könnten", "die", "Bayern", "mit", "Dreierkette", "aussehen.", "Martinez", "spielt", "hinten,", "Schweinsteiger", "und", "Thiago", "organisieren", "das", "Spiel", "im", "Zentrum", "18", "Millionen", "Euro", "als", "Ablöse", "Da", "der", "Spanier", "in", "der", "vergangenen", "Saison", "nicht", "auf", "eine", "bestimmte", "Anzahl", "an", "Einsätzen", "und", "Einsatzminuten", "gekommen", "ist,", "darf", "er", "Barca", "für", "die", "festgeschriebene", "Ablöse", "von", "18", "Millionen", "Euro", "verlassen.", "Er", "soll", "bei", "den", "Bayern", "3,7", "Millionen", "Euro", "jährlich", "verdienen.", "Wenn", "ein", "Wechsel", "nicht", "bis", "zum", "31.", "Juli", "zu", "Stande", "kommt,", "verstreicht", "die", "Klausel", "und", "die", "Ablöse", "für", "den", "Stürmer,", "der", "bei", "der", "U-21-EM", "für", "Furore", "gesorgt", "hatte,", "erhöht", "sich", "auf", "90", "Millionen", "Euro.", "Thiago", "Alcantara", "im", "Steckbrief" ] ]
[ [ "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "es", "es", "es", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "es", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "en", "de", "de", "de" ] ]
[ [ [ "Der", "Wechsel", "von", "Thiago", "Alcantara", "zum", "FC", "Bayern", "München", "scheint", "so", "gut", "wie", "perfekt.", "Spanischen", "Medienberichten", "zufolge", "hat", "Bayerns", "Vorstandsvorsitzender", "Karl-Heinz", "Rummenigge", "Kontakt", "mit", "dem", "Präsidenten", "des", "FC", "Barcelona", "aufgenommen:", "Man", "werde", "die", "Klausel", "im", "Vertrag", "des", "Mittelfeldspielers", "ziehen.", "Diverse", "Medien", "wie", "etwa", "\"Sky", "Italia\"", "hatten", "bereits", "darüber", "berichtet,", "dass", "der", "22-Jährige", "die", "Katalanen", "verlasssen,", "aber", "nicht", "wie", "zuvor", "vermutet", "zu", "Manchester", "United", "wechseln", "werde.", "Artikel", "und", "Videos", "zum", "Thema", "Ausgewählte", "Bundesliga-Spiele", "live", "auf", "DAZN.", "Hol", "Dir", "jetzt", "Deinen", "Gratismonat!", "Thiago", "Alcantara:", "Der", "Prozess-Beschleuniger", "Bayerns", "Trainer", "Pep", "Guardiola", "hatte", "das", "Interesse", "des", "Triple-Siegers", "an", "Thiago", "am", "Donnerstagmittag", "dann", "bestätigt.", "Wie", "der", "katalanische", "Radiosender", "\"RAC1\"", "berichtet,", "hat", "Rummenigge", "nun", "mit", "Präsident", "Sandro", "Rosell", "gesprochen.", "Bayern", "mit", "Thiago", "-", "So", "könnten", "sie", "spielen", "©", "spox", "1/7", "4-2-3-1", "offensiv:", "Javi", "Martinez", "weicht", "für", "Thiago", "aus", "dem", "Mittelfeld", "in", "die", "Innenverteidigung.", "Thiago", "übernimmt", "die", "Rolle", "des", "offensiveren", "Sechsers", "©", "spox", "2/7", "4-2-3-1", "defensiv:", "Martinez", "spielt", "neben", "Thiago", "auf", "der", "Doppelsechs.", "Schweinsteiger", "rückt", "dafür", "eine", "Position", "auf", "und", "gibt", "den", "Zehner", "©", "spox", "3/7", "4-2-3-1", "falsche", "Neun:", "Thiago", "und", "Schweinsteiger", "besetzen", "die", "Zentrale", "in", "einem", "System", "ohne", "echten", "Stoßstürmer.", "Götze", "agiert", "variabel", "im", "Verbund", "mit", "der", "offensiven", "Dreierkette", "©", "spox", "4/7" ], [ "In", "Anlehnung", "an", "Barcelona", "gibt", "Thiago", "den", "Xavi,", "Schweinsteiger", "den", "Iniesta", "und", "Martinez", "den", "Quarterback.", "Vorne:", "Ein", "echter", "Stoßstürmer", "©", "spox", "5/7", "4-3-3,", "Variante", "2:", "Jetzt", "spielt", "Martinez", "in", "der", "Innenverteidigung,", "Schweinsteiger", "übernimmt", "seinen", "Part", "©", "spox", "6/7" ], [ "3:", "Eine", "Variante", "ohne", "Stoßstürmer", "und", "Robben", "und", "Ribery.", "Thiago", "übernimmt", "den", "linken", "Flügel", "©", "spox", "7/7", "3-4-3:", "So", "könnten", "die", "Bayern", "mit", "Dreierkette", "aussehen.", "Martinez", "spielt", "hinten,", "Schweinsteiger", "und", "Thiago", "organisieren", "das", "Spiel", "im", "Zentrum", "18", "Millionen", "Euro", "als", "Ablöse", "Da", "der", "Spanier", "in", "der", "vergangenen", "Saison", "nicht", "auf", "eine", "bestimmte", "Anzahl", "an", "Einsätzen", "und", "Einsatzminuten", "gekommen", "ist,", "darf", "er", "Barca", "für", "die", "festgeschriebene", "Ablöse", "von", "18", "Millionen", "Euro", "verlassen.", "Er", "soll", "bei", "den", "Bayern", "3,7", "Millionen", "Euro", "jährlich", "verdienen.", "Wenn", "ein", "Wechsel", "nicht", "bis", "zum", "31.", "Juli", "zu", "Stande", "kommt,", "verstreicht", "die", "Klausel", "und", "die", "Ablöse", "für", "den", "Stürmer,", "der", "bei", "der", "U-21-EM", "für", "Furore", "gesorgt", "hatte,", "erhöht", "sich", "auf", "90", "Millionen", "Euro.", "Thiago", "Alcantara", "im", "Steckbrief" ] ] ]
[ [ "de", "de", "de" ] ]
[ "mono" ]
[ [ "In", "back", "rooms", "and", "refugee", "camps", "across", "this", "impoverished", "territory,", "young", "men", "are", "rapping", "over", "hip", "hop", "beats,", "flipping", "over", "metal", "bars", "and", "spinning", "on", "their", "heads", "to", "funky", "dance", "music", "-", "not", "the", "preferred", "hobbies", "of", "Gaza's", "militant", "Hamas", "rulers.", "Many", "youths,", "who", "make", "up", "the", "majority", "of", "Gaza's", "1.5", "million", "residents,", "are", "stuck", "between", "Hamas'", "strict", "version", "of", "Islam", "and", "an", "Israeli-Egyptian", "blockade", "that", "keeps", "them", "locked", "in", "with", "little", "work.", "Inside,", "however,", "creativity", "blooms,", "sometimes", "clashing", "with", "traditional", "Gaza", "social", "or", "Hamas'", "standards", "of", "acceptable", "behavior.", "Rap,", "for", "one,", "raises", "suspicion.", "\"When", "we", "started,", "everyone", "said,", "'Why", "are", "they", "wearing", "baggy", "clothes?", "Why", "do", "they", "greet", "each", "other", "like", "that?'\"", "said", "Ayman", "Mghamis,", "25,", "of", "Palestinian", "Rapperz,", "one", "of", "Gaza's", "10", "or", "so", "rap", "groups.", "Gazans", "started", "accepting", "them,", "he", "said,", "but", "the", "Hamas", "government", "didn't.", "Hamas", "police", "broke", "up", "a", "show", "in", "March", "that", "contained", "a", "rap", "act.", "Police", "said", "the", "event", "lacked", "permits,", "but", "the", "rappers", "took", "it", "as", "a", "cue", "to", "keep", "their", "heads", "down.", "While", "underground,", "the", "rappers", "distribute", "songs", "on", "the", "Internet", "and", "perform", "at", "events", "organized", "by", "international", "organizations,", "which", "they", "say", "keeps", "authorities", "at", "bay.", "Other", "pastimes", "face", "different", "obstacles.", "A", "few", "times", "a", "week,", "four", "guys", "sneak", "into", "an", "elementary", "school", "to", "flip", "over", "metal", "railings,", "leap", "down", "staircases", "and", "launch", "off", "walls", "and", "tree", "trunks.", "They", "are", "one", "of", "at", "least", "two", "Gaza", "groups", "that", "practice", "parkour,", "the", "acrobatic", "art", "of", "using", "the", "human", "body", "to", "overcome", "obstacles.", "Their", "neighbors", "sometimes", "report", "them", "to", "the", "police.", "\"They", "see", "you", "climbing", "on", "a", "roof", "and", "they", "think", "you're", "a", "thief,\"", "said", "Mohammed", "Irgayig,", "19.", "Like", "most", "of", "the", "rappers", "-", "and", "like", "most", "Gaza", "youth", "-", "all", "four", "are", "unemployed.", "\"I", "do", "it", "to", "get", "my", "head", "out", "of", "the", "situation", "I'm", "in", "and", "feel", "free,\"", "Irgayig", "said.", "Underground", "activities", "are", "rare", "for", "Gaza", "women,", "who", "have", "greater", "housekeeping", "duties", "and", "are", "expected", "to", "be", "discreet", "in", "public.", "In", "a", "small", "apartment,", "the", "nine", "male", "members", "of", "premier", "break", "dance", "troupe", "turns", "spinning", "on", "their", "backs,", "shoulders", "and", "heads,", "then", "flipping", "up", "and", "dancing", "on", "their", "hands.", "Mohammed", "Ghreis,", "23,", "started", "the", "Camps", "Breakerz", "in", "2004.", "They", "learn", "new", "moves", "from", "the", "Internet.", "Gaza", "has", "at", "least", "one", "other", "break", "dance", "posse,", "and", "Ghreis", "expects", "it", "to", "spread", "through", "children's", "workshops", "his", "group", "holds.", "Recently,", "two", "teens", "he", "didn't", "know", "showed", "up", "for", "practice", "and", "said", "they'd", "been", "teaching", "themselves", "from", "videos", "on", "the", "group's", "website.", "Ghreis", "played", "some", "music", "and", "gave", "them", "the", "floor.", "\"They", "were", "good,\"", "he", "said,", "beaming.", "\"I", "was", "really", "proud.\"", "Ben", "Hubbard", "is", "an", "Associated", "Press", "writer." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "es", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "nl", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "In", "back", "rooms", "and", "refugee", "camps", "across", "this", "impoverished", "territory,", "young", "men", "are", "rapping", "over", "hip", "hop", "beats,", "flipping", "over", "metal", "bars", "and", "spinning", "on", "their", "heads", "to", "funky", "dance", "music", "-", "not", "the", "preferred", "hobbies", "of", "Gaza's", "militant", "Hamas", "rulers.", "Many", "youths,", "who", "make", "up", "the", "majority", "of", "Gaza's", "1.5", "million", "residents,", "are", "stuck", "between", "Hamas'", "strict", "version", "of", "Islam", "and", "an", "Israeli-Egyptian", "blockade", "that", "keeps", "them", "locked", "in", "with", "little", "work.", "Inside,", "however,", "creativity", "blooms,", "sometimes", "clashing", "with", "traditional", "Gaza", "social", "or", "Hamas'", "standards", "of", "acceptable", "behavior.", "Rap,", "for", "one,", "raises", "suspicion.", "\"When", "we", "started,", "everyone", "said,", "'Why", "are", "they", "wearing", "baggy", "clothes?", "Why", "do", "they", "greet", "each", "other", "like", "that?'\"", "said", "Ayman", "Mghamis,", "25,", "of", "Palestinian", "Rapperz,", "one", "of", "Gaza's", "10", "or", "so", "rap", "groups.", "Gazans", "started", "accepting", "them,", "he", "said,", "but", "the", "Hamas", "government", "didn't.", "Hamas", "police", "broke", "up", "a", "show", "in", "March", "that", "contained", "a", "rap", "act.", "Police", "said", "the", "event", "lacked", "permits,", "but", "the", "rappers", "took", "it", "as", "a", "cue", "to", "keep", "their", "heads", "down.", "While", "underground,", "the", "rappers", "distribute", "songs", "on", "the", "Internet", "and", "perform", "at", "events", "organized", "by", "international", "organizations,", "which", "they", "say", "keeps", "authorities", "at", "bay.", "Other", "pastimes", "face", "different", "obstacles.", "A", "few", "times", "a", "week,", "four", "guys", "sneak", "into", "an", "elementary", "school", "to", "flip", "over", "metal", "railings,", "leap", "down", "staircases", "and", "launch", "off", "walls", "and", "tree", "trunks.", "They", "are", "one", "of", "at", "least", "two", "Gaza", "groups", "that", "practice", "parkour,", "the", "acrobatic", "art", "of", "using", "the", "human", "body", "to", "overcome", "obstacles.", "Their", "neighbors", "sometimes", "report", "them", "to", "the", "police.", "\"They", "see", "you", "climbing", "on", "a", "roof", "and", "they", "think", "you're", "a", "thief,\"", "said", "Mohammed", "Irgayig,", "19.", "Like", "most", "of", "the", "rappers", "-", "and", "like", "most", "Gaza", "youth", "-", "all", "four", "are", "unemployed.", "\"I", "do", "it", "to", "get", "my", "head", "out", "of", "the", "situation", "I'm", "in", "and", "feel", "free,\"", "Irgayig", "said.", "Underground", "activities", "are", "rare", "for", "Gaza", "women,", "who", "have", "greater", "housekeeping", "duties", "and", "are", "expected", "to", "be", "discreet", "in", "public.", "In", "a", "small", "apartment,", "the", "nine", "male", "members", "of" ], [ "turns", "spinning", "on", "their", "backs,", "shoulders", "and", "heads,", "then", "flipping", "up", "and", "dancing", "on", "their", "hands.", "Mohammed", "Ghreis,", "23,", "started", "the", "Camps", "Breakerz", "in", "2004.", "They", "learn", "new", "moves", "from", "the", "Internet.", "Gaza", "has", "at", "least", "one", "other", "break", "dance", "posse,", "and", "Ghreis", "expects", "it", "to", "spread", "through", "children's", "workshops", "his", "group", "holds.", "Recently,", "two", "teens", "he", "didn't", "know", "showed", "up", "for", "practice", "and", "said", "they'd", "been", "teaching", "themselves", "from", "videos", "on", "the", "group's", "website.", "Ghreis", "played", "some", "music", "and", "gave", "them", "the", "floor.", "\"They", "were", "good,\"", "he", "said,", "beaming.", "\"I", "was", "really", "proud.\"", "Ben", "Hubbard", "is", "an", "Associated", "Press", "writer." ] ] ]
[ [ "en", "en" ] ]
[ "mono" ]
[ [ "Pillr’s", "automation,", "collection", "and", "insights", "engine", "saves", "you", "from", "hiring", "property", "managers", "and", "firms,", "ensuring", "you", "keep", "the", "7-10%", "of", "your", "rental", "income", "that", "you", "would", "normally", "spend", "on", "maintenance", "and", "administration", "costs.", "Built", "landlords,", "Pillr", "automates", "processes", "the", "rental", "value", "chain", "so", "you", "can", "focus", "on", "what", "matters", "most." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Pillr’s", "automation,", "collection", "and", "insights", "engine", "saves", "you", "from", "hiring", "property", "managers", "and", "firms,", "ensuring", "you", "keep", "the", "7-10%", "of", "your", "rental", "income", "that", "you", "would", "normally", "spend", "on", "maintenance", "and", "administration", "costs.", "Built", "landlords,", "Pillr", "automates", "processes", "the", "rental", "value", "chain", "so", "you", "can", "focus", "on", "what", "matters", "most." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Last", "month,", "Miller", "Thomson,", "the", "law", "firm", "representing", "Quadriga’s", "former", "users,", "asked", "creditors", "for", "help", "in", "identifying", "if", "the", "failed", "Canadian", "exchange", "had", "used", "Crypto", "Capital", "Corp,", "a", "payment", "processor", "that", "is", "allegedly", "missing", "some", "$850", "million.", "In", "a", "letter", "posted", "on", "its", "website", "on", "Jan.", "22,", "the", "law", "firm", "said", "that", "it", "had", "received", "information", "that", "Quadriga", "had", "used", "a", "“Panamanian", "shadow", "bank”", "in", "the", "final", "quarter", "of", "its", "operation—presumably,", "that", "means", "September", "thru", "December", "2018,", "since", "the", "exchange", "went", "belly", "up", "in", "January", "2019.", "Specifically,", "the", "law", "firm", "asked", "creditors", "to", "forward", "any", "emails", "or", "financial", "statements", "with", "names", "of", "people", "or", "companies", "linked", "to", "Crypto", "Capital.", "It", "offered", "a", "lengthy", "list", "that", "included", "Global", "Trading", "Solutions", "LLC", "and", "Global", "Trade", "Solutions", "AG.", "The", "former", "was", "a", "shell", "company", "in", "Chandler,", "Ariz.,", "set", "up", "on", "Feb.", "14,", "2018,", "Reggie", "Fowler,", "one", "of", "the", "individuals", "alleged", "to", "have", "connections", "to", "Crypto", "Capital.", "The", "latter", "was", "the", "Swiss", "parent", "company", "of", "Crypto", "Capital.", "(The", "firm", "was", "cited", "as", "a", "parent", "company", "on", "Crypto", "Capital’s", "website.)", "Also,", "in", "a", "December", "2018", "letter", "published", "on", "this", "blog,", "Crypto", "Capital", "boss", "Ivan", "Molina", "wrote", "that", "“Global", "Trade", "Solutions", "AG", "and", "related", "entities”", "were", "being", "denied", "banking", "in", "the", "U.S.,", "Europe", "and", "elsewhere", "as", "a", "result", "of", "financial", "crimes", "investigations.", "Molina", "was", "arrested", "for", "money", "laundering", "last", "year.", "What", "about", "GTS", "Gmbh", "is", "not", "on", "Miller", "Thomson’s", "list.", "I", "can’t", "find", "it", "on", "any", "legal", "or", "court", "docs", "either,", "but", "someone", "posted", "on", "Reddit", "a", "year", "ago", "that", "they", "had", "received", "their", "Crypto", "Capital", "withdrawals", "from", "the", "company.", "The", "sole", "officer", "for", "Gmbh", "Ralf", "Hülsmann,", "who", "started", "on", "June", "15,", "2016.", "Researcher", "Robert-Jan", "den", "the", "German", "public", "registry", "for", "the", "company,", "and", "it", "is", "clearly", "associated", "with", "Spiral", "Global", "AG,", "which", "is", "directly", "linked", "to", "Fowler.", "Spiral", "Inc.", "is", "a", "holding", "company", "Fowler", "set", "up", "in", "1989.", "At", "one", "time", "it", "held", "more", "than", "100", "businesses.", "He", "also", "Links", "to", "Quadriga", "Two", "documents", "recently", "shared", "by", "individuals", "on", "Telegram", "claiming", "to", "be", "Quadriga", "creditors", "show", "funds", "sent", "to", "Global", "Gmbh.", "June", "28,", "2018,", "one", "creditor", "wired", "$50,000", "CAD", "from", "the", "Royal", "Bank", "of", "Canada", "in", "Toronto", "to", "an", "account", "Deutsche", "Bank", "in", "belonging", "to", "Gmbh.", "“I", "should", "have", "followed", "my", "gut", "feelings", "when", "I", "was", "at", "the", "bank", "making", "this", "wire", "transfer,”", "the", "user", "told", "me.", "“I", "just", "had", "a", "very", "shady", "feeling.”", "Another", "creditor", "shared", "the", "following", "document", "on", "Telegram.", "Similarly,", "it", "shows", "funds", "being", "sent", "to", "a", "Global", "Trade", "Gmbh", "Bank.", "The", "transfer", "appears", "to", "be", "going", "out", "from", "a", "bank", "in", "Toronto,", "but", "there", "is", "no", "date", "on", "it.", "Other", "evidence", "There", "is", "other", "evidence", "to", "support", "Quadriga", "using", "Crypto", "Capital.", "At", "one", "time,", "the", "payment", "processor", "listed", "Quadriga", "on", "its", "website", "as", "a", "client.", "Gerald", "Cotten,", "the", "exchange’s", "now-deceased", "founder", "also", "admitted", "to", "using", "it", "in", "the", "past.", "In", "an", "email", "to", "Bloomberg", "News", "on", "May", "17,", "2018,", "he", "wrote:", "“Crypto", "Capital", "is", "one", "such", "company", "that", "we", "have/do", "use.", "In", "general", "it", "works", "well,", "though", "there", "are", "occasionally", "hiccups.”", "Assuming", "Quadriga", "did", "use", "Crypto", "Capital,", "the", "only", "question", "that", "remains", "is,", "was", "the", "payment", "processor", "holding", "any", "Quadriga", "funds", "when", "the", "exchange", "went", "belly", "up?", "(Remember,", "Quadriga", "didn’t", "keep", "any", "books,", "so", "it’s", "up", "to", "Miller", "Thomson", "and", "court-appointed", "trustee", "Ernst", "&", "Young", "to", "piece", "things", "together.)", "And", "if", "so,", "is", "there", "any", "chance", "in", "hell", "of", "getting", "those", "funds", "back?", "(Read", "my", "complete", "Quadriga", "timeline", "to", "in", "on", "Feb.", "19", "to", "add", "Ralf", "Hülsmann", "and", "link", "to", "someone", "on", "Reddit", "who", "said", "they", "received", "CCC", "withdrawals", "Gmbh.", "Updated", "on", "Feb.", "13", "to", "fix", "typo", "—", "AG,", "not", "Global", "Trading", "Solutions", "AG", "—", "add", "a", "screenshot", "from", "Crypto", "Capital’s", "website", "and", "mention", "missing", "$850", "million." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Last", "month,", "Miller", "Thomson,", "the", "law", "firm", "representing", "Quadriga’s", "former", "users,", "asked", "creditors", "for", "help", "in", "identifying", "if", "the", "failed", "Canadian", "exchange", "had", "used", "Crypto", "Capital", "Corp,", "a", "payment", "processor", "that", "is", "allegedly", "missing", "some", "$850", "million.", "In", "a", "letter", "posted", "on", "its", "website", "on", "Jan.", "22,", "the", "law", "firm", "said", "that", "it", "had", "received", "information", "that", "Quadriga", "had", "used", "a", "“Panamanian", "shadow", "bank”", "in", "the", "final", "quarter", "of", "its", "operation—presumably,", "that", "means", "September", "thru", "December", "2018,", "since", "the", "exchange", "went", "belly", "up", "in", "January", "2019.", "Specifically,", "the", "law", "firm", "asked", "creditors", "to", "forward", "any", "emails", "or", "financial", "statements", "with", "names", "of", "people", "or", "companies", "linked", "to", "Crypto", "Capital.", "It", "offered", "a", "lengthy", "list", "that", "included", "Global", "Trading", "Solutions", "LLC", "and", "Global", "Trade", "Solutions", "AG.", "The", "former", "was", "a", "shell", "company", "in", "Chandler,", "Ariz.,", "set", "up", "on", "Feb.", "14,", "2018,", "Reggie", "Fowler,", "one", "of", "the", "individuals", "alleged", "to", "have", "connections", "to", "Crypto", "Capital.", "The", "latter", "was", "the", "Swiss", "parent", "company", "of", "Crypto", "Capital.", "(The", "firm", "was", "cited", "as", "a", "parent", "company", "on", "Crypto", "Capital’s", "website.)", "Also,", "in", "a", "December", "2018", "letter", "published", "on", "this", "blog,", "Crypto", "Capital", "boss", "Ivan", "Molina", "wrote", "that", "“Global", "Trade", "Solutions", "AG", "and", "related", "entities”", "were", "being", "denied", "banking", "in", "the", "U.S.,", "Europe", "and", "elsewhere", "as", "a", "result", "of", "financial", "crimes", "investigations.", "Molina", "was", "arrested", "for", "money", "laundering", "last", "year.", "What", "about", "GTS", "Gmbh", "is", "not", "on", "Miller", "Thomson’s", "list.", "I", "can’t", "find", "it", "on", "any", "legal", "or", "court", "docs", "either,", "but", "someone", "posted", "on", "Reddit", "a", "year", "ago", "that", "they", "had", "received", "their", "Crypto", "Capital", "withdrawals", "from", "the", "company.", "The", "sole", "officer", "for", "Gmbh", "Ralf", "Hülsmann,", "who", "started", "on", "June", "15,", "2016.", "Researcher", "Robert-Jan", "den", "the", "German", "public", "registry", "for", "the", "company,", "and", "it", "is", "clearly", "associated", "with", "Spiral", "Global", "AG,", "which", "is", "directly", "linked", "to", "Fowler.", "Spiral", "Inc.", "is", "a", "holding", "company", "Fowler", "set", "up", "in", "1989.", "At", "one", "time", "it", "held", "more", "than", "100", "businesses.", "He", "also", "Links", "to", "Quadriga", "Two", "documents", "recently", "shared", "by", "individuals", "on", "Telegram", "claiming", "to", "be", "Quadriga", "creditors", "show", "funds", "sent", "to", "Global", "Gmbh.", "June", "28,", "2018,", "one", "creditor", "wired", "$50,000", "CAD", "from", "the", "Royal", "Bank", "of", "Canada", "in", "Toronto", "to", "an", "account", "Deutsche", "Bank", "in", "belonging", "to", "Gmbh.", "“I", "should", "have", "followed", "my", "gut", "feelings", "when", "I", "was", "at", "the", "bank", "making", "this", "wire", "transfer,”", "the", "user", "told", "me.", "“I", "just", "had", "a", "very", "shady", "feeling.”", "Another", "creditor", "shared", "the", "following", "document", "on", "Telegram.", "Similarly,", "it", "shows", "funds", "being", "sent", "to", "a", "Global", "Trade" ], [ "Bank.", "The", "transfer", "appears", "to", "be", "going", "out", "from", "a", "bank", "in", "Toronto,", "but", "there", "is", "no", "date", "on", "it.", "Other", "evidence", "There", "is", "other", "evidence", "to", "support", "Quadriga", "using", "Crypto", "Capital.", "At", "one", "time,", "the", "payment", "processor", "listed", "Quadriga", "on", "its", "website", "as", "a", "client.", "Gerald", "Cotten,", "the", "exchange’s", "now-deceased", "founder", "also", "admitted", "to", "using", "it", "in", "the", "past.", "In", "an", "email", "to", "Bloomberg", "News", "on", "May", "17,", "2018,", "he", "wrote:", "“Crypto", "Capital", "is", "one", "such", "company", "that", "we", "have/do", "use.", "In", "general", "it", "works", "well,", "though", "there", "are", "occasionally", "hiccups.”", "Assuming", "Quadriga", "did", "use", "Crypto", "Capital,", "the", "only", "question", "that", "remains", "is,", "was", "the", "payment", "processor", "holding", "any", "Quadriga", "funds", "when", "the", "exchange", "went", "belly", "up?", "(Remember,", "Quadriga", "didn’t", "keep", "any", "books,", "so", "it’s", "up", "to", "Miller", "Thomson", "and", "court-appointed", "trustee", "Ernst", "&", "Young", "to", "piece", "things", "together.)", "And", "if", "so,", "is", "there", "any", "chance", "in", "hell", "of", "getting", "those", "funds", "back?", "(Read", "my", "complete", "Quadriga", "timeline", "to", "in", "on", "Feb.", "19", "to", "add", "Ralf", "Hülsmann", "and", "link", "to", "someone", "on", "Reddit", "who", "said", "they", "received", "CCC", "withdrawals", "Gmbh.", "Updated", "on", "Feb.", "13", "to", "fix", "typo", "—", "AG,", "not", "Global", "Trading", "Solutions", "AG", "—", "add", "a", "screenshot", "from", "Crypto", "Capital’s", "website", "and", "mention", "missing", "$850", "million." ] ] ]
[ [ "en", "en" ] ]
[ "mono" ]
[ [ "At", "the", "fifth", "time", "of", "asking,", "France's", "Gregory", "Gaultier", "was", "crowned", "World", "Champion", "at", "the", "Meydenbauer", "Center", "in", "Bellevue..." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "At", "the", "fifth", "time", "of", "asking,", "France's", "Gregory", "Gaultier", "was", "crowned", "World", "Champion", "at", "the", "Meydenbauer", "Center", "in", "Bellevue..." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Firefighters", "arrived", "on", "the", "scene", "to", "tackle", "the", "blaze.", "Image", "Credit:", "E.", "Foehl", "/", "Navy", "Seven", "men", "were", "arrested", "after", "they", "managed", "to", "burn", "down", "the", "LeBeau", "Plantation", "house", "near", "New", "Orleans.", "Built", "in", "the", "1850s,", "the", "mansion", "is", "well", "known", "for", "its", "paranormal", "activity", "and", "ghost", "sightings.", "Stories", "from", "those", "who", "lived", "and", "worked", "there", "tell", "of", "a", "mysterious", "ghostly", "woman", "with", "a", "long", "white", "dress", "who", "is", "said", "to", "walk", "on", "the", "upstairs", "porch.", "Throughout", "its", "history", "the", "building", "has", "been", "everything", "from", "a", "hotel", "to", "an", "illegal", "gambling", "house", "but", "has", "since", "been", "abandoned", "and", "boarded", "up", "for", "some", "years.Hoping", "to", "experience", "the", "building's", "ghostly", "occupants", "for", "themselves,", "the", "group", "of", "seven", "ghost", "hunters", "had", "made", "their", "way", "in", "to", "the", "building", "to", "look", "around.", "In", "an", "effort", "to", "elicit", "a", "response", "from", "whatever", "may", "be", "lurking", "there", "they", "attempted", "a", "technique", "known", "as", "'provocation'", "which", "involved", "calling", "out", "any", "spirits", "through", "a", "barrage", "of", "loud", "noises", "and", "verbal", "intimidation.Having", "been", "unable", "to", "get", "a", "response", "the", "group", "decided,", "for", "reasons", "known", "only", "to", "themselves,", "that", "it", "would", "be", "a", "good", "idea", "to", "light", "a", "fire", "instead.", "Within", "minutes", "the", "flames", "had", "spread", "to", "the", "building's", "framework", "and", "by", "the", "time", "firefighters", "arrived", "the", "mansion", "had", "been", "almost", "completely", "destroyed.Fortunately", "nobody", "was", "injured", "however", "the", "men", "now", "face", "charges", "of", "criminal", "damage,", "arson", "and", "trespassing", "and", "are", "unlikely", "to", "be", "attempting", "any", "more", "ghost", "hunts", "for", "the", "foreseeable", "future." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Firefighters", "arrived", "on", "the", "scene", "to", "tackle", "the", "blaze.", "Image", "Credit:", "E.", "Foehl", "/", "Navy", "Seven", "men", "were", "arrested", "after", "they", "managed", "to", "burn", "down", "the", "LeBeau", "Plantation", "house", "near", "New", "Orleans.", "Built", "in", "the", "1850s,", "the", "mansion", "is", "well", "known", "for", "its", "paranormal", "activity", "and", "ghost", "sightings.", "Stories", "from", "those", "who", "lived", "and", "worked", "there", "tell", "of", "a", "mysterious", "ghostly", "woman", "with", "a", "long", "white", "dress", "who", "is", "said", "to", "walk", "on", "the", "upstairs", "porch.", "Throughout", "its", "history", "the", "building", "has", "been", "everything", "from", "a", "hotel", "to", "an", "illegal", "gambling", "house", "but", "has", "since", "been", "abandoned", "and", "boarded", "up", "for", "some", "years.Hoping", "to", "experience", "the", "building's", "ghostly", "occupants", "for", "themselves,", "the", "group", "of", "seven", "ghost", "hunters", "had", "made", "their", "way", "in", "to", "the", "building", "to", "look", "around.", "In", "an", "effort", "to", "elicit", "a", "response", "from", "whatever", "may", "be", "lurking", "there", "they", "attempted", "a", "technique", "known", "as", "'provocation'", "which", "involved", "calling", "out", "any", "spirits", "through", "a", "barrage", "of", "loud", "noises", "and", "verbal", "intimidation.Having", "been", "unable", "to", "get", "a", "response", "the", "group", "decided,", "for", "reasons", "known", "only", "to", "themselves,", "that", "it", "would", "be", "a", "good", "idea", "to", "light", "a", "fire", "instead.", "Within", "minutes", "the", "flames", "had", "spread", "to", "the", "building's", "framework", "and", "by", "the", "time", "firefighters", "arrived", "the", "mansion", "had", "been", "almost", "completely", "destroyed.Fortunately", "nobody", "was", "injured", "however", "the", "men", "now", "face", "charges", "of", "criminal", "damage,", "arson", "and", "trespassing", "and", "are", "unlikely", "to", "be", "attempting", "any", "more", "ghost", "hunts", "for", "the", "foreseeable", "future." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Article", "content", "continued", "The", "pair,", "from", "Port", "Alberni,", "B.C.,", "had", "been", "in", "the", "Manitoba", "wilderness", "for", "two", "weeks,", "after", "the", "Toyota", "RAV4", "they", "had", "been", "driving", "was", "found", "burned", "near", "Gillam", "on", "July", "22.", "Kevin", "King/Winnipeg", "Sun", "The", "search", "in", "northern", "Manitoba", "included", "helicopters,", "a", "plane,", "heavily", "armed", "officers", "and", "police", "canine", "units", "that", "scoured", "the", "remote", "wilderness", "where", "the", "pair,", "believed", "to", "be", "survivalists,", "were", "thought", "to", "be", "hiding.", "A", "dive", "team", "and", "search", "of", "the", "Nelson", "River", "was", "also", "prompted", "this", "past", "weekend", "by", "the", "discovery", "of", "a", "damaged", "aluminum", "boat", "spotted", "by", "aerial", "search", "teams.", "Photo", "by", "Submitted", "/", "Manitoba", "RCMP", "“To", "the", "families", "of", "everyone", "affected", "by", "the", "series", "of", "events", "over", "the", "last", "few", "weeks,", "I", "know", "it", "has", "been", "so", "very", "difficult,”", "said", "MacLatchy.", "“I", "hope", "today’s", "announcement", "can", "begin", "to", "bring", "some", "closure.", "“Many", "of", "you", "lived", "with", "uncertainty", "and", "fear", "but", "throughout,", "you", "were", "resilient,", "you", "came", "together", "as", "communities,", "and", "you", "helped", "our", "officers", "get", "the", "job", "done.”", "Schmegelsky", "and", "McLeod", "were", "charged", "with", "the", "second-degree", "murder", "in", "the", "death", "of", "University", "of", "B.C.", "lecturer", "Leonard", "Dyck", "and", "had", "also", "been", "named", "as", "suspects", "in", "the", "fatal", "shootings", "of", "Australian", "Lucas", "Fowler", "and", "his", "American", "girlfriend", "Chynna", "Deese.", "The", "travelling", "couple", "were", "found", "dead", "on", "July", "15", "on", "B.C.’s", "Alaska", "Highway", "97,", "south", "of", "Liard", "Hot", "Springs.", "Their", "minivan", "was", "stranded", "nearby.", "Photo", "by", "Facebook", "Just", "four", "days", "later,", "Dyck’s", "body", "was", "found", "on", "B.C.’s", "Highway", "37", "near", "Dease", "Lake,", "about", "two", "kilometres", "up", "the", "road", "from", "a", "burned-out", "truck.", "The", "vehicle", "was", "believed", "to", "have", "been", "driven", "by", "Schmegelsky", "and", "McLeod", "at", "one", "point.", "Photo", "by", "Patrick", "Martone/UBC", "Various", "sightings", "allowed", "police", "to", "track", "the", "suspects", "from", "B.C.", "to", "Saskatchewan", "and", "then", "over", "to", "Manitoba,", "where", "their", "latest", "vehicle,", "a", "Toyota", "RAV4,", "was", "found", "on", "fire", "near", "Gillam", "in", "late", "July.", "The", "last", "confirmed", "sighting", "of", "the", "pair", "was", "in", "Meadow", "Lake,", "Sask.,", "when", "the", "pair", "were", "filmed", "on", "security", "camera", "walking", "through", "a", "store.", "After", "police", "released", "those", "images,", "more", "than", "200", "tips", "poured", "in", "over", "the", "course", "of", "five", "days.", "Photo", "by", "HO", "/", "THE", "CANADIAN", "PRESS", "A", "volunteer", "with", "the", "Bear", "Clan", "Patrol,", "an", "Indigenous-led", "neighbourhood", "watch", "group,", "had", "also", "reported", "a", "possible", "sighting", "of", "the", "pair", "to", "police", "on", "July", "28,", "prompting", "officers", "to", "focus", "their", "efforts", "on", "York", "Landing,", "Man.", "A", "Canadian", "Air", "Force", "aircraft", "equipped", "with", "high-tech", "thermal", "detection", "was", "also", "deployed", "in", "the", "search." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Article", "content", "continued", "The", "pair,", "from", "Port", "Alberni,", "B.C.,", "had", "been", "in", "the", "Manitoba", "wilderness", "for", "two", "weeks,", "after", "the", "Toyota", "RAV4", "they", "had", "been", "driving", "was", "found", "burned", "near", "Gillam", "on", "July", "22.", "Kevin", "King/Winnipeg", "Sun", "The", "search", "in", "northern", "Manitoba", "included", "helicopters,", "a", "plane,", "heavily", "armed", "officers", "and", "police", "canine", "units", "that", "scoured", "the", "remote", "wilderness", "where", "the", "pair,", "believed", "to", "be", "survivalists,", "were", "thought", "to", "be", "hiding.", "A", "dive", "team", "and", "search", "of", "the", "Nelson", "River", "was", "also", "prompted", "this", "past", "weekend", "by", "the", "discovery", "of", "a", "damaged", "aluminum", "boat", "spotted", "by", "aerial", "search", "teams.", "Photo", "by", "Submitted", "/", "Manitoba", "RCMP", "“To", "the", "families", "of", "everyone", "affected", "by", "the", "series", "of", "events", "over", "the", "last", "few", "weeks,", "I", "know", "it", "has", "been", "so", "very", "difficult,”", "said", "MacLatchy.", "“I", "hope", "today’s", "announcement", "can", "begin", "to", "bring", "some", "closure.", "“Many", "of", "you", "lived", "with", "uncertainty", "and", "fear", "but", "throughout,", "you", "were", "resilient,", "you", "came", "together", "as", "communities,", "and", "you", "helped", "our", "officers", "get", "the", "job", "done.”", "Schmegelsky", "and", "McLeod", "were", "charged", "with", "the", "second-degree", "murder", "in", "the", "death", "of", "University", "of", "B.C.", "lecturer", "Leonard", "Dyck", "and", "had", "also", "been", "named", "as", "suspects", "in", "the", "fatal", "shootings", "of", "Australian", "Lucas", "Fowler", "and", "his", "American", "girlfriend", "Chynna", "Deese.", "The", "travelling", "couple", "were", "found", "dead", "on", "July", "15", "on", "B.C.’s", "Alaska", "Highway", "97,", "south", "of", "Liard", "Hot", "Springs.", "Their", "minivan", "was", "stranded", "nearby.", "Photo", "by", "Facebook", "Just", "four", "days", "later,", "Dyck’s", "body", "was", "found", "on", "B.C.’s", "Highway", "37", "near", "Dease", "Lake,", "about", "two", "kilometres", "up", "the", "road", "from", "a", "burned-out", "truck.", "The", "vehicle", "was", "believed", "to", "have", "been", "driven", "by", "Schmegelsky", "and", "McLeod", "at", "one", "point.", "Photo", "by", "Patrick", "Martone/UBC", "Various", "sightings", "allowed", "police", "to", "track", "the", "suspects", "from", "B.C.", "to", "Saskatchewan", "and", "then", "over", "to", "Manitoba,", "where", "their", "latest", "vehicle,", "a", "Toyota", "RAV4,", "was", "found", "on", "fire", "near", "Gillam", "in", "late", "July.", "The", "last", "confirmed", "sighting", "of", "the", "pair", "was", "in", "Meadow", "Lake,", "Sask.,", "when", "the", "pair", "were", "filmed", "on", "security", "camera", "walking", "through", "a", "store.", "After", "police", "released", "those", "images,", "more", "than", "200", "tips", "poured", "in", "over", "the", "course", "of", "five", "days.", "Photo", "by", "HO", "/", "THE", "CANADIAN", "PRESS", "A", "volunteer", "with", "the", "Bear", "Clan", "Patrol,", "an", "Indigenous-led", "neighbourhood", "watch", "group,", "had", "also", "reported", "a", "possible", "sighting", "of", "the", "pair", "to", "police", "on", "July", "28,", "prompting", "officers", "to", "focus", "their", "efforts", "on", "York", "Landing,", "Man.", "A", "Canadian", "Air", "Force", "aircraft", "equipped", "with", "high-tech", "thermal", "detection", "was", "also", "deployed", "in", "the", "search." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Prince", "Charles", "had", "a", "go", "at", "a", "sword", "dance", "during", "a", "royal", "visit", "to", "Oman.", "The", "Prince", "of", "Wales", "and", "Duchess", "of", "Cornwall", "are", "at", "the", "start", "of", "an", "official", "Middle", "East", "tour." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Prince", "Charles", "had", "a", "go", "at", "a", "sword", "dance", "during", "a", "royal", "visit", "to", "Oman.", "The", "Prince", "of", "Wales", "and", "Duchess", "of", "Cornwall", "are", "at", "the", "start", "of", "an", "official", "Middle", "East", "tour." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Earlier", "today,", "Mark", "Tweeted", "the", "amusing", "new", "file", "Apple", "put", "in", "iOS", "5.1", "beta", "2", "which", "includes", "a", "lot", "of", "silly", "references", "to", "devices", "that", "don’t", "exist.", "This", "isn’t", "entirely", "new", "–", "Apple", "had", "done", "this", "to", "another", "file", "in", "iOS", "5.1B1.", "As", "you’d", "probably", "expect,", "it", "isn’t", "going", "to", "stop", "developers", "from", "finding", "the", "special", "sause", "inside", "iOS", "5.1B2.", "That", "doctored", "file", "is", "a", "high", "level", "file", "which", "is", "easily", "found.", "Developers", "which", "we", "are", "in", "contact", "with", "are", "already", "digging", "through", "the", "lower", "level", "stuff", "which", "remains", "the", "the", "feeding", "grounds", "for", "useful", "information.", "Related", "articles", "40.714513", "-74.005122" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Earlier", "today,", "Mark", "Tweeted", "the", "amusing", "new", "file", "Apple", "put", "in", "iOS", "5.1", "beta", "2", "which", "includes", "a", "lot", "of", "silly", "references", "to", "devices", "that", "don’t", "exist.", "This", "isn’t", "entirely", "new", "–", "Apple", "had", "done", "this", "to", "another", "file", "in", "iOS", "5.1B1.", "As", "you’d", "probably", "expect,", "it", "isn’t", "going", "to", "stop", "developers", "from", "finding", "the", "special", "sause", "inside", "iOS", "5.1B2.", "That", "doctored", "file", "is", "a", "high", "level", "file", "which", "is", "easily", "found.", "Developers", "which", "we", "are", "in", "contact", "with", "are", "already", "digging", "through", "the", "lower", "level", "stuff", "which", "remains", "the", "the", "feeding", "grounds", "for", "useful", "information.", "Related", "articles", "40.714513", "-74.005122" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "O", "delegado", "Flávio", "Grossi", "informou", "que", "uma", "possível", "sabotagem", "foi", "descartada", "(Reprodução/WhatsApp", "+", "Instagram/Backer", "Cervejaria)", "Os", "reagentes", "utilizados", "pela", "Polícia", "Civil", "de", "Minas", "Gerais", "nas", "investigações", "dos", "casos", "suspeitos", "das", "vítimas", "de", "intoxicação", "por", "dietilenoglicol", "acabaram.", "A", "informação", "foi", "confirmada", "pela", "polícia", "na", "tarde", "desta", "quarta", "(12).", "De", "acordo", "com", "a", "corporação,", "os", "produtos", "não", "são", "de", "uso", "comum", "nas", "necropsias", "e,", "por", "isso,", "não", "eram", "guardados", "em", "grande", "volume.", "Em", "nota", "(confira", "na", "íntegra", "abaixo),", "a", "polícia", "disse", "que,", "apesar", "da", "falta", "do", "reagente,", "as", "investigações", "seguem", "normalmente", "e", "estão", "adiantadas.", "“Parte", "das", "análises", "laboratoriais", "já", "foi", "concluída", "e", "os", "laudos", "já", "foram", "liberados.", "Outra", "parte", "está", "em", "andamento,", "necessitando", "de", "finalização", "de", "compra", "de", "reagentes", "específicos”,", "diz", "a", "PC.", "As", "investigações", "por", "conta", "da", "presença", "de", "substâncias", "tóxicas", "nas", "cervejas", "da", "Backer", "chegaram", "ao", "seu", "36º", "dia", "nesta", "quarta.", "Até", "o", "momento,", "29", "pessoas,", "entre", "vítimas", "e", "familiares,", "foram", "ouvidas", "pela", "Polícia", "Civil.", "As", "autoridades", "investigam", "34", "casos", "suspeitos", "de", "intoxicação.", "Até", "o", "momento,", "seis", "mortes", "também", "são", "apuradas,", "em", "uma", "delas,", "o", "dietilenoglicol", "foi", "confirmado", "como", "a", "causa", "da", "morte.", "Desde", "o", "início", "das", "investigações,", "o", "Mapa", "(Ministério", "da", "Agricultura,", "Pecuária", "e", "Abastecimento)", "ordenou", "que", "a", "Backer", "suspendesse", "a", "venda", "de", "suas", "cervejas", "e", "recolhesse", "os", "rótulos", "do", "mercado.", "Segundo", "o", "ministério,", "os", "contaminantes", "etilenoglicol", "ou", "dietilenoglicol", "foram", "encontrados", "em", "41", "lotes", "de", "cerveja", "de", "dez", "rótulos", "da", "empresa.", "Nota", "da", "PCMG", "“A", "PCMG", "informa", "que", "as", "investigações", "referentes", "à", "síndrome", "Nefroneural", "estão", "bem", "adiantadas.", "Parte", "das", "análises", "laboratoriais", "já", "foi", "concluída", "e", "os", "laudos", "já", "foram", "liberados.", "Outra", "parte", "está", "em", "andamento,", "necessitando", "de", "finalização", "de", "compra", "de", "reagentes", "específicos.", "Tais", "reagentes", "não", "são", "de", "uso", "comum", "nas", "necropsias", "realizadas", "diariamente,", "não", "se", "justificando", "manutenção", "em", "estoque.", "A", "PCMG", "reafirma", "que", "as", "investigações", "seguem", "seu", "curso", "normal”." ] ]
[ [ "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt" ] ]
[ [ [ "O", "delegado", "Flávio", "Grossi", "informou", "que", "uma", "possível", "sabotagem", "foi", "descartada", "(Reprodução/WhatsApp", "+", "Instagram/Backer", "Cervejaria)", "Os", "reagentes", "utilizados", "pela", "Polícia", "Civil", "de", "Minas", "Gerais", "nas", "investigações", "dos", "casos", "suspeitos", "das", "vítimas", "de", "intoxicação", "por", "dietilenoglicol", "acabaram.", "A", "informação", "foi", "confirmada", "pela", "polícia", "na", "tarde", "desta", "quarta", "(12).", "De", "acordo", "com", "a", "corporação,", "os", "produtos", "não", "são", "de", "uso", "comum", "nas", "necropsias", "e,", "por", "isso,", "não", "eram", "guardados", "em", "grande", "volume.", "Em", "nota", "(confira", "na", "íntegra", "abaixo),", "a", "polícia", "disse", "que,", "apesar", "da", "falta", "do", "reagente,", "as", "investigações", "seguem", "normalmente", "e", "estão", "adiantadas.", "“Parte", "das", "análises", "laboratoriais", "já", "foi", "concluída", "e", "os", "laudos", "já", "foram", "liberados.", "Outra", "parte", "está", "em", "andamento,", "necessitando", "de", "finalização", "de", "compra", "de", "reagentes", "específicos”,", "diz", "a", "PC.", "As", "investigações", "por", "conta", "da", "presença", "de", "substâncias", "tóxicas", "nas", "cervejas", "da", "Backer", "chegaram", "ao", "seu", "36º", "dia", "nesta", "quarta.", "Até", "o", "momento,", "29", "pessoas,", "entre", "vítimas", "e", "familiares,", "foram", "ouvidas", "pela", "Polícia", "Civil.", "As", "autoridades", "investigam", "34", "casos", "suspeitos", "de", "intoxicação.", "Até", "o", "momento,", "seis", "mortes", "também", "são", "apuradas,", "em", "uma", "delas,", "o", "dietilenoglicol", "foi", "confirmado", "como", "a", "causa", "da", "morte.", "Desde", "o", "início", "das", "investigações,", "o", "Mapa", "(Ministério", "da", "Agricultura,", "Pecuária", "e", "Abastecimento)", "ordenou", "que", "a", "Backer", "suspendesse", "a", "venda", "de", "suas", "cervejas", "e", "recolhesse", "os", "rótulos", "do", "mercado.", "Segundo", "o", "ministério,", "os", "contaminantes", "etilenoglicol", "ou", "dietilenoglicol", "foram", "encontrados", "em", "41", "lotes", "de", "cerveja", "de", "dez", "rótulos", "da", "empresa.", "Nota", "da", "PCMG", "“A", "PCMG", "informa", "que", "as", "investigações", "referentes", "à", "síndrome", "Nefroneural", "estão", "bem", "adiantadas.", "Parte", "das", "análises", "laboratoriais", "já", "foi", "concluída", "e", "os", "laudos", "já", "foram", "liberados.", "Outra", "parte", "está", "em", "andamento,", "necessitando", "de", "finalização", "de", "compra", "de", "reagentes", "específicos.", "Tais", "reagentes", "não", "são", "de", "uso", "comum", "nas", "necropsias", "realizadas", "diariamente,", "não", "se", "justificando", "manutenção", "em", "estoque.", "A", "PCMG", "reafirma", "que", "as", "investigações", "seguem", "seu", "curso", "normal”." ] ] ]
[ [ "pt" ] ]
[ "mono", "mono" ]
[ [ "Luck", "Of", "The", "Draw?", "Games", "Of", "Chance", "Not", "In", "Tied", "Elections", "Enlarge", "this", "image", "Al", "Grillo", "/AP", "Al", "/AP", "Updated", "at", "11:51", "a.m.", "on", "Jan.", "4", "A", "pivotal", "Virginia", "legislative", "—", "and", "control", "of", "the", "entire", "House", "of", "Delegates", "—", "came", "down", "to", "the", "luck", "of", "the", "draw", "on", "Thursday.", "Initially,", "it", "seemed", "as", "though", "Democrat", "Shelly", "Simonds", "had", "won", "last", "month's", "election", "by", "just", "one", "vote", "after", "a", "Dec.", "19", "recount.", "Then,", "Republican", "incumbent", "David", "Yancey", "successfully", "challenged", "one", "ballot,", "which", "led", "to", "an", "exact", "tie.", "The", "Virginia", "State", "Board", "of", "Elections", "had", "planned", "a", "drawing", "to", "pick", "the", "winner,", "but", "Simonds", "filed", "a", "legal", "challenge", "against", "the", "ballot", "that", "had", "deadlocked", "the", "contest.", "On", "Jan.", "3,", "a", "court", "rejected", "Simonds'", "challenge", "over", "the", "disputed", "ballot,", "meaning", "the", "race", "remained", "tied", "and", "allowing", "the", "drawing", "to", "determine", "the", "winner", "of", "the", "Newport", "News", "seat", "to", "move", "forward.", "Thursday", "morning,", "Yancey", "won", "the", "tie-breaker;", "Republicans", "now", "hang", "on", "to", "control", "of", "the", "chamber.", "The", "names", "of", "the", "candidates", "were", "placed", "in", "two", "film", "canisters", "and", "then", "placed", "in", "a", "bowl", "to", "be", "drawn.", "According", "to", "the", "Richmond", "Times-Dispatch,", "\"The", "receptacle", "chosen", "for", "a", "starring", "role", "in", "the", "drama", "will", "be", "a", "blue-and-white,", "handcrafted", "bowl", "made", "by", "Steven", "Glass,", "a", "Richmond-based", "artist", "who", "serves", "as", "the", "resident", "potter", "at", "the", "Virginia", "Museum", "Fine", "A", "museum", "spokesman", "said", "the", "bowl", "was", "\"very", "pretty", "and", "sort", "of", "rustic\"", "and", "that", "\"it", "looks", "like", "a", "lot", "of", "love", "went", "into", "making", "it.\"", "Using", "games", "of", "chance", "to", "resolve", "tied", "elections", "may", "seem", "like", "a", "flippant", "way", "of", "deciding", "such", "important", "contests,", "but", "it's", "nothing", "out", "of", "the", "ordinary", "in", "many", "states", "or", "localities.", "In", "2014,", "the", "Washington", "Post", "found", "that", "35", "states", "used", "some", "type", "of", "coin", "toss,", "drawing", "or", "other", "means", "to", "determine", "a", "tied", "election.", "Oklahoma", "has", "the", "same", "process", "Virginia", "will", "use", "—", "drawing", "names", "of", "the", "two", "candidates", "by", "an", "elections", "official.", "In", "Idaho,", "there's", "a", "coin", "toss.", "In", "North", "Carolina,", "if", "fewer", "than", "5,000", "people", "vote,", "elections", "officials", "cast", "lots", "to", "determine", "the", "winner", "—", "or", "otherwise", "they", "can", "call", "another", "election.", "In", "Indiana", "and", "Montana,", "the", "state", "legislatures", "determine", "the", "winner", "if", "there's", "a", "tie", "for", "governor.", "Most", "ties", "occur", "at", "the", "state", "and", "local", "level,", "where", "there", "are", "smaller", "pools", "of", "voters,", "and", "recently", "there", "have", "been", "some", "interesting", "ways", "to", "pick", "winners", "in", "case", "of", "deadlock:", "In", "October", "2016,", "the", "mayoral", "race", "in", "Bradenton", "Fla.,", "was", "determined", "by", "drawing", "cards.", "\"In", "order", "to", "avoid", "additional", "controversy,", "the", "rules", "were", "clear:", "ace", "was", "high", "and,", "if", "the", "men", "drew", "the", "same", "number,", "the", "suits", "were", "given", "their", "own", "value", "ahead", "of", "time,\"", "CNN", "reported.", "A", "Vegas-style", "card", "draw", "also", "was", "used", "to", "determine", "the", "winner", "of", "a", "Cripple", "Creek,", "Colo.,", "council", "race", "earlier", "this", "month.", "There", "were", "two", "other", "tied", "contests", "in", "Colorado", "municipal", "elections", "this", "year", "decided", "by", "drawing", "cards.", "In", "2015,", "a", "Mississippi", "state", "contest", "was", "decided", "by", "drawing", "coffee", "straws.", "A", "New", "Mexico", "state", "legislative", "race", "was", "decided", "by", "a", "coin", "toss", "in", "2014.", "As", "The", "Atlantic", "noted,", "coin", "tosses", "have", "also", "been", "used", "to", "break", "ties", "in", "New", "York,", "Illinois,", "Wisconsin,", "Ohio,", "Missouri,", "Washington,", "and", "New", "Hampshire.", "A", "2006", "Alaska", "primary", "was", "still", "deadlocked", "after", "\"a", "recount,", "a", "state", "Supreme", "Court", "challenge", "and", "wrangling", "over", "five", "disputed", "ballots", "to", "get", "to", "the", "coin", "toss,\"", "the", "Associated", "Press", "reported.", "So", "the", "state", "turned", "to", "a", "coin", "toss", "—", "with", "a", "special", "Alaska", "twist:", "\"The", "coin", "featured", "two", "walruses", "on", "one", "side", "(for", "heads)", "and", "the", "Seal", "of", "the", "State", "of", "Alaska", "on", "the", "other", "(tails).", "Two", "grass", "natives", "were", "also", "part", "of", "the", "ceremony,", "with", "one", "holding", "the", "coin", "and", "the", "other", "holding", "two", "small", "stones", "etched", "with", "the", "candidates'", "names.\"", "When", "the", "candidates", "tied", "in", "a", "Cook", "County,", "Minn.,", "county", "commissioner's", "race,", "elections", "officials", "put", "blue", "and", "red", "board", "game", "pieces", "in", "a", "bag,", "and", "whoever", "drew", "the", "red", "piece", "won", "the", "race.", "That", "was", "considered", "the", "fairer", "option:", "\"Election", "officials", "originally", "planned", "for", "them", "to", "draw", "A", "or", "Z", "Scrabble", "letters", "out", "of", "a", "drawstring", "bag,", "but", "they", "had", "concerns", "that", "the", "indentations", "on", "the", "tiles", "could", "be", "distinguishable", "by", "touch,\"", "as", "the", "Wall", "Street", "Journal", "reported.", "In", "2012,", "a", "city", "council", "race", "in", "Webster,", "Texas,", "was", "decided", "by", "the", "roll", "of", "the", "dice,", "which", "didn't", "exactly", "go", "smoothly.", "\"The", "decisive", "roll", "followed", "two", "failed", "attempts.", "[The", "first]", "roll", "skipped", "off", "the", "table,\"", "triggering", "a", "reroll.", "\"When", "the", "second", "throws", "yielded", "a", "tie,\"", "the", "other", "candidate", "\"said", "she", "became", "'frayed", "around", "the", "edges,'", "\"", "as", "ABC", "News", "wrote.", "Coin", "flips", "determined", "winners", "in", "the", "already", "quirky", "Iowa", "caucuses", "last", "year", "when", "some", "Democratic", "sites", "ended", "up" ], [ "split", "evenly", "between", "Hillary", "Clinton", "and", "Bernie", "But", "as", "NPR's", "Domenico", "Montanaro", "reported,", "both", "candidates", "ended", "up", "winning", "tiebreakers", "at", "certain", "precincts,", "and", "games", "of", "chance", "weren't", "responsible", "for", "Clinton's", "narrow", "victory", "in", "the", "Hawkeye", "State." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "fr", "en", "en", "en", "en", "en", "fr", "es", "es", "es", "en", "en", "en", "en", "en", "fr", "fr", "es", "es", "co", "co", "it", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "it", "it", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Luck", "Of", "The", "Draw?", "Games", "Of", "Chance", "Not", "In", "Tied", "Elections", "Enlarge", "this", "image", "Al", "Grillo", "/AP", "Al", "/AP", "Updated", "at", "11:51", "a.m.", "on", "Jan.", "4", "A", "pivotal", "Virginia", "legislative", "—", "and", "control", "of", "the", "entire", "House", "of", "Delegates", "—", "came", "down", "to", "the", "luck", "of", "the", "draw", "on", "Thursday.", "Initially,", "it", "seemed", "as", "though", "Democrat", "Shelly", "Simonds", "had", "won", "last", "month's", "election", "by", "just", "one", "vote", "after", "a", "Dec.", "19", "recount.", "Then,", "Republican", "incumbent", "David", "Yancey", "successfully", "challenged", "one", "ballot,", "which", "led", "to", "an", "exact", "tie.", "The", "Virginia", "State", "Board", "of", "Elections", "had", "planned", "a", "drawing", "to", "pick", "the", "winner,", "but", "Simonds", "filed", "a", "legal", "challenge", "against", "the", "ballot", "that", "had", "deadlocked", "the", "contest.", "On", "Jan.", "3,", "a", "court", "rejected", "Simonds'", "challenge", "over", "the", "disputed", "ballot,", "meaning", "the", "race", "remained", "tied", "and", "allowing", "the", "drawing", "to", "determine", "the", "winner", "of", "the", "Newport", "News", "seat", "to", "move", "forward.", "Thursday", "morning,", "Yancey", "won", "the", "tie-breaker;", "Republicans", "now", "hang", "on", "to", "control", "of", "the", "chamber.", "The", "names", "of", "the", "candidates", "were", "placed", "in", "two", "film", "canisters", "and", "then", "placed", "in", "a", "bowl", "to", "be", "drawn.", "According", "to", "the", "Richmond", "Times-Dispatch,", "\"The", "receptacle", "chosen", "for", "a", "starring", "role", "in", "the", "drama", "will", "be", "a", "blue-and-white,", "handcrafted", "bowl", "made", "by", "Steven", "Glass,", "a", "Richmond-based", "artist", "who", "serves", "as", "the", "resident", "potter", "at", "the", "Virginia", "Museum", "Fine", "A", "museum", "spokesman", "said", "the", "bowl", "was", "\"very", "pretty", "and", "sort", "of", "rustic\"", "and", "that", "\"it", "looks", "like", "a", "lot", "of", "love", "went", "into", "making", "it.\"", "Using", "games", "of", "chance", "to", "resolve", "tied", "elections", "may", "seem", "like", "a", "flippant", "way", "of", "deciding", "such", "important", "contests,", "but", "it's", "nothing", "out", "of", "the", "ordinary", "in", "many", "states", "or", "localities.", "In", "2014,", "the", "Washington", "Post", "found", "that", "35", "states", "used", "some", "type", "of", "coin", "toss,", "drawing", "or", "other", "means", "to", "determine", "a", "tied", "election.", "Oklahoma", "has", "the", "same", "process", "Virginia", "will", "use", "—", "drawing", "names", "of", "the", "two", "candidates", "by", "an", "elections", "official.", "In", "Idaho,", "there's", "a", "coin", "toss.", "In", "North", "Carolina,", "if", "fewer", "than", "5,000", "people", "vote,", "elections", "officials", "cast", "lots", "to", "determine", "the", "winner", "—", "or", "otherwise", "they", "can", "call", "another", "election.", "In", "Indiana", "and", "Montana,", "the", "state", "legislatures", "determine", "the", "winner", "if", "there's", "a", "tie", "for", "governor.", "Most", "ties", "occur", "at", "the", "state", "and", "local", "level,", "where", "there", "are", "smaller", "pools", "of", "voters,", "and", "recently", "there", "have", "been", "some", "interesting", "ways", "to", "pick", "winners", "in", "case", "of", "deadlock:", "In", "October", "2016,", "the", "mayoral", "race", "in", "Bradenton", "Fla.,", "was", "determined", "by", "drawing", "cards.", "\"In", "order", "to", "avoid", "additional", "controversy,", "the", "rules", "were", "clear:", "ace", "was", "high", "and,", "if", "the", "men", "drew", "the", "same", "number,", "the", "suits", "were", "given", "their", "own", "value", "ahead", "of", "time,\"", "CNN", "reported.", "A", "Vegas-style", "card", "draw", "also", "was", "used", "to", "determine", "the", "winner", "of", "a", "Cripple", "Creek,", "Colo.,", "council", "race", "earlier", "this", "month.", "There", "were", "two", "other", "tied", "contests", "in", "Colorado", "municipal", "elections", "this", "year", "decided", "by", "drawing", "cards.", "In", "2015,", "a", "Mississippi", "state", "contest", "was", "decided", "by", "drawing", "coffee", "straws.", "A", "New", "Mexico", "state", "legislative", "race", "was", "decided", "by", "a", "coin", "toss", "in", "2014.", "As", "The", "Atlantic", "noted,", "coin", "tosses", "have", "also", "been", "used", "to", "break", "ties", "in", "New", "York,", "Illinois,", "Wisconsin,", "Ohio,", "Missouri,", "Washington,", "and", "New", "Hampshire.", "A", "2006", "Alaska", "primary", "was", "still", "deadlocked", "after", "\"a", "recount,", "a", "state", "Supreme", "Court", "challenge", "and", "wrangling", "over", "five", "disputed", "ballots", "to", "get", "to", "the", "coin", "toss,\"", "the", "Associated", "Press", "reported.", "So", "the", "state", "turned", "to", "a", "coin", "toss", "—", "with", "a", "special", "Alaska", "twist:", "\"The", "coin", "featured", "two", "walruses", "on", "one", "side", "(for", "heads)", "and", "the", "Seal", "of", "the", "State", "of", "Alaska", "on", "the", "other", "(tails).", "Two", "grass", "natives", "were", "also", "part", "of", "the", "ceremony,", "with", "one", "holding", "the", "coin", "and", "the", "other", "holding", "two", "small", "stones", "etched", "with", "the", "candidates'", "names.\"", "When", "the", "candidates", "tied", "in", "a", "Cook", "County,", "Minn.,", "county", "commissioner's", "race,", "elections", "officials", "put", "blue", "and", "red", "board", "game", "pieces", "in", "a", "bag,", "and", "whoever", "drew", "the", "red", "piece", "won", "the", "race.", "That", "was", "considered", "the", "fairer", "option:", "\"Election", "officials", "originally", "planned", "for", "them", "to", "draw", "A", "or", "Z", "Scrabble", "letters", "out", "of", "a", "drawstring", "bag,", "but", "they", "had", "concerns", "that", "the", "indentations", "on", "the", "tiles", "could", "be", "distinguishable", "by", "touch,\"", "as", "the", "Wall", "Street", "Journal", "reported.", "In", "2012,", "a", "city", "council", "race", "in", "Webster,", "Texas,", "was", "decided", "by", "the", "roll", "of", "the", "dice,", "which", "didn't", "exactly", "go", "smoothly.", "\"The", "decisive", "roll", "followed", "two", "failed", "attempts.", "[The", "first]", "roll", "skipped", "off", "the", "table,\"", "triggering", "a", "reroll.", "\"When", "the", "second", "throws", "yielded", "a", "tie,\"", "the", "other", "candidate", "\"said", "she", "became", "'frayed", "around", "the", "edges,'", "\"", "as", "ABC", "News", "wrote.", "Coin", "flips", "determined", "winners", "in", "the", "already", "quirky", "Iowa", "caucuses", "last", "year", "when", "some", "Democratic", "sites", "ended", "up" ] ], [ [ "split", "evenly", "between", "Hillary", "Clinton", "and", "Bernie", "But", "as", "NPR's", "Domenico", "Montanaro", "reported,", "both", "candidates", "ended", "up", "winning", "tiebreakers", "at", "certain", "precincts,", "and", "games", "of", "chance", "weren't", "responsible", "for", "Clinton's", "narrow", "victory", "in", "the", "Hawkeye", "State." ] ] ]
[ [ "en" ], [ "en" ] ]
[ "mono", "mono" ]
[ [ "CHICAGO", "—", "Since", "opening", "up", "shop", "in", "1996,", "Sprockets", "had", "seldom", "suffered", "the", "wrath", "of", "burglars.", "That", "changed", "at", "5:33", "a.m.", "Sunday,", "when", "a", "gang", "of", "hooded", "figures", "broke", "in", "and", "stole", "$5,400", "worth", "of", "bikes", "—", "an", "act", "that", "sucked", "the", "Lakeview", "store", "into", "what", "appears", "to", "be", "a", "coordinated", "web", "of", "thievery.", "Since", "December,", "more", "than", "$150,000", "worth", "of", "bicycles", "have", "been", "taken", "from", "at", "least", "eight", "Chicago-area", "bike", "shops", "and", "one", "triathlon", "training", "facility.", "In", "and", "out", "in", "under", "a", "minute,", "thieves", "have", "swiped", "the", "stores’", "most", "rare", "and", "expensive", "merchandise.", "They", "typically", "come", "between", "3", "and", "5", "a.m.", "While", "some", "stores", "have", "captured", "surveillance", "footage", "of", "the", "masked", "figures,", "a", "getaway", "car", "has", "yet", "to", "be", "identified.", "RELATED:", "High-End", "Bike", "Thieves", "Target", "Small", "Shops", "Around", "Town,", "Making", "Off", "With", "At", "Least", "$70,000", "In", "Bicycles", "While", "shop", "owners", "believe", "the", "thefts", "are", "connected,", "Chicago", "Police", "have", "yet", "to", "identify", "a", "crime", "spokesperson", "Jessica", "Rocco", "said", "Tuesday.", "“If", "they", "discover", "a", "pattern,", "they", "will", "create", "an", "alert", "that", "will", "be", "disseminated", "to", "the", "public,”", "she", "said", "of", "detectives.", "A", "lack", "of", "arrests", "have", "left", "many", "shop", "owners", "exhausted", "and", "infuriated.", "Especially", "the", "ones", "who", "have", "been", "hit", "more", "than", "once.", "After", "Cycle", "Smithy", "in", "Park", "was", "hit", "the", "first", "time,", "owner", "Mark", "Mattei", "bolstered", "security", "with", "stronger", "cables", "and", "locks.", "Early", "Tuesday", "morning,", "thieves", "were", "able", "to", "cut", "through", "those", "cables", "and", "make", "off", "with", "$25,000", "worth", "of", "Cannondales.", "“I’ve", "been", "up", "since", "about", "4", "a.m.", "and", "I", "haven’t", "eaten", "yet,”", "Mattei", "said", "Tuesday", "afternoon.", "Turin", "Bicycle", "in", "Ravenswood", "has", "been", "into", "three", "times", "in", "2019,", "shop", "owner", "Lee", "Katz", "said.", "A", "fourth", "break-in,", "which", "Katz", "believes", "is", "connected", "to", "the", "others,", "occurred", "on", "Nov.", "9.", "Across", "all", "of", "the", "break-ins,", "Turin", "has", "lost", "more", "than", "$47,000", "in", "bikes.", "Katz", "said", "the", "break-ins", "drove", "him", "to", "add", "a", "level", "security", "the", "shop", "hasn’t", "needed", "in", "decades.", "“We", "have", "not", "had", "gates", "since", "1964,”", "Katz", "“I", "hate", "gates.", "They’re", "so", "antisocial.”", "But", "last", "week,", "the", "thieves", "were", "able", "to", "cut", "through", "the", "gates", "and", "take", "about", "$17,000", "in", "bicycles.", "A", "small", "business", "owner", "who", "already", "operates", "on", "thin", "margins,", "Katz", "is", "worried", "about", "whether", "an", "insurance", "claim", "is", "worth", "the", "increased", "monthly", "premium.", "Adding", "insult", "to", "injury,", "Katz", "said,", "this", "is", "the", "worst", "time", "of", "the", "year", "for", "this", "to", "happen.", "“Everybody", "in", "a", "bike", "shop", "already", "has", "the", "experience", "of", "getting", "through", "Chicago", "winters,”", "he", "said.", "“This", "is", "just", "another", "element", "that", "nobody", "wants", "to", "deal", "with.”", "Bruber,", "the", "manager", "at", "Johnny", "Sprockets,", "said", "there’s", "not", "much", "the", "police", "can", "do", "without", "more", "evidence.", "“Even", "being", "on", "the", "inside", "like", "I", "am,", "we", "keep", "hearing", "about", "these", "instances", "through", "the", "grapevine,”", "he", "said.", "One", "shop", "owner", "disagreed,", "saying", "the", "officers", "who", "arrived", "at", "his", "shop", "didn’t", "know", "the", "other", "bike", "burglaries", "happened", "between", "in", "the", "pre-dawn", "hours", "—", "details", "that", "could", "have", "led", "to", "catching", "the", "thieves", "in", "the", "act.", "“A", "lot", "could", "have", "been", "done,”", "the", "owner", "said.", "“And", "it’s", "a", "big", "struggle", "for", "us.”", "All", "of", "the", "shops", "and", "gyms", "interviewed", "by", "Block", "Club", "Chicago", "carry", "insurance", "on", "their", "merchandise.", "But", "several", "shop", "owners", "worried", "their", "recent", "claims", "will", "send", "their", "premiums", "skyrocketing.", "At", "least", "one", "shop", "saw", "a", "claim", "flat-out", "denied.", "Many", "shops", "operate", "on", "thin", "margins", "as-is,", "said", "Max", "Hertz,", "owner", "in", "Bucktown.", "“We’re", "small", "businesses", "who", "are", "employing", "people", "in", "the", "neighborhood,”", "Hertz", "said.", "“When", "this", "kind", "of", "stuff", "happens,", "it", "sucks,", "a", "lot.", "Insurance", "will", "cover", "some", "stuff,", "but", "there’s", "a", "huge", "headache", "with", "it.", "And", "now,", "there’s", "the", "constant", "worry", "that", "it’ll", "happen", "again.”", "Bike", "shop", "thefts", "and", "losses,", "as", "of", "Tuesday", "BFF", "Bucktown", "2113", "W.", "Armitage", "Ave.", "Break-ins:", "3", "Stolen", "$5,000", "Damages:", "$850", "claims", "filed:", "2", "Big", "City", "Lincoln", "Park", "2425", "Ashland", "Ave.", "Break-ins:", "1", "Stolen", "$3,000", "Damages:", "unknown", "claims:", "Lane," ], [ "Bucktown", "2130", "N.", "Ave.", "Break-ins:", "1", "Stolen", "$4,000", "Damages:", "$1,000", "claims:", "1", "Smithy,", "Lincoln", "Park", "2468", "1/2", "N.", "St.", "Break-ins:", "2", "bike", "$37,500", "Damages:", "Unknown", "claims", "filed:", "2", "Lakeview", "3140", "N.", "Break-ins:", "1", "$5,400", "Damages:", "claims:", "Unknown", "Let’s", "Roast", "Cycles,", "Wicker", "1116", "N.", "Ave.", "Break-ins:", "1", "Stolen", "$3,600", "Damages:", "claims:", "1", "Shop,", "Evanston", "1224", "Chicago", "Ave.", "Break-ins:", "2", "Stolen", "bike", "$40,000", "Damagest:", "claims:", "Unknown", "Turin", "Bicycle,", "Ravenswood", "4710", "N.", "Ave.", "Break-ins:", "4", "$47,000", "Damages:", "$2,000", "claims:", "Unknown", "Well-Fit", "1700", "W.", "Hubbard", "St.", "Break-ins:", "3", "bike", "$70,000", "Damages:", "$100", "claims:", "3", "Do", "stories", "like", "this", "matter", "to", "you?", "Subscribe", "to", "Block", "Club", "Chicago.", "Every", "dime", "we", "make", "funds", "reporting", "from", "Chicago’s", "neighborhoods." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "it", "it", "it", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "en", "fr", "en", "en", "en", "en", "en", "en", "co", "de", "de", "en", "en", "en", "en", "nl", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "nl", "nl", "en", "fr", "fr", "fr", "fr", "co", "co", "co", "co", "co", "co", "en", "nl", "nl", "de", "en", "en", "en", "en", "en", "en", "de", "en", "en", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "en", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "nl", "de", "fr", "en", "en", "en", "en", "en", "en", "en", "nl", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "nl", "nl", "nl", "en", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "CHICAGO", "—", "Since", "opening", "up", "shop", "in", "1996,", "Sprockets", "had", "seldom", "suffered", "the", "wrath", "of", "burglars.", "That", "changed", "at", "5:33", "a.m.", "Sunday,", "when", "a", "gang", "of", "hooded", "figures", "broke", "in", "and", "stole", "$5,400", "worth", "of", "bikes", "—", "an", "act", "that", "sucked", "the", "Lakeview", "store", "into", "what", "appears", "to", "be", "a", "coordinated", "web", "of", "thievery.", "Since", "December,", "more", "than", "$150,000", "worth", "of", "bicycles", "have", "been", "taken", "from", "at", "least", "eight", "Chicago-area", "bike", "shops", "and", "one", "triathlon", "training", "facility.", "In", "and", "out", "in", "under", "a", "minute,", "thieves", "have", "swiped", "the", "stores’", "most", "rare", "and", "expensive", "merchandise.", "They", "typically", "come", "between", "3", "and", "5", "a.m.", "While", "some", "stores", "have", "captured", "surveillance", "footage", "of", "the", "masked", "figures,", "a", "getaway", "car", "has", "yet", "to", "be", "identified.", "RELATED:", "High-End", "Bike", "Thieves", "Target", "Small", "Shops", "Around", "Town,", "Making", "Off", "With", "At", "Least", "$70,000", "In", "Bicycles", "While", "shop", "owners", "believe", "the", "thefts", "are", "connected,", "Chicago", "Police", "have", "yet", "to", "identify", "a", "crime", "spokesperson", "Jessica", "Rocco", "said", "Tuesday.", "“If", "they", "discover", "a", "pattern,", "they", "will", "create", "an", "alert", "that", "will", "be", "disseminated", "to", "the", "public,”", "she", "said", "of", "detectives.", "A", "lack", "of", "arrests", "have", "left", "many", "shop", "owners", "exhausted", "and", "infuriated.", "Especially", "the", "ones", "who", "have", "been", "hit", "more", "than", "once.", "After", "Cycle", "Smithy", "in", "Park", "was", "hit", "the", "first", "time,", "owner", "Mark", "Mattei", "bolstered", "security", "with", "stronger", "cables", "and", "locks.", "Early", "Tuesday", "morning,", "thieves", "were", "able", "to", "cut", "through", "those", "cables", "and", "make", "off", "with", "$25,000", "worth", "of", "Cannondales.", "“I’ve", "been", "up", "since", "about", "4", "a.m.", "and", "I", "haven’t", "eaten", "yet,”", "Mattei", "said", "Tuesday", "afternoon.", "Turin", "Bicycle", "in", "Ravenswood", "has", "been", "into", "three", "times", "in", "2019,", "shop", "owner", "Lee", "Katz", "said.", "A", "fourth", "break-in,", "which", "Katz", "believes", "is", "connected", "to", "the", "others,", "occurred", "on", "Nov.", "9.", "Across", "all", "of", "the", "break-ins,", "Turin", "has", "lost", "more", "than", "$47,000", "in", "bikes.", "Katz", "said", "the", "break-ins", "drove", "him", "to", "add", "a", "level", "security", "the", "shop", "hasn’t", "needed", "in", "decades.", "“We", "have", "not", "had", "gates", "since", "1964,”", "Katz", "“I", "hate", "gates.", "They’re", "so", "antisocial.”", "But", "last", "week,", "the", "thieves", "were", "able", "to", "cut", "through", "the", "gates", "and", "take", "about", "$17,000", "in", "bicycles.", "A", "small", "business", "owner", "who", "already", "operates", "on", "thin", "margins,", "Katz", "is", "worried", "about", "whether", "an", "insurance", "claim", "is", "worth", "the", "increased", "monthly", "premium.", "Adding", "insult", "to", "injury,", "Katz", "said,", "this", "is", "the", "worst", "time", "of", "the", "year", "for", "this", "to", "happen.", "“Everybody", "in", "a", "bike", "shop", "already", "has", "the", "experience", "of", "getting", "through", "Chicago", "winters,”", "he", "said.", "“This", "is", "just", "another", "element", "that", "nobody", "wants", "to", "deal", "with.”", "Bruber,", "the", "manager", "at", "Johnny", "Sprockets,", "said", "there’s", "not", "much", "the", "police", "can", "do", "without", "more", "evidence.", "“Even", "being", "on", "the", "inside", "like", "I", "am,", "we", "keep", "hearing", "about", "these", "instances", "through", "the", "grapevine,”", "he", "said.", "One", "shop", "owner", "disagreed,", "saying", "the", "officers", "who", "arrived", "at", "his", "shop", "didn’t", "know", "the", "other", "bike", "burglaries", "happened", "between", "in", "the", "pre-dawn", "hours", "—", "details", "that", "could", "have", "led", "to", "catching", "the", "thieves", "in", "the", "act.", "“A", "lot", "could", "have", "been", "done,”", "the", "owner", "said.", "“And", "it’s", "a", "big", "struggle", "for", "us.”", "All", "of", "the", "shops", "and", "gyms", "interviewed", "by", "Block", "Club", "Chicago", "carry", "insurance", "on", "their", "merchandise.", "But", "several", "shop", "owners", "worried", "their", "recent", "claims", "will", "send", "their", "premiums", "skyrocketing.", "At", "least", "one", "shop", "saw", "a", "claim", "flat-out", "denied.", "Many", "shops", "operate", "on", "thin", "margins", "as-is,", "said", "Max", "Hertz,", "owner", "in", "Bucktown.", "“We’re", "small", "businesses", "who", "are", "employing", "people", "in", "the", "neighborhood,”", "Hertz", "said.", "“When", "this", "kind", "of", "stuff", "happens,", "it", "sucks,", "a", "lot.", "Insurance", "will", "cover", "some", "stuff,", "but", "there’s", "a", "huge", "headache", "with", "it.", "And", "now,", "there’s", "the", "constant", "worry", "that", "it’ll", "happen", "again.”", "Bike", "shop", "thefts", "and", "losses,", "as", "of", "Tuesday", "BFF", "Bucktown", "2113", "W.", "Armitage", "Ave.", "Break-ins:", "3", "Stolen", "$5,000", "Damages:", "$850", "claims", "filed:", "2", "Big", "City", "Lincoln", "Park", "2425", "Ashland", "Ave.", "Break-ins:", "1", "Stolen", "$3,000", "Damages:", "unknown", "claims:", "Lane," ] ], [ [ "Bucktown", "2130", "N.", "Ave.", "Break-ins:", "1", "Stolen", "$4,000", "Damages:", "$1,000", "claims:", "1", "Smithy,", "Lincoln", "Park", "2468", "1/2", "N.", "St.", "Break-ins:", "2", "bike", "$37,500", "Damages:", "Unknown", "claims", "filed:", "2", "Lakeview", "3140", "N.", "Break-ins:", "1", "$5,400", "Damages:", "claims:", "Unknown", "Let’s", "Roast", "Cycles,", "Wicker", "1116", "N.", "Ave.", "Break-ins:", "1", "Stolen", "$3,600", "Damages:", "claims:", "1", "Shop,", "Evanston", "1224", "Chicago", "Ave.", "Break-ins:", "2", "Stolen", "bike", "$40,000", "Damagest:", "claims:", "Unknown", "Turin", "Bicycle,", "Ravenswood", "4710", "N.", "Ave.", "Break-ins:", "4", "$47,000", "Damages:", "$2,000", "claims:", "Unknown", "Well-Fit", "1700", "W.", "Hubbard", "St.", "Break-ins:", "3", "bike", "$70,000", "Damages:", "$100", "claims:", "3", "Do", "stories", "like", "this", "matter", "to", "you?", "Subscribe", "to", "Block", "Club", "Chicago.", "Every", "dime", "we", "make", "funds", "reporting", "from", "Chicago’s", "neighborhoods." ] ] ]
[ [ "en" ], [ "en" ] ]
[ "mono", "mono" ]
[ [ "FURRIES", "are", "no", "stranger", "to", "controversy,", "with", "members", "often", "labelled", "as", "perverse", "fetishists", "for", "dressing", "up", "in", "animal", "costumes,", "which", "dictate", "their", "role-playing", "“fursona”", "Members", "of", "the", "obscure", "subculture", "often", "defend", "themselves", "by", "saying", "their", "celebration", "of", "anthropomorphic", "animal", "characters", "with", "human", "personalities", "and", "characteristics", "is", "nothing", "more", "than", "playful", "escapism.", "While", "defending", "their", "community", "from", "outsider", "criticism", "is", "nothing", "new,", "there", "is", "now", "a", "fresh", "threat", "to", "the", "culture", "coming", "from", "within", "its", "own", "ranks.", "It", "appears", "subculture,", "which", "has", "long", "been", "associated", "with", "gay", "and", "left-wing", "beliefs,", "is", "now", "being", "infiltrated", "by", "right-wing", "extremists", "known", "as", "“alt-furries”.", "The", "alt-furry", "movement", "started", "as", "a", "joke", "on", "Twitter,", "with", "right-leaning", "members", "sharing", "pro-Trump,", "furry-themed", "memes", "using", "the", "#AltFurries", "hashtag.", "What", "started", "as", "the", "promotion", "of", "satirical", "policies", "such", "as", "a", "ban", "on", "“species", "mixing”,", "soon", "became", "much", "more", "serious", "as", "the", "white", "supremacist", "agenda", "started", "to", "creep", "into", "real", "world", "furry", "events.", "A", "horse", "furry,", "known", "as", "Junius,", "became", "a", "target", "for", "the", "group", "after", "calling", "them", "bigots", "and", "fascists", "on", "social", "media.", "Junuis", "said", "she", "wasn’t", "worried", "when", "one", "forum", "group", "attempted", "to", "find", "her", "personal", "information", "and", "release", "it", "online,", "but", "holds", "genuine", "concerns", "over", "the", "growing", "number", "of", "furries", "vulnerable", "to", "recruitment", "by", "these", "white", "supremacists.", "“Nazis", "are", "looking", "for", "these", "same", "types", "of", "alienated", "white", "dudes,”", "she", "told", "Newsweek.", "“These", "people", "just", "want", "to", "hurt", "and", "incite", "—", "and", "are", "beginning", "to", "take", "their", "trolling", "offline.”", "The", "emergence", "of", "the", "alt-furries", "has", "been", "troubling", "for", "the", "culture,", "which", "prides", "itself", "on", "being", "inclusive", "to", "those", "with", "identities", "and", "odd", "social", "quirks.", "A", "goat", "named", "Dionysius", "was", "recently", "banned", "from", "a", "convention", "in", "Philadelphia", "after", "he", "spent", "$A140", "to", "commission", "artwork", "of", "his", "“fursona”", "launching", "Junius", "and", "two", "other", "furries", "out", "of", "a", "helicopter.", "Dionysius", "feels", "his", "banishment", "was", "an", "over-reaction", "from", "“social", "justice", "warriors”,", "especially", "given", "his", "artwork", "was", "made", "in", "response", "to", "left-wing", "furries", "threatening", "to", "punch", "“Nazi", "furs”.", "“I", "would", "like", "to", "note", "that", "punching", "someone", "is", "an", "action", "that", "can", "be", "done", "very", "easily", "at", "a", "furry", "convention,”", "he", "said.", "“No", "one", "has", "ever", "brought", "a", "helicopter", "to", "any", "furry", "convention", "that", "I", "know", "of.", "I", "chose", "that", "setting,", "as", "well", "as", "the", "cartoony", "style,", "precisely", "because", "I", "did", "not", "want", "to", "make", "it", "a", "threat.”", "Furrydelphia", "chairman", "Drayne", "the", "Wolf", "defended", "the", "decision", "to", "ban", "the", "alt-furry", "from", "attending", "the", "event.", "“We", "did", "not", "set", "out", "to", "make", "a", "political", "statement,", "but", "we", "had", "to", "make", "sure", "the", "attendees", "felt", "safe,”", "he", "said.", "This", "video", "captures", "AltFurry's", "leader", "discussing", "the", "AltRight", "origins", "of", "the", "group", "and", "why", "the", "niche", "nerdy", "subculture", "of", "the", "furry", "fandom", "was", "specifically", "targeted", "for", "indoctrination", "efforts.", "They've", "been", "trying", "to", "bury", "this", "audio.", "pic.twitter.com/hO3l76DoPh", "—", "Deo", "🔜MFF", "(@DeoTasDevil)", "November", "25,", "2017", "While", "Dionysius", "might", "deny", "the", "link", "between", "neo-Nazis", "and", "furries,", "Deo", "the", "Tasmanian", "devil", "suggests", "otherwise.", "Deo", "said", "she", "has", "been", "the", "focus", "of", "attacks", "since", "getting", "off-duty", "officers", "to", "attend", "Denver’s", "Rocky", "Mountain", "Fur", "Con", "in", "April", "as", "a", "response", "to", "threats", "of", "violence", "from", "alt-furry", "members.", "“I", "will", "rape", "you", "to", "death", "n*gger", "b*tch,”", "one", "of", "the", "threats", "read.", "The", "constant", "abuse", "saw", "Deo", "go", "undercover", "on", "the", "alt-furry", "chat", "group", "on", "Discord,", "which", "led", "her", "discovering", "conversation", "around", "hiring", "a", "hitman", "to", "kill", "her.", "The", "comments", "came", "from", "KKKutie,", "who", "was", "a", "former-furry", "and", "girlfriend", "of", "neo-Nazi", "Nathan", "Gate", "—", "the", "creator", "and", "moderator", "of", "the", "alt-furry", "chat", "group", "on", "Discord.", "KKKutie", "said", "she", "was", "radicalised", "into", "white", "supremacy", "by", "the", "alt-right,", "and", "despite", "leaving", "the", "furry", "life", "behind,", "she", "attributes", "them", "for", "helping", "her", "see", "the", "light.", "“I", "think", "alt-furry", "ends", "up", "being", "kind", "of", "an", "exodus", "for", "many", "furries,”", "she", "said.", "“As", "they", "are", "dragged", "further", "right...", "they", "start", "to", "mature", "in", "mind", "and", "in", "body", "and", "in", "turn", "grow", "out", "of", "the", "whole", "furry", "thing", "and", "leave", "it", "behind", "for", "real", "political", "activism.", "I’ve", "experienced", "this", "first-hand", "as", "well", "as", "witnessing", "several", "of", "my", "friends", "do", "the", "same.”", "Deo", "shares", "Junuis’", "sentiment", "that", "white", "nationalists", "are", "using", "furries", "to", "attracts", "new", "members.", "“[White", "supremacists]", "use", "these", "nerd", "groups", "because" ], [ "it’s", "prime", "picking", "grounds,”", "she", "said.", "“They’re", "full", "of", "bitter,", "sad,", "lonely", "people.”", "Continue", "the", "conversation", "in", "the", "comments", "below", "or", "with", "Matthew", "Dunn", "on", "Facebook", "and", "Twitter." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "FURRIES", "are", "no", "stranger", "to", "controversy,", "with", "members", "often", "labelled", "as", "perverse", "fetishists", "for", "dressing", "up", "in", "animal", "costumes,", "which", "dictate", "their", "role-playing", "“fursona”", "Members", "of", "the", "obscure", "subculture", "often", "defend", "themselves", "by", "saying", "their", "celebration", "of", "anthropomorphic", "animal", "characters", "with", "human", "personalities", "and", "characteristics", "is", "nothing", "more", "than", "playful", "escapism.", "While", "defending", "their", "community", "from", "outsider", "criticism", "is", "nothing", "new,", "there", "is", "now", "a", "fresh", "threat", "to", "the", "culture", "coming", "from", "within", "its", "own", "ranks.", "It", "appears", "subculture,", "which", "has", "long", "been", "associated", "with", "gay", "and", "left-wing", "beliefs,", "is", "now", "being", "infiltrated", "by", "right-wing", "extremists", "known", "as", "“alt-furries”.", "The", "alt-furry", "movement", "started", "as", "a", "joke", "on", "Twitter,", "with", "right-leaning", "members", "sharing", "pro-Trump,", "furry-themed", "memes", "using", "the", "#AltFurries", "hashtag.", "What", "started", "as", "the", "promotion", "of", "satirical", "policies", "such", "as", "a", "ban", "on", "“species", "mixing”,", "soon", "became", "much", "more", "serious", "as", "the", "white", "supremacist", "agenda", "started", "to", "creep", "into", "real", "world", "furry", "events.", "A", "horse", "furry,", "known", "as", "Junius,", "became", "a", "target", "for", "the", "group", "after", "calling", "them", "bigots", "and", "fascists", "on", "social", "media.", "Junuis", "said", "she", "wasn’t", "worried", "when", "one", "forum", "group", "attempted", "to", "find", "her", "personal", "information", "and", "release", "it", "online,", "but", "holds", "genuine", "concerns", "over", "the", "growing", "number", "of", "furries", "vulnerable", "to", "recruitment", "by", "these", "white", "supremacists.", "“Nazis", "are", "looking", "for", "these", "same", "types", "of", "alienated", "white", "dudes,”", "she", "told", "Newsweek.", "“These", "people", "just", "want", "to", "hurt", "and", "incite", "—", "and", "are", "beginning", "to", "take", "their", "trolling", "offline.”", "The", "emergence", "of", "the", "alt-furries", "has", "been", "troubling", "for", "the", "culture,", "which", "prides", "itself", "on", "being", "inclusive", "to", "those", "with", "identities", "and", "odd", "social", "quirks.", "A", "goat", "named", "Dionysius", "was", "recently", "banned", "from", "a", "convention", "in", "Philadelphia", "after", "he", "spent", "$A140", "to", "commission", "artwork", "of", "his", "“fursona”", "launching", "Junius", "and", "two", "other", "furries", "out", "of", "a", "helicopter.", "Dionysius", "feels", "his", "banishment", "was", "an", "over-reaction", "from", "“social", "justice", "warriors”,", "especially", "given", "his", "artwork", "was", "made", "in", "response", "to", "left-wing", "furries", "threatening", "to", "punch", "“Nazi", "furs”.", "“I", "would", "like", "to", "note", "that", "punching", "someone", "is", "an", "action", "that", "can", "be", "done", "very", "easily", "at", "a", "furry", "convention,”", "he", "said.", "“No", "one", "has", "ever", "brought", "a", "helicopter", "to", "any", "furry", "convention", "that", "I", "know", "of.", "I", "chose", "that", "setting,", "as", "well", "as", "the", "cartoony", "style,", "precisely", "because", "I", "did", "not", "want", "to", "make", "it", "a", "threat.”", "Furrydelphia", "chairman", "Drayne", "the", "Wolf", "defended", "the", "decision", "to", "ban", "the", "alt-furry", "from", "attending", "the", "event.", "“We", "did", "not", "set", "out", "to", "make", "a", "political", "statement,", "but", "we", "had", "to", "make", "sure", "the", "attendees", "felt", "safe,”", "he", "said.", "This", "video", "captures", "AltFurry's", "leader", "discussing", "the", "AltRight", "origins", "of", "the", "group", "and", "why", "the", "niche", "nerdy", "subculture", "of", "the", "furry", "fandom", "was", "specifically", "targeted", "for", "indoctrination", "efforts.", "They've", "been", "trying", "to", "bury", "this", "audio.", "pic.twitter.com/hO3l76DoPh", "—", "Deo", "🔜MFF", "(@DeoTasDevil)", "November", "25,", "2017", "While", "Dionysius", "might", "deny", "the", "link", "between", "neo-Nazis", "and", "furries,", "Deo", "the", "Tasmanian", "devil", "suggests", "otherwise.", "Deo", "said", "she", "has", "been", "the", "focus", "of", "attacks", "since", "getting", "off-duty", "officers", "to", "attend", "Denver’s", "Rocky", "Mountain", "Fur", "Con", "in", "April", "as", "a", "response", "to", "threats", "of", "violence", "from", "alt-furry", "members.", "“I", "will", "rape", "you", "to", "death", "n*gger", "b*tch,”", "one", "of", "the", "threats", "read.", "The", "constant", "abuse", "saw", "Deo", "go", "undercover", "on", "the", "alt-furry", "chat", "group", "on", "Discord,", "which", "led", "her", "discovering", "conversation", "around", "hiring", "a", "hitman", "to", "kill", "her.", "The", "comments", "came", "from", "KKKutie,", "who", "was", "a", "former-furry", "and", "girlfriend", "of", "neo-Nazi", "Nathan", "Gate", "—", "the", "creator", "and", "moderator", "of", "the", "alt-furry", "chat", "group", "on", "Discord.", "KKKutie", "said", "she", "was", "radicalised", "into", "white", "supremacy", "by", "the", "alt-right,", "and", "despite", "leaving", "the", "furry", "life", "behind,", "she", "attributes", "them", "for", "helping", "her", "see", "the", "light.", "“I", "think", "alt-furry", "ends", "up", "being", "kind", "of", "an", "exodus", "for", "many", "furries,”", "she", "said.", "“As", "they", "are", "dragged", "further", "right...", "they", "start", "to", "mature", "in", "mind", "and", "in", "body", "and", "in", "turn", "grow", "out", "of", "the", "whole", "furry", "thing", "and", "leave", "it", "behind", "for", "real", "political", "activism.", "I’ve", "experienced", "this", "first-hand", "as", "well", "as", "witnessing", "several", "of", "my", "friends", "do", "the", "same.”", "Deo", "shares", "Junuis’", "sentiment", "that", "white", "nationalists", "are", "using", "furries", "to", "attracts", "new", "members.", "“[White", "supremacists]", "use", "these", "nerd", "groups", "because" ] ], [ [ "it’s", "prime", "picking", "grounds,”", "she", "said.", "“They’re", "full", "of", "bitter,", "sad,", "lonely", "people.”", "Continue", "the", "conversation", "in", "the", "comments", "below", "or", "with", "Matthew", "Dunn", "on", "Facebook", "and", "Twitter." ] ] ]
[ [ "en" ], [ "en" ] ]
[ "mono" ]
[ [ "Your", "aim", "to", "gain", "lean", "muscles", "and", "achieve", "a", "ripped", "body", "need", "wings", "so", "that", "the", "goals", "soar", "high", "and", "meet", "the", "horizon", "of", "your", "unlimited", "desires.", "This", "will", "require", "you", "to", "inculcate", "a", "fitness", "regime", "and", "some", "nutrient", "rush", "to", "catalyze", "the", "process.", "Therefore,", "when", "wholesome", "food", "is", "not", "in", "the", "access", "then", "people", "tend", "to", "drift", "away", "towards", "supplement.", "What", "if", "there", "is", "something", "out", "there", "as", "pure", "and", "magnificent", "as", "its", "name?", "Presenting,", "MusclePharm", "Combat", "Isolate,", "5", "lb", "Chocolate", "for", "all", "your", "mass", "building", "needs.", "The", "supplement", "contains", "pure", "Isolates", "that", "energize", "your", "body", "from", "within,", "resulting", "in", "a", "chiselled", "body", "with", "the", "passage", "of", "time.", "Quality", "has", "always", "been", "a", "priority", "for", "MusclePharm’s", "every", "product", "and", "Combat", "Isolate", "is", "no", "exception.", "The", "Cross-Flow", "Micro-Filtration", "system", "adulteration", "and", "all", "the", "ingredients", "in", "their", "purest", "form.", "Benefits", "Each", "scoopful", "of", "chocolate", "flavoured", "MusclePharm", "Combat", "Isolate", "24", "grams", "of", "100%", "whey", "isolate", "per", "27", "gram", "all", "in", "its", "purest", "form.", "The", "fast", "acting", "proteins", "increase", "the", "level", "of", "amino", "acid", "in", "the", "systemic", "circulation.", "It", "is", "from", "where", "that", "the", "acids", "become", "available", "for", "muscle", "protein", "anabolism", "or", "growth.", "Apart", "from", "this,", "the", "supplement", "is", "sugar-free", "and", "contains", "absolutely", "no", "carbohydrates", "or", "fats.", "This", "makes", "Combat", "Isolate", "a", "perfect", "nutrition", "for", "someone", "who", "suffers", "from", "leaky", "gut", "or", "an", "issue", "with", "gluten", "content.", "Moreover,", "this", "one", "property", "also", "makes", "the", "supplement", "a", "fast", "digesting", "one", "as", "compared", "to", "its", "counterparts", "in", "the", "market.", "Moving", "onto", "other", "important", "ingredients,", "an", "adequate", "amount", "of", "calcium", "and", "iron", "assures", "stronger", "bones", "and", "a", "constant", "production", "of", "blood", "within", "the", "body.", "At", "times", "during", "a", "workout,", "when", "a", "body", "goes", "through", "a", "lot", "of", "physical", "strain,", "such", "nutrients", "come", "as", "saviours.", "Ingredients", "Whey", "Protein", "Isolate,", "Cocoa", "Powder,", "Natural", "and", "Artificial", "Flavors,", "Guar", "Xanthan", "Acesulfame", "Sucralose.", "Contains", "Milk", "and", "Soy", "(Lecithin)", "Disclaimer", "Manufactured", "in", "a", "facility", "that", "may", "also", "process", "egg,", "tree", "nuts,", "sesame,", "peanuts,", "fish,", "crustaceans,", "shellfish,", "and", "wheat", "products.", "Usage", "Mix", "1", "scoop", "of", "COMBAT", "100%", "Isolates", "with", "about", "350", "ml", "of", "cold", "water.", "Increase/decrease", "the", "amount", "of", "water", "to", "achieve", "the", "desired", "consistency", "and", "taste.", "For", "a", "surge", "in", "use", "milk", "instead", "of", "water." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Your", "aim", "to", "gain", "lean", "muscles", "and", "achieve", "a", "ripped", "body", "need", "wings", "so", "that", "the", "goals", "soar", "high", "and", "meet", "the", "horizon", "of", "your", "unlimited", "desires.", "This", "will", "require", "you", "to", "inculcate", "a", "fitness", "regime", "and", "some", "nutrient", "rush", "to", "catalyze", "the", "process.", "Therefore,", "when", "wholesome", "food", "is", "not", "in", "the", "access", "then", "people", "tend", "to", "drift", "away", "towards", "supplement.", "What", "if", "there", "is", "something", "out", "there", "as", "pure", "and", "magnificent", "as", "its", "name?", "Presenting,", "MusclePharm", "Combat", "Isolate,", "5", "lb", "Chocolate", "for", "all", "your", "mass", "building", "needs.", "The", "supplement", "contains", "pure", "Isolates", "that", "energize", "your", "body", "from", "within,", "resulting", "in", "a", "chiselled", "body", "with", "the", "passage", "of", "time.", "Quality", "has", "always", "been", "a", "priority", "for", "MusclePharm’s", "every", "product", "and", "Combat", "Isolate", "is", "no", "exception.", "The", "Cross-Flow", "Micro-Filtration", "system", "adulteration", "and", "all", "the", "ingredients", "in", "their", "purest", "form.", "Benefits", "Each", "scoopful", "of", "chocolate", "flavoured", "MusclePharm", "Combat", "Isolate", "24", "grams", "of", "100%", "whey", "isolate" ], [ "all", "in", "its", "purest", "form.", "The", "fast", "acting", "proteins", "increase", "the", "level", "of", "amino", "acid", "in", "the", "systemic", "circulation.", "It", "is", "from", "where", "that", "the", "acids", "become", "available", "for", "muscle", "protein", "anabolism", "or", "growth.", "Apart", "from", "this,", "the", "supplement", "is", "sugar-free", "and", "contains", "absolutely", "no", "carbohydrates", "or", "fats.", "This", "makes", "Combat", "Isolate", "a", "perfect", "nutrition", "for", "someone", "who", "suffers", "from", "leaky", "gut", "or", "an", "issue", "with", "gluten", "content.", "Moreover,", "this", "one", "property", "also", "makes", "the", "supplement", "a", "fast", "digesting", "one", "as", "compared", "to", "its", "counterparts", "in", "the", "market.", "Moving", "onto", "other", "important", "ingredients,", "an", "adequate", "amount", "of", "calcium", "and", "iron", "assures", "stronger", "bones", "and", "a", "constant", "production", "of", "blood", "within", "the", "body.", "At", "times", "during", "a", "workout,", "when", "a", "body", "goes", "through", "a", "lot", "of", "physical", "strain,", "such", "nutrients", "come", "as", "saviours.", "Ingredients", "Whey", "Protein", "Isolate,", "Cocoa", "Powder,", "Natural", "and", "Artificial", "Flavors,", "Guar", "Xanthan", "Acesulfame", "Sucralose.", "Contains", "Milk", "and", "Soy", "(Lecithin)", "Disclaimer", "Manufactured", "in", "a", "facility", "that", "may", "also", "process", "egg,", "tree", "nuts,", "sesame,", "peanuts,", "fish,", "crustaceans,", "shellfish,", "and", "wheat", "products.", "Usage", "Mix", "1", "scoop", "of", "COMBAT", "100%", "Isolates", "with", "about", "350", "ml", "of", "cold", "water.", "Increase/decrease", "the", "amount", "of", "water", "to", "achieve", "the", "desired", "consistency", "and", "taste.", "For", "a", "surge", "in", "use", "milk", "instead", "of", "water." ] ] ]
[ [ "en", "en" ] ]
[ "mono", "mono" ]
[ [ "Since", "Roy", "Moore", "was", "accused", "of", "sexual", "misconduct", "by", "at", "least", "four", "women,", "conservatives", "have", "offered", "some", "pretty", "bizarre", "excuses", "for", "the", "alleged", "behavior.", "But", "perhaps", "none", "have", "been", "as", "strange", "as", "the", "one", "offered", "Monday", "by", "one", "Moore-friendly", "local", "reporter.", "Appearing", "on", "CNN,", "Brandon", "Moseley,", "a", "political", "writer", "for", "the", "supposedly", "“non-partisan”", "Alabama", "Political", "Reporter", "website,", "compared", "child", "molestation", "to", "stealing", "a", "lawn", "mower", "and", "refused", "to", "condemn", "Moore", "for", "the", "alleged", "behavior", "even", "if", "it", "were", "true.", "“I’ve", "known", "Roy", "Moore", "for", "20", "years.", "I’ve", "covered", "his", "campaigns,”", "Moseley", "told", "host", "Brooke", "Baldwin.", "“I", "think", "if", "this", "was", "a", "serious—if", "these", "allegations", "were", "out", "there", "and", "were", "serious", "I", "probably", "would", "have", "heard", "them.”", "When", "a", "befuddled", "Baldwin", "asked", "Moseley", "why", "he", "doesn’t", "consider", "the", "allegations—including", "sexual", "contact", "with", "a", "woman", "when", "she", "was", "14", "years", "old—to", "be", "“serious,”", "the", "reporter", "answered:", "“They're", "38-year-old", "allegations.", "This", "would", "be", "a", "misdemeanor", "at", "the", "time", "under", "the", "code", "of", "Alabama.", "The", "statute’s", "been", "up", "since", "’86.”", "He", "then", "deployed", "a", "pivot", "commonly", "deployed", "in", "deflecting", "from", "right-wing", "sex", "scandals:", "“If", "you", "go", "back", "and", "you", "don’t", "elect", "anyone", "who", "has", "ever", "done", "anything", "wrong", "we", "wouldn’t", "have", "had", "Barack", "Obama.", "I", "think", "he", "did", "cocaine.", "Bill", "Clinton", "supposedly", "smoked", "marijuana.”", "Baldwin", "paused,", "tilted", "her", "head", "in", "confusion,", "and", "said:", "“Okay,", "what?”", "She", "added:", "“We", "are", "talking", "about", "allegations", "involving", "the", "current", "Senate", "candidate", "of", "Alabama.", "Let", "me", "stop", "you", "on", "the", "facts.", "Let’s", "function", "in", "the", "factual", "world.”", "Baldwin", "then", "pointed", "out", "that", "the", "age", "of", "consent", "in", "Alabama", "is", "16,", "and", "so", "it", "is", "acknowledged", "that", "sexual", "contact", "with", "a", "14-year-old", "would", "have", "implicitly", "been", "illegal.", "“Are", "you", "saying", "that", "because", "there", "wouldn’t", "have", "been", "a", "law,", "according", "to", "you,", "that", "would", "have", "made", "it", "okay", "back", "then?”", "she", "asked", "Moseley.", "“If", "Roy", "Moore", "committed", "a", "sin,", "that’s", "a", "sin", "and", "that’s", "not", "good,", "but", "we’re", "not", "talking", "about", "an", "actual", "crime", "here", "under—that’s", "prosecutable", "in", "2017,”", "he", "replied.", "“I", "don’t", "think", "you", "throw", "out", "35", "years", "of", "a", "man’s", "career", "and", "his", "reputation", "because", "of", "an", "unsubstantiated", "allegation", "from", "1979.”", "Baldwin", "frustratedly", "noted,", "once", "again,", "that", "the", "accuser", "was", "14", "years", "old", "at", "the", "time", "of", "the", "alleged", "incident.", "She", "added", "that", "CNN", "researchers", "found", "that,", "as", "far", "back", "as", "1977,", "the", "behavior", "would", "have", "been", "considered", "sexual", "abuse", "in", "the", "second", "degree.", "“Which", "is", "a", "misdemeanor", "in", "Alabama,”", "Moseley", "shot", "back.", "“Does", "that", "make", "it", "okay?”", "Baldwin", "asked.", "“No,", "but", "again,", "if,", "you", "know,", "if", "Roy", "Moore", "had", "stolen", "a", "lawn", "mower", "when", "he", "was", "21", "that’s", "bad,", "but", "that’s", "not", "a", "reason", "50", "years", "later", "to", "all", "of", "a", "sudden,", "you", "know,", "throw", "him", "off", "the", "ballot", "Mcconnell", "pick", "the", "next", "senator", "of", "Alabama.”", "“Sexual", "abuse,", "stealing", "a", "lawn", "mower,”", "a", "stunned", "Baldwin", "recapped.", "“Let’s", "not", "even", "go", "there.”", "When", "asked", "why", "Moore", "hasn’t", "taken", "the", "time", "to", "debunk", "the", "allegations", "one", "by", "one,", "Moseley", "defended", "the", "nominee", "with", "a", "rambling", "answer:", "“The", "only", "accusation", "that", "would", "be", "a", "serious", "crime", "was", "that", "of", "the", "14-year-old,", "whether", "he", "gave", "alcohol", "to", "an", "18-year-old", "when", "the", "alcohol", "age", "was", "19", "in", "Alabama,”", "he", "began.", "“Again,", "the", "one", "that", "matters", "is", "the", "14-year-old", "complaint", "because", "that", "would", "be", "the", "most", "serious", "offense.", "It’s", "become", "basically", "Leigh", "Corfman’s", "word", "versus", "Roy", "Moore’s", "and", "Corfman’s", "account", "is", "different", "than", "the", "other", "accounts.”", "He", "went", "on:", "“And", "in", "the", "other", "accounts", "Roy", "Moore", "dated", "some", "of", "these", "women,", "supposedly,", "as", "long", "as", "three", "months", "and", "they", "never", "got", "naked.", "According", "to", "Corfman,", "supposedly,", "Roy", "took", "off", "her", "shirt", "and", "pants", "and", "there", "was", "some", "inappropriate", "touching.”", "Asked", "whether", "he", "similarly", "dismissed", "the", "sexual-harassment", "accusations", "against", "President", "Trump", "in", "2016,", "Moseley", "said:", "“I", "still", "voted", "for", "Donald", "Trump.", "As", "a", "Christian", "I", "can", "forgive", "a", "past", "indiscretion,", "certainly", "one", "that’s", "not", "a", "crime", "at", "this", "time.”", "Moseley’s", "defense", "of", "Moore", "echoes", "those", "of", "other", "prominent", "Alabamans", "who’ve", "either", "invoked", "the", "Bible", "or", "deployed", "strange" ], [ "analogies.", "“Take", "Joseph", "and", "Mary.", "Mary", "was", "a", "teenager", "and", "Joseph", "was", "an", "adult", "carpenter.", "They", "became", "parents", "of", "Jesus,”", "Alabama", "State", "Auditor", "Jim", "Zeigler", "the", "Washington", "Examiner.", "Bibb", "County", "Republican", "chairman", "Jerry", "Pow", "told", "media", "that", "even", "if", "Moore", "did", "commit", "a", "sex", "crime", "against", "a", "young", "girl,", "“I", "would", "vote", "for", "Judge", "Moore", "because", "I", "wouldn’t", "want", "to", "vote", "for", "[Democratic", "Doug", "[Jones].", "I’m", "not", "saying", "I", "support", "what", "he", "did.”" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Since", "Roy", "Moore", "was", "accused", "of", "sexual", "misconduct", "by", "at", "least", "four", "women,", "conservatives", "have", "offered", "some", "pretty", "bizarre", "excuses", "for", "the", "alleged", "behavior.", "But", "perhaps", "none", "have", "been", "as", "strange", "as", "the", "one", "offered", "Monday", "by", "one", "Moore-friendly", "local", "reporter.", "Appearing", "on", "CNN,", "Brandon", "Moseley,", "a", "political", "writer", "for", "the", "supposedly", "“non-partisan”", "Alabama", "Political", "Reporter", "website,", "compared", "child", "molestation", "to", "stealing", "a", "lawn", "mower", "and", "refused", "to", "condemn", "Moore", "for", "the", "alleged", "behavior", "even", "if", "it", "were", "true.", "“I’ve", "known", "Roy", "Moore", "for", "20", "years.", "I’ve", "covered", "his", "campaigns,”", "Moseley", "told", "host", "Brooke", "Baldwin.", "“I", "think", "if", "this", "was", "a", "serious—if", "these", "allegations", "were", "out", "there", "and", "were", "serious", "I", "probably", "would", "have", "heard", "them.”", "When", "a", "befuddled", "Baldwin", "asked", "Moseley", "why", "he", "doesn’t", "consider", "the", "allegations—including", "sexual", "contact", "with", "a", "woman", "when", "she", "was", "14", "years", "old—to", "be", "“serious,”", "the", "reporter", "answered:", "“They're", "38-year-old", "allegations.", "This", "would", "be", "a", "misdemeanor", "at", "the", "time", "under", "the", "code", "of", "Alabama.", "The", "statute’s", "been", "up", "since", "’86.”", "He", "then", "deployed", "a", "pivot", "commonly", "deployed", "in", "deflecting", "from", "right-wing", "sex", "scandals:", "“If", "you", "go", "back", "and", "you", "don’t", "elect", "anyone", "who", "has", "ever", "done", "anything", "wrong", "we", "wouldn’t", "have", "had", "Barack", "Obama.", "I", "think", "he", "did", "cocaine.", "Bill", "Clinton", "supposedly", "smoked", "marijuana.”", "Baldwin", "paused,", "tilted", "her", "head", "in", "confusion,", "and", "said:", "“Okay,", "what?”", "She", "added:", "“We", "are", "talking", "about", "allegations", "involving", "the", "current", "Senate", "candidate", "of", "Alabama.", "Let", "me", "stop", "you", "on", "the", "facts.", "Let’s", "function", "in", "the", "factual", "world.”", "Baldwin", "then", "pointed", "out", "that", "the", "age", "of", "consent", "in", "Alabama", "is", "16,", "and", "so", "it", "is", "acknowledged", "that", "sexual", "contact", "with", "a", "14-year-old", "would", "have", "implicitly", "been", "illegal.", "“Are", "you", "saying", "that", "because", "there", "wouldn’t", "have", "been", "a", "law,", "according", "to", "you,", "that", "would", "have", "made", "it", "okay", "back", "then?”", "she", "asked", "Moseley.", "“If", "Roy", "Moore", "committed", "a", "sin,", "that’s", "a", "sin", "and", "that’s", "not", "good,", "but", "we’re", "not", "talking", "about", "an", "actual", "crime", "here", "under—that’s", "prosecutable", "in", "2017,”", "he", "replied.", "“I", "don’t", "think", "you", "throw", "out", "35", "years", "of", "a", "man’s", "career", "and", "his", "reputation", "because", "of", "an", "unsubstantiated", "allegation", "from", "1979.”", "Baldwin", "frustratedly", "noted,", "once", "again,", "that", "the", "accuser", "was", "14", "years", "old", "at", "the", "time", "of", "the", "alleged", "incident.", "She", "added", "that", "CNN", "researchers", "found", "that,", "as", "far", "back", "as", "1977,", "the", "behavior", "would", "have", "been", "considered", "sexual", "abuse", "in", "the", "second", "degree.", "“Which", "is", "a", "misdemeanor", "in", "Alabama,”", "Moseley", "shot", "back.", "“Does", "that", "make", "it", "okay?”", "Baldwin", "asked.", "“No,", "but", "again,", "if,", "you", "know,", "if", "Roy", "Moore", "had", "stolen", "a", "lawn", "mower", "when", "he", "was", "21", "that’s", "bad,", "but", "that’s", "not", "a", "reason", "50", "years", "later", "to", "all", "of", "a", "sudden,", "you", "know,", "throw", "him", "off", "the", "ballot", "Mcconnell", "pick", "the", "next", "senator", "of", "Alabama.”", "“Sexual", "abuse,", "stealing", "a", "lawn", "mower,”", "a", "stunned", "Baldwin", "recapped.", "“Let’s", "not", "even", "go", "there.”", "When", "asked", "why", "Moore", "hasn’t", "taken", "the", "time", "to", "debunk", "the", "allegations", "one", "by", "one,", "Moseley", "defended", "the", "nominee", "with", "a", "rambling", "answer:", "“The", "only", "accusation", "that", "would", "be", "a", "serious", "crime", "was", "that", "of", "the", "14-year-old,", "whether", "he", "gave", "alcohol", "to", "an", "18-year-old", "when", "the", "alcohol", "age", "was", "19", "in", "Alabama,”", "he", "began.", "“Again,", "the", "one", "that", "matters", "is", "the", "14-year-old", "complaint", "because", "that", "would", "be", "the", "most", "serious", "offense.", "It’s", "become", "basically", "Leigh", "Corfman’s", "word", "versus", "Roy", "Moore’s", "and", "Corfman’s", "account", "is", "different", "than", "the", "other", "accounts.”", "He", "went", "on:", "“And", "in", "the", "other", "accounts", "Roy", "Moore", "dated", "some", "of", "these", "women,", "supposedly,", "as", "long", "as", "three", "months", "and", "they", "never", "got", "naked.", "According", "to", "Corfman,", "supposedly,", "Roy", "took", "off", "her", "shirt", "and", "pants", "and", "there", "was", "some", "inappropriate", "touching.”", "Asked", "whether", "he", "similarly", "dismissed", "the", "sexual-harassment", "accusations", "against", "President", "Trump", "in", "2016,", "Moseley", "said:", "“I", "still", "voted", "for", "Donald", "Trump.", "As", "a", "Christian", "I", "can", "forgive", "a", "past", "indiscretion,", "certainly", "one", "that’s", "not", "a", "crime", "at", "this", "time.”", "Moseley’s", "defense", "of", "Moore", "echoes", "those", "of", "other", "prominent", "Alabamans", "who’ve", "either", "invoked", "the", "Bible", "or", "deployed", "strange" ] ], [ [ "analogies.", "“Take", "Joseph", "and", "Mary.", "Mary", "was", "a", "teenager", "and", "Joseph", "was", "an", "adult", "carpenter.", "They", "became", "parents", "of", "Jesus,”", "Alabama", "State", "Auditor", "Jim", "Zeigler", "the", "Washington", "Examiner.", "Bibb", "County", "Republican", "chairman", "Jerry", "Pow", "told", "media", "that", "even", "if", "Moore", "did", "commit", "a", "sex", "crime", "against", "a", "young", "girl,", "“I", "would", "vote", "for", "Judge", "Moore", "because", "I", "wouldn’t", "want", "to", "vote", "for", "[Democratic", "Doug", "[Jones].", "I’m", "not", "saying", "I", "support", "what", "he", "did.”" ] ] ]
[ [ "en" ], [ "en" ] ]
[ "mono", "mono" ]
[ [ "President", "Donald", "war", "with", "China", "is", "causing", "a", "panic", "inside", "the", "board", "game", "industry.", "A", "list", "of", "tariffs", "on", "Chinese", "imports", "proposed", "by", "the", "United", "States", "trade", "representative", "would", "raise", "the", "cost", "of", "virtually", "everything", "needed", "to", "produce", "modern", "tabletop", "Stacy,", "executive", "director", "of", "the", "Game", "Manufacturers", "Association", "(GAMA),", "says", "that", "tariffs", "could", "dramatically", "reduce", "the", "number", "of", "new", "games", "in", "production", "in", "the", "United", "States.", "Even", "worse,", "they", "could", "cost", "workers", "and", "business", "owners", "their", "livelihoods.", "GAMA", "is", "a", "non-profit", "organization", "that", "represents", "more", "than", "1,000", "companies", "in", "the", "hobby", "games", "industry.", "That", "industry", "includes", "board", "games,", "card", "games,", "dice,", "role-playing", "games,", "and", "miniatures", "games.", "It’s", "a", "sector", "that", "has", "seen", "remarkable", "growth", "over", "the", "last", "decade", "thanks", "to", "a", "number", "of", "factors.", "Among", "them", "is", "the", "birth", "of", "crowdfunding", "platforms", "like", "Kickstarter,", "also", "in", "board", "game", "design.", "Meanwhile", "the", "tabletop", "RPG", "sector,", "lead", "by", "Dungeons", "&", "Dragons", "and", "made", "viral", "by", "actual-play", "experiences,", "is", "more", "popular", "than", "ever", "before.", "In", "total,", "Stacy", "says", "that", "hobby", "games", "now", "produce", "as", "much", "as", "$5", "billion", "annually", "for", "the", "U.S.", "economy.", "But", "that", "number", "is", "now", "at", "risk", "thanks", "to", "Trump’s", "proposed", "tariffs.", "“We’re", "very", "concerned", "about", "it,”", "Stacy", "told", "Polygon.", "“There’s", "been", "a", "lot", "of", "conversation", "among", "our", "members", "in", "the", "last", "two", "days", "about", "the", "impact", "of", "this", "and", "how", "it’s", "going.", "It’s", "potentially", "a", "25", "percent", "increase", "on", "the", "costs", "of", "importing", "products", "from", "China.", "We’d", "pass", "those", "increases", "on", "to", "the", "retailers,", "who", "would", "pass", "them", "on", "to", "consumers.", "And", "so", "there’s", "definitely", "this", "ripple", "effect", "in", "the", "economy.”", "Polygon", "reached", "out", "to", "half", "a", "dozen", "of", "the", "most", "successful", "companies", "in", "the", "hobby", "games", "space,", "both", "new", "and", "old.", "Those", "who", "responded", "declined", "to", "go", "on", "the", "record", "for", "this", "story.", "Privately,", "several", "expressed", "that", "they", "were", "terrified", "at", "the", "prospects", "of", "Trump’s", "tariffs", "being", "put", "in", "place.", "Stacy", "said", "his", "experience", "communicating", "with", "GAMA", "members", "has", "been", "much", "the", "same.", "“The", "conversations", "I’m", "having", "are,", "‘How", "am", "I", "going", "to", "keep", "my", "doors", "open", "and", "pay", "my", "employees?", "If", "my", "costs", "go", "up", "25", "percent,", "if", "I", "can’t", "pass", "that", "on", "to", "my", "customers,", "I", "can’t", "stay", "in", "business.’”", "The", "goal", "of", "Trump’s", "trade", "war", "is", "to", "bring", "back", "American", "jobs", "and", "boost", "our", "economy", "while", "punishing", "China", "for", "what", "he", "calls", "unfair", "trade", "practices.", "Trouble", "is", "that,", "unlike", "the", "steel", "industry,", "there", "are", "painfully", "few", "alternative", "sources", "right", "now", "for", "manufacturing", "hobby", "games", "here", "in", "our", "country.", "Making", "matters", "worse,", "those", "manufacturers", "that", "do", "remain", "can’t", "produce", "games", "of", "the", "same", "quality", "as", "their", "Chinese", "competitors.", "“The", "[hobby", "games]", "manufacturing", "infrastructure", "in", "the", "United", "States", "has", "basically", "collapsed", "in", "the", "last", "20", "years,”", "Stacy", "said.", "“The", "expertise", "and", "the", "specialization", "is", "simply", "not", "there.", "Obviously,", "we", "still", "have", "some", "big", "manufacturers", "in", "this", "country,", "but", "they", "can’t", "do", "smaller", "products", "in", "the", "volumes", "that", "we’re", "buying", "them", "in", "—", "2,000", "copies", "or", "whatever", "—", "because", "it’s", "cost", "prohibitive", "to", "buy", "that", "small", "of", "a", "quantity", "from", "a", "U.S.", "company.", "So", "our", "members", "have", "to", "go", "overseas", "to", "buy", "them.", "That’s", "what", "allows", "them", "to", "actually", "keep", "their", "doors", "open,", "because", "the", "margins", "are", "so", "thin", "in", "our", "industry.”", "Because", "of", "that,", "Stacy", "says", "that", "the", "proposed", "25", "percent", "tariffs", "feel", "more", "like", "a", "25", "percent", "tax", "on", "the", "hobby", "of", "tabletop", "gaming.", "It’s", "a", "tax", "that", "could", "be", "instituted", "virtually", "overnight,", "and", "one", "that", "GAMA’s", "membership", "cannot", "easily", "sustain.", "Given", "the", "short", "production", "cycle", "of", "hobby", "games,", "the", "impact", "of", "these", "tariffs", "would", "be", "felt", "immediately.", "An", "overnight", "cost", "increase", "would", "mean", "fewer", "games", "on", "the", "shelves", "at", "local", "independent", "retailers,", "and", "higher", "costs", "overall", "for", "U.S.", "consumers.", "It", "seems", "that", "part", "of", "what", "makes", "the", "hobby", "games", "space", "so", "interesting", "right", "now", "also", "makes", "it", "extremely", "fragile.", "Ultimately,", "many", "of", "the", "smallest", "companies", "and", "the", "most", "daring", "new", "game", "designers", "could", "be", "put", "out", "of", "business.", "“With", "Kickstarter", "there’s", "a", "low", "barrier", "to", "entry", "to", "get", "into", "this", "industry,”", "Stacey", "said.", "“There", "are", "more", "games", "on", "the", "market", "today", "than", "there", "were", "in", "any", "previous", "year.", "Every", "year", "the", "number", "gets", "larger", "and", "larger.", "So", "it", "and", "harder", "to", "reach", "the", "market", "and", "get", "your", "product", "out", "there", "to", "sell", "your", "product.", "Related", "The", "top", "10", "tabletop", "games", "of", "2018", "“The", "competition", "is", "very", "tough,", "so", "you", "have", "to", "be", "very", "price", "conscious", "to", "keep", "your", "part", "of", "the", "market", "share", "that", "you", "currently", "have.", "So", "there’s", "this", "cycle", "that", "makes", "it", "hard", "to", "raise", "prices", "because", "the", "market", "is", "so", "competitive.", "If", "you", "keep", "the", "prices", "low", "it’s", "easier", "to", "get", "into", "the", "marketplace." ], [ "This", "cycle", "just", "continues", "and", "continues.", "So", "it’s", "very", "hard", "to", "make", "money", "in", "this", "industry.”", "For", "his", "part,", "Stacy", "says", "that", "he", "and", "other", "members", "of", "GAMA’s", "leadership", "are", "doing", "what", "they", "can.", "He’s", "already", "spent", "time", "in", "Washington", "D.C.", "lobbying", "on", "behalf", "of", "the", "industry.", "He", "says", "that", "consumers", "should", "also", "make", "time", "to", "call", "their", "representatives", "and", "voice", "their", "concerns.", "“Yes,", "the", "President", "is", "unilaterally", "making", "these", "decisions,”", "Stacy", "said,", "“but", "Congress", "has", "a", "role", "in", "this", "and", "it’s", "important", "that", "[consumers]", "voice", "to", "their", "elected", "representative", "that", "they’re", "not", "happy", "with", "this,", "that", "this", "is", "not", "good", "for", "us,", "and", "that", "this", "is", "not", "good", "for", "America.”" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "President", "Donald", "war", "with", "China", "is", "causing", "a", "panic", "inside", "the", "board", "game", "industry.", "A", "list", "of", "tariffs", "on", "Chinese", "imports", "proposed", "by", "the", "United", "States", "trade", "representative", "would", "raise", "the", "cost", "of", "virtually", "everything", "needed", "to", "produce", "modern", "tabletop", "Stacy,", "executive", "director", "of", "the", "Game", "Manufacturers", "Association", "(GAMA),", "says", "that", "tariffs", "could", "dramatically", "reduce", "the", "number", "of", "new", "games", "in", "production", "in", "the", "United", "States.", "Even", "worse,", "they", "could", "cost", "workers", "and", "business", "owners", "their", "livelihoods.", "GAMA", "is", "a", "non-profit", "organization", "that", "represents", "more", "than", "1,000", "companies", "in", "the", "hobby", "games", "industry.", "That", "industry", "includes", "board", "games,", "card", "games,", "dice,", "role-playing", "games,", "and", "miniatures", "games.", "It’s", "a", "sector", "that", "has", "seen", "remarkable", "growth", "over", "the", "last", "decade", "thanks", "to", "a", "number", "of", "factors.", "Among", "them", "is", "the", "birth", "of", "crowdfunding", "platforms", "like", "Kickstarter,", "also", "in", "board", "game", "design.", "Meanwhile", "the", "tabletop", "RPG", "sector,", "lead", "by", "Dungeons", "&", "Dragons", "and", "made", "viral", "by", "actual-play", "experiences,", "is", "more", "popular", "than", "ever", "before.", "In", "total,", "Stacy", "says", "that", "hobby", "games", "now", "produce", "as", "much", "as", "$5", "billion", "annually", "for", "the", "U.S.", "economy.", "But", "that", "number", "is", "now", "at", "risk", "thanks", "to", "Trump’s", "proposed", "tariffs.", "“We’re", "very", "concerned", "about", "it,”", "Stacy", "told", "Polygon.", "“There’s", "been", "a", "lot", "of", "conversation", "among", "our", "members", "in", "the", "last", "two", "days", "about", "the", "impact", "of", "this", "and", "how", "it’s", "going.", "It’s", "potentially", "a", "25", "percent", "increase", "on", "the", "costs", "of", "importing", "products", "from", "China.", "We’d", "pass", "those", "increases", "on", "to", "the", "retailers,", "who", "would", "pass", "them", "on", "to", "consumers.", "And", "so", "there’s", "definitely", "this", "ripple", "effect", "in", "the", "economy.”", "Polygon", "reached", "out", "to", "half", "a", "dozen", "of", "the", "most", "successful", "companies", "in", "the", "hobby", "games", "space,", "both", "new", "and", "old.", "Those", "who", "responded", "declined", "to", "go", "on", "the", "record", "for", "this", "story.", "Privately,", "several", "expressed", "that", "they", "were", "terrified", "at", "the", "prospects", "of", "Trump’s", "tariffs", "being", "put", "in", "place.", "Stacy", "said", "his", "experience", "communicating", "with", "GAMA", "members", "has", "been", "much", "the", "same.", "“The", "conversations", "I’m", "having", "are,", "‘How", "am", "I", "going", "to", "keep", "my", "doors", "open", "and", "pay", "my", "employees?", "If", "my", "costs", "go", "up", "25", "percent,", "if", "I", "can’t", "pass", "that", "on", "to", "my", "customers,", "I", "can’t", "stay", "in", "business.’”", "The", "goal", "of", "Trump’s", "trade", "war", "is", "to", "bring", "back", "American", "jobs", "and", "boost", "our", "economy", "while", "punishing", "China", "for", "what", "he", "calls", "unfair", "trade", "practices.", "Trouble", "is", "that,", "unlike", "the", "steel", "industry,", "there", "are", "painfully", "few", "alternative", "sources", "right", "now", "for", "manufacturing", "hobby", "games", "here", "in", "our", "country.", "Making", "matters", "worse,", "those", "manufacturers", "that", "do", "remain", "can’t", "produce", "games", "of", "the", "same", "quality", "as", "their", "Chinese", "competitors.", "“The", "[hobby", "games]", "manufacturing", "infrastructure", "in", "the", "United", "States", "has", "basically", "collapsed", "in", "the", "last", "20", "years,”", "Stacy", "said.", "“The", "expertise", "and", "the", "specialization", "is", "simply", "not", "there.", "Obviously,", "we", "still", "have", "some", "big", "manufacturers", "in", "this", "country,", "but", "they", "can’t", "do", "smaller", "products", "in", "the", "volumes", "that", "we’re", "buying", "them", "in", "—", "2,000", "copies", "or", "whatever", "—", "because", "it’s", "cost", "prohibitive", "to", "buy", "that", "small", "of", "a", "quantity", "from", "a", "U.S.", "company.", "So", "our", "members", "have", "to", "go", "overseas", "to", "buy", "them.", "That’s", "what", "allows", "them", "to", "actually", "keep", "their", "doors", "open,", "because", "the", "margins", "are", "so", "thin", "in", "our", "industry.”", "Because", "of", "that,", "Stacy", "says", "that", "the", "proposed", "25", "percent", "tariffs", "feel", "more", "like", "a", "25", "percent", "tax", "on", "the", "hobby", "of", "tabletop", "gaming.", "It’s", "a", "tax", "that", "could", "be", "instituted", "virtually", "overnight,", "and", "one", "that", "GAMA’s", "membership", "cannot", "easily", "sustain.", "Given", "the", "short", "production", "cycle", "of", "hobby", "games,", "the", "impact", "of", "these", "tariffs", "would", "be", "felt", "immediately.", "An", "overnight", "cost", "increase", "would", "mean", "fewer", "games", "on", "the", "shelves", "at", "local", "independent", "retailers,", "and", "higher", "costs", "overall", "for", "U.S.", "consumers.", "It", "seems", "that", "part", "of", "what", "makes", "the", "hobby", "games", "space", "so", "interesting", "right", "now", "also", "makes", "it", "extremely", "fragile.", "Ultimately,", "many", "of", "the", "smallest", "companies", "and", "the", "most", "daring", "new", "game", "designers", "could", "be", "put", "out", "of", "business.", "“With", "Kickstarter", "there’s", "a", "low", "barrier", "to", "entry", "to", "get", "into", "this", "industry,”", "Stacey", "said.", "“There", "are", "more", "games", "on", "the", "market", "today", "than", "there", "were", "in", "any", "previous", "year.", "Every", "year", "the", "number", "gets", "larger", "and", "larger.", "So", "it", "and", "harder", "to", "reach", "the", "market", "and", "get", "your", "product", "out", "there", "to", "sell", "your", "product.", "Related", "The", "top", "10", "tabletop", "games", "of", "2018", "“The", "competition", "is", "very", "tough,", "so", "you", "have", "to", "be", "very", "price", "conscious", "to", "keep", "your", "part", "of", "the", "market", "share", "that", "you", "currently", "have.", "So", "there’s", "this", "cycle", "that", "makes", "it", "hard", "to", "raise", "prices", "because", "the", "market", "is", "so", "competitive.", "If", "you", "keep", "the", "prices", "low", "it’s", "easier", "to", "get", "into", "the", "marketplace." ] ], [ [ "This", "cycle", "just", "continues", "and", "continues.", "So", "it’s", "very", "hard", "to", "make", "money", "in", "this", "industry.”", "For", "his", "part,", "Stacy", "says", "that", "he", "and", "other", "members", "of", "GAMA’s", "leadership", "are", "doing", "what", "they", "can.", "He’s", "already", "spent", "time", "in", "Washington", "D.C.", "lobbying", "on", "behalf", "of", "the", "industry.", "He", "says", "that", "consumers", "should", "also", "make", "time", "to", "call", "their", "representatives", "and", "voice", "their", "concerns.", "“Yes,", "the", "President", "is", "unilaterally", "making", "these", "decisions,”", "Stacy", "said,", "“but", "Congress", "has", "a", "role", "in", "this", "and", "it’s", "important", "that", "[consumers]", "voice", "to", "their", "elected", "representative", "that", "they’re", "not", "happy", "with", "this,", "that", "this", "is", "not", "good", "for", "us,", "and", "that", "this", "is", "not", "good", "for", "America.”" ] ] ]
[ [ "en" ], [ "en" ] ]
[ "mono" ]
[ [ "Henri", "Nestlé’s", "water", "bottling", "factory", "was", "the", "earliest", "incarnation", "of", "what", "would", "eventually", "become", "the", "world’s", "leading", "bottled", "water", "company.", "Today", "this", "impressive", "48", "water", "brands", "and", "1", "tea", "brand", "on", "five", "continents.", "Nestlé", "Waters", "is", "proud", "to", "have", "a", "list", "of", "internationally", "renowned", "brands", "such", "as", "the", "sparkling", "celebrities,", "S.Pellegrino", "each", "brand", "is", "a", "much-loved", "and", "respected", "presence", "in", "its", "region", "or", "country,", "like", "Erikli", "in", "Poland", "Spring", "in", "the", "USA,", "Sohat", "in", "or", "Buxton", "in", "the", "UK.", "Our", "local", "brands", "share", "many", "features.", "First,", "they", "have", "all", "been", "selected,", "over", "time,", "to", "join", "the", "Nestlé", "Waters", "family", "because", "of", "their", "great", "taste,", "quality", "and", "sustainability.", "In", "addition,", "many", "bottles", "are", "made", "from", "recycled", "plastic.", "Finally,", "all", "brands", "are", "valued", "partners", "in", "Nestlé", "Waters’", "strategy", "to", "be", "the", "world’s", "leading", "healthy", "hydration", "company,", "offering", "safe,", "tasty,", "reliable", "bottled", "water", "to", "consumers", "the", "world", "over.", "Nestlé", "Waters’", "brands", "are", "present", "in", "most", "including", "traditional", "retail,", "modern", "trade,", "out-of-home,", "restaurants,", "and", "offices,", "and", "consequently", "offer", "a", "wide", "range", "of", "packaging" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Henri", "Nestlé’s", "water", "bottling", "factory", "was", "the", "earliest", "incarnation", "of", "what", "would", "eventually", "become", "the", "world’s", "leading", "bottled", "water", "company.", "Today", "this", "impressive", "48", "water", "brands", "and", "1", "tea", "brand", "on", "five", "continents.", "Nestlé", "Waters", "is", "proud", "to", "have", "a", "list", "of", "internationally", "renowned", "brands", "such", "as", "the", "sparkling", "celebrities,", "S.Pellegrino", "each", "brand", "is", "a", "much-loved", "and", "respected", "presence", "in", "its", "region", "or", "country,", "like", "Erikli", "in", "Poland", "Spring", "in", "the", "USA,", "Sohat", "in", "or", "Buxton", "in", "the", "UK.", "Our", "local", "brands", "share", "many", "features.", "First,", "they", "have", "all", "been", "selected,", "over", "time,", "to", "join", "the", "Nestlé", "Waters", "family", "because", "of", "their", "great", "taste,", "quality", "and", "sustainability.", "In", "addition,", "many", "bottles", "are", "made", "from", "recycled", "plastic.", "Finally,", "all", "brands", "are", "valued", "partners", "in", "Nestlé", "Waters’", "strategy", "to", "be", "the", "world’s", "leading", "healthy", "hydration", "company,", "offering", "safe,", "tasty,", "reliable", "bottled", "water", "to", "consumers", "the", "world", "over.", "Nestlé", "Waters’", "brands", "are", "present", "in", "most", "including", "traditional", "retail,", "modern", "trade,", "out-of-home,", "restaurants,", "and", "offices,", "and", "consequently", "offer", "a", "wide", "range", "of", "packaging" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Martin", "Skrtel", "is", "ready", "to", "put", "his", "friendships", "with", "Liverpool’s", "England", "contingent", "to", "one", "side", "when", "Slovakia", "come", "up", "against", "the", "Three", "Lions", "in", "the", "European", "Championship", "on", "Monday", "night.", "The", "fixture", "in", "Saint-Etienne", "will", "prove", "crucial", "in", "deciding", "the", "outcome", "of", "Group", "B", "and", "which", "teams", "qualify", "for", "the", "knockout", "phase", "of", "the", "tournament.", "England", "top", "the", "standings", "with", "four", "points,", "while", "Skrtel’s", "Slovakia", "and", "Wales", "are", "right", "behind", "them", "on", "three.", "Russia", "prop", "up", "the", "table", "with", "a", "point,", "but", "still", "have", "an", "opportunity", "to", "progress.", "And", "with", "the", "Reds", "centre-back", "set", "to", "face", "Anfield", "Sturridge,", "Adam", "Lallana,", "James", "Milner,", "Nathaniel", "Clyne", "Jordan", "he", "insists", "there’ll", "be", "no", "room", "for", "sentiment", "with", "so", "much", "at", "stake.", "Skrtel", "said:", "“It’s", "not", "a", "normal", "situation", "for", "me,", "but", "we’re", "professionals", "and", "it’s", "all", "part", "of", "the", "job.", "Everyone", "will", "be", "giving", "their", "all", "for", "their", "team", "and", "doing", "their", "very", "best", "to", "win", "the", "game.", "“We’ll", "see", "what", "happens.", "I", "know", "them", "and", "they", "know", "me,", "though", "there’s", "more", "to", "the", "match", "than", "just", "that.", "“It’s", "a", "game", "between", "two", "nations,", "and", "England", "have", "got", "one", "of", "the", "best", "teams", "in", "the", "world.", "In", "a", "match", "like", "this", "there", "are", "no", "such", "things", "as", "friends.", "You", "can", "maybe", "be", "friends", "before", "or", "after", "the", "game,", "but", "not", "on", "the", "pitch.”", "England", "go", "into", "the", "game", "buoyed", "by", "Sturridge’s", "last-gasp", "strike", "in", "Thursday’s", "dramatic", "2-1", "victory", "over", "Wales.", "Nevertheless,", "Skrtel", "is", "eager", "to", "stress", "it’s", "not", "just", "the", "threat", "of", "his", "fellow", "Red", "he’ll", "need", "to", "be", "wary", "of.", "He", "added:", "“There’s", "not", "just", "Sturridge,", "Jamie", "Vardy", "or", "Harry", "Kane.", "There", "are", "not", "just", "the", "strikers", "and", "the", "midfielders.", "There", "are", "11", "players", "we", "have", "to", "beat.", "“The", "smaller", "countries", "have", "probably", "got", "more", "team", "spirit,", "especially", "when", "they", "come", "up", "against", "the", "big", "countries.", "“The", "pressure", "will", "be", "on", "the", "English,", "though", "I", "think", "they", "have", "enough", "experience", "to", "be", "able", "to", "handle", "it.", "“It’s", "all", "going", "to", "come", "down", "to", "what", "happens", "on", "the", "pitch,", "and", "I", "think", "we", "can", "reproduce", "our", "performance", "against", "Russia.", "We", "showed", "heart,", "character", "and", "motivation.”" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Martin", "Skrtel", "is", "ready", "to", "put", "his", "friendships", "with", "Liverpool’s", "England", "contingent", "to", "one", "side", "when", "Slovakia", "come", "up", "against", "the", "Three", "Lions", "in", "the", "European", "Championship", "on", "Monday", "night.", "The", "fixture", "in", "Saint-Etienne", "will", "prove", "crucial", "in", "deciding", "the", "outcome", "of", "Group", "B", "and", "which", "teams", "qualify", "for", "the", "knockout", "phase", "of", "the", "tournament.", "England", "top", "the", "standings", "with", "four", "points,", "while", "Skrtel’s", "Slovakia", "and", "Wales", "are", "right", "behind", "them", "on", "three.", "Russia", "prop", "up", "the", "table", "with", "a", "point,", "but", "still", "have", "an", "opportunity", "to", "progress.", "And", "with", "the", "Reds", "centre-back", "set", "to", "face", "Anfield", "Sturridge,", "Adam", "Lallana,", "James", "Milner,", "Nathaniel", "Clyne", "Jordan", "he", "insists", "there’ll", "be", "no", "room", "for", "sentiment", "with", "so", "much", "at", "stake.", "Skrtel", "said:", "“It’s", "not", "a", "normal", "situation", "for", "me,", "but", "we’re", "professionals", "and", "it’s", "all", "part", "of", "the", "job.", "Everyone", "will", "be", "giving", "their", "all", "for", "their", "team", "and", "doing", "their", "very", "best", "to", "win", "the", "game.", "“We’ll", "see", "what", "happens.", "I", "know", "them", "and", "they", "know", "me,", "though", "there’s", "more", "to", "the", "match", "than", "just", "that.", "“It’s", "a", "game", "between", "two", "nations,", "and", "England", "have", "got", "one", "of", "the", "best", "teams", "in", "the", "world.", "In", "a", "match", "like", "this", "there", "are", "no", "such", "things", "as", "friends.", "You", "can", "maybe", "be", "friends", "before", "or", "after", "the", "game,", "but", "not", "on", "the", "pitch.”", "England", "go", "into", "the", "game", "buoyed", "by", "Sturridge’s", "last-gasp", "strike", "in", "Thursday’s", "dramatic", "2-1", "victory", "over", "Wales.", "Nevertheless,", "Skrtel", "is", "eager", "to", "stress", "it’s", "not", "just", "the", "threat", "of", "his", "fellow", "Red", "he’ll", "need", "to", "be", "wary", "of.", "He", "added:", "“There’s", "not", "just", "Sturridge,", "Jamie", "Vardy", "or", "Harry", "Kane.", "There", "are", "not", "just", "the", "strikers", "and", "the", "midfielders.", "There", "are", "11", "players", "we", "have", "to", "beat.", "“The", "smaller", "countries", "have", "probably", "got", "more", "team", "spirit,", "especially", "when", "they", "come", "up", "against", "the", "big", "countries.", "“The", "pressure", "will", "be", "on", "the", "English,", "though", "I", "think", "they", "have", "enough", "experience", "to", "be", "able", "to", "handle", "it.", "“It’s", "all", "going", "to", "come", "down", "to", "what", "happens", "on", "the", "pitch,", "and", "I", "think", "we", "can", "reproduce", "our", "performance", "against", "Russia.", "We", "showed", "heart,", "character", "and", "motivation.”" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Stand-off", "started", "after", "officers", "from", "another", "city", "seized", "mining", "equipment", "in", "Chongqing,", "according", "to", "a", "newspaper", "report" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Stand-off", "started", "after", "officers", "from", "another", "city", "seized", "mining", "equipment", "in", "Chongqing,", "according", "to", "a", "newspaper", "report" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Most", "English-speaking", "adults", "know", "intuitively", "that", "the", "word", "blackmail", "can", "be", "either", "a", "noun", "or", "a", "verb—and", "that", "the", "word", "shows", "up", "in", "conversation", "less", "frequently", "than", "does", "either", "black", "or", "mail.", "We", "also", "know,", "from", "direct", "experience", "or", "Law", "and", "Order", "reruns,", "quite", "a", "bit", "about", "how", "blackmail", "works.", "There", "are", "the", "tools", "of", "the", "trade", "(an", "incriminating", "photograph,", "letter,", "or", "recorded", "conversation),", "the", "usual", "suspects", "(a", "jilted", "lover,", "a", "resentful", "employee),", "and", "the", "victims", "(wealthy", "politicians,", "wealthy", "anyone).", "And", "since", "the", "more", "a", "sentence", "fits", "our", "expectations", "about", "it,", "the", "easier", "it", "is", "for", "us", "to", "comprehend,", "we’re", "generally", "faster", "to", "understand", "a", "sentence", "like", "The", "jilted", "lover", "used", "a", "photograph", "to", "blackmail", "the", "wealthy", "politician", "than", "a", "sentence", "like", "The", "doting", "grandmother", "used", "a", "fork", "to", "blackmail", "the", "sleepy", "child.", "But", "some", "psychologists", "and", "linguists", "have", "suggested", "that", "as", "well", "as", "storing", "knowledge", "about", "the", "likelihood", "of", "anyone", "blackmailing", "a", "sleepy", "child,", "we", "may", "also", "have—and", "indeed", "favor—knowledge", "about", "the", "types", "of", "people", "or", "objects", "that", "absolutely", "cannot", "be", "blackmailed:", "namely", "non-sentient", "beings.", "A", "few", "years", "ago,", "Tessa", "Warren", "and", "Kerry", "McConnell,", "researchers", "at", "the", "University", "of", "Pittsburgh,", "presented", "undergraduates", "with", "sentences", "of", "three", "different", "types:", "those", "that", "were", "both", "possible", "and", "plausible", "(e.g.,", "The", "man", "used", "a", "strainer", "to", "dry", "the", "thin", "spaghetti", "yesterday", "evening),", "those", "that", "were", "possible", "but", "not", "plausible", "(The", "man", "used", "a", "blow", "dryer", "to", "dry", "the", "thin", "spaghetti", "yesterday", "evening),", "and", "sentences", "that", "were", "both", "impossible", "and", "implausible", "(The", "man", "used", "a", "photo", "to", "blackmail", "the", "thin", "spaghetti", "yesterday", "evening).", "Although", "a", "separate", "group", "of", "undergraduates", "had", "rated", "the", "latter", "two", "sentence", "types", "as", "equally", "implausible,", "the", "impossible", "sentences", "were", "quicker", "to", "disrupt", "participants", "than", "were", "the", "merely", "implausible", "ones.", "The", "researchers", "take", "this", "as", "evidence", "that", "we", "store", "selectional", "restrictions", "limiting", "who", "or", "what", "can", "appear", "as", "a", "direct", "object", "for", "any", "given", "verb", "and,", "furthermore,", "that", "we", "apply", "these", "restrictions", "earlier", "than", "we", "apply", "our", "everyday", "knowledge", "about", "the", "world.", "In", "a", "sense,", "the", "argument", "goes,", "we", "can", "understand", "the", "“wrongness”", "of", "blackmailing", "a", "nonliving", "creature", "before", "we’ve", "considered", "the", "event", "in", "its", "entirety.", "To", "me,", "an", "interesting", "question", "is", "why", "selectional", "restrictions", "would", "be", "helpful", "for", "readers", "or", "listeners.", "On", "the", "one", "hand,", "they", "could", "help", "in", "immediately", "noting", "mismatches", "between", "a", "verb", "and", "its", "direct", "object:", "why", "waste", "precious", "mental", "resources", "on", "the", "rest", "of", "the", "sentence", "when", "it", "so", "obviously", "will", "prove", "meaningless?", "But", "on", "the", "other", "hand,", "speed", "often", "comes", "with", "inflexibility,", "and", "the", "world", "is", "a", "funny", "place.", "We’re", "used", "to", "adapting", "to", "otherwise", "extraordinary", "circumstances:", "plenty", "of", "studies", "suggest", "that", "contextualizing", "even", "the", "strangest", "sentence", "is", "enough", "to", "make", "it", "seem", "perfectly", "fine", "to", "us.", "(For", "proof,", "see", "the", "episode", "of", "the", "television", "show", "Black", "Adder", "called", "“Beer.”)", "Say,", "for", "instance,", "that", "you", "are", "watching", "a", "play", "geared", "toward", "teaching", "a", "young", "audience", "about", "the", "food", "pyramid.", "Actors", "are", "dressed", "as", "apples,", "bananas,", "broccoli,", "and", "fistfuls", "of", "raw", "spaghetti.", "Of", "the", "two", "actors", "dressed", "as", "spaghetti,", "one", "is", "rather", "heavy.", "The", "other", "is", "thin.", "Might", "the", "thin", "spaghetti", "then", "be", "a", "sentient,", "blackmailable", "being?", "Has", "our", "impossible", "sentence", "suddenly", "become", "possible?", "Has", "it", "become,", "if", "not", "plausible,", "at", "least", "…", "okay?" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Most", "English-speaking", "adults", "know", "intuitively", "that", "the", "word", "blackmail", "can", "be", "either", "a", "noun", "or", "a", "verb—and", "that", "the", "word", "shows", "up", "in", "conversation", "less", "frequently", "than", "does", "either", "black", "or", "mail.", "We", "also", "know,", "from", "direct", "experience", "or", "Law", "and", "Order", "reruns,", "quite", "a", "bit", "about", "how", "blackmail", "works.", "There", "are", "the", "tools", "of", "the", "trade", "(an", "incriminating", "photograph,", "letter,", "or", "recorded", "conversation),", "the", "usual", "suspects", "(a", "jilted", "lover,", "a", "resentful", "employee),", "and", "the", "victims", "(wealthy", "politicians,", "wealthy", "anyone).", "And", "since", "the", "more", "a", "sentence", "fits", "our", "expectations", "about", "it,", "the", "easier", "it", "is", "for", "us", "to", "comprehend,", "we’re", "generally", "faster", "to", "understand", "a", "sentence", "like", "The", "jilted", "lover", "used", "a", "photograph", "to", "blackmail", "the", "wealthy", "politician", "than", "a", "sentence", "like", "The", "doting", "grandmother", "used", "a", "fork", "to", "blackmail", "the", "sleepy", "child.", "But", "some", "psychologists", "and", "linguists", "have", "suggested", "that", "as", "well", "as", "storing", "knowledge", "about", "the", "likelihood", "of", "anyone", "blackmailing", "a", "sleepy", "child,", "we", "may", "also", "have—and", "indeed", "favor—knowledge", "about", "the", "types", "of", "people", "or", "objects", "that", "absolutely", "cannot", "be", "blackmailed:", "namely", "non-sentient", "beings.", "A", "few", "years", "ago,", "Tessa", "Warren", "and", "Kerry", "McConnell,", "researchers", "at", "the", "University", "of", "Pittsburgh,", "presented", "undergraduates", "with", "sentences", "of", "three", "different", "types:", "those", "that", "were", "both", "possible", "and", "plausible", "(e.g.,", "The", "man", "used", "a", "strainer", "to", "dry", "the", "thin", "spaghetti", "yesterday", "evening),", "those", "that", "were", "possible", "but", "not", "plausible", "(The", "man", "used", "a", "blow", "dryer", "to", "dry", "the", "thin", "spaghetti", "yesterday", "evening),", "and", "sentences", "that", "were", "both", "impossible", "and", "implausible", "(The", "man", "used", "a", "photo", "to", "blackmail", "the", "thin", "spaghetti", "yesterday", "evening).", "Although", "a", "separate", "group", "of", "undergraduates", "had", "rated", "the", "latter", "two", "sentence", "types", "as", "equally", "implausible,", "the", "impossible", "sentences", "were", "quicker", "to", "disrupt", "participants", "than", "were", "the", "merely", "implausible", "ones.", "The", "researchers", "take", "this", "as", "evidence", "that", "we", "store", "selectional", "restrictions", "limiting", "who", "or", "what", "can", "appear", "as", "a", "direct", "object", "for", "any", "given", "verb", "and,", "furthermore,", "that", "we", "apply", "these", "restrictions", "earlier", "than", "we", "apply", "our", "everyday", "knowledge", "about", "the", "world.", "In", "a", "sense,", "the", "argument", "goes,", "we", "can", "understand", "the", "“wrongness”", "of", "blackmailing", "a", "nonliving", "creature", "before", "we’ve", "considered", "the", "event", "in", "its", "entirety.", "To", "me,", "an", "interesting", "question", "is", "why", "selectional", "restrictions", "would", "be", "helpful", "for", "readers", "or", "listeners.", "On", "the", "one", "hand,", "they", "could", "help", "in", "immediately", "noting", "mismatches", "between", "a", "verb", "and", "its", "direct", "object:", "why", "waste", "precious", "mental", "resources", "on", "the", "rest", "of", "the", "sentence", "when", "it", "so", "obviously", "will", "prove", "meaningless?", "But", "on", "the", "other", "hand,", "speed", "often", "comes", "with", "inflexibility,", "and", "the", "world", "is", "a", "funny", "place.", "We’re", "used", "to", "adapting", "to", "otherwise", "extraordinary", "circumstances:", "plenty", "of", "studies", "suggest", "that", "contextualizing", "even", "the", "strangest", "sentence", "is", "enough", "to", "make", "it", "seem", "perfectly", "fine", "to", "us.", "(For", "proof,", "see", "the", "episode", "of", "the", "television", "show", "Black", "Adder", "called", "“Beer.”)", "Say,", "for", "instance,", "that", "you", "are", "watching", "a", "play", "geared", "toward", "teaching", "a", "young", "audience", "about", "the", "food", "pyramid.", "Actors", "are", "dressed", "as", "apples,", "bananas,", "broccoli,", "and", "fistfuls", "of", "raw", "spaghetti.", "Of", "the", "two", "actors", "dressed", "as", "spaghetti,", "one", "is", "rather", "heavy.", "The", "other", "is", "thin.", "Might", "the", "thin", "spaghetti", "then", "be", "a", "sentient,", "blackmailable", "being?", "Has", "our", "impossible", "sentence", "suddenly", "become", "possible?", "Has", "it", "become,", "if", "not", "plausible,", "at", "least", "…", "okay?" ] ] ]
[ [ "en" ] ]
[ "mono", "mono" ]
[ [ "Overall,", "the", "manifestos", "confirm", "that", "all", "parties", "are", "unwilling", "to", "face", "up", "to", "the", "political", "problems", "they", "perceive", "would", "follow", "if", "they", "advocated", "solutions", "that", "might", "effectively", "address", "the", "crisis", "of", "housing", "supply.", "The", "illness", "is", "real", "but", "all", "that", "is", "on", "offer", "is", "snake", "activities", "treating", "some", "symptoms", "but", "not", "the", "underlying", "causes", "and", "–", "paradoxically", "–", "having", "the", "net", "effect", "of", "making", "the", "housing", "crisis", "worse,", "writes", "Paul", "Cheshire.", "All", "the", "party", "manifestos", "are", "published", "now.", "All", "agree", "there", "is", "a", "housing", "crisis.", "The", "most", "recent", "data", "for", "housing", "starts", "in", "England", "show", "a", "fall", "of", "19", "per", "cent", "in", "the", "last", "quarter", "of", "2014", "compared", "to", "the", "post-2008", "high", "or", "the", "2nd", "quarter", "of", "2014;", "and", "completions", "and", "planning", "applications", "have", "been", "flat-lining", "since", "2009.", "The", "latest", "English", "Housing", "Survey", "Headlines", "showed", "a", "continuing", "rise", "in", "age", "for", "first", "time", "buyers", "and", "that", "the", "proportion", "of", "25", "to", "34", "year", "olds", "who", "were", "owner", "occupiers", "had", "fallen", "from", "59", "to", "36", "per", "cent", "over", "10", "years;", "and", "for", "the", "first", "time", "ever,", "more", "owner", "occupiers", "did", "not", "have", "mortgages", "than", "did.", "In", "other", "words", "all", "the", "evidence", "shows", "that", "house", "building", "is", "not", "significantly", "rising", "from", "what", "was", "a", "100-year", "peacetime", "low", "in", "2010,", "that", "the", "supply", "and", "affordability", "crisis", "continues", "–", "even", "gets", "worse", "–", "and", "the", "redistribution", "of", "housing", "wealth", "to", "the", "elderly", "continues.", "A", "CentrePiece", "article", "last", "year", "explained", "that", "there", "had", "been", "a", "shortfall", "of", "building", "during", "the", "past", "20", "years", "of", "between", "1.6", "to", "2.3", "million", "and", "far", "too", "many", "of", "the", "houses", "that", "had", "been", "built", "were", "in", "the", "wrong", "places", "or", "the", "wrong", "type", "to", "satisfy", "demand.", "But", "–", "even", "worse", "–", "that", "the", "crisis", "was", "self-inflicted", "by", "longstanding", "policies.", "Now", "we", "have", "Alice", "in", "Wonderland", "proposals:", "solutions", "that", "require", "us", "to", "believe", "six", "impossible", "things", "before", "breakfast", "and", "that", "words", "mean", "exactly", "what", "the", "manifestos", "say", "–", "not", "what", "they", "really", "mean.", "This", "will", "not", "build", "houses.", "Nor", "will", "promising", "to", "build", "200,000", "new", "houses", "a", "year", "(Labour),", "230,000", "starter", "homes", "(Conservative)", "or", "–", "any", "advance", "on", "200,000?", "Yes,", "300,000", "a", "year", "(Lib", "Dem).", "Targets", "and", "promises", "do", "not", "build", "houses.", "The", "experience", "of", "London", "demonstrates", "this.", "Since", "2004", "housing", "targets", "for", "London", "have", "risen", "from", "less", "than", "20,000", "to", "42,000.", "There", "was", "a", "slight", "upturn", "in", "actual", "building", "in", "the", "boom", "conditions", "of", "2004/05", "to", "24,000.", "Since", "then,", "as", "targets", "have", "risen,", "so", "building", "fallen.", "In", "2013/14", "completions", "dipped", "to", "less", "than", "18,000.", "To", "build", "houses", "one", "has", "to", "have", "land", "to", "put", "them", "on,", "a", "realistic", "diagnosis", "of", "the", "underlying", "causes", "and", "mechanisms", "for", "delivering", "them.", "Just", "raising", "targets", "or", "promising", "more", "houses", "simply", "means", "a", "larger", "shortfall", "between", "promise", "and", "delivery", "and", "an", "ever", "increasing", "unaffordability", "of", "housing.", "Because", "the", "problem", "is", "the", "supply", "side.", "Urban", "containment", "boundaries", "were", "set", "in", "1955", "and", "the", "area", "of", "greenbelt", "has", "greatly", "expanded", "since", "then.", "London’s", "is", "now", "more", "than", "3", "times", "the", "area", "of", "the", "GLA", "(and", "22", "per", "cent", "of", "the", "GLA", "is", "Green", "Belt);", "Oxford’s", "Green", "Belt", "is", "more", "than", "7", "times", "the", "area", "of", "Oxford.", "Oxford", "is", "now", "the", "least", "affordable", "city", "for", "housing", "in", "the", "UK", "and", "the", "city", "is", "surrounded", "by", "CPRE", "hotbeds", "telling", "them", "they", "cannot", "build", "here!", "It", "is", "very", "difficult", "to", "build", "upwards", "because", "of", "planning", "controls", "and", "every", "proposal", "to", "develop", "becomes", "an", "exhausting", "struggle", "because", "each", "decision", "is", "politicised", "by", "our", "mechanism", "of", "‘development", "control’.", "Countries", "which", "do", "it", "more", "sensibly", "have", "plans", "and", "what", "the", "plan", "and", "building", "regulations", "permit,", "can", "be", "built.", "Of", "the", "political", "manifestos", "perhaps", "the", "Tories’", "is", "the", "most", "shameless.", "Senior", "Conservatives", "are", "not", "economically", "illiterate", "so", "they", "really", "know", "better.", "But", "what", "they", "are", "promising", "is", "more", "demand", "boosting:", "not", "only", "help", "to", "buy", "but", "extending", "the", "right", "to", "buy", "to", "houses", "no", "government", "owns;", "even", "major", "property", "agencies", "have", "condemned", "this", "proposal.", "Then", "the", "wheeze", "is", "to", "build", "200,000", "‘Starter", "Homes’", "to", "be", "sold", "to", "under-40", "first", "time", "buyers", "at", "a", "20", "per", "cent", "discount", "(from", "what?);", "and", "a", "London", "Land", "Commission", "to", "magically", "find", "tracts", "of", "Brownfield", "land", "that", "have", "presumably", "been", "hiding", "behind", "railway", "embankments", "for", "the", "past", "15", "years;", "and", "more", "powers", "to", "Local", "Authorities", "to", "resist", "building", "on", "the", "Green", "Belt.", "The", "Starter", "Homes,", "the", "small", "print", "reveals,", "will", "be", "either", "at", "the", "expense", "of", "‘affordable’", "housing", "built", "as", "part", "of", "planning", "deals", "or", "at", "the", "expense", "of", "‘unviable’", "commercial", "development.", "So", "not", "much", "net", "new", "construction", "there.", "One", "can", "be", "entirely", "confident", "that", "the", "Conservative", "proposals", "will", "do", "nothing", "to", "increase", "the", "number", "of", "houses", "built", "net.", "This", "means", "their", "proposals", "will", "make", "housing", "even", "less", "affordable", "because", "they", "will", "subsidise", "demand", "but", "not", "increase", "supply.", "UKIP’s", "proposals", "are", "even", "less", "helpful.", "But", "then", "fair", "enough:", "one", "should", "expect", "less", "of", "UKIP", "in", "terms", "of", "sensible", "policies", "designed", "to", "tackle", "real", "problems.", "UKIP", "want", "to", "revise", "the", "2012", "National", "Planning", "Policy", "Framework", "(no", "evidence", "this", "has", "increased", "house", "building", "but", "it", "does", "offer" ], [ "some", "slight", "hope)", "to", "make", "it", "more", "difficult", "to", "build,", "increase", "the", "extent", "of", "Green", "Belts", "and", "extend", "the", "right", "to", "buy;", "but", "to", "British", "Nationals", "only.", "Both", "the", "Lib", "Dems", "and", "Labour", "are,", "amongst", "other", "things", "proposing", "to", "build", "more", "houses.", "The", "trouble", "is", "neither", "really", "explains", "how", "it", "can", "be", "done", "nor", "sets", "out", "practical", "mechanisms", "to", "do", "it.", "So", "essentially", "they", "offer", "acts", "of", "faith.", "The", "Lib", "Dems", "10", "new", "Cities", "on", "a", "revived", "Oxford-Cambridge", "rail", "link.", "But", "apart", "from", "some", "general", "statements", "about", "capturing", "land", "value", "uplift", "to", "pay", "for", "infrastructure,", "no", "mechanism", "is", "proposed", "for", "getting", "round", "the", "entrenched", "powers", "of", "opposition", "the", "current", "planning", "system", "provides", "anyone", "who", "opposes", "building.", "Their", "other", "proposals", "either", "boost", "demand", "without", "adding", "to", "supply", "(Help", "to", "Rent)", "or", "have", "an", "old", "fashioned", "whiff", "of", "anti-landlordism", "and", "anti-speculator", "mindsets.", "They", "propose", "giving", "even", "more", "power", "to", "local", "communities", "to", "determine", "development.", "Without", "radical", "complementary", "changes", "to", "taxation,", "a", "new", "system", "to", "guarantee", "new", "houses", "come", "with", "additional", "infrastructure", "and", "losses", "are", "properly", "compensated", "this", "will", "strengthen", "the", "power", "of", "NIMBYism", "even", "more.", "A", "problem", "of", "just", "local", "decision", "making", "is", "that", "it", "empowers", "those", "who", "bear", "the", "costs", "of", "development", "(real", "–", "noise", "and", "dirt", "during", "construction,", "loss", "of", "views", "and", "more", "congestion", "–", "in", "the", "absence", "of", "new", "infrastructure", "–", "after", "the", "new", "houses", "are", "built)", "but", "disenfranchises", "those", "who", "stand", "to", "benefit", "–", "would-be", "residents", "or", "owners.", "The", "Lib", "Dem", "proposal", "to", "pilot", "land", "value", "taxation", "is", "potentially", "helpful", "but", "another", "proposal", "–", "to", "make", "planning", "decisions", "even", "more", "complex", "by", "inventing", "conditions", "requiring", "occupation", "after", "construction", "–", "are", "not.", "How", "on", "earth", "could", "that", "be", "imposed?", "Suppose", "the", "market", "turns", "down", "unexpectedly", "or", "the", "developer", "just", "gets", "the", "local", "market", "wrong?", "It", "will", "add", "yet", "more", "risk", "to", "the", "development", "process", "so", "cause", "otherwise", "viable", "projects", "to", "slip", "from", "viability.", "Labour", "did", "have", "the", "foresight", "to", "commission", "the", "Lyons", "Review", "of", "Housing", "but", "their", "manifesto", "conveys", "the", "impression", "they", "almost", "wish", "they", "had", "not.", "They", "promise", "to", "increase", "house", "building", "to", "200,000", "a", "year", "by", "2020", "but", "there", "is", "no", "mention", "of", "how", "to", "increase", "land", "supply", "or", "funding", "renewed", "public", "sector", "house", "building.", "Instead", "there", "is", "coverage", "of", "what", "seems", "like", "an", "ill-thought", "out", "proposal", "to", "re-channel", "finance", "from", "Help", "to", "Buy", "ISAs;", "how", "to", "stop", "‘land", "banking’", "and", "‘speculation’", "by", "introducing", "‘use", "it", "or", "lose’", "planning", "permission", "and", "double", "taxation", "on", "empty", "homes.", "Then", "there", "is", "a", "proposal", "to", "tighten", "controls", "on", "landlords", "by", "mandating", "3-year", "tenancies", "and", "a", "national", "register", "of", "private", "landlords.", "The", "most", "explicit", "proposal", "on", "the", "supply", "side", "is", "to", "‘start", "to", "build", "a", "new", "generation", "But", "while", "Lyons", "was", "explicit", "with", "details", "and", "delivery", "mechanisms,", "the", "manifesto", "is", "not.", "Similarly", "the", "Lyons", "Review", "had", "an", "informed", "analysis", "of", "the", "underlying", "problem", "–", "our", "self-imposed", "shortage", "of", "development", "land;", "the", "difficulty", "of", "getting", "across", "boundary", "agreements", "(see", "the", "Oxford", "case)", "and", "how", "over", "simplistic", "is", "the", "idea", "of", "relying", "on", "Brownfield", "land.", "There", "is", "no", "mention", "of", "these", "serious", "points", "in", "the", "Labour", "manifesto.", "Overall,", "the", "manifestos", "confirm", "that", "all", "parties", "are", "unwilling", "to", "face", "up", "to", "the", "political", "problems", "they", "perceive", "would", "follow", "if", "they", "advocated", "solutions", "that", "might", "effectively", "address", "the", "crisis", "of", "housing", "supply.", "The", "illness", "is", "real", "but", "all", "that", "is", "on", "offer", "is", "snake", "activities", "treating", "some", "symptoms", "but", "not", "the", "underlying", "causes", "and", "–", "paradoxically", "–", "having", "the", "net", "effect", "of", "making", "the", "crisis", "worse.", "Perhaps", "that", "is", "just", "a", "little", "harsh", "on", "Labour", "but", "I", "did", "just", "hear", "their", "spokesperson", "offering", "the", "party’s", "solutions", "and", "the", "whole", "emphasis", "was", "on", "how", "the", "‘market", "was", "not", "working", "so", "the", "planning", "system", "needed", "to", "be", "tougher’.", "Not", "so:", "the", "problem", "IS", "the", "planning", "system.", "It", "needs", "root", "and", "branch", "reform", "but", "that", "would", "take", "serious", "political", "courage.", "Fake", "solutions", "will", "not", "work:", "in", "the", "case", "of", "many", "of", "those", "on", "offer,", "including", "discouraging", "landlords,", "making", "an", "already", "mind-boggling", "planning", "system", "yet", "tougher", "and", "more", "complex", "or", "boosting", "demand", "when", "the", "problem", "is", "supply,", "the", "crisis", "will", "get", "worse.", "Indeed", "the", "housing", "crisis", "will", "get", "worse", "anyway", "without", "radical", "reform", "of", "the", "planning", "system,", "and", "local", "taxes", "and", "property", "taxes;", "and", "incentives.", "Note:", "This", "article", "gives", "the", "views", "of", "the", "author,", "and", "not", "the", "position", "of", "the", "General", "Election", "blog,", "nor", "of", "the", "London", "School", "of", "Economics.", "Please", "read", "our", "comments", "policy", "before", "posting.", "About", "the", "Author", "Paul", "Cheshire", "is", "Professor", "Economic", "Geography", "at", "the", "LSE." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "nl", "nl", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "en", "en", "en", "en", "en" ] ]
[ [ [ "Overall,", "the", "manifestos", "confirm", "that", "all", "parties", "are", "unwilling", "to", "face", "up", "to", "the", "political", "problems", "they", "perceive", "would", "follow", "if", "they", "advocated", "solutions", "that", "might", "effectively", "address", "the", "crisis", "of", "housing", "supply.", "The", "illness", "is", "real", "but", "all", "that", "is", "on", "offer", "is", "snake", "activities", "treating", "some", "symptoms", "but", "not", "the", "underlying", "causes", "and", "–", "paradoxically", "–", "having", "the", "net", "effect", "of", "making", "the", "housing", "crisis", "worse,", "writes", "Paul", "Cheshire.", "All", "the", "party", "manifestos", "are", "published", "now.", "All", "agree", "there", "is", "a", "housing", "crisis.", "The", "most", "recent", "data", "for", "housing", "starts", "in", "England", "show", "a", "fall", "of", "19", "per", "cent", "in", "the", "last", "quarter", "of", "2014", "compared", "to", "the", "post-2008", "high", "or", "the", "2nd", "quarter", "of", "2014;", "and", "completions", "and", "planning", "applications", "have", "been", "flat-lining", "since", "2009.", "The", "latest", "English", "Housing", "Survey", "Headlines", "showed", "a", "continuing", "rise", "in", "age", "for", "first", "time", "buyers", "and", "that", "the", "proportion", "of", "25", "to", "34", "year", "olds", "who", "were", "owner", "occupiers", "had", "fallen", "from", "59", "to", "36", "per", "cent", "over", "10", "years;", "and", "for", "the", "first", "time", "ever,", "more", "owner", "occupiers", "did", "not", "have", "mortgages", "than", "did.", "In", "other", "words", "all", "the", "evidence", "shows", "that", "house", "building", "is", "not", "significantly", "rising", "from", "what", "was", "a", "100-year", "peacetime", "low", "in", "2010,", "that", "the", "supply", "and", "affordability", "crisis", "continues", "–", "even", "gets", "worse", "–", "and", "the", "redistribution", "of", "housing", "wealth", "to", "the", "elderly", "continues.", "A", "CentrePiece", "article", "last", "year", "explained", "that", "there", "had", "been", "a", "shortfall", "of", "building", "during", "the", "past", "20", "years", "of", "between", "1.6", "to", "2.3", "million", "and", "far", "too", "many", "of", "the", "houses", "that", "had", "been", "built", "were", "in", "the", "wrong", "places", "or", "the", "wrong", "type", "to", "satisfy", "demand.", "But", "–", "even", "worse", "–", "that", "the", "crisis", "was", "self-inflicted", "by", "longstanding", "policies.", "Now", "we", "have", "Alice", "in", "Wonderland", "proposals:", "solutions", "that", "require", "us", "to", "believe", "six", "impossible", "things", "before", "breakfast", "and", "that", "words", "mean", "exactly", "what", "the", "manifestos", "say", "–", "not", "what", "they", "really", "mean.", "This", "will", "not", "build", "houses.", "Nor", "will", "promising", "to", "build", "200,000", "new", "houses", "a", "year", "(Labour),", "230,000", "starter", "homes", "(Conservative)", "or", "–", "any", "advance", "on", "200,000?", "Yes,", "300,000", "a", "year", "(Lib", "Dem).", "Targets", "and", "promises", "do", "not", "build", "houses.", "The", "experience", "of", "London", "demonstrates", "this.", "Since", "2004", "housing", "targets", "for", "London", "have", "risen", "from", "less", "than", "20,000", "to", "42,000.", "There", "was", "a", "slight", "upturn", "in", "actual", "building", "in", "the", "boom", "conditions", "of", "2004/05", "to", "24,000.", "Since", "then,", "as", "targets", "have", "risen,", "so", "building" ], [ "In", "2013/14", "completions", "dipped", "to", "less", "than", "18,000.", "To", "build", "houses", "one", "has", "to", "have", "land", "to", "put", "them", "on,", "a", "realistic", "diagnosis", "of", "the", "underlying", "causes", "and", "mechanisms", "for", "delivering", "them.", "Just", "raising", "targets", "or", "promising", "more", "houses", "simply", "means", "a", "larger", "shortfall", "between", "promise", "and", "delivery", "and", "an", "ever", "increasing", "unaffordability", "of", "housing.", "Because", "the", "problem", "is", "the", "supply", "side.", "Urban", "containment", "boundaries", "were", "set", "in", "1955", "and", "the", "area", "of", "greenbelt", "has", "greatly", "expanded", "since", "then.", "London’s", "is", "now", "more", "than", "3", "times", "the", "area", "of", "the", "GLA", "(and", "22", "per", "cent", "of", "the", "GLA", "is", "Green", "Belt);", "Oxford’s", "Green", "Belt", "is", "more", "than", "7", "times", "the", "area", "of", "Oxford.", "Oxford", "is", "now", "the", "least", "affordable", "city", "for", "housing", "in", "the", "UK", "and", "the", "city", "is", "surrounded", "by", "CPRE", "hotbeds", "telling", "them", "they", "cannot", "build", "here!", "It", "is", "very", "difficult", "to", "build", "upwards", "because", "of", "planning", "controls", "and", "every", "proposal", "to", "develop", "becomes", "an", "exhausting", "struggle", "because", "each", "decision", "is", "politicised", "by", "our", "mechanism", "of", "‘development", "control’.", "Countries", "which", "do", "it", "more", "sensibly", "have", "plans", "and", "what", "the", "plan", "and", "building", "regulations", "permit,", "can", "be", "built.", "Of", "the", "political", "manifestos", "perhaps", "the", "Tories’", "is", "the", "most", "shameless.", "Senior", "Conservatives", "are", "not", "economically", "illiterate", "so", "they", "really", "know", "better.", "But", "what", "they", "are", "promising", "is", "more", "demand", "boosting:", "not", "only", "help", "to", "buy", "but", "extending", "the", "right", "to", "buy", "to", "houses", "no", "government", "owns;", "even", "major", "property", "agencies", "have", "condemned", "this", "proposal.", "Then", "the", "wheeze", "is", "to", "build", "200,000", "‘Starter", "Homes’", "to", "be", "sold", "to", "under-40", "first", "time", "buyers", "at", "a", "20", "per", "cent", "discount", "(from", "what?);", "and", "a", "London", "Land", "Commission", "to", "magically", "find", "tracts", "of", "Brownfield", "land", "that", "have", "presumably", "been", "hiding", "behind", "railway", "embankments", "for", "the", "past", "15", "years;", "and", "more", "powers", "to", "Local", "Authorities", "to", "resist", "building", "on", "the", "Green", "Belt.", "The", "Starter", "Homes,", "the", "small", "print", "reveals,", "will", "be", "either", "at", "the", "expense", "of", "‘affordable’", "housing", "built", "as", "part", "of", "planning", "deals", "or", "at", "the", "expense", "of", "‘unviable’", "commercial", "development.", "So", "not", "much", "net", "new", "construction", "there.", "One", "can", "be", "entirely", "confident", "that", "the", "Conservative", "proposals", "will", "do", "nothing", "to", "increase", "the", "number", "of", "houses", "built", "net.", "This", "means", "their", "proposals", "will", "make", "housing", "even", "less", "affordable", "because", "they", "will", "subsidise", "demand", "but", "not", "increase", "supply.", "UKIP’s", "proposals", "are", "even", "less", "helpful.", "But", "then", "fair", "enough:", "one", "should", "expect", "less", "of", "UKIP", "in", "terms", "of", "sensible", "policies", "designed", "to", "tackle", "real", "problems.", "UKIP", "want", "to", "revise", "the", "2012", "National", "Planning", "Policy", "Framework", "(no", "evidence", "this", "has", "increased", "house", "building", "but", "it", "does", "offer" ] ], [ [ "some", "slight", "hope)", "to", "make", "it", "more", "difficult", "to", "build,", "increase", "the", "extent", "of", "Green", "Belts", "and", "extend", "the", "right", "to", "buy;", "but", "to", "British", "Nationals", "only.", "Both", "the", "Lib", "Dems", "and", "Labour", "are,", "amongst", "other", "things", "proposing", "to", "build", "more", "houses.", "The", "trouble", "is", "neither", "really", "explains", "how", "it", "can", "be", "done", "nor", "sets", "out", "practical", "mechanisms", "to", "do", "it.", "So", "essentially", "they", "offer", "acts", "of", "faith.", "The", "Lib", "Dems", "10", "new", "Cities", "on", "a", "revived", "Oxford-Cambridge", "rail", "link.", "But", "apart", "from", "some", "general", "statements", "about", "capturing", "land", "value", "uplift", "to", "pay", "for", "infrastructure,", "no", "mechanism", "is", "proposed", "for", "getting", "round", "the", "entrenched", "powers", "of", "opposition", "the", "current", "planning", "system", "provides", "anyone", "who", "opposes", "building.", "Their", "other", "proposals", "either", "boost", "demand", "without", "adding", "to", "supply", "(Help", "to", "Rent)", "or", "have", "an", "old", "fashioned", "whiff", "of", "anti-landlordism", "and", "anti-speculator", "mindsets.", "They", "propose", "giving", "even", "more", "power", "to", "local", "communities", "to", "determine", "development.", "Without", "radical", "complementary", "changes", "to", "taxation,", "a", "new", "system", "to", "guarantee", "new", "houses", "come", "with", "additional", "infrastructure", "and", "losses", "are", "properly", "compensated", "this", "will", "strengthen", "the", "power", "of", "NIMBYism", "even", "more.", "A", "problem", "of", "just", "local", "decision", "making", "is", "that", "it", "empowers", "those", "who", "bear", "the", "costs", "of", "development", "(real", "–", "noise", "and", "dirt", "during", "construction,", "loss", "of", "views", "and", "more", "congestion", "–", "in", "the", "absence", "of", "new", "infrastructure", "–", "after", "the", "new", "houses", "are", "built)", "but", "disenfranchises", "those", "who", "stand", "to", "benefit", "–", "would-be", "residents", "or", "owners.", "The", "Lib", "Dem", "proposal", "to", "pilot", "land", "value", "taxation", "is", "potentially", "helpful", "but", "another", "proposal", "–", "to", "make", "planning", "decisions", "even", "more", "complex", "by", "inventing", "conditions", "requiring", "occupation", "after", "construction", "–", "are", "not.", "How", "on", "earth", "could", "that", "be", "imposed?", "Suppose", "the", "market", "turns", "down", "unexpectedly", "or", "the", "developer", "just", "gets", "the", "local", "market", "wrong?", "It", "will", "add", "yet", "more", "risk", "to", "the", "development", "process", "so", "cause", "otherwise", "viable", "projects", "to", "slip", "from", "viability.", "Labour", "did", "have", "the", "foresight", "to", "commission", "the", "Lyons", "Review", "of", "Housing", "but", "their", "manifesto", "conveys", "the", "impression", "they", "almost", "wish", "they", "had", "not.", "They", "promise", "to", "increase", "house", "building", "to", "200,000", "a", "year", "by", "2020", "but", "there", "is", "no", "mention", "of", "how", "to", "increase", "land", "supply", "or", "funding", "renewed", "public", "sector", "house", "building.", "Instead", "there", "is", "coverage", "of", "what", "seems", "like", "an", "ill-thought", "out", "proposal", "to", "re-channel", "finance", "from", "Help", "to", "Buy", "ISAs;", "how", "to", "stop", "‘land", "banking’", "and", "‘speculation’", "by", "introducing", "‘use", "it", "or", "lose’", "planning", "permission", "and", "double", "taxation", "on", "empty", "homes.", "Then", "there", "is", "a", "proposal", "to", "tighten", "controls", "on", "landlords", "by", "mandating", "3-year", "tenancies", "and", "a", "national", "register", "of", "private", "landlords.", "The", "most", "explicit", "proposal", "on", "the", "supply", "side", "is", "to", "‘start", "to", "build", "a", "new", "generation", "But", "while", "Lyons", "was", "explicit", "with", "details", "and", "delivery", "mechanisms,", "the", "manifesto", "is", "not.", "Similarly", "the", "Lyons", "Review", "had", "an", "informed", "analysis", "of", "the", "underlying", "problem", "–", "our", "self-imposed", "shortage", "of", "development", "land;", "the", "difficulty", "of", "getting", "across", "boundary", "agreements", "(see", "the", "Oxford", "case)", "and", "how", "over", "simplistic", "is", "the", "idea", "of", "relying", "on", "Brownfield", "land.", "There", "is", "no", "mention", "of", "these", "serious", "points", "in", "the", "Labour", "manifesto.", "Overall,", "the", "manifestos", "confirm", "that", "all", "parties", "are", "unwilling", "to", "face", "up", "to", "the", "political", "problems", "they", "perceive", "would", "follow", "if", "they", "advocated", "solutions", "that", "might", "effectively", "address", "the", "crisis", "of", "housing", "supply.", "The", "illness", "is", "real", "but", "all", "that", "is", "on", "offer", "is", "snake", "activities", "treating", "some", "symptoms", "but", "not", "the", "underlying", "causes", "and", "–", "paradoxically", "–", "having", "the", "net", "effect", "of", "making", "the", "crisis", "worse.", "Perhaps", "that", "is", "just", "a", "little", "harsh", "on", "Labour", "but", "I", "did", "just", "hear", "their", "spokesperson", "offering", "the", "party’s", "solutions", "and", "the", "whole", "emphasis", "was", "on", "how", "the", "‘market", "was", "not", "working", "so", "the", "planning", "system", "needed", "to", "be", "tougher’.", "Not", "so:", "the", "problem", "IS", "the", "planning", "system.", "It", "needs", "root", "and", "branch", "reform", "but", "that", "would", "take", "serious", "political", "courage.", "Fake", "solutions", "will", "not", "work:", "in", "the", "case", "of", "many", "of", "those", "on", "offer,", "including", "discouraging", "landlords,", "making", "an", "already", "mind-boggling", "planning", "system", "yet", "tougher", "and", "more", "complex", "or", "boosting", "demand", "when", "the", "problem", "is", "supply,", "the", "crisis", "will", "get", "worse.", "Indeed", "the", "housing", "crisis", "will", "get", "worse", "anyway", "without", "radical", "reform", "of", "the", "planning", "system,", "and", "local", "taxes", "and", "property", "taxes;", "and", "incentives.", "Note:", "This", "article", "gives", "the", "views", "of", "the", "author,", "and", "not", "the", "position", "of", "the", "General", "Election", "blog,", "nor", "of", "the", "London", "School", "of", "Economics.", "Please", "read", "our", "comments", "policy", "before", "posting.", "About", "the", "Author", "Paul", "Cheshire", "is", "Professor", "Economic", "Geography", "at", "the", "LSE." ] ] ]
[ [ "en", "en" ], [ "en" ] ]
[ "mono" ]
[ [ "do", "not", "need", "to", "be", "a", "member", "FREE", "You,", "to", "take", "advantage", "of", "the", "generous", "offer.)", "In", "partnership", "with", "the", "State", "Emergency", "Childcare", "Collaborative,", "the", "YMCA", "of", "Metro", "Denver", "is", "offering", "full-day", "childcare.", "The", "program", "is", "for", "critical", "use", "only", "—", "for", "first", "responders,", "medical", "or", "essential", "workers", "who", "need", "childcare", "to", "be", "able", "to", "work", "and", "support", "their", "family.", "During", "this", "program,", "kids", "will", "enjoy", "arts,", "crafts,", "fun", "and", "games,", "movies", "and", "supervision", "from", "experienced,", "expert", "staff.", "The", "community", "organization", "will", "take", "extraordinary", "precautions:", "kids", "will", "sanitize", "hands", "upon", "arrival", "and", "throughout", "the", "day.", "In", "addition,", "the", "staff", "and", "registered", "nurses", "will", "monitor", "children", "and", "look", "for", "symptoms", "of", "COVID-19", "and", "the", "facilities", "will", "be", "cleaned", "throughout", "the", "day.", "Children", "should", "bring", "a", "nonperishable", "lunch.", "The", "emergency", "program", "is", "available", "for", "school", "age", "children", "(ages", "5", "to", "14),", "Monday", "through", "Friday", "from", "6:30", "a.m.", "to", "7", "p.m.", "The", "following", "YMCA", "of", "Metro", "Denver", "locations", "are", "participating:", "Schlessman", "Family", "YMCA", "–", "3901", "E.", "Yale", "Ave.", "in", "Denver", "Susan", "M.", "Duncan", "Family", "YMCA", "–", "6350", "Eldridge", "in", "Arvada", "Teen", "Center", "–", "6295", "S.", "St.,", "#104", "in", "Aurora", "Southwest", "Family", "YMCA", "–", "5181", "W.", "Kenyon", "Blvd.", "in", "Denver", "Glendale", "Sports", "Center", "–", "4500", "E.", "Kentucky", "Ave.", "in", "Glendale", "Early", "Childhood", "Child", "Care", "(6", "weeks", "to", "5", "years)", "is", "available", "at", "the", "Schlessman", "YMCA.", "Parents", "must", "register", "online." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "do", "not", "need", "to", "be", "a", "member", "FREE", "You,", "to", "take", "advantage", "of", "the", "generous", "offer.)", "In", "partnership", "with", "the", "State", "Emergency", "Childcare", "Collaborative,", "the", "YMCA", "of", "Metro", "Denver", "is", "offering", "full-day", "childcare.", "The", "program", "is", "for", "critical", "use", "only", "—", "for", "first", "responders,", "medical", "or", "essential", "workers", "who", "need", "childcare", "to", "be", "able", "to", "work", "and", "support", "their", "family.", "During", "this", "program,", "kids", "will", "enjoy", "arts,", "crafts,", "fun", "and", "games,", "movies", "and", "supervision", "from", "experienced,", "expert", "staff.", "The", "community", "organization", "will", "take", "extraordinary", "precautions:", "kids", "will", "sanitize", "hands", "upon", "arrival", "and", "throughout", "the", "day.", "In", "addition,", "the", "staff", "and", "registered", "nurses", "will", "monitor", "children", "and", "look", "for", "symptoms", "of", "COVID-19", "and", "the", "facilities", "will", "be", "cleaned", "throughout", "the", "day.", "Children", "should", "bring", "a", "nonperishable", "lunch.", "The", "emergency", "program", "is", "available", "for", "school", "age", "children", "(ages", "5", "to", "14),", "Monday", "through", "Friday", "from", "6:30", "a.m.", "to", "7", "p.m.", "The", "following", "YMCA", "of", "Metro", "Denver", "locations", "are", "participating:", "Schlessman", "Family", "YMCA", "–", "3901", "E.", "Yale", "Ave.", "in", "Denver", "Susan", "M.", "Duncan", "Family", "YMCA", "–", "6350", "Eldridge", "in", "Arvada", "Teen", "Center", "–", "6295", "S.", "St.,", "#104", "in", "Aurora", "Southwest", "Family", "YMCA", "–", "5181", "W.", "Kenyon", "Blvd.", "in", "Denver", "Glendale", "Sports", "Center", "–", "4500", "E.", "Kentucky", "Ave.", "in", "Glendale", "Early", "Childhood", "Child", "Care", "(6", "weeks", "to", "5", "years)", "is", "available", "at", "the", "Schlessman", "YMCA.", "Parents", "must", "register", "online." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Share", "this", "article", "on", "LinkedIn", "Ferrari", "Formula", "1", "team", "boss", "Maurizio", "Arrivabene", "says", "he", "will", "not", "\"take", "lessons\"", "from", "Red", "Bull's", "Helmut", "Marko,", "amid", "the", "row", "over", "Sebastian", "Vettel's", "with", "Daniel", "Ricciardo", "in", "Mexico.", "Vettel's", "Ferrari", "and", "Ricciardo's", "Red", "Bull", "collided", "while", "battling", "for", "fourth", "place", "in", "the", "closing", "stages", "of", "Sunday's", "Mexican", "Grand", "Prix,", "with", "Ricciardo", "suggesting", "Vettel", "should", "be", "penalised", "for", "his", "defensive", "driving.", "Red", "Bull", "motorsport", "Marko", "Verstappen", "in", "the", "face", "of", "repeated", "criticism", "for", "moving", "in", "the", "braking", "zones", "while", "defending", "position,", "and", "German", "media", "reported", "that", "Marko", "accused", "Vettel", "of", "similar", "behaviour", "as", "he", "raced", "Ricciardo", "at", "Mexico", "City.", "Vettel", "was", "ultimately", "penalised", "10", "seconds", "for", "his", "driving", "in", "the", "battle,", "dropping", "him", "from", "third", "to", "fifth", "in", "the", "final", "results.", "Arrivabene", "was", "surprised", "by", "the", "decision", "to", "penalise", "his", "driver,", "and", "when", "asked", "for", "his", "view", "of", "the", "incident", "by", "reporters", "after", "the", "race,", "replied:", "\"I", "think", "everybody", "has", "to", "think", "about", "their", "[own]", "problem.", "Accusing", "others", "is", "not", "correct.", "\"I'm", "not", "taking", "lessons", "of", "education", "from", "Helmut", "Marko,", "and", "anybody", "Verstappen", "was", "also", "penalised,", "for", "gaining", "an", "advantage", "by", "running", "off", "the", "circuit", "while", "defending", "third", "place", "from", "Vettel,", "causing", "Vettel", "to", "rant", "furiously", "over", "team", "radio", "and", "tell", "F1", "race", "director", "Charlie", "Whiting", "to", "\"fuck", "off\"", "when", "Verstappen", "refused", "to", "give", "up", "the", "position.", "Verstappen", "described", "Vettel's", "behaviour", "on", "track", "and", "over", "team", "radio", "as", "but", "Vettel", "defended", "his", "reaction", "as", "the", "consequence", "of", "\"emotions", "and", "adrenaline", "pumping", "Arrivabene", "said", "Vettel", "had", "spoken", "to", "Whiting", "to", "clear", "the", "air", "after", "the", "race.", "\"We", "talked", "together,", "me", "and", "Sebastian,", "and", "I", "don't", "have", "to", "tell", "in", "public", "what", "I'm", "doing", "with", "the", "driver,\"", "Arrivabene", "added.", "\"He", "excused", "himself", "[to", "Whiting]", "and", "I'm", "sure", "it's", "not", "going", "to", "happen", "again.\"" ] ]
[ [ "en", "en", "en", "en", "en", "ro", "pt", "pt", "pt", "pt", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "it", "it", "it", "it", "it", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Share", "this", "article", "on", "LinkedIn", "Ferrari", "Formula", "1", "team", "boss", "Maurizio", "Arrivabene", "says", "he", "will", "not", "\"take", "lessons\"", "from", "Red", "Bull's", "Helmut", "Marko,", "amid", "the", "row", "over", "Sebastian", "Vettel's", "with", "Daniel", "Ricciardo", "in", "Mexico.", "Vettel's", "Ferrari", "and", "Ricciardo's", "Red", "Bull", "collided", "while", "battling", "for", "fourth", "place", "in", "the", "closing", "stages", "of", "Sunday's", "Mexican", "Grand", "Prix,", "with", "Ricciardo", "suggesting", "Vettel", "should", "be", "penalised", "for", "his", "defensive", "driving.", "Red", "Bull", "motorsport" ], [ "Verstappen", "in", "the", "face", "of", "repeated", "criticism", "for", "moving", "in", "the", "braking", "zones", "while", "defending", "position,", "and", "German", "media", "reported", "that", "Marko", "accused", "Vettel", "of", "similar", "behaviour", "as", "he", "raced", "Ricciardo", "at", "Mexico", "City.", "Vettel", "was", "ultimately", "penalised", "10", "seconds", "for", "his", "driving", "in", "the", "battle,", "dropping", "him", "from", "third", "to", "fifth", "in", "the", "final", "results.", "Arrivabene", "was", "surprised", "by", "the", "decision", "to", "penalise", "his", "driver,", "and", "when", "asked", "for", "his", "view", "of", "the", "incident", "by", "reporters", "after", "the", "race,", "replied:", "\"I", "think", "everybody", "has", "to", "think", "about", "their", "[own]", "problem.", "Accusing", "others", "is", "not", "correct.", "\"I'm", "not", "taking", "lessons", "of", "education", "from", "Helmut", "Marko,", "and", "anybody", "Verstappen", "was", "also", "penalised,", "for", "gaining", "an", "advantage", "by", "running", "off", "the", "circuit", "while", "defending", "third", "place", "from", "Vettel,", "causing", "Vettel", "to", "rant", "furiously", "over", "team", "radio", "and", "tell", "F1", "race", "director", "Charlie", "Whiting", "to", "\"fuck", "off\"", "when", "Verstappen", "refused", "to", "give", "up", "the", "position.", "Verstappen", "described", "Vettel's", "behaviour", "on", "track", "and", "over", "team", "radio", "as", "but", "Vettel", "defended", "his", "reaction", "as", "the", "consequence", "of", "\"emotions", "and", "adrenaline", "pumping", "Arrivabene", "said", "Vettel", "had", "spoken", "to", "Whiting", "to", "clear", "the", "air", "after", "the", "race.", "\"We", "talked", "together,", "me", "and", "Sebastian,", "and", "I", "don't", "have", "to", "tell", "in", "public", "what", "I'm", "doing", "with", "the", "driver,\"", "Arrivabene", "added.", "\"He", "excused", "himself", "[to", "Whiting]", "and", "I'm", "sure", "it's", "not", "going", "to", "happen", "again.\"" ] ] ]
[ [ "en", "en" ] ]
[ "mono" ]
[ [ "Hillary", "Clinton", "slammed", "President", "Donald", "Trump", "in", "a", "tweet", "on", "Sunday", "just", "ahead", "of", "his", "much-anticipated", "meeting", "with", "Russian", "Vladimir", "Putin", "in", "Helsinki.", "Great", "World", "Cup.", "Question", "for", "President", "Trump", "as", "he", "meets", "Putin:", "Do", "you", "know", "which", "team", "you", "play", "for?", "—", "Hillary", "Clinton", "(@HillaryClinton)", "16,", "2018", "Clinton", "sent", "the", "tweet", "soon", "after", "France", "beat", "Croatia", "4-2", "to", "win", "the", "2018", "World", "in", "Sochi,", "Russia,", "and", "after", "Trump", "had", "put", "out", "a", "tweet", "himself", "in", "which", "he", "congratulated", "Putin", "on", "the", "tournament.", "Congratulations", "to", "France,", "who", "played", "extraordinary", "soccer,", "on", "winning", "the", "2018", "World", "Cup.", "Additionally,", "congratulations", "to", "President", "Putin", "and", "Russia", "for", "putting", "on", "a", "truly", "great", "World", "Cup", "Tournament", "--", "one", "of", "the", "best", "ever!", "—", "(@realDonaldTrump)", "15,", "2018", "The", "summit", "comes", "just", "days", "after", "special", "counsel", "Robert", "Mueller", "12", "Russian", "intelligence", "officers", "for", "interfering", "in", "the", "2016", "presidential", "election,", "The", "Hill", "reported.", "Trump", "has", "been", "criticized", "by", "both", "Democratic", "and", "Republican", "congressmen", "for", "his", "reluctance", "to", "condemn", "Putin", "and", "Russia", "for", "the", "meddling.", "Many", "critics", "said", "Trump", "should", "have", "cancelled", "the", "meeting", "with", "Putin", "following", "the", "announcement", "of", "the", "indictments.", "The", "president", "reacted", "to", "Friday's", "indictment", "by", "blaming", "former", "President", "Barack", "Obama." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "es", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Hillary", "Clinton", "slammed", "President", "Donald", "Trump", "in", "a", "tweet", "on", "Sunday", "just", "ahead", "of", "his", "much-anticipated", "meeting", "with", "Russian", "Vladimir", "Putin", "in", "Helsinki.", "Great", "World", "Cup.", "Question", "for", "President", "Trump", "as", "he", "meets", "Putin:", "Do", "you", "know", "which", "team", "you", "play", "for?", "—", "Hillary", "Clinton", "(@HillaryClinton)", "16,", "2018", "Clinton", "sent", "the", "tweet", "soon", "after", "France", "beat", "Croatia", "4-2", "to", "win", "the", "2018", "World", "in", "Sochi,", "Russia,", "and", "after", "Trump", "had", "put", "out", "a", "tweet", "himself", "in", "which", "he", "congratulated", "Putin", "on", "the", "tournament.", "Congratulations", "to", "France,", "who", "played", "extraordinary", "soccer,", "on", "winning", "the", "2018", "World", "Cup.", "Additionally,", "congratulations", "to", "President", "Putin", "and", "Russia", "for", "putting", "on", "a", "truly", "great", "World", "Cup", "Tournament", "--", "one", "of", "the", "best", "ever!", "—", "(@realDonaldTrump)", "15,", "2018", "The", "summit", "comes", "just", "days", "after", "special", "counsel", "Robert", "Mueller", "12", "Russian", "intelligence", "officers", "for", "interfering", "in", "the", "2016", "presidential", "election,", "The", "Hill", "reported.", "Trump", "has", "been", "criticized", "by", "both", "Democratic", "and", "Republican", "congressmen", "for", "his", "reluctance", "to", "condemn", "Putin", "and", "Russia", "for", "the", "meddling.", "Many", "critics", "said", "Trump", "should", "have", "cancelled", "the", "meeting", "with", "Putin", "following", "the", "announcement", "of", "the", "indictments.", "The", "president", "reacted", "to", "Friday's", "indictment", "by", "blaming", "former", "President", "Barack", "Obama." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Get", "the", "day's", "biggest", "City", "stories", "delivered", "straight", "to", "your", "inbox", "Subscribe", "Thank", "you", "for", "subscribing", "We", "have", "more", "newsletters", "Show", "me", "See", "our", "privacy", "notice", "Invalid", "Leroy", "Sane", "has", "explained", "he", "has", "no", "concerns", "over", "Alexis", "Sanchez", "City", "amid", "ongoing", "speculation", "that", "the", "Arsenal", "attacker", "could", "be", "joining", "the", "club.", "City", "came", "close", "to", "signing", "the", "Chilean", "in", "the", "summer", "transfer", "window", "and", "are", "still", "favourites", "to", "land", "him", "this", "month", "despite", "the", "club", "not", "willing", "to", "meet", "Arsenal's", "current", "asking", "price,", "coupled", "with", "wage", "demands.", "Sanchez", "both", "playing", "in", "a", "similar", "position,", "on", "the", "left", "of", "an", "attacking", "line,", "the", "German", "has", "no", "concerns", "over", "Sanchez's", "potential", "arrival", "threatening", "his", "place", "in", "City's", "starting", "XI.", "\"No,", "it", "doesn’t", "worry", "me", "personally,”", "he", "told", "The", "Guardian.", "“He’s", "a", "very", "good", "player.", "If", "he", "comes", "to", "us", "–", "I", "don’t", "know", "it", "will", "happen", "–", "he", "can", "help", "us.", "No", "player", "would", "say:", "‘Oh", "I", "hope", "he", "doesn’t", "come.’", "\"Every", "one", "of", "us", "is", "playing", "really", "well", "right", "now", "and", "everyone", "has", "confidence.", "But", "there", "are", "so", "many", "games", "–", "so", "everyone", "is", "going", "to", "get", "games.", "“If", "you", "don’t", "get", "challenged,", "then", "you", "can’t", "find", "out", "how", "good", "you", "are.", "\"Even", "if", "he", "is", "better,", "you", "can", "look", "up", "to", "him,", "learn", "and", "try", "to", "improve", "with", "him.", "That", "makes", "you", "a", "better", "player.", "Even", "if", "someone", "like", "that", "comes", "in", "and", "is", "in", "front", "of", "you", "–", "if", "he", "plays", "more", "–", "the", "target", "is", "to", "get", "in", "front", "of", "him", "in", "the", "first", "XI.", "So", "it", "makes", "you", "work", "harder.”", "Despite", "Sane's", "willingness", "to", "play", "with", "the", "Chile", "international,", "City", "are", "ready", "to", "walk", "away", "from", "a", "deal", "for", "Sanchez.", "If", "City", "refuse", "to", "meet", "Arsenal’s", "£35m", "asking", "price", "and", "Sanchez’s", "personal", "demands,", "they", "accept", "he", "could", "head", "to", "Manchester", "United", "this", "month.", "It’s", "understood", "the", "striker", "is", "so", "intent", "on", "leaving", "the", "Emirates", "before", "the", "January", "window", "closes", "that", "he", "is", "even", "willing", "to", "give", "up", "on", "the", "chance", "of", "his", "dream", "move", "to", "City.", "City", "have", "not", "placed", "a", "fresh", "bid", "since", "a", "£60m", "move", "collapsed", "on", "transfer", "deadline", "day", "in", "the", "summer", "-", "but", "remain", "hopeful", "they", "can", "get", "him", "at", "a", "significantly", "lower", "price", "this", "month.", "Their", "own", "valuation", "for", "is", "around", "£10-15m", "below", "Arsenal’s,", "it", "is", "understood." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Get", "the", "day's", "biggest", "City", "stories", "delivered", "straight", "to", "your", "inbox", "Subscribe", "Thank", "you", "for", "subscribing", "We", "have", "more", "newsletters", "Show", "me", "See", "our", "privacy", "notice", "Invalid", "Leroy", "Sane", "has", "explained", "he", "has", "no", "concerns", "over", "Alexis" ], [ "City", "amid", "ongoing", "speculation", "that", "the", "Arsenal", "attacker", "could", "be", "joining", "the", "club.", "City", "came", "close", "to", "signing", "the", "Chilean", "in", "the", "summer", "transfer", "window", "and", "are", "still", "favourites", "to", "land", "him", "this", "month", "despite", "the", "club", "not", "willing", "to", "meet", "Arsenal's", "current", "asking", "price,", "coupled", "with", "wage", "demands.", "Sanchez", "both", "playing", "in", "a", "similar", "position,", "on", "the", "left", "of", "an", "attacking", "line,", "the", "German", "has", "no", "concerns", "over", "Sanchez's", "potential", "arrival", "threatening", "his", "place", "in", "City's", "starting", "XI.", "\"No,", "it", "doesn’t", "worry", "me", "personally,”", "he", "told", "The", "Guardian.", "“He’s", "a", "very", "good", "player.", "If", "he", "comes", "to", "us", "–", "I", "don’t", "know", "it", "will", "happen", "–", "he", "can", "help", "us.", "No", "player", "would", "say:", "‘Oh", "I", "hope", "he", "doesn’t", "come.’", "\"Every", "one", "of", "us", "is", "playing", "really", "well", "right", "now", "and", "everyone", "has", "confidence.", "But", "there", "are", "so", "many", "games", "–", "so", "everyone", "is", "going", "to", "get", "games.", "“If", "you", "don’t", "get", "challenged,", "then", "you", "can’t", "find", "out", "how", "good", "you", "are.", "\"Even", "if", "he", "is", "better,", "you", "can", "look", "up", "to", "him,", "learn", "and", "try", "to", "improve", "with", "him.", "That", "makes", "you", "a", "better", "player.", "Even", "if", "someone", "like", "that", "comes", "in", "and", "is", "in", "front", "of", "you", "–", "if", "he", "plays", "more", "–", "the", "target", "is", "to", "get", "in", "front", "of", "him", "in", "the", "first", "XI.", "So", "it", "makes", "you", "work", "harder.”", "Despite", "Sane's", "willingness", "to", "play", "with", "the", "Chile", "international,", "City", "are", "ready", "to", "walk", "away", "from", "a", "deal", "for", "Sanchez.", "If", "City", "refuse", "to", "meet", "Arsenal’s", "£35m", "asking", "price", "and", "Sanchez’s", "personal", "demands,", "they", "accept", "he", "could", "head", "to", "Manchester", "United", "this", "month.", "It’s", "understood", "the", "striker", "is", "so", "intent", "on", "leaving", "the", "Emirates", "before", "the", "January", "window", "closes", "that", "he", "is", "even", "willing", "to", "give", "up", "on", "the", "chance", "of", "his", "dream", "move", "to", "City.", "City", "have", "not", "placed", "a", "fresh", "bid", "since", "a", "£60m", "move", "collapsed", "on", "transfer", "deadline", "day", "in", "the", "summer", "-", "but", "remain", "hopeful", "they", "can", "get", "him", "at", "a", "significantly", "lower", "price", "this", "month.", "Their", "own", "valuation", "for", "is", "around", "£10-15m", "below", "Arsenal’s,", "it", "is", "understood." ] ] ]
[ [ "en", "en" ] ]
[ "mono" ]
[ [ "If", "you", "need", "something", "to", "cut", "through", "the", "richness", "of", "Thanksgiving", "day,", "without", "compromising", "the", "fall", "harvest", "theme,", "you", "really", "can't", "go", "wrong", "with", "this", "dish.", "Tender", "leafy", "greens,", "combined", "with", "crisp", "apples,", "and", "tart", "cranberries", "balanced", "by", "walnuts", "and", "powerful", "cheese", "are", "a", "killer", "combo.", "Add", "to", "that", "the", "zing", "of", "a", "lightly", "sweet", "and", "tangy", "vinaigrette,", "and", "you've", "got", "yourself", "the", "perfect", "addition", "to", "your", "Thanksgiving", "feast.", "Your", "tummy", "will", "thank", "you.", "Cranberry", "Apple", "Walnut", "Salad", "{with", "Balsamic", "Apple", "Vinaigrette}", "Thanksgiving", "is", "ONE", "week", "from", "today!!!And", "let's", "be", "honest...Where", "food", "is", "concerned,", "the", "traditional", "stars", "of", "that", "day", "include", "one,", "some,", "or", "all", "of", "the", "following:1.", "Turkey...", "or", "Ham...", "to", "each", "their", "own2.", "Pies...", "lots", "and", "lots", "of", "pies3.", "Mashed", "Potatoes", "with", "Gravy4.", "Stuffing5.", "Marshmallow-Topped", "Brown", "Sugar", "Sweet", "Potatoes6.", "Green", "Casserole7.", "RollsEach", "of", "those", "things", "are", "completely", "and", "utterly", "delicious.", "(Also,", "I", "happen", "to", "have", "the", "best", "roll", "recipe", "for", "you", "to", "try", "if", "you", "don't", "already", "have", "one", "pegged", "down.", "It's", "super", "easy.", "You're", "gonna", "love", "it!)True", "to", "form,", "these", "dishes", "also", "make", "for", "a", "monster", "heavy", "meal.Don't", "get", "me", "wrong.", "I'll", "be", "the", "first", "to", "admit", "that", "I", "love", "everything", "about", "this", "feast", "and", "look", "forward", "to", "it", "each", "year.", "Though", "I", "try", "to", "be", "conscious", "of", "serving", "my", "family", "healthy", "food", "much", "of", "the", "time,", "I", "definitely", "love", "ALL", "of", "the", "dishes", "mentioned", "above...", "marshmallow-topped", "sweet", "potatoes", "included...", "and", "I", "don't", "hesitate", "to", "dig", "in", "on", "Thanksgiving", "Day", "with", "my", "family.But...(Yes,", "there's", "a", "\"but,\"", "here.)To", "lend", "some", "balance,", "the", "Thanksgiving", "table", "really", "must", "have", "at", "least", "ONE", "dish", "to", "counter", "all", "that", "heaviness,", "thickness,", "and", "richness,", "or", "the", "dishes", "honestly", "just", "doesn't", "taste", "as", "good", "as", "they", "could.", "Everything", "starts", "tastingafter", "a", "while.That's", "where", "the", "salad", "comes", "in.This", "cranberry", "apple", "walnut", "salad", "is", "the", "perfect", "dish", "for", "the", "job...", "a", "veritable", "kick", "in", "the", "palate", "after", "so", "much", "\"brown.\"I", "mean,", "come", "on...", "just", "LOOK", "at", "it:*Serves", "6-8package", "Spring", "Mix", "greens2", "apples,", "cored", "and", "sliced3/4", "walnuts1/3", "cup", "cranberries1/3", "cup", "gorgonzola", "cheese1/4", "unsweetened", "apple", "juice2", "Tbsp.", "white", "balsamic", "vinegar2", "Tbsp.", "canola", "oil1/2", "tsp.", "salt4", "tsp.", "sugar1", "tsp.", "juiceIn", "a", "blender,", "add", "the", "apple", "juice,", "balsamic", "canola", "oil,", "salt,", "Blend", "on", "a", "high", "setting,", "stopping", "to", "scrape", "the", "sides", "with", "a", "spoon", "if", "needed,", "until", "sugar", "and", "salt", "are", "dissolved,", "and", "the", "vinaigrette", "is", "smooth.", "Pour", "into", "desired", "serving", "container,", "and", "refrigerate", "while", "you", "make", "the", "salad.In", "a", "large", "serving", "bowl", "combine", "the", "greens,", "apples", "slices,", "walnuts,", "dried", "cranberries,", "and", "gorgonzola", "cheese.", "Gently", "toss.Serve", "immediately", "with", "the", "balsamic", "vinaigrette.", "Vinaigrette", "stored", "in", "the", "refrigerator", "for", "a", "few", "days." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "co", "co", "co", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "If", "you", "need", "something", "to", "cut", "through", "the", "richness", "of", "Thanksgiving", "day,", "without", "compromising", "the", "fall", "harvest", "theme,", "you", "really", "can't", "go", "wrong", "with", "this", "dish.", "Tender", "leafy", "greens,", "combined", "with", "crisp", "apples,", "and", "tart", "cranberries", "balanced", "by", "walnuts", "and", "powerful", "cheese", "are", "a", "killer", "combo.", "Add", "to", "that", "the", "zing", "of", "a", "lightly", "sweet", "and", "tangy", "vinaigrette,", "and", "you've", "got", "yourself", "the", "perfect", "addition", "to", "your", "Thanksgiving", "feast.", "Your", "tummy", "will", "thank", "you.", "Cranberry", "Apple", "Walnut", "Salad", "{with", "Balsamic", "Apple", "Vinaigrette}", "Thanksgiving", "is", "ONE", "week", "from", "today!!!And", "let's", "be", "honest...Where", "food", "is", "concerned,", "the", "traditional", "stars", "of", "that", "day", "include", "one,", "some,", "or", "all", "of", "the", "following:1.", "Turkey...", "or", "Ham...", "to", "each", "their", "own2.", "Pies...", "lots", "and", "lots", "of", "pies3.", "Mashed", "Potatoes", "with", "Gravy4.", "Stuffing5.", "Marshmallow-Topped", "Brown", "Sugar", "Sweet", "Potatoes6.", "Green", "Casserole7.", "RollsEach", "of", "those", "things", "are", "completely", "and", "utterly", "delicious.", "(Also,", "I", "happen", "to", "have", "the", "best", "roll", "recipe", "for", "you", "to", "try", "if", "you", "don't", "already", "have", "one", "pegged", "down.", "It's", "super", "easy.", "You're", "gonna", "love", "it!)True", "to", "form,", "these", "dishes", "also", "make", "for", "a", "monster", "heavy", "meal.Don't", "get", "me", "wrong.", "I'll", "be", "the", "first", "to", "admit", "that", "I", "love", "everything", "about", "this", "feast", "and", "look", "forward", "to", "it", "each", "year.", "Though", "I", "try", "to", "be", "conscious", "of", "serving", "my", "family", "healthy", "food", "much", "of", "the", "time,", "I", "definitely", "love", "ALL", "of", "the", "dishes", "mentioned", "above...", "marshmallow-topped", "sweet", "potatoes", "included...", "and", "I", "don't", "hesitate", "to", "dig", "in", "on", "Thanksgiving", "Day", "with", "my", "family.But...(Yes,", "there's", "a", "\"but,\"", "here.)To", "lend", "some", "balance,", "the", "Thanksgiving", "table", "really", "must", "have", "at", "least", "ONE", "dish", "to", "counter", "all", "that", "heaviness,", "thickness,", "and", "richness,", "or", "the", "dishes", "honestly", "just", "doesn't", "taste", "as", "good", "as", "they", "could.", "Everything", "starts", "tastingafter", "a", "while.That's", "where", "the", "salad", "comes", "in.This", "cranberry", "apple", "walnut", "salad", "is", "the", "perfect", "dish", "for", "the", "job...", "a", "veritable", "kick", "in", "the", "palate", "after", "so", "much", "\"brown.\"I", "mean,", "come", "on...", "just", "LOOK", "at", "it:*Serves", "6-8package", "Spring", "Mix", "greens2", "apples,", "cored", "and", "sliced3/4", "walnuts1/3", "cup", "cranberries1/3", "cup", "gorgonzola", "cheese1/4", "unsweetened", "apple", "juice2", "Tbsp.", "white", "balsamic", "vinegar2", "Tbsp.", "canola", "oil1/2", "tsp.", "salt4", "tsp.", "sugar1", "tsp.", "juiceIn", "a", "blender,", "add", "the", "apple", "juice,", "balsamic", "canola", "oil,", "salt,", "Blend", "on", "a", "high", "setting,", "stopping", "to", "scrape", "the", "sides", "with", "a", "spoon", "if", "needed,", "until", "sugar", "and", "salt", "are", "dissolved,", "and", "the", "vinaigrette", "is", "smooth.", "Pour", "into", "desired", "serving", "container,", "and", "refrigerate", "while", "you", "make", "the", "salad.In", "a", "large", "serving", "bowl", "combine", "the", "greens,", "apples", "slices,", "walnuts,", "dried", "cranberries,", "and", "gorgonzola", "cheese.", "Gently", "toss.Serve", "immediately", "with", "the", "balsamic" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Recycling", "is", "often", "cited", "as", "one", "of", "the", "easiest", "ways", "to", "make", "a", "difference", "to", "the", "environment.", "But", "does", "old", "plastic", "really", "get", "reprocessed", "into", "new?", "Guardian", "reporters", "around", "the", "world", "have", "been", "investigating", "what", "really", "happens", "to", "our", "waste.", "Also", "today:", "Bryan", "Mealer", "on", "a", "shocking", "spate", "of", "murders", "of", "trans", "in", "Texas", "What", "happens", "to", "your", "plastic", "waste", "after", "you", "put", "it", "in", "your", "recycling", "bin?", "Rather", "than", "being", "whisked", "off", "to", "a", "local", "factory,", "to", "be", "transformed", "into", "pristine", "new", "materials,", "often", "it", "is", "shipped", "abroad", "where", "it", "is", "eventually", "burned", "or", "dumped.", "The", "Guardian’s", "McCormick,", "Jamie", "Fullerton", "Sandra", "Laville", "have", "been", "investigating", "an", "industry", "that", "is", "far", "less", "virtuous", "than", "many", "would", "assume.", "They", "discover", "what", "actually", "happens", "to", "waste", "after", "it", "is", "exported.", "In", "Malaysia,", "where", "tonnes", "of", "plastic", "waste", "is", "sent", "from", "the", "US", "and", "Europe,", "illegally", "burned", "plastic", "has", "polluted", "towns", "with", "toxic", "fumes.", "Also", "today:", "Bryan", "Mealer,", "in", "Texas,", "on", "a", "shocking", "spate", "of", "deaths", "of", "black", "trans", "women." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Recycling", "is", "often", "cited", "as", "one", "of", "the", "easiest", "ways", "to", "make", "a", "difference", "to", "the", "environment.", "But", "does", "old", "plastic", "really", "get", "reprocessed", "into", "new?", "Guardian", "reporters", "around", "the", "world", "have", "been", "investigating", "what", "really", "happens", "to", "our", "waste.", "Also", "today:", "Bryan", "Mealer", "on", "a", "shocking", "spate", "of", "murders", "of", "trans", "in", "Texas", "What", "happens", "to", "your", "plastic", "waste", "after", "you", "put", "it", "in", "your", "recycling", "bin?", "Rather", "than", "being", "whisked", "off", "to", "a", "local", "factory,", "to", "be", "transformed", "into", "pristine", "new", "materials,", "often", "it", "is", "shipped", "abroad", "where", "it", "is", "eventually", "burned", "or", "dumped.", "The", "Guardian’s", "McCormick,", "Jamie", "Fullerton", "Sandra", "Laville", "have", "been", "investigating", "an", "industry", "that", "is", "far", "less", "virtuous", "than", "many", "would", "assume.", "They", "discover", "what", "actually", "happens", "to", "waste", "after", "it", "is", "exported.", "In", "Malaysia,", "where", "tonnes", "of", "plastic", "waste", "is", "sent", "from", "the", "US", "and", "Europe,", "illegally", "burned", "plastic", "has", "polluted", "towns", "with", "toxic", "fumes.", "Also", "today:", "Bryan", "Mealer,", "in", "Texas,", "on", "a", "shocking", "spate", "of", "deaths", "of", "black", "trans", "women." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Similarities", "Blake", "Brockington", "and", "Leelah", "Alcorn", "1.", "They", "were", "both", "Transgender.", "2,", "They", "were", "both", "rejected", "by", "their", "families.", "(Blake", "was", "in", "fostercare", "because", "his", "family", "kicked", "him", "out)", "3.", "Their", "ages.", "(Blake", "had", "just", "turned", "18,", "and", "Leelah", "was", "17", "turning", "18)", "4.", "They", "both", "commited", "suicide.", "So", "explain", "to", "me", "why", "this", "well", "known", "Transgender", "Blake", "Brockington,", "who", "raised", "thousands", "for", "charity", "and", "became", "the", "first", "black", "transgender", "homecoming", "king", "is", "getting", "almost", "no", "media", "attention.", "Leelah", "Alcorn", "across", "Twitter", "and", "Tumblr—even", "got", "her", "own", "Wikipedia", "page", "and", "article", "in", "People", "magazine.", "This", "is", "by", "no", "means", "a", "a", "for", "opression.", "But", "Blake", "Brockington", "deserves", "the", "same", "memorial", "Leelah", "Alcorn", "was", "given—", "if", "not", "more.", "Three", "thousand", "to", "three", "hundred", "and", "sixty", "four(", "and", "that", "is", "including", "articles", "about", "him", "winning", "@", "HOCO).The", "only", "clear", "difference", "between", "them", "is", "his", "race.", "Preserve", "this", "young", "man’s", "life.", "REST", "IN", "POWER", "KING,", "BLAKE", "BROCKINGTON." ] ]
[ [ "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de" ] ]
[ [ [ "Similarities", "Blake", "Brockington", "and", "Leelah", "Alcorn", "1.", "They", "were", "both", "Transgender.", "2,", "They", "were", "both", "rejected", "by", "their", "families.", "(Blake", "was", "in", "fostercare", "because", "his", "family", "kicked", "him", "out)", "3.", "Their", "ages.", "(Blake", "had", "just", "turned", "18,", "and", "Leelah", "was", "17", "turning", "18)", "4.", "They", "both", "commited", "suicide.", "So", "explain", "to", "me", "why", "this", "well", "known", "Transgender", "Blake", "Brockington,", "who", "raised", "thousands", "for", "charity", "and", "became", "the", "first", "black", "transgender", "homecoming", "king", "is", "getting", "almost", "no", "media", "attention.", "Leelah", "Alcorn", "across", "Twitter", "and", "Tumblr—even", "got", "her", "own", "Wikipedia", "page", "and", "article", "in", "People", "magazine.", "This", "is", "by", "no", "means", "a", "a", "for", "opression.", "But", "Blake", "Brockington", "deserves", "the", "same", "memorial", "Leelah", "Alcorn", "was", "given—", "if", "not", "more.", "Three", "thousand", "to", "three", "hundred", "and", "sixty", "four(", "and", "that", "is", "including", "articles", "about", "him", "winning", "@", "HOCO).The", "only", "clear", "difference", "between", "them", "is", "his", "race.", "Preserve", "this", "young", "man’s", "life.", "REST", "IN", "POWER", "KING,", "BLAKE", "BROCKINGTON." ] ] ]
[ [ "de" ] ]
[ "mono" ]
[ [ "The", "United", "States", "has", "condemned", "the", "arrest", "of", "an", "American", "journalist,", "Cody", "Weddle,", "who", "was", "seized", "in", "an", "early", "morning", "raid", "on", "his", "Caracas", "home.", "Agents", "of", "DGCIM,", "the", "Directorate", "General", "of", "Military", "Counterintelligence,", "detained", "Weddle", "and", "his", "Venezuelan", "assistant", "Carlos", "Camacho", "at", "around", "8am", "local", "time", "on", "Wednesday,", "a", "Venezuelan", "press", "union", "said.", "After", "being", "held", "for", "12", "hours", "at", "DGCIM's", "headquarters,", "Weddle", "was", "taken", "to", "Caracas", "airport", "for", "deportation,", "while", "Camacho", "was", "released.", "The", "arrest", "further", "stoked", "tensions", "between", "the", "government", "of", "Nicolas", "Maduro", "and", "the", "US,", "which", "along", "with", "more", "than", "50", "other", "countries", "has", "recognised", "National", "Assembly", "leader", "Juan", "Guaidó", "as", "Venezuela's", "legitimate", "president.", "On", "Wednesday,", "the", "US", "State", "Department", "demanded", "Weddle", "be", "immediately", "released", "\"unharmed\",", "adding", "that", "Mr", "Maduro", "\"prefers", "to", "stifle", "the", "truth", "rather", "than", "face", "it\".", "Weddle,", "a", "freelance", "journalist", "who", "has", "lived", "in", "Caracas", "since", "2014,", "has", "contributed", "to", "The", "Daily", "Telegraph,", "with", "his", "last", "article", "published", "on", "February", "20.", "He", "has", "also", "worked", "for", "the", "Miami", "Herald,", "ABC,", "CBC", "and", "South", "Florida", "TV", "station", "WPLG", "Local", "10,", "among", "others." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "The", "United", "States", "has", "condemned", "the", "arrest", "of", "an", "American", "journalist,", "Cody", "Weddle,", "who", "was", "seized", "in", "an", "early", "morning", "raid", "on", "his", "Caracas", "home.", "Agents", "of", "DGCIM,", "the", "Directorate", "General", "of", "Military", "Counterintelligence,", "detained", "Weddle", "and", "his", "Venezuelan", "assistant", "Carlos", "Camacho", "at", "around", "8am", "local", "time", "on", "Wednesday,", "a", "Venezuelan", "press", "union", "said.", "After", "being", "held", "for", "12", "hours", "at", "DGCIM's", "headquarters,", "Weddle", "was", "taken", "to", "Caracas", "airport", "for", "deportation,", "while", "Camacho", "was", "released.", "The", "arrest", "further", "stoked", "tensions", "between", "the", "government", "of", "Nicolas", "Maduro", "and", "the", "US,", "which", "along", "with", "more", "than", "50", "other", "countries", "has", "recognised", "National", "Assembly", "leader", "Juan", "Guaidó", "as", "Venezuela's", "legitimate", "president.", "On", "Wednesday,", "the", "US", "State", "Department", "demanded", "Weddle", "be", "immediately", "released", "\"unharmed\",", "adding", "that", "Mr", "Maduro", "\"prefers", "to", "stifle", "the", "truth", "rather", "than", "face", "it\".", "Weddle,", "a", "freelance", "journalist", "who", "has", "lived", "in", "Caracas", "since", "2014,", "has", "contributed", "to", "The", "Daily", "Telegraph,", "with", "his", "last", "article", "published", "on", "February", "20.", "He", "has", "also", "worked", "for", "the", "Miami", "Herald,", "ABC,", "CBC", "and", "South", "Florida", "TV", "station", "WPLG", "Local", "10,", "among", "others." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "cnxps.cmd.push(function", "()", "{", "cnxps({", "playerId:", "'36af7c51-0caf-4741-9824-2c941fc6c17b'", "}).render('4c4d856e0e6f4e3d808bbc1715e132f6');", "});", "A", "French", "Jew", "from", "the", "northern", "Paris", "area", "told", "police", "he", "was", "assaulted", "by", "younger", "Arabs", "outside", "his", "synagogue.The", "complainant,", "identified", "only", "as", "53-year-old", "Salomon", "Z.", "in", "a", "report", "about", "the", "incident", "by", "the", "National", "Bureau", "for", "Vigilance", "Against", "Anti-Semitism,", "was", "assaulted", "on", "Saturday", "after", "attending", "Shabbat", "morning", "services", "at", "the", "synagogue", "of", "the", "municipality", "of", "Saint-Quen,", "the", "Bureau", "reported.A", "man", "with", "an", "Arab", "appearance,", "whom", "the", "victim", "estimated", "is", "25", "years", "old,", "followed", "him", "into", "an", "alley,", "yelled", "“dirty", "Jew”", "at", "him", "and", "hit", "him", "in", "the", "face,", "according", "to", "an", "incident", "report", "by", "the", "Bureau,", "or", "BNVCA.", "Two", "other", "men,", "whom", "the", "victim", "also", "described", "as", "Arabs,", "joined", "the", "alleged", "aggressor", "and", "also", "hit", "the", "Jewish", "man.Salomon", "Z.", "said", "the", "attackers", "wrestled", "him", "to", "the", "ground", "and", "produced", "a", "knife,", "telling", "him", "they", "were", "going", "to", "stab", "him,", "but", "fled", "the", "scene", "as", "onlookers", "began", "to", "approach.The", "complainant", "suffered", "minor", "injuries", "to", "the", "face.", "“Shocked", "and", "traumatized", "he", "returned", "to", "his", "home,”", "the", "BNVCA", "watchdog", "group", "wrote.", "Salomon", "Z.", "filed", "a", "complaint", "with", "police", "on", "Sunday.“Even", "as", "synagogues,", "schools", "and", "other", "Jewish", "community", "institutions", "are", "watched", "over", "by", "police", "and", "troops,", "Jews", "remain", "vulnerable", "targets", "on", "the", "street", "or", "in", "their", "place", "of", "business,”", "BNVCA", "wrote", "in", "a", "statement", "about", "the", "incident.Some", "851", "anti-Semitic", "acts", "were", "registered", "in", "2014,", "compared", "with", "423", "the", "previous", "year,", "with", "acts", "of", "physical", "violence", "jumping", "to", "241", "from", "105,", "according", "to", "the", "SPCJ", "security", "unit", "of", "French", "Jewish", "communities." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "cnxps.cmd.push(function", "()", "{", "cnxps({", "playerId:", "'36af7c51-0caf-4741-9824-2c941fc6c17b'", "}).render('4c4d856e0e6f4e3d808bbc1715e132f6');", "});", "A", "French", "Jew", "from", "the", "northern", "Paris", "area", "told", "police", "he", "was", "assaulted", "by", "younger", "Arabs", "outside", "his", "synagogue.The", "complainant,", "identified", "only", "as", "53-year-old", "Salomon", "Z.", "in", "a", "report", "about", "the", "incident", "by", "the", "National", "Bureau", "for", "Vigilance", "Against", "Anti-Semitism,", "was", "assaulted", "on", "Saturday", "after", "attending", "Shabbat", "morning", "services", "at", "the", "synagogue", "of", "the", "municipality", "of", "Saint-Quen,", "the", "Bureau", "reported.A", "man", "with", "an", "Arab", "appearance,", "whom", "the", "victim", "estimated", "is", "25", "years", "old,", "followed", "him", "into", "an", "alley,", "yelled", "“dirty", "Jew”", "at", "him", "and", "hit", "him", "in", "the", "face,", "according", "to", "an", "incident", "report", "by", "the", "Bureau,", "or", "BNVCA.", "Two", "other", "men,", "whom", "the", "victim", "also", "described", "as", "Arabs,", "joined", "the", "alleged", "aggressor", "and", "also", "hit", "the", "Jewish", "man.Salomon", "Z.", "said", "the", "attackers", "wrestled", "him", "to", "the", "ground", "and", "produced", "a", "knife,", "telling", "him", "they", "were", "going", "to", "stab", "him,", "but", "fled", "the", "scene", "as", "onlookers", "began", "to", "approach.The", "complainant", "suffered", "minor", "injuries", "to", "the", "face.", "“Shocked", "and", "traumatized", "he", "returned", "to", "his", "home,”", "the", "BNVCA", "watchdog", "group", "wrote.", "Salomon", "Z.", "filed", "a", "complaint", "with", "police", "on", "Sunday.“Even", "as", "synagogues,", "schools", "and", "other", "Jewish", "community", "institutions", "are", "watched", "over", "by", "police", "and", "troops,", "Jews", "remain", "vulnerable", "targets", "on", "the", "street", "or", "in", "their", "place", "of", "business,”", "BNVCA", "wrote", "in", "a", "statement", "about", "the", "incident.Some", "851", "anti-Semitic", "acts", "were", "registered", "in", "2014,", "compared", "with", "423", "the", "previous", "year,", "with", "acts", "of", "physical", "violence", "jumping", "to", "241", "from", "105,", "according", "to", "the", "SPCJ", "security", "unit", "of", "French", "Jewish", "communities." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Hey", "lewdies!", "<3", "I", "worked", "on", "this", "story", "during", "12", "days.", "It", "contains", "41", "images,", "mostly", "by", "editing", "the", "same", "image,", "again", "and", "again.", "I", "can", "create", "longer", "stories", "that", "way.", "I", "hope", "you", "like", "it!", "As", "you", "can", "see,", "I", "allowed", "myself", "some", "fun", ":3.", "I", "was", "already", "really", "really", "excited", "to", "put", "Natasha", "and", "Alison", "on", "the", "same", "scene,", "on", "the", "same", "couch,", "and", "I", "loved", "to", "draw", "Alison", "blushing", "once", "for", "all…", "oh", "my", "<3", "Have", "a", "great", "day!", "Versions", ":", "VERSION:", "https://lewdua.com/wp-content/uploads/2019/03/ANIM.gif", "https://lewdua.com/wp-content/uploads/2019/03/ANIM.gif", "(IMGUR)", ":", "https://imgur.com/a/W1Wvq7d", "English", "hairy", ":", "https://imgur.com/a/mjMsEwR", "French", ":", "https://imgur.com/a/zMJenFA", "French", "hairy", ":", "https://imgur.com/a/uc1OweN", "Spanish:", "https://imgur.com/a/wmZaZuM", "HellBat", "for", "the", "spanish", "<3", "Thank", "you", "Phdhentai", "for", "the", "english", "version,", "andfor", "the", "spanish", "<3", "–", "You", "can", "Help", "me", "on", "PATREON!", "https://www.patreon.com/lewdua", "jar", "/", "step", "by", "step", "process", "/", "Polls", "/", "VIP", "room)", "TWITTER", "–", "INSTAGRAM", "–", "PIXIV", "–", "DEVIANTART", "–", "HENTAI", "FOUNDRY", "–", "NEWGROUNDS", "–", "FACEBOOK", "–", "REDDIT", "–", "PICARTO", "Futanari", "server:", "Join", "my", "awesome", "futanari", "lovers", "community:", "https://discord.gg/kaQpQxx" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "nl", "de", "de", "de", "pt", "pt", "pt", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "it", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Hey", "lewdies!", "<3", "I", "worked", "on", "this", "story", "during", "12", "days.", "It", "contains", "41", "images,", "mostly", "by", "editing", "the", "same", "image,", "again", "and", "again.", "I", "can", "create", "longer", "stories", "that", "way.", "I", "hope", "you", "like", "it!", "As", "you", "can", "see,", "I", "allowed", "myself", "some", "fun", ":3.", "I", "was", "already", "really", "really", "excited", "to", "put", "Natasha", "and", "Alison", "on", "the", "same", "scene,", "on", "the", "same", "couch,", "and", "I", "loved", "to", "draw", "Alison", "blushing", "once", "for", "all…", "oh", "my", "<3", "Have", "a", "great", "day!", "Versions", ":", "VERSION:", "https://lewdua.com/wp-content/uploads/2019/03/ANIM.gif", "https://lewdua.com/wp-content/uploads/2019/03/ANIM.gif", "(IMGUR)", ":", "https://imgur.com/a/W1Wvq7d", "English", "hairy", ":", "https://imgur.com/a/mjMsEwR", "French", ":", "https://imgur.com/a/zMJenFA", "French", "hairy", ":", "https://imgur.com/a/uc1OweN", "Spanish:", "https://imgur.com/a/wmZaZuM", "HellBat", "for", "the", "spanish", "<3", "Thank", "you", "Phdhentai", "for", "the", "english", "version,", "andfor", "the", "spanish", "<3", "–", "You", "can", "Help", "me", "on", "PATREON!", "https://www.patreon.com/lewdua", "jar", "/", "step", "by", "step", "process", "/", "Polls", "/", "VIP", "room)", "TWITTER", "–", "INSTAGRAM", "–", "PIXIV", "–", "DEVIANTART", "–", "HENTAI", "FOUNDRY", "–", "NEWGROUNDS", "–", "FACEBOOK", "–", "REDDIT", "–", "PICARTO", "Futanari", "server:", "Join", "my", "awesome", "futanari", "lovers", "community:", "https://discord.gg/kaQpQxx" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "The", "Canadian", "crypto", "exchange", "QuadrigaCX", "reportedly", "owes", "its", "customers", "about", "$190", "million", "after", "its", "founder", "died", "suddenly", "last", "year,", "taking", "his", "encrypted", "access", "to", "the", "money", "with", "him.", "QuadrigaCX's", "founder", "and", "CEO,", "Gerald", "Cotten,", "died", "of", "complications", "from", "Crohn's", "disease", "in", "December,", "CoinDesk", "reports.", "Now", "customers", "are", "struggling", "to", "get", "access", "to", "their", "money,", "with", "the", "exchange", "looking", "at", "options", "to", "pay", "people", "back.", "The", "Canadian", "cryptocurrency", "exchange", "QuadrigaCX", "owes", "its", "customers", "about", "$190", "million,", "or", "249", "million", "Canadian", "dollars,", "according", "to", "CoinDesk.", "That's", "a", "big", "problem", "for", "investors", "because", "the", "exchange's", "founder,", "who", "had", "encrypted", "access", "to", "the", "money,", "died", "last", "year.", "\"Quadriga's", "inventory", "of", "cryptocurrency", "has", "become", "unavailable", "and", "some", "of", "it", "may", "be", "lost,\"", "Jennifer", "Robertson,", "the", "widow", "of", "the", "exchange's", "founder,", "Gerald", "Cotten,", "wrote", "after", "his", "reported", "death", "of", "complications", "from", "Crohn's", "disease", "in", "December,", "as", "CoinDesk", "reported,", "citing", "a", "court", "filing.", "Users", "have", "been", "complaining", "about", "\"withdrawal", "issues", "and", "a", "lack", "of", "communication\"", "from", "QuadrigaCX", "for", "CoinDesk", "said.", "Robertson", "said", "the", "exchange's", "new", "directors", "voted", "to", "\"temporarily", "pause\"", "the", "platform", "on", "January", "26.", "The", "exchange", "is", "considering", "selling", "off", "its", "operating", "platform", "to", "refund", "its", "users,", "and", "\"multiple", "parties\"", "are", "interested,", "CoinDesk", "said,", "citing", "the", "filing." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "The", "Canadian", "crypto", "exchange", "QuadrigaCX", "reportedly", "owes", "its", "customers", "about", "$190", "million", "after", "its", "founder", "died", "suddenly", "last", "year,", "taking", "his", "encrypted", "access", "to", "the", "money", "with", "him.", "QuadrigaCX's", "founder", "and", "CEO,", "Gerald", "Cotten,", "died", "of", "complications", "from", "Crohn's", "disease", "in", "December,", "CoinDesk", "reports.", "Now", "customers", "are", "struggling", "to", "get", "access", "to", "their", "money,", "with", "the", "exchange", "looking", "at", "options", "to", "pay", "people", "back.", "The", "Canadian", "cryptocurrency", "exchange", "QuadrigaCX", "owes", "its", "customers", "about", "$190", "million,", "or", "249", "million", "Canadian", "dollars,", "according", "to", "CoinDesk.", "That's", "a", "big", "problem", "for", "investors", "because", "the", "exchange's", "founder,", "who", "had", "encrypted", "access", "to", "the", "money,", "died", "last", "year.", "\"Quadriga's", "inventory", "of", "cryptocurrency", "has", "become", "unavailable", "and", "some", "of", "it", "may", "be", "lost,\"", "Jennifer", "Robertson,", "the", "widow", "of", "the", "exchange's", "founder,", "Gerald", "Cotten,", "wrote", "after", "his", "reported", "death", "of", "complications", "from", "Crohn's", "disease", "in", "December,", "as", "CoinDesk", "reported,", "citing", "a", "court", "filing.", "Users", "have", "been", "complaining", "about", "\"withdrawal", "issues", "and", "a", "lack", "of", "communication\"", "from", "QuadrigaCX", "for", "CoinDesk", "said.", "Robertson", "said", "the", "exchange's", "new", "directors", "voted", "to", "\"temporarily", "pause\"", "the", "platform", "on", "January", "26.", "The", "exchange", "is", "considering", "selling", "off", "its", "operating", "platform", "to", "refund", "its", "users,", "and", "\"multiple", "parties\"", "are", "interested,", "CoinDesk", "said,", "citing", "the", "filing." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Image:", "Getty", "It’s", "been", "a", "rough", "night", "for", "Ted", "Cruz.", "Across", "the", "state", "of", "New", "York,", "he’s", "almost", "guaranteed", "to", "come", "in", "last", "place", "of", "the", "three", "remaining", "candidates.", "And", "in", "at", "least", "one", "district", "in", "Westchester,", "Ted", "Cruz", "coming", "in", "last", "of", "the", "remaining", "candidates", "and", "someone", "who", "isn’t", "even", "running", "anymore.", "That’s", "right,", "a", "hearty", "congratulations", "to", "Dr.", "Ben", "“Gifted", "Hands”", "Carson.", "We", "knew", "you’d", "come", "in", "handy", "for", "something.", "I’d", "like", "to", "personally", "thank", "New", "York’s", "16th", "district", "for", "this", "beautiful", "gift,", "but", "I", "also", "have", "some", "questions.", "Namely,", "why", "are", "you", "voting", "for", "a", "candidate", "you", "(hopefully)", "know", "isn’t", "actually", "a", "candidate", "anymore?", "Does", "Ben", "Carson", "actually", "have", "a", "dedicated", "following?", "Do", "you", "know", "who", "Ben", "Carson", "is?", "And", "what", "has", "soup", "ever", "done", "to", "you?", "Of", "course,", "the", "important", "thing", "to", "remember", "is", "that,", "tonight,", "Ted", "Cruz", "effectively", "lost", "to", "a", "man", "in", "a", "coma", "who", "wasn’t", "even", "competing", "in", "the", "first", "place.", "Perhaps", "there’s", "still", "some", "good", "in", "this", "world", "yet.", "[h/t", "@GideonResnick]" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Image:", "Getty", "It’s", "been", "a", "rough", "night", "for", "Ted", "Cruz.", "Across", "the", "state", "of", "New", "York,", "he’s", "almost", "guaranteed", "to", "come", "in", "last", "place", "of", "the", "three", "remaining", "candidates.", "And", "in", "at", "least", "one", "district", "in", "Westchester,", "Ted", "Cruz", "coming", "in", "last", "of", "the", "remaining", "candidates", "and", "someone", "who", "isn’t", "even", "running", "anymore.", "That’s", "right,", "a", "hearty", "congratulations", "to", "Dr.", "Ben", "“Gifted", "Hands”", "Carson.", "We", "knew", "you’d", "come", "in", "handy", "for", "something.", "I’d", "like", "to", "personally", "thank", "New", "York’s", "16th", "district", "for", "this", "beautiful", "gift,", "but", "I", "also", "have", "some", "questions.", "Namely,", "why", "are", "you", "voting", "for", "a", "candidate", "you", "(hopefully)", "know", "isn’t", "actually", "a", "candidate", "anymore?", "Does", "Ben", "Carson", "actually", "have", "a", "dedicated", "following?", "Do", "you", "know", "who", "Ben", "Carson", "is?", "And", "what", "has", "soup", "ever", "done", "to", "you?", "Of", "course,", "the", "important", "thing", "to", "remember", "is", "that,", "tonight,", "Ted", "Cruz", "effectively", "lost", "to", "a", "man", "in", "a", "coma", "who", "wasn’t", "even", "competing", "in", "the", "first", "place.", "Perhaps", "there’s", "still", "some", "good", "in", "this", "world", "yet.", "[h/t", "@GideonResnick]" ] ] ]
[ [ "en" ] ]
[ "mono", "mono" ]
[ [ "The", "thoughts", "Joe", "Barksdale", "had", "wrestled", "with", "for", "as", "long", "as", "he", "could", "remember", "started", "to", "get", "louder.", "“Just", "kill", "yourself.", "Just", "do", "it.", "What’s", "the", "point", "of", "living", "if", "you’re", "going", "to", "be", "this", "miserable", "the", "rest", "of", "your", "life?", "Just", "kill", "yourself.”", "It", "was", "early", "November", "2017", "and", "Barksdale,", "the", "Chargers’", "starting", "right", "tackle,", "sat", "in", "the", "team’s", "training", "room.", "He’d", "just", "found", "out", "he", "wouldn’t", "be", "playing", "in", "an", "upcoming", "game", "against", "Jacksonville", "after", "injuring", "his", "foot", "during", "a", "fight", "with", "a", "teammate.", "He’d", "missed", "the", "previous", "two", "games", "with", "a", "toe", "injury", "that", "had", "been", "bothering", "him", "for", "more", "than", "a", "month.", "Now,", "he", "was", "going", "to", "be", "out", "again.", "He", "cried.", "His", "severe", "depression", "—", "something", "Barksdale", "calls", "the", "“monkey”", "always", "on", "his", "back", "—", "had", "gotten", "the", "best", "of", "him.", "Truth", "didn’t", "matter", "anymore.", "Only", "sadness", "did.", "He", "got", "home", "and", "sharpened", "a", "knife,", "his", "mind", "racing.", "His", "wife,", "Brionna,", "convinced", "him", "to", "put", "it", "down.", "They", "talked,", "he", "calmed,", "and", "the", "crisis", "was", "averted.", "Barksdale,", "who", "is", "on", "medication", "and", "in", "therapy,", "is", "sharing", "his", "story", "in", "the", "hopes", "of", "becoming", "an", "advocate", "for", "people", "suffering", "from", "chronic", "depression.", "“If", "I", "could", "save", "another", "person,", "maybe", "that’s", "why", "the", "attempts", "[to", "harm", "himself]", "didn’t", "work,”", "he", "said.", "During", "a", "wide-ranging", "interview", "with", "The", "Times,", "Barksdale,", "29,", "said", "he", "was", "physically,", "emotionally", "and", "sexually", "abused", "as", "a", "child.", "He", "hesitated", "to", "talk", "about", "the", "abuse", "at", "first", "before", "deciding", "to", "share", "his", "experience.", "“I", "was", "molested", "when", "I", "was", "younger,”", "he", "said.", "“It", "happened.”", "It", "was", "the", "beginning", "of", "childhood", "filled", "with", "insecurities", "and", "anxieties.", "He", "because", "of", "his", "size.", "He", "was", "expensive", "to", "clothe", "and", "feed.", "He", "was", "more", "interested", "in", "engineering", "than", "he", "was", "in", "sports.", "Older", "kids", "in", "inner-city", "Detroit", "picked", "on", "him.", "“Everything", "that’s", "happened", "to", "me", "going", "forward", "has", "just", "piled", "onto", "it,”", "he", "said.", "“It’s", "not", "going", "away.", "They’re", "like", "tattoos.”", "As", "he", "continued", "to", "fight", "a", "sadness", "he", "knew", "would", "stay", "with", "him,", "Barksdale", "found", "one", "way", "to", "feel", "better.", "Less", "than", "four", "years", "after", "learning", "how", "to", "play", "guitar", "—", "at", "former", "coach", "Jeff", "Fisher’s", "suggestion", "—", "Barksdale", "just", "released", "his", "debut", "album,", "&", "Moonbeams.”", "“If", "he", "was", "stressed", "out,", "where", "some", "people", "might", "go", "and", "smoke", "a", "cigarette", "or", "something,", "he’d", "go", "and", "pick", "up", "his", "guitar,”", "Brionna", "said.", "“His", "guitar", "was", "his", "outlet,", "and", "once", "he", "started", "writing", "music", "it", "was", "even", "better", "because", "he", "could", "get", "those", "thoughts", "and", "feelings", "out", "in", "words", "and", "music.”", "Brionna", "wrote", "the", "lyrics", "to", "the", "most", "personal", "song", "on", "the", "album,", "“Journey", "to", "Nowhere,”", "after", "a", "tough", "night", "for", "Barksdale", "due", "to", "his", "depression.", "On", "the", "album’s", "cover,", "Barksdale", "has", "a", "massive", "smile", "on", "his", "face", "—", "one", "he’s", "not", "faking.", "Joe", "Barkdale’s", "album", "(Courtesy", "of", "Joe", "Barksdale", ")", "“Music", "is", "everything,”", "Barksdale", "said.", "“I’ve", "always", "wanted", "to", "fly.", "I’ve", "always", "had", "this", "obsession", "with", "flight.", "Birds", "are", "the", "coolest,", "watching", "things", "move", "through", "the", "air", "and", "not", "be", "hindered", "by", "gravity", "as", "much", "as", "I", "am.", "When", "I", "play", "my", "guitar", "—", "not", "all", "the", "time", "but", "if", "I’m", "soloing", "or", "if", "I", "just", "let", "go", "and", "play", "—", "I", "feel", "like", "I’m", "flying.", "It’s", "the", "coolest", "thing", "ever.”", "He", "loves", "Jimi", "Hendrix.", "Earlier", "this", "season,", "he", "played", "a", "game", "with", "customized", "cleats", "inspired", "by", "Hendrix’s", "guitar", "from", "the", "famed", "Monterey", "Pop", "Festival.", "And", "while", "playing", "in", "St.", "Louis", "for", "the", "Rams,", "Barksdale", "began", "to", "fall", "in", "love", "with", "the", "blues", "because", "of", "the", "way", "musicians", "were", "able", "to", "convey", "feelings", "without", "uttering", "a", "word.", "“It’s", "telling", "people", "how", "you", "feel", "without", "you", "having", "to", "talk", "to", "them,”", "he", "said.", "Getting", "players", "to", "talk", "is", "one", "of", "the", "biggest", "challenges", "faced", "by", "NFL", "mental", "health", "advocates.", "“The", "challenge", "is", "when", "they’re", "hurting", "emotionally", "and", "you’ve", "been", "taught", "your", "whole", "life", "to", "stuff", "it,", "it", "becomes", "difficult", "to", "say", "anything,”", "said", "Dwight", "Hollier,", "the", "NFL’s", "vice", "president", "of", "wellness", "and", "clinical", "services.", "Hollier,", "a", "former", "player,", "said" ], [ "the", "league", "has", "a", "number", "of", "programs", "to", "help", "players", "and", "their", "families", "deal", "with", "mental", "health", "issues.", "One", "of", "those", "programs,", "NFL", "Life", "Line,", "is", "a", "24-hour", "crisis", "hotline", "available", "to", "current", "and", "former", "players", "and", "their", "families.", "Hollier", "said", "the", "number", "receives", "between", "20", "and", "30", "calls", "per", "month.", "Barksdale", "has", "called", "that", "number", "before", "and", "it", "didn’t", "work", "for", "him.", "But", "with", "mental", "health", "treatments,", "there", "are", "no", "fool-proof", "methods.", "“No", "one", "had", "any", "answers", "for", "me,”", "Barksdale", "said.", "“…They", "wanted", "to", "help.", "But", "they", "couldn’t.", "At", "the", "end", "of", "the", "day,", "I", "still", "felt", "…", "and", "anxiety.”", "Barksdale", "had", "to", "fight", "all", "those", "feelings", "in", "sharing", "his", "depression", "with", "teammates.", "He’s", "spoken", "to", "a", "small", "handful", "of", "players", "including", "Chargers", "quarterback", "Philip", "Rivers.", "“They", "were", "really", "supportive.", "I", "think", "it", "answered", "a", "lot", "of", "questions", "to", "them,”", "Barksdale", "said.“There", "are", "the", "symptoms", "and", "all", "that,", "but", "without", "proper", "understanding", "of", "what’s", "going", "on,", "you", "just", "look", "like", "you", "have", "bad", "days", "where", "you", "just", "show", "up", "and", "you’re", "miserable", "for", "whatever", "reason", "or", "you’re", "angry", "for", "whatever", "reason.", "It", "connected", "a", "lot", "of", "the", "dots", "for", "them.", "They", "were", "super", "supportive.", "“This", "goes", "to", "show", "you", "the", "stigma", "in", "the", "league.", "All", "three", "of", "them", "told", "me,", "‘Hey,", "don’t", "worry.", "This", "is", "between", "us.", "I", "won’t", "tell", "anybody.’", "My", "thing", "was,", "I’m", "telling", "you", "so", "that", "you", "can", "tell", "other", "people.”", "Rivers", "said", "he", "was", "caught", "off", "guard", "by", "the", "disclosure.", "The", "Barksdale", "he", "knew", "owned", "a", "big,", "contagious", "laugh.", "He", "seemed", "happy.", "“I", "would’ve", "never", "imagined", "that", "he", "was", "dealing", "with", "that,”", "Rivers", "said.", "Barksdale,", "out", "of", "necessity,", "had", "become", "an", "expert", "at", "hiding", "his", "depression.", "“I’ve", "been", "doing", "it", "for", "29", "years.", "I", "know", "what", "the", "alternative", "is,”", "Barksdale", "said.", "“If", "I", "let", "myself", "get", "sad,", "like", "really", "sad,", "it", "can", "go", "really", "bad", "places", "—", "like", "I", "could", "not", "be", "here", "tomorrow.”", "If", "it", "sounds", "serious,", "it’s", "because", "it", "is.", "If", "it", "sounds", "heavy,", "it’s", "because", "it", "is.", "If", "it", "sounds", "uncomfortably", "honest,", "that’s", "the", "point", "too.", "Barksdale", "is", "done", "staying", "quiet.", "And", "he", "hopes", "others", "will", "join", "him.", "“Some", "days,", "you", "can", "talk", "yourself", "out", "of", "it.", "Some", "days,", "you", "can’t.", "Some", "days,", "it", "just", "feels", "impossible,”", "he", "said.", "“This", "is", "who", "I", "I", "am", "as", "depressed", "as", "I", "am", "[email protected]", "Twitter:", "@DanWoikeSports" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "pt", "pt", "pt", "pt", "pt", "en", "en", "en", "en" ] ]
[ [ [ "The", "thoughts", "Joe", "Barksdale", "had", "wrestled", "with", "for", "as", "long", "as", "he", "could", "remember", "started", "to", "get", "louder.", "“Just", "kill", "yourself.", "Just", "do", "it.", "What’s", "the", "point", "of", "living", "if", "you’re", "going", "to", "be", "this", "miserable", "the", "rest", "of", "your", "life?", "Just", "kill", "yourself.”", "It", "was", "early", "November", "2017", "and", "Barksdale,", "the", "Chargers’", "starting", "right", "tackle,", "sat", "in", "the", "team’s", "training", "room.", "He’d", "just", "found", "out", "he", "wouldn’t", "be", "playing", "in", "an", "upcoming", "game", "against", "Jacksonville", "after", "injuring", "his", "foot", "during", "a", "fight", "with", "a", "teammate.", "He’d", "missed", "the", "previous", "two", "games", "with", "a", "toe", "injury", "that", "had", "been", "bothering", "him", "for", "more", "than", "a", "month.", "Now,", "he", "was", "going", "to", "be", "out", "again.", "He", "cried.", "His", "severe", "depression", "—", "something", "Barksdale", "calls", "the", "“monkey”", "always", "on", "his", "back", "—", "had", "gotten", "the", "best", "of", "him.", "Truth", "didn’t", "matter", "anymore.", "Only", "sadness", "did.", "He", "got", "home", "and", "sharpened", "a", "knife,", "his", "mind", "racing.", "His", "wife,", "Brionna,", "convinced", "him", "to", "put", "it", "down.", "They", "talked,", "he", "calmed,", "and", "the", "crisis", "was", "averted.", "Barksdale,", "who", "is", "on", "medication", "and", "in", "therapy,", "is", "sharing", "his", "story", "in", "the", "hopes", "of", "becoming", "an", "advocate", "for", "people", "suffering", "from", "chronic", "depression.", "“If", "I", "could", "save", "another", "person,", "maybe", "that’s", "why", "the", "attempts", "[to", "harm", "himself]", "didn’t", "work,”", "he", "said.", "During", "a", "wide-ranging", "interview", "with", "The", "Times,", "Barksdale,", "29,", "said", "he", "was", "physically,", "emotionally", "and", "sexually", "abused", "as", "a", "child.", "He", "hesitated", "to", "talk", "about", "the", "abuse", "at", "first", "before", "deciding", "to", "share", "his", "experience.", "“I", "was", "molested", "when", "I", "was", "younger,”", "he", "said.", "“It", "happened.”", "It", "was", "the", "beginning", "of", "childhood", "filled", "with", "insecurities", "and", "anxieties.", "He", "because", "of", "his", "size.", "He", "was", "expensive", "to", "clothe", "and", "feed.", "He", "was", "more", "interested", "in", "engineering", "than", "he", "was", "in", "sports.", "Older", "kids", "in", "inner-city", "Detroit", "picked", "on", "him.", "“Everything", "that’s", "happened", "to", "me", "going", "forward", "has", "just", "piled", "onto", "it,”", "he", "said.", "“It’s", "not", "going", "away.", "They’re", "like", "tattoos.”", "As", "he", "continued", "to", "fight", "a", "sadness", "he", "knew", "would", "stay", "with", "him,", "Barksdale", "found", "one", "way", "to", "feel", "better.", "Less", "than", "four", "years", "after", "learning", "how", "to", "play", "guitar", "—", "at", "former", "coach", "Jeff", "Fisher’s", "suggestion", "—", "Barksdale", "just", "released", "his", "debut", "album,", "&", "Moonbeams.”", "“If", "he", "was", "stressed", "out,", "where", "some", "people", "might", "go", "and", "smoke", "a", "cigarette", "or", "something,", "he’d", "go", "and", "pick", "up", "his", "guitar,”", "Brionna", "said.", "“His", "guitar", "was", "his", "outlet,", "and", "once", "he", "started", "writing", "music", "it", "was", "even", "better", "because", "he", "could", "get", "those", "thoughts", "and", "feelings", "out", "in", "words", "and", "music.”", "Brionna", "wrote", "the", "lyrics", "to", "the", "most", "personal", "song", "on", "the", "album,", "“Journey", "to", "Nowhere,”", "after", "a", "tough", "night", "for", "Barksdale", "due", "to", "his", "depression.", "On", "the", "album’s", "cover,", "Barksdale", "has", "a", "massive", "smile", "on", "his", "face", "—", "one", "he’s", "not", "faking.", "Joe", "Barkdale’s", "album", "(Courtesy", "of", "Joe", "Barksdale", ")", "“Music", "is", "everything,”", "Barksdale", "said.", "“I’ve", "always", "wanted", "to", "fly.", "I’ve", "always", "had", "this", "obsession", "with", "flight.", "Birds", "are", "the", "coolest,", "watching", "things", "move", "through", "the", "air", "and", "not", "be", "hindered", "by", "gravity", "as", "much", "as", "I", "am.", "When", "I", "play", "my", "guitar", "—", "not", "all", "the", "time", "but", "if", "I’m", "soloing", "or", "if", "I", "just", "let", "go", "and", "play", "—", "I", "feel", "like", "I’m", "flying.", "It’s", "the", "coolest", "thing", "ever.”", "He", "loves", "Jimi", "Hendrix.", "Earlier", "this", "season,", "he", "played", "a", "game", "with", "customized", "cleats", "inspired", "by", "Hendrix’s", "guitar", "from", "the", "famed", "Monterey", "Pop", "Festival.", "And", "while", "playing", "in", "St.", "Louis", "for", "the", "Rams,", "Barksdale", "began", "to", "fall", "in", "love", "with", "the", "blues", "because", "of", "the", "way", "musicians", "were", "able", "to", "convey", "feelings", "without", "uttering", "a", "word.", "“It’s", "telling", "people", "how", "you", "feel", "without", "you", "having", "to", "talk", "to", "them,”", "he", "said.", "Getting", "players", "to", "talk", "is", "one", "of", "the", "biggest", "challenges", "faced", "by", "NFL", "mental", "health", "advocates.", "“The", "challenge", "is", "when", "they’re", "hurting", "emotionally", "and", "you’ve", "been", "taught", "your", "whole", "life", "to", "stuff", "it,", "it", "becomes", "difficult", "to", "say", "anything,”", "said", "Dwight", "Hollier,", "the", "NFL’s", "vice", "president", "of", "wellness", "and", "clinical", "services.", "Hollier,", "a", "former", "player,", "said" ] ], [ [ "the", "league", "has", "a", "number", "of", "programs", "to", "help", "players", "and", "their", "families", "deal", "with", "mental", "health", "issues.", "One", "of", "those", "programs,", "NFL", "Life", "Line,", "is", "a", "24-hour", "crisis", "hotline", "available", "to", "current", "and", "former", "players", "and", "their", "families.", "Hollier", "said", "the", "number", "receives", "between", "20", "and", "30", "calls", "per", "month.", "Barksdale", "has", "called", "that", "number", "before", "and", "it", "didn’t", "work", "for", "him.", "But", "with", "mental", "health", "treatments,", "there", "are", "no", "fool-proof", "methods.", "“No", "one", "had", "any", "answers", "for", "me,”", "Barksdale", "said.", "“…They", "wanted", "to", "help.", "But", "they", "couldn’t.", "At", "the", "end", "of", "the", "day,", "I", "still", "felt" ], [ "and", "anxiety.”", "Barksdale", "had", "to", "fight", "all", "those", "feelings", "in", "sharing", "his", "depression", "with", "teammates.", "He’s", "spoken", "to", "a", "small", "handful", "of", "players", "including", "Chargers", "quarterback", "Philip", "Rivers.", "“They", "were", "really", "supportive.", "I", "think", "it", "answered", "a", "lot", "of", "questions", "to", "them,”", "Barksdale", "said.“There", "are", "the", "symptoms", "and", "all", "that,", "but", "without", "proper", "understanding", "of", "what’s", "going", "on,", "you", "just", "look", "like", "you", "have", "bad", "days", "where", "you", "just", "show", "up", "and", "you’re", "miserable", "for", "whatever", "reason", "or", "you’re", "angry", "for", "whatever", "reason.", "It", "connected", "a", "lot", "of", "the", "dots", "for", "them.", "They", "were", "super", "supportive.", "“This", "goes", "to", "show", "you", "the", "stigma", "in", "the", "league.", "All", "three", "of", "them", "told", "me,", "‘Hey,", "don’t", "worry.", "This", "is", "between", "us.", "I", "won’t", "tell", "anybody.’", "My", "thing", "was,", "I’m", "telling", "you", "so", "that", "you", "can", "tell", "other", "people.”", "Rivers", "said", "he", "was", "caught", "off", "guard", "by", "the", "disclosure.", "The", "Barksdale", "he", "knew", "owned", "a", "big,", "contagious", "laugh.", "He", "seemed", "happy.", "“I", "would’ve", "never", "imagined", "that", "he", "was", "dealing", "with", "that,”", "Rivers", "said.", "Barksdale,", "out", "of", "necessity,", "had", "become", "an", "expert", "at", "hiding", "his", "depression.", "“I’ve", "been", "doing", "it", "for", "29", "years.", "I", "know", "what", "the", "alternative", "is,”", "Barksdale", "said.", "“If", "I", "let", "myself", "get", "sad,", "like", "really", "sad,", "it", "can", "go", "really", "bad", "places", "—", "like", "I", "could", "not", "be", "here", "tomorrow.”", "If", "it", "sounds", "serious,", "it’s", "because", "it", "is.", "If", "it", "sounds", "heavy,", "it’s", "because", "it", "is.", "If", "it", "sounds", "uncomfortably", "honest,", "that’s", "the", "point", "too.", "Barksdale", "is", "done", "staying", "quiet.", "And", "he", "hopes", "others", "will", "join", "him.", "“Some", "days,", "you", "can", "talk", "yourself", "out", "of", "it.", "Some", "days,", "you", "can’t.", "Some", "days,", "it", "just", "feels", "impossible,”", "he", "said.", "“This", "is", "who", "I", "I", "am", "as", "depressed", "as", "I", "am", "[email protected]", "Twitter:", "@DanWoikeSports" ] ] ]
[ [ "en" ], [ "en", "en" ] ]
[ "mono" ]
[ [ "Michael", "Moore,", "Disneynature", "and", "several", "concert", "films", "top", "the", "list" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Michael", "Moore,", "Disneynature", "and", "several", "concert", "films", "top", "the", "list" ] ] ]
[ [ "en" ] ]
[ "mono", "mono", "mono" ]
[ [ "Andy", "Weir,", "author", "of", "sci-fi", "blockbuster", "\"The", "Martian\",", "is", "publishing", "a", "novel", "about", "the", "moon,", "\"Artemis\",", "on", "November", "14.", "The", "book", "follows", "the", "misadventures", "of", "a", "witty", "smuggler,", "Jasmine", "\"Jazz\"", "Bashara.", "Weir", "Business", "Insider", "he's", "convinced", "humans", "will", "colonize", "the", "moon", "before", "Mars", "because", "it", "has", "one", "thing", "the", "red", "planet", "doesn't:", "an", "economic", "rationale.", "The", "author", "says", "Elon", "Musk's", "and", "SpaceX's", "plan", "to", "colonize", "Mars", "before", "the", "moon", "is", "not", "realistic.", "Andy", "Weir,", "author", "of", "\"The", "Martian\",", "a", "realistic", "tale", "of", "survival", "in", "space,", "is", "about", "to", "release", "his", "second", "and", "highly", "anticipated", "novel,", "\"Artemis\".", "\"Artemis\"", "takes", "place", "on", "the", "moon", "in", "the", "2080s", "at", "humanity's", "first", "and", "only", "lunar", "city", "of", "the", "same", "name.", "It's", "a", "riveting", "story", "about", "a", "high-stakes", "heist", "featuring", "Jasmine", "\"Jazz\"", "Bashara,", "a", "woman", "and", "witty", "smuggler", "who", "has", "lived", "inside", "the", "aluminum", "bubbles", "of", "Artemis", "since", "she", "was", "a", "kid.", "In", "Weir's", "typical", "style,", "the", "novel", "—", "which", "goes", "on", "sale", "on", "November", "14", "—", "is", "wildly", "entertaining", "and", "far-fetched,", "but", "stays", "surprisingly", "believable", "by", "leaning", "heavily", "on", "real-life", "science", "and", "engineering.", "The", "cover", "of", "Andy", "Weir's", "moon", "novel,", "\"Artemis\".", "Crown", "Publishing", "Business", "Insider", "spoke", "with", "Weir", "about", "the", "book's", "genesis,", "why", "he", "thinks", "humanity", "will", "colonize", "the", "moon", "first,", "his", "major", "criticism", "of", "Elon", "Musk's", "and", "SpaceX's", "plans", "to", "inhabit", "Mars,", "and", "why", "he'd", "never", "visit", "Artemis", "if", "he", "could.", "Note:", "This", "interview", "has", "been", "edited", "for", "style,", "length,", "and", "clarity.", "BUSINESS", "INSIDER:", "You", "could", "have", "picked", "any", "place", "in", "the", "universe", "for", "your", "next", "novel", "to", "take", "place.", "Why", "the", "moon,", "and", "why", "Artemis", "—", "a", "city", "on", "the", "moon?", "ANDY", "WEIR:", "I", "wanted", "to", "write", "a", "story", "about", "the", "first", "human", "settlement", "somewhere", "other", "than", "Earth.", "And", "I", "just", "really", "think", "that's", "going", "to", "be", "the", "moon.", "That'll", "definitely", "be", "the", "first", "place", "that", "we", "colonize", "outside", "of", "Earth.", "A", "lot", "of", "people", "who", "would", "like", "us", "to", "just", "leap-frog", "to", "Mars,", "but", "Mars", "is", "so", "much", "farther", "away.", "It", "would", "be", "like", "if", "the", "ancient", "British", "colonized", "North", "America", "before", "they", "colonized", "Wales.", "It's", "just...", "The", "moon", "is", "definitely", "the", "first", "place", "that", "we", "will", "colonize.", "BI:", "And", "that's", "your", "opinion,", "or", "what", "experts", "have", "told", "you?", "AW:", "Well,", "yeah,", "it", "is", "just", "my", "opinion.", "But", "it", "seems...", "It's", "one", "of", "those", "things", "that", "I", "feel", "pretty", "confident", "about", "that's", "how", "it's", "gonna", "shake", "out.", "BI:", "What", "gave", "you", "the", "idea", "to", "write", "\"Artemis\"?", "AW:", "I'm", "not", "sure", "exactly", "when", "I", "came", "up", "with", "the", "idea,", "but", "it", "started", "off", "with", "me", "saying,", "\"OK,", "I", "want", "a", "story", "that", "takes", "place", "in", "the", "city", "on", "the", "moon.\"", "And", "I", "kind", "of", "work", "forward", "from", "there.", "I", "had", "all", "of", "Artemis", "designed", "and", "even", "its", "history", "and", "its", "economic", "foundation", "and", "stuff", "before", "I", "ever", "made", "characters", "or", "story", "for", "it.", "So", "I", "really", "wanted", "to", "write", "a", "story", "about", "this", "—", "about", "life", "on", "the", "first", "colony", "off", "of", "Earth.", "\"The", "Martian\"", "was", "a", "survival", "story", "and", "I", "didn't", "want", "to", "just", "write", "another", "one;", "I", "wanted", "a", "unique", "story.", "I", "love", "crime", "novels", "and", "I", "love", "crime", "stories,", "I", "like", "heist", "and", "caper", "kind", "of", "stories", "and", "I", "thought,", "\"Hey,", "why", "not", "do", "a", "caper", "on", "the", "moon?\"", "The", "fictional", "lunar", "city", "Artemis", "has", "five", "domes", "inside", "which", "people", "work", "and", "live.", "Each", "is", "named", "after", "a", "NASA", "astronaut.", "Copyright", "of", "Andy", "Weir,", "\"Artemis\"/Crown", "Publishing", "BI:", "Like", "\"The", "Martian\",", "\"Artemis\"", "struck", "me", "as", "very", "realistic", "—", "the", "claustrophobic", "hallways", "in", "lower-income", "areas,", "the", "local", "construction", "materials,", "the", "chemistry...", "AW:", "Every", "part", "of", "Artemis", "is", "about", "the", "economics", "of", "making", "it", "a", "profitable", "tourist", "engine.", "They", "had", "to", "build", "it", "there,", "and", "they", "had", "to", "build", "it", "with", "resources", "that", "they", "had", "on", "the", "moon.", "So", "I", "had", "to", "figure", "out,", "how", "do", "you", "make", "metal", "on", "the", "moon?", "And", "to", "make", "it", "cheaper?", "Also,", "I", "based", "Artemis'", "internal", "economy", "—", "and", "kind", "of", "its", "social", "structure", "that", "emerges", "as", "a", "result", "—", "on", "resort", "towns,", "tourism", "towns.", "Imagine", "a", "resort", "town", "in", "the", "Caribbean,", "where", "there's", "some", "high-end", "hotels,", "casinos,", "whatever,", "along", "the", "shoreline.", "And", "then", "behind", "that", "are", "the", "more,", "shall", "we", "say,", "\"austere\"", "living", "environments", "of", "the", "people", "who", "live", "and", "work", "there.", "And", "so", "I", "figured,", "well,", "Artemis", "would", "be", "that.", "It", "doesn't", "matter", "if", "it's", "on", "the", "moon:", "Economics", "determines", "how", "these", "things", "pan", "out.", "Artemis'", "economy", "is", "a", "tourist", "economy,", "so", "I", "figured", "it'd", "be", "just", "like", "any", "other", "tourist", "town.", "BI:", "Was", "the", "realism", "the", "goal" ], [ "here,", "or", "a", "product", "of", "the", "story", "you", "wanted", "to", "tell?", "AW:", "I", "wanted", "it", "to", "be", "as", "realistic", "as", "possible.", "I", "wanted", "a", "very", "believable", "and", "realistic", "setting.", "The", "book", "would", "not", "work", "if", "you", "weren't", "buying", "into", "the", "setting.", "You'd", "just", "be", "like,", "\"Nah,", "every", "part", "of", "this", "is", "bulls---\"", "—", "especially", "considering", "so", "much", "of", "the", "plot", "revolves", "around", "the", "setting,", "like", "the", "details", "of", "how", "Artemis", "operates.", "So", "if", "your", "suspension", "of", "disbelief", "isn't", "completely", "satisfied", "by", "what", "Artemis", "is,", "then", "you're", "not", "going", "to", "like", "the", "book", "at", "all,", "right?", "So", "I", "had", "to", "really", "make", "that", "work", "—", "and", "put", "a", "lot", "of", "work", "into", "it.", "BI:", "You", "seem", "very", "invested", "in", "the", "idea", "of", "a", "moon", "colony.", "When", "do", "you", "think", "it's", "going", "to", "happen", "—", "and", "when", "would", "you", "like", "to", "see", "it", "happen?", "Andy", "Weir", "looks", "at", "moon", "rocks", "recovered", "by", "Apollo", "astronauts", "at", "NASA/James", "Lauren", "Harnett", "AW:", "\"Artemis\"", "takes", "place", "in", "the", "2080s,", "and", "construction", "on", "the", "city", "began", "on", "the", "2060s.", "So", "that", "was", "kind", "of", "the", "prediction", "I", "made.", "When", "would", "I", "like", "it", "to", "happen?", "Later", "today.", "When", "do", "I", "think", "it'll", "happen?", "I", "don't", "know,", "it's", "hard.", "The", "whole", "premise", "of", "\"Artemis\"", "is", "the", "presumption", "that", "the", "cost", "to", "low-Earth", "orbit", "would", "be", "driven", "down", "by", "a", "competition", "in", "the", "commercial", "space", "industry.", "And", "I", "actually", "wrote", "a", "paper", "about", "that.", "I", "mean,", "it's", "amateur-hour-level", "economics,", "but", "it's", "good", "enough", "for", "fiction.", "It's", "funny,", "I", "always", "have", "to", "remind", "myself:", "I", "find", "economics", "fascinating.", "I", "think", "it's", "really", "interesting.", "But", "I", "have", "to", "remember", "that", "most", "readers...", "don't.", "So", "I", "can't", "just", "go", "off", "on", "prolonged", "discussions", "of", "economics,", "or", "they'll", "just", "put", "the", "book", "down", "and", "never", "come", "back.", "But", "it's", "all", "stuff", "that's", "under", "the", "hood", "—", "it's", "all", "there,", "I", "wanted", "it", "to", "work.", "BI:", "You've", "visited", "SpaceX,", "a", "company", "founded", "by", "Elon", "Musk", "that's", "intent", "on", "colonizing", "Mars.", "What's", "your", "impression", "of", "their", "goal?", "AW:", "Talking", "about", "getting", "humans", "to", "Mars,", "like", "getting", "a", "flags-and-footprints", "kind", "of", "mission?", "I", "think", "[that]", "is", "very", "realistic", "to", "happen", "this", "century.", "I", "think", "that", "could", "definitely", "happen.", "But", "colonizing", "Mars", "is", "way,", "way", "far", "in", "the", "future,", "regardless", "of", "what", "everyone", "says.", "I", "just", "don't", "see", "it", "happening", "soon.", "There's", "a", "certain", "appeal", "to", "Mars", "because", "it's", "interesting", "and", "exciting", "and", "people", "are", "like,", "\"Oh,", "that's", "neat!\"", "But", "the", "reality", "is", "that", "there", "is", "no", "economic", "reason", "to", "colonize", "Mars.", "At", "all.", "There's", "a", "saying", "in", "that", "kind", "of", "space", "industry:", "\"There", "is", "no", "Planet", "B.\"", "It's", "like,", "you", "don't", "just", "get", "to", "say,", "\"Oh,", "f---", "this,", "we'll", "go", "elsewhere.\"", "And", "I", "guarantee", "you", "that", "regardless", "of", "how", "bad", "the", "problems", "are", "on", "Earth,", "environmentally", "or", "whatever", "else,", "it", "is", "easier", "to", "fix", "them", "than", "to", "colonize", "another", "planet.", "I", "guarantee", "you", "that.", "If", "you", "take", "the", "trillion", "dollars", "that", "you", "were", "going", "to", "spend", "colonizing", "Mars", "and", "put", "it", "into", "environmental", "amelioration", "things,", "you", "might", "find", "that", "it's", "better", "done", "here.", "Leaving", "Earth", "as", "an", "idea", "of", "saving", "it", "is", "just", "not", "viable.", "That's", "not", "why", "people", "will", "leave.", "The", "environment", "of", "Earth", "is", "not", "a", "factor", "that", "would", "affect", "the", "colonization", "of", "our", "solar", "system,", "in", "my", "opinion.", "A", "SpaceX", "illustration", "showing", "its", "\"Big", "F---ing", "Spaceship\"", "on", "the", "moon.", "SpaceX/YouTube", "BI:", "So", "you", "don't", "think", "humanity", "will", "colonize", "Mars", "first?", "AW:", "In", "terms", "of", "people", "bulldozing", "directly", "toward", "Mars", "like", "saying,", "\"Ok,", "we're", "going", "to", "colonize", "Mars\"", "—", "I", "just", "don't", "think", "that's", "realistic.", "It's", "kind", "of", "like", "building", "a", "railroad", "track,", "but", "it's", "not", "like", "it's", "time", "for", "Manifest", "Destiny", "and", "Westward", "Expansion,", "where", "we", "have", "the", "East", "Coast", "colonized,", "and", "now", "we", "want", "to", "colonize", "the", "rest", "of", "the", "country.", "That", "would", "be", "like", "if", "we", "said,", "\"Let's", "forget", "about", "all", "the", "stuff", "in", "the", "middle,", "and", "just", "go", "straight", "to", "Nevada.", "Let's", "forget", "about", "all", "of", "this", "really", "usable", "stuff", "in", "the", "middle.\"", "It's", "like,", "we'll", "start", "with", "New", "Amsterdam", "and", "then", "we'll", "go", "to", "Carson", "City", "—", "with", "nothing", "in", "between.", "I", "just", "don't", "see", "it.", "And", "colonization", "of", "the", "moon", "would", "be", "incredibly", "useful", "to", "colonizing", "Mars.", "First", "off,", "everything", "you", "want", "to", "do", "on", "Mars", "you", "could", "do", "on", "the", "moon", "to", "see", "if", "it", "works.", "And", "second", "off,", "the", "moon", "has", "a", "much", "smaller", "gravity", "well.", "So", "anything", "manufactured", "there", "out", "of", "local", "resources", "is", "a", "lot", "easier", "to", "get", "to", "Mars.", "If", "anybody", "asks,", "\"Why", "would", "you", "go", "to", "the", "moon?\"", "I'd", "say,", "\"Why", "would", "you", "go", "to", "Mars?\"", "BI:", "I" ], [ "'m", "sure", "you've", "heard", "Elon", "Musk's", "Mars", "colonization", "talks", "in", "2016", "and", "2017.", "What's", "your", "overall", "impression?", "Elon", "Musk's", "vision", "of", "a", "colony", "on", "Mars.", "SpaceX/YouTube", "AW:", "I", "think", "Musk's", "plan", "is", "overly", "optimistic.", "I", "think", "that", "it's", "a", "sort", "of", "thing", "that", "could", "happen,", "but", "not", "on", "the", "timelines", "that", "he's", "talking", "about.", "I", "think", "that", "neither", "Musk", "nor", "anybody", "else", "seems", "to", "be", "considering,", "what", "economic", "reason", "is", "there", "to", "go", "to", "this", "other", "planet?", "So", "far,", "I've", "never", "heard", "an", "answer", "to", "that.", "It's", "like,", "\"We", "can", "put", "people", "on", "Mars!\"", "And", "I'm", "like,", "\"Why?", "So", "they'll", "be", "there?", "Well,", "we", "can", "put", "people", "on", "Antarctica,", "why", "not", "do", "that?\"", "I'm", "not", "seeing", "a", "reason", "why,", "aside", "from", "people", "being", "overly", "idealistic", "and", "thinking,", "\"Man,", "it'd", "be", "awesome", "to", "be", "on", "Mars.\"", "I", "don't", "see", "any", "reason", "why", "they", "would", "move", "there.", "The", "people", "who", "are", "like,", "\"Man,", "I", "would", "totally", "move", "to", "Mars!\"", "—", "No,", "you", "would", "totally", "fantasize", "about", "moving", "to", "Mars.", "But", "when", "it", "came", "to", "the", "point", "where", "someone's", "like,", "\"All", "right,", "it's", "time", "to", "leave", "your", "entire", "life,", "your", "family,", "everyone", "you", "know", "behind", "and", "go", "to", "another", "planet", "forever", "until", "you", "die,\"", "people", "would", "probably", "say,", "\"Uh,", "actually...", "no.\"", "BI:", "You", "set", "up", "an", "economy", "on", "the", "moon", "which", "has", "a", "frightening", "underbelly", "to", "it...", "AW:", "Well,", "it's", "not", "that", "bad...", "BI:...", "OK,", "\"checkered\"", "underbelly.", "In", "real", "life,", "there's", "talk", "about", "mining", "helium-3", "on", "the", "moon", "for", "fusion", "reactors,", "among", "other", "things.", "What", "do", "you", "think", "would", "be", "an", "actual", "lunar", "economic", "AW:", "I", "still", "believe", "that", "with", "the", "first", "settlement", "on", "the", "on", "the", "moon,", "the", "first", "economic", "drive", "behind", "it", "will", "be", "tourism.", "In", "terms", "of", "things", "like", "mining", "helium-3", "—", "even", "if", "it", "does", "become", "a", "thing", "—", "anything", "that's", "just", "a", "task", "or", "a", "labor", "or", "anything", "that's", "just", "resource", "collection", "or", "acquisition,", "you'd", "just", "send", "robots.", "Just", "imagine", "there", "were", "big", "bricks", "of", "gold", "on", "the", "moon", "and", "all", "you'd", "have", "to", "do", "is", "go", "pick", "them", "up.", "All", "people", "would", "have", "to", "do", "is", "make", "probes", "to", "go", "pick", "them", "up.", "You", "wouldn't", "send", "humans", "—", "why", "would", "you", "send", "humans?", "They're", "so", "much", "harder", "to", "keep", "alive", "on", "the", "moon", "and", "people", "get", "really", "mad", "when", "you", "fail.", "Nobody", "minds", "if", "you", "break", "your", "own", "million-dollar", "robot.", "Most", "of", "the", "explanations", "for", "colonizing", "the", "moon", "that", "I've", "seen", "in", "science", "fiction", "are", "really", "lacking.", "They're", "like,", "\"We", "colonized", "the", "moon", "to", "mine", "things.\"", "And", "I'm", "like,", "\"Well", "then", "send", "robots.\"", "Or", "they're", "like,", "\"We", "colonized", "the", "moon", "because", "of", "population", "pressure", "on", "Earth.\"", "And", "I'm", "like,", "\"It", "is", "so", "much", "easier", "to", "colonize", "the", "Sahara", "or", "Antarctica", "or", "the", "ocean", "than", "it", "would", "be", "to", "colonize", "the", "moon.\"", "Or", "they're", "like,", "\"We", "came", "here", "to", "avoid", "persecution.\"", "And", "I'm", "like,", "\"If", "you", "can", "get", "there,", "the", "people", "persecuting", "you", "can", "absolutely", "get", "there.\"", "So", "I", "just", "don't", "see", "it.", "The", "only", "thing", "that", "I", "can", "think", "of", "is", "if", "humans", "being", "there", "is", "inherently", "part", "of", "the", "economy", "—", "and", "the", "only", "way", "that", "happens", "is", "tourism.", "Artemis", "is", "driven", "by", "tourism,", "including", "excursions", "around", "the", "Apollo", "11", "landing", "site.", "Copyright", "of", "Andy", "Weir,", "\"Artemis\"/Crown", "Publishing", "BI:", "Hence", "a", "resort", "town", "on", "the", "moon", "and", "all", "of", "its", "support", "systems", "and", "smuggling", "and", "all", "of", "that.", "AW:", "Well,", "what", "happens", "is", "once", "you", "have", "the", "tourism", "industry", "there,", "then", "people", "live", "there.", "And", "then", "once", "you", "have", "people", "living", "somewhere,", "then", "that", "itself", "becomes", "the", "economy,", "right?", "If", "there's", "2,000", "people", "living", "on", "the", "moon,", "well", "I'm", "gonna", "move", "there", "to", "sell", "them", "shoes", "—", "and", "now", "there's", "2,001", "people", "living", "on", "the", "moon.", "That's", "how", "human", "settlement", "and", "expansion", "works,", "but", "there", "has", "to", "be", "some", "sort", "of", "seed.", "If", "you", "look", "in", "any", "city", "anywhere", "in", "the", "world,", "there", "is", "an", "economic", "reason", "why", "it", "exists.", "Maybe", "it", "was", "at", "a", "convenient", "place", "on", "the", "river,", "it", "was", "in", "a", "nice", "valley", "that's", "easy", "to", "pass", "through,", "going", "from", "one", "trade", "hub", "to", "another,", "or", "its", "near", "some", "resources", "that", "people", "needed", "—", "something.", "BI:", "Would", "you", "go", "to", "Artemis", "if", "it", "existed", "today,", "and", "would", "you", "want", "to", "just", "be", "a", "tourist", "or", "actually", "live", "there?", "AW:", "I", "don't", "think", "I'd", "like", "to", "live", "in", "Artemis.", "First", "off,", "I", "would", "not", "like", "the", "trip", "out", "there.", "Secondly,", "I", "have", "a", "lot", "of", "friends", "and", "family", "on", "Earth", "that", "I", "would", "miss", "too", "much.", "It", "takes", "a", "certain", "special", "kind", "of", "lifestyle", "and", "personality", "to", "live", "in", "a", "frontier", "town,", "and", "I", "don't", "have", "that.", "I", "like", "the", "comforts", "of", "civilization" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "es", "es", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Andy", "Weir,", "author", "of", "sci-fi", "blockbuster", "\"The", "Martian\",", "is", "publishing", "a", "novel", "about", "the", "moon,", "\"Artemis\",", "on", "November", "14.", "The", "book", "follows", "the", "misadventures", "of", "a", "witty", "smuggler,", "Jasmine", "\"Jazz\"", "Bashara.", "Weir", "Business", "Insider", "he's", "convinced", "humans", "will", "colonize", "the", "moon", "before", "Mars", "because", "it", "has", "one", "thing", "the", "red", "planet", "doesn't:", "an", "economic", "rationale.", "The", "author", "says", "Elon", "Musk's", "and", "SpaceX's", "plan", "to", "colonize", "Mars", "before", "the", "moon", "is", "not", "realistic.", "Andy", "Weir,", "author", "of", "\"The", "Martian\",", "a", "realistic", "tale", "of", "survival", "in", "space,", "is", "about", "to", "release", "his", "second", "and", "highly", "anticipated", "novel,", "\"Artemis\".", "\"Artemis\"", "takes", "place", "on", "the", "moon", "in", "the", "2080s", "at", "humanity's", "first", "and", "only", "lunar", "city", "of", "the", "same", "name.", "It's", "a", "riveting", "story", "about", "a", "high-stakes", "heist", "featuring", "Jasmine", "\"Jazz\"", "Bashara,", "a", "woman", "and", "witty", "smuggler", "who", "has", "lived", "inside", "the", "aluminum", "bubbles", "of", "Artemis", "since", "she", "was", "a", "kid.", "In", "Weir's", "typical", "style,", "the", "novel", "—", "which", "goes", "on", "sale", "on", "November", "14", "—", "is", "wildly", "entertaining", "and", "far-fetched,", "but", "stays", "surprisingly", "believable", "by", "leaning", "heavily", "on", "real-life", "science", "and", "engineering.", "The", "cover", "of", "Andy", "Weir's", "moon", "novel,", "\"Artemis\".", "Crown", "Publishing", "Business", "Insider", "spoke", "with", "Weir", "about", "the", "book's", "genesis,", "why", "he", "thinks", "humanity", "will", "colonize", "the", "moon", "first,", "his", "major", "criticism", "of", "Elon", "Musk's", "and", "SpaceX's", "plans", "to", "inhabit", "Mars,", "and", "why", "he'd", "never", "visit", "Artemis", "if", "he", "could.", "Note:", "This", "interview", "has", "been", "edited", "for", "style,", "length,", "and", "clarity.", "BUSINESS", "INSIDER:", "You", "could", "have", "picked", "any", "place", "in", "the", "universe", "for", "your", "next", "novel", "to", "take", "place.", "Why", "the", "moon,", "and", "why", "Artemis", "—", "a", "city", "on", "the", "moon?", "ANDY", "WEIR:", "I", "wanted", "to", "write", "a", "story", "about", "the", "first", "human", "settlement", "somewhere", "other", "than", "Earth.", "And", "I", "just", "really", "think", "that's", "going", "to", "be", "the", "moon.", "That'll", "definitely", "be", "the", "first", "place", "that", "we", "colonize", "outside", "of", "Earth.", "A", "lot", "of", "people", "who", "would", "like", "us", "to", "just", "leap-frog", "to", "Mars,", "but", "Mars", "is", "so", "much", "farther", "away.", "It", "would", "be", "like", "if", "the", "ancient", "British", "colonized", "North", "America", "before", "they", "colonized", "Wales.", "It's", "just...", "The", "moon", "is", "definitely", "the", "first", "place", "that", "we", "will", "colonize.", "BI:", "And", "that's", "your", "opinion,", "or", "what", "experts", "have", "told", "you?", "AW:", "Well,", "yeah,", "it", "is", "just", "my", "opinion.", "But", "it", "seems...", "It's", "one", "of", "those", "things", "that", "I", "feel", "pretty", "confident", "about", "that's", "how", "it's", "gonna", "shake", "out.", "BI:", "What", "gave", "you", "the", "idea", "to", "write", "\"Artemis\"?", "AW:", "I'm", "not", "sure", "exactly", "when", "I", "came", "up", "with", "the", "idea,", "but", "it", "started", "off", "with", "me", "saying,", "\"OK,", "I", "want", "a", "story", "that", "takes", "place", "in", "the", "city", "on", "the", "moon.\"", "And", "I", "kind", "of", "work", "forward", "from", "there.", "I", "had", "all", "of", "Artemis", "designed", "and", "even", "its", "history", "and", "its", "economic", "foundation", "and", "stuff", "before", "I", "ever", "made", "characters", "or", "story", "for", "it.", "So", "I", "really", "wanted", "to", "write", "a", "story", "about", "this", "—", "about", "life", "on", "the", "first", "colony", "off", "of", "Earth.", "\"The", "Martian\"", "was", "a", "survival", "story", "and", "I", "didn't", "want", "to", "just", "write", "another", "one;", "I", "wanted", "a", "unique", "story.", "I", "love", "crime", "novels", "and", "I", "love", "crime", "stories,", "I", "like", "heist", "and", "caper", "kind", "of", "stories", "and", "I", "thought,", "\"Hey,", "why", "not", "do", "a", "caper", "on", "the", "moon?\"", "The", "fictional", "lunar", "city", "Artemis", "has", "five", "domes", "inside", "which", "people", "work", "and", "live.", "Each", "is", "named", "after", "a", "NASA", "astronaut.", "Copyright", "of", "Andy", "Weir,", "\"Artemis\"/Crown", "Publishing", "BI:", "Like", "\"The", "Martian\",", "\"Artemis\"", "struck", "me", "as", "very", "realistic", "—", "the", "claustrophobic", "hallways", "in", "lower-income", "areas,", "the", "local", "construction", "materials,", "the", "chemistry...", "AW:", "Every", "part", "of", "Artemis", "is", "about", "the", "economics", "of", "making", "it", "a", "profitable", "tourist", "engine.", "They", "had", "to", "build", "it", "there,", "and", "they", "had", "to", "build", "it", "with", "resources", "that", "they", "had", "on", "the", "moon.", "So", "I", "had", "to", "figure", "out,", "how", "do", "you", "make", "metal", "on", "the", "moon?", "And", "to", "make", "it", "cheaper?", "Also,", "I", "based", "Artemis'", "internal", "economy", "—", "and", "kind", "of", "its", "social", "structure", "that", "emerges", "as", "a", "result", "—", "on", "resort", "towns,", "tourism", "towns.", "Imagine", "a", "resort", "town", "in", "the", "Caribbean,", "where", "there's", "some", "high-end", "hotels,", "casinos,", "whatever,", "along", "the", "shoreline.", "And", "then", "behind", "that", "are", "the", "more,", "shall", "we", "say,", "\"austere\"", "living", "environments", "of", "the", "people", "who", "live", "and", "work", "there.", "And", "so", "I", "figured,", "well,", "Artemis", "would", "be", "that.", "It", "doesn't", "matter", "if", "it's", "on", "the", "moon:", "Economics", "determines", "how", "these", "things", "pan", "out.", "Artemis'", "economy", "is", "a", "tourist", "economy,", "so", "I", "figured", "it'd", "be", "just", "like", "any", "other", "tourist", "town.", "BI:", "Was", "the", "realism", "the", "goal" ] ], [ [ "here,", "or", "a", "product", "of", "the", "story", "you", "wanted", "to", "tell?", "AW:", "I", "wanted", "it", "to", "be", "as", "realistic", "as", "possible.", "I", "wanted", "a", "very", "believable", "and", "realistic", "setting.", "The", "book", "would", "not", "work", "if", "you", "weren't", "buying", "into", "the", "setting.", "You'd", "just", "be", "like,", "\"Nah,", "every", "part", "of", "this", "is", "bulls---\"", "—", "especially", "considering", "so", "much", "of", "the", "plot", "revolves", "around", "the", "setting,", "like", "the", "details", "of", "how", "Artemis", "operates.", "So", "if", "your", "suspension", "of", "disbelief", "isn't", "completely", "satisfied", "by", "what", "Artemis", "is,", "then", "you're", "not", "going", "to", "like", "the", "book", "at", "all,", "right?", "So", "I", "had", "to", "really", "make", "that", "work", "—", "and", "put", "a", "lot", "of", "work", "into", "it.", "BI:", "You", "seem", "very", "invested", "in", "the", "idea", "of", "a", "moon", "colony.", "When", "do", "you", "think", "it's", "going", "to", "happen", "—", "and", "when", "would", "you", "like", "to", "see", "it", "happen?", "Andy", "Weir", "looks", "at", "moon", "rocks", "recovered", "by", "Apollo", "astronauts", "at" ], [ "AW:", "\"Artemis\"", "takes", "place", "in", "the", "2080s,", "and", "construction", "on", "the", "city", "began", "on", "the", "2060s.", "So", "that", "was", "kind", "of", "the", "prediction", "I", "made.", "When", "would", "I", "like", "it", "to", "happen?", "Later", "today.", "When", "do", "I", "think", "it'll", "happen?", "I", "don't", "know,", "it's", "hard.", "The", "whole", "premise", "of", "\"Artemis\"", "is", "the", "presumption", "that", "the", "cost", "to", "low-Earth", "orbit", "would", "be", "driven", "down", "by", "a", "competition", "in", "the", "commercial", "space", "industry.", "And", "I", "actually", "wrote", "a", "paper", "about", "that.", "I", "mean,", "it's", "amateur-hour-level", "economics,", "but", "it's", "good", "enough", "for", "fiction.", "It's", "funny,", "I", "always", "have", "to", "remind", "myself:", "I", "find", "economics", "fascinating.", "I", "think", "it's", "really", "interesting.", "But", "I", "have", "to", "remember", "that", "most", "readers...", "don't.", "So", "I", "can't", "just", "go", "off", "on", "prolonged", "discussions", "of", "economics,", "or", "they'll", "just", "put", "the", "book", "down", "and", "never", "come", "back.", "But", "it's", "all", "stuff", "that's", "under", "the", "hood", "—", "it's", "all", "there,", "I", "wanted", "it", "to", "work.", "BI:", "You've", "visited", "SpaceX,", "a", "company", "founded", "by", "Elon", "Musk", "that's", "intent", "on", "colonizing", "Mars.", "What's", "your", "impression", "of", "their", "goal?", "AW:", "Talking", "about", "getting", "humans", "to", "Mars,", "like", "getting", "a", "flags-and-footprints", "kind", "of", "mission?", "I", "think", "[that]", "is", "very", "realistic", "to", "happen", "this", "century.", "I", "think", "that", "could", "definitely", "happen.", "But", "colonizing", "Mars", "is", "way,", "way", "far", "in", "the", "future,", "regardless", "of", "what", "everyone", "says.", "I", "just", "don't", "see", "it", "happening", "soon.", "There's", "a", "certain", "appeal", "to", "Mars", "because", "it's", "interesting", "and", "exciting", "and", "people", "are", "like,", "\"Oh,", "that's", "neat!\"", "But", "the", "reality", "is", "that", "there", "is", "no", "economic", "reason", "to", "colonize", "Mars.", "At", "all.", "There's", "a", "saying", "in", "that", "kind", "of", "space", "industry:", "\"There", "is", "no", "Planet", "B.\"", "It's", "like,", "you", "don't", "just", "get", "to", "say,", "\"Oh,", "f---", "this,", "we'll", "go", "elsewhere.\"", "And", "I", "guarantee", "you", "that", "regardless", "of", "how", "bad", "the", "problems", "are", "on", "Earth,", "environmentally", "or", "whatever", "else,", "it", "is", "easier", "to", "fix", "them", "than", "to", "colonize", "another", "planet.", "I", "guarantee", "you", "that.", "If", "you", "take", "the", "trillion", "dollars", "that", "you", "were", "going", "to", "spend", "colonizing", "Mars", "and", "put", "it", "into", "environmental", "amelioration", "things,", "you", "might", "find", "that", "it's", "better", "done", "here.", "Leaving", "Earth", "as", "an", "idea", "of", "saving", "it", "is", "just", "not", "viable.", "That's", "not", "why", "people", "will", "leave.", "The", "environment", "of", "Earth", "is", "not", "a", "factor", "that", "would", "affect", "the", "colonization", "of", "our", "solar", "system,", "in", "my", "opinion.", "A", "SpaceX", "illustration", "showing", "its", "\"Big", "F---ing", "Spaceship\"", "on", "the", "moon.", "SpaceX/YouTube", "BI:", "So", "you", "don't", "think", "humanity", "will", "colonize", "Mars", "first?", "AW:", "In", "terms", "of", "people", "bulldozing", "directly", "toward", "Mars", "like", "saying,", "\"Ok,", "we're", "going", "to", "colonize", "Mars\"", "—", "I", "just", "don't", "think", "that's", "realistic.", "It's", "kind", "of", "like", "building", "a", "railroad", "track,", "but", "it's", "not", "like", "it's", "time", "for", "Manifest", "Destiny", "and", "Westward", "Expansion,", "where", "we", "have", "the", "East", "Coast", "colonized,", "and", "now", "we", "want", "to", "colonize", "the", "rest", "of", "the", "country.", "That", "would", "be", "like", "if", "we", "said,", "\"Let's", "forget", "about", "all", "the", "stuff", "in", "the", "middle,", "and", "just", "go", "straight", "to", "Nevada.", "Let's", "forget", "about", "all", "of", "this", "really", "usable", "stuff", "in", "the", "middle.\"", "It's", "like,", "we'll", "start", "with", "New", "Amsterdam", "and", "then", "we'll", "go", "to", "Carson", "City", "—", "with", "nothing", "in", "between.", "I", "just", "don't", "see", "it.", "And", "colonization", "of", "the", "moon", "would", "be", "incredibly", "useful", "to", "colonizing", "Mars.", "First", "off,", "everything", "you", "want", "to", "do", "on", "Mars", "you", "could", "do", "on", "the", "moon", "to", "see", "if", "it", "works.", "And", "second", "off,", "the", "moon", "has", "a", "much", "smaller", "gravity", "well.", "So", "anything", "manufactured", "there", "out", "of", "local", "resources", "is", "a", "lot", "easier", "to", "get", "to", "Mars.", "If", "anybody", "asks,", "\"Why", "would", "you", "go", "to", "the", "moon?\"", "I'd", "say,", "\"Why", "would", "you", "go", "to", "Mars?\"", "BI:", "I" ] ], [ [ "'m", "sure", "you've", "heard", "Elon", "Musk's", "Mars", "colonization", "talks", "in", "2016", "and", "2017.", "What's", "your", "overall", "impression?", "Elon", "Musk's", "vision", "of", "a", "colony", "on", "Mars.", "SpaceX/YouTube", "AW:", "I", "think", "Musk's", "plan", "is", "overly", "optimistic.", "I", "think", "that", "it's", "a", "sort", "of", "thing", "that", "could", "happen,", "but", "not", "on", "the", "timelines", "that", "he's", "talking", "about.", "I", "think", "that", "neither", "Musk", "nor", "anybody", "else", "seems", "to", "be", "considering,", "what", "economic", "reason", "is", "there", "to", "go", "to", "this", "other", "planet?", "So", "far,", "I've", "never", "heard", "an", "answer", "to", "that.", "It's", "like,", "\"We", "can", "put", "people", "on", "Mars!\"", "And", "I'm", "like,", "\"Why?", "So", "they'll", "be", "there?", "Well,", "we", "can", "put", "people", "on", "Antarctica,", "why", "not", "do", "that?\"", "I'm", "not", "seeing", "a", "reason", "why,", "aside", "from", "people", "being", "overly", "idealistic", "and", "thinking,", "\"Man,", "it'd", "be", "awesome", "to", "be", "on", "Mars.\"", "I", "don't", "see", "any", "reason", "why", "they", "would", "move", "there.", "The", "people", "who", "are", "like,", "\"Man,", "I", "would", "totally", "move", "to", "Mars!\"", "—", "No,", "you", "would", "totally", "fantasize", "about", "moving", "to", "Mars.", "But", "when", "it", "came", "to", "the", "point", "where", "someone's", "like,", "\"All", "right,", "it's", "time", "to", "leave", "your", "entire", "life,", "your", "family,", "everyone", "you", "know", "behind", "and", "go", "to", "another", "planet", "forever", "until", "you", "die,\"", "people", "would", "probably", "say,", "\"Uh,", "actually...", "no.\"", "BI:", "You", "set", "up", "an", "economy", "on", "the", "moon", "which", "has", "a", "frightening", "underbelly", "to", "it...", "AW:", "Well,", "it's", "not", "that", "bad...", "BI:...", "OK,", "\"checkered\"", "underbelly.", "In", "real", "life,", "there's", "talk", "about", "mining", "helium-3", "on", "the", "moon", "for", "fusion", "reactors,", "among", "other", "things.", "What", "do", "you", "think", "would", "be", "an", "actual", "lunar", "economic", "AW:", "I", "still", "believe", "that", "with", "the", "first", "settlement", "on", "the", "on", "the", "moon,", "the", "first", "economic", "drive", "behind", "it", "will", "be", "tourism.", "In", "terms", "of", "things", "like", "mining", "helium-3", "—", "even", "if", "it", "does", "become", "a", "thing", "—", "anything", "that's", "just", "a", "task", "or", "a", "labor", "or", "anything", "that's", "just", "resource", "collection", "or", "acquisition,", "you'd", "just", "send", "robots.", "Just", "imagine", "there", "were", "big", "bricks", "of", "gold", "on", "the", "moon", "and", "all", "you'd", "have", "to", "do", "is", "go", "pick", "them", "up.", "All", "people", "would", "have", "to", "do", "is", "make", "probes", "to", "go", "pick", "them", "up.", "You", "wouldn't", "send", "humans", "—", "why", "would", "you", "send", "humans?", "They're", "so", "much", "harder", "to", "keep", "alive", "on", "the", "moon", "and", "people", "get", "really", "mad", "when", "you", "fail.", "Nobody", "minds", "if", "you", "break", "your", "own", "million-dollar", "robot.", "Most", "of", "the", "explanations", "for", "colonizing", "the", "moon", "that", "I've", "seen", "in", "science", "fiction", "are", "really", "lacking.", "They're", "like,", "\"We", "colonized", "the", "moon", "to", "mine", "things.\"", "And", "I'm", "like,", "\"Well", "then", "send", "robots.\"", "Or", "they're", "like,", "\"We", "colonized", "the", "moon", "because", "of", "population", "pressure", "on", "Earth.\"", "And", "I'm", "like,", "\"It", "is", "so", "much", "easier", "to", "colonize", "the", "Sahara", "or", "Antarctica", "or", "the", "ocean", "than", "it", "would", "be", "to", "colonize", "the", "moon.\"", "Or", "they're", "like,", "\"We", "came", "here", "to", "avoid", "persecution.\"", "And", "I'm", "like,", "\"If", "you", "can", "get", "there,", "the", "people", "persecuting", "you", "can", "absolutely", "get", "there.\"", "So", "I", "just", "don't", "see", "it.", "The", "only", "thing", "that", "I", "can", "think", "of", "is", "if", "humans", "being", "there", "is", "inherently", "part", "of", "the", "economy", "—", "and", "the", "only", "way", "that", "happens", "is", "tourism.", "Artemis", "is", "driven", "by", "tourism,", "including", "excursions", "around", "the", "Apollo", "11", "landing", "site.", "Copyright", "of", "Andy", "Weir,", "\"Artemis\"/Crown", "Publishing", "BI:", "Hence", "a", "resort", "town", "on", "the", "moon", "and", "all", "of", "its", "support", "systems", "and", "smuggling", "and", "all", "of", "that.", "AW:", "Well,", "what", "happens", "is", "once", "you", "have", "the", "tourism", "industry", "there,", "then", "people", "live", "there.", "And", "then", "once", "you", "have", "people", "living", "somewhere,", "then", "that", "itself", "becomes", "the", "economy,", "right?", "If", "there's", "2,000", "people", "living", "on", "the", "moon,", "well", "I'm", "gonna", "move", "there", "to", "sell", "them", "shoes", "—", "and", "now", "there's", "2,001", "people", "living", "on", "the", "moon.", "That's", "how", "human", "settlement", "and", "expansion", "works,", "but", "there", "has", "to", "be", "some", "sort", "of", "seed.", "If", "you", "look", "in", "any", "city", "anywhere", "in", "the", "world,", "there", "is", "an", "economic", "reason", "why", "it", "exists.", "Maybe", "it", "was", "at", "a", "convenient", "place", "on", "the", "river,", "it", "was", "in", "a", "nice", "valley", "that's", "easy", "to", "pass", "through,", "going", "from", "one", "trade", "hub", "to", "another,", "or", "its", "near", "some", "resources", "that", "people", "needed", "—", "something.", "BI:", "Would", "you", "go", "to", "Artemis", "if", "it", "existed", "today,", "and", "would", "you", "want", "to", "just", "be", "a", "tourist", "or", "actually", "live", "there?", "AW:", "I", "don't", "think", "I'd", "like", "to", "live", "in", "Artemis.", "First", "off,", "I", "would", "not", "like", "the", "trip", "out", "there.", "Secondly,", "I", "have", "a", "lot", "of", "friends", "and", "family", "on", "Earth", "that", "I", "would", "miss", "too", "much.", "It", "takes", "a", "certain", "special", "kind", "of", "lifestyle", "and", "personality", "to", "live", "in", "a", "frontier", "town,", "and", "I", "don't", "have", "that.", "I", "like", "the", "comforts", "of", "civilization" ] ] ]
[ [ "en" ], [ "en", "en" ], [ "en" ] ]
[ "mono" ]
[ [ "A", "SON", "Sinn", "Fein", "TD", "Aengus", "O", "Snodaigh", "has", "been", "accused", "of", "assaulting", "a", "garda", "and", "causing", "a", "public", "order", "disturbance", "in", "north", "Dublin.", "Fearghal", "O", "Snodaigh", "(23)", "is", "alleged", "to", "have", "become", "threatening", "before", "resisting", "arrest", "and", "assaulting", "the", "officer", "in", "an", "incident", "at", "a", "garda", "station.", "The", "case", "against", "him", "was", "adjourned", "when", "he", "appeared", "before", "Dublin", "District", "Court", "accused", "of", "three", "offences.", "Mr", "O", "Snodaigh,", "of", "Naas", "Road,", "Dublin", "8,", "was", "summonsed", "before", "the", "court", "on", "Thursday", "to", "face", "an", "allegation", "that", "he", "assaulted", "Gda", "Niall", "Carolan", "at", "Ballymun", "Expand", "Close", "Fearghal", "O", "Snodaigh", "has", "been", "accused", "of", "assaulting", "a", "/", "Facebook", "Twitter", "Email", "Whatsapp", "Fearghal", "O", "Snodaigh", "has", "been", "accused", "of", "assaulting", "a", "garda", "The", "offence", "is", "alleged", "to", "have", "happened", "on", "February", "28", "last", "year.", "Mr", "O", "Snodaigh", "is", "further", "charged", "with", "obstructing", "Gda", "Carolan", "and", "using", "threatening,", "abusive", "and", "insulting", "words", "or", "behaviour,", "with", "intent", "to", "provoke", "a", "breach", "of", "the", "peace.", "Thursday’s", "appearance", "was", "Mr", "O", "Snodaigh’s", "first", "court", "date", "in", "relation", "to", "the", "case,", "and", "Judge", "Anthony", "Halpin", "adjourned", "it", "until", "a", "date", "next", "month,", "when", "the", "accused", "is", "expected", "to", "indicate", "whether", "he", "intends", "to", "plead", "guilty", "to", "the", "charges", "or", "contest", "O", "Snodaigh", "is", "not", "required", "to", "be", "on", "bail", "as", "he", "was", "brought", "to", "court", "by", "way", "of", "summons", "rather", "than", "being", "formally", "charged.", "Expand", "Close", "Aengus", "Snodaigh.", "Tom", "/", "Facebook", "Twitter", "Email", "Whatsapp", "Aengus", "Ó", "Snodaigh.", "Photo:", "Tom", "Burke", "He", "has", "not", "yet", "entered", "a", "plea", "to", "the", "charges.", "A", "section", "two", "assault", "charge,", "unlike", "the", "more", "serious", "charge", "of", "assault", "causing", "harm,", "does", "not", "allege", "any", "injury", "was", "caused", "and", "the", "maximum", "sentence", "on", "conviction", "is", "six-month", "imprisonment.", "The", "offence", "of", "obstructing", "a", "peace", "officer", "also", "carries", "a", "six", "months,", "while", "those", "found", "guilty", "of", "breaching", "the", "peace", "can", "be", "sentenced", "to", "up", "to", "three", "months.", "The", "alleged", "offences,", "all", "of", "which", "can", "only", "be", "dealt", "with", "summarily", "in", "the", "non-jury", "district", "court,", "are", "also", "punishable", "by", "fines", "on", "conviction.", "The", "accused’s", "father,", "Aengus", "O", "Snodaigh,", "has", "been", "a", "TD", "for", "Dublin", "South-Central", "since", "2002.", "Herald" ] ]
[ [ "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "pt", "nl", "nl", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "A", "SON", "Sinn", "Fein", "TD", "Aengus", "O", "Snodaigh", "has", "been", "accused", "of", "assaulting", "a", "garda", "and", "causing", "a", "public", "order", "disturbance", "in", "north", "Dublin.", "Fearghal", "O", "Snodaigh", "(23)", "is", "alleged", "to", "have", "become", "threatening", "before", "resisting", "arrest", "and", "assaulting", "the", "officer", "in", "an", "incident", "at", "a", "garda", "station.", "The", "case", "against", "him", "was", "adjourned", "when", "he", "appeared", "before", "Dublin", "District", "Court", "accused", "of", "three", "offences.", "Mr", "O", "Snodaigh,", "of", "Naas", "Road,", "Dublin", "8,", "was", "summonsed", "before", "the", "court", "on", "Thursday", "to", "face", "an", "allegation", "that", "he", "assaulted", "Gda", "Niall", "Carolan", "at", "Ballymun", "Expand", "Close", "Fearghal", "O", "Snodaigh", "has", "been", "accused", "of", "assaulting", "a", "/", "Facebook", "Twitter", "Email", "Whatsapp", "Fearghal", "O", "Snodaigh", "has", "been", "accused", "of", "assaulting", "a", "garda", "The", "offence", "is", "alleged", "to", "have", "happened", "on", "February", "28", "last", "year.", "Mr", "O", "Snodaigh", "is", "further", "charged", "with", "obstructing", "Gda", "Carolan", "and", "using", "threatening,", "abusive", "and", "insulting", "words", "or", "behaviour,", "with", "intent", "to", "provoke", "a", "breach", "of", "the", "peace.", "Thursday’s", "appearance", "was", "Mr", "O", "Snodaigh’s", "first", "court", "date", "in", "relation", "to", "the", "case,", "and", "Judge", "Anthony", "Halpin", "adjourned", "it", "until", "a", "date", "next", "month,", "when", "the", "accused", "is", "expected", "to", "indicate", "whether", "he", "intends", "to", "plead", "guilty", "to", "the", "charges", "or", "contest" ], [ "Snodaigh", "is", "not", "required", "to", "be", "on", "bail", "as", "he", "was", "brought", "to", "court", "by", "way", "of", "summons", "rather", "than", "being", "formally", "charged.", "Expand", "Close", "Aengus", "Snodaigh.", "Tom" ], [ "Facebook", "Twitter", "Email", "Whatsapp", "Aengus", "Ó", "Snodaigh.", "Photo:", "Tom", "Burke", "He", "has", "not", "yet", "entered", "a", "plea", "to", "the", "charges.", "A", "section", "two", "assault", "charge,", "unlike", "the", "more", "serious", "charge", "of", "assault", "causing", "harm,", "does", "not", "allege", "any", "injury", "was", "caused", "and", "the", "maximum", "sentence", "on", "conviction", "is", "six-month", "imprisonment.", "The", "offence", "of", "obstructing", "a", "peace", "officer", "also", "carries", "a", "six", "months,", "while", "those", "found", "guilty", "of", "breaching", "the", "peace", "can", "be", "sentenced", "to", "up", "to", "three", "months.", "The", "alleged", "offences,", "all", "of", "which", "can", "only", "be", "dealt", "with", "summarily", "in", "the", "non-jury", "district", "court,", "are", "also", "punishable", "by", "fines", "on", "conviction.", "The", "accused’s", "father,", "Aengus", "O", "Snodaigh,", "has", "been", "a", "TD", "for", "Dublin", "South-Central", "since", "2002.", "Herald" ] ] ]
[ [ "en", "en", "en" ] ]
[ "mono" ]
[ [ "Șerban", "Nicolae", "(PSD):", "Protestul", "a", "fost", "inutil", "și", "nejustificat", "/", "Jandarmeria", "nu", "a", "greșit", "/", "Iohannis", "a", "instigat", "Senatorul", "social-democrat", "Şerban", "Nicolae", "îl", "acuză", "pe", "preşedintele", "Klaus", "Iohannis", "că", "a", "făcut,", "vineri", "seară,", "în", "timpul", "violenţelor", "din", "Piaţa", "Victoriei", "din", "Bucureşti,", "declaraţii", "„iresponsabile”,", "„care", "ar", "fi", "putut", "duce", "la", "subminarea", "puterii", "de", "stat”,", "transmite", "Agerpres.", "Liderul", "grupului", "parlamentar", "al", "PSD", "din", "Senat", "a", "declarat,", "sâmbătă,", "la", "Botoşani,", "că,", "prin", "intervenţiile", "de", "vineri", "seară,", "„Jandarmeria", "nu", "a", "greşit”.", "„Acţiunea", "Jandarmeriei", "în", "niciun", "caz", "nu", "este", "de", "blamat.", "Ar", "fi", "fost", "mai", "bine", "să", "nu", "apară", "violenţele", "şi", "să", "facă", "inutilă", "orice", "intervenţie", "din", "partea", "autorităţilor.", "Nu", "cred", "că", "Jandarmeria", "a", "exagerat,", "nu", "cred", "că", "a", "greşit.", "În", "schimb,", "ceea", "ce", "mi", "se", "pare", "absolut", "inadmisibil", "şi", "este", "chiar", "de", "domeniul", "penalului", "ca,", "după", "ce", "apar", "imagini", "publice", "jandarmii", "bătuţi,", "cu", "o", "femeie", "aproape", "linşată,", "îmbrăcată", "în", "uniforma", "statului,", "în", "uniforma", "autorităţii", "publice,", "preşedintele", "României", "să", "condamne", "public", "Jandarmeria.", "Mi", "s-a", "părut", "o", "declaraţie", "absolut", "iresponsabilă,", "de", "un", "cinism,", "de", "o", "ticăloşie,", "pentru", "că", "era", "o", "formă", "de", "instigare”,", "a", "afirmat", "Şerban", "Nicolae.", "În", "opinia", "sa,", "protestul", "de", "vineri", "seară", "a", "fost", "unul", "„inutil”", "şi", "„nejustificat”.", "„Protestul", "era", "unul", "nejustificat,", "dar", "respect", "dreptul", "de", "a", "protesta.", "Mă", "bat", "pentru", "chestia", "asta,", "chiar", "dacă", "e", "unul", "care", "mă", "înjură", "sau", "protestează", "împotriva", "mea.", "Protestul", "de", "ieri", "era", "absolut", "inutil.", "Nu", "văd", "ce", "ar", "avea", "de", "reproşat", "câţiva", "români,", "că", "sunt", "câţiva", "raportat", "la", "câţi", "români", "sunt", "în", "străinătate,", "Guvernului", "actual,", "că", "nu", "le", "afectează", "viaţa", "lor", "în", "niciun", "fel”,", "a", "explicat", "parlamentarul", "social-democrat." ] ]
[ [ "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "en", "en", "en", "en", "en", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "co", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro" ] ]
[ [ [ "Șerban", "Nicolae", "(PSD):", "Protestul", "a", "fost", "inutil", "și", "nejustificat", "/", "Jandarmeria", "nu", "a", "greșit", "/", "Iohannis", "a", "instigat", "Senatorul", "social-democrat", "Şerban", "Nicolae", "îl", "acuză", "pe", "preşedintele", "Klaus", "Iohannis", "că", "a", "făcut,", "vineri", "seară,", "în", "timpul", "violenţelor", "din", "Piaţa", "Victoriei", "din", "Bucureşti,", "declaraţii", "„iresponsabile”,", "„care", "ar", "fi", "putut", "duce", "la", "subminarea", "puterii", "de", "stat”,", "transmite", "Agerpres.", "Liderul", "grupului", "parlamentar", "al", "PSD", "din", "Senat", "a", "declarat,", "sâmbătă,", "la", "Botoşani,", "că,", "prin", "intervenţiile", "de", "vineri", "seară,", "„Jandarmeria", "nu", "a", "greşit”.", "„Acţiunea", "Jandarmeriei", "în", "niciun", "caz", "nu", "este", "de", "blamat.", "Ar", "fi", "fost", "mai", "bine", "să", "nu", "apară", "violenţele", "şi", "să", "facă", "inutilă", "orice", "intervenţie", "din", "partea", "autorităţilor.", "Nu", "cred", "că", "Jandarmeria", "a", "exagerat,", "nu", "cred", "că", "a", "greşit.", "În", "schimb,", "ceea", "ce", "mi", "se", "pare", "absolut", "inadmisibil", "şi", "este", "chiar", "de", "domeniul", "penalului", "ca,", "după", "ce", "apar", "imagini" ], [ "jandarmii", "bătuţi,", "cu", "o", "femeie", "aproape", "linşată,", "îmbrăcată", "în", "uniforma", "statului,", "în", "uniforma", "autorităţii", "publice,", "preşedintele", "României", "să", "condamne", "public", "Jandarmeria.", "Mi", "s-a", "părut", "o", "declaraţie", "absolut", "iresponsabilă,", "de", "un", "cinism,", "de", "o", "ticăloşie,", "pentru", "că", "era", "o", "formă", "de", "instigare”,", "a", "afirmat", "Şerban", "Nicolae.", "În", "opinia", "sa,", "protestul", "de", "vineri", "seară", "a", "fost", "unul", "„inutil”", "şi", "„nejustificat”.", "„Protestul", "era", "unul", "nejustificat,", "dar", "respect", "dreptul", "de", "a", "protesta.", "Mă", "bat", "pentru", "chestia", "asta,", "chiar", "dacă", "e", "unul", "care", "mă", "înjură", "sau", "protestează", "împotriva", "mea.", "Protestul", "de", "ieri", "era", "absolut", "inutil.", "Nu", "văd", "ce", "ar", "avea", "de", "reproşat", "câţiva", "români,", "că", "sunt", "câţiva", "raportat", "la", "câţi", "români", "sunt", "în", "străinătate,", "Guvernului", "actual,", "că", "nu", "le", "afectează", "viaţa", "lor", "în", "niciun", "fel”,", "a", "explicat", "parlamentarul", "social-democrat." ] ] ]
[ [ "ro", "ro" ] ]
[ "mono", "mono" ]
[ [ "Congress", "Talks,", "Markets", "Soar", "On", "Monday,", "the", "Dow", "Jones", "index", "plunged", "778", "points", "but", "yesterday", "it", "soared", "485", "points", "even", "though", "nothing", "changed.", "One", "of", "the", "fundamental", "concepts", "of", "economic", "theory", "is", "that", "markets", "accurately", "reflect", "the", "actual", "value", "of", "the", "item", "being", "traded.", "But", "it", "is", "hard", "to", "believe", "that", "the", "true", "value", "of", "companies", "as", "solid", "as", "Boeing,", "Disney,", "Pfizer,", "and", "Wal-Mart", "can", "change", "by", "nearly", "10%", "in", "a", "few", "hours.", "The", "Senate", "is", "likely", "to", "vote", "on", "a", "revised", "bailout", "bill", "today.", "It", "will", "probably", "have", "sweeteners", "for", "various", "groups,", "such", "as", "an", "expanded", "FDIC", "limit", "to", "protect", "depositors", "and", "make", "them", "less", "likely", "to", "cause", "a", "run", "on", "a", "bank.", "Such", "a", "bill,", "however,", "may", "draw", "new", "opposition", "in", "the", "House.", "Didn't", "Abraham", "Lincoln", "say", "something", "like:", "\"You", "can", "please", "some", "of", "the", "people", "all", "of", "the", "time", "and", "all", "of", "the", "people", "some", "of", "the", "time", "but", "you", "can't", "please", "all", "of", "the", "people", "all", "of", "the", "time\"?", "This", "bill", "is", "definitely", "not", "going", "to", "please", "all", "of", "the", "people.", "It", "is", "being", "microscopically", "crafted", "to", "please", "51", "senators", "(or", "50", "Cheney)", "and", "218", "representatives.", "But", "other", "plans", "are", "being", "circulated.", "For", "example,", "billionaire", "George", "Soros", "is", "floating", "a", "plan", "in", "which", "the", "treasury", "would", "recapitalize", "the", "failing", "banks", "by", "having", "them", "issue", "new", "stock", "that", "the", "government", "would", "buy", "at", "the", "market", "price.", "This", "scheme", "means", "that", "the", "stockholders", "of", "failing", "banks", "would", "have", "their", "stock", "watered", "down", "but", "the", "stockholders", "in", "banks", "that", "don't", "need", "assistance", "would", "be", "unaffected.", "Various", "alternative", "plans", "are", "also", "being", "suggested", "and", "opposition", "to", "it", "is", "still", "strong", "among", "conservatives.", "Why", "Democrats", "Opposed", "the", "Bailout", "The", "bailout", "bill", "was", "defeated", "in", "the", "House", "Monday", "primarily", "because", "2/3", "of", "the", "Republicans", "opposed", "it,", "despite", "John", "McCain's", "appearance", "on", "Capitol", "Hill", "to", "tell", "them", "to", "vote", "for", "it.", "Nevertheless,", "about", "40%", "of", "the", "Democrats", "voted", "against", "it,", "too.", "Why?", "The", "leader", "of", "the", "antibailout", "Democrats", "is", "Rep.", "Brad", "Sherman", "(D-CA).", "Here", "is", "the", "memo", "he", "wrote", "describing", "why", "the", "bill", "should", "be", "killed.", "Memo", "or", "no", "memo,", "all", "it", "would", "take", "to", "pass", "it", "on", "the", "second", "try", "is", "to", "get", "13", "representatives", "who", "opposed", "it", "to", "sign", "on.", "The", "simplest", "way", "would", "be", "to", "simply", "give", "each", "one", "$1", "billion", "in", "earmarks", "for", "his", "or", "her", "district.", "The", "cost", "of", "that", "is", "clear:", "$13", "billion.", "Chances", "are", "the", "administration", "will", "be", "less", "direct", "however,", "and", "incorporate", "a", "few", "meaningless", "\"improvements\"", "to", "get", "the", "13", "votes.", "This", "time", "they", "will", "count", "better", "since", "a", "second", "defeat", "would", "be", "devastating.", "Detailed", "Reactions", "to", "the", "Debate,", "Minute", "by", "Minute", "Polls", "after", "the", "debate", "showed", "that", "Obama", "won.", "But", "what", "is", "it", "that", "he", "said", "that", "people", "liked?", "To", "get", "a", "better", "idea", "of", "what", "the", "high", "and", "low", "points", "were", "for", "each", "candidate,", "the", "Nielsen", "Company", "gave", "a", "group", "of", "44", "undecided", "Nevada", "voters", "a", "device", "with", "a", "knob", "that", "could", "be", "set", "to", "any", "number", "from", "0", "to", "100.", "During", "the", "debate,", "these", "voters", "sat", "there", "furiously", "knobbing", "their", "reactions", "into", "a", "computer.", "Here", "are", "the", "minute-by-minute", "results.", "The", "best", "lines", "of", "the", "debate", "were", "Obama's", "discussion", "of", "oil", "independence", "and", "health", "care.", "Veeps", "Prepping", "for", "Tomorrow's", "Debate", "The", "two", "Vice-Presidential", "candidates,", "Biden", "and", "Sarah", "Palin", "are", "busy", "practicing", "for", "tomorrow's", "debate", "at", "Washington", "University", "in", "St.", "Louis,", "MO,", "just", "like", "college", "students", "cramming", "for", "an", "exam.", "Biden", "has", "to", "make", "sure", "he", "is", "not", "condescending", "to", "Palin,", "but", "he", "already", "knows", "all", "the", "material", "very", "well.", "After", "Palin's", "interview", "with", "Katie", "Couric,", "it", "is", "clear", "she", "has", "a", "lot", "to", "learn.", "Conservative", "columnist", "Will", "said", "Palin", "is", "not", "qualified", "to", "be", "President.", "The", "editors", "of", "Foreign", "Policy", "don't", "think", "cramming", "will", "help.", "The", "Republicans", "have", "been", "bad-mouthing", "her", "for", "days", "now", "to", "lower", "expectations", "so", "that", "if", "she", "manages", "to", "put", "both", "a", "subject", "and", "verb", "in", "50%", "of", "her", "sentences", "they", "can", "say", "she", "beat", "expectations.", "In", "truth,", "although", "she", "is", "not", "experienced", "in", "national", "affairs,", "she", "is", "not", "stupid.", "You", "can't", "be", "elected", "governor", "with", "an", "IQ", "of", "90.", "She", "is", "unlikely", "to", "make", "many", "gaffes.", "The", "real", "fear", "is", "that", "she", "will", "make", "one", "humdinger", "of", "a", "gaffe--like", "if", "the", "moderator", "asks", "whether", "she", "thinks", "part", "of", "the", "bailout", "should", "involve", "the", "issuing", "of", "warrants", "and", "she", "interprets", "this", "to", "mean", "the", "bank", "CEOs", "should", "be", "arrested", "(as", "opposed", "to", "the", "issuing", "of", "warrants", "for", "the", "treasury", "to", "buy", "their", "stock", "later).", "One", "piece", "of", "bad", "luck", "for", "Palin", "is", "that", "the", "moderator", "is", "a", "woman,", "Gwen", "Ifill,", "so", "it", "will", "be", "difficult", "for", "spinners", "to", "say", "afterwards", "that", "the", "moderator", "was", "not", "fair", "to", "her", "and", "asked", "her", "hard", "questions.", "If", "they", "try", "that,", "Ifill", "will", "be", "insulted", "and", "say:", "\"Women", "are", "just", "as", "capable", "of", "answering", "difficult", "questions", "as", "men.", "Did", "you", "want", "me", "to", "ask", "for", "her", "favorite", "cookie", "recipe?\"", "On", "the", "other", "hand,", "Ifill", "is", "black,", "so", "the", "spinners", "will", "say", "she", "was", "pro-Obama", "from", "the", "start", "and", "tried", "to", "help", "Biden.", "Race,", "identity,", "and", "experience", "are", "going", "to", "be", "mixed", "in", "strange" ], [ "ways", "tomorrow.", "Election", "Day", "is", "Here", "Voting", "has", "already", "started", "in", "a", "dozen", "in", "Ohio", "yesterday", "with", "students", "camped", "out", "the", "night", "before", "to", "be", "able", "to", "vote", "in", "the", "morning.", "Ohio", "has", "a", "1-week", "window", "when", "you", "can", "register", "and", "vote", "the", "same", "day", "and", "both", "campaigns", "are", "targeting", "it.", "Democrats", "are", "trying", "to", "get", "students", "to", "register", "and", "vote", "all", "at", "once.", "Republicans", "are", "trying", "to", "get", "elderly", "rural", "voters", "to", "do", "the", "same.", "Democrats", "are", "also", "trying", "to", "get", "the", "homeless", "to", "vote.", "You", "don't", "have", "to", "have", "a", "home", "to", "vote.", "However,", "there", "are", "fights", "in", "some", "states", "to", "make", "sure", "people", "who", "have", "been", "foreclosed", "are", "still", "considered", "state", "residents", "and", "can", "vote.", "National", "Polls", "Favor", "Obama", "All", "the", "national", "polls", "favor", "Obama", "as", "follows:", "Diageo", "(Obama", "+6),", "(Obama", "+6),", "Rasmussen", "(Obama", "+6),", "2000", "(Obama", "+10),", "and", "Washington", "Post", "(Obama", "+4).", "The", "mean", "is", "an", "Obama", "lead", "of", "6.4%.", "A", "win", "of", "6%", "in", "the", "popular", "vote", "will", "translate", "into", "winning", "all", "the", "swing", "states", "and", "an", "electoral", "college", "Intrade", "an", "Obama", "Landslide", "Today's", "electoral", "map", "from", "www.intrade.com", "predicts", "a", "landslide", "for", "Obama.", "The", "bettors", "think", "he", "will", "sweep", "all", "the", "states", "Kerry", "won", "plus", "the", "swing", "states", "of", "Florida,", "Ohio,", "Virginia,", "Colorado,", "New", "and", "Nevada.", "The", "only", "swing", "state", "bettors", "think", "McCain", "will", "take", "is", "Missouri,", "which", "ironically", "is", "the", "best", "bellwether", "since", "1900.", "If", "this", "map", "ends", "up", "being", "the", "final", "one,", "Obama", "wins", "339", "votes", "to", "McCain's", "200.", "Here", "it", "is.", "Today's", "Polls", "We", "have", "13", "presidential", "polls", "today.", "What", "they", "are", "saying", "is", "that", "Nevada,", "Ohio,", "and", "Virginia", "will", "be", "close,", "as", "expected.", "However,", "Indiana", "and", "North", "Carolina", "might", "also", "be", "surprisingly", "close,", "although", "McCain", "is", "favored", "in", "both", "of", "them.", "Still,", "two", "consecutive", "polls", "in", "North", "Carolina", "have", "said", "it", "is", "a", "statistical", "tie.", "It", "bears", "watching.", "State", "Obama", "McCain", "Pollster", "Arizona", "38%", "45%", "Sep", "25", "Sep", "28", "Arizona", "State", "U.", "Arizona", "38%", "59%", "Sep", "29", "Sep", "29", "Rasmussen", "Georgia", "44%", "52%", "Sep", "28", "Sep", "29", "SurveyUSA", "Indiana", "45%", "48%", "Sep", "28", "Sep", "29", "SurveyUSA", "North", "46%", "49%", "Sep", "27", "Sep", "29", "ARG", "Nevada", "47%", "49%", "Sep", "27", "Sep", "29", "ARG", "Ohio", "47%", "45%", "Sep", "29", "Sep", "29", "Insider", "Advantage", "Ohio", "48%", "49%", "Sep", "28", "Sep", "29", "SurveyUSA", "Oklahoma", "34%", "64%", "Sep", "28", "Sep", "29", "SurveyUSA", "Pennsylvania", "48%", "43%", "Sep", "23", "Sep", "28", "Pennsylvania", "49%", "41%", "Sep", "25", "Sep", "29", "Muhlenberg", "Coll.", "Virginia", "46%", "49%", "Sep", "27", "Sep", "29", "ARG", "Virginia", "51%", "45%", "Sep", "29", "Sep", "29", "Insider", "Advantage", "We", "also", "have", "two", "Senate", "polls.", "One", "of", "them", "is", "noteworthy.", "Sen.", "Saxby", "Chambliss", "(R-GA)", "was", "expected", "to", "cruise", "to", "an", "easy", "reelection,", "but", "Jim", "Martin", "(D)", "is", "nipping", "at", "his", "heels.", "State", "Democrat", "D-pct", "Republican", "R-pct", "Pollster", "Georgia", "Jim", "44%", "Saxby", "Chambliss*", "46%", "Sep", "28", "Sep", "29", "SurveyUSA", "Oklahoma", "Andrew", "Rice", "37%", "James", "Inhofe*", "53%", "Sep", "28", "Sep", "29", "SurveyUSA", "We", "also", "have", "three", "House", "polls.", "Joe", "Courtney", "(D)", "won", "by", "only", "87", "votes", "last", "time", "but", "he", "is", "going", "to", "win", "by", "a", "lot", "more", "this", "time.", "Similarly,", "Chris", "Carney", "(D),", "a", "former", "political", "science", "professor", "barely", "won", "last", "time", "in", "an", "R+8", "district,", "but", "the", "Republican", "brand", "is", "so", "toxic", "now", "that", "it", "looks", "like", "he", "will", "be", "reelected", "in", "a", "landslide.", "Cong.", "Distr.", "Democrat", "D-pct", "Republican", "R-pct", "Start", "End", "Pollster", "CT-02", "Joe", "Courtney*", "55%", "Sean", "Sullivan", "27%", "Sep", "22", "Sep", "28", "U.", "Connecticut", "NJ-01", "Camille", "Andrews*", "73%", "Glading", "16%", "Sep", "18", "Sep", "20", "Zogby", "PA-10", "Chris", "46%", "Christopher", "Hackett", "36%", "Sep", "21", "Sep", "25", "Lycoming", "Coll.", "If", "you", "like", "this", "Website,", "tell", "your", "friends.", "You", "can", "also", "share", "by", "clicking", "this", "button", "--", "The", "Votemaster", "Your", "donation", "is", "greatly", "appreciated.", "It", "will", "buy", "ads", "to", "publicize", "the", "site." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "pt", "pt", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "co", "co", "co", "co", "co", "co", "co", "en", "en", "en", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "es", "es", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "pt", "pt", "pt", "pt", "en", "en", "en", "en", "pt", "pt", "pt", "en", "en", "en", "en", "en", "en", "pt", "pt", "pt", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "it", "it", "en", "en", "en", "en", "co", "co", "co", "co", "co", "co", "en", "en", "en", "co", "co", "co", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "pt", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "co", "co", "co", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Congress", "Talks,", "Markets", "Soar", "On", "Monday,", "the", "Dow", "Jones", "index", "plunged", "778", "points", "but", "yesterday", "it", "soared", "485", "points", "even", "though", "nothing", "changed.", "One", "of", "the", "fundamental", "concepts", "of", "economic", "theory", "is", "that", "markets", "accurately", "reflect", "the", "actual", "value", "of", "the", "item", "being", "traded.", "But", "it", "is", "hard", "to", "believe", "that", "the", "true", "value", "of", "companies", "as", "solid", "as", "Boeing,", "Disney,", "Pfizer,", "and", "Wal-Mart", "can", "change", "by", "nearly", "10%", "in", "a", "few", "hours.", "The", "Senate", "is", "likely", "to", "vote", "on", "a", "revised", "bailout", "bill", "today.", "It", "will", "probably", "have", "sweeteners", "for", "various", "groups,", "such", "as", "an", "expanded", "FDIC", "limit", "to", "protect", "depositors", "and", "make", "them", "less", "likely", "to", "cause", "a", "run", "on", "a", "bank.", "Such", "a", "bill,", "however,", "may", "draw", "new", "opposition", "in", "the", "House.", "Didn't", "Abraham", "Lincoln", "say", "something", "like:", "\"You", "can", "please", "some", "of", "the", "people", "all", "of", "the", "time", "and", "all", "of", "the", "people", "some", "of", "the", "time", "but", "you", "can't", "please", "all", "of", "the", "people", "all", "of", "the", "time\"?", "This", "bill", "is", "definitely", "not", "going", "to", "please", "all", "of", "the", "people.", "It", "is", "being", "microscopically", "crafted", "to", "please", "51", "senators", "(or", "50", "Cheney)", "and", "218", "representatives.", "But", "other", "plans", "are", "being", "circulated.", "For", "example,", "billionaire", "George", "Soros", "is", "floating", "a", "plan", "in", "which", "the", "treasury", "would", "recapitalize", "the", "failing", "banks", "by", "having", "them", "issue", "new", "stock", "that", "the", "government", "would", "buy", "at", "the", "market", "price.", "This", "scheme", "means", "that", "the", "stockholders", "of", "failing", "banks", "would", "have", "their", "stock", "watered", "down", "but", "the", "stockholders", "in", "banks", "that", "don't", "need", "assistance", "would", "be", "unaffected.", "Various", "alternative", "plans", "are", "also", "being", "suggested", "and", "opposition", "to", "it", "is", "still", "strong", "among", "conservatives.", "Why", "Democrats", "Opposed", "the", "Bailout", "The", "bailout", "bill", "was", "defeated", "in", "the", "House", "Monday", "primarily", "because", "2/3", "of", "the", "Republicans", "opposed", "it,", "despite", "John", "McCain's", "appearance", "on", "Capitol", "Hill", "to", "tell", "them", "to", "vote", "for", "it.", "Nevertheless,", "about", "40%", "of", "the", "Democrats", "voted", "against", "it,", "too.", "Why?", "The", "leader", "of", "the", "antibailout", "Democrats", "is", "Rep.", "Brad", "Sherman", "(D-CA).", "Here", "is", "the", "memo", "he", "wrote", "describing", "why", "the", "bill", "should", "be", "killed.", "Memo", "or", "no", "memo,", "all", "it", "would", "take", "to", "pass", "it", "on", "the", "second", "try", "is", "to", "get", "13", "representatives", "who", "opposed", "it", "to", "sign", "on.", "The", "simplest", "way", "would", "be", "to", "simply", "give", "each", "one", "$1", "billion", "in", "earmarks", "for", "his", "or", "her", "district.", "The", "cost", "of", "that", "is", "clear:", "$13", "billion.", "Chances", "are", "the", "administration", "will", "be", "less", "direct", "however,", "and", "incorporate", "a", "few", "meaningless", "\"improvements\"", "to", "get", "the", "13", "votes.", "This", "time", "they", "will", "count", "better", "since", "a", "second", "defeat", "would", "be", "devastating.", "Detailed", "Reactions", "to", "the", "Debate,", "Minute", "by", "Minute", "Polls", "after", "the", "debate", "showed", "that", "Obama", "won.", "But", "what", "is", "it", "that", "he", "said", "that", "people", "liked?", "To", "get", "a", "better", "idea", "of", "what", "the", "high", "and", "low", "points", "were", "for", "each", "candidate,", "the", "Nielsen", "Company", "gave", "a", "group", "of", "44", "undecided", "Nevada", "voters", "a", "device", "with", "a", "knob", "that", "could", "be", "set", "to", "any", "number", "from", "0", "to", "100.", "During", "the", "debate,", "these", "voters", "sat", "there", "furiously", "knobbing", "their", "reactions", "into", "a", "computer.", "Here", "are", "the", "minute-by-minute", "results.", "The", "best", "lines", "of", "the", "debate", "were", "Obama's", "discussion", "of", "oil", "independence", "and", "health", "care.", "Veeps", "Prepping", "for", "Tomorrow's", "Debate", "The", "two", "Vice-Presidential", "candidates,", "Biden", "and", "Sarah", "Palin", "are", "busy", "practicing", "for", "tomorrow's", "debate", "at", "Washington", "University", "in", "St.", "Louis,", "MO,", "just", "like", "college", "students", "cramming", "for", "an", "exam.", "Biden", "has", "to", "make", "sure", "he", "is", "not", "condescending", "to", "Palin,", "but", "he", "already", "knows", "all", "the", "material", "very", "well.", "After", "Palin's", "interview", "with", "Katie", "Couric,", "it", "is", "clear", "she", "has", "a", "lot", "to", "learn.", "Conservative", "columnist", "Will", "said", "Palin", "is", "not", "qualified", "to", "be", "President.", "The", "editors", "of", "Foreign", "Policy", "don't", "think", "cramming", "will", "help.", "The", "Republicans", "have", "been", "bad-mouthing", "her", "for", "days", "now", "to", "lower", "expectations", "so", "that", "if", "she", "manages", "to", "put", "both", "a", "subject", "and", "verb", "in", "50%", "of", "her", "sentences", "they", "can", "say", "she", "beat", "expectations.", "In", "truth,", "although", "she", "is", "not", "experienced", "in", "national", "affairs,", "she", "is", "not", "stupid.", "You", "can't", "be", "elected", "governor", "with", "an", "IQ", "of", "90.", "She", "is", "unlikely", "to", "make", "many", "gaffes.", "The", "real", "fear", "is", "that", "she", "will", "make", "one", "humdinger", "of", "a", "gaffe--like", "if", "the", "moderator", "asks", "whether", "she", "thinks", "part", "of", "the", "bailout", "should", "involve", "the", "issuing", "of", "warrants", "and", "she", "interprets", "this", "to", "mean", "the", "bank", "CEOs", "should", "be", "arrested", "(as", "opposed", "to", "the", "issuing", "of", "warrants", "for", "the", "treasury", "to", "buy", "their", "stock", "later).", "One", "piece", "of", "bad", "luck", "for", "Palin", "is", "that", "the", "moderator", "is", "a", "woman,", "Gwen", "Ifill,", "so", "it", "will", "be", "difficult", "for", "spinners", "to", "say", "afterwards", "that", "the", "moderator", "was", "not", "fair", "to", "her", "and", "asked", "her", "hard", "questions.", "If", "they", "try", "that,", "Ifill", "will", "be", "insulted", "and", "say:", "\"Women", "are", "just", "as", "capable", "of", "answering", "difficult", "questions", "as", "men.", "Did", "you", "want", "me", "to", "ask", "for", "her", "favorite", "cookie", "recipe?\"", "On", "the", "other", "hand,", "Ifill", "is", "black,", "so", "the", "spinners", "will", "say", "she", "was", "pro-Obama", "from", "the", "start", "and", "tried", "to", "help", "Biden.", "Race,", "identity,", "and", "experience", "are", "going", "to", "be", "mixed", "in", "strange" ] ], [ [ "ways", "tomorrow.", "Election", "Day", "is", "Here", "Voting", "has", "already", "started", "in", "a", "dozen", "in", "Ohio", "yesterday", "with", "students", "camped", "out", "the", "night", "before", "to", "be", "able", "to", "vote", "in", "the", "morning.", "Ohio", "has", "a", "1-week", "window", "when", "you", "can", "register", "and", "vote", "the", "same", "day", "and", "both", "campaigns", "are", "targeting", "it.", "Democrats", "are", "trying", "to", "get", "students", "to", "register", "and", "vote", "all", "at", "once.", "Republicans", "are", "trying", "to", "get", "elderly", "rural", "voters", "to", "do", "the", "same.", "Democrats", "are", "also", "trying", "to", "get", "the", "homeless", "to", "vote.", "You", "don't", "have", "to", "have", "a", "home", "to", "vote.", "However,", "there", "are", "fights", "in", "some", "states", "to", "make", "sure", "people", "who", "have", "been", "foreclosed", "are", "still", "considered", "state", "residents", "and", "can", "vote.", "National", "Polls", "Favor", "Obama", "All", "the", "national", "polls", "favor", "Obama", "as", "follows:", "Diageo", "(Obama", "+6),", "(Obama", "+6),", "Rasmussen", "(Obama", "+6),", "2000", "(Obama", "+10),", "and", "Washington", "Post", "(Obama", "+4).", "The", "mean", "is", "an", "Obama", "lead", "of", "6.4%.", "A", "win", "of", "6%", "in", "the", "popular", "vote", "will", "translate", "into", "winning", "all", "the", "swing", "states", "and", "an", "electoral", "college", "Intrade", "an", "Obama", "Landslide", "Today's", "electoral", "map", "from", "www.intrade.com", "predicts", "a", "landslide", "for", "Obama.", "The", "bettors", "think", "he", "will", "sweep", "all", "the", "states", "Kerry", "won", "plus", "the", "swing", "states", "of", "Florida,", "Ohio,", "Virginia,", "Colorado,", "New", "and", "Nevada.", "The", "only", "swing", "state", "bettors", "think", "McCain", "will", "take", "is", "Missouri,", "which", "ironically", "is", "the", "best", "bellwether", "since", "1900.", "If", "this", "map", "ends", "up", "being", "the", "final", "one,", "Obama", "wins", "339", "votes", "to", "McCain's", "200.", "Here", "it", "is.", "Today's", "Polls", "We", "have", "13", "presidential", "polls", "today.", "What", "they", "are", "saying", "is", "that", "Nevada,", "Ohio,", "and", "Virginia", "will", "be", "close,", "as", "expected.", "However,", "Indiana", "and", "North", "Carolina", "might", "also", "be", "surprisingly", "close,", "although", "McCain", "is", "favored", "in", "both", "of", "them.", "Still,", "two", "consecutive", "polls", "in", "North", "Carolina", "have", "said", "it", "is", "a", "statistical", "tie.", "It", "bears", "watching.", "State", "Obama", "McCain", "Pollster", "Arizona", "38%", "45%", "Sep", "25", "Sep", "28", "Arizona", "State", "U.", "Arizona", "38%", "59%", "Sep", "29", "Sep", "29", "Rasmussen", "Georgia", "44%", "52%", "Sep", "28", "Sep", "29", "SurveyUSA", "Indiana", "45%", "48%", "Sep", "28", "Sep", "29", "SurveyUSA", "North", "46%", "49%", "Sep", "27", "Sep", "29", "ARG", "Nevada", "47%", "49%", "Sep", "27", "Sep", "29", "ARG", "Ohio", "47%", "45%", "Sep", "29", "Sep", "29", "Insider", "Advantage", "Ohio", "48%", "49%", "Sep", "28", "Sep", "29", "SurveyUSA", "Oklahoma", "34%", "64%", "Sep", "28", "Sep", "29", "SurveyUSA", "Pennsylvania", "48%", "43%", "Sep", "23", "Sep", "28", "Pennsylvania", "49%", "41%", "Sep", "25", "Sep", "29", "Muhlenberg", "Coll.", "Virginia", "46%", "49%", "Sep", "27", "Sep", "29", "ARG", "Virginia", "51%", "45%", "Sep", "29", "Sep", "29", "Insider", "Advantage", "We", "also", "have", "two", "Senate", "polls.", "One", "of", "them", "is", "noteworthy.", "Sen.", "Saxby", "Chambliss", "(R-GA)", "was", "expected", "to", "cruise", "to", "an", "easy", "reelection,", "but", "Jim", "Martin", "(D)", "is", "nipping", "at", "his", "heels.", "State", "Democrat", "D-pct", "Republican", "R-pct", "Pollster", "Georgia", "Jim", "44%", "Saxby", "Chambliss*", "46%", "Sep", "28", "Sep", "29", "SurveyUSA", "Oklahoma", "Andrew", "Rice", "37%", "James", "Inhofe*", "53%", "Sep", "28", "Sep", "29", "SurveyUSA", "We", "also", "have", "three", "House", "polls.", "Joe", "Courtney", "(D)", "won", "by", "only", "87", "votes", "last", "time", "but", "he", "is", "going", "to", "win", "by", "a", "lot", "more", "this", "time.", "Similarly,", "Chris", "Carney", "(D),", "a", "former", "political", "science", "professor", "barely", "won", "last", "time", "in", "an", "R+8", "district,", "but", "the", "Republican", "brand", "is", "so", "toxic", "now", "that", "it", "looks", "like", "he", "will", "be", "reelected", "in", "a", "landslide.", "Cong.", "Distr.", "Democrat", "D-pct", "Republican", "R-pct", "Start", "End", "Pollster", "CT-02", "Joe", "Courtney*", "55%", "Sean", "Sullivan", "27%", "Sep", "22", "Sep", "28", "U.", "Connecticut", "NJ-01", "Camille", "Andrews*", "73%", "Glading", "16%", "Sep", "18", "Sep", "20", "Zogby", "PA-10", "Chris", "46%", "Christopher", "Hackett", "36%", "Sep", "21", "Sep", "25", "Lycoming", "Coll.", "If", "you", "like", "this", "Website,", "tell", "your", "friends.", "You", "can", "also", "share", "by", "clicking", "this", "button", "--", "The", "Votemaster", "Your", "donation", "is", "greatly", "appreciated.", "It", "will", "buy", "ads", "to", "publicize", "the", "site." ] ] ]
[ [ "en" ], [ "en" ] ]
[ "mono", "mono" ]
[ [ "Orlando", "may", "be", "known", "as", "the", "“Theme", "Park", "Capital", "of", "the", "World,”", "but", "the", "world-famous", "theme", "parks", "are", "not", "the", "only", "thing", "that’s", "great", "about", "this", "place.", "One", "of", "the", "reasons", "you", "might", "want", "to", "visit", "Orlando,", "and", "even", "want", "to", "move", "here,", "is", "the", "plethora", "of", "dining", "spots", "that", "makes", "this", "city", "a", "gastronomical", "haven.", "There’s", "at", "least", "one", "culinary", "place", "that", "would", "satisfy", "your", "every", "craving.", "Here’s", "our", "top", "ten", "list", "of", "the", "best", "restaurants", "in", "Orlando,", "FL:", "4", "Rivers", "Smokehouse", "It", "all", "started", "out", "John", "Rivers,", "who", "spent", "almost", "two", "decades", "perfecting", "his", "own", "dry", "rub", "after", "he", "fell", "in", "love", "with", "brisket", "during", "a", "visit", "to", "his", "wife’s", "family", "in", "Texas.", "He", "then", "started", "serving", "his", "signature", "brisket", "at", "family", "functions", "and", "community", "events.", "And", "not", "long", "after,", "he", "has", "his", "own", "restaurant", "with", "a", "strong", "following.", "4", "Rivers", "Smokehouse", "is", "the", "place", "you", "go", "to", "when", "you", "want", "to", "have", "a", "taste", "of", "the", "best", "barbeque", "in", "Central", "Florida.", "It’s", "tender,", "smokey", "meat", "with", "and", "country", "sides", "are", "the", "ultimate", "southern", "comfort", "food", "that", "will", "make", "you", "come", "back", "for", "more.", "Pizza", "Bruno", "Pizza", "Bruno", "family-style", "neighborhood", "pizza", "joint", "that", "specialized", "in", "traditional", "Neapolitan-style", "pizza.", "The", "secret", "lies", "in", "the", "dough,", "and", "this", "Italian", "pizzeria", "has", "mastered", "the", "perfect", "crust", "–", "chewy", "yet", "crispy,", "leopard", "spotted", "char", "bursting", "with", "a", "unique", "wood", "fired", "flavor.", "Order", "the", "classic", "original", "pizza", "or", "get", "a", "bit", "adventurous", "and", "ask", "for", "their", "pizza", "of", "the", "month!", "Tako", "Cheena", "Craving", "for", "tacos", "in", "the", "wee", "hours", "of", "the", "night?", "Tako", "Cheena", "is", "the", "ultimate", "place", "to", "get", "a", "taco", "fix.", "No,", "it’s", "not", "your", "typical", "Mexican", "restaurant.", "It’s", "Pan-Asian", "flavors", "presented", "in", "Latin", "American", "style", "–", "the", "perfect", "fusion", "for", "adventurous", "foodies.", "Their", "signature", "“takos”", "are", "infused", "with", "unique", "flavors", "from", "Japan", "(Panko", "Crusted", "Cod),", "China", "BBQ", "Char", "Siu", "Belly),", "and", "Thailand", "(Tom", "Yum", "Mojo", "Shrimp).", "And", "their", "Indian", "Burritos", "and", "Korean", "Burritos", "are", "definitely", "worth", "trying.", "Cedar", "Key", "ClamsSautéed", "little", "in", "a", "&", "buerre", "blanc", "w/", "garlic", "frosting", "crostini.", "Posted", "by", "Chefs", "Table", "at", "the", "Edgewater", "on", "Saturday,", "August", "27,", "2016", "The", "Chef’s", "Table", "at", "the", "Edgewater", "Hotel", "Five", "words:", "One", "of", "America’s", "Top", "Restaurants.", "The", "Chef’s", "Table", "at", "the", "Edgewater", "Hotel", "is", "an", "intimate", "gourmet", "restaurant", "that", "boasts", "of", "a", "long", "list", "of", "awards", "and", "commendations.", "This", "upscale", "dining", "place", "is", "located", "in", "historic", "Winter", "Garden,", "and", "is", "just", "a", "few", "miles", "from", "Orlando’s", "theme", "parks.", "Gastronomers", "from", "all", "over", "the", "world", "come", "here", "for", "the", "superb", "cuisine", "and", "excellent", "wine.", "The", "Sanctum", "Café", "The", "Sanctum", "Café", "is", "a", "modern,", "vegan", "and", "vegetarian", "restaurant", "that", "serves", "delicious,", "plant-based", "food", "made", "from", "fresh", "ingredients", "harvested", "and", "prepared", "by", "local", "farmers", "and", "artisans.", "Expect", "to", "see", "a", "beautiful", "array", "of", "colors", "in", "your", "bowl.", "The", "food", "here", "is", "as", "beautiful", "as", "it", "scrumptious!", "They", "also", "serve", "organic", "juice", "and", "organic", "coffee.", "Kadence", "For", "the", "ultimate", "sushi", "experience,", "visit", "Kadence", "in", "Orlando,", "Florida.", "This", "Michelin-rated,", "nine-seat", "sushi", "and", "sake", "bar", "offers", "a", "mesmerizing", "omakase", "menu", "consisting", "of", "a", "multi-course", "sushi", "tasting", "featuring", "the", "highest", "quality", "selection", "of", "seasonal", "fish.", "There’s", "a", "wide", "selection", "of", "sake,", "cocktails,", "and", "Japanese", "beer", "as", "well,", "three", "full", "pages", "to", "choose", "from.", "Enzo’s", "on", "the", "Lake", "Open", "Table,", "a", "popular", "online", "restaurant", "reservation", "service,", "recently", "released", "their", "list", "of", "“100", "most", "romantic", "in", "restaurants", "in", "America", "for", "2018,”", "and", "this", "lovely", "restaurant", "made", "the", "cut.", "Enzo’s", "on", "the", "Lake", "used", "to", "be", "a", "historic", "home", "overlooking", "the", "lake.", "Now", "an", "upscale", "Italian", "restaurant,", "Enzo’s", "offers", "an", "ideal", "setting", "for", "a", "romantic", "date", "or", "an", "indulgent", "meal", "with", "close", "friends.", "Everything", "on", "the", "menu", "is", "prepared", "from", "scratch,", "using", "only", "the", "finest", "quality", "and", "fresh", "ingredients.", "A", "must-try", "is", "their", "Bucatini", "Enzo", "–", "large", "hollow", "noodles", "tossed", "with", "prosciutto,", "peas,", "mushrooms,", "bacon,", "and", "parmesan", "in", "a", "light", "sauce.", "Make", "sure", "you", "make", "room", "for", "dessert.", "The", "house", "made", "organic", "carrot", "cake", "is", "truly", "delectable!", "Café", "de", "France", "This", "cozy", "traditional", "bistro", "Avenue,", "Orlando’s", "European-looking,", "cobblestoned", "street,", "serves", "the", "finest", "French", "cuisine", "and", "world", "class", "wine", "pairings", "in", "the", "area.", "Owned", "and", "operated", "by", "French", "natives,", "everything", "on", "Cafe", "de", "France’s", "menu", "is", "prepared", "in", "classic", "French", "style,", "using", "only", "the", "freshest", "ingredients", "available,", "from", "the", "luscious", "lamb" ], [ ",", "served", "sandwich-style", "at", "lunch", "to", "its", "succulent", "braised", "shank", "for", "dinner.", "Santiago’s", "Bodega", "Santiago’s", "Bodega", "is", "the", "perfect", "place", "to", "enjoy", "an", "all-you-can-eat-and-drink", "brunch", "buffet", "over", "the", "weekend,", "where", "you", "can", "choose", "from", "a", "wide", "array", "of", "food", "from", "steam-tables", "and", "carving", "stations,", "as", "well", "omelets,", "waffles,", "and", "other", "comestibles.", "This", "art-filled", "resto", "with", "an", "open-air", "patio", "is", "ideal", "for", "large", "groups", "who", "want", "to", "sample", "the", "breadth", "of", "the", "menu,", "including", "its", "mouthwatering", "tapas,", "prime", "ribs,", "crab", "legs,", "biscuits", "and", "gravy,", "pasta", "and,", "of", "course,", "Mimosas,", "sangrias,", "and", "wines", "are", "bottomless,", "too!", "The", "Ravenous", "Pig", "The", "Ravenous", "Pig", "is", "one", "of", "Orlando’s", "most", "popular", "by", "James", "Beard-nominees", "James", "and", "Julie", "Petrakis.", "This", "husband-and-wife", "chef", "team", "has", "turned", "this", "Euro-American", "gastropub", "into", "a", "must-visit", "for", "both", "locals", "and", "tourists,", "with", "their", "signature", "delicacies", "like", "pork", "porterhouse", "and", "the", "pub", "burger.", "The", "menu", "changes", "every", "day,", "including", "an", "ever-changing", "charcuterie", "board", "and", "seasonal", "seafood", "creations.", "All", "charcuterie", "is", "made", "in-house,", "from", "spiced", "orange", "salami", "to", "game-bird", "terrine.", "If", "you’re", "coming", "here", "for", "lunch,", "make", "sure", "to", "try", "the", "pub", "burger", "with", "black", "Angus", "brisket", "on", "a", "brioche", "bun.", "There", "you", "have", "it,", "our", "list", "of", "the", "ten", "best", "restaurants", "in", "Orlando,", "Florida.", "There’s", "more", "to", "this", "list", "and", "you", "can", "enjoy", "them", "all", "if", "you", "move", "to", "this", "amazing", "city", "that’s", "full", "of", "so", "much", "fun", "and", "gastronomical", "spots.", "Imagine", "waking", "up", "every", "day", "knowing", "that", "you’re", "just", "a", "few", "miles", "away", "from", "all", "the", "world-class", "theme", "parks", "and", "attractions,", "and", "all", "the", "popular", "food", "places", "not", "just", "in", "the", "city", "but", "in", "the", "whole", "of", "the", "United", "States!", "If", "you’re", "ready", "to", "explore", "your", "options", "here,", "I", "will", "be", "more", "than", "happy", "to", "help.", "Please", "feel", "free", "to", "call", "me", "at", "(407)", "388-4427", "or", "send", "me", "an", "email", "at", "[email", "protected]." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "es", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "it", "it", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "es", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "pt", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Orlando", "may", "be", "known", "as", "the", "“Theme", "Park", "Capital", "of", "the", "World,”", "but", "the", "world-famous", "theme", "parks", "are", "not", "the", "only", "thing", "that’s", "great", "about", "this", "place.", "One", "of", "the", "reasons", "you", "might", "want", "to", "visit", "Orlando,", "and", "even", "want", "to", "move", "here,", "is", "the", "plethora", "of", "dining", "spots", "that", "makes", "this", "city", "a", "gastronomical", "haven.", "There’s", "at", "least", "one", "culinary", "place", "that", "would", "satisfy", "your", "every", "craving.", "Here’s", "our", "top", "ten", "list", "of", "the", "best", "restaurants", "in", "Orlando,", "FL:", "4", "Rivers", "Smokehouse", "It", "all", "started", "out", "John", "Rivers,", "who", "spent", "almost", "two", "decades", "perfecting", "his", "own", "dry", "rub", "after", "he", "fell", "in", "love", "with", "brisket", "during", "a", "visit", "to", "his", "wife’s", "family", "in", "Texas.", "He", "then", "started", "serving", "his", "signature", "brisket", "at", "family", "functions", "and", "community", "events.", "And", "not", "long", "after,", "he", "has", "his", "own", "restaurant", "with", "a", "strong", "following.", "4", "Rivers", "Smokehouse", "is", "the", "place", "you", "go", "to", "when", "you", "want", "to", "have", "a", "taste", "of", "the", "best", "barbeque", "in", "Central", "Florida.", "It’s", "tender,", "smokey", "meat", "with", "and", "country", "sides", "are", "the", "ultimate", "southern", "comfort", "food", "that", "will", "make", "you", "come", "back", "for", "more.", "Pizza", "Bruno", "Pizza", "Bruno", "family-style", "neighborhood", "pizza", "joint", "that", "specialized", "in", "traditional", "Neapolitan-style", "pizza.", "The", "secret", "lies", "in", "the", "dough,", "and", "this", "Italian", "pizzeria", "has", "mastered", "the", "perfect", "crust", "–", "chewy", "yet", "crispy,", "leopard", "spotted", "char", "bursting", "with", "a", "unique", "wood", "fired", "flavor.", "Order", "the", "classic", "original", "pizza", "or", "get", "a", "bit", "adventurous", "and", "ask", "for", "their", "pizza", "of", "the", "month!", "Tako", "Cheena", "Craving", "for", "tacos", "in", "the", "wee", "hours", "of", "the", "night?", "Tako", "Cheena", "is", "the", "ultimate", "place", "to", "get", "a", "taco", "fix.", "No,", "it’s", "not", "your", "typical", "Mexican", "restaurant.", "It’s", "Pan-Asian", "flavors", "presented", "in", "Latin", "American", "style", "–", "the", "perfect", "fusion", "for", "adventurous", "foodies.", "Their", "signature", "“takos”", "are", "infused", "with", "unique", "flavors", "from", "Japan", "(Panko", "Crusted", "Cod),", "China", "BBQ", "Char", "Siu", "Belly),", "and", "Thailand", "(Tom", "Yum", "Mojo", "Shrimp).", "And", "their", "Indian", "Burritos", "and", "Korean", "Burritos", "are", "definitely", "worth", "trying.", "Cedar", "Key", "ClamsSautéed", "little", "in", "a", "&", "buerre", "blanc", "w/", "garlic", "frosting", "crostini.", "Posted", "by", "Chefs", "Table", "at", "the", "Edgewater", "on", "Saturday,", "August", "27,", "2016", "The", "Chef’s", "Table", "at", "the", "Edgewater", "Hotel", "Five", "words:", "One", "of", "America’s", "Top", "Restaurants.", "The", "Chef’s", "Table", "at", "the", "Edgewater", "Hotel", "is", "an", "intimate", "gourmet", "restaurant", "that", "boasts", "of", "a", "long", "list", "of", "awards", "and", "commendations.", "This", "upscale", "dining", "place", "is", "located", "in", "historic", "Winter", "Garden,", "and", "is", "just", "a", "few", "miles", "from", "Orlando’s", "theme", "parks.", "Gastronomers", "from", "all", "over", "the", "world", "come", "here", "for", "the", "superb", "cuisine", "and", "excellent", "wine.", "The", "Sanctum", "Café", "The", "Sanctum", "Café", "is", "a", "modern,", "vegan", "and", "vegetarian", "restaurant", "that", "serves", "delicious,", "plant-based", "food", "made", "from", "fresh", "ingredients", "harvested", "and", "prepared", "by", "local", "farmers", "and", "artisans.", "Expect", "to", "see", "a", "beautiful", "array", "of", "colors", "in", "your", "bowl.", "The", "food", "here", "is", "as", "beautiful", "as", "it", "scrumptious!", "They", "also", "serve", "organic", "juice", "and", "organic", "coffee.", "Kadence", "For", "the", "ultimate", "sushi", "experience,", "visit", "Kadence", "in", "Orlando,", "Florida.", "This", "Michelin-rated,", "nine-seat", "sushi", "and", "sake", "bar", "offers", "a", "mesmerizing", "omakase", "menu", "consisting", "of", "a", "multi-course", "sushi", "tasting", "featuring", "the", "highest", "quality", "selection", "of", "seasonal", "fish.", "There’s", "a", "wide", "selection", "of", "sake,", "cocktails,", "and", "Japanese", "beer", "as", "well,", "three", "full", "pages", "to", "choose", "from.", "Enzo’s", "on", "the", "Lake", "Open", "Table,", "a", "popular", "online", "restaurant", "reservation", "service,", "recently", "released", "their", "list", "of", "“100", "most", "romantic", "in", "restaurants", "in", "America", "for", "2018,”", "and", "this", "lovely", "restaurant", "made", "the", "cut.", "Enzo’s", "on", "the", "Lake", "used", "to", "be", "a", "historic", "home", "overlooking", "the", "lake.", "Now", "an", "upscale", "Italian", "restaurant,", "Enzo’s", "offers", "an", "ideal", "setting", "for", "a", "romantic", "date", "or", "an", "indulgent", "meal", "with", "close", "friends.", "Everything", "on", "the", "menu", "is", "prepared", "from", "scratch,", "using", "only", "the", "finest", "quality", "and", "fresh", "ingredients.", "A", "must-try", "is", "their", "Bucatini", "Enzo", "–", "large", "hollow", "noodles", "tossed", "with", "prosciutto,", "peas,", "mushrooms,", "bacon,", "and", "parmesan", "in", "a", "light", "sauce.", "Make", "sure", "you", "make", "room", "for", "dessert.", "The", "house", "made", "organic", "carrot", "cake", "is", "truly", "delectable!", "Café", "de", "France", "This", "cozy", "traditional", "bistro", "Avenue,", "Orlando’s", "European-looking,", "cobblestoned", "street,", "serves", "the", "finest", "French", "cuisine", "and", "world", "class", "wine", "pairings", "in", "the", "area.", "Owned", "and", "operated", "by", "French", "natives,", "everything", "on", "Cafe", "de", "France’s", "menu", "is", "prepared", "in", "classic", "French", "style,", "using", "only", "the", "freshest", "ingredients", "available,", "from", "the", "luscious", "lamb" ] ], [ [ ",", "served", "sandwich-style", "at", "lunch", "to", "its", "succulent", "braised", "shank", "for", "dinner." ], [ "Bodega", "is", "the", "perfect", "place", "to", "enjoy", "an", "all-you-can-eat-and-drink", "brunch", "buffet", "over", "the", "weekend,", "where", "you", "can", "choose", "from", "a", "wide", "array", "of", "food", "from", "steam-tables", "and", "carving", "stations,", "as", "well", "omelets,", "waffles,", "and", "other", "comestibles.", "This", "art-filled", "resto", "with", "an", "open-air", "patio", "is", "ideal", "for", "large", "groups", "who", "want", "to", "sample", "the", "breadth", "of", "the", "menu,", "including", "its", "mouthwatering", "tapas,", "prime", "ribs,", "crab", "legs,", "biscuits", "and", "gravy,", "pasta", "and,", "of", "course," ], [ "sangrias,", "and", "wines", "are", "bottomless,", "too!", "The", "Ravenous", "Pig", "The", "Ravenous", "Pig", "is", "one", "of", "Orlando’s", "most", "popular", "by", "James", "Beard-nominees", "James", "and", "Julie", "Petrakis.", "This", "husband-and-wife", "chef", "team", "has", "turned", "this", "Euro-American", "gastropub", "into", "a", "must-visit", "for", "both", "locals", "and", "tourists,", "with", "their", "signature", "delicacies", "like", "pork", "porterhouse", "and", "the", "pub", "burger.", "The", "menu", "changes", "every", "day,", "including", "an", "ever-changing", "charcuterie", "board", "and", "seasonal", "seafood", "creations.", "All", "charcuterie", "is", "made", "in-house,", "from", "spiced", "orange", "salami", "to", "game-bird", "terrine.", "If", "you’re", "coming", "here", "for", "lunch,", "make", "sure", "to", "try", "the", "pub", "burger", "with", "black", "Angus", "brisket", "on", "a", "brioche", "bun.", "There", "you", "have", "it,", "our", "list", "of", "the", "ten", "best", "restaurants", "in", "Orlando,", "Florida.", "There’s", "more", "to", "this", "list", "and", "you", "can", "enjoy", "them", "all", "if", "you", "move", "to", "this", "amazing", "city", "that’s", "full", "of", "so", "much", "fun", "and", "gastronomical", "spots.", "Imagine", "waking", "up", "every", "day", "knowing", "that", "you’re", "just", "a", "few", "miles", "away", "from", "all", "the", "world-class", "theme", "parks", "and", "attractions,", "and", "all", "the", "popular", "food", "places", "not", "just", "in", "the", "city", "but", "in", "the", "whole", "of", "the", "United", "States!", "If", "you’re", "ready", "to", "explore", "your", "options", "here,", "I", "will", "be", "more", "than", "happy", "to", "help.", "Please", "feel", "free", "to", "call", "me", "at", "(407)", "388-4427", "or", "send", "me", "an", "email", "at", "[email", "protected]." ] ] ]
[ [ "en" ], [ "en", "en", "en" ] ]
[ "mono" ]
[ [ "Big", "Game", "Theory", "If", "trophy", "hunting", "is", "banned", "in", "Africa,", "would", "lions", "be", "more", "or", "less", "at", "risk?" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Big", "Game", "Theory", "If", "trophy", "hunting", "is", "banned", "in", "Africa,", "would", "lions", "be", "more", "or", "less", "at", "risk?" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Hundreds", "of", "articles", "left", "by", "U.S.", "correspondent", "return", "to", "21,", "2016", "07:02.", "by", "Tae-Ho", "Hwang", "[email protected].", "Hundreds", "of", "pieces", "of", "items", "related", "to", "Dilkusha", "(see", "photo)", "including", "those", "left", "by", "Albert", "Taylor", "and", "his", "wife", "have", "returned", "to", "Korea.", "Albert", "Taylor", "was", "a", "United", "Press", "International’s", "Seoul", "correspondent", "who", "reported", "the", "March", "1", "independent", "movement", "against", "Japanese", "colonial", "rule", "and", "the", "massacre", "in", "a", "church", "in", "Jaeamri.", "Dilkusa", "is", "a", "two-story", "residence", "with", "a", "basement", "in", "Seoul", "and", "he", "lived", "in", "the", "house", "for", "almost", "20", "years", "until", "1942.", "The", "Seoul", "Museum", "of", "History", "said", "on", "Tuesday", "that", "Jennifer", "Albert’s", "granddaughter,", "donated", "a", "total", "of", "451", "pieces", "of", "items", "including", "14", "photo", "albums,", "79", "paintings", "and", "167", "artifacts", "to", "the", "museum.", "Before", "this,", "she", "donated", "57", "pieces", "of", "items", "when", "she", "visited", "Korea", "in", "February", "this", "year.", "Dilkusha", "means", "“palace", "of", "hope”", "or", "“heart’s", "delight”", "in", "Hindi.", "The", "donated", "items", "include", "the", "exterior", "and", "interior", "pictures", "of", "the", "residence", "under", "the", "Japan-occupied", "Korea,", "documents", "related", "to", "the", "gold", "mining", "business", "that", "Taylor", "did", "as", "a", "side", "job", "to", "a", "reporter,", "and", "the", "draft", "of", "“Chain", "of", "Amber,”", "an", "autobiography", "written", "by", "his", "wife,", "Mary", "Taylor.", "“The", "donated", "items", "has", "a", "high", "research", "value", "as", "they", "show", "foreigners’", "life", "in", "Seoul", "at", "the", "end", "of", "the", "Joseon", "Dynasty", "and", "under", "the", "Japanese", "colonial", "rule", "and", "goldmining", "on", "the", "Korean", "peninsula,”", "said", "Song", "In-ho,", "head", "of", "the", "Seoul", "Museum", "of", "History.", "The", "museum", "will", "hold", "a", "special", "exhibition", "in", "2018", "after", "preparations,", "and", "the", "exhibition", "will", "move", "to", "Dilkusha", "once", "the", "residence", "is", "restored", "in", "2019." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Hundreds", "of", "articles", "left", "by", "U.S.", "correspondent", "return", "to", "21,", "2016", "07:02.", "by", "Tae-Ho", "Hwang", "[email protected].", "Hundreds", "of", "pieces", "of", "items", "related", "to", "Dilkusha", "(see", "photo)", "including", "those", "left", "by", "Albert", "Taylor", "and", "his", "wife", "have", "returned", "to", "Korea.", "Albert", "Taylor", "was", "a", "United", "Press", "International’s", "Seoul", "correspondent", "who", "reported", "the", "March", "1", "independent", "movement", "against", "Japanese", "colonial", "rule", "and", "the", "massacre", "in", "a", "church", "in", "Jaeamri.", "Dilkusa", "is", "a", "two-story", "residence", "with", "a", "basement", "in", "Seoul", "and", "he", "lived", "in", "the", "house", "for", "almost", "20", "years", "until", "1942.", "The", "Seoul", "Museum", "of", "History", "said", "on", "Tuesday", "that", "Jennifer", "Albert’s", "granddaughter,", "donated", "a", "total", "of", "451", "pieces", "of", "items", "including", "14", "photo", "albums,", "79", "paintings", "and", "167", "artifacts", "to", "the", "museum.", "Before", "this,", "she", "donated", "57", "pieces", "of", "items", "when", "she", "visited", "Korea", "in", "February", "this", "year.", "Dilkusha", "means", "“palace", "of", "hope”", "or", "“heart’s", "delight”", "in", "Hindi.", "The", "donated", "items", "include", "the", "exterior", "and", "interior", "pictures", "of", "the", "residence", "under", "the", "Japan-occupied", "Korea,", "documents", "related", "to", "the", "gold", "mining", "business", "that", "Taylor", "did", "as", "a", "side", "job", "to", "a", "reporter,", "and", "the", "draft", "of", "“Chain", "of", "Amber,”", "an", "autobiography", "written", "by", "his", "wife,", "Mary", "Taylor.", "“The", "donated", "items", "has", "a", "high", "research", "value", "as", "they", "show", "foreigners’", "life", "in", "Seoul", "at", "the", "end", "of", "the", "Joseon", "Dynasty", "and", "under", "the", "Japanese", "colonial", "rule", "and", "goldmining", "on", "the", "Korean", "peninsula,”", "said", "Song", "In-ho,", "head", "of", "the", "Seoul", "Museum", "of", "History.", "The", "museum", "will", "hold", "a", "special", "exhibition", "in", "2018", "after", "preparations,", "and", "the", "exhibition", "will", "move", "to", "Dilkusha", "once", "the", "residence", "is", "restored", "in", "2019." ] ] ]
[ [ "en" ] ]
[ "mono", "mono" ]
[ [ "O", "apresentador", "Fernando", "Rocha", "ao", "lado", "do", "Dr.", "Kalil.", "Foto:", "Reprodução", "de", "'Bem-Estar'", "(2018)", "/", "TV", "Globo", "O", "apresentador", "do", "programa", "Bem", "Estar,", "da", "Globo,", "Fernando", "Rocha,", "chamou", "atenção", "nas", "redes", "sociais", "após", "uma", "piada", "inusitada", "-", "e", "até", "um", "tanto", "quanto", "constrangedora", "-", "contada", "por", "ele", "no", "início", "da", "edição", "da", "última", "terça-feira,", "24.", "Logo", "de", "cara,", "na", "introdução", "do", "programa,", "começou:", "\"Todo", "mundo", "sabe,", "desde", "que", "o", "mundo", "é", "mundo,", "que", "a", "vida", "é", "feita", "de", "encontros", "e", "despedidas.", "Despedidas", "são", "mais", "tristes,", "emocionantes,", "né?", "Fiquei", "sabendo", "de", "uma", "história", "de", "despedida", "tão", "emocionante,", "tão", "sofrida\".", "\"Sabe", "qual?", "A", "despedida", "da", "clara", "com", "o", "ovo\",", "disse,", "começando", "a", "rir,", "antes", "de", "complementar:", "\"Mas", "aí", "ela", "só", "não", "é", "tão", "triste", "porque", "a", "clara", "chega", "pro", "ovo", "e", "fala", "assim:", "'Não", "fica", "triste,", "não.", "A", "gente", "se", "vê", "dentro", "do", "bolo!\".", "Neste", "momento,", "Fernando", "começou", "a", "gargalhar.", "\"'A", "gente", "vai", "se", "encontrar", "dentro", "do", "bolo!'", "Agora", "você", "imagina", "o", "encontro", "da", "clara", "com", "o", "ovo", "dentro", "do", "bolo!\"", "Os", "comentários", "do", "apresentador", "pareciam", "fazer", "cada", "vez", "menos", "sentido,", "tentando", "encontrar", "uma", "forma", "de", "ligar", "a", "brincadeira", "ao", "tema", "do", "programa,", "que", "eram", "exames", "modernos", "que", "antecipam", "problemas", "no", "coração:", "\"Infelizmente", "o", "homem", "ainda", "não", "foi", "capaz", "de", "inventar", "uma", "câmera", "que", "mostre", "esse", "encontro", "da", "clara", "e", "o", "ovo", "dentro", "do", "bolo!\"", "A", "câmera", "do", "programa", "focou", "no", "médico", "Roberto", "Kalil,", "outro", "participante", "do", "programa,", "com", "feição", "séria,", "parecendo", "não", "achar", "muita", "graça", "na", "piada.", "\"Doutor", "Kalil,", "já", "imaginou", "esse", "encontro?", "[...]", "A", "gente", "hoje", "tem", "imagens", "impressionantes", "que", "a", "gente", "vai", "mostrar,", "que", "podem", "salvar", "vidas.", "Doutor", "Kalil", "tá", "com", "essa", "cara", "de", "um", "encontro", "com", "clara", "com", "ovo", "dentro", "de", "um", "bolo...\"", "\"Não", "gostei", "muito,", "não", "foi", "muito", "legal", "esse", "começo", "de", "programa...", "Não", "deu", "muito", "certo\",", "disse", "o", "médico", "Roberto", "Kalil,", "ainda", "em", "tom", "sério,", "tentando", "emplacar", "algum", "sorriso.", "\"É", "porque", "eu", "não", "dei", "parabéns", "pra", "ele", "no", "dia", "7", "de", "julho", "porque", "ele", "tava", "viajando,", "não", "deu", "certo\",", "disse", "Rocha,", "na", "sequência.", "Assista", "ao", "momento", "abaixo:", "Fernando", "Rocha", "loucão", "no", "começo", "do", "Bem", "Estar...", "E", "o", "médico,", "na", "lata:", "\"não", "foi", "muito", "legal", "esse", "começo", "de", "programa\"", "pic.twitter.com/rIMjPwIlTT", "—", "Ren", "(@RenatoJG)", "25", "de", "de", "2018", "eu", "n", "to", "me", "aguentando", "com", "esse", "cara", "do", "bem", "estar", "falando", "da", "clara", "e", "do", "ovo", "véi", "—", "Raphael", "com", "PH", "(@raphaelarruda96)", "25", "de", "julho", "de", "2018", "Eu", "ainda", "to", "chorando", "com", "a", "cara", "do", "DR.", "Kalil", "—", "Toretto", "(@dominevess)", "25", "de", "julho", "de", "2018", "\"aí", "a", "clara", "disse", "p", "ovo,", "não", "fica", "triste...", "a", "gente", "se", "encontra", "no", "bolo\"", "HAUAHHAHAHAHAJAHHSHSHSHSHHSHAHAHAJAJAJJAJSJAJAJJAJAJABSJBSJSBSJSBJSBSJS", "—", "João", "Pedro", "Machado", "(@fiapo05)", "25", "de", "julho", "de", "2018", "Esse", "negócio", "da", "clara", "com", "ovo", "alegrou", "meu", "d" ], [ "ia", "em", "500%", "—", "Zanella", "⚡️", "(@lucasmzanella)", "25", "de", "de", "2018", "VEJA", "TAMBÉM:", "Fogo,", "porrada", "e", "acidente:", "imprevistos", "durante", "transmissões", "ao", "vivo", "na", "TV" ] ]
[ [ "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "nl", "nl", "nl", "nl", "nl", "nl", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "it", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt" ], [ "pt", "pt", "pt", "pt", "co", "es", "es", "es", "es", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt", "pt" ] ]
[ [ [ "O", "apresentador", "Fernando", "Rocha", "ao", "lado", "do", "Dr.", "Kalil.", "Foto:", "Reprodução", "de", "'Bem-Estar'", "(2018)", "/", "TV", "Globo", "O", "apresentador", "do", "programa", "Bem", "Estar,", "da", "Globo,", "Fernando", "Rocha,", "chamou", "atenção", "nas", "redes", "sociais", "após", "uma", "piada", "inusitada", "-", "e", "até", "um", "tanto", "quanto", "constrangedora", "-", "contada", "por", "ele", "no", "início", "da", "edição", "da", "última", "terça-feira,", "24.", "Logo", "de", "cara,", "na", "introdução", "do", "programa,", "começou:", "\"Todo", "mundo", "sabe,", "desde", "que", "o", "mundo", "é", "mundo,", "que", "a", "vida", "é", "feita", "de", "encontros", "e", "despedidas.", "Despedidas", "são", "mais", "tristes,", "emocionantes,", "né?", "Fiquei", "sabendo", "de", "uma", "história", "de", "despedida", "tão", "emocionante,", "tão", "sofrida\".", "\"Sabe", "qual?", "A", "despedida", "da", "clara", "com", "o", "ovo\",", "disse,", "começando", "a", "rir,", "antes", "de", "complementar:", "\"Mas", "aí", "ela", "só", "não", "é", "tão", "triste", "porque", "a", "clara", "chega", "pro", "ovo", "e", "fala", "assim:", "'Não", "fica", "triste,", "não.", "A", "gente", "se", "vê", "dentro", "do", "bolo!\".", "Neste", "momento,", "Fernando", "começou", "a", "gargalhar.", "\"'A", "gente", "vai", "se", "encontrar", "dentro", "do", "bolo!'", "Agora", "você", "imagina", "o", "encontro", "da", "clara", "com", "o", "ovo", "dentro", "do", "bolo!\"", "Os", "comentários", "do", "apresentador", "pareciam", "fazer", "cada", "vez", "menos", "sentido,", "tentando", "encontrar", "uma", "forma", "de", "ligar", "a", "brincadeira", "ao", "tema", "do", "programa,", "que", "eram", "exames", "modernos", "que", "antecipam", "problemas", "no", "coração:", "\"Infelizmente", "o", "homem", "ainda", "não", "foi", "capaz", "de", "inventar", "uma", "câmera", "que", "mostre", "esse", "encontro", "da", "clara", "e", "o", "ovo", "dentro", "do", "bolo!\"", "A", "câmera", "do", "programa", "focou", "no", "médico", "Roberto", "Kalil,", "outro", "participante", "do", "programa,", "com", "feição", "séria,", "parecendo", "não", "achar", "muita", "graça", "na", "piada.", "\"Doutor", "Kalil,", "já", "imaginou", "esse", "encontro?", "[...]", "A", "gente", "hoje", "tem", "imagens", "impressionantes", "que", "a", "gente", "vai", "mostrar,", "que", "podem", "salvar", "vidas.", "Doutor", "Kalil", "tá", "com", "essa", "cara", "de", "um", "encontro", "com", "clara", "com", "ovo", "dentro", "de", "um", "bolo...\"", "\"Não", "gostei", "muito,", "não", "foi", "muito", "legal", "esse", "começo", "de", "programa...", "Não", "deu", "muito", "certo\",", "disse", "o", "médico", "Roberto", "Kalil,", "ainda", "em", "tom", "sério,", "tentando", "emplacar", "algum", "sorriso.", "\"É", "porque", "eu", "não", "dei", "parabéns", "pra", "ele", "no", "dia", "7", "de", "julho", "porque", "ele", "tava", "viajando,", "não", "deu", "certo\",", "disse", "Rocha,", "na", "sequência.", "Assista", "ao", "momento", "abaixo:", "Fernando", "Rocha", "loucão", "no", "começo", "do", "Bem", "Estar...", "E", "o", "médico,", "na", "lata:", "\"não", "foi", "muito", "legal", "esse", "começo", "de", "programa\"" ], [ "de", "2018", "eu", "n", "to", "me", "aguentando", "com", "esse", "cara", "do", "bem", "estar", "falando", "da", "clara", "e", "do", "ovo", "véi", "—", "Raphael", "com", "PH", "(@raphaelarruda96)", "25", "de", "julho", "de", "2018", "Eu", "ainda", "to", "chorando", "com", "a", "cara", "do", "DR.", "Kalil", "—" ], [ "(@dominevess)", "25", "de", "julho", "de", "2018", "\"aí", "a", "clara", "disse", "p", "ovo,", "não", "fica", "triste...", "a", "gente", "se", "encontra", "no", "bolo\"", "HAUAHHAHAHAHAJAHHSHSHSHSHHSHAHAHAJAJAJJAJSJAJAJJAJAJABSJBSJSBSJSBJSBSJS", "—", "João", "Pedro", "Machado", "(@fiapo05)", "25", "de", "julho", "de", "2018", "Esse", "negócio", "da", "clara", "com", "ovo", "alegrou", "meu", "d" ] ], [ [ "ia", "em", "500%", "—", "Zanella", "⚡️", "(@lucasmzanella)", "25", "de", "de", "2018", "VEJA", "TAMBÉM:", "Fogo,", "porrada", "e", "acidente:", "imprevistos", "durante", "transmissões", "ao", "vivo", "na", "TV" ] ] ]
[ [ "pt", "pt", "pt" ], [ "pt" ] ]
[ "mono", "mono" ]
[ [ "Once", "upon", "a", "time", "there", "was", "a", "cricket", "team", "that", "enthralled", "us.", "A", "team", "that", "was", "our", "aspiration", "and", "inspiration.", "A", "team", "that", "had", "flair", "and", "fire", "in", "its", "belly.", "A", "team", "that", "had", "the", "panache", "of", "a", "Waqars’", "yorker,", "the", "verve", "of", "an", "Akram’s", "ripper,", "the", "elegant", "fluency", "of", "an", "Anwar’s", "drive", "and", "the", "stamp", "of", "Inzimam’s", "authority.", "A", "team", "that", "had", "the", "doggedness", "of", "Miandad’s", "presence", "and", "had", "the", "sheer", "class", "of", "Imran", "Khan.", "Once", "upon", "a", "time", "there", "was", "a", "cricket", "team.", "A", "team.", "It", "was", "the", "team", "that", "played", "with", "a", "free", "spirit", "akin", "to", "Brazil", "in", "the", "football", "and", "at", "the", "same", "time", "a", "team", "whose", "every", "member", "was", "a", "precisely", "milled", "cog", "in", "a", "highly", "efficient", "machine.", "A", "team", "whose", "achievements", "were", "not", "merely", "eye", "watering", "statistics", "blazen", "rich", "legacy.", "That", "was", "the", "team", "that", "was.", "Today", "team", "Pakistan", "is", "everything", "but.", "It", "is", "a", "joke", "in", "a", "bad", "taste.", "The", "decay", "in", "the", "standards", "has", "been", "gradual", "but", "persistent.", "The", "writing", "has", "been", "on", "the", "wall", "and", "the", "rot", "therefore", "is", "disappointing", "but", "not", "surprising.", "After", "the", "fading", "of", "our", "star", "players", "in", "the", "last", "decade", "that", "held", "us", "on", "the", "summit", "through", "the", "90s,", "the", "PCB", "(Pakistan", "Cricket", "Board)", "systematically", "ensured", "that", "no", "such", "players", "ever", "play", "again", "for", "the", "country.", "Merit", "has", "been", "so", "ruthlessly", "slaughtered", "to", "preserve", "nepotism", "that", "its", "blood", "has", "salined", "the", "fertile", "grounds", "that", "once", "cropped", "up", "world", "beaters.", "A", "case", "in", "point", "is", "Anwar", "Ali.", "Even", "now", "looking", "at", "the", "video", "highlights", "of", "Pakistan", "against", "India", "U-19", "final", "in", "2006", "leaves", "you", "flabbergasted.", "Defending", "a", "small", "total", "of", "109,", "Anwar", "Ali", "single", "handedly", "skittled", "India", "out", "for", "79.", "To", "the", "disbelief", "of", "the", "commentators,", "he", "was", "swinging", "the", "ball", "miles", "in", "a", "sweltering", "Columbo", "cricket", "ground.", "What", "was", "the", "reward", "given", "by", "the", "PCB", "for", "his", "performance?", "Surprise", "surprise", "he", "wasn’t", "scouted", "for", "the", "big", "team.", "He", "was", "instead", "asked", "to", "change", "his", "natural", "action", "and", "work", "on", "his", "batting.", "They", "destroyed", "his", "ability", "and", "bruised", "his", "career.", "Meanwhile", "the", "PCB", "chairman", "(Ejaz", "Butt)", "and", "then", "captain", "were", "busy", "propping", "up", "mediocrity.", "Be", "it", "the", "Umar", "Ameens,", "the", "Farhats", "the", "Akmals,", "they", "were", "all", "accommodated", "in", "the", "national", "team", "using", "one", "word", "criterion.", "The", "word", "that", "for", "many", "has", "turned", "from", "sour", "to", "utterly", "disgusting.", "It", "is", "“Talent”", "the", "very", "word", "that", "was", "once", "the", "highlight", "has", "become", "the", "bane", "of", "our", "national", "team.", "The", "only", "consistency", "in", "Pakistan", "cricket", "officials", "and", "its", "commentators", "is", "the", "abuse", "of", "this", "one", "word", "justification.", "Rameez’s", "recent", "rant", "about", "talent", "involved", "the", "abject", "rationalization", "of", "Harris", "Sohail.", "“He", "is", "a", "genuine", "talent”", "said", "Rameez", "“he", "can", "score", "singles", "as", "well", "as", "hit", "a", "six”.", "Sohail", "promptly", "responded", "by", "getting", "out", "on", "a", "duck.", "One", "can", "only", "hope", "it", "was", "just", "an", "innocuous", "comment", "by", "the", "veteran", "commentator", "and", "not", "a", "swipe", "at", "Fawad", "Alam.", "This", "is", "because", "Rameez’s", "jibe", "only", "furthers", "the", "propaganda", "against", "the", "lesser", "human", "(in", "PCB", "eyes)", "that", "is", "Alam", "and", "his", "ill", "perceived", "ability", "to", "clear", "the", "ropes.", "Note", "that", "Fawad", "Alam", "has", "been", "consistently", "scoring", "in", "the", "domestic", "circuit", "and", "retains", "one", "of", "the", "highest", "averages", "in", "the", "game", "but", "is", "conveniently", "ignored", "by", "the", "selectors.", "A", "few", "weeks", "back,", "the", "selector", "Shoaib", "Mohammad", "made", "a", "mockery", "of", "himself", "on", "TV.", "He", "said", "that", "we", "needed", "power", "hitters", "from", "the", "35th", "over", "onwards", "and", "so", "Fawad", "did", "not", "fit", "the", "bill.", "Little", "he", "knew", "that", "the", "selected", "team,", "in", "9", "out", "of", "10", "games,", "would", "struggle", "to", "get", "to", "10", "overs,", "leave", "alone", "35th.", "How", "many", "times", "we", "have", "heard", "the", "following:", "Ahmed", "Shehzad", "talent,", "Sohaib", "Maqsood", "Akmal", "…..big", "talent.", "The", "scope", "of", "the", "“T”", "word", "has", "been", "narrowed", "down", "in", "Pakistan", "so", "much", "so", "that", "it", "merely", "suggests", "a", "player", "that", "can", "hit", "the", "ball", "hard.", "There", "is", "no", "denying", "that", "innate", "talent", "is", "a", "huge", "component", "of", "a", "skillful", "player.", "However,", "attitude,", "fitness,", "mental", "strength,", "adaptability,", "temperament", "and", "technique", "are", "the", "other", "essential", "elements", "of", "a", "complete", "player.", "When", "obese", "talents", "like", "Nasir", "Jamshed", "are", "given", "a", "free", "ride", "into", "the", "national", "team,", "the", "outcome", "of", "17", "minutes", "in", "the", "field", "and", "the", "rest", "in", "the", "dressing", "room", "should", "be", "of", "no", "surprise.", "In", "the", "game", "against", "West", "Indies", "(world", "cup", "2015),", "after", "5", "wickets", "went", "down", "cheaply,", "the", "game", "was", "all", "but", "over.", "Nonetheless", "it", "was", "still", "shocking", "to", "see", "the", "players", "in", "a", "hurry", "to", "get", "back", "to", "the", "dressing", "room.", "It", "felt", "like", "watching", "a", "rudderless", "ship", "trying", "to", "sink", "itself.", "No", "one", "stepped", "up", "in", "the", "remaining", "overs", "to", "ensure", "that", "the", "net", "run", "rate", "was", "improved", "when" ], [ "the", "pressure", "was", "taken", "off", "by", "the", "Windies.", "No", "one", "even", "thought", "about", "the", "players", "late", "down", "the", "order", "using", "the", "opportunity", "to", "get", "some", "batting", "practice.", "The", "slide", "from", "world", "beaters", "to", "laughing", "stock", "was", "the", "shift", "from", "meritocracy", "to", "patronage.", "The", "system", "of", "patronage", "starts", "from", "the", "very", "top", "(selection", "of", "PCB", "chairman)", "and", "cascades", "down", "to", "selection", "of", "players.", "Although", "personal", "preference", "at", "the", "cost", "of", "merit", "has", "been", "part", "and", "parcel", "of", "Pakistan", "cricket,", "but", "it", "was", "done", "as", "an", "exception", "and", "wasn’t", "a", "norm.", "The", "trend", "today", "is", "vice", "versa.", "During", "the", "disastrous", "reign", "of", "the", "nincompoop", "chairman", "Ejaz", "Butt,", "the", "outlook", "of", "the", "squad", "turned", "from", "a", "national", "side", "to", "a", "club", "Salman", "Butt,", "a", "player", "whose", "feet", "movement", "competed", "with", "that", "of", "an", "amputee", "was", "made", "the", "captain.", "And", "there", "lied", "the", "rub.", "Off", "course", "for", "a", "captain", "who", "averaged", "in", "the", "mid", "twenties,", "it", "would", "have", "been", "difficult", "to", "accommodate", "players", "with", "much", "better", "records.", "His", "insecurity", "lead", "to", "two", "things.", "He", "chose", "minions", "ahead", "of", "players", "and", "tried", "to", "make", "the", "most", "of", "his", "time", "as", "a", "leader.", "What", "followed", "is", "history.", "Although", "the", "departure", "of", "both", "“Butts”", "was", "a", "sigh", "of", "good", "riddance", "but", "it", "opened", "up", "another", "can", "of", "worms.", "A", "constant", "musical", "chair", "is", "currently", "being", "played", "for", "the", "PCB", "hot", "seat.", "The", "disease", "that", "festered", "during", "the", "Butt", "tenure", "has", "crept", "into", "the", "current", "setup.", "Misbah", "may", "portray", "himself", "as", "the", "lone", "ranger,", "but", "it", "was", "him", "who", "was", "involved", "in", "cherry", "picking", "all", "the", "players", "in", "the", "current", "squad.", "He", "cannot", "shy", "away", "from", "this", "fact", "and", "neither", "should", "the", "public", "absolve", "him", "based", "on", "his", "individual", "performance.", "Pakistan", "cricket", "needs", "to", "do", "soul", "searching.", "If", "cricket", "is", "to", "be", "improved,", "than", "one", "of", "the", "first", "step", "to", "be", "taken", "is", "removal", "of", "the", "right", "of", "the", "Prime", "minster", "to", "appoint", "the", "chairman", "of", "the", "cricket", "board.", "The", "PCB", "has", "to", "get", "its", "house", "in", "order.", "It", "needs", "to", "spend", "more", "on", "the", "domestic", "circuit.", "Only", "then", "will", "a", "system", "evolve", "that", "will", "nurture", "cricket", "and", "protect", "merit.", "Let’s", "make", "sure", "that", "in", "years", "from", "now,", "we", "don’t", "have", "to", "repeat", "the", "line,", "“Once", "upon", "a", "time", "there", "was", "a", "cricket", "team”", "If", "you", "found", "this", "article", "to", "resonate", "with", "your", "own", "thoughts", "than", "please", "feel", "free", "to", "share", "it", "using", "the", "buttons", "below." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Once", "upon", "a", "time", "there", "was", "a", "cricket", "team", "that", "enthralled", "us.", "A", "team", "that", "was", "our", "aspiration", "and", "inspiration.", "A", "team", "that", "had", "flair", "and", "fire", "in", "its", "belly.", "A", "team", "that", "had", "the", "panache", "of", "a", "Waqars’", "yorker,", "the", "verve", "of", "an", "Akram’s", "ripper,", "the", "elegant", "fluency", "of", "an", "Anwar’s", "drive", "and", "the", "stamp", "of", "Inzimam’s", "authority.", "A", "team", "that", "had", "the", "doggedness", "of", "Miandad’s", "presence", "and", "had", "the", "sheer", "class", "of", "Imran", "Khan.", "Once", "upon", "a", "time", "there", "was", "a", "cricket", "team.", "A", "team.", "It", "was", "the", "team", "that", "played", "with", "a", "free", "spirit", "akin", "to", "Brazil", "in", "the", "football", "and", "at", "the", "same", "time", "a", "team", "whose", "every", "member", "was", "a", "precisely", "milled", "cog", "in", "a", "highly", "efficient", "machine.", "A", "team", "whose", "achievements", "were", "not", "merely", "eye", "watering", "statistics" ], [ "rich", "legacy.", "That", "was", "the", "team", "that", "was.", "Today", "team", "Pakistan", "is", "everything", "but.", "It", "is", "a", "joke", "in", "a", "bad", "taste.", "The", "decay", "in", "the", "standards", "has", "been", "gradual", "but", "persistent.", "The", "writing", "has", "been", "on", "the", "wall", "and", "the", "rot", "therefore", "is", "disappointing", "but", "not", "surprising.", "After", "the", "fading", "of", "our", "star", "players", "in", "the", "last", "decade", "that", "held", "us", "on", "the", "summit", "through", "the", "90s,", "the", "PCB", "(Pakistan", "Cricket", "Board)", "systematically", "ensured", "that", "no", "such", "players", "ever", "play", "again", "for", "the", "country.", "Merit", "has", "been", "so", "ruthlessly", "slaughtered", "to", "preserve", "nepotism", "that", "its", "blood", "has", "salined", "the", "fertile", "grounds", "that", "once", "cropped", "up", "world", "beaters.", "A", "case", "in", "point", "is", "Anwar", "Ali.", "Even", "now", "looking", "at", "the", "video", "highlights", "of", "Pakistan", "against", "India", "U-19", "final", "in", "2006", "leaves", "you", "flabbergasted.", "Defending", "a", "small", "total", "of", "109,", "Anwar", "Ali", "single", "handedly", "skittled", "India", "out", "for", "79.", "To", "the", "disbelief", "of", "the", "commentators,", "he", "was", "swinging", "the", "ball", "miles", "in", "a", "sweltering", "Columbo", "cricket", "ground.", "What", "was", "the", "reward", "given", "by", "the", "PCB", "for", "his", "performance?", "Surprise", "surprise", "he", "wasn’t", "scouted", "for", "the", "big", "team.", "He", "was", "instead", "asked", "to", "change", "his", "natural", "action", "and", "work", "on", "his", "batting.", "They", "destroyed", "his", "ability", "and", "bruised", "his", "career.", "Meanwhile", "the", "PCB", "chairman", "(Ejaz", "Butt)", "and", "then", "captain", "were", "busy", "propping", "up", "mediocrity.", "Be", "it", "the", "Umar", "Ameens,", "the", "Farhats", "the", "Akmals,", "they", "were", "all", "accommodated", "in", "the", "national", "team", "using", "one", "word", "criterion.", "The", "word", "that", "for", "many", "has", "turned", "from", "sour", "to", "utterly", "disgusting.", "It", "is", "“Talent”", "the", "very", "word", "that", "was", "once", "the", "highlight", "has", "become", "the", "bane", "of", "our", "national", "team.", "The", "only", "consistency", "in", "Pakistan", "cricket", "officials", "and", "its", "commentators", "is", "the", "abuse", "of", "this", "one", "word", "justification.", "Rameez’s", "recent", "rant", "about", "talent", "involved", "the", "abject", "rationalization", "of", "Harris", "Sohail.", "“He", "is", "a", "genuine", "talent”", "said", "Rameez", "“he", "can", "score", "singles", "as", "well", "as", "hit", "a", "six”.", "Sohail", "promptly", "responded", "by", "getting", "out", "on", "a", "duck.", "One", "can", "only", "hope", "it", "was", "just", "an", "innocuous", "comment", "by", "the", "veteran", "commentator", "and", "not", "a", "swipe", "at", "Fawad", "Alam.", "This", "is", "because", "Rameez’s", "jibe", "only", "furthers", "the", "propaganda", "against", "the", "lesser", "human", "(in", "PCB", "eyes)", "that", "is", "Alam", "and", "his", "ill", "perceived", "ability", "to", "clear", "the", "ropes.", "Note", "that", "Fawad", "Alam", "has", "been", "consistently", "scoring", "in", "the", "domestic", "circuit", "and", "retains", "one", "of", "the", "highest", "averages", "in", "the", "game", "but", "is", "conveniently", "ignored", "by", "the", "selectors.", "A", "few", "weeks", "back,", "the", "selector", "Shoaib", "Mohammad", "made", "a", "mockery", "of", "himself", "on", "TV.", "He", "said", "that", "we", "needed", "power", "hitters", "from", "the", "35th", "over", "onwards", "and", "so", "Fawad", "did", "not", "fit", "the", "bill.", "Little", "he", "knew", "that", "the", "selected", "team,", "in", "9", "out", "of", "10", "games,", "would", "struggle", "to", "get", "to", "10", "overs,", "leave", "alone", "35th.", "How", "many", "times", "we", "have", "heard", "the", "following:", "Ahmed", "Shehzad", "talent,", "Sohaib", "Maqsood", "Akmal", "…..big", "talent.", "The", "scope", "of", "the", "“T”", "word", "has", "been", "narrowed", "down", "in", "Pakistan", "so", "much", "so", "that", "it", "merely", "suggests", "a", "player", "that", "can", "hit", "the", "ball", "hard.", "There", "is", "no", "denying", "that", "innate", "talent", "is", "a", "huge", "component", "of", "a", "skillful", "player.", "However,", "attitude,", "fitness,", "mental", "strength,", "adaptability,", "temperament", "and", "technique", "are", "the", "other", "essential", "elements", "of", "a", "complete", "player.", "When", "obese", "talents", "like", "Nasir", "Jamshed", "are", "given", "a", "free", "ride", "into", "the", "national", "team,", "the", "outcome", "of", "17", "minutes", "in", "the", "field", "and", "the", "rest", "in", "the", "dressing", "room", "should", "be", "of", "no", "surprise.", "In", "the", "game", "against", "West", "Indies", "(world", "cup", "2015),", "after", "5", "wickets", "went", "down", "cheaply,", "the", "game", "was", "all", "but", "over.", "Nonetheless", "it", "was", "still", "shocking", "to", "see", "the", "players", "in", "a", "hurry", "to", "get", "back", "to", "the", "dressing", "room.", "It", "felt", "like", "watching", "a", "rudderless", "ship", "trying", "to", "sink", "itself.", "No", "one", "stepped", "up", "in", "the", "remaining", "overs", "to", "ensure", "that", "the", "net", "run", "rate", "was", "improved", "when" ] ], [ [ "the", "pressure", "was", "taken", "off", "by", "the", "Windies.", "No", "one", "even", "thought", "about", "the", "players", "late", "down", "the", "order", "using", "the", "opportunity", "to", "get", "some", "batting", "practice.", "The", "slide", "from", "world", "beaters", "to", "laughing", "stock", "was", "the", "shift", "from", "meritocracy", "to", "patronage.", "The", "system", "of", "patronage", "starts", "from", "the", "very", "top", "(selection", "of", "PCB", "chairman)", "and", "cascades", "down", "to", "selection", "of", "players.", "Although", "personal", "preference", "at", "the", "cost", "of", "merit", "has", "been", "part", "and", "parcel", "of", "Pakistan", "cricket,", "but", "it", "was", "done", "as", "an", "exception", "and", "wasn’t", "a", "norm.", "The", "trend", "today", "is", "vice", "versa.", "During", "the", "disastrous", "reign", "of", "the", "nincompoop", "chairman", "Ejaz", "Butt,", "the", "outlook", "of", "the", "squad", "turned", "from", "a", "national", "side", "to", "a", "club", "Salman", "Butt,", "a", "player", "whose", "feet", "movement", "competed", "with", "that", "of", "an", "amputee", "was", "made", "the", "captain.", "And", "there", "lied", "the", "rub.", "Off", "course", "for", "a", "captain", "who", "averaged", "in", "the", "mid", "twenties,", "it", "would", "have", "been", "difficult", "to", "accommodate", "players", "with", "much", "better", "records.", "His", "insecurity", "lead", "to", "two", "things.", "He", "chose", "minions", "ahead", "of", "players", "and", "tried", "to", "make", "the", "most", "of", "his", "time", "as", "a", "leader.", "What", "followed", "is", "history.", "Although", "the", "departure", "of", "both", "“Butts”", "was", "a", "sigh", "of", "good", "riddance", "but", "it", "opened", "up", "another", "can", "of", "worms.", "A", "constant", "musical", "chair", "is", "currently", "being", "played", "for", "the", "PCB", "hot", "seat.", "The", "disease", "that", "festered", "during", "the", "Butt", "tenure", "has", "crept", "into", "the", "current", "setup.", "Misbah", "may", "portray", "himself", "as", "the", "lone", "ranger,", "but", "it", "was", "him", "who", "was", "involved", "in", "cherry", "picking", "all", "the", "players", "in", "the", "current", "squad.", "He", "cannot", "shy", "away", "from", "this", "fact", "and", "neither", "should", "the", "public", "absolve", "him", "based", "on", "his", "individual", "performance.", "Pakistan", "cricket", "needs", "to", "do", "soul", "searching.", "If", "cricket", "is", "to", "be", "improved,", "than", "one", "of", "the", "first", "step", "to", "be", "taken", "is", "removal", "of", "the", "right", "of", "the", "Prime", "minster", "to", "appoint", "the", "chairman", "of", "the", "cricket", "board.", "The", "PCB", "has", "to", "get", "its", "house", "in", "order.", "It", "needs", "to", "spend", "more", "on", "the", "domestic", "circuit.", "Only", "then", "will", "a", "system", "evolve", "that", "will", "nurture", "cricket", "and", "protect", "merit.", "Let’s", "make", "sure", "that", "in", "years", "from", "now,", "we", "don’t", "have", "to", "repeat", "the", "line,", "“Once", "upon", "a", "time", "there", "was", "a", "cricket", "team”", "If", "you", "found", "this", "article", "to", "resonate", "with", "your", "own", "thoughts", "than", "please", "feel", "free", "to", "share", "it", "using", "the", "buttons", "below." ] ] ]
[ [ "en", "en" ], [ "en" ] ]
[ "mono" ]
[ [ "NEW", "YORK", "(Reuters)", "-", "A", "Russian", "man", "pleaded", "guilty", "on", "Monday", "to", "U.S.", "charges", "he", "took", "part", "in", "a", "massive", "computer", "hacking", "scheme", "that", "targeted", "JPMorgan", "Chase", "&", "Co", "and", "other", "financial", "services", "companies.", "Andrei", "Tyurin,", "36,", "pleaded", "guilty", "in", "Manhattan", "federal", "court", "to", "six", "counts", "including", "wire", "fraud", "and", "computer", "hacking", "conspiracy,", "admitting", "that", "he", "illegally", "obtained", "the", "personal", "information", "of", "the", "companies’", "customers", "to", "find", "potential", "victims", "for", "fraudulent", "investment", "schemes.", "He", "is", "scheduled", "to", "be", "sentenced", "on", "Feb.", "13", "by", "U.S.", "District", "Judge", "in", "Manhattan.", "He", "has", "agreed", "to", "forfeit", "more", "than", "$19", "million", "as", "part", "of", "his", "plea.", "His", "lawyer,", "Florian", "Miedel,", "declined", "to", "comment", "on", "the", "case.", "Tyurin", "was", "arrested", "in", "the", "country", "of", "Georgia", "at", "the", "request", "of", "U.S.", "authorities", "last", "year,", "the", "latest", "of", "several", "people", "to", "be", "charged", "with", "taking", "part", "in", "the", "scheme.", "JPMorgan", "disclosed", "that", "it", "had", "been", "hacked", "in", "2014,", "saying", "it", "had", "exposed", "information", "associated", "with", "about", "83", "million", "customer", "accounts.", "Other", "victims", "included", "E*Trade", "Scottrade", "Inc", "and", "News", "Corp’s", "Dow", "Jones", "&", "Co,", "publisher", "of", "the", "Wall", "Street", "Journal.", "Prosecutors", "said", "a", "total", "of", "more", "than", "100", "million", "customers", "of", "the", "hacked", "companies", "were", "affected.", "Prosecutors", "had", "previously", "charged", "two", "Israeli", "citizens,", "Gery", "Shalon", "and", "Ziv", "Orenstein,", "along", "with", "an", "American", "resident", "of", "Joshua", "Samuel", "Aaron,", "in", "connection", "with", "the", "scheme.", "Members", "of", "the", "conspiracy", "made", "hundreds", "of", "millions", "of", "dollars", "through", "criminal", "schemes", "using", "stolen", "information,", "prosecutors", "said." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "es", "es", "es", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "NEW", "YORK", "(Reuters)", "-", "A", "Russian", "man", "pleaded", "guilty", "on", "Monday", "to", "U.S.", "charges", "he", "took", "part", "in", "a", "massive", "computer", "hacking", "scheme", "that", "targeted", "JPMorgan", "Chase", "&", "Co", "and", "other", "financial", "services", "companies.", "Andrei", "Tyurin,", "36,", "pleaded", "guilty", "in", "Manhattan", "federal", "court", "to", "six", "counts", "including", "wire", "fraud", "and", "computer", "hacking", "conspiracy,", "admitting", "that", "he", "illegally", "obtained", "the", "personal", "information", "of", "the", "companies’", "customers", "to", "find", "potential", "victims", "for", "fraudulent", "investment", "schemes.", "He", "is", "scheduled", "to", "be", "sentenced", "on", "Feb.", "13", "by", "U.S.", "District", "Judge", "in", "Manhattan.", "He", "has", "agreed", "to", "forfeit", "more", "than", "$19", "million", "as", "part", "of", "his", "plea.", "His", "lawyer,", "Florian", "Miedel,", "declined", "to", "comment", "on", "the", "case.", "Tyurin", "was", "arrested", "in", "the", "country", "of", "Georgia", "at", "the", "request", "of", "U.S.", "authorities", "last", "year,", "the", "latest", "of", "several", "people", "to", "be", "charged", "with", "taking", "part", "in", "the", "scheme.", "JPMorgan", "disclosed", "that", "it", "had", "been", "hacked", "in", "2014,", "saying", "it", "had", "exposed", "information", "associated", "with", "about", "83", "million", "customer", "accounts.", "Other", "victims", "included", "E*Trade", "Scottrade", "Inc", "and", "News", "Corp’s", "Dow", "Jones", "&", "Co,", "publisher", "of", "the", "Wall", "Street", "Journal.", "Prosecutors", "said", "a", "total", "of", "more", "than", "100", "million", "customers", "of", "the", "hacked", "companies", "were", "affected.", "Prosecutors", "had", "previously", "charged", "two", "Israeli", "citizens,", "Gery", "Shalon", "and", "Ziv", "Orenstein,", "along", "with", "an", "American", "resident", "of", "Joshua", "Samuel", "Aaron,", "in", "connection", "with", "the", "scheme.", "Members", "of", "the", "conspiracy", "made", "hundreds", "of", "millions", "of", "dollars", "through", "criminal", "schemes", "using", "stolen", "information,", "prosecutors", "said." ] ] ]
[ [ "en" ] ]
[ "mono", "mono", "mono" ]
[ [ "Thu,", "Aug", "2,", "2012", "It", "hasn’t", "been", "a", "very", "exciting", "year", "for", "most", "energy", "stocks,", "but", "therein", "lies", "the", "opportunity", "for", "selective", "buyers", "with", "a", "longer-term", "view.", "In", "this", "exclusive", "interview", "with", "The", "Energy", "Report,", "Tim", "Murray,", "oil", "and", "gas", "analyst", "at", "Desjardins", "Securities,", "explains", "why", "he", "prefers", "small-cap", "producers", "in", "this", "market", "environment", "and", "discusses", "a", "few", "favorites", "he", "expects", "will", "outperform.", "Where", "to", "Look", "in", "This", "Volatile", "Oil", "Market:", "Tim", "Murray", "The", "Energy", "Report:", "The", "last", "time", "you", "spoke", "with", "us", "in", "January,", "you", "were", "expecting", "oil", "prices", "to", "stay", "in", "the", "$80–100/barrel", "(bbl)", "range,", "which", "they", "pretty", "much", "have.", "Where", "do", "you", "think", "they", "are", "headed", "now?", "Tim", "Murray:", "We", "still", "believe", "this", "range", "is", "realistic", "for", "the", "remainder", "of", "this", "year", "and", "into", "2013.", "The", "last", "downturn", "in", "crude", "seemed", "to", "stem", "more", "from", "negative", "sentiment", "than", "a", "change", "in", "the", "supply-demand", "balance.", "West", "Texas", "Intermediate", "(WTI)", "bounced", "off", "~$76/bbl", "recently,", "which", "was", "the", "low", "back", "in", "October,", "so", "this", "is", "a", "level", "we", "will", "be", "watching", "very", "closely", "if", "it", "were", "to", "be", "breached.", "TER:", "What", "effect", "is", "the", "move", "back", "down", "into", "$80/bbl", "going", "to", "have", "for", "oil", "companies’", "exploration", "and", "development", "plans?", "TM:", "Companies", "are", "definitely", "going", "to", "have", "to", "reassess", "their", "exploration", "and", "development", "budgets,", "if", "they", "are", "budgeting", "anything", "close", "to", "$100/bbl", "WTI.", "Most", "juniors", "in", "the", "Canadian", "space", "use", "cash", "flow", "plus", "manage", "their", "future", "drill", "programs.", "We’ve", "already", "seen", "several", "companies", "in", "my", "space", "cut", "their", "capital", "programs.", "Whitecap", "Resources", "Inc.", "(WCP:TSX.V)", "trimmed", "its", "capital", "program,", "as", "did", "Bellatrix", "Exploration", "Ltd.", "(BXE:TSX),", "Second", "Wave", "Petroleum", "Inc.", "(SCS:TSX.V),", "River", "Exploration", "Inc.", "(RRX:TSX)", "Corp.", "(LNV:TSX).", "We", "expect", "others", "will", "probably", "have", "to", "do", "the", "same", "and", "we", "don’t", "see", "any", "junior", "or", "small-cap", "companies", "expanding", "programs", "at", "this", "time.", "Most", "midcaps", "have", "a", "lot", "more", "balance", "sheet", "flexibility", "and", "we", "don’t", "envision", "midcaps", "in", "general", "needing", "to", "cut", "budgets", "unless", "we", "see", "a", "sustained", "oil", "price", "closer", "to", "$75/bbl.", "TER:", "Do", "you", "think", "a", "lot", "of", "companies", "were", "beginning", "to", "think", "that", "$100/bbl", "was", "the", "new", "base", "and", "planning", "around", "that", "or", "were", "they", "skeptical", "as", "to", "how", "long", "that", "was", "going", "to", "last?", "TM:", "Most", "were", "still", "using", "around", "$95/bbl", "oil,", "and", "hadn’t", "been", "putting", "$100/bbl", "in", "budgets.", "I", "don’t", "think", "anybody", "was", "saying", "that", "it’s", "the", "new", "base,", "as", "most", "are", "accustomed", "to", "the", "large", "swings", "in", "commodity", "prices.", "TER:", "Natural", "gas,", "on", "the", "other", "side,", "has", "been", "the", "sick", "sister.", "After", "peaking", "in", "2008", "over", "$10/bbl,", "it’s", "been", "hanging", "around", "the", "$2-2.50/bbl", "level,", "about", "as", "low", "as", "it’s", "been", "for", "the", "last", "13", "years.", "Is", "anything", "on", "the", "horizon", "to", "cause", "much", "of", "an", "improvement", "or", "is", "it", "stuck", "in", "that", "range?", "TM:", "For", "the", "summer,", "we", "feel", "an", "average", "Henry", "Hub", "price", "of", "$2.50–3", "is", "realistic", "and", "natural", "gas", "has", "been", "trading", "higher", "than", "that", "recently.", "We", "need", "to", "see", "storage", "levels", "come", "off", "before", "price", "levels", "appreciate", "materially", "into", "the", "fours.", "Storage", "levels", "are", "running", "at", "all-time", "highs", "in", "Canada,", "and", "in", "the", "U.S.", "as", "well.", "Drilling", "has", "eased", "in", "Canada", "and", "the", "U.S.,", "which", "will", "help", "reduce", "the", "supply", "equation;", "however,", "a", "lot", "of", "the", "oil", "resource", "plays", "have", "gas", "associated", "with", "them.", "Natural", "gas", "is", "really", "a", "landlocked", "commodity", "in", "North", "America", "and", "until", "the", "means", "are", "available", "to", "reach", "other", "markets", "such", "as", "Asia,", "prices", "will", "remain", "relatively", "depressed.", "Looking", "longer", "term", "in", "Canada,", "we", "may", "see", "the", "first", "LNG", "facility", "at", "Kitimat,", "which", "would", "give", "producers", "access", "to", "the", "international", "market.", "But", "this", "isn’t", "expected", "until", "2017.", "TER:", "Other", "than", "the", "ongoing", "financial", "problems", "in", "Europe", "and", "whatever", "the", "crisis", "du", "jour", "is", "in", "the", "Middle", "East,", "do", "you", "see", "anything", "on", "the", "horizon", "which", "could", "cause", "oil", "or", "prices", "to", "move", "much", "in", "either", "direction?", "TM:", "Middle", "East", "tension", "is", "always", "the", "biggest", "wild", "card,", "and", "the", "ongoing", "debt", "situation", "in", "Europe", "will", "continue", "to", "grab", "headlines.", "The", "one", "other", "wild", "card", "that", "people", "are", "aware", "of", "but", "have", "a", "difficulty", "putting", "a", "time", "frame", "on", "is", "the", "duration", "of", "the", "European", "embargo", "on", "buying", "Iranian", "crude", "that", "started", "July", "1.", "We’re", "also", "watching", "crude", "supply", "levels,", "which", "are", "quite", "high.", "From", "a", "North", "American", "standpoint,", "in", "the", "last", "two", "to", "three", "years,", "the", "spread", "between", "Brent", "and", "WTI", "has", "favored", "the", "Brent", "markets.", "Long", "term,", "we", "do", "think", "that", "spread", "will", "close,", "but", "it", "could", "take", "anywhere", "from", "three", "to", "five", "years." ], [ "TER:", "Companies", "in", "the", "oil", "and", "gas", "services", "business", "have", "to", "be", "affected", "by", "what", "is", "going", "on", "in", "this", "market.", "Are", "there", "some", "interesting", "opportunities", "out", "there", "or", "do", "you", "think", "that", "the", "impact", "is", "too", "negative", "on", "them", "at", "this", "point?", "TM:", "Definitely,", "the", "service", "sector", "traded", "down", "as", "oil", "moved", "lower,", "which", "is", "not", "a", "big", "surprise.", "Our", "oil", "and", "gas", "services", "analyst", "here", "has", "been", "recommending", "Precision", "Drilling", "Corp.", "(PD:TSX)", "between", "the", "$6–7", "range.", "The", "stock", "has", "been", "fairly", "volatile", "the", "last", "month", "and", "is", "currently", "north", "of", "$8.", "TER:", "So,", "generally,", "the", "service", "business", "is", "not", "a", "hot", "market", "opportunity", "these", "days.", "TM:", "It’s", "not", "as", "hot", "as", "it", "was", "before.", "The", "good", "thing", "in", "this", "cycle", "is", "that", "the", "balance", "sheets", "of", "the", "Canadian", "service", "companies", "are", "generally", "good,", "giving", "them", "the", "ability", "to", "ride", "out", "a", "lower", "pricing", "environment.", "Many", "are", "paying", "small", "dividends", "that", "can", "easily", "be", "increased", "if", "activity", "levels", "ramp", "up.", "It", "may", "not", "be", "the", "hottest", "space,", "but", "there", "are", "definitely", "a", "lot", "of", "good", "valuations", "on", "many", "of", "the", "stocks.", "TER:", "So", "what’s", "your", "outlook", "at", "this", "point", "for", "oil", "stocks", "in", "general?", "TM:", "Our", "theme", "really", "hasn’t", "changed.", "We", "still", "continue", "to", "look", "for", "good", "management", "teams,", "good", "balance", "sheets", "and", "asset", "bases", "that", "can", "show", "per-share", "growth", "for", "the", "next", "three", "to", "five", "years.", "The", "other", "key", "is", "liquidity,", "as", "investors", "and", "larger", "institutions", "don’t", "want", "to", "be", "stuck", "with", "a", "stock", "that", "they", "cannot", "unload.", "For", "my", "coverage", "universe,", "I", "prefer", "my", "small-cap", "names", "over", "the", "juniors", "as", "they", "have", "bigger", "production", "profiles,", "better", "balance", "sheets", "and", "liquidity.", "TER:", "Back", "in", "January,", "you", "talked", "about", "a", "number", "of", "midcap", "and", "small-cap", "companies.", "Can", "you", "give", "us", "a", "little", "update", "on", "what’s", "happened", "with", "them", "since", "then?", "TM:", "My", "two", "favorite", "names", "then", "were", "Whitecap", "Resources", "and", "Spartan", "Oil", "Corp.", "(STO:TSX).", "Spartan", "is", "up", "this", "year,", "about", "10%", "compared", "to", "the", "GMP", "Junior", "Oil", "&", "Index,", "which", "is", "down", "~17%.", "Whitecap", "is", "down", "~15%.", "Strategic", "Oil", "&", "Gas", "Ltd.", "(SOG:TSX)", "is", "down", "almost", "35%.", "Torquay", "Oil", "Corp.", "(TOC.A:TSX.V;", "TOC.B:TSX.V)", "is", "down", "almost", "50%.", "The", "junior", "names", "have", "underperformed", "because", "capital", "tends", "to", "move", "to", "the", "larger,", "more", "liquid", "equities", "in", "volatile", "times.", "If", "I", "were", "to", "benchmark", "Strategic", "to", "its", "junior", "oil", "group,", "it", "has", "outperformed—the", "group", "on", "average", "is", "down", "~45%.", "TER:", "Do", "you", "think", "that", "these", "are", "all", "decent", "buying", "opportunities", "at", "this", "level?", "TM:", "We", "continue", "to", "favor", "the", "small-cap", "space", "over", "the", "junior", "space.", "I", "still", "like", "Spartan", "and", "I", "prefer", "Whitecap", "at", "these", "levels.", "A", "new", "name", "that", "I", "cover", "that", "looks", "very", "interesting", "at", "these", "levels", "is", "Pinecrest", "Energy", "Inc.", "(PRY:TSX.V).", "It", "has", "one", "dominant", "asset", "in", "the", "greater", "Red", "Earth", "area", "targeting", "the", "Slave", "Point", "resource", "play.", "It", "is", "one", "of", "the", "most", "active", "operators", "in", "the", "play,", "and", "with", "250", "net", "sections,", "it", "could", "have", "over", "10", "years", "of", "drilling", "in", "front", "of", "it,", "if", "well", "results", "continue", "to", "come", "in", "positive.", "It", "plans", "on", "drilling", "30", "wells", "this", "year", "and", "if", "it", "can", "demonstrate", "similar", "production", "adds", "in", "the", "back", "half", "of", "this", "year,", "as", "it", "accomplished", "last", "year,", "we", "should", "see", "the", "stock", "react", "very", "positively.", "TER:", "You", "also", "cover", "Energy", "Ltd.", "(EQU:TSX;", "EQU:NYSE)?", "Do", "you", "have", "any", "thoughts", "on", "that", "one?", "TM:", "Equal", "is", "in", "strategic", "review", "right", "now.", "The", "stock", "is", "really", "going", "to", "be", "pretty", "quiet", "for", "the", "time", "being", "until", "we", "get", "some", "news", "on", "how", "that", "strategic", "review", "process", "is", "going.", "I", "don’t", "foresee", "one", "buyer", "for", "the", "entire", "company,", "as", "it", "has", "assets", "in", "the", "U.S.", "and", "Canada.", "If", "anything,", "I", "could", "see", "it", "selling", "its", "Canadian", "assets", "or", "its", "U.S.", "assets,", "potentially", "both,", "but", "probably", "not", "to", "the", "same", "parties.", "It", "definitely", "will", "get", "interest", "on", "its", "Viking", "and", "Cardium", "light", "oil", "resource-focused", "assets", "in", "Canada.", "We", "expect", "to", "see", "some", "news", "by", "the", "end", "of", "the", "summer,", "at", "least", "some", "guidance", "on", "what’s", "going", "on", "with", "the", "strategic", "review", "process.", "Equal", "has", "definitely", "been", "hurt", "by", "the", "liquids", "pricing", "at", "Conway,", "which", "is", "trading", "at", "very", "depressed", "levels.", "The", "pricing", "discount", "could", "stay", "in", "place", "for", "another", "9–18", "months", "until", "there", "is", "some", "de-bottlenecking", "to", "get", "more", "takeaway", "capacity.", "TER:", "Among", "the", "companies", "you’ve", "talked", "about", "today,", "which", "one", "or", "ones", "would", "be", "your", "personal", "favorites,", "if", "you", "had", "to", "pick?", "TM:", "If", "you’re", "bullish", "on", "oil", "and", "you", "think", "it", "is", "going", "to", "stay", "at", "these", "levels,", "I", "don’t", "think", "you", "can", "go", "wrong", "with", "Whitecap.", "It", "has", "a", "big", "production", "base", "for" ], [ "a", "small", "cap", "and", "probably", "a", "dividend", "coming", "by", "year-end.", "It", "has", "a", "strong", "management", "team,", "good", "light", "oil-focused", "assets", "and", "it’s", "an", "active", "acquirer.", "In", "addition,", "it", "has", "some", "good", "hedges", "in", "place", "for", "the", "remainder", "of", "this", "year", "and", "into", "2013,", "which", "gives", "us", "more", "certainty", "on", "completing", "its", "capital", "program.", "At", "these", "levels,", "Whitecap", "makes", "really", "good", "sense.", "I", "also", "like", "Pinecrest", "sub-$2", "and", "become", "much", "more", "aggressive", "as", "it", "approaches", "$1.50.", "The", "stock", "is", "a", "little", "more", "volatile", "and", "has", "recently", "moved", "8–10%", "in", "a", "day.", "This", "stock", "is", "also", "very", "liquid,", "which", "I", "have", "mentioned", "earlier", "as", "being", "important", "for", "institutional", "investors.", "I", "also", "continue", "to", "like", "Spartan,", "which", "is", "more", "range-bound", "with", "less", "volatility.", "If", "people", "are", "a", "little", "concerned", "about", "oil", "drifting", "south,", "then", "I", "think", "Spartan", "is", "the", "way", "to", "play", "the", "space", "right", "now.", "I", "don’t", "think", "it", "will", "be", "hit", "as", "hard", "as", "the", "other", "two", "in", "a", "falling", "commodity", "environment", "due", "to", "its", "very", "strong", "balance", "sheet", "and", "net", "asset", "value,", "which", "we", "valued", "at", "~$3.75/share.", "TER:", "To", "summarize,", "what", "do", "you", "suggest", "for", "people", "to", "be", "doing", "strategically", "and", "tactically", "to", "play", "these", "current", "markets", "and", "hopefully", "benefit", "from", "them?", "When", "do", "you", "think", "we’re", "going", "to", "see", "some", "higher", "commodity", "prices", "that", "will", "take", "everything", "up?", "TM:", "We", "think", "a", "good", "group", "to", "be", "in", "is", "the", "small-cap", "space", "as", "it", "is", "trading", "at", "a", "discount", "to", "the", "longer-term", "averages", "on", "cash-flow", "multiples.", "Most", "names", "in", "this", "group", "have", "good", "liquidity,", "which", "is", "important", "in", "volatile", "markets.", "We", "don’t", "believe", "that", "~$90", "WTI", "is", "a", "bad", "number", "and", "if", "pricing", "remains", "around", "those", "levels,", "we", "believe", "the", "valuation", "gap", "should", "close.", "Higher", "commodity", "prices", "will", "most", "likely", "return", "if", "the", "market", "is", "reassured", "that", "the", "European", "debt", "crisis", "has", "run", "its", "course", "and", "if", "developing", "countries", "look", "to", "be", "expanding,", "as", "they", "provide", "the", "biggest", "increase", "in", "demand", "for", "crude", "and", "refined", "products.", "TER:", "Thanks", "for", "your", "thoughts.", "TM:", "Thank", "you.", "Tim", "Murray", "joined", "Desjardins", "Securities", "in", "July", "2011.", "Prior", "to", "this,", "he", "was", "an", "oil", "and", "gas", "analyst", "for", "almost", "six", "years", "at", "several", "investment", "boutiques", "covering", "junior", "and", "mid-cap", "companies.", "He", "also", "spent", "over", "a", "year", "at", "AltaGas", "Income", "Trust", "performing", "risk", "and", "credit", "analysis", "on", "natural", "gas", "and", "power", "assets", "for", "the", "company’s", "midstream", "business", "and", "served", "as", "an", "investment", "advisor", "for", "three", "years.", "Tim", "was", "awarded", "the", "CFA", "designation", "in", "2003.", "Want", "to", "read", "more", "exclusive", "Energy", "Report", "interviews", "like", "this?", "Sign", "up", "for", "our", "free", "e-newsletter,", "and", "you’ll", "learn", "when", "new", "articles", "have", "been", "published.", "To", "see", "a", "list", "of", "recent", "interviews", "with", "industry", "analysts", "and", "commentators,", "visit", "our", "Exclusive", "Interviews", "page.", "1)", "Lambo", "of", "The", "Energy", "Report", "conducted", "this", "interview.", "He", "personally", "and/or", "his", "family", "own", "shares", "of", "the", "following", "companies", "mentioned", "in", "this", "interview:", "None.", "2)", "The", "following", "companies", "mentioned", "in", "the", "interview", "are", "sponsors", "of", "The", "Energy", "Report:", "Equal", "Energy.", "Streetwise", "Reports", "does", "not", "accept", "stock", "in", "exchange", "for", "services.", "Interviews", "are", "edited", "for", "clarity.", "3)", "Tim", "Murray:", "I", "personally", "and/or", "my", "family", "own", "shares", "of", "the", "following", "companies", "mentioned", "in", "this", "interview:", "None.", "I", "personally", "and/or", "my", "family", "am", "paid", "by", "the", "following", "companies", "mentioned", "in", "this", "interview:", "None.", "I", "was", "not", "paid", "by", "Streetwise", "Reports", "for", "participating", "in", "this", "interview." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Thu,", "Aug", "2,", "2012", "It", "hasn’t", "been", "a", "very", "exciting", "year", "for", "most", "energy", "stocks,", "but", "therein", "lies", "the", "opportunity", "for", "selective", "buyers", "with", "a", "longer-term", "view.", "In", "this", "exclusive", "interview", "with", "The", "Energy", "Report,", "Tim", "Murray,", "oil", "and", "gas", "analyst", "at", "Desjardins", "Securities,", "explains", "why", "he", "prefers", "small-cap", "producers", "in", "this", "market", "environment", "and", "discusses", "a", "few", "favorites", "he", "expects", "will", "outperform.", "Where", "to", "Look", "in", "This", "Volatile", "Oil", "Market:", "Tim", "Murray", "The", "Energy", "Report:", "The", "last", "time", "you", "spoke", "with", "us", "in", "January,", "you", "were", "expecting", "oil", "prices", "to", "stay", "in", "the", "$80–100/barrel", "(bbl)", "range,", "which", "they", "pretty", "much", "have.", "Where", "do", "you", "think", "they", "are", "headed", "now?", "Tim", "Murray:", "We", "still", "believe", "this", "range", "is", "realistic", "for", "the", "remainder", "of", "this", "year", "and", "into", "2013.", "The", "last", "downturn", "in", "crude", "seemed", "to", "stem", "more", "from", "negative", "sentiment", "than", "a", "change", "in", "the", "supply-demand", "balance.", "West", "Texas", "Intermediate", "(WTI)", "bounced", "off", "~$76/bbl", "recently,", "which", "was", "the", "low", "back", "in", "October,", "so", "this", "is", "a", "level", "we", "will", "be", "watching", "very", "closely", "if", "it", "were", "to", "be", "breached.", "TER:", "What", "effect", "is", "the", "move", "back", "down", "into", "$80/bbl", "going", "to", "have", "for", "oil", "companies’", "exploration", "and", "development", "plans?", "TM:", "Companies", "are", "definitely", "going", "to", "have", "to", "reassess", "their", "exploration", "and", "development", "budgets,", "if", "they", "are", "budgeting", "anything", "close", "to", "$100/bbl", "WTI.", "Most", "juniors", "in", "the", "Canadian", "space", "use", "cash", "flow", "plus", "manage", "their", "future", "drill", "programs.", "We’ve", "already", "seen", "several", "companies", "in", "my", "space", "cut", "their", "capital", "programs.", "Whitecap", "Resources", "Inc.", "(WCP:TSX.V)", "trimmed", "its", "capital", "program,", "as", "did", "Bellatrix", "Exploration", "Ltd.", "(BXE:TSX),", "Second", "Wave", "Petroleum", "Inc.", "(SCS:TSX.V),", "River", "Exploration", "Inc.", "(RRX:TSX)", "Corp.", "(LNV:TSX).", "We", "expect", "others", "will", "probably", "have", "to", "do", "the", "same", "and", "we", "don’t", "see", "any", "junior", "or", "small-cap", "companies", "expanding", "programs", "at", "this", "time.", "Most", "midcaps", "have", "a", "lot", "more", "balance", "sheet", "flexibility", "and", "we", "don’t", "envision", "midcaps", "in", "general", "needing", "to", "cut", "budgets", "unless", "we", "see", "a", "sustained", "oil", "price", "closer", "to", "$75/bbl.", "TER:", "Do", "you", "think", "a", "lot", "of", "companies", "were", "beginning", "to", "think", "that", "$100/bbl", "was", "the", "new", "base", "and", "planning", "around", "that", "or", "were", "they", "skeptical", "as", "to", "how", "long", "that", "was", "going", "to", "last?", "TM:", "Most", "were", "still", "using", "around", "$95/bbl", "oil,", "and", "hadn’t", "been", "putting", "$100/bbl", "in", "budgets.", "I", "don’t", "think", "anybody", "was", "saying", "that", "it’s", "the", "new", "base,", "as", "most", "are", "accustomed", "to", "the", "large", "swings", "in", "commodity", "prices.", "TER:", "Natural", "gas,", "on", "the", "other", "side,", "has", "been", "the", "sick", "sister.", "After", "peaking", "in", "2008", "over", "$10/bbl,", "it’s", "been", "hanging", "around", "the", "$2-2.50/bbl", "level,", "about", "as", "low", "as", "it’s", "been", "for", "the", "last", "13", "years.", "Is", "anything", "on", "the", "horizon", "to", "cause", "much", "of", "an", "improvement", "or", "is", "it", "stuck", "in", "that", "range?", "TM:", "For", "the", "summer,", "we", "feel", "an", "average", "Henry", "Hub", "price", "of", "$2.50–3", "is", "realistic", "and", "natural", "gas", "has", "been", "trading", "higher", "than", "that", "recently.", "We", "need", "to", "see", "storage", "levels", "come", "off", "before", "price", "levels", "appreciate", "materially", "into", "the", "fours.", "Storage", "levels", "are", "running", "at", "all-time", "highs", "in", "Canada,", "and", "in", "the", "U.S.", "as", "well.", "Drilling", "has", "eased", "in", "Canada", "and", "the", "U.S.,", "which", "will", "help", "reduce", "the", "supply", "equation;", "however,", "a", "lot", "of", "the", "oil", "resource", "plays", "have", "gas", "associated", "with", "them.", "Natural", "gas", "is", "really", "a", "landlocked", "commodity", "in", "North", "America", "and", "until", "the", "means", "are", "available", "to", "reach", "other", "markets", "such", "as", "Asia,", "prices", "will", "remain", "relatively", "depressed.", "Looking", "longer", "term", "in", "Canada,", "we", "may", "see", "the", "first", "LNG", "facility", "at", "Kitimat,", "which", "would", "give", "producers", "access", "to", "the", "international", "market.", "But", "this", "isn’t", "expected", "until", "2017.", "TER:", "Other", "than", "the", "ongoing", "financial", "problems", "in", "Europe", "and", "whatever", "the", "crisis", "du", "jour", "is", "in", "the", "Middle", "East,", "do", "you", "see", "anything", "on", "the", "horizon", "which", "could", "cause", "oil", "or", "prices", "to", "move", "much", "in", "either", "direction?", "TM:", "Middle", "East", "tension", "is", "always", "the", "biggest", "wild", "card,", "and", "the", "ongoing", "debt", "situation", "in", "Europe", "will", "continue", "to", "grab", "headlines.", "The", "one", "other", "wild", "card", "that", "people", "are", "aware", "of", "but", "have", "a", "difficulty", "putting", "a", "time", "frame", "on", "is", "the", "duration", "of", "the", "European", "embargo", "on", "buying", "Iranian", "crude", "that", "started", "July", "1.", "We’re", "also", "watching", "crude", "supply", "levels,", "which", "are", "quite", "high.", "From", "a", "North", "American", "standpoint,", "in", "the", "last", "two", "to", "three", "years,", "the", "spread", "between", "Brent", "and", "WTI", "has", "favored", "the", "Brent", "markets.", "Long", "term,", "we", "do", "think", "that", "spread", "will", "close,", "but", "it", "could", "take", "anywhere", "from", "three", "to", "five", "years." ] ], [ [ "TER:", "Companies", "in", "the", "oil", "and", "gas", "services", "business", "have", "to", "be", "affected", "by", "what", "is", "going", "on", "in", "this", "market.", "Are", "there", "some", "interesting", "opportunities", "out", "there", "or", "do", "you", "think", "that", "the", "impact", "is", "too", "negative", "on", "them", "at", "this", "point?", "TM:", "Definitely,", "the", "service", "sector", "traded", "down", "as", "oil", "moved", "lower,", "which", "is", "not", "a", "big", "surprise.", "Our", "oil", "and", "gas", "services", "analyst", "here", "has", "been", "recommending", "Precision", "Drilling", "Corp.", "(PD:TSX)", "between", "the", "$6–7", "range.", "The", "stock", "has", "been", "fairly", "volatile", "the", "last", "month", "and", "is", "currently", "north", "of", "$8.", "TER:", "So,", "generally,", "the", "service", "business", "is", "not", "a", "hot", "market", "opportunity", "these", "days.", "TM:", "It’s", "not", "as", "hot", "as", "it", "was", "before.", "The", "good", "thing", "in", "this", "cycle", "is", "that", "the", "balance", "sheets", "of", "the", "Canadian", "service", "companies", "are", "generally", "good,", "giving", "them", "the", "ability", "to", "ride", "out", "a", "lower", "pricing", "environment.", "Many", "are", "paying", "small", "dividends", "that", "can", "easily", "be", "increased", "if", "activity", "levels", "ramp", "up.", "It", "may", "not", "be", "the", "hottest", "space,", "but", "there", "are", "definitely", "a", "lot", "of", "good", "valuations", "on", "many", "of", "the", "stocks.", "TER:", "So", "what’s", "your", "outlook", "at", "this", "point", "for", "oil", "stocks", "in", "general?", "TM:", "Our", "theme", "really", "hasn’t", "changed.", "We", "still", "continue", "to", "look", "for", "good", "management", "teams,", "good", "balance", "sheets", "and", "asset", "bases", "that", "can", "show", "per-share", "growth", "for", "the", "next", "three", "to", "five", "years.", "The", "other", "key", "is", "liquidity,", "as", "investors", "and", "larger", "institutions", "don’t", "want", "to", "be", "stuck", "with", "a", "stock", "that", "they", "cannot", "unload.", "For", "my", "coverage", "universe,", "I", "prefer", "my", "small-cap", "names", "over", "the", "juniors", "as", "they", "have", "bigger", "production", "profiles,", "better", "balance", "sheets", "and", "liquidity.", "TER:", "Back", "in", "January,", "you", "talked", "about", "a", "number", "of", "midcap", "and", "small-cap", "companies.", "Can", "you", "give", "us", "a", "little", "update", "on", "what’s", "happened", "with", "them", "since", "then?", "TM:", "My", "two", "favorite", "names", "then", "were", "Whitecap", "Resources", "and", "Spartan", "Oil", "Corp.", "(STO:TSX).", "Spartan", "is", "up", "this", "year,", "about", "10%", "compared", "to", "the", "GMP", "Junior", "Oil", "&", "Index,", "which", "is", "down", "~17%.", "Whitecap", "is", "down", "~15%.", "Strategic", "Oil", "&", "Gas", "Ltd.", "(SOG:TSX)", "is", "down", "almost", "35%.", "Torquay", "Oil", "Corp.", "(TOC.A:TSX.V;", "TOC.B:TSX.V)", "is", "down", "almost", "50%.", "The", "junior", "names", "have", "underperformed", "because", "capital", "tends", "to", "move", "to", "the", "larger,", "more", "liquid", "equities", "in", "volatile", "times.", "If", "I", "were", "to", "benchmark", "Strategic", "to", "its", "junior", "oil", "group,", "it", "has", "outperformed—the", "group", "on", "average", "is", "down", "~45%.", "TER:", "Do", "you", "think", "that", "these", "are", "all", "decent", "buying", "opportunities", "at", "this", "level?", "TM:", "We", "continue", "to", "favor", "the", "small-cap", "space", "over", "the", "junior", "space.", "I", "still", "like", "Spartan", "and", "I", "prefer", "Whitecap", "at", "these", "levels.", "A", "new", "name", "that", "I", "cover", "that", "looks", "very", "interesting", "at", "these", "levels", "is", "Pinecrest", "Energy", "Inc.", "(PRY:TSX.V).", "It", "has", "one", "dominant", "asset", "in", "the", "greater", "Red", "Earth", "area", "targeting", "the", "Slave", "Point", "resource", "play.", "It", "is", "one", "of", "the", "most", "active", "operators", "in", "the", "play,", "and", "with", "250", "net", "sections,", "it", "could", "have", "over", "10", "years", "of", "drilling", "in", "front", "of", "it,", "if", "well", "results", "continue", "to", "come", "in", "positive.", "It", "plans", "on", "drilling", "30", "wells", "this", "year", "and", "if", "it", "can", "demonstrate", "similar", "production", "adds", "in", "the", "back", "half", "of", "this", "year,", "as", "it", "accomplished", "last", "year,", "we", "should", "see", "the", "stock", "react", "very", "positively.", "TER:", "You", "also", "cover", "Energy", "Ltd.", "(EQU:TSX;", "EQU:NYSE)?", "Do", "you", "have", "any", "thoughts", "on", "that", "one?", "TM:", "Equal", "is", "in", "strategic", "review", "right", "now.", "The", "stock", "is", "really", "going", "to", "be", "pretty", "quiet", "for", "the", "time", "being", "until", "we", "get", "some", "news", "on", "how", "that", "strategic", "review", "process", "is", "going.", "I", "don’t", "foresee", "one", "buyer", "for", "the", "entire", "company,", "as", "it", "has", "assets", "in", "the", "U.S.", "and", "Canada.", "If", "anything,", "I", "could", "see", "it", "selling", "its", "Canadian", "assets", "or", "its", "U.S.", "assets,", "potentially", "both,", "but", "probably", "not", "to", "the", "same", "parties.", "It", "definitely", "will", "get", "interest", "on", "its", "Viking", "and", "Cardium", "light", "oil", "resource-focused", "assets", "in", "Canada.", "We", "expect", "to", "see", "some", "news", "by", "the", "end", "of", "the", "summer,", "at", "least", "some", "guidance", "on", "what’s", "going", "on", "with", "the", "strategic", "review", "process.", "Equal", "has", "definitely", "been", "hurt", "by", "the", "liquids", "pricing", "at", "Conway,", "which", "is", "trading", "at", "very", "depressed", "levels.", "The", "pricing", "discount", "could", "stay", "in", "place", "for", "another", "9–18", "months", "until", "there", "is", "some", "de-bottlenecking", "to", "get", "more", "takeaway", "capacity.", "TER:", "Among", "the", "companies", "you’ve", "talked", "about", "today,", "which", "one", "or", "ones", "would", "be", "your", "personal", "favorites,", "if", "you", "had", "to", "pick?", "TM:", "If", "you’re", "bullish", "on", "oil", "and", "you", "think", "it", "is", "going", "to", "stay", "at", "these", "levels,", "I", "don’t", "think", "you", "can", "go", "wrong", "with", "Whitecap.", "It", "has", "a", "big", "production", "base", "for" ] ], [ [ "a", "small", "cap", "and", "probably", "a", "dividend", "coming", "by", "year-end.", "It", "has", "a", "strong", "management", "team,", "good", "light", "oil-focused", "assets", "and", "it’s", "an", "active", "acquirer.", "In", "addition,", "it", "has", "some", "good", "hedges", "in", "place", "for", "the", "remainder", "of", "this", "year", "and", "into", "2013,", "which", "gives", "us", "more", "certainty", "on", "completing", "its", "capital", "program.", "At", "these", "levels,", "Whitecap", "makes", "really", "good", "sense.", "I", "also", "like", "Pinecrest", "sub-$2", "and", "become", "much", "more", "aggressive", "as", "it", "approaches", "$1.50.", "The", "stock", "is", "a", "little", "more", "volatile", "and", "has", "recently", "moved", "8–10%", "in", "a", "day.", "This", "stock", "is", "also", "very", "liquid,", "which", "I", "have", "mentioned", "earlier", "as", "being", "important", "for", "institutional", "investors.", "I", "also", "continue", "to", "like", "Spartan,", "which", "is", "more", "range-bound", "with", "less", "volatility.", "If", "people", "are", "a", "little", "concerned", "about", "oil", "drifting", "south,", "then", "I", "think", "Spartan", "is", "the", "way", "to", "play", "the", "space", "right", "now.", "I", "don’t", "think", "it", "will", "be", "hit", "as", "hard", "as", "the", "other", "two", "in", "a", "falling", "commodity", "environment", "due", "to", "its", "very", "strong", "balance", "sheet", "and", "net", "asset", "value,", "which", "we", "valued", "at", "~$3.75/share.", "TER:", "To", "summarize,", "what", "do", "you", "suggest", "for", "people", "to", "be", "doing", "strategically", "and", "tactically", "to", "play", "these", "current", "markets", "and", "hopefully", "benefit", "from", "them?", "When", "do", "you", "think", "we’re", "going", "to", "see", "some", "higher", "commodity", "prices", "that", "will", "take", "everything", "up?", "TM:", "We", "think", "a", "good", "group", "to", "be", "in", "is", "the", "small-cap", "space", "as", "it", "is", "trading", "at", "a", "discount", "to", "the", "longer-term", "averages", "on", "cash-flow", "multiples.", "Most", "names", "in", "this", "group", "have", "good", "liquidity,", "which", "is", "important", "in", "volatile", "markets.", "We", "don’t", "believe", "that", "~$90", "WTI", "is", "a", "bad", "number", "and", "if", "pricing", "remains", "around", "those", "levels,", "we", "believe", "the", "valuation", "gap", "should", "close.", "Higher", "commodity", "prices", "will", "most", "likely", "return", "if", "the", "market", "is", "reassured", "that", "the", "European", "debt", "crisis", "has", "run", "its", "course", "and", "if", "developing", "countries", "look", "to", "be", "expanding,", "as", "they", "provide", "the", "biggest", "increase", "in", "demand", "for", "crude", "and", "refined", "products.", "TER:", "Thanks", "for", "your", "thoughts.", "TM:", "Thank", "you.", "Tim", "Murray", "joined", "Desjardins", "Securities", "in", "July", "2011.", "Prior", "to", "this,", "he", "was", "an", "oil", "and", "gas", "analyst", "for", "almost", "six", "years", "at", "several", "investment", "boutiques", "covering", "junior", "and", "mid-cap", "companies.", "He", "also", "spent", "over", "a", "year", "at", "AltaGas", "Income", "Trust", "performing", "risk", "and", "credit", "analysis", "on", "natural", "gas", "and", "power", "assets", "for", "the", "company’s", "midstream", "business", "and", "served", "as", "an", "investment", "advisor", "for", "three", "years.", "Tim", "was", "awarded", "the", "CFA", "designation", "in", "2003.", "Want", "to", "read", "more", "exclusive", "Energy", "Report", "interviews", "like", "this?", "Sign", "up", "for", "our", "free", "e-newsletter,", "and", "you’ll", "learn", "when", "new", "articles", "have", "been", "published.", "To", "see", "a", "list", "of", "recent", "interviews", "with", "industry", "analysts", "and", "commentators,", "visit", "our", "Exclusive" ], [ "Lambo", "of", "The", "Energy", "Report", "conducted", "this", "interview.", "He", "personally", "and/or", "his", "family", "own", "shares", "of", "the", "following", "companies", "mentioned", "in", "this", "interview:", "None.", "2)", "The", "following", "companies", "mentioned", "in", "the", "interview", "are", "sponsors", "of", "The", "Energy", "Report:", "Equal", "Energy.", "Streetwise", "Reports", "does", "not", "accept", "stock", "in", "exchange", "for", "services.", "Interviews", "are", "edited", "for", "clarity.", "3)", "Tim", "Murray:", "I", "personally", "and/or", "my", "family", "own", "shares", "of", "the", "following", "companies", "mentioned", "in", "this", "interview:", "None.", "I", "personally", "and/or", "my", "family", "am", "paid", "by", "the", "following", "companies", "mentioned", "in", "this", "interview:", "None.", "I", "was", "not", "paid", "by", "Streetwise", "Reports", "for", "participating", "in", "this", "interview." ] ] ]
[ [ "en" ], [ "en" ], [ "en", "en" ] ]
[ "mono" ]
[ [ "Pokémon:", "Let’s", "Go,", "Pikachu!", "and", "Let’s", "Go,", "Eevee!", "releases", "next", "month,", "and", "peripheral", "manufacturer", "HORI", "is", "getting", "ready", "to", "release", "a", "batch", "of", "neat", "accessories", "for", "Switch", "and", "the", "Poké", "Ball", "Plus.", "Here’s", "a", "look", "at", "HORI’s", "upcoming", "accessories", "that", "will", "release", "alongside", "Let’s", "Go", "in", "Japan", "next", "month:", "Polycarbonate", "Cover", "for", "Plus", "Available", "pre-order", "at", "Amazon", "for", "1,382", "yen.", "Hard", "Pouch", "for", "Ball", "Plus", "Available", "pre-order", "at", "Amazon", "1,382", "Wireless", "Charging", "Stand", "for", "Poké", "Plus", "Available", "pre-order", "at", "Amazon", "for", "2,138", "yen.", "Shoulder", "Pouch", "for", "Nintendo", "Pikachu!", "&", "Let’s", "Go,", "Eevee!", "Available", "for", "pre-order", "at", "Amazon", "2,678", "yen.", "Hard", "Pouch", "for", "Nintendo", "Switch", "Pikachu!", "&", "Let’s", "Go,", "Eevee!", "Available", "for", "pre-order", "at", "Amazon", "for", "2,354", "yen.", "Card", "Case", "6", "for", "Nintendo", "Pikachu!", "&", "Let’s", "Go,", "Eevee!", "Available", "for", "pre-order", "at", "Amazon", "1,382", "yen.", "Pokémon:", "Let’s", "Go,", "Pikachu!", "and", "Let’s", "Go,", "Eevee!", "release", "on", "November", "16,", "2018", "for", "Nintendo", "Switch.", "In", "case", "you", "missed", "it,", "a", "new", "Hex", "Nut", "Pokémon", "called", "Meltan", "was", "recently", "discovered." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "es", "en", "en", "en", "en", "en", "nl", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "es", "en", "en", "en", "en", "en", "nl", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "fr", "fr", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Pokémon:", "Let’s", "Go,", "Pikachu!", "and", "Let’s", "Go,", "Eevee!", "releases", "next", "month,", "and", "peripheral", "manufacturer", "HORI", "is", "getting", "ready", "to", "release", "a", "batch", "of", "neat", "accessories", "for", "Switch", "and", "the", "Poké", "Ball", "Plus.", "Here’s", "a", "look", "at", "HORI’s", "upcoming", "accessories", "that", "will", "release", "alongside", "Let’s", "Go", "in", "Japan", "next", "month:", "Polycarbonate", "Cover", "for", "Plus", "Available", "pre-order", "at", "Amazon", "for", "1,382", "yen.", "Hard", "Pouch", "for", "Ball", "Plus", "Available", "pre-order", "at", "Amazon", "1,382", "Wireless", "Charging", "Stand", "for", "Poké", "Plus", "Available", "pre-order", "at", "Amazon", "for", "2,138", "yen.", "Shoulder", "Pouch", "for", "Nintendo", "Pikachu!", "&", "Let’s", "Go,", "Eevee!", "Available", "for", "pre-order", "at", "Amazon", "2,678", "yen.", "Hard", "Pouch", "for", "Nintendo", "Switch", "Pikachu!", "&", "Let’s", "Go,", "Eevee!", "Available", "for", "pre-order", "at", "Amazon", "for", "2,354", "yen.", "Card", "Case", "6", "for", "Nintendo", "Pikachu!", "&", "Let’s", "Go,", "Eevee!", "Available", "for", "pre-order", "at", "Amazon", "1,382", "yen.", "Pokémon:", "Let’s", "Go,", "Pikachu!", "and", "Let’s", "Go,", "Eevee!", "release", "on", "November", "16,", "2018", "for", "Nintendo", "Switch.", "In", "case", "you", "missed", "it,", "a", "new", "Hex", "Nut", "Pokémon", "called", "Meltan", "was", "recently", "discovered." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Quick", "Look:", "Moonlighter", "The", "best", "part", "of", "shop-keeping", "is", "fighting", "burglars!!", "Nothing", "gets", "past", "me!!!", "Sit", "back", "and", "enjoy", "as", "the", "Giant", "Bomb", "team", "takes", "an", "unedited", "look", "at", "the", "latest", "video", "games.", "Jul.", "2", "2018", "Cast:", "Vinny,", "Alex,", "Abby", "Posted", "by:", "Abby" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Quick", "Look:", "Moonlighter", "The", "best", "part", "of", "shop-keeping", "is", "fighting", "burglars!!", "Nothing", "gets", "past", "me!!!", "Sit", "back", "and", "enjoy", "as", "the", "Giant", "Bomb", "team", "takes", "an", "unedited", "look", "at", "the", "latest", "video", "games.", "Jul.", "2", "2018", "Cast:", "Vinny,", "Alex,", "Abby", "Posted", "by:", "Abby" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "The", "checkout", "process", "on", "your", "website", "is", "similar", "to", "how", "a", "buyer", "purchases", "on", "Etsy.", "Visitors", "have", "the", "option", "to", "purchase", "with", "an", "Etsy", "account,", "or", "they", "can", "complete", "the", "entire", "transaction", "as", "a", "guest.", "We’ll", "go", "over", "what", "a", "buyer", "sees", "during", "checkout,", "and", "what", "you", "see", "when", "you", "make", "a", "sale", "on", "Pattern.", "Note:", "At", "this", "time,", "there", "is", "no", "way", "to", "opt", "out", "of", "having", "guest", "checkout", "on", "your", "Pattern", "site.", "There", "are", "no", "extra", "fees", "for", "having", "guest", "checkout—your", "monthly", "Pattern", "subscription", "fee", "and", "transaction", "fees", "remain", "the", "same.", "What", "your", "buyer", "will", "see", "When", "your", "buyer", "clicks", "Proceed", "to", "Checkout,", "they’ll", "be", "taken", "to", "a", "page", "where", "they", "can", "choose", "their", "payment", "method.", "If", "they", "do", "have", "an", "Etsy", "account,", "they", "can", "click", "the", "Sign", "in", "link.", "If", "not,", "they", "can", "select", "a", "payment", "method", "and", "then", "click", "Continue", "to", "complete", "the", "checkout", "process", "as", "a", "guest.", "Guest", "check", "out", "is", "not", "available", "for:", "Any", "order", "over", "$250", "Some", "payment", "methods,", "including", "money", "orders", "and", "checks", "Orders", "purchased", "with", "Etsy", "gift", "cards", "If", "the", "buyer", "chooses", "to", "check", "out", "as", "a", "guest,", "they’ll", "enter", "their", "shipping", "address,", "payment", "details,", "and", "email", "address", "as", "they", "would", "during", "usual", "Etsy", "checkout.", "If", "they", "signed", "in", "to", "their", "Etsy", "account,", "they’ll", "see", "a", "list", "of", "shipping", "addresses", "and", "payment", "details", "they", "saved", "to", "their", "account.", "They", "can", "also", "add", "new", "addresses", "or", "payment", "information.", "The", "Review", "and", "submit", "your", "order", "page", "gives", "the", "buyer", "an", "opportunity", "to", "change", "their", "previously", "entered", "shipping", "address,", "payment", "method,", "or", "email", "address", "if", "needed.", "They", "can", "still", "use", "your", "shop’s", "coupon", "codes,", "even", "if", "they", "are", "checking", "out", "as", "a", "guest.", "For", "buyers", "in", "the", "EEA", "If", "your", "buyer", "is", "in", "the", "EEA,", "which", "comprises", "the", "EU,", "Norway,", "Iceland,", "and", "Liechtenstein,", "they", "may", "be", "asked", "to", "authenticate", "their", "payment", "when", "they", "complete", "their", "purchase.", "To", "authenticate", "a", "payment,", "they", "need", "to", "respond", "to", "a", "prompt", "from", "their", "card", "issuer", "and", "provide", "additional", "information.", "Depending", "on", "their", "card", "issuer,", "this", "additional", "information", "may", "include", "a", "correct", "response", "to", "a", "question,", "a", "password,", "or", "a", "passcode.", "When", "your", "buyer", "submits", "their", "order,", "they’ll", "be", "taken", "to", "a", "confirmation", "page.", "If", "you’ve", "connected", "your", "Pattern", "site", "with", "MailChimp,", "your", "buyer", "will", "see", "an", "option", "to", "subscribe", "to", "your", "website’s", "newsletter.", "The", "buyer", "will", "get", "a", "receipt", "sent", "to", "their", "email", "address.", "They'll", "also", "receive", "a", "shipment", "confirmation", "email", "(that", "includes", "tracking", "information,", "if", "applicable)", "when", "you", "mark", "the", "order", "as", "shipped.", "If", "the", "buyer", "pays", "with", "their", "PayPal", "account,", "these", "notifications", "will", "be", "sent", "to", "their", "PayPal", "email", "address.", "Otherwise,", "they'll", "be", "sent", "to", "the", "email", "address", "they", "enter", "during", "the", "checkout", "process.", "If", "they", "signed", "in", "to", "their", "Etsy", "account", "at", "the", "time", "of", "purchase,", "we’ll", "send", "this", "information", "to", "the", "email", "address", "they", "have", "on", "file.", "The", "buyer", "will", "not", "receive", "any", "promotional", "or", "marketing", "emails", "from", "Etsy.", "Also,", "your", "buyer", "won't", "be", "sent", "an", "email", "asking", "them", "to", "leave", "a", "review,", "since", "there", "is", "no", "review", "system", "for", "Pattern", "sites.", "What", "you'll", "see", "When", "you", "get", "a", "sale", "on", "your", "site,", "you’ll", "fulfill", "the", "order", "the", "same", "way", "as", "you", "normally", "would", "using", "your", "Etsy", "account.", "You", "can", "find", "the", "order", "on", "your", "Open", "Orders", "page.", "Go", "to", "Your", "Account", ">", "Shop", "Manager", ">", "Orders", "&", "Shipping", "and", "click", "the", "Open", "Orders", "tab.", "If", "the", "buyer", "checked", "out", "as", "a", "guest,", "you’ll", "see", "the", "word", "“Guest”", "under", "their", "name.", "The", "buyer", "will", "have", "one", "of", "six", "guest", "avatars", "displayed.", "If", "a", "guest", "buyer", "registers", "for", "an", "Etsy", "account", "and", "associates", "their", "order", "with", "their", "new", "account,", "their", "information", "will", "be", "updated", "on", "your", "Orders", "page.", "You’ll", "now", "see", "the", "buyer’s", "username", "and", "avatar", "(or", "if", "they", "haven’t", "chosen", "their", "own", "yet,", "the", "gray", "default", "avatar).", "There", "will", "also", "be", "a", "link", "to", "their", "Etsy", "profile.", "With", "this", "in", "mind,", "you", "should", "always", "reference", "order", "numbers", "when", "looking", "up", "your", "orders.", "Messages", "When", "a", "buyer", "contacts", "you,", "either", "through", "the", "Contact", "us", "link", "on", "your", "site", "or", "their", "receipt,", "you'll", "find", "their", "message", "in", "your", "Messages", "inbox.", "Your", "messages", "to", "the", "buyer", "go", "to", "their", "email", "inbox.", "This", "is", "where", "they", "can", "reply", "directly", "to", "the", "message.", "Cases", "We", "encourage", "people", "who", "buy", "from", "both", "Etsy", "shops", "and", "Pattern", "sites", "to", "contact", "their", "seller", "directly", "if", "they", "have", "a", "question", "about", "or", "an", "issue", "with", "their", "order.", "If", "a", "buyer", "needs", "to", "open", "a", "case,", "they’ll", "need", "to", "have", "an", "Etsy", "account.", "The", "best", "way", "for", "them", "to", "do", "this", "is", "by", "clicking", "the", "order", "number", "on", "their", "emailed", "receipt.", "This", "article", "explains", "how." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "The", "checkout", "process", "on", "your", "website", "is", "similar", "to", "how", "a", "buyer", "purchases", "on", "Etsy.", "Visitors", "have", "the", "option", "to", "purchase", "with", "an", "Etsy", "account,", "or", "they", "can", "complete", "the", "entire", "transaction", "as", "a", "guest.", "We’ll", "go", "over", "what", "a", "buyer", "sees", "during", "checkout,", "and", "what", "you", "see", "when", "you", "make", "a", "sale", "on", "Pattern.", "Note:", "At", "this", "time,", "there", "is", "no", "way", "to", "opt", "out", "of", "having", "guest", "checkout", "on", "your", "Pattern", "site.", "There", "are", "no", "extra", "fees", "for", "having", "guest", "checkout—your", "monthly", "Pattern", "subscription", "fee", "and", "transaction", "fees", "remain", "the", "same.", "What", "your", "buyer", "will", "see", "When", "your", "buyer", "clicks", "Proceed", "to", "Checkout,", "they’ll", "be", "taken", "to", "a", "page", "where", "they", "can", "choose", "their", "payment", "method.", "If", "they", "do", "have", "an", "Etsy", "account,", "they", "can", "click", "the", "Sign", "in", "link.", "If", "not,", "they", "can", "select", "a", "payment", "method", "and", "then", "click", "Continue", "to", "complete", "the", "checkout", "process", "as", "a", "guest.", "Guest", "check", "out", "is", "not", "available", "for:", "Any", "order", "over", "$250", "Some", "payment", "methods,", "including", "money", "orders", "and", "checks", "Orders", "purchased", "with", "Etsy", "gift", "cards", "If", "the", "buyer", "chooses", "to", "check", "out", "as", "a", "guest,", "they’ll", "enter", "their", "shipping", "address,", "payment", "details,", "and", "email", "address", "as", "they", "would", "during", "usual", "Etsy", "checkout.", "If", "they", "signed", "in", "to", "their", "Etsy", "account,", "they’ll", "see", "a", "list", "of", "shipping", "addresses", "and", "payment", "details", "they", "saved", "to", "their", "account.", "They", "can", "also", "add", "new", "addresses", "or", "payment", "information.", "The", "Review", "and", "submit", "your", "order", "page", "gives", "the", "buyer", "an", "opportunity", "to", "change", "their", "previously", "entered", "shipping", "address,", "payment", "method,", "or", "email", "address", "if", "needed.", "They", "can", "still", "use", "your", "shop’s", "coupon", "codes,", "even", "if", "they", "are", "checking", "out", "as", "a", "guest.", "For", "buyers", "in", "the", "EEA", "If", "your", "buyer", "is", "in", "the", "EEA,", "which", "comprises", "the", "EU,", "Norway,", "Iceland,", "and", "Liechtenstein,", "they", "may", "be", "asked", "to", "authenticate", "their", "payment", "when", "they", "complete", "their", "purchase.", "To", "authenticate", "a", "payment,", "they", "need", "to", "respond", "to", "a", "prompt", "from", "their", "card", "issuer", "and", "provide", "additional", "information.", "Depending", "on", "their", "card", "issuer,", "this", "additional", "information", "may", "include", "a", "correct", "response", "to", "a", "question,", "a", "password,", "or", "a", "passcode.", "When", "your", "buyer", "submits", "their", "order,", "they’ll", "be", "taken", "to", "a", "confirmation", "page.", "If", "you’ve", "connected", "your", "Pattern", "site", "with", "MailChimp,", "your", "buyer", "will", "see", "an", "option", "to", "subscribe", "to", "your", "website’s", "newsletter.", "The", "buyer", "will", "get", "a", "receipt", "sent", "to", "their", "email", "address.", "They'll", "also", "receive", "a", "shipment", "confirmation", "email", "(that", "includes", "tracking", "information,", "if", "applicable)", "when", "you", "mark", "the", "order", "as", "shipped.", "If", "the", "buyer", "pays", "with", "their", "PayPal", "account,", "these", "notifications", "will", "be", "sent", "to", "their", "PayPal", "email", "address.", "Otherwise,", "they'll", "be", "sent", "to", "the", "email", "address", "they", "enter", "during", "the", "checkout", "process.", "If", "they", "signed", "in", "to", "their", "Etsy", "account", "at", "the", "time", "of", "purchase,", "we’ll", "send", "this", "information", "to", "the", "email", "address", "they", "have", "on", "file.", "The", "buyer", "will", "not", "receive", "any", "promotional", "or", "marketing", "emails", "from", "Etsy.", "Also,", "your", "buyer", "won't", "be", "sent", "an", "email", "asking", "them", "to", "leave", "a", "review,", "since", "there", "is", "no", "review", "system", "for", "Pattern", "sites.", "What", "you'll", "see", "When", "you", "get", "a", "sale", "on", "your", "site,", "you’ll", "fulfill", "the", "order", "the", "same", "way", "as", "you", "normally", "would", "using", "your", "Etsy", "account.", "You", "can", "find", "the", "order", "on", "your", "Open", "Orders", "page.", "Go", "to", "Your", "Account", ">", "Shop", "Manager", ">", "Orders", "&", "Shipping", "and", "click", "the", "Open", "Orders", "tab.", "If", "the", "buyer", "checked", "out", "as", "a", "guest,", "you’ll", "see", "the", "word", "“Guest”", "under", "their", "name.", "The", "buyer", "will", "have", "one", "of", "six", "guest", "avatars", "displayed.", "If", "a", "guest", "buyer", "registers", "for", "an", "Etsy", "account", "and", "associates", "their", "order", "with", "their", "new", "account,", "their", "information", "will", "be", "updated", "on", "your", "Orders", "page.", "You’ll", "now", "see", "the", "buyer’s", "username", "and", "avatar", "(or", "if", "they", "haven’t", "chosen", "their", "own", "yet,", "the", "gray", "default", "avatar).", "There", "will", "also", "be", "a", "link", "to", "their", "Etsy", "profile.", "With", "this", "in", "mind,", "you", "should", "always", "reference", "order", "numbers", "when", "looking", "up", "your", "orders.", "Messages", "When", "a", "buyer", "contacts", "you,", "either", "through", "the", "Contact", "us", "link", "on", "your", "site", "or", "their", "receipt,", "you'll", "find", "their", "message", "in", "your", "Messages", "inbox.", "Your", "messages", "to", "the", "buyer", "go", "to", "their", "email", "inbox.", "This", "is", "where", "they", "can", "reply", "directly", "to", "the", "message.", "Cases", "We", "encourage", "people", "who", "buy", "from", "both", "Etsy", "shops", "and", "Pattern", "sites", "to", "contact", "their", "seller", "directly", "if", "they", "have", "a", "question", "about", "or", "an", "issue", "with", "their", "order.", "If", "a", "buyer", "needs", "to", "open", "a", "case,", "they’ll", "need", "to", "have", "an", "Etsy", "account.", "The", "best", "way", "for", "them", "to", "do", "this", "is", "by", "clicking", "the", "order", "number", "on", "their", "emailed", "receipt.", "This", "article", "explains", "how." ] ] ]
[ [ "en" ] ]
[ "mono", "mono" ]
[ [ "When", "I", "saw", "the", "face", "of", "Khuram", "Butt", "staring", "out", "of", "the", "newspapers", "at", "me", "last", "week,", "after", "he", "was", "named", "as", "one", "of", "the", "three", "London", "Bridge", "killers,", "I", "was", "deeply", "shocked.", "It", "took", "me", "back", "to", "the", "day", "nearly", "two", "years", "ago", "when", "I", "filmed", "him", "with", "a", "hidden", "camera", "as", "he", "protested,", "clad", "in", "headdress", "and", "robe,", "outside", "Regent's", "Park", "Mosque", "in", "London.", "We", "had", "gone", "undercover", "to", "make", "a", "Dispatches", "documentary", "for", "Channel", "4,", "focusing", "not", "on", "Butt", "and", "his", "fellow", "Islamists", "but", "on", "a", "less", "obvious", "group", "–", "the'sisters',", "the", "women", "who", "share", "their", "twisted", "views.", "Unlike", "their", "male", "counterparts,", "the", "women", "only", "ever", "express", "these", "views", "behind", "closed", "doors", "or", "online.", "Now", "my", "greatest", "fear", "is", "that", "one", "of", "those", "women", "I", "watched", "being", "brainwashed", "–", "or,", "even", "worse,", "one", "of", "the", "children", "who", "ran", "around", "playing", "as", "the", "hate-filled", "rants", "were", "delivered", "–", "might", "go", "on", "to", "murder", "innocent", "people", "as", "Butt", "did.", "After", "months", "attempting", "to", "win", "their", "confidence,", "I", "was", "introduced", "to", "Rubana", "(pictured),", "who", "used", "the", "pseudonym", "'Umm", "Luqman',", "and", "was", "invited", "to", "one", "of", "her", "talks", "in", "a", "nondescript", "building", "next", "to", "a", "barber's", "shop", "in", "Whitechapel,", "East", "London", "A", "4", "programme", "has", "exposed", "a", "group", "of", "British", "women", "as", "ISIS", "supporters", "who", "are", "encouraging", "'impressionable", "young", "girls'", "in", "the", "UK", "to", "travel", "to", "Syria", "and", "join", "the", "terrorist", "group", "I", "didn't", "pay", "much", "attention", "to", "him", "that", "day", "in", "July", "2015", "as", "he", "handed", "out", "extremist", "leaflets", "to", "worshippers", "leaving", "Friday", "prayers,", "but", "last", "week's", "events", "made", "me", "recall", "the", "vile", "propaganda", "he", "was", "peddling", "–", "in", "the", "same", "manner", "as", "the", "women,", "as", "I", "would", "discover.", "They", "were", "part", "of", "banned", "terror", "group", "Al-Muhajiroun", "in", "all", "but", "name.", "Its", "former", "leader,", "Anjem", "Choudary,", "had", "just", "been", "arrested,", "and", "is", "now", "serving", "a", "prison", "sentence", "for", "urging", "support", "of", "Islamic", "State.", "But", "his", "followers", "continued", "their", "'work'", "without", "him", "–", "and", "no", "doubt", "still", "do", "now.", "What's", "more,", "the", "woman", "leading", "the'sisters',", "is", "Choudary's", "wife,", "Rubana", "Akhtar.", "Over", "the", "course", "of", "a", "year,", "I", "slowly", "gained", "access", "to", "Rubana's", "group,", "initially", "by", "contacting", "her", "followers", "on", "Twitter,", "then", "through", "texting", "and", "other", "social", "media.", "After", "months", "attempting", "to", "win", "their", "confidence,", "I", "was", "introduced", "to", "Rubana,", "who", "used", "the", "pseudonym", "'Umm", "Luqman',", "and", "was", "invited", "to", "one", "of", "her", "talks", "in", "a", "nondescript", "building", "next", "to", "a", "barber's", "shop", "in", "Whitechapel,", "East", "London.", "What", "I", "witnessed", "there", "convinced", "me", "that", "the", "stereotypical", "image", "of", "jihadis", "as", "young", "men", "needs", "to", "be", "adjusted,", "because", "the", "women", "were", "equally", "virulent", "in", "their", "views.", "In", "the", "two-hour", "lectures,", "the", "female", "Islamic", "State", "sympathisers", "are", "heard", "spreading", "ISIS's", "extremist", "ideology", "and", "encouraging", "people", "to", "join", "them", "in", "Syria.", "Pictured", "is", "a", "still", "from", "the", "documentary", "ISIS", "ideology", "was", "spread", "both", "online", "and", "in", "person", "to", "women", "and", "'impressionable", "young", "girls'.", "They", "are", "told", "to", "abandon", "democracy", "and", "travel", "to", "Syria", "to", "join", "ISIS", "in", "a", "programme", "that", "aired", "on", "4", "in", "2015", "An", "undercover", "reporter", "was", "able", "to", "meet", "them", "after", "extensive", "direct", "messaging", "on", "Twitter.", "One", "of", "the", "women,", "identifying", "herself", "as", "Umm", "Usmaan,", "wrote", "on", "Twitter", "a", "call", "for", "young", "Muslim", "women", "to", "travel", "to", "Syria", "The", "documentary", "followed", "a", "12-month", "investigation", "which", "saw", "a", "team", "of", "reporters", "infiltrate", "the", "group's", "inner", "circle", "The", "hatred", "toward", "non-believers", "runs", "deep", "in", "this", "politicised", "version", "of", "Islam.", "The", "women", "believe", "that", "the", "self-declared", "Islamic", "State", "is", "the", "true", "caliphate.", "In", "essence,", "they", "are", "swearing", "their", "allegiance", "to", "IS,", "which", "has", "declared", "a", "war", "on", "British", "and", "Western", "society.", "The", "casual", "way", "this", "small", "but", "motivated", "group", "trot", "out", "such", "abhorrent", "ideas", "in", "the", "presence", "of", "small", "children", "shows", "just", "how", "'normal'", "they", "believe", "them", "to", "be.", "I", "always", "felt", "the", "group", "were", "suspicious", "of", "me", "–", "and", "that", "was", "to", "prove", "the", "case.", "As", "a", "result,", "I", "believe", "they", "toned", "down", "their", "rhetoric", "in", "my", "presence", "but", "that", "didn't", "prevent", "them", "from", "espousing", "truly", "shocking", "views", "which", "I", "captured", "on", "film.", "Rubana", "referred", "to", "'filthy", "Jews'", "and", "praised", "the", "advent", "of", "IS,", "saying", "'The", "good", "days", "have", "already", "begun,", "nobody", "would", "ever", "have", "thought", "in", "our", "lifetime", "we", "would", "see", "the", "establishment", "of", "the", "Khilafah", "[IS].'", "She", "also", "mocked", "the", "Government's", "attempts", "to", "tackle", "extremism,", "saying:", "'If", "they", "thought", "it", "was", "a", "plan", "to", "deradicalise", "people,", "God", "they", "got", "it", "so", "wrong,", "because", "if", "anything", "more", "and", "more", "people", "are", "becoming", "what", "they", "call", "radicalised.'", "The", "British", "Women", "Supporters", "Unveiled", "sees", "three", "women", "exposed", "as", "ISIS", "sympathisers.", "(pictured", "is", "a", "still", "from", "the", "programme)", "When", "I", "saw", "the", "face", "of", "Khuram", "Butt", "(pictured)", "staring", "out", "of", "the", "newspapers", "at", "me", "last", "week,", "after", "he", "was", "named", "as", "one" ], [ "of", "the", "three", "London", "Bridge", "killers,", "I", "was", "deeply", "shocked", "She", "even", "laughed", "about", "the", "Jordanian", "pilot", "who", "was", "burned", "alive", "by", "IS,", "suggesting", "that", "he", "would", "be", "accepted", "in", "martyrdom,", "before", "adding", "'My", "foot',", "as", "her", "followers", "chuckled.", "There", "may", "be", "a", "temptation", "to", "write", "these", "people", "off", "as", "harmless", "idiots,", "but", "let's", "not", "forget", "that", "Al-Muhajiroun", "have", "been", "linked", "to", "half", "of", "all", "UK", "terror", "plots", "and,", "although", "they", "have", "been", "a", "proscribed", "organisation", "since", "2010,", "it", "is", "clear", "from", "what", "I", "saw", "that", "they", "still", "exist.", "We", "urgently", "need", "to", "address", "what", "extremism", "is,", "and", "what", "to", "do", "about", "it.", "Perhaps", "I", "asked", "too", "many", "questions", "while", "undercover,", "because", "eventually", "Rubana", "cornered", "me", "in", "a", "small", "kitchen", "area", "as", "one", "of", "her", "followers", "stood", "behind", "me.", "She", "accused", "me", "of", "being", "a", "spy", "and", "demanded", "to", "look", "in", "my", "bag.", "I", "was", "scared", "they", "weren't", "going", "to", "let", "me", "go,", "because", "she", "said", "she", "wouldn't.", "The", "stand-off", "went", "on", "for", "about", "10", "minutes.", "At", "that", "stage,", "I'd", "just", "discovered", "that", "Rubana", "was", "married", "to", "Choudary", "and", "that", "made", "her", "appear", "more", "dangerous.", "There", "were", "so", "many", "of", "them,", "there", "was", "nothing", "I", "could", "have", "done", "to", "protect", "myself", "if", "they", "had", "turned", "on", "me.", "In", "the", "end,", "I", "pretended", "I", "was", "mentally", "ill", "and", "went", "into", "an", "emotional", "meltdown,", "screaming", "at", "her,", "which", "seemed", "to", "work,", "and", "thank", "goodness", "they", "let", "me", "go.", "Looking", "back,", "I", "think", "I", "was", "lucky", "to", "get", "out", "unharmed." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "it", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "it", "it", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "When", "I", "saw", "the", "face", "of", "Khuram", "Butt", "staring", "out", "of", "the", "newspapers", "at", "me", "last", "week,", "after", "he", "was", "named", "as", "one", "of", "the", "three", "London", "Bridge", "killers,", "I", "was", "deeply", "shocked.", "It", "took", "me", "back", "to", "the", "day", "nearly", "two", "years", "ago", "when", "I", "filmed", "him", "with", "a", "hidden", "camera", "as", "he", "protested,", "clad", "in", "headdress", "and", "robe,", "outside", "Regent's", "Park", "Mosque", "in", "London.", "We", "had", "gone", "undercover", "to", "make", "a", "Dispatches", "documentary", "for", "Channel", "4,", "focusing", "not", "on", "Butt", "and", "his", "fellow", "Islamists", "but", "on", "a", "less", "obvious", "group", "–", "the'sisters',", "the", "women", "who", "share", "their", "twisted", "views.", "Unlike", "their", "male", "counterparts,", "the", "women", "only", "ever", "express", "these", "views", "behind", "closed", "doors", "or", "online.", "Now", "my", "greatest", "fear", "is", "that", "one", "of", "those", "women", "I", "watched", "being", "brainwashed", "–", "or,", "even", "worse,", "one", "of", "the", "children", "who", "ran", "around", "playing", "as", "the", "hate-filled", "rants", "were", "delivered", "–", "might", "go", "on", "to", "murder", "innocent", "people", "as", "Butt", "did.", "After", "months", "attempting", "to", "win", "their", "confidence,", "I", "was", "introduced", "to", "Rubana", "(pictured),", "who", "used", "the", "pseudonym", "'Umm", "Luqman',", "and", "was", "invited", "to", "one", "of", "her", "talks", "in", "a", "nondescript", "building", "next", "to", "a", "barber's", "shop", "in", "Whitechapel,", "East", "London", "A" ], [ "programme", "has", "exposed", "a", "group", "of", "British", "women", "as", "ISIS", "supporters", "who", "are", "encouraging", "'impressionable", "young", "girls'", "in", "the", "UK", "to", "travel", "to", "Syria", "and", "join", "the", "terrorist", "group", "I", "didn't", "pay", "much", "attention", "to", "him", "that", "day", "in", "July", "2015", "as", "he", "handed", "out", "extremist", "leaflets", "to", "worshippers", "leaving", "Friday", "prayers,", "but", "last", "week's", "events", "made", "me", "recall", "the", "vile", "propaganda", "he", "was", "peddling", "–", "in", "the", "same", "manner", "as", "the", "women,", "as", "I", "would", "discover.", "They", "were", "part", "of", "banned", "terror", "group", "Al-Muhajiroun", "in", "all", "but", "name.", "Its", "former", "leader,", "Anjem", "Choudary,", "had", "just", "been", "arrested,", "and", "is", "now", "serving", "a", "prison", "sentence", "for", "urging", "support", "of", "Islamic", "State.", "But", "his", "followers", "continued", "their", "'work'", "without", "him", "–", "and", "no", "doubt", "still", "do", "now.", "What's", "more,", "the", "woman", "leading", "the'sisters',", "is", "Choudary's", "wife,", "Rubana", "Akhtar.", "Over", "the", "course", "of", "a", "year,", "I", "slowly", "gained", "access", "to", "Rubana's", "group,", "initially", "by", "contacting", "her", "followers", "on", "Twitter,", "then", "through", "texting", "and", "other", "social", "media.", "After", "months", "attempting", "to", "win", "their", "confidence,", "I", "was", "introduced", "to", "Rubana,", "who", "used", "the", "pseudonym", "'Umm", "Luqman',", "and", "was", "invited", "to", "one", "of", "her", "talks", "in", "a", "nondescript", "building", "next", "to", "a", "barber's", "shop", "in", "Whitechapel,", "East", "London.", "What", "I", "witnessed", "there", "convinced", "me", "that", "the", "stereotypical", "image", "of", "jihadis", "as", "young", "men", "needs", "to", "be", "adjusted,", "because", "the", "women", "were", "equally", "virulent", "in", "their", "views.", "In", "the", "two-hour", "lectures,", "the", "female", "Islamic", "State", "sympathisers", "are", "heard", "spreading", "ISIS's", "extremist", "ideology", "and", "encouraging", "people", "to", "join", "them", "in", "Syria.", "Pictured", "is", "a", "still", "from", "the", "documentary", "ISIS", "ideology", "was", "spread", "both", "online", "and", "in", "person", "to", "women", "and", "'impressionable", "young", "girls'.", "They", "are", "told", "to", "abandon", "democracy", "and", "travel", "to", "Syria", "to", "join", "ISIS", "in", "a", "programme", "that", "aired", "on", "4", "in", "2015", "An", "undercover", "reporter", "was", "able", "to", "meet", "them", "after", "extensive", "direct", "messaging", "on", "Twitter.", "One", "of", "the", "women,", "identifying", "herself", "as", "Umm", "Usmaan,", "wrote", "on", "Twitter", "a", "call", "for", "young", "Muslim", "women", "to", "travel", "to", "Syria", "The", "documentary", "followed", "a", "12-month", "investigation", "which", "saw", "a", "team", "of", "reporters", "infiltrate", "the", "group's", "inner", "circle", "The", "hatred", "toward", "non-believers", "runs", "deep", "in", "this", "politicised", "version", "of", "Islam.", "The", "women", "believe", "that", "the", "self-declared", "Islamic", "State", "is", "the", "true", "caliphate.", "In", "essence,", "they", "are", "swearing", "their", "allegiance", "to", "IS,", "which", "has", "declared", "a", "war", "on", "British", "and", "Western", "society.", "The", "casual", "way", "this", "small", "but", "motivated", "group", "trot", "out", "such", "abhorrent", "ideas", "in", "the", "presence", "of", "small", "children", "shows", "just", "how", "'normal'", "they", "believe", "them", "to", "be.", "I", "always", "felt", "the", "group", "were", "suspicious", "of", "me", "–", "and", "that", "was", "to", "prove", "the", "case.", "As", "a", "result,", "I", "believe", "they", "toned", "down", "their", "rhetoric", "in", "my", "presence", "but", "that", "didn't", "prevent", "them", "from", "espousing", "truly", "shocking", "views", "which", "I", "captured", "on", "film.", "Rubana", "referred", "to", "'filthy", "Jews'", "and", "praised", "the", "advent", "of", "IS,", "saying", "'The", "good", "days", "have", "already", "begun,", "nobody", "would", "ever", "have", "thought", "in", "our", "lifetime", "we", "would", "see", "the", "establishment", "of", "the", "Khilafah", "[IS].'", "She", "also", "mocked", "the", "Government's", "attempts", "to", "tackle", "extremism,", "saying:", "'If", "they", "thought", "it", "was", "a", "plan", "to", "deradicalise", "people,", "God", "they", "got", "it", "so", "wrong,", "because", "if", "anything", "more", "and", "more", "people", "are", "becoming", "what", "they", "call", "radicalised.'", "The", "British", "Women", "Supporters", "Unveiled", "sees", "three", "women", "exposed", "as", "ISIS", "sympathisers.", "(pictured", "is", "a", "still", "from", "the", "programme)", "When", "I", "saw", "the", "face", "of", "Khuram", "Butt", "(pictured)", "staring", "out", "of", "the", "newspapers", "at", "me", "last", "week,", "after", "he", "was", "named", "as", "one" ] ], [ [ "of", "the", "three", "London", "Bridge", "killers,", "I", "was", "deeply", "shocked", "She", "even", "laughed", "about", "the", "Jordanian", "pilot", "who", "was", "burned", "alive", "by", "IS,", "suggesting", "that", "he", "would", "be", "accepted", "in", "martyrdom,", "before", "adding", "'My", "foot',", "as", "her", "followers", "chuckled.", "There", "may", "be", "a", "temptation", "to", "write", "these", "people", "off", "as", "harmless", "idiots,", "but", "let's", "not", "forget", "that", "Al-Muhajiroun", "have", "been", "linked", "to", "half", "of", "all", "UK", "terror", "plots", "and,", "although", "they", "have", "been", "a", "proscribed", "organisation", "since", "2010,", "it", "is", "clear", "from", "what", "I", "saw", "that", "they", "still", "exist.", "We", "urgently", "need", "to", "address", "what", "extremism", "is,", "and", "what", "to", "do", "about", "it.", "Perhaps", "I", "asked", "too", "many", "questions", "while", "undercover,", "because", "eventually", "Rubana", "cornered", "me", "in", "a", "small", "kitchen", "area", "as", "one", "of", "her", "followers", "stood", "behind", "me.", "She", "accused", "me", "of", "being", "a", "spy", "and", "demanded", "to", "look", "in", "my", "bag.", "I", "was", "scared", "they", "weren't", "going", "to", "let", "me", "go,", "because", "she", "said", "she", "wouldn't.", "The", "stand-off", "went", "on", "for", "about", "10", "minutes.", "At", "that", "stage,", "I'd", "just", "discovered", "that", "Rubana", "was", "married", "to", "Choudary", "and", "that", "made", "her", "appear", "more", "dangerous.", "There", "were", "so", "many", "of", "them,", "there", "was", "nothing", "I", "could", "have", "done", "to", "protect", "myself", "if", "they", "had", "turned", "on", "me.", "In", "the", "end,", "I", "pretended", "I", "was", "mentally", "ill", "and", "went", "into", "an", "emotional", "meltdown,", "screaming", "at", "her,", "which", "seemed", "to", "work,", "and", "thank", "goodness", "they", "let", "me", "go.", "Looking", "back,", "I", "think", "I", "was", "lucky", "to", "get", "out", "unharmed." ] ] ]
[ [ "en", "en" ], [ "en" ] ]
[ "mono", "mono", "mono", "mono", "mono" ]
[ [ "Spiskummin,", "vitlök,", "doftar", "texmex", "köket", "hemma", "Emma", "Aspholmer", "i", "Munkebäck.", "På", "bordet", "står", "tomater,", "fint", "strimlad", "gurka", "och", "morot,", "solrosskott,", "stark", "salsa,", "nachos", "och", "guacamole.", "Vid", "spisen", "lägger", "Ellen", "Gellerbrant", "sista", "handen", "tacofärsen.", "Hon", "pudrar", "över", "kryddmix", "och", "fräser", "på", "lite", "till,", "sedan", "öser", "hon", "ner", "färsen", "i", "en", "skål", "och", "ställer", "den", "på", "bordet", "med", "liten", "duns.", "Därefter", "slår", "hon", "sig", "ner", "vid", "bordet.", "Maten", "är", "klar.", "Men", "varför", "är", "färsen", "så", "mörk?", "–", "Den", "består", "av", "sojafärs", "och", "mjölmask,", "säger", "Ellen.", "Hon", "vrider", "mitt", "håll.", "–", "Varsågod", "–", "smaka!", "kompanjonen", "Emma", "Aspholmer", "började", "intressera", "sig", "för", "insekter", "som", "mat", "när", "pluggade", "kostvetare", "på", "Göteborgs", "universitet.", "2013,", "när", "skulle", "på", "praktik,", "släppte", "FN:s", "jordbruks-", "och", "livsmedelsorganisation", "den", "uppmärksammade", "rapporten", "insects", "–", "Future", "prospects", "for", "food", "and", "feed", "security.", "I", "den", "lyfts", "insekter", "fram", "som", "en", "framtida", "proteinkälla.", "Jämfört", "med", "kött", "är", "insekter", "nämligen", "extremt", "resurssnåla", "att", "föda", "upp.", "kräver", "mindre", "och", "yta", "än", "andra", "djur", "och", "producerar", "mycket", "låga", "nivåer", "av", "växthusgaser.", "Samtidigt", "har", "de", "ett", "proteininnehåll", "på", "runt", "50", "procent", "när", "de", "är", "torkade.", "Tydlig", "dröm", "Ellen", "och", "Emma,", "som", "knappt", "hade", "smakat", "insekter", "tidigare,", "blev", "att", "universitetsfolket", "rynkade", "på", "näsan", "sökte", "praktik", "på", "företaget", "Hakuna", "Mat", "som", "just", "startats", "av", "en", "kock", "och", "en", "civilingenjör", "vid", "Lunds", "tekniska", "högskola.", "Drömmen", "var", "tydlig:", "att", "göra", "insektsmat", "till", "vardagsmat", "svenska", "Ellen", "och", "Emma", "åkte", "på", "konferens", "om", "ätbara", "insekter", "i", "Holland", "och", "startade", "bloggen", "Där", "skrev", "de", "utförligt", "sina", "upplevelser", "av", "att", "äta", "insekter.", "De", "testade", "gräshoppstacos", "i", "Los", "Angeles,", "köpte", "levande", "maskar", "att", "avliva", "själva", "och", "bakade", "midsommartårta", "syrsmjöl.", "Recepten", "publicerades", "började", "med", "en", "lite", "äcklad", "förtjusning", "att", "rapportera", "insektsmaten;", "Ellen", "och", "Emma", "intervjuades", "såväl", "Gomorron", "Sverige", "som", "Café.", "Parallellt", "med", "detta", "startade", "Hakuna", "webbshop", "sålde", "importerade", "frystorkade,", "smaksatta", "insekter.", "Men", "snart", "blev", "det", "stopp.", "En", "julidag", "2015", "ringde", "Miljöförvaltningen.", "De", "hänvisade", "förordning", "eller", "nya", "livsmedel", "heter", "svenska,", "och", "sa", "att", "tills", "EU", "utrett", "om", "insekter", "ska", "räknas", "som", "livsmedel", "är", "det", "förbjudet", "att", "sälja", "dem", "i", "Sverige.", "Och", "innan", "vi", "ses", "har", "de", "fått", "ännu", "sämre", "nyheter.", "–", "Tidigare", "vi", "kunnat", "hålla", "intresset", "för", "insekter", "uppe", "genom", "att", "ord" ], [ "na", "provsmakningsevent.", "Men", "i", "går", "ringde", "de", "och", "sa", "att", "vi", "inte", "ens", "får", "servera", "insekter", "i", "slutna", "sällskap.", "Trots", "alla", "motgångar,", "och", "trots", "att", "de", "inte", "ser", "någon", "ände", "på", "förbudet", "än,", "fortsätter", "Emma", "och", "Ellen", "med", "oförminskat", "engagemang.", "–", "Vi", "tror", "verkligen", "på", "detta.", "Vi", "har", "kämpat", "hårt", "för", "att", "kunna", "fortsätta", "utveckla", "vår", "vision,", "säger", "Emma.", "Nu", "har", "de", "också", "fått", "stöd", "från", "innovationsmyndigheten", "Vinnova", "för", "att", "jobba", "med", "produktutveckling", "på", "heltid.", "Tävling", "för", "klimatsmarta", "produkter", "Det", "är", "allmänt", "känt", "att", "vi", "inte", "kan", "fortsätta", "äta", "så", "mycket", "kött", "som", "vi", "gör", "i", "Men", "våra", "kroppar", "kräver", "proteiner.", "Så", "vad", "ska", "den", "som", "vill", "ha", "ett", "köttliknande", "substitut", "äta?", "våra", "vanliga", "mataffärer", "finns", "förstås", "alternativ:", "quorn,", "oumph,", "seitan,", "tempeh,", "tofu,", "sojaprotein.", "Men", "många", "är", "utvecklade", "och", "producerade", "andra", "länder,", "och", "därmed", "inte", "självklart", "klimatsmarta.", "Jakten", "på", "svenska", "alternativ", "är", "därför", "i", "full", "gång.", "I", "början", "av", "året", "utlyste", "innovationsmyndigheten", "Vinnova", "tävling", "som", "går", "på", "att", "uppfinna", "nya,", "klimatsmarta", "proteinprodukter.", "Femton", "lag", "har", "fått", "pengar,", "en", "halv", "miljon", "för", "att", "kunna", "utveckla", "ätbara", "prototyper.", "onsdag", "möts", "lagen", "på", "Grythyttans", "måltidsakademi", "för", "att", "göra", "upp", "om", "segern.", "För", "det", "första", "ska", "smaken", "av", "en", "där", "bland", "andra", "stjärnkocken", "Tareq", "Men", "annan", "parameter", "som", "tävlingen", "ska", "ta", "hänsyn", "till", "är", "om", "produkten", "har", "potential", "att", "nå", "en", "marknad", "–", "något", "Ellen", "Gellerbrant", "tror", "att", "Hakuna-färsen", "har.", "–", "Vi", "tror", "att", "folk", "vill", "ha", "ett", "enkelt", "alternativ", "till", "det", "är", "vana", "vi", "vill", "göra", "det", "Svensson", "äter.", "Dessutom", "har", "vi", "varit", "igång", "vet", "att", "folk", "gillar", "detta.", "Att", "göteborgarna", "efterfrågar", "hållbar", "mat", "märks", "på", "med", "veganska", "restauranger", "här,", "och", "på", "den", "nyligen", "öppnade", "helveganska", "livsmedelsbutiken", "Vegan", "Linnéstaden.", "Enligt", "grundarna", "av", "den", "är", "Göteborg", "en", "av", "bästa", "vegostäderna", "i", "landet.", "Förutsättningarna", "för", "att", "få", "in", "fler", "människor", "på", "det", "hållbara", "matspåret", "bör", "alltså", "vara", "goda", "här.", "Många", "olika", "insekter", "Genom", "Hakuna", "testat", "många", "olika", "insekter.", "För", "tillfället", "har", "de", "släppt", "på", "insekter", "lösvikt,", "och", "satsar", "i", "stället", "allt", "på", "att", "utveckla", "Hakuna-färsen.", "Den", "blir", "bäst,", "har", "de", "upptäckt", "genom", "att", "prova", "den", "på", "fokusgrupper,", "om", "man", "gör", "den", "på", "färsk", "mjölmask", "och", "sojaprotein.", "Maskarna", "köper", "de", "från", "svensk", "uppfödare.", "–", "Än", "så", "länge", "maler", "vi", "ner", "larverna.", "De", "flesta", "f" ], [ "öredrar", "att", "inte", "äta", "hela", "maskar,", "åtminstone", "innan", "de", "blivit", "mer", "vana", "vid", "att", "äta", "insekter,", "säger", "Ellen.", "Den", "färdiga", "färsen", "kan", "sedan", "användas", "som", "nästan", "vilken", "färs", "som", "helst.", "Burgare,", "köttbullar,", "köttfärssås", "eller", "tacos.", "Ellen", "visar", "hur", "färsen", "ser", "ut", "ostekt.", "Den", "är", "ljusbrun", "till", "färgen,", "men", "på", "toppen", "är", "den", "mörk,", "nästan", "svart.", "–", "Den", "oxiderar", "snabbt.", "Det", "är", "synd.", "Men", "vill", "hålla", "den", "så", "fri", "från", "tillsatser", "som", "möjligt,", "så", "vi", "låter", "den", "vara", "De", "femton", "lagen", "Vinnova-tävlingen", "består", "av", "forskare,", "kockar", "och", "entreprenörer", "från", "hela", "Sverige.", "Prototyperna", "är", "fantasifulla.", "En", "glasstillverkare", "i", "Trollhättan", "ska", "göra", "ett", "”on-the-go-mellanmål”", "svensk", "åkerböna,", "en", "råvara", "som", "i", "dag", "nästan", "bara", "odlas", "för", "att", "bli", "djurfoder.", "Ett", "annat", "lag", "ska", "göra", "en", "bönbaserad", "ädelost:", "åkerbönor", "och", "sojabönor", "ska", "blandas", "till", "forskarna", "ympa", "in", "blåmögel", "i.", "Lunds", "universitet", "deltar", "med", "ett", "lag", "som", "tar", "fram", "en", "vegansk", "skyr,", "yoghurtprodukt", "på", "svensk", "raps.", "På", "Sveriges", "tekniska", "forskningsinstitut", "tittar", "forskarna", "på", "något", "verkligen", "osar", "framtid:", "odlade", "muskelceller.", "Och", "giganten", "Lantmännen,", "som", "tidigare", "genomfört", "egna", "proteinprojekt", "som", "bönodling", "på", "Öland,", "deltar", "med", "en", "produkt", "gjord", "svenskt", "svampprotein.", "Måste", "bli", "goda", "Frågan", "är", "bara", "hur", "verklighetsnära", "produkterna", "egentligen", "är.", "Och", "hur", "stor", "potential", "att", "verkligen", "bli", "storsäljare.", "Hanna", "Halpern", "är", "vd", "för", "Restaurangakademien", "Årets", "Hon", "har", "trendspanat", "en", "del", "nya", "proteinsorterna.", "–", "Det", "finns", "absolut", "ett", "intresse", "för", "nya", "proteinprodukter.", "Fler", "blir", "vegetarianer", "eller", "drar", "ner", "på", "köttet,", "särskilt", "av", "miljömässiga", "skäl.", "Hanna", "pratar", "om", "nya", "proteinkällor", "som", "finns", "på", "marknaden", "som", "”medicin”.", "–", "Medicin", "mot", "miljöproblem", "eller", "hälsa,", "till", "exempel.", "Det", "finns", "säkert", "de", "som", "tycker", "att", "det", "räcker", "som", "anledning", "att", "äta", "insekter", "eller", "något", "annat.", "Men", "den", "inställningen", "skapar", "inga", "stora", "volymer,", "säger", "hon.", "Klimatsmarta", "proteinkällor", "måste", "alltså", "framför", "allt", "bli", "goda.", "–", "Det", "räcker", "inte", "att", "vara", "påhittig", "för", "att", "nå", "en", "bred", "massa.", "Det", "måste", "smaka", "gott.", "Ta", "kvargen", "som", "exempel.", "Den", "har", "funnits", "sedan", "80-talet,", "men", "inte", "förrän", "nu", "har", "man", "gjort", "något", "känslan", "i", "munnen.", "Och", "nu", "är", "jättestor", "produkt.", "Men", "när", "det", "gäller", "köttersättningsprodukter", "som", "ska", "locka", "fler", "än", "dem", "som", "redan", "är", "vegetarianer", "tycker", "Hanna", "Halpern", "inte", "att", "marknaden", "riktigt", "nått", "fram.", "–", "Det", "finns", "väldigt", "mycket", "god", "vilja,", "initiativ.", "Men" ], [ "volymmässigt", "är", "vi", "inte", "där", "än.", "Det", "är", "därför", "som", "tävlingen", "som", "Vinnova", "initierat", "bli", "startskottet", "mot", "framtiden.", "Hyllad", "musselpaté", "Det", "är", "april", "2006", "och", "musselälskaren", "Pelle", "Johansson", "har", "precis", "serverat", "riktig", "pangrätt", "på", "sin", "restaurang", "i", "Lysekil:", "musselpaté.", "Gäster", "som", "inte", "ens", "gillar", "musslor", "har", "hyllat", "den,", "sagt", "att", "de", "för", "första", "gången", "uppskattat", "smaken", "av", "musslor.", "Alldeles", "nyligen", "varit", "med", "och", "grundat", "intresseorganisatonen", "Musselakademien", "i", "Lysekil.", "Där", "har", "han", "träffat", "en", "ny", "bekantskap:", "forskaren", "Lindahl,", "som", "även", "han", "brinner", "för", "musslor", "som", "föda.", "–", "Jag", "hade", "testat", "mycket", "när", "det", "gällde", "musslor.", "Musselsås,", "musselsoppa,", "massor", "av", "saker.", "Och", "mer", "jag", "pratade", "med", "Odd,", "bättre", "förstod", "jag", "att", "det", "fanns", "mer", "att", "göra,", "säger", "Pelle.", "För", "tre", "år", "startade", "Lindahl", "företaget", "Musselfeed.", "början", "jobbade", "företaget", "med", "att", "tillverka", "musselmjöl", "för", "djurfoder,", "men", "på", "senare", "har", "vd:n", "Sofia", "Kochers,", "intresse", "riktats", "allt", "mer", "vanliga", "konsumenter.", "Musselfeed", "utvecklat", "metod", "för", "att", "utvinna", "köttet", "ur", "musslorna", "och", "göra", "det", "till", "en", "sorts", "musselråvara.", "Och", "det", "är", "musselråvaran", "som", "två", "lag", "i", "Vinnova-tävlingen", "nu", "ska", "omvandla", "till", "mumsiga", "livsmedel.", "–", "De", "i", "våras", "om", "jag", "göra", "något", "gott", "av", "musselmassan.", "Jag", "tyckte", "det", "lät", "jätteintressant", "och", "började", "spåna.", "Det", "här", "är", "ju", "ett", "hobbyprojekt", "för", "eftersom", "jag", "älskar", "musslor", "är", "det", "väldigt", "skoj,", "säger", "Pelle.", "Projektet", "av", "Sveriges", "tekniska", "forskningsinstitut", "Göteborg", "och", "provlagning", "sker", "i", "deras", "provkök", "uppe", "vid", "Delsjömotet.", "En", "lite", "annorlunda", "miljö", "för", "en", "kock", "som", "Pelle.", "–", "Allt", "är", "nytt", "för", "mig.", "Att", "man", "måste", "mäta", "exakt,", "titta", "så", "noga", "på", "näringsinnehållet…", "Men", "det", "är", "spännande.", "Musslor", "bra", "för", "miljön", "Medan", "insekter", "har", "liten", "miljöpåverkan", "när", "föds", "upp,", "har", "musslor", "den", "stora", "finessen", "att", "de", "och", "med", "gör", "bra", "saker", "för", "miljön", "medan", "de", "odlas.", "De", "kväve", "och", "fosfor", "–", "ämnen", "som", "inte", "är", "önskvärda", "i", "havet.", "När", "de", "skördas", "hänger", "kvävet", "fosforet", "med,", "och", "försvinner", "alltså", "från", "havet.", "Men", "musslorna", "är", "trots", "det", "inte", "farliga", "för", "människor", "att", "få", "i", "sig.", "Tvärtom", "är", "väldigt", "rika", "Omega3", "och", "protein.", "När", "musselmassan", "framställs", "tas", "del", "av", "vattnet", "vilket", "gör", "att", "den", "har", "en", "proteinhalt", "på", "65", "procent.", "musselråvara.", "Lite", "nermalda", "rensbitar", "av", "torsk", "och", "lax.", "I", "med", "lite", "timjan,", "salt,", "olja", "och", "peppar,", "och", "så", "ner", "i", "ett", "f" ], [ "jälster.", "Medan", "ena", "mussellaget", "bestämde", "sig", "för", "att", "göra", "en", "proteinstinn,", "miljövänlig", "sportbar,", "riktade", "Pelle,", "Musselfeed", "och", "SP", "in", "sig", "på", "korv.", "–", "Jag", "serverade", "den", "samma", "kväll", "ihop", "med", "palsternackspuré,", "hälleflundra", "och", "syrad", "vitvinssås.", "blev", "succé!", "Och", "något", "i", "den", "stilen", "kan", "Tareq", "Taylor", "vänta", "sig", "nästa", "helg.", "–", "Jag", "tror", "syrad", "vitvinssås,", "palternackspuré", "för", "att", "lite", "sötma,", "och", "så", "musselkorv.", "Jag", "tror", "det", "kommer", "bli", "en", "höjdarrätt.", "Tror", "du", "att", "ni", "kommer", "vinna?", "–", "Vi", "har", "väldigt", "bra", "chanser.", "Framför", "allt", "eftersom", "vi", "har", "andra", "produkter", "i", "pipeline", "nu,", "en", "pastej", "bland", "annat.", "Tänk", "att", "ha", "liten", "bjudning", "servera", "musselpastej", "en", "vitlöksrostad", "brödskiva.", "låter", "väl", "gott?", "Han", "funderar", "lite.", "–", "Vet", "du,", "inom", "fem", "år", "är", "jag", "säker", "på", "att", "det", "en", "eller", "flera", "musselprodukter", "på", "marknaden.", "Det", "är", "bara", "en", "fråga", "vilket", "företag", "som", "köper", "idén", "först.", "Tillbaka", "hos", "mjölmaskentreprenörerna", "har", "det", "blivit", "att", "hugga", "in.", "Insektsfärs,", "guacamole", "och", "ett", "par", "tomattärningar", "på", "ett", "nachochips.", "luktar", "och", "ser", "gott", "ut.", "Ellen", "lassar", "in", "en", "i", "munnen", "medan", "Emma", "tar", "till", "orda:", "–", "har", "pratat", "en", "om", "förväntningar.", "Om", "man", "tror", "att", "den", "här", "färsen", "ska", "smaka", "nötfärs", "blir", "man", "kanske", "besviken.", "Så", "frågan", "är", "vad", "konsumenten", "förväntar", "sig", "av", "en", "sådan", "här", "produkt.", "Vi", "tycker", "ju", "den", "är", "jättegod.", "Någonstans", "inombords", "börjar", "tankarna", "snurra.", "Det", "är", "faktiskt", "insekter,", "det", "här.", "Som", "gravid", "råder", "Livsmedelsverket", "mig", "att", "inte", "äta", "mögelost,", "prosciutto", "eller", "Östersjöfisk.", "Insekter", "säger", "faktiskt", "ingenting", "om.", "Jag", "stoppar", "i", "munnen", "och", "tuggar.", "Väntar", "på", "insektssmaken.", "Men", "det", "smakar", "som", "tacofärs", "gör", "mest.", "Kanske", "med", "liten,", "liten", "ovan", "eftersmak.", "Vill", "du", "mer", "hur", "GP", "arbetar", "med", "kvalitetsjournalistik?", "Läs", "våra", "etiska", "regler", "här." ] ]
[ [ "de", "nl", "de", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "en", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "de", "de", "de", "de", "de", "de", "fr", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "de", "de", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "ro", "ro", "ro", "ro", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "en", "en", "en", "en", "en", "en", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "pt", "de", "de", "de", "de", "de", "de", "de", "pt", "pt", "de", "de", "de", "de", "es", "es", "nl", "nl", "nl", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "pt", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de" ], [ "nl", "en", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "en", "en", "en", "co", "co", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "co", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "en", "en", "nl", "nl", "nl", "nl", "de", "de", "de", "en", "en", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "fr", "de", "de", "de", "de", "de", "ro", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "es", "es", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "co", "co", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "es", "es", "es", "pt" ], [ "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "es", "es", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "pt", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "es", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "pt", "pt", "pt", "de", "de", "de", "de", "de", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "en", "en", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "co", "co", "de" ], [ "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "pt", "pt", "pt", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "pt", "de", "de", "co", "nl", "nl", "en", "en", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "en", "de", "de", "de", "de", "de", "de", "de", "de", "en", "de", "de", "de", "de", "de", "de", "de", "nl", "de", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "co", "co", "co", "co", "co", "de", "es", "es", "es", "nl", "pt", "pt", "pt", "pt", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "fr", "fr", "fr", "en", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "en", "en", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "es", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "de", "de", "de", "de", "de" ], [ "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "co", "de", "de", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "fr", "fr", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "en", "en", "co", "co", "nl", "nl", "nl", "de", "de", "de", "de", "de", "nl", "nl", "de", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "es", "es", "es", "es", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "de", "nl", "nl", "nl", "nl", "nl", "nl", "nl", "de", "en", "en", "en", "nl", "nl", "de", "de", "de", "de", "de" ] ]
[ [ [ "Spiskummin,", "vitlök,", "doftar", "texmex", "köket", "hemma", "Emma", "Aspholmer", "i", "Munkebäck.", "På", "bordet", "står", "tomater,", "fint", "strimlad", "gurka", "och", "morot,", "solrosskott,", "stark", "salsa,", "nachos", "och", "guacamole.", "Vid", "spisen", "lägger", "Ellen", "Gellerbrant", "sista", "handen", "tacofärsen.", "Hon", "pudrar", "över", "kryddmix", "och", "fräser", "på", "lite", "till,", "sedan", "öser", "hon", "ner", "färsen", "i", "en", "skål", "och", "ställer", "den", "på", "bordet", "med", "liten", "duns.", "Därefter", "slår", "hon", "sig", "ner", "vid", "bordet.", "Maten", "är", "klar.", "Men", "varför", "är", "färsen", "så", "mörk?", "–", "Den", "består", "av", "sojafärs", "och", "mjölmask,", "säger", "Ellen.", "Hon", "vrider", "mitt", "håll.", "–", "Varsågod", "–", "smaka!", "kompanjonen", "Emma", "Aspholmer", "började", "intressera", "sig", "för", "insekter", "som", "mat", "när", "pluggade", "kostvetare", "på", "Göteborgs", "universitet.", "2013,", "när", "skulle", "på", "praktik,", "släppte", "FN:s", "jordbruks-", "och", "livsmedelsorganisation", "den", "uppmärksammade", "rapporten", "insects", "–", "Future", "prospects", "for", "food", "and", "feed", "security.", "I", "den", "lyfts", "insekter", "fram", "som", "en", "framtida", "proteinkälla.", "Jämfört", "med", "kött", "är", "insekter", "nämligen", "extremt", "resurssnåla", "att", "föda", "upp.", "kräver", "mindre", "och", "yta", "än", "andra", "djur", "och", "producerar", "mycket", "låga", "nivåer", "av", "växthusgaser.", "Samtidigt", "har", "de", "ett", "proteininnehåll", "på", "runt", "50", "procent", "när", "de", "är", "torkade.", "Tydlig", "dröm", "Ellen", "och", "Emma,", "som", "knappt", "hade", "smakat", "insekter", "tidigare,", "blev", "att", "universitetsfolket", "rynkade", "på", "näsan", "sökte", "praktik", "på", "företaget", "Hakuna", "Mat", "som", "just", "startats", "av", "en", "kock", "och", "en", "civilingenjör", "vid", "Lunds", "tekniska", "högskola.", "Drömmen", "var", "tydlig:", "att", "göra", "insektsmat", "till", "vardagsmat", "svenska", "Ellen", "och", "Emma", "åkte", "på", "konferens", "om", "ätbara", "insekter", "i", "Holland", "och", "startade", "bloggen", "Där", "skrev", "de", "utförligt", "sina", "upplevelser", "av", "att", "äta", "insekter.", "De", "testade", "gräshoppstacos", "i", "Los", "Angeles,", "köpte", "levande", "maskar", "att", "avliva", "själva", "och", "bakade", "midsommartårta", "syrsmjöl.", "Recepten", "publicerades", "började", "med", "en", "lite", "äcklad", "förtjusning", "att", "rapportera", "insektsmaten;", "Ellen", "och", "Emma", "intervjuades", "såväl", "Gomorron", "Sverige", "som", "Café.", "Parallellt", "med", "detta", "startade", "Hakuna", "webbshop", "sålde", "importerade", "frystorkade,", "smaksatta", "insekter.", "Men", "snart", "blev", "det", "stopp.", "En", "julidag", "2015", "ringde", "Miljöförvaltningen.", "De", "hänvisade", "förordning", "eller", "nya", "livsmedel", "heter", "svenska,", "och", "sa", "att", "tills", "EU", "utrett", "om", "insekter", "ska", "räknas", "som", "livsmedel", "är", "det", "förbjudet", "att", "sälja", "dem", "i", "Sverige.", "Och", "innan", "vi", "ses", "har", "de", "fått", "ännu", "sämre", "nyheter.", "–", "Tidigare", "vi", "kunnat", "hålla", "intresset", "för", "insekter", "uppe", "genom", "att", "ord" ] ], [ [ "na", "provsmakningsevent.", "Men", "i", "går", "ringde", "de", "och", "sa", "att", "vi", "inte", "ens", "får", "servera", "insekter", "i", "slutna", "sällskap.", "Trots", "alla", "motgångar,", "och", "trots", "att", "de", "inte", "ser", "någon", "ände", "på", "förbudet", "än,", "fortsätter", "Emma", "och", "Ellen", "med", "oförminskat", "engagemang.", "–", "Vi", "tror", "verkligen", "på", "detta.", "Vi", "har", "kämpat", "hårt", "för", "att", "kunna", "fortsätta", "utveckla", "vår", "vision,", "säger", "Emma.", "Nu", "har", "de", "också", "fått", "stöd", "från", "innovationsmyndigheten", "Vinnova", "för", "att", "jobba", "med", "produktutveckling", "på", "heltid.", "Tävling", "för", "klimatsmarta", "produkter", "Det", "är", "allmänt", "känt", "att", "vi", "inte", "kan", "fortsätta", "äta", "så", "mycket", "kött", "som", "vi", "gör", "i", "Men", "våra", "kroppar", "kräver", "proteiner.", "Så", "vad", "ska", "den", "som", "vill", "ha", "ett", "köttliknande", "substitut", "äta?", "våra", "vanliga", "mataffärer", "finns", "förstås", "alternativ:", "quorn,", "oumph,", "seitan,", "tempeh,", "tofu,", "sojaprotein.", "Men", "många", "är", "utvecklade", "och", "producerade", "andra", "länder,", "och", "därmed", "inte", "självklart", "klimatsmarta.", "Jakten", "på", "svenska", "alternativ", "är", "därför", "i", "full", "gång.", "I", "början", "av", "året", "utlyste", "innovationsmyndigheten", "Vinnova", "tävling", "som", "går", "på", "att", "uppfinna", "nya,", "klimatsmarta", "proteinprodukter.", "Femton", "lag", "har", "fått", "pengar,", "en", "halv", "miljon", "för", "att", "kunna", "utveckla", "ätbara", "prototyper.", "onsdag", "möts", "lagen", "på", "Grythyttans", "måltidsakademi", "för", "att", "göra", "upp", "om", "segern.", "För", "det", "första", "ska", "smaken", "av", "en", "där", "bland", "andra", "stjärnkocken", "Tareq", "Men", "annan", "parameter", "som", "tävlingen", "ska", "ta", "hänsyn", "till", "är", "om", "produkten", "har", "potential", "att", "nå", "en", "marknad", "–", "något", "Ellen", "Gellerbrant", "tror", "att", "Hakuna-färsen", "har.", "–", "Vi", "tror", "att", "folk", "vill", "ha", "ett", "enkelt", "alternativ", "till", "det", "är", "vana", "vi", "vill", "göra", "det", "Svensson", "äter.", "Dessutom", "har", "vi", "varit", "igång", "vet", "att", "folk", "gillar", "detta.", "Att", "göteborgarna", "efterfrågar", "hållbar", "mat", "märks", "på", "med", "veganska", "restauranger", "här,", "och", "på", "den", "nyligen", "öppnade", "helveganska", "livsmedelsbutiken", "Vegan", "Linnéstaden.", "Enligt", "grundarna", "av", "den", "är", "Göteborg", "en", "av", "bästa", "vegostäderna", "i", "landet.", "Förutsättningarna", "för", "att", "få", "in", "fler", "människor", "på", "det", "hållbara", "matspåret", "bör", "alltså", "vara", "goda", "här.", "Många", "olika", "insekter", "Genom", "Hakuna", "testat", "många", "olika", "insekter.", "För", "tillfället", "har", "de", "släppt", "på", "insekter", "lösvikt,", "och", "satsar", "i", "stället", "allt", "på", "att", "utveckla", "Hakuna-färsen.", "Den", "blir", "bäst,", "har", "de", "upptäckt", "genom", "att", "prova", "den", "på", "fokusgrupper,", "om", "man", "gör", "den", "på", "färsk", "mjölmask", "och", "sojaprotein.", "Maskarna", "köper", "de", "från", "svensk", "uppfödare.", "–", "Än", "så", "länge", "maler", "vi", "ner", "larverna.", "De", "flesta", "f" ] ], [ [ "öredrar", "att", "inte", "äta", "hela", "maskar,", "åtminstone", "innan", "de", "blivit", "mer", "vana", "vid", "att", "äta", "insekter,", "säger", "Ellen.", "Den", "färdiga", "färsen", "kan", "sedan", "användas", "som", "nästan", "vilken", "färs", "som", "helst.", "Burgare,", "köttbullar,", "köttfärssås", "eller", "tacos.", "Ellen", "visar", "hur", "färsen", "ser", "ut", "ostekt.", "Den", "är", "ljusbrun", "till", "färgen,", "men", "på", "toppen", "är", "den", "mörk,", "nästan", "svart.", "–", "Den", "oxiderar", "snabbt.", "Det", "är", "synd.", "Men", "vill", "hålla", "den", "så", "fri", "från", "tillsatser", "som", "möjligt,", "så", "vi", "låter", "den", "vara", "De", "femton", "lagen", "Vinnova-tävlingen", "består", "av", "forskare,", "kockar", "och", "entreprenörer", "från", "hela", "Sverige.", "Prototyperna", "är", "fantasifulla.", "En", "glasstillverkare", "i", "Trollhättan", "ska", "göra", "ett", "”on-the-go-mellanmål”", "svensk", "åkerböna,", "en", "råvara", "som", "i", "dag", "nästan", "bara", "odlas", "för", "att", "bli", "djurfoder.", "Ett", "annat", "lag", "ska", "göra", "en", "bönbaserad", "ädelost:", "åkerbönor", "och", "sojabönor", "ska", "blandas", "till", "forskarna", "ympa", "in", "blåmögel", "i.", "Lunds", "universitet", "deltar", "med", "ett", "lag", "som", "tar", "fram", "en", "vegansk", "skyr,", "yoghurtprodukt", "på", "svensk", "raps.", "På", "Sveriges", "tekniska", "forskningsinstitut", "tittar", "forskarna", "på", "något", "verkligen", "osar", "framtid:", "odlade", "muskelceller.", "Och", "giganten", "Lantmännen,", "som", "tidigare", "genomfört", "egna", "proteinprojekt", "som", "bönodling", "på", "Öland,", "deltar", "med", "en", "produkt", "gjord", "svenskt", "svampprotein.", "Måste", "bli", "goda", "Frågan", "är", "bara", "hur", "verklighetsnära", "produkterna", "egentligen", "är.", "Och", "hur", "stor", "potential", "att", "verkligen", "bli", "storsäljare.", "Hanna", "Halpern", "är", "vd", "för", "Restaurangakademien", "Årets", "Hon", "har", "trendspanat", "en", "del", "nya", "proteinsorterna.", "–", "Det", "finns", "absolut", "ett", "intresse", "för", "nya", "proteinprodukter.", "Fler", "blir", "vegetarianer", "eller", "drar", "ner", "på", "köttet,", "särskilt", "av", "miljömässiga", "skäl.", "Hanna", "pratar", "om", "nya", "proteinkällor", "som", "finns", "på", "marknaden", "som", "”medicin”.", "–", "Medicin", "mot", "miljöproblem", "eller", "hälsa,", "till", "exempel.", "Det", "finns", "säkert", "de", "som", "tycker", "att", "det", "räcker", "som", "anledning", "att", "äta", "insekter", "eller", "något", "annat.", "Men", "den", "inställningen", "skapar", "inga", "stora", "volymer,", "säger", "hon.", "Klimatsmarta", "proteinkällor", "måste", "alltså", "framför", "allt", "bli", "goda.", "–", "Det", "räcker", "inte", "att", "vara", "påhittig", "för", "att", "nå", "en", "bred", "massa.", "Det", "måste", "smaka", "gott.", "Ta", "kvargen", "som", "exempel.", "Den", "har", "funnits", "sedan", "80-talet,", "men", "inte", "förrän", "nu", "har", "man", "gjort", "något", "känslan", "i", "munnen.", "Och", "nu", "är", "jättestor", "produkt.", "Men", "när", "det", "gäller", "köttersättningsprodukter", "som", "ska", "locka", "fler", "än", "dem", "som", "redan", "är", "vegetarianer", "tycker", "Hanna", "Halpern", "inte", "att", "marknaden", "riktigt", "nått", "fram.", "–", "Det", "finns", "väldigt", "mycket", "god", "vilja,", "initiativ.", "Men" ] ], [ [ "volymmässigt", "är", "vi", "inte", "där", "än.", "Det", "är", "därför", "som", "tävlingen", "som", "Vinnova", "initierat", "bli", "startskottet", "mot", "framtiden.", "Hyllad", "musselpaté", "Det", "är", "april", "2006", "och", "musselälskaren", "Pelle", "Johansson", "har", "precis", "serverat", "riktig", "pangrätt", "på", "sin", "restaurang", "i", "Lysekil:", "musselpaté.", "Gäster", "som", "inte", "ens", "gillar", "musslor", "har", "hyllat", "den,", "sagt", "att", "de", "för", "första", "gången", "uppskattat", "smaken", "av", "musslor.", "Alldeles", "nyligen", "varit", "med", "och", "grundat", "intresseorganisatonen", "Musselakademien", "i", "Lysekil.", "Där", "har", "han", "träffat", "en", "ny", "bekantskap:", "forskaren", "Lindahl,", "som", "även", "han", "brinner", "för", "musslor", "som", "föda.", "–", "Jag", "hade", "testat", "mycket", "när", "det", "gällde", "musslor.", "Musselsås,", "musselsoppa,", "massor", "av", "saker.", "Och", "mer", "jag", "pratade", "med", "Odd,", "bättre", "förstod", "jag", "att", "det", "fanns", "mer", "att", "göra,", "säger", "Pelle.", "För", "tre", "år", "startade", "Lindahl", "företaget", "Musselfeed.", "början", "jobbade", "företaget", "med", "att", "tillverka", "musselmjöl", "för", "djurfoder,", "men", "på", "senare", "har", "vd:n", "Sofia", "Kochers,", "intresse", "riktats", "allt", "mer", "vanliga", "konsumenter.", "Musselfeed", "utvecklat", "metod", "för", "att", "utvinna", "köttet", "ur", "musslorna", "och", "göra", "det", "till", "en", "sorts", "musselråvara.", "Och", "det", "är", "musselråvaran", "som", "två", "lag", "i", "Vinnova-tävlingen", "nu", "ska", "omvandla", "till", "mumsiga", "livsmedel.", "–", "De", "i", "våras", "om", "jag", "göra", "något", "gott", "av", "musselmassan.", "Jag", "tyckte", "det", "lät", "jätteintressant", "och", "började", "spåna.", "Det", "här", "är", "ju", "ett", "hobbyprojekt", "för", "eftersom", "jag", "älskar", "musslor", "är", "det", "väldigt", "skoj,", "säger", "Pelle.", "Projektet", "av", "Sveriges", "tekniska", "forskningsinstitut", "Göteborg", "och", "provlagning", "sker", "i", "deras", "provkök", "uppe", "vid", "Delsjömotet.", "En", "lite", "annorlunda", "miljö", "för", "en", "kock", "som", "Pelle.", "–", "Allt", "är", "nytt", "för", "mig.", "Att", "man", "måste", "mäta", "exakt,", "titta", "så", "noga", "på", "näringsinnehållet…", "Men", "det", "är", "spännande.", "Musslor", "bra", "för", "miljön", "Medan", "insekter", "har", "liten", "miljöpåverkan", "när", "föds", "upp,", "har", "musslor", "den", "stora", "finessen", "att", "de", "och", "med", "gör", "bra", "saker", "för", "miljön", "medan", "de", "odlas.", "De", "kväve", "och", "fosfor", "–", "ämnen", "som", "inte", "är", "önskvärda", "i", "havet.", "När", "de", "skördas", "hänger", "kvävet", "fosforet", "med,", "och", "försvinner", "alltså", "från", "havet.", "Men", "musslorna", "är", "trots", "det", "inte", "farliga", "för", "människor", "att", "få", "i", "sig.", "Tvärtom", "är", "väldigt", "rika", "Omega3", "och", "protein.", "När", "musselmassan", "framställs", "tas", "del", "av", "vattnet", "vilket", "gör", "att", "den", "har", "en", "proteinhalt", "på", "65", "procent.", "musselråvara.", "Lite", "nermalda", "rensbitar", "av", "torsk", "och", "lax.", "I", "med", "lite", "timjan,", "salt,", "olja", "och", "peppar,", "och", "så", "ner", "i", "ett", "f" ] ], [ [ "jälster.", "Medan", "ena", "mussellaget", "bestämde", "sig", "för", "att", "göra", "en", "proteinstinn,", "miljövänlig", "sportbar,", "riktade", "Pelle,", "Musselfeed", "och", "SP", "in", "sig", "på", "korv.", "–", "Jag", "serverade", "den", "samma", "kväll", "ihop", "med", "palsternackspuré,", "hälleflundra", "och", "syrad", "vitvinssås.", "blev", "succé!", "Och", "något", "i", "den", "stilen", "kan", "Tareq", "Taylor", "vänta", "sig", "nästa", "helg.", "–", "Jag", "tror", "syrad", "vitvinssås,", "palternackspuré", "för", "att", "lite", "sötma,", "och", "så", "musselkorv.", "Jag", "tror", "det", "kommer", "bli", "en", "höjdarrätt.", "Tror", "du", "att", "ni", "kommer", "vinna?", "–", "Vi", "har", "väldigt", "bra", "chanser.", "Framför", "allt", "eftersom", "vi", "har", "andra", "produkter", "i", "pipeline", "nu,", "en", "pastej", "bland", "annat.", "Tänk", "att", "ha", "liten", "bjudning", "servera", "musselpastej", "en", "vitlöksrostad", "brödskiva.", "låter", "väl", "gott?", "Han", "funderar", "lite.", "–", "Vet", "du,", "inom", "fem", "år", "är", "jag", "säker", "på", "att", "det", "en", "eller", "flera", "musselprodukter", "på", "marknaden.", "Det", "är", "bara", "en", "fråga", "vilket", "företag", "som", "köper", "idén", "först.", "Tillbaka", "hos", "mjölmaskentreprenörerna", "har", "det", "blivit", "att", "hugga", "in.", "Insektsfärs,", "guacamole", "och", "ett", "par", "tomattärningar", "på", "ett", "nachochips.", "luktar", "och", "ser", "gott", "ut.", "Ellen", "lassar", "in", "en", "i", "munnen", "medan", "Emma", "tar", "till", "orda:", "–", "har", "pratat", "en", "om", "förväntningar.", "Om", "man", "tror", "att", "den", "här", "färsen", "ska", "smaka", "nötfärs", "blir", "man", "kanske", "besviken.", "Så", "frågan", "är", "vad", "konsumenten", "förväntar", "sig", "av", "en", "sådan", "här", "produkt.", "Vi", "tycker", "ju", "den", "är", "jättegod.", "Någonstans", "inombords", "börjar", "tankarna", "snurra.", "Det", "är", "faktiskt", "insekter,", "det", "här.", "Som", "gravid", "råder", "Livsmedelsverket", "mig", "att", "inte", "äta", "mögelost,", "prosciutto", "eller", "Östersjöfisk.", "Insekter", "säger", "faktiskt", "ingenting", "om.", "Jag", "stoppar", "i", "munnen", "och", "tuggar.", "Väntar", "på", "insektssmaken.", "Men", "det", "smakar", "som", "tacofärs", "gör", "mest.", "Kanske", "med", "liten,", "liten", "ovan", "eftersmak.", "Vill", "du", "mer", "hur", "GP", "arbetar", "med", "kvalitetsjournalistik?", "Läs", "våra", "etiska", "regler", "här." ] ] ]
[ [ "de" ], [ "nl" ], [ "de" ], [ "de" ], [ "de" ] ]
[ "mono" ]
[ [ "Now", "that", "the", "dust", "is", "settling,", "let’s", "discuss", "who", "won", "in", "the", "Spider-Man", "rights", "battle", "between", "Marvel", "and", "Sony.", "The", "fans", "win,", "obviously,", "as", "we’ll", "finally", "get", "to", "see", "a", "true", "movie", "made", "in", "the", "vision", "of", "Marvel", "Studios.", "And", "the", "wall-crawler", "will", "share", "the", "screen", "alongside", "the", "mighty", "Avengers", "in,", "from", "what", "we’re", "hearing,and", "the", "upcomingsaga.", "But", "financially", "speaking,", "which", "studio", "has", "the", "upperhand?The", "answer,", "strangely,", "is", "both.", "Variety", "has", "a", "breakdown", "of", "the", "negotiations", "between", "Sony", "and", "Disney", "–", "which", "was", "going", "on", "for", "months", "and", "finally", "settled", "on", "a", "level", "everyone", "could", "appreciate.", "And", "the", "results", "of", "the", "deal", "are…", "unusual,", "starting", "with", "the", "fact", "that", "Marvel", "reportedly", "paid", "nothing", "for", "the", "rights", "to", "use", "Spider-Man", "in", "their", "upcoming", "slate", "of", "films.", "That’s", "right.", "They", "got", "Spidey", "for", "free.According", "to", "the", "trade,", "the", "studios", "worked", "out", "a", "deal", "that", "will", "have", "each", "respective", "studio", "receiving", "the", "profits", "from", "the", "movies", "they", "make", "with", "Spider-Man.", "So", "Marvel", "doesn’t", "have", "to", "share", "profits", "with", "Sony", "foror.", "At", "the", "same", "time,", "Sony", "will", "benefit", "completely", "from", "the", "profits", "made", "by", "the", "solo", "Spider-Man", "movies,", "which", "appear", "to", "be", "being", "made", "under", "the", "Sony", "umbrella.Sony,", "in", "the", "process,", "rehabs", "Spider-Man’s", "image", "by", "allowing", "him", "to", "show", "up", "in", "Marvel", "movies,", "and", "earning", "goodwill", "from", "the", "Spidey", "fanbase", "for", "allowing", "their", "beloved", "character", "to", "show", "up", "on", "screen", "alongside", "other", "staples", "of", "the", "Marvel", "comic", "universe.", "In", "essence,", "the", "two", "studios", "have", "agreed", "on", "a", "system", "that", "allows", "them", "to", "share", "Spider-Man,", "and", "each", "use", "them", "to", "their", "own", "ends.The", "biggest", "question", "stemming", "from", "this", "deal", "is,", "\"How", "will", "this", "work,", "creatively?\"", "The", "financial", "side", "of", "it", "makes", "so", "sense,", "I’m", "still", "surprised", "the", "deal", "went", "through.", "Both", "studios", "seem", "to", "benefit,", "financially.", "But", "will", "the", "Spider-Man", "solo", "movies", "pull", "plots", "from", "the", "MCU?", "Will", "they", "continue", "to", "exist", "separately,", "or", "will", "the", "actions", "of", "the", "MCU", "movies", "dictate", "what", "Sony", "can", "(and", "will)", "do", "in", "the", "standalone", "Spider-Man", "movies", "–", "the", "first", "being", "penciled", "in", "for", "July", "28,", "2017?Variety", "notes", "that", "it", "is", "Sony", "who", "will", "work", "on", "re-casting", "the", "role", "of", "Spider-Man,", "with", "an", "intention", "of", "finding", "a", "teenager.", "Will", "Marvel", "have", "input", "on", "the", "hire?", "This", "line,", "from", "Variety’s", "report,", "is", "potentially", "troubling.", "\"While", "Marvel’s", "Kevin", "Feige", "is", "involved", "with", "Sony’s", "newfilms,", "he", "is", "currently", "not", "expected", "to", "be", "creatively", "involved", "with", "the", "[Venom", "and", "Sinister", "Six]", "spinoffs,", "sources", "say.\"", "Why", "not?", "If", "this", "deal", "is", "truly", "going", "to", "work,", "shouldn’t", "he", "be?" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Now", "that", "the", "dust", "is", "settling,", "let’s", "discuss", "who", "won", "in", "the", "Spider-Man", "rights", "battle", "between", "Marvel", "and", "Sony.", "The", "fans", "win,", "obviously,", "as", "we’ll", "finally", "get", "to", "see", "a", "true", "movie", "made", "in", "the", "vision", "of", "Marvel", "Studios.", "And", "the", "wall-crawler", "will", "share", "the", "screen", "alongside", "the", "mighty", "Avengers", "in,", "from", "what", "we’re", "hearing,and", "the", "upcomingsaga.", "But", "financially", "speaking,", "which", "studio", "has", "the", "upperhand?The", "answer,", "strangely,", "is", "both.", "Variety", "has", "a", "breakdown", "of", "the", "negotiations", "between", "Sony", "and", "Disney", "–", "which", "was", "going", "on", "for", "months", "and", "finally", "settled", "on", "a", "level", "everyone", "could", "appreciate.", "And", "the", "results", "of", "the", "deal", "are…", "unusual,", "starting", "with", "the", "fact", "that", "Marvel", "reportedly", "paid", "nothing", "for", "the", "rights", "to", "use", "Spider-Man", "in", "their", "upcoming", "slate", "of", "films.", "That’s", "right.", "They", "got", "Spidey", "for", "free.According", "to", "the", "trade,", "the", "studios", "worked", "out", "a", "deal", "that", "will", "have", "each", "respective", "studio", "receiving", "the", "profits", "from", "the", "movies", "they", "make", "with", "Spider-Man.", "So", "Marvel", "doesn’t", "have", "to", "share", "profits", "with", "Sony", "foror.", "At", "the", "same", "time,", "Sony", "will", "benefit", "completely", "from", "the", "profits", "made", "by", "the", "solo", "Spider-Man", "movies,", "which", "appear", "to", "be", "being", "made", "under", "the", "Sony", "umbrella.Sony,", "in", "the", "process,", "rehabs", "Spider-Man’s", "image", "by", "allowing", "him", "to", "show", "up", "in", "Marvel", "movies,", "and", "earning", "goodwill", "from", "the", "Spidey", "fanbase", "for", "allowing", "their", "beloved", "character", "to", "show", "up", "on", "screen", "alongside", "other", "staples", "of", "the", "Marvel", "comic", "universe.", "In", "essence,", "the", "two", "studios", "have", "agreed", "on", "a", "system", "that", "allows", "them", "to", "share", "Spider-Man,", "and", "each", "use", "them", "to", "their", "own", "ends.The", "biggest", "question", "stemming", "from", "this", "deal", "is,", "\"How", "will", "this", "work,", "creatively?\"", "The", "financial", "side", "of", "it", "makes", "so", "sense,", "I’m", "still", "surprised", "the", "deal", "went", "through.", "Both", "studios", "seem", "to", "benefit,", "financially.", "But", "will", "the", "Spider-Man", "solo", "movies", "pull", "plots", "from", "the", "MCU?", "Will", "they", "continue", "to", "exist", "separately,", "or", "will", "the", "actions", "of", "the", "MCU", "movies", "dictate", "what", "Sony", "can", "(and", "will)", "do", "in", "the", "standalone", "Spider-Man", "movies", "–", "the", "first", "being", "penciled", "in", "for", "July", "28,", "2017?Variety", "notes", "that", "it", "is", "Sony", "who", "will", "work", "on", "re-casting", "the", "role", "of", "Spider-Man,", "with", "an", "intention", "of", "finding", "a", "teenager.", "Will", "Marvel", "have", "input", "on", "the", "hire?", "This", "line,", "from", "Variety’s", "report,", "is", "potentially", "troubling.", "\"While", "Marvel’s", "Kevin", "Feige", "is", "involved", "with", "Sony’s", "newfilms,", "he", "is", "currently", "not", "expected", "to", "be", "creatively", "involved", "with", "the", "[Venom", "and", "Sinister", "Six]", "spinoffs,", "sources", "say.\"", "Why", "not?", "If", "this", "deal", "is", "truly", "going", "to", "work,", "shouldn’t", "he", "be?" ] ] ]
[ [ "en" ] ]
[ "mono", "mono" ]
[ [ "The", "Ordnance", "Survey", "recently", "made", "a", "very", "nice", "map", "of", "Mars’", "Arabia", "Terra", "region.", "This", "map", "shows", "an", "alien", "crater-pocketed", "landscape,", "peppered", "with", "mysterious", "names", "like", "Chaos”,", "“Meridiani", "Planum”", "and", "“Marth”.", "When", "the", "OS", "makes", "a", "map", "of", "Britain,", "it", "is", "making", "a", "map", "of", "a", "place", "with", "history", "–", "reflected", "in", "place", "names", "that", "come", "from", "the", "many", "different", "languages", "that", "people", "have", "spoken", "here.", "But", "where", "are", "the", "names", "on", "the", "Mars", "map", "coming", "from?", "The", "romance", "of", "naming", "Space", "used", "to", "be", "like", "the", "Wild", "West,", "with", "different", "names", "used", "by", "different", "people.", "So,", "in", "1911,", "the", "International", "Astronomical", "Union", "started", "to", "become", "the", "official", "clearing", "house", "for", "space", "names.", "It", "legitimised", "features", "from", "previous", "maps", "(like", "Schiaparelli’s", "map", "of", "Mars)", "and", "made", "rules", "for", "how", "new", "names", "would", "be", "picked.", "It", "now", "publishes", "its", "database", "online,", "and", "I", "used", "this", "and", "various", "NASA", "maps", "of", "other", "planets", "to", "build", "We", "Name", "The", "Stars", "–", "a", "way", "of", "exploring", "these", "rules", "and", "places.", "The", "IAU", "conventions", "seem", "to", "understand", "that", "there", "is", "something", "magical", "and", "important", "about", "naming", "things.", "We", "don’t", "end", "up", "with", "Crater", "62", "on", "asteroid", "BXM-2:", "each", "kind", "of", "feature", "(mountains,", "ridges,", "craters,", "lakes)", "on", "each", "different", "world", "has", "a", "different", "naming", "convention,", "so", "that", "similar", "places", "are", "thematically", "linked.", "Often", "revolving", "around", "a", "particular", "ancient", "myth,", "this", "lends", "a", "sense", "of", "grandness", "and", "history", "to", "what", "is", "otherwise", "just", "some", "slightly", "different", "coloured", "pixels.", "A", "screenshot", "from", "the", "\"We", "Name", "the", "Stars\"", "page", "on", "Mars.", "Click", "to", "expand.", "Not", "all", "names", "are", "mythical.", "Craters", "on", "Mercury", "are", "named", "after", "historically", "significant", "artists,", "while", "escarpments", "are", "named", "after", "ships", "of", "discovery.", "This", "is", "how", "you", "end", "up", "with", "a", "slope", "on", "Mercury", "named", "“Pourquoi-Pas”.", "Craters", "on", "the", "asteroid", "Eros", "are", "named", "after", "“mythological", "and", "legendary", "names", "of", "an", "erotic", "nature”", "(which", "gives", "us", "Casanova", "and", "Abelard),", "while", "Saturn’s", "moon", "Titan", "has", "places", "named", "after", "mountains", "in", "Middle", "Earth.", "The", "largest", "mountain", "on", "Titan", "is", "called", "Doom", "Mons.", "Places", "We’ll", "Never", "Go", "Part", "of", "the", "appeal", "of", "the", "OS", "map", "is", "that", "it", "reinforces", "the", "idea", "of", "Mars", "as", "a", "place.", "It’s", "a", "technical", "challenge,", "but", "ultimately", "we", "understand", "how", "we’d", "get", "there,", "walk", "around,", "and", "get", "back.", "Similarly", "you", "can", "vaguely", "imagine", "the", "22nd", "century", "equivalent", "of", "the", "Arctic", "Explorer", "taking", "the", "journey", "my", "virtual", "rover", "is", "making", "across", "the", "Moon,", "visiting", "every", "crater.", "But", "there", "are", "plenty", "of", "other", "places", "to", "which", "we’ve", "given", "names", "that", "will", "probably", "never", "be", "walked", "on", "by", "people.", "Take", "Mercury", "–", "it’s", "right", "next", "to", "the", "sun", "and", "spins", "very", "slowly.", "Every", "place", "on", "the", "planet", "spends", "every", "other", "month", "staring", "into", "the", "furnace.", "In", "several", "of", "his", "books", "Kim", "Stanley", "Robinson", "solves", "this", "problem", "with", "Terminator", "–", "a", "city", "that", "travels", "on", "rails", "around", "the", "planet.", "The", "sun", "heats", "the", "rails,", "which", "expand", "and", "push", "the", "city", "onward", "–", "permanently", "keeping", "it", "just", "beyond", "dawn.", "But", "this", "is", "a", "fragile", "solution.", "Valleys", "on", "Mercury", "are", "named", "after", "ancient", "abandoned", "cities", "–", "a", "poor", "omen", "for", "the", "success", "of", "future", "settlement.", "Maybe", "maps", "of", "Mercury", "are", "for", "visitors,", "driving", "slowly", "to", "stay", "ahead", "of", "the", "sun.", "A", "screenshot", "from", "the", "\"We", "Name", "the", "Stars\"", "page", "on", "the", "Moon.", "Click", "to", "expand.", "Venus", "we", "can’t", "even", "visit.", "In", "the", "day", "the", "surface", "can", "get", "hot", "enough", "to", "melt", "lead,", "and", "the", "atmospheric", "pressure", "is", "the", "equivalent", "of", "being", "a", "kilometre", "under", "the", "ocean", "on", "Earth.", "On", "the", "other", "hand,", "it", "turns", "out", "that,", "if", "you", "build", "floating", "cities", "50km", "up,", "the", "pressure", "and", "temperature", "are", "pretty", "much", "the", "same", "as", "on", "Earth.", "To", "our", "cloud-dwelling", "descendants", "it’ll", "probably", "seem", "odd", "that", "we", "put", "so", "many", "of", "our", "goddesses", "on", "features", "as", "unimportant", "to", "them", "as", "the", "floor", "of", "the", "ocean", "is", "to", "us.", "There", "is", "something", "strange", "and", "wonderful", "about", "a", "system", "that", "produces", "such", "evocative", "names", "for", "places", "that", "in", "all", "likelihood", "no", "one", "will", "ever", "visit.", "These", "names", "don’t", "have", "to", "be", "pretty", "or", "coherent", "–", "but", "the", "effort", "is", "made", "anyway.", "The", "European", "Sky", "The", "IAU", "was", "founded", "at", "a", "time", "when", "“international", "cooperation”", "mostly", "meant", "“European", "cooperation”.", "The", "conventions", "emerging", "on", "using", "old", "myths", "and", "Latinised", "names", "were", "good,", "because", "that", "seemed", "like", "common", "ground.", "Astronomers", "looked", "into", "space", "and", "then", "looked", "back", "on", "their", "shared", "classical", "heritage,", "pillaging", "the", "myths", "of", "the", "Romans", "and", "Greeks", "for", "important", "sounding", "but", "politically", "neutral", "names.", "Except,", "of", "course,", "it’s", "not", "really", "neutral", "because", "not", "everyone", "comes", "from", "that", "heritage.", "Some", "60", "per", "cent", "of", "feature", "names", "are", "European", "in", "origin,", "and", "so", "European", "myth", "and", "history", "punches", "a", "little", "above", "its", "weight", "in", "the", "space", "naming" ], [ "race.", "As", "the", "composition", "of", "the", "IAU", "has", "changed", "over", "time,", "this", "shift", "has", "been", "reflected", "in", "patterns", "for", "future", "names.", "Many", "conventions", "are", "now", "ecumenical:", "Io", "is", "littered", "with", "thunder", "and", "sun", "gods", "from", "different", "cultures,", "and", "Ceres", "has", "features", "named", "after", "the", "“agricultural", "festivals", "of", "the", "world”.", "Rhea", "uses", "names", "from", "“people", "and", "places", "from", "creation", "myths", "(with", "Asian", "emphasis)”;", "names", "on", "Triton", "are", "explicitly", "“aquatic", "names,", "excluding", "Roman", "and", "Greek”.", "Fragile", "Monuments", "But", "these", "are", "all", "faraway", "places,", "what", "about", "European", "domination", "of", "the", "places", "we’re", "actually", "likely", "to", "go", "–", "like", "the", "Moon", "and", "Mars?", "If", "the", "future", "of", "space", "turns", "out", "to", "be", "non-western,", "this", "issue", "ends", "up", "solving", "itself.", "After", "the", "Chinese", "Yutu", "rover", "landed", "on", "the", "moon,", "the", "landing", "site", "was", "named", "Guang", "Han", "Gong", "(Moon", "Palace)", "and", "three", "local", "craters", "were", "given", "names", "from", "Chinese", "astrology", "by", "the", "IAU.", "When", "the", "asteroid", "1998", "SF", "36", "was", "selected", "as", "the", "target", "for", "the", "Japanese", "Hayabusa", "spacecraft,", "it", "was", "designated", "Itokawa", "after", "a", "Japanese", "rocket", "scientist.", "Where", "robotic", "feet", "go,", "naming", "rights", "follow.", "On", "the", "Moon", "there", "are", "areas", "where", "naming", "is", "reserved", "to", "honour", "dead", "astronauts", "and", "cosmonauts,", "with", "the", "ominous", "note", "that", "“this", "convention", "may", "be", "extended", "if", "other", "space-faring", "countries", "suffer", "fatalities", "in", "spaceflight”.", "And", "why", "not?", "There’s", "plenty", "of", "Moon", "left,", "thousands", "of", "craters", "have", "been", "identified", "that", "have", "yet", "to", "receive", "an", "official", "name.", "And", "even", "if", "a", "feature", "has", "a", "name", "with", "a", "history,", "will", "people", "honour", "it?", "Will", "a", "Martian", "Chinese", "colony", "in", "the", "Rutherford", "Crater", "still", "call", "it", "Rutherford?", "Will", "in", "Inuvik", "keep", "the", "name", "of", "a", "small", "town", "in", "Canada", "–", "or", "rename", "it", "something", "closer", "to", "home?", "There’s", "a", "long", "history", "of", "name", "changes", "in", "space.", "British", "astronomers", "carried", "on", "with", "George’s", "Star", "(chosen", "by", "the", "discoverer", "of", "the", "planet", "to", "honour", "George", "III)", "for", "many", "years", "after", "everyone", "else", "switched", "to", "“Uranus”.", "The", "Galilean", "moons", "were", "once", "the", "‘Medician", "stars’", "–", "after", "the", "family", "whose", "patronage", "Galileo", "sought.", "When", "Cassini", "discovered", "the", "moons", "of", "Saturn", "he", "called", "them", "‘the", "stars", "of", "Louis’", "after", "King", "Louis", "XIV,", "hoping", "to", "create", "“a", "Monument", "much", "more", "lasting", "than", "those", "of", "Brass", "and", "Marble”.", "That", "we", "don’t", "use", "any", "of", "these", "names", "reflects", "the", "fragility", "of", "monuments", "that", "only", "exist", "on", "paper.", "European", "myths", "may", "end", "up", "the", "Lingua", "Franca", "of", "empty", "places", "–", "only", "kept", "for", "areas", "to", "which", "no", "one", "has", "any", "interest", "in", "going.", "If", "in", "the", "future", "there", "are", "settlers", "in", "Arabia", "Terra,", "that", "OS", "map", "might", "be", "an", "interesting", "historical", "artefact", "for", "them", "–", "a", "perfectly", "correct", "map", "with", "all", "the", "wrong", "names.", "You", "can", "learn", "more", "about", "space", "names", "over", "at", "We", "Name", "The", "Stars." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "The", "Ordnance", "Survey", "recently", "made", "a", "very", "nice", "map", "of", "Mars’", "Arabia", "Terra", "region.", "This", "map", "shows", "an", "alien", "crater-pocketed", "landscape,", "peppered", "with", "mysterious", "names", "like" ], [ "Planum”", "and", "“Marth”.", "When", "the", "OS", "makes", "a", "map", "of", "Britain,", "it", "is", "making", "a", "map", "of", "a", "place", "with", "history", "–", "reflected", "in", "place", "names", "that", "come", "from", "the", "many", "different", "languages", "that", "people", "have", "spoken", "here.", "But", "where", "are", "the", "names", "on", "the", "Mars", "map", "coming", "from?", "The", "romance", "of", "naming", "Space", "used", "to", "be", "like", "the", "Wild", "West,", "with", "different", "names", "used", "by", "different", "people.", "So,", "in", "1911,", "the", "International", "Astronomical", "Union", "started", "to", "become", "the", "official", "clearing", "house", "for", "space", "names.", "It", "legitimised", "features", "from", "previous", "maps", "(like", "Schiaparelli’s", "map", "of", "Mars)", "and", "made", "rules", "for", "how", "new", "names", "would", "be", "picked.", "It", "now", "publishes", "its", "database", "online,", "and", "I", "used", "this", "and", "various", "NASA", "maps", "of", "other", "planets", "to", "build", "We", "Name", "The", "Stars", "–", "a", "way", "of", "exploring", "these", "rules", "and", "places.", "The", "IAU", "conventions", "seem", "to", "understand", "that", "there", "is", "something", "magical", "and", "important", "about", "naming", "things.", "We", "don’t", "end", "up", "with", "Crater", "62", "on", "asteroid", "BXM-2:", "each", "kind", "of", "feature", "(mountains,", "ridges,", "craters,", "lakes)", "on", "each", "different", "world", "has", "a", "different", "naming", "convention,", "so", "that", "similar", "places", "are", "thematically", "linked.", "Often", "revolving", "around", "a", "particular", "ancient", "myth,", "this", "lends", "a", "sense", "of", "grandness", "and", "history", "to", "what", "is", "otherwise", "just", "some", "slightly", "different", "coloured", "pixels.", "A", "screenshot", "from", "the", "\"We", "Name", "the", "Stars\"", "page", "on", "Mars.", "Click", "to", "expand.", "Not", "all", "names", "are", "mythical.", "Craters", "on", "Mercury", "are", "named", "after", "historically", "significant", "artists,", "while", "escarpments", "are", "named", "after", "ships", "of", "discovery.", "This", "is", "how", "you", "end", "up", "with", "a", "slope", "on", "Mercury", "named", "“Pourquoi-Pas”.", "Craters", "on", "the", "asteroid", "Eros", "are", "named", "after", "“mythological", "and", "legendary", "names", "of", "an", "erotic", "nature”", "(which", "gives", "us", "Casanova", "and", "Abelard),", "while", "Saturn’s", "moon", "Titan", "has", "places", "named", "after", "mountains", "in", "Middle", "Earth.", "The", "largest", "mountain", "on", "Titan", "is", "called", "Doom", "Mons.", "Places", "We’ll", "Never", "Go", "Part", "of", "the", "appeal", "of", "the", "OS", "map", "is", "that", "it", "reinforces", "the", "idea", "of", "Mars", "as", "a", "place.", "It’s", "a", "technical", "challenge,", "but", "ultimately", "we", "understand", "how", "we’d", "get", "there,", "walk", "around,", "and", "get", "back.", "Similarly", "you", "can", "vaguely", "imagine", "the", "22nd", "century", "equivalent", "of", "the", "Arctic", "Explorer", "taking", "the", "journey", "my", "virtual", "rover", "is", "making", "across", "the", "Moon,", "visiting", "every", "crater.", "But", "there", "are", "plenty", "of", "other", "places", "to", "which", "we’ve", "given", "names", "that", "will", "probably", "never", "be", "walked", "on", "by", "people.", "Take", "Mercury", "–", "it’s", "right", "next", "to", "the", "sun", "and", "spins", "very", "slowly.", "Every", "place", "on", "the", "planet", "spends", "every", "other", "month", "staring", "into", "the", "furnace.", "In", "several", "of", "his", "books", "Kim", "Stanley", "Robinson", "solves", "this", "problem", "with", "Terminator", "–", "a", "city", "that", "travels", "on", "rails", "around", "the", "planet.", "The", "sun", "heats", "the", "rails,", "which", "expand", "and", "push", "the", "city", "onward", "–", "permanently", "keeping", "it", "just", "beyond", "dawn.", "But", "this", "is", "a", "fragile", "solution.", "Valleys", "on", "Mercury", "are", "named", "after", "ancient", "abandoned", "cities", "–", "a", "poor", "omen", "for", "the", "success", "of", "future", "settlement.", "Maybe", "maps", "of", "Mercury", "are", "for", "visitors,", "driving", "slowly", "to", "stay", "ahead", "of", "the", "sun.", "A", "screenshot", "from", "the", "\"We", "Name", "the", "Stars\"", "page", "on", "the", "Moon.", "Click", "to", "expand.", "Venus", "we", "can’t", "even", "visit.", "In", "the", "day", "the", "surface", "can", "get", "hot", "enough", "to", "melt", "lead,", "and", "the", "atmospheric", "pressure", "is", "the", "equivalent", "of", "being", "a", "kilometre", "under", "the", "ocean", "on", "Earth.", "On", "the", "other", "hand,", "it", "turns", "out", "that,", "if", "you", "build", "floating", "cities", "50km", "up,", "the", "pressure", "and", "temperature", "are", "pretty", "much", "the", "same", "as", "on", "Earth.", "To", "our", "cloud-dwelling", "descendants", "it’ll", "probably", "seem", "odd", "that", "we", "put", "so", "many", "of", "our", "goddesses", "on", "features", "as", "unimportant", "to", "them", "as", "the", "floor", "of", "the", "ocean", "is", "to", "us.", "There", "is", "something", "strange", "and", "wonderful", "about", "a", "system", "that", "produces", "such", "evocative", "names", "for", "places", "that", "in", "all", "likelihood", "no", "one", "will", "ever", "visit.", "These", "names", "don’t", "have", "to", "be", "pretty", "or", "coherent", "–", "but", "the", "effort", "is", "made", "anyway.", "The", "European", "Sky", "The", "IAU", "was", "founded", "at", "a", "time", "when", "“international", "cooperation”", "mostly", "meant", "“European", "cooperation”.", "The", "conventions", "emerging", "on", "using", "old", "myths", "and", "Latinised", "names", "were", "good,", "because", "that", "seemed", "like", "common", "ground.", "Astronomers", "looked", "into", "space", "and", "then", "looked", "back", "on", "their", "shared", "classical", "heritage,", "pillaging", "the", "myths", "of", "the", "Romans", "and", "Greeks", "for", "important", "sounding", "but", "politically", "neutral", "names.", "Except,", "of", "course,", "it’s", "not", "really", "neutral", "because", "not", "everyone", "comes", "from", "that", "heritage.", "Some", "60", "per", "cent", "of", "feature", "names", "are", "European", "in", "origin,", "and", "so", "European", "myth", "and", "history", "punches", "a", "little", "above", "its", "weight", "in", "the", "space", "naming" ] ], [ [ "race.", "As", "the", "composition", "of", "the", "IAU", "has", "changed", "over", "time,", "this", "shift", "has", "been", "reflected", "in", "patterns", "for", "future", "names.", "Many", "conventions", "are", "now", "ecumenical:", "Io", "is", "littered", "with", "thunder", "and", "sun", "gods", "from", "different", "cultures,", "and", "Ceres", "has", "features", "named", "after", "the", "“agricultural", "festivals", "of", "the", "world”.", "Rhea", "uses", "names", "from", "“people", "and", "places", "from", "creation", "myths", "(with", "Asian", "emphasis)”;", "names", "on", "Triton", "are", "explicitly", "“aquatic", "names,", "excluding", "Roman", "and", "Greek”.", "Fragile", "Monuments", "But", "these", "are", "all", "faraway", "places,", "what", "about", "European", "domination", "of", "the", "places", "we’re", "actually", "likely", "to", "go", "–", "like", "the", "Moon", "and", "Mars?", "If", "the", "future", "of", "space", "turns", "out", "to", "be", "non-western,", "this", "issue", "ends", "up", "solving", "itself.", "After", "the", "Chinese", "Yutu", "rover", "landed", "on", "the", "moon,", "the", "landing", "site", "was", "named", "Guang", "Han", "Gong", "(Moon", "Palace)", "and", "three", "local", "craters", "were", "given", "names", "from", "Chinese", "astrology", "by", "the", "IAU.", "When", "the", "asteroid", "1998", "SF", "36", "was", "selected", "as", "the", "target", "for", "the", "Japanese", "Hayabusa", "spacecraft,", "it", "was", "designated", "Itokawa", "after", "a", "Japanese", "rocket", "scientist.", "Where", "robotic", "feet", "go,", "naming", "rights", "follow.", "On", "the", "Moon", "there", "are", "areas", "where", "naming", "is", "reserved", "to", "honour", "dead", "astronauts", "and", "cosmonauts,", "with", "the", "ominous", "note", "that", "“this", "convention", "may", "be", "extended", "if", "other", "space-faring", "countries", "suffer", "fatalities", "in", "spaceflight”.", "And", "why", "not?", "There’s", "plenty", "of", "Moon", "left,", "thousands", "of", "craters", "have", "been", "identified", "that", "have", "yet", "to", "receive", "an", "official", "name.", "And", "even", "if", "a", "feature", "has", "a", "name", "with", "a", "history,", "will", "people", "honour", "it?", "Will", "a", "Martian", "Chinese", "colony", "in", "the", "Rutherford", "Crater", "still", "call", "it", "Rutherford?", "Will", "in", "Inuvik", "keep", "the", "name", "of", "a", "small", "town", "in", "Canada", "–", "or", "rename", "it", "something", "closer", "to", "home?", "There’s", "a", "long", "history", "of", "name", "changes", "in", "space.", "British", "astronomers", "carried", "on", "with", "George’s", "Star", "(chosen", "by", "the", "discoverer", "of", "the", "planet", "to", "honour", "George", "III)", "for", "many", "years", "after", "everyone", "else", "switched", "to", "“Uranus”.", "The", "Galilean", "moons", "were", "once", "the", "‘Medician", "stars’", "–", "after", "the", "family", "whose", "patronage", "Galileo", "sought.", "When", "Cassini", "discovered", "the", "moons", "of", "Saturn", "he", "called", "them", "‘the", "stars", "of", "Louis’", "after", "King", "Louis", "XIV,", "hoping", "to", "create", "“a", "Monument", "much", "more", "lasting", "than", "those", "of", "Brass", "and", "Marble”.", "That", "we", "don’t", "use", "any", "of", "these", "names", "reflects", "the", "fragility", "of", "monuments", "that", "only", "exist", "on", "paper.", "European", "myths", "may", "end", "up", "the", "Lingua", "Franca", "of", "empty", "places", "–", "only", "kept", "for", "areas", "to", "which", "no", "one", "has", "any", "interest", "in", "going.", "If", "in", "the", "future", "there", "are", "settlers", "in", "Arabia", "Terra,", "that", "OS", "map", "might", "be", "an", "interesting", "historical", "artefact", "for", "them", "–", "a", "perfectly", "correct", "map", "with", "all", "the", "wrong", "names.", "You", "can", "learn", "more", "about", "space", "names", "over", "at", "We", "Name", "The", "Stars." ] ] ]
[ [ "en", "en" ], [ "en" ] ]
[ "mono" ]
[ [ "Pope", "Francis", "arrives", "in", "the", "Paul", "VI", "hall", "at", "the", "Vatican", "for", "a", "audience", "with", "students", "and", "teachers", "of", "the", "San", "Carlo", "Institute", "of", "Milan,", "Saturday,", "April", "6,", "2019.", "(AP", "Photo/Alessandra", "Tarantino)", "Pope", "Francis", "arrives", "in", "the", "Paul", "VI", "hall", "at", "the", "Vatican", "for", "a", "audience", "with", "students", "and", "teachers", "of", "the", "San", "Carlo", "Institute", "of", "Milan,", "Saturday,", "April", "6,", "2019.", "(AP", "Photo/Alessandra", "Tarantino)", "CITY", "(AP)", "—", "Pope", "Francis", "blamed", "Europe", "and", "the", "United", "States", "for", "the", "deaths", "of", "children", "in", "Syria,", "Yemen", "and", "Afghanistan,", "saying", "Saturday", "that", "wealthy", "Western", "countries", "fuel", "conflicts", "by", "selling", "weapons", "in", "war", "zones.", "Speaking", "to", "students", "and", "teachers", "of", "Milan’s", "San", "Carlo", "Institute,", "Francis", "said", "the", "reason", "there", "are", "so", "many", "wars", "around", "the", "world", "is", "“the", "rich", "Europe", "and", "America", "sell", "weapons...", "used", "to", "kill", "children", "and", "kill", "people.”", "Without", "such", "firepower,", "the", "pope", "added,", "there", "wouldn’t", "have", "been", "war", "in", "countries", "such", "as", "Afghanistan,", "Yemen", "and", "Syria..", "“A", "country", "that", "produces", "and", "sells", "weapons", "has", "on", "its", "conscience", "the", "death", "of", "every", "child", "and", "the", "destruction", "of", "each", "family,”", "Francis", "said.", "ADVERTISEMENT", "Talking", "about", "the", "need", "for", "countries", "to", "welcome", "and", "integrate", "migrants,", "the", "pope", "refuted", "the", "crime", "concerns", "governments", "cite", "to", "keep", "out", "asylum-seekers.", "Foreigners", "aren’t", "the", "source", "of", "most", "crime", "in", "Italy", "because", "“we", "also", "have", "lots", "of", "them,”", "Francis", "said.", "“The", "Mafia", "has", "not", "been", "invented", "by", "Nigerians.", "Mafia", "is", "ours,”", "he", "said.", "“All", "of", "us", "have", "the", "possibility", "of", "being", "criminal.", "Migrants", "bring", "us", "wealth", "because", "Europe", "has", "been", "made", "by", "migrants.”" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "pt", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "it", "it", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Pope", "Francis", "arrives", "in", "the", "Paul", "VI", "hall", "at", "the", "Vatican", "for", "a", "audience", "with", "students", "and", "teachers", "of", "the", "San", "Carlo", "Institute", "of", "Milan,", "Saturday,", "April", "6,", "2019." ], [ "Pope", "Francis", "arrives", "in", "the", "Paul", "VI", "hall", "at", "the", "Vatican", "for", "a", "audience", "with", "students", "and", "teachers", "of", "the", "San", "Carlo", "Institute", "of", "Milan,", "Saturday,", "April", "6,", "2019." ], [ "CITY", "(AP)", "—", "Pope", "Francis", "blamed", "Europe", "and", "the", "United", "States", "for", "the", "deaths", "of", "children", "in", "Syria,", "Yemen", "and", "Afghanistan,", "saying", "Saturday", "that", "wealthy", "Western", "countries", "fuel", "conflicts", "by", "selling", "weapons", "in", "war", "zones.", "Speaking", "to", "students", "and", "teachers", "of", "Milan’s", "San", "Carlo", "Institute,", "Francis", "said", "the", "reason", "there", "are", "so", "many", "wars", "around", "the", "world", "is", "“the", "rich", "Europe", "and", "America", "sell", "weapons...", "used", "to", "kill", "children", "and", "kill", "people.”", "Without", "such", "firepower,", "the", "pope", "added,", "there", "wouldn’t", "have", "been", "war", "in", "countries", "such", "as", "Afghanistan,", "Yemen", "and", "Syria..", "“A", "country", "that", "produces", "and", "sells", "weapons", "has", "on", "its", "conscience", "the", "death", "of", "every", "child", "and", "the", "destruction", "of", "each", "family,”", "Francis", "said.", "ADVERTISEMENT", "Talking", "about", "the", "need", "for", "countries", "to", "welcome", "and", "integrate", "migrants,", "the", "pope", "refuted", "the", "crime", "concerns", "governments", "cite", "to", "keep", "out", "asylum-seekers.", "Foreigners", "aren’t", "the", "source", "of", "most", "crime", "in", "Italy", "because", "“we", "also", "have", "lots", "of", "them,”", "Francis", "said.", "“The", "Mafia", "has", "not", "been", "invented", "by", "Nigerians.", "Mafia", "is", "ours,”", "he", "said.", "“All", "of", "us", "have", "the", "possibility", "of", "being", "criminal.", "Migrants", "bring", "us", "wealth", "because", "Europe", "has", "been", "made", "by", "migrants.”" ] ] ]
[ [ "en", "en", "en" ] ]
[ "mono" ]
[ [ "Save", "The", "Children", "says", "a", "hospital", "it", "supports", "in", "Yemen", "has", "been", "hit", "by", "an", "airstrike", "and", "seven", "people", "have", "been", "killed.", "The", "humanitarian", "organization", "said", "in", "a", "statement", "that", "four", "of", "those", "killed", "were", "children.", "It", "said", "eight", "people", "were", "wounded", "and", "two", "adults", "are", "unaccounted", "for.", "Save", "The", "Children", "said", "a", "missile", "a", "gasoline", "station", "near", "the", "entrance", "to", "Ritaf", "rural", "hospital,", "about", "100", "kilometers", "(60", "miles)", "from", "the", "city", "of", "Saada", "in", "northwestern", "Yemen", "at", "9:30", "a.m.", "local", "time", "on", "Tuesday.", "It", "said:", "\"The", "missile", "was", "said", "to", "have", "landed", "within", "50", "meters", "of", "the", "facility's", "main", "building.\"", "The", "organization", "said", "the", "hospital", "had", "open", "been", "open", "for", "half", "an", "hour", "and", "many", "patients", "and", "staff", "were", "arriving", "on", "a", "busy", "morning." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Save", "The", "Children", "says", "a", "hospital", "it", "supports", "in", "Yemen", "has", "been", "hit", "by", "an", "airstrike", "and", "seven", "people", "have", "been", "killed.", "The", "humanitarian", "organization", "said", "in", "a", "statement", "that", "four", "of", "those", "killed", "were", "children.", "It", "said", "eight", "people", "were", "wounded", "and", "two", "adults", "are", "unaccounted", "for.", "Save", "The", "Children", "said", "a", "missile", "a", "gasoline", "station", "near", "the", "entrance", "to", "Ritaf", "rural", "hospital,", "about", "100", "kilometers", "(60", "miles)", "from", "the", "city", "of", "Saada", "in", "northwestern", "Yemen", "at", "9:30", "a.m.", "local", "time", "on", "Tuesday.", "It", "said:", "\"The", "missile", "was", "said", "to", "have", "landed", "within", "50", "meters", "of", "the", "facility's", "main", "building.\"", "The", "organization", "said", "the", "hospital", "had", "open", "been", "open", "for", "half", "an", "hour", "and", "many", "patients", "and", "staff", "were", "arriving", "on", "a", "busy", "morning." ] ] ]
[ [ "en" ] ]
[ "mono", "mono" ]
[ [ "ARCHIVED", "CONTENT:", "As", "a", "service", "to", "our", "readers,", "Harvard", "Health", "Publishing", "provides", "access", "to", "our", "library", "of", "archived", "content.", "Please", "note", "the", "date", "each", "article", "was", "posted", "or", "last", "reviewed.", "No", "content", "on", "this", "site,", "regardless", "of", "date,", "should", "ever", "be", "used", "as", "a", "substitute", "for", "direct", "medical", "advice", "from", "your", "doctor", "or", "other", "qualified", "clinician.", "You", "are", "what", "you", "eat.", "It's", "a", "bit", "of", "folk", "wisdom", "that", "contains", "more", "than", "a", "kernel", "of", "truth.", "Diet", "has", "a", "powerful", "influence", "on", "many", "diseases,", "including", "America's", "number", "two", "killer,", "cancer.", "But", "because", "cancer", "is", "so", "complex,", "with", "many", "genetic", "and", "environmental", "factors", "affecting", "risk,", "the", "link", "between", "your", "menu", "and", "your", "risk", "has", "been", "hard", "to", "decipher.", "In", "the", "case", "of", "red", "meat", "and", "colon", "cancer,", "however,", "new", "research", "provides", "a", "plausible", "explanation", "for", "a", "long-suspected", "association.", "Establishing", "a", "link", "Although", "the", "results", "vary,", "studies", "from", "around", "the", "world", "have", "suggested", "that", "a", "high", "consumption", "of", "meat", "is", "linked", "to", "an", "increased", "risk", "of", "colon", "cancer.", "In", "some", "studies,", "fresh", "meat", "appears", "culpable;", "in", "others,", "it's", "processed,", "cured,", "or", "salted", "meat", "—", "but", "in", "all", "cases", "the", "worry", "is", "confined", "to", "red", "meat,", "not", "chicken.", "The", "best", "evidence", "comes", "from", "a", "pair", "of", "large", "2005", "studies,", "one", "from", "Europe,", "the", "other", "from", "the", "United", "States.", "The", "European", "research", "tracked", "478,000", "men", "and", "women", "who", "were", "free", "of", "cancer", "when", "the", "study", "began.", "During", "nearly", "five", "years", "of", "follow-up,", "1,329", "people", "were", "diagnosed", "with", "colon", "cancer.", "The", "people", "who", "ate", "the", "most", "red", "meat", "(about", "5", "ounces", "a", "day", "or", "more)", "were", "about", "a", "third", "more", "likely", "to", "develop", "colon", "cancer", "than", "those", "who", "ate", "the", "least", "red", "meat", "(less", "than", "an", "ounce", "a", "day", "on", "average).", "Their", "consumption", "of", "chicken", "did", "not", "influence", "risk", "one", "way", "or", "the", "other,", "but", "a", "high", "consumption", "of", "fish", "appeared", "to", "reduce", "the", "risk", "of", "colon", "cancer", "by", "about", "a", "third.", "The", "effects", "of", "red", "meat", "and", "fish", "held", "up", "after", "the", "results", "were", "adjusted", "for", "other", "potential", "colon", "cancer", "risk", "factors,", "including", "body", "weight,", "caloric", "consumption,", "alcohol", "consumption,", "smoking,", "physical", "exercise,", "dietary", "fiber,", "and", "vitamins.", "The", "U.S.", "study,", "sponsored", "by", "the", "American", "Cancer", "Society,", "added", "important", "information", "about", "the", "effects", "of", "long-term", "meat", "consumption.", "The", "subjects", "were", "148,610", "people", "between", "the", "ages", "of", "50", "and", "74.", "Each", "person", "reported", "on", "his", "or", "her", "dietary", "patterns", "and", "health", "habits", "when", "the", "study", "began", "in", "1982", "and", "again,", "10", "to", "11", "years", "later.", "A", "high", "consumption", "of", "red", "and", "processed", "meats", "at", "both", "dates", "was", "linked", "with", "a", "substantial", "increase", "in", "the", "risk", "of", "cancer", "in", "the", "lower", "colon", "and", "rectum.", "Conversely,", "the", "long-term", "consumption", "of", "large", "amounts", "of", "fish", "and", "poultry", "appeared", "protective.", "These", "two", "studies", "are", "impressive,", "and", "they", "don't", "stand", "alone.", "A", "meta-analysis", "of", "29", "studies", "of", "meat", "consumption", "and", "colon", "cancer", "concluded", "that", "a", "high", "consumption", "of", "red", "meat", "increases", "risk", "by", "28%,", "and", "a", "high", "consumption", "of", "processed", "meat", "increases", "risk", "by", "20%.", "Red", "meat,", "prostate", "cancer,", "and", "other", "malignancies", "According", "to", "estimates,", "more", "than", "79,000", "American", "men", "were", "diagnosed", "with", "colorectal", "cancer", "in", "2007,", "but", "prostate", "cancer", "was", "diagnosed", "in", "nearly", "three", "times", "more", "men.", "Some", "studies", "have", "reported", "a", "moderate", "to", "strong", "association", "between", "red", "meat", "consumption", "and", "the", "risk", "of", "prostate", "cancer;", "others", "have", "not", "found", "a", "link.", "Two", "studies", "provide", "perspective.", "One", "reported", "that", "a", "high", "consumption", "of", "red", "meat,", "especially", "cooked,", "processed", "meat,", "was", "associated", "with", "a", "doubling", "of", "prostate", "cancer", "risk", "in", "African", "American,", "but", "not", "white,", "men.", "The", "other", "found", "that", "very", "well", "done", "meat", "appeared", "to", "increase", "risk", "by", "40%,", "but", "meat", "cooked", "at", "lower", "temperatures", "did", "not", "boost", "the", "risk.", "So", "for", "the", "prostate", "as", "well", "as", "the", "colon,", "it", "may", "be", "wise", "to", "cut", "down", "on", "red", "meat,", "especially", "processed,", "grilled,", "and", "barbecued", "meats.", "Other", "studies", "have", "linked", "red", "meat", "to", "stomach", "cancer,", "bladder", "cancer,", "and", "breast", "cancer.", "In", "contrast,", "low", "in", "meat", "have", "been", "associated", "with", "increased", "life", "expectancies.", "It's", "enough", "to", "make", "you", "think", "twice", "before", "you", "slap", "a", "few", "hot", "dogs", "and", "burgers", "on", "the", "grill", "next", "summer.", "Seeing", "red", "Scientists", "have", "offered", "a", "number", "of", "explanations", "for", "the", "link", "between", "red", "meat", "and", "colon", "cancer.", "One", "theory", "blames", "heterocyclic", "amines", "(HCAs),", "chemicals", "produced", "when", "meat", "is", "cooked", "at", "high", "temperatures.", "HCAs", "may", "play", "a", "role,", "but", "since", "high", "levels", "can", "also", "be", "present", "in", "cooked", "chicken,", "they", "are", "unlikely", "to", "be", "the", "whole", "explanation.", "Preservatives", "have", "also", "been", "implicated", "in", "the", "case", "of", "processed", "meats;", "nitrates", "are", "a", "particular", "worry,", "since", "the", "body", "converts", "them", "to", "nitrosamines,", "which", "are", "carcinogenic.", "But", "since", "fresh", "meat", "is", "also", "linked", "to", "colon", "cancer,", "preservatives", "can't", "be", "the", "whole", "answer.", "Scientists", "from", "England", "have", "offered", "a", "new", "explanation.", "Their", "investigation", "recruited", "healthy", "volunteers", "who", "agreed", "to", "stay", "in", "a", "metabolic", "research", "unit", "where", "their", "diet", "could", "be", "carefully", "controlled", "and", "all", "of", "their", "fecal", "waste", "could", "be", "collected", "and", "analyzed.", "The", "volunteers", "ate", "one", "of", "three", "test", "diets", "for", "a", "period", "of", "15", "to", "21", "days.", "The", "first", "diet" ], [ "contained", "about", "14", "ounces", "of", "red", "meat", "a", "day,", "always", "prepared", "to", "minimize", "HCA", "formation.", "The", "second", "diet", "was", "strictly", "vegetarian,", "and", "the", "third", "contained", "large", "amounts", "of", "both", "red", "meat", "and", "dietary", "fiber.", "Stool", "specimens", "from", "the", "21", "volunteers", "who", "consumed", "the", "high-meat", "diet", "contained", "high", "levels", "of", "N-nitroso", "compounds", "(NOCs),", "which", "are", "potentially", "cancer-causing", "chemicals.", "The", "12", "volunteers", "who", "ate", "vegetarian", "food", "excreted", "low", "levels", "of", "NOCs,", "and", "the", "13", "who", "ate", "meat", "and", "high-fiber", "diets", "produced", "intermediate", "amounts.", "These", "results", "are", "interesting", "enough", "on", "their", "own,", "Dr.", "Michelle", "Lewin", "and", "her", "colleagues", "went", "one", "step", "further.", "They", "were", "able", "to", "retrieve", "cells", "from", "the", "lining", "of", "the", "colon", "that", "are", "shed", "into", "the", "stool", "with", "every", "bowel", "movement", "as", "a", "normal", "event.", "The", "cells", "from", "people", "eating", "the", "high-meat", "diet", "contained", "a", "large", "number", "of", "cells", "that", "had", "NOC-induced", "DNA", "changes;", "the", "stools", "of", "vegetarians", "had", "the", "lowest", "number", "of", "cells", "with", "damaged", "genetic", "material,", "and", "the", "people", "who", "ate", "high-meat,", "high-fiber", "diets", "produced", "intermediate", "numbers", "of", "damaged", "cells.", "Really", "red?", "Did", "you", "ever", "wonder", "what", "puts", "the", "red", "into", "red", "meat?", "The", "short", "answer", "is", "myoglobin,", "a", "protein", "that", "looks", "red", "when", "it", "binds", "with", "oxygen.", "But", "after", "a", "few", "days", "in", "the", "refrigerator,", "myoglobin", "gives", "up", "its", "oxygen", "and", "the", "meat", "turns", "brown.", "To", "keep", "meat", "looking", "rosy,", "manufacturers", "may", "pump", "in", "some", "carbon", "monoxide,", "which", "sticks", "to", "myoglobin", "like", "glue,", "keeping", "it", "red", "for", "weeks.", "Carbon", "monoxide", "is", "also", "used", "to", "keep", "tuna", "looking", "fresh,", "and", "a", "variety", "of", "additives", "are", "used", "to", "improve", "the", "appearance", "of", "other", "foods.", "The", "moral:", "Don't", "judge", "a", "food", "by", "its", "color.", "Where's", "the", "beef?", "The", "study", "from", "England", "showed", "that", "large", "amounts", "of", "red", "meat", "can", "produce", "genetic", "damage", "to", "colon", "cells", "in", "just", "a", "few", "weeks.", "It's", "an", "important", "finding,", "but", "it", "does", "not", "prove", "that", "red", "meat", "causes", "cancer.", "None", "of", "the", "cells", "were", "malignant,", "and", "the", "body", "has", "a", "series", "of", "mechanisms", "to", "repair", "damaged", "DNA.", "In", "most", "cases,", "the", "repairs", "are", "successful,", "but", "when", "they", "fail,", "cells", "can", "undergo", "malignant", "transformation.", "Still,", "the", "research", "fits", "with", "earlier", "epidemiologic", "data", "raising", "a", "red", "flag", "about", "red", "meat.", "Instead", "of", "counting", "on", "your", "body", "to", "repair", "your", "damaged", "DNA,", "do", "everything", "you", "can", "to", "prevent", "damage", "in", "the", "first", "place.", "In", "the", "case", "of", "colon", "cancer,", "there", "is", "quite", "a", "lot", "you", "can", "do.", "Keep", "your", "caloric", "intake", "reasonable", "and", "exercise", "regularly.", "Both", "of", "these", "choices", "appear", "to", "lower", "substantially", "the", "risk", "of", "colon", "cancer,", "and", "together", "they", "prevent", "obesity,", "a", "major", "cancer", "risk", "factor.", "Avoid", "tobacco", "in", "all", "its", "forms,", "and", "if", "you", "choose", "to", "drink,", "limit", "yourself", "to", "an", "average", "of", "no", "more", "than", "two", "drinks", "a", "day.", "Eat", "foods", "that", "have", "been", "associated", "with", "protection", "from", "colon", "cancer:", "a", "dietary", "pattern", "that", "includes", "good", "amounts", "of", "calcium", "from", "dairy", "products", "(low-", "or", "nonfat,", "please);", "vitamin", "D;", "fruits;", "vegetables;", "whole", "grains;", "and", "fish", "appear", "best.", "And", "yes,", "that", "large", "amounts", "of", "red", "meat", "and", "other", "animal", "fats.", "Low-dose", "aspirin", "may", "also", "reduce", "risk.", "But", "even", "with", "all", "this,", "be", "sure", "to", "get", "the", "colon", "cancer", "screening", "tests", "that", "are", "appropriate", "for", "your", "age,", "family", "history,", "and", "risk", "factors.", "Many", "American", "men", "were", "raised", "on", "a", "diet", "of", "meat", "and", "potatoes.", "Neither", "makes", "the", "grade", "as", "a", "health", "food,", "but", "a", "2004", "survey", "by", "the", "American", "Institute", "for", "Cancer", "Research", "found", "that", "72%", "of", "adults", "center", "their", "meals", "around", "meat", "and", "other", "animal", "products.", "You", "don't", "have", "to", "give", "up", "red", "meat", "to", "be", "healthy,", "but", "the", "evidence", "suggests", "that", "you'd", "be", "wise", "to", "limit", "your", "consumption.", "Learn", "to", "think", "of", "vegetables", "and", "grains", "as", "the", "main", "dish", "and", "meat", "as", "the", "side", "dish.", "Two", "4-ounce", "portions", "a", "week", "should", "be", "safe;", "even", "then,", "choose", "lean", "cuts,", "trim", "away", "excess", "fat,", "and", "avoid", "charring", "your", "meat", "on", "a", "grill.", "Limit", "processed,", "cured,", "and", "salted", "meats", "as", "much", "as", "possible.", "Substitute", "fish", "and", "chicken", "or", "turkey", "(without", "the", "skin)", "for", "red", "meat", "as", "your", "main", "protein", "source,", "and", "experiment", "with", "beans", "as", "a", "source", "of", "protein,", "fiber,", "and", "vitamins.", "It", "may", "seem", "like", "a", "radical", "new", "diet,", "but", "if", "you", "change", "gradually", "and", "encourage", "your", "family", "to", "join", "you,", "you'll", "find", "that", "a", "healthful", "diet", "comes", "naturally", "and", "is", "tasty", "and", "enjoyable.", "Your", "colon", "will", "thank", "you", "—", "and", "so", "will", "your", "heart.", "Disclaimer:", "As", "a", "service", "to", "our", "readers,", "Harvard", "Health", "Publishing", "provides", "access", "to", "our", "library", "of", "archived", "content.", "Please", "note", "the", "date", "of", "last", "review", "or", "update", "on", "all", "articles.", "No", "content", "on", "this", "site,", "regardless", "of", "date,", "should", "ever", "be", "used", "as", "a", "substitute", "for", "direct", "medical", "advice", "from", "your", "doctor", "or", "other", "qualified", "clinician." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "ARCHIVED", "CONTENT:", "As", "a", "service", "to", "our", "readers,", "Harvard", "Health", "Publishing", "provides", "access", "to", "our", "library", "of", "archived", "content.", "Please", "note", "the", "date", "each", "article", "was", "posted", "or", "last", "reviewed.", "No", "content", "on", "this", "site,", "regardless", "of", "date,", "should", "ever", "be", "used", "as", "a", "substitute", "for", "direct", "medical", "advice", "from", "your", "doctor", "or", "other", "qualified", "clinician.", "You", "are", "what", "you", "eat.", "It's", "a", "bit", "of", "folk", "wisdom", "that", "contains", "more", "than", "a", "kernel", "of", "truth.", "Diet", "has", "a", "powerful", "influence", "on", "many", "diseases,", "including", "America's", "number", "two", "killer,", "cancer.", "But", "because", "cancer", "is", "so", "complex,", "with", "many", "genetic", "and", "environmental", "factors", "affecting", "risk,", "the", "link", "between", "your", "menu", "and", "your", "risk", "has", "been", "hard", "to", "decipher.", "In", "the", "case", "of", "red", "meat", "and", "colon", "cancer,", "however,", "new", "research", "provides", "a", "plausible", "explanation", "for", "a", "long-suspected", "association.", "Establishing", "a", "link", "Although", "the", "results", "vary,", "studies", "from", "around", "the", "world", "have", "suggested", "that", "a", "high", "consumption", "of", "meat", "is", "linked", "to", "an", "increased", "risk", "of", "colon", "cancer.", "In", "some", "studies,", "fresh", "meat", "appears", "culpable;", "in", "others,", "it's", "processed,", "cured,", "or", "salted", "meat", "—", "but", "in", "all", "cases", "the", "worry", "is", "confined", "to", "red", "meat,", "not", "chicken.", "The", "best", "evidence", "comes", "from", "a", "pair", "of", "large", "2005", "studies,", "one", "from", "Europe,", "the", "other", "from", "the", "United", "States.", "The", "European", "research", "tracked", "478,000", "men", "and", "women", "who", "were", "free", "of", "cancer", "when", "the", "study", "began.", "During", "nearly", "five", "years", "of", "follow-up,", "1,329", "people", "were", "diagnosed", "with", "colon", "cancer.", "The", "people", "who", "ate", "the", "most", "red", "meat", "(about", "5", "ounces", "a", "day", "or", "more)", "were", "about", "a", "third", "more", "likely", "to", "develop", "colon", "cancer", "than", "those", "who", "ate", "the", "least", "red", "meat", "(less", "than", "an", "ounce", "a", "day", "on", "average).", "Their", "consumption", "of", "chicken", "did", "not", "influence", "risk", "one", "way", "or", "the", "other,", "but", "a", "high", "consumption", "of", "fish", "appeared", "to", "reduce", "the", "risk", "of", "colon", "cancer", "by", "about", "a", "third.", "The", "effects", "of", "red", "meat", "and", "fish", "held", "up", "after", "the", "results", "were", "adjusted", "for", "other", "potential", "colon", "cancer", "risk", "factors,", "including", "body", "weight,", "caloric", "consumption,", "alcohol", "consumption,", "smoking,", "physical", "exercise,", "dietary", "fiber,", "and", "vitamins.", "The", "U.S.", "study,", "sponsored", "by", "the", "American", "Cancer", "Society,", "added", "important", "information", "about", "the", "effects", "of", "long-term", "meat", "consumption.", "The", "subjects", "were", "148,610", "people", "between", "the", "ages", "of", "50", "and", "74.", "Each", "person", "reported", "on", "his", "or", "her", "dietary", "patterns", "and", "health", "habits", "when", "the", "study", "began", "in", "1982", "and", "again,", "10", "to", "11", "years", "later.", "A", "high", "consumption", "of", "red", "and", "processed", "meats", "at", "both", "dates", "was", "linked", "with", "a", "substantial", "increase", "in", "the", "risk", "of", "cancer", "in", "the", "lower", "colon", "and", "rectum.", "Conversely,", "the", "long-term", "consumption", "of", "large", "amounts", "of", "fish", "and", "poultry", "appeared", "protective.", "These", "two", "studies", "are", "impressive,", "and", "they", "don't", "stand", "alone.", "A", "meta-analysis", "of", "29", "studies", "of", "meat", "consumption", "and", "colon", "cancer", "concluded", "that", "a", "high", "consumption", "of", "red", "meat", "increases", "risk", "by", "28%,", "and", "a", "high", "consumption", "of", "processed", "meat", "increases", "risk", "by", "20%.", "Red", "meat,", "prostate", "cancer,", "and", "other", "malignancies", "According", "to", "estimates,", "more", "than", "79,000", "American", "men", "were", "diagnosed", "with", "colorectal", "cancer", "in", "2007,", "but", "prostate", "cancer", "was", "diagnosed", "in", "nearly", "three", "times", "more", "men.", "Some", "studies", "have", "reported", "a", "moderate", "to", "strong", "association", "between", "red", "meat", "consumption", "and", "the", "risk", "of", "prostate", "cancer;", "others", "have", "not", "found", "a", "link.", "Two", "studies", "provide", "perspective.", "One", "reported", "that", "a", "high", "consumption", "of", "red", "meat,", "especially", "cooked,", "processed", "meat,", "was", "associated", "with", "a", "doubling", "of", "prostate", "cancer", "risk", "in", "African", "American,", "but", "not", "white,", "men.", "The", "other", "found", "that", "very", "well", "done", "meat", "appeared", "to", "increase", "risk", "by", "40%,", "but", "meat", "cooked", "at", "lower", "temperatures", "did", "not", "boost", "the", "risk.", "So", "for", "the", "prostate", "as", "well", "as", "the", "colon,", "it", "may", "be", "wise", "to", "cut", "down", "on", "red", "meat,", "especially", "processed,", "grilled,", "and", "barbecued", "meats.", "Other", "studies", "have", "linked", "red", "meat", "to", "stomach", "cancer,", "bladder", "cancer,", "and", "breast", "cancer.", "In", "contrast,", "low", "in", "meat", "have", "been", "associated", "with", "increased", "life", "expectancies.", "It's", "enough", "to", "make", "you", "think", "twice", "before", "you", "slap", "a", "few", "hot", "dogs", "and", "burgers", "on", "the", "grill", "next", "summer.", "Seeing", "red", "Scientists", "have", "offered", "a", "number", "of", "explanations", "for", "the", "link", "between", "red", "meat", "and", "colon", "cancer.", "One", "theory", "blames", "heterocyclic", "amines", "(HCAs),", "chemicals", "produced", "when", "meat", "is", "cooked", "at", "high", "temperatures.", "HCAs", "may", "play", "a", "role,", "but", "since", "high", "levels", "can", "also", "be", "present", "in", "cooked", "chicken,", "they", "are", "unlikely", "to", "be", "the", "whole", "explanation.", "Preservatives", "have", "also", "been", "implicated", "in", "the", "case", "of", "processed", "meats;", "nitrates", "are", "a", "particular", "worry,", "since", "the", "body", "converts", "them", "to", "nitrosamines,", "which", "are", "carcinogenic.", "But", "since", "fresh", "meat", "is", "also", "linked", "to", "colon", "cancer,", "preservatives", "can't", "be", "the", "whole", "answer.", "Scientists", "from", "England", "have", "offered", "a", "new", "explanation.", "Their", "investigation", "recruited", "healthy", "volunteers", "who", "agreed", "to", "stay", "in", "a", "metabolic", "research", "unit", "where", "their", "diet", "could", "be", "carefully", "controlled", "and", "all", "of", "their", "fecal", "waste", "could", "be", "collected", "and", "analyzed.", "The", "volunteers", "ate", "one", "of", "three", "test", "diets", "for", "a", "period", "of", "15", "to", "21", "days.", "The", "first", "diet" ] ], [ [ "contained", "about", "14", "ounces", "of", "red", "meat", "a", "day,", "always", "prepared", "to", "minimize", "HCA", "formation.", "The", "second", "diet", "was", "strictly", "vegetarian,", "and", "the", "third", "contained", "large", "amounts", "of", "both", "red", "meat", "and", "dietary", "fiber.", "Stool", "specimens", "from", "the", "21", "volunteers", "who", "consumed", "the", "high-meat", "diet", "contained", "high", "levels", "of", "N-nitroso", "compounds", "(NOCs),", "which", "are", "potentially", "cancer-causing", "chemicals.", "The", "12", "volunteers", "who", "ate", "vegetarian", "food", "excreted", "low", "levels", "of", "NOCs,", "and", "the", "13", "who", "ate", "meat", "and", "high-fiber", "diets", "produced", "intermediate", "amounts.", "These", "results", "are", "interesting", "enough", "on", "their", "own,", "Dr.", "Michelle", "Lewin", "and", "her", "colleagues", "went", "one", "step", "further.", "They", "were", "able", "to", "retrieve", "cells", "from", "the", "lining", "of", "the", "colon", "that", "are", "shed", "into", "the", "stool", "with", "every", "bowel", "movement", "as", "a", "normal", "event.", "The", "cells", "from", "people", "eating", "the", "high-meat", "diet", "contained", "a", "large", "number", "of", "cells", "that", "had", "NOC-induced", "DNA", "changes;", "the", "stools", "of", "vegetarians", "had", "the", "lowest", "number", "of", "cells", "with", "damaged", "genetic", "material,", "and", "the", "people", "who", "ate", "high-meat,", "high-fiber", "diets", "produced", "intermediate", "numbers", "of", "damaged", "cells.", "Really", "red?", "Did", "you", "ever", "wonder", "what", "puts", "the", "red", "into", "red", "meat?", "The", "short", "answer", "is", "myoglobin,", "a", "protein", "that", "looks", "red", "when", "it", "binds", "with", "oxygen.", "But", "after", "a", "few", "days", "in", "the", "refrigerator,", "myoglobin", "gives", "up", "its", "oxygen", "and", "the", "meat", "turns", "brown.", "To", "keep", "meat", "looking", "rosy,", "manufacturers", "may", "pump", "in", "some", "carbon", "monoxide,", "which", "sticks", "to", "myoglobin", "like", "glue,", "keeping", "it", "red", "for", "weeks.", "Carbon", "monoxide", "is", "also", "used", "to", "keep", "tuna", "looking", "fresh,", "and", "a", "variety", "of", "additives", "are", "used", "to", "improve", "the", "appearance", "of", "other", "foods.", "The", "moral:", "Don't", "judge", "a", "food", "by", "its", "color.", "Where's", "the", "beef?", "The", "study", "from", "England", "showed", "that", "large", "amounts", "of", "red", "meat", "can", "produce", "genetic", "damage", "to", "colon", "cells", "in", "just", "a", "few", "weeks.", "It's", "an", "important", "finding,", "but", "it", "does", "not", "prove", "that", "red", "meat", "causes", "cancer.", "None", "of", "the", "cells", "were", "malignant,", "and", "the", "body", "has", "a", "series", "of", "mechanisms", "to", "repair", "damaged", "DNA.", "In", "most", "cases,", "the", "repairs", "are", "successful,", "but", "when", "they", "fail,", "cells", "can", "undergo", "malignant", "transformation.", "Still,", "the", "research", "fits", "with", "earlier", "epidemiologic", "data", "raising", "a", "red", "flag", "about", "red", "meat.", "Instead", "of", "counting", "on", "your", "body", "to", "repair", "your", "damaged", "DNA,", "do", "everything", "you", "can", "to", "prevent", "damage", "in", "the", "first", "place.", "In", "the", "case", "of", "colon", "cancer,", "there", "is", "quite", "a", "lot", "you", "can", "do.", "Keep", "your", "caloric", "intake", "reasonable", "and", "exercise", "regularly.", "Both", "of", "these", "choices", "appear", "to", "lower", "substantially", "the", "risk", "of", "colon", "cancer,", "and", "together", "they", "prevent", "obesity,", "a", "major", "cancer", "risk", "factor.", "Avoid", "tobacco", "in", "all", "its", "forms,", "and", "if", "you", "choose", "to", "drink,", "limit", "yourself", "to", "an", "average", "of", "no", "more", "than", "two", "drinks", "a", "day.", "Eat", "foods", "that", "have", "been", "associated", "with", "protection", "from", "colon", "cancer:", "a", "dietary", "pattern", "that", "includes", "good", "amounts", "of", "calcium", "from", "dairy", "products", "(low-", "or", "nonfat,", "please);", "vitamin", "D;", "fruits;", "vegetables;", "whole", "grains;", "and", "fish", "appear", "best.", "And", "yes,", "that", "large", "amounts", "of", "red", "meat", "and", "other", "animal", "fats.", "Low-dose", "aspirin", "may", "also", "reduce", "risk.", "But", "even", "with", "all", "this,", "be", "sure", "to", "get", "the", "colon", "cancer", "screening", "tests", "that", "are", "appropriate", "for", "your", "age,", "family", "history,", "and", "risk", "factors.", "Many", "American", "men", "were", "raised", "on", "a", "diet", "of", "meat", "and", "potatoes.", "Neither", "makes", "the", "grade", "as", "a", "health", "food,", "but", "a", "2004", "survey", "by", "the", "American", "Institute", "for", "Cancer", "Research", "found", "that", "72%", "of", "adults", "center", "their", "meals", "around", "meat", "and", "other", "animal", "products.", "You", "don't", "have", "to", "give", "up", "red", "meat", "to", "be", "healthy,", "but", "the", "evidence", "suggests", "that", "you'd", "be", "wise", "to", "limit", "your", "consumption.", "Learn", "to", "think", "of", "vegetables", "and", "grains", "as", "the", "main", "dish", "and", "meat", "as", "the", "side", "dish.", "Two", "4-ounce", "portions", "a", "week", "should", "be", "safe;", "even", "then,", "choose", "lean", "cuts,", "trim", "away", "excess", "fat,", "and", "avoid", "charring", "your", "meat", "on", "a", "grill.", "Limit", "processed,", "cured,", "and", "salted", "meats", "as", "much", "as", "possible.", "Substitute", "fish", "and", "chicken", "or", "turkey", "(without", "the", "skin)", "for", "red", "meat", "as", "your", "main", "protein", "source,", "and", "experiment", "with", "beans", "as", "a", "source", "of", "protein,", "fiber,", "and", "vitamins.", "It", "may", "seem", "like", "a", "radical", "new", "diet,", "but", "if", "you", "change", "gradually", "and", "encourage", "your", "family", "to", "join", "you,", "you'll", "find", "that", "a", "healthful", "diet", "comes", "naturally", "and", "is", "tasty", "and", "enjoyable.", "Your", "colon", "will", "thank", "you", "—", "and", "so", "will", "your", "heart.", "Disclaimer:", "As", "a", "service", "to", "our", "readers,", "Harvard", "Health", "Publishing", "provides", "access", "to", "our", "library", "of", "archived", "content.", "Please", "note", "the", "date", "of", "last", "review", "or", "update", "on", "all", "articles.", "No", "content", "on", "this", "site,", "regardless", "of", "date,", "should", "ever", "be", "used", "as", "a", "substitute", "for", "direct", "medical", "advice", "from", "your", "doctor", "or", "other", "qualified", "clinician." ] ] ]
[ [ "en" ], [ "en" ] ]
[ "mono" ]
[ [ "What?", "Info", "shit", "it’s", "been", "5", "years", "now???", "jesus", "i’ve", "been", "here", "for", "too", "long.", "don’t", "worry", "though,", "i", "still", "don’t", "know", "what." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "What?", "Info", "shit", "it’s", "been", "5", "years", "now???", "jesus", "i’ve", "been", "here", "for", "too", "long.", "don’t", "worry", "though,", "i", "still", "don’t", "know", "what." ] ] ]
[ [ "en" ] ]
[ "mono", "mono" ]
[ [ "Angela", "Merkel", "mastered", "many", "challenges", "in", "the", "last", "decade,", "from", "the", "financial", "and", "euro", "crises", "to", "the", "Kiev-Moscow", "military", "standoff.", "But", "none", "was", "quite", "as", "as", "the", "dilemma", "the", "German", "chancellor", "faces", "now", "with", "Europe’s", "growing", "migration", "crisis.", "Germany", "accepted", "1.1", "million", "asylum", "seekers", "in", "2015", "but", "faces", "growing", "domestic", "pressure", "to", "do", "something", "–", "anything", "–", "to", "stop", "another", "million", "arriving", "this", "year.", "Merkel", "is", "pushing", "for", "a", "pan-European", "solution,", "the", "only", "realistic", "response", "she", "sees", "to", "an", "exodus", "of", "historic", "dimensions.", "But", "with", "the", "political", "clock", "ticking,", "and", "no", "EU", "consensus", "in", "sight,", "the", "need", "to", "secure", "her", "own", "political", "survival", "may", "force", "her", "to", "take", "national", "measures", "that", "could", "finish", "off", "Schengen,", "crumbling", "passport-free", "travel", "area.", "And", "that,", "Merkel", "fears,", "could", "undermine", "the", "EU", "as", "a", "Demands", "for", "German", "national", "measures", "reached", "a", "crescendo", "on", "Wednesday", "evening.", "In", "the", "snowy", "Alpine", "retreat", "of", "Kreuth,", "Merkel", "felt", "the", "full", "fury", "of", "her", "Bavarian", "allies,", "the", "Christian", "Social", "Union", "(CSU).", "They", "are", "on", "Germany’s", "migration", "frontline", "and", "feel", "the", "heat", "from", "their", "voters.", "Even", "in", "the", "depths", "of", "winter", "some", "2,000", "people", "are", "still", "crossing", "daily", "into", "Germany.", "Of", "70", "border", "crossings", "with", "Austria,", "they", "said,", "just", "five", "are", "manned.", "And", "now", "they", "fear", "Austria’s", "cap", "on", "asylum", "applications,", "announced", "on", "Wednesday,", "will", "increase", "further", "the", "flows", "to", "Bavaria.", "The", "CSU", "message", "to", "Merkel", "was", "clear:", "this", "can’t", "go", "on.", "Markus", "Söder,", "finance", "minister", "and", "Bavarian", "leader-in-waiting,", "told", "the", "chancellor", "that", "opening", "last", "August", "to", "Syrians", "trapped", "in", "Hungary", "was", "the", "humane", "thing", "to", "do.", "“But", "keeping", "them", "open", "is", "a", "mistake", "and", "a", "breach", "of", "the", "law,”", "he", "said.", "Asylum", "seekers", "Merkel", "argues", "that", "the", "Geneva", "Convention", "obliges", "Germany", "to", "accept", "all", "who", "seek", "asylum", "here.", "But", "the", "CSU", "disagrees,", "pointing", "to", "a", "legal", "opinion", "it", "commissioned", "from", "a", "former", "constitutional", "court", "judge.", "He", "argued", "that", "the", "obligation", "to", "accept", "asylum", "seekers", "was", "not", "absolute,", "particularly", "if", "an", "applicant", "arrived", "from", "another", "country", "where", "they", "faced", "no", "threat.", "Despite", "the", "barrage", "of", "pleas", "and", "threats", "in", "Kreuth,", "a", "stony-faced", "Merkel", "refused", "to", "budge.", "With", "more", "on", "her", "mind", "than", "Bavaria,", "she", "insisted", "the", "only", "credible", "solution", "to", "this", "crisis", "was", "a", "European", "mechanism", "to", "redistribute", "asylum", "seekers", "throughout", "the", "bloc.", "Austrian-style", "asylum", "caps", "or", "Swedish-style", "border", "checks", "were", "out", "of", "the", "question", "in", "Germany,", "she", "argued.", "Such", "actions", "by", "the", "EU’s", "largest", "member", "state", "would", "cause", "a", "humanitarian", "disaster", "in", "the", "Balkans", "and", "trigger", "the", "end", "of", "the", "–", "if", "not", "worse.", "CSU", "officials", "believe", "the", "opposite", "–", "that", "failure", "to", "act", "will", "bury", "Schengen", "and,", "they", "Angela", "Merkel.", "CSU", "officials", "have", "been", "threatening", "Merkel", "for", "months", "on", "migration", "but", "she", "knows", "that,", "for", "now", "at", "least,", "the", "Bavarians’", "bark", "is", "still", "worse", "than", "its", "bite", "She", "has", "greater", "concerns", "than", "the", "CSU.", "For", "one", "thing,", "the", "success", "of", "her", "migration", "plan", "hinges", "on", "the", "goodwill", "of", "two", "countries", "that", "are", "not", "card-carrying", "members", "of", "the", "Angela", "Merkel", "fan-club.", "EU", "accession", "The", "Turkish", "government,", "in", "for", "bilateral", "talks,", "has", "accepted", "€3", "billion", "in", "EU", "funds", "to", "encourage", "refugees", "to", "stay", "closer", "to", "home.", "But", "Ankara", "has", "little", "love", "for", "the", "German", "leader,", "the", "loudest", "European", "opponent", "to", "their", "EU", "accession.", "And", "what", "of", "Greek", "efforts", "to", "set", "up", "refugee", "registration", "“hotspots”", "on", "its", "Athens", "has", "promised", "they", "will", "be", "operational", "by", "the", "end", "of", "February,", "but", "increasingly", "paranoid", "Berlin", "officials", "suspect", "a", "deliberate", "go-slow", "by", "the", "governing", "Syriza", "party", "–", "payback", "for", "the", "German-led", "euro-crisis", "strategy.", "Greek", "ministers", "deny", "such", "conspiracy", "theories,", "citing", "problems", "in", "setting", "up", "the", "hotspots,", "which", "are", "to", "be", "used", "to", "identify", "genuine", "asylum", "seekers", "who", "can", "then", "be", "sent", "on", "to", "other", "member", "states", "under", "an", "EU-wide", "relocation", "programme.", "The", "biggest", "challenge", "in", "the", "long", "term,", "Greek", "officials", "say,", "is", "the", "growing", "list", "of", "reasons", "states", "give", "for", "refusing", "to", "take", "migrants.", "Yannis", "Mouzalas,", "Greek", "migration", "minister,", "complained", "in", "Berlin", "this", "week", "about", "EU", "countries", "who", "“only", "want", "Christians", "or", "big", "blond", "Syrians", "with", "blue", "eyes", "and", "degrees.", "We’re", "Europe", "a-la-carte", "now,”", "he", "sighed.", "Berlin’s", "other", "great", "concern", "over", "its", "migration", "strategy", "is", "a", "worrying", "lack", "of", "European", "allies.", "“Unlike", "in", "the", "euro", "crisis,", "some", "of", "our", "partners", "believe", "they", "are", "not", "affected", "by", "this", "problem,", "something", "I", "consider", "to", "be", "mistaken,”", "said", "Wolfgang", "Schäuble.", "Sounding", "the", "alarm", "this", "week", "at", "the", "World", "Economic", "Forum", "in", "Davos,", "Germany’s", "last", "dyed-in-the-wool", "European", "said", "that", "failure", "to", "strike", "an", "EU", "redistribution", "deal", "on", "migrants", "would", "undermine", "the", "Schengen" ], [ "travel", "bloc.", "“If", "the", "Schengen", "is", "destroyed", "then", "Europe", "is", "in", "acute", "danger,", "economically", "and", "politically,”", "he", "said.", "Whether", "by", "accident", "or", "design,", "the", "message", "Berlin", "is", "hearing", "from", "its", "EU", "partners", "is", "clear:", "you", "broke", "migration", "last", "summer,", "Angela,", "you", "fix", "it.", "Losing", "battle", "Berlin", "disputes", "this,", "saying", "Merkel’s", "limited", "invitation", "to", "Syrians", "trapped", "in", "Hungary", "was", "widely", "misunderstood", "as", "a", "come", "one,", "come", "all.", "But", "that", "is", "now", "moot:", "the", "damage", "is", "done", "and", "Germany", "feels", "it", "is", "fighting", "a", "losing", "migration", "battle", "against", "pan-European", "nimbyism.", "Warnings", "from", "Brussels", "–", "about", "tomorrow’s", "cost", "of", "a", "Schengen", "–", "weigh", "less", "heavily", "on", "EU", "leaders’", "minds", "than", "today’s", "challenges:", "whether", "it", "is", "David", "Cameron’s", "Brexit", "battle", "or", "François", "Hollande’s", "fight", "against", "terrorism", "and", "Le", "Pen.", "So", "how", "do", "you", "put", "together", "a", "pan-European", "solution,", "the", "only", "kind", "Merkel", "feels", "can", "work", "in", "the", "long", "term,", "when", "almost", "all", "of", "your", "partners", "are", "not", "interested?", "As", "the", "shutters", "come", "down", "across", "the", "Schengen", "Merkel’s", "nightmare", "scenario", "is", "that", "all", "asylum", "roads", "will", "lead", "to", "Germany.", "State", "elections", "Public", "opinion", "here", "on", "asylum", "is", "still", "evenly", "split.", "But", "that", "won’t", "last", "forever", "–", "particularly", "with", "feelings", "running", "high", "after", "the", "Cologne", "attacks", "involving", "asylum", "seekers.", "In", "Merkel’s", "governing", "Christian", "(CDU)", "party,", "even", "her", "most", "loyal", "allies", "are", "nervous.", "Three", "state", "elections", "are", "looming", "in", "March", "and", "the", "asylum-seeker", "struggle", "is", "a", "massive", "local", "issue.", "That", "means", "there", "is", "a", "direct", "link", "election", "results", "and", "Merkel’s", "efforts", "to", "strike", "an", "EU", "deal", "that", "provides", "a", "noticeable", "and", "long-term", "reduction", "in", "inward", "migration", "to", "Germany.", "If", "no", "is", "done", "by", "March,", "and", "voters", "punish", "the", "CDU,", "the", "growing", "anti-Merkel", "murmurs", "will", "become", "impossible", "to", "ignore.", "“We", "won’t", "we", "able", "to", "stand", "this", "much", "longer,”", "warned", "Seehofer.", "After", "his", "guest", "had", "departed", "for", "Berlin,", "he", "added", "darkly:", "“Long-in-the-tooth", "chancellors", "eventually", "only", "believe", "in", "themselves.”" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Angela", "Merkel", "mastered", "many", "challenges", "in", "the", "last", "decade,", "from", "the", "financial", "and", "euro", "crises", "to", "the", "Kiev-Moscow", "military", "standoff.", "But", "none", "was", "quite", "as", "as", "the", "dilemma", "the", "German", "chancellor", "faces", "now", "with", "Europe’s", "growing", "migration", "crisis.", "Germany", "accepted", "1.1", "million", "asylum", "seekers", "in", "2015", "but", "faces", "growing", "domestic", "pressure", "to", "do", "something", "–", "anything", "–", "to", "stop", "another", "million", "arriving", "this", "year.", "Merkel", "is", "pushing", "for", "a", "pan-European", "solution,", "the", "only", "realistic", "response", "she", "sees", "to", "an", "exodus", "of", "historic", "dimensions.", "But", "with", "the", "political", "clock", "ticking,", "and", "no", "EU", "consensus", "in", "sight,", "the", "need", "to", "secure", "her", "own", "political", "survival", "may", "force", "her", "to", "take", "national", "measures", "that", "could", "finish", "off", "Schengen,", "crumbling", "passport-free", "travel", "area.", "And", "that,", "Merkel", "fears,", "could", "undermine", "the", "EU", "as", "a", "Demands", "for", "German", "national", "measures", "reached", "a", "crescendo", "on", "Wednesday", "evening.", "In", "the", "snowy", "Alpine", "retreat", "of", "Kreuth,", "Merkel", "felt", "the", "full", "fury", "of", "her", "Bavarian", "allies,", "the", "Christian", "Social", "Union", "(CSU).", "They", "are", "on", "Germany’s", "migration", "frontline", "and", "feel", "the", "heat", "from", "their", "voters.", "Even", "in", "the", "depths", "of", "winter", "some", "2,000", "people", "are", "still", "crossing", "daily", "into", "Germany.", "Of", "70", "border", "crossings", "with", "Austria,", "they", "said,", "just", "five", "are", "manned.", "And", "now", "they", "fear", "Austria’s", "cap", "on", "asylum", "applications,", "announced", "on", "Wednesday,", "will", "increase", "further", "the", "flows", "to", "Bavaria.", "The", "CSU", "message", "to", "Merkel", "was", "clear:", "this", "can’t", "go", "on.", "Markus", "Söder,", "finance", "minister", "and", "Bavarian", "leader-in-waiting,", "told", "the", "chancellor", "that", "opening", "last", "August", "to", "Syrians", "trapped", "in", "Hungary", "was", "the", "humane", "thing", "to", "do.", "“But", "keeping", "them", "open", "is", "a", "mistake", "and", "a", "breach", "of", "the", "law,”", "he", "said.", "Asylum", "seekers", "Merkel", "argues", "that", "the", "Geneva", "Convention", "obliges", "Germany", "to", "accept", "all", "who", "seek", "asylum", "here.", "But", "the", "CSU", "disagrees,", "pointing", "to", "a", "legal", "opinion", "it", "commissioned", "from", "a", "former", "constitutional", "court", "judge.", "He", "argued", "that", "the", "obligation", "to", "accept", "asylum", "seekers", "was", "not", "absolute,", "particularly", "if", "an", "applicant", "arrived", "from", "another", "country", "where", "they", "faced", "no", "threat.", "Despite", "the", "barrage", "of", "pleas", "and", "threats", "in", "Kreuth,", "a", "stony-faced", "Merkel", "refused", "to", "budge.", "With", "more", "on", "her", "mind", "than", "Bavaria,", "she", "insisted", "the", "only", "credible", "solution", "to", "this", "crisis", "was", "a", "European", "mechanism", "to", "redistribute", "asylum", "seekers", "throughout", "the", "bloc.", "Austrian-style", "asylum", "caps", "or", "Swedish-style", "border", "checks", "were", "out", "of", "the", "question", "in", "Germany,", "she", "argued.", "Such", "actions", "by", "the", "EU’s", "largest", "member", "state", "would", "cause", "a", "humanitarian", "disaster", "in", "the", "Balkans", "and", "trigger", "the", "end", "of", "the", "–", "if", "not", "worse.", "CSU", "officials", "believe", "the", "opposite", "–", "that", "failure", "to", "act", "will", "bury", "Schengen", "and,", "they", "Angela", "Merkel.", "CSU", "officials", "have", "been", "threatening", "Merkel", "for", "months", "on", "migration", "but", "she", "knows", "that,", "for", "now", "at", "least,", "the", "Bavarians’", "bark", "is", "still", "worse", "than", "its", "bite", "She", "has", "greater", "concerns", "than", "the", "CSU.", "For", "one", "thing,", "the", "success", "of", "her", "migration", "plan", "hinges", "on", "the", "goodwill", "of", "two", "countries", "that", "are", "not", "card-carrying", "members", "of", "the", "Angela", "Merkel", "fan-club.", "EU", "accession", "The", "Turkish", "government,", "in", "for", "bilateral", "talks,", "has", "accepted", "€3", "billion", "in", "EU", "funds", "to", "encourage", "refugees", "to", "stay", "closer", "to", "home.", "But", "Ankara", "has", "little", "love", "for", "the", "German", "leader,", "the", "loudest", "European", "opponent", "to", "their", "EU", "accession.", "And", "what", "of", "Greek", "efforts", "to", "set", "up", "refugee", "registration", "“hotspots”", "on", "its", "Athens", "has", "promised", "they", "will", "be", "operational", "by", "the", "end", "of", "February,", "but", "increasingly", "paranoid", "Berlin", "officials", "suspect", "a", "deliberate", "go-slow", "by", "the", "governing", "Syriza", "party", "–", "payback", "for", "the", "German-led", "euro-crisis", "strategy.", "Greek", "ministers", "deny", "such", "conspiracy", "theories,", "citing", "problems", "in", "setting", "up", "the", "hotspots,", "which", "are", "to", "be", "used", "to", "identify", "genuine", "asylum", "seekers", "who", "can", "then", "be", "sent", "on", "to", "other", "member", "states", "under", "an", "EU-wide", "relocation", "programme.", "The", "biggest", "challenge", "in", "the", "long", "term,", "Greek", "officials", "say,", "is", "the", "growing", "list", "of", "reasons", "states", "give", "for", "refusing", "to", "take", "migrants.", "Yannis", "Mouzalas,", "Greek", "migration", "minister,", "complained", "in", "Berlin", "this", "week", "about", "EU", "countries", "who", "“only", "want", "Christians", "or", "big", "blond", "Syrians", "with", "blue", "eyes", "and", "degrees.", "We’re", "Europe", "a-la-carte", "now,”", "he", "sighed.", "Berlin’s", "other", "great", "concern", "over", "its", "migration", "strategy", "is", "a", "worrying", "lack", "of", "European", "allies.", "“Unlike", "in", "the", "euro", "crisis,", "some", "of", "our", "partners", "believe", "they", "are", "not", "affected", "by", "this", "problem,", "something", "I", "consider", "to", "be", "mistaken,”", "said", "Wolfgang", "Schäuble.", "Sounding", "the", "alarm", "this", "week", "at", "the", "World", "Economic", "Forum", "in", "Davos,", "Germany’s", "last", "dyed-in-the-wool", "European", "said", "that", "failure", "to", "strike", "an", "EU", "redistribution", "deal", "on", "migrants", "would", "undermine", "the", "Schengen" ] ], [ [ "travel", "bloc.", "“If", "the", "Schengen", "is", "destroyed", "then", "Europe", "is", "in", "acute", "danger,", "economically", "and", "politically,”", "he", "said.", "Whether", "by", "accident", "or", "design,", "the", "message", "Berlin", "is", "hearing", "from", "its", "EU", "partners", "is", "clear:", "you", "broke", "migration", "last", "summer,", "Angela,", "you", "fix", "it.", "Losing", "battle", "Berlin", "disputes", "this,", "saying", "Merkel’s", "limited", "invitation", "to", "Syrians", "trapped", "in", "Hungary", "was", "widely", "misunderstood", "as", "a", "come", "one,", "come", "all.", "But", "that", "is", "now", "moot:", "the", "damage", "is", "done", "and", "Germany", "feels", "it", "is", "fighting", "a", "losing", "migration", "battle", "against", "pan-European", "nimbyism.", "Warnings", "from", "Brussels", "–", "about", "tomorrow’s", "cost", "of", "a", "Schengen", "–", "weigh", "less", "heavily", "on", "EU", "leaders’", "minds", "than", "today’s", "challenges:", "whether", "it", "is", "David", "Cameron’s", "Brexit", "battle", "or", "François", "Hollande’s", "fight", "against", "terrorism", "and", "Le", "Pen.", "So", "how", "do", "you", "put", "together", "a", "pan-European", "solution,", "the", "only", "kind", "Merkel", "feels", "can", "work", "in", "the", "long", "term,", "when", "almost", "all", "of", "your", "partners", "are", "not", "interested?", "As", "the", "shutters", "come", "down", "across", "the", "Schengen", "Merkel’s", "nightmare", "scenario", "is", "that", "all", "asylum", "roads", "will", "lead", "to", "Germany.", "State", "elections", "Public", "opinion", "here", "on", "asylum", "is", "still", "evenly", "split.", "But", "that", "won’t", "last", "forever", "–", "particularly", "with", "feelings", "running", "high", "after", "the", "Cologne", "attacks", "involving", "asylum", "seekers.", "In", "Merkel’s", "governing", "Christian", "(CDU)", "party,", "even", "her", "most", "loyal", "allies", "are", "nervous.", "Three", "state", "elections", "are", "looming", "in", "March", "and", "the", "asylum-seeker", "struggle", "is", "a", "massive", "local", "issue.", "That", "means", "there", "is", "a", "direct", "link", "election", "results", "and", "Merkel’s", "efforts", "to", "strike", "an", "EU", "deal", "that", "provides", "a", "noticeable", "and", "long-term", "reduction", "in", "inward", "migration", "to", "Germany.", "If", "no", "is", "done", "by", "March,", "and", "voters", "punish", "the", "CDU,", "the", "growing", "anti-Merkel", "murmurs", "will", "become", "impossible", "to", "ignore.", "“We", "won’t", "we", "able", "to", "stand", "this", "much", "longer,”", "warned", "Seehofer.", "After", "his", "guest", "had", "departed", "for", "Berlin,", "he", "added", "darkly:", "“Long-in-the-tooth", "chancellors", "eventually", "only", "believe", "in", "themselves.”" ] ] ]
[ [ "en" ], [ "en" ] ]
[ "mono" ]
[ [ "Unhappy", "with", "the", "ZX-10RR", "after", "the", "opening", "round", "in", "Australia,", "Rea", "has", "since", "started", "to", "feel", "more", "comfortable", "and", "has", "tallied", "up", "two", "wins,", "firstly", "in", "Thailand", "and", "then", "last", "weekend", "at", "Aragon.", "The", "lower", "rev", "limit", "imposed", "on", "Kawasaki", "as", "part", "of", "WSBK's", "2018", "ruleset", "has", "forced", "Rea", "into", "returning", "to", "a", "riding", "style", "which", "favoured", "corner", "speed,", "as", "opposed", "to", "the", "more", "stop-and-go", "nature", "the", "bike", "of", "the", "previous", "two", "seasons", "demanded.", "“So", "this", "corner", "speed", "style,", "I'm", "trying", "to", "learn", "quickly,”", "he", "said.", "“[It's]", "kind", "of", "a", "little", "bit", "like", "in", "2015", "when", "I", "arrived", "at", "Kawasaki,", "I", "rode", "this", "way.", "The", "'16", "bike", "was", "completely", "different,", "it", "was", "like", "a", "'Tom", "Sykes'", "bike,", "a", "stop-and-go", "bike.", "\"So", "for", "two", "years", "I've", "been", "learning", "how", "to", "ride", "that", "bike,", "and", "now", "it's", "with", "no", "top", "power", "anymore", "and", "no", "real", "acceleration,", "I'm", "going", "back", "to", "'15", "style.", "I'm", "trying", "to", "jog", "my", "memory", "now.", "At", "31,", "that's", "not", "easy.”", "Sykes", "–", "who", "is", "seventh", "in", "the", "standings", "and", "51", "points", "adrift", "of", "Rea", "–", "admits", "he", "has", "found", "it", "hard", "to", "adapt", "riding", "style", "on", "the", "second", "Kawasaki.", "“We've", "had", "a", "good", "set-up", "this", "weekend,", "just", "really", "struggling", "with", "the", "other", "riders", "when", "I", "have", "to", "go", "back", "to", "more", "stop-and-start,", "I", "have", "trouble,\"", "he", "said.", "“It's", "funny", "because", "that", "used", "to", "be", "my", "style,", "but", "the", "nature", "of", "the", "beast,", "unfortunately", "it", "doesn't", "like", "that.", "When", "it's", "on", "its", "own", "[the", "bike]", "does", "good", "laptimes.”", "Kawasaki", "close", "to", "the", "limit", "Though", "only", "three", "rounds", "into", "the", "season,", "Rea", "feels", "Kawasaki", "is", "“quite", "close", "to", "the", "limit”", "with", "its", "bike,", "and", "admits", "updates", "have", "been", "few", "and", "far", "between", "as", "a", "result", "of", "the", "restrictive", "new", "rules.", "He", "said:", "\"It's", "been", "a", "long", "time", "since", "we've", "had", "some", "kind", "of", "upgrade,", "and", "it's", "hard", "because", "in", "the", "past", "we've", "been", "working", "to", "push", "forward,", "try", "to", "improve", "the", "bike", "and", "now", "we've", "been", "given", "a", "big", "penalty.", "“It's", "difficult", "to", "work", "in", "this", "area,", "it's", "like", "having", "your", "hands", "tied", "behind", "your", "back", "and", "trying", "to", "fight", "a", "little", "bit.", "“So", "we're", "just", "trying", "to", "figure", "out", "right", "now", "chassis,", "especially", "working", "with", "Showa", "suspension.", "We're", "trying", "to", "find", "a", "bike", "that", "gives", "me", "a", "lot", "more", "confidence", "to", "release", "the", "brake", "and", "turn", "the", "corner.", "“We're", "focused", "a", "lot", "more", "on", "chassis", "balance", "and", "turning", "on", "the", "track,", "trying", "to", "maintain", "corner", "speed", "but", "also", "trying", "to", "save", "the", "rear", "tyre", "because", "I", "think", "a", "lot", "of", "races", "this", "year", "are", "going", "to", "be", "won", "with", "tyre", "consumption,", "and", "that's", "where", "we", "need", "to", "improve", "a", "little", "bit.”", "Additional", "reporting", "by", "Lorenzo", "Moro" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Unhappy", "with", "the", "ZX-10RR", "after", "the", "opening", "round", "in", "Australia,", "Rea", "has", "since", "started", "to", "feel", "more", "comfortable", "and", "has", "tallied", "up", "two", "wins,", "firstly", "in", "Thailand", "and", "then", "last", "weekend", "at", "Aragon.", "The", "lower", "rev", "limit", "imposed", "on", "Kawasaki", "as", "part", "of", "WSBK's", "2018", "ruleset", "has", "forced", "Rea", "into", "returning", "to", "a", "riding", "style", "which", "favoured", "corner", "speed,", "as", "opposed", "to", "the", "more", "stop-and-go", "nature", "the", "bike", "of", "the", "previous", "two", "seasons", "demanded.", "“So", "this", "corner", "speed", "style,", "I'm", "trying", "to", "learn", "quickly,”", "he", "said.", "“[It's]", "kind", "of", "a", "little", "bit", "like", "in", "2015", "when", "I", "arrived", "at", "Kawasaki,", "I", "rode", "this", "way.", "The", "'16", "bike", "was", "completely", "different,", "it", "was", "like", "a", "'Tom", "Sykes'", "bike,", "a", "stop-and-go", "bike.", "\"So", "for", "two", "years", "I've", "been", "learning", "how", "to", "ride", "that", "bike,", "and", "now", "it's", "with", "no", "top", "power", "anymore", "and", "no", "real", "acceleration,", "I'm", "going", "back", "to", "'15", "style.", "I'm", "trying", "to", "jog", "my", "memory", "now.", "At", "31,", "that's", "not", "easy.”", "Sykes", "–", "who", "is", "seventh", "in", "the", "standings", "and", "51", "points", "adrift", "of", "Rea", "–", "admits", "he", "has", "found", "it", "hard", "to", "adapt", "riding", "style", "on", "the", "second", "Kawasaki.", "“We've", "had", "a", "good", "set-up", "this", "weekend,", "just", "really", "struggling", "with", "the", "other", "riders", "when", "I", "have", "to", "go", "back", "to", "more", "stop-and-start,", "I", "have", "trouble,\"", "he", "said.", "“It's", "funny", "because", "that", "used", "to", "be", "my", "style,", "but", "the", "nature", "of", "the", "beast,", "unfortunately", "it", "doesn't", "like", "that.", "When", "it's", "on", "its", "own", "[the", "bike]", "does", "good", "laptimes.”", "Kawasaki", "close", "to", "the", "limit", "Though", "only", "three", "rounds", "into", "the", "season,", "Rea", "feels", "Kawasaki", "is", "“quite", "close", "to", "the", "limit”", "with", "its", "bike,", "and", "admits", "updates", "have", "been", "few", "and", "far", "between", "as", "a", "result", "of", "the", "restrictive", "new", "rules.", "He", "said:", "\"It's", "been", "a", "long", "time", "since", "we've", "had", "some", "kind", "of", "upgrade,", "and", "it's", "hard", "because", "in", "the", "past", "we've", "been", "working", "to", "push", "forward,", "try", "to", "improve", "the", "bike", "and", "now", "we've", "been", "given", "a", "big", "penalty.", "“It's", "difficult", "to", "work", "in", "this", "area,", "it's", "like", "having", "your", "hands", "tied", "behind", "your", "back", "and", "trying", "to", "fight", "a", "little", "bit.", "“So", "we're", "just", "trying", "to", "figure", "out", "right", "now", "chassis,", "especially", "working", "with", "Showa", "suspension.", "We're", "trying", "to", "find", "a", "bike", "that", "gives", "me", "a", "lot", "more", "confidence", "to", "release", "the", "brake", "and", "turn", "the", "corner.", "“We're", "focused", "a", "lot", "more", "on", "chassis", "balance", "and", "turning", "on", "the", "track,", "trying", "to", "maintain", "corner", "speed", "but", "also", "trying", "to", "save", "the", "rear", "tyre", "because", "I", "think", "a", "lot", "of", "races", "this", "year", "are", "going", "to", "be", "won", "with", "tyre", "consumption,", "and", "that's", "where", "we", "need", "to", "improve", "a", "little", "bit.”", "Additional", "reporting", "by", "Lorenzo", "Moro" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Our", "Farker", "friends", "have", "once", "again", "raised", "the", "bar", "by", "pointing", "out", "how", "many", "truly", "awful", "movies", "still", "deserve", "to", "be", "on", "our", "list.", "As", "a", "result,", "we've", "been", "researching", "the", "nominations", "since", "the", "last", "post,", "All", "Farked", "Up", "-", "7", "More", "Terrible", "Films", "With", "Huge", "Celebrities.", "Here,", "once", "again,", "are", "another", "7", "dreadful", "movies;", "this", "time", "starring", "Oscar", "winners!", "Michael", "Caine", "in", "Jaws:", "The", "Revenge", "(1987)", "As", "suggested", "by", "scottydoesntknow.", "We", "here", "at", "RealClear", "absolutely", "love", "shark", "movies,", "especially", "the", "notoriously", "bad", "ones.", "That", "being", "said,", "nothing,", "not", "even", "a", "roaring,", "randomly", "exploding", "shark", "can", "salvage", "this", "one.", "Caine", "plays", "Hoagie,", "the", "love", "interest", "of", "main", "character,", "Ellen", "Brody,", "whose", "recently", "deceased", "husband", "was", "responsible", "for", "the", "shark-pocalypse", "in", "the", "first", "3", "films.", "Well", "now", "the", "offspring", "of", "those", "sharks", "want", "revenge.", "Also", "included:", "shark/human", "telepathy,", "cringy", "acting,", "and", "sharks", "that", "never", "forget.", "Kate", "Winslet", "and", "Halle", "in", "43", "(2013)", "As", "suggested", "by", "Psylord", "Keep", "in", "mind", "that", "our", "list", "focuses", "on", "Oscar", "winners.", "The", "list", "of", "recognizable", "names", "in", "this", "film", "is", "astonishing,", "which", "just", "makes", "this", "film", "even", "more", "unforgiveable.", "Winslet", "and", "Berry", "are", "just", "a", "couple", "of", "the", "many", "characters", "focused", "on", "in", "a", "series", "of", "entirely", "unrelated", "shorts.", "The", "only", "common", "thread", "linking", "the", "scenes", "is", "the", "awful", "school", "level", "humor.", "Brando", "and", "Ringo", "Starr", "in", "Candy", "(1968)", "As", "suggested", "by", "Stupid", "Guitar", "First", "thought:", "Ringo", "Starr", "acted", "in", "a", "movie?", "Second", "thought:", "he", "picked", "this", "as", "his", "debut?", "“Modern”", "adaptations", "of", "classic", "books,", "as", "this", "movie", "is", "to", "Voltaire’s", "‘Candide’", "are", "generally", "pretty", "unpleasant.", "‘Candy’", "is", "no", "exception.", "It", "tries,", "and", "miserably", "fails,", "to", "come", "across", "as", "satire.", "The", "plot", "is", "also", "convoluted", "to", "the", "point", "of", "being", "nearly", "impossible", "to", "understand.", "The", "numerous", "trippy", "and", "sex-filled", "sequences", "just", "further", "add", "to", "the", "movie", "being", "a", "whirlwind", "of", "a", "mistake.", "Dustin", "Hoffman", "and", "Beatty", "in", "Ishtar", "(1987)", "As", "suggested", "by", "ferretman", "Hoffman", "and", "Beatty", "are", "struggling", "singer-songwriters", "in", "New", "York", "that", "take", "up", "a", "small", "gig", "at", "a", "Moroccan", "hotel", "when", "they", "can’t", "find", "work", "anywhere", "else.", "This", "results", "in", "the", "two", "becoming", "recruited", "by", "a", "mysterious", "woman", "trying", "to", "overthrow", "the", "Emir", "of", "Ishtar.", "At", "some", "point,", "the", "CIA", "also", "gets", "involved,", "resulting", "in", "a", "three-way", "power", "struggle", "with", "Beatty", "and", "Hoffman", "at", "the", "center.", "This", "‘comedy’", "is", "one", "of", "the", "most", "famous", "box", "office", "bombs", "ever.", "Sean", "Connery", "in", "Highlander", "II:", "The", "Quickening", "(1991)", "As", "suggested", "by", "I_Am_Weasel", "When", "dealing", "with", "a", "sequel,", "NEVER", "retcon", "anything", "and", "offer", "up", "an", "explanation", "of", "“aliens”.", "That’s", "like,", "the", "first", "thing", "that", "you", "should", "learn", "in", "screen-writing", "school.", "Yet,", "that’s", "exactly", "what", "happens", "here.", "It’s", "basically", "like", "the", "first", "'Highlander',", "which", "everybody", "loves,", "never", "happened.", "As", "a", "response,", "fans", "of", "the", "original", "have", "been", "pretending", "that", "this", "sequel", "never", "happened", "for", "22", "years", "now.", "At", "least", "Connery", "made", "$3.5", "million", "for", "9", "days", "of", "filming.", "Mirren", "in", "Teaching", "Mrs.", "Tingle", "(1999)", "As", "suggested", "by", "xoxo", "Leigh", "Ann", "(played", "by", "Katie", "Holmes)", "will", "do", "anything", "to", "be", "the", "valedictorian", "of", "her", "class,", "even", "if", "it", "means", "killing", "her", "evil", "history", "teacher,", "Mrs.", "Tingle,", "in", "cold", "blood.", "The", "film", "has", "a", "dark,", "drawn-out", "plot", "reminiscent", "of", "‘Heathers’.", "What’s", "intended", "to", "be", "edgy", "and", "thought", "provoking", "comes", "off", "as", "misguided", "and", "nonsensical.", "Bonus", "points", "for", "pre-Daryl", "Dixon", "use", "of", "crossbow", "though." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "nl", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Our", "Farker", "friends", "have", "once", "again", "raised", "the", "bar", "by", "pointing", "out", "how", "many", "truly", "awful", "movies", "still", "deserve", "to", "be", "on", "our", "list.", "As", "a", "result,", "we've", "been", "researching", "the", "nominations", "since", "the", "last", "post,", "All", "Farked", "Up", "-", "7", "More", "Terrible", "Films", "With", "Huge", "Celebrities.", "Here,", "once", "again,", "are", "another", "7", "dreadful", "movies;", "this", "time", "starring", "Oscar", "winners!", "Michael", "Caine", "in", "Jaws:", "The", "Revenge", "(1987)", "As", "suggested", "by", "scottydoesntknow.", "We", "here", "at", "RealClear", "absolutely", "love", "shark", "movies,", "especially", "the", "notoriously", "bad", "ones.", "That", "being", "said,", "nothing,", "not", "even", "a", "roaring,", "randomly", "exploding", "shark", "can", "salvage", "this", "one.", "Caine", "plays", "Hoagie,", "the", "love", "interest", "of", "main", "character,", "Ellen", "Brody,", "whose", "recently", "deceased", "husband", "was", "responsible", "for", "the", "shark-pocalypse", "in", "the", "first", "3", "films.", "Well", "now", "the", "offspring", "of", "those", "sharks", "want", "revenge.", "Also", "included:", "shark/human", "telepathy,", "cringy", "acting,", "and", "sharks", "that", "never", "forget.", "Kate", "Winslet", "and", "Halle", "in", "43", "(2013)", "As", "suggested", "by", "Psylord", "Keep", "in", "mind", "that", "our", "list", "focuses", "on", "Oscar", "winners.", "The", "list", "of", "recognizable", "names", "in", "this", "film", "is", "astonishing,", "which", "just", "makes", "this", "film", "even", "more", "unforgiveable.", "Winslet", "and", "Berry", "are", "just", "a", "couple", "of", "the", "many", "characters", "focused", "on", "in", "a", "series", "of", "entirely", "unrelated", "shorts.", "The", "only", "common", "thread", "linking", "the", "scenes", "is", "the", "awful", "school", "level", "humor.", "Brando", "and", "Ringo", "Starr", "in", "Candy", "(1968)", "As", "suggested", "by", "Stupid", "Guitar", "First", "thought:", "Ringo", "Starr", "acted", "in", "a", "movie?", "Second", "thought:", "he", "picked", "this", "as", "his", "debut?", "“Modern”", "adaptations", "of", "classic", "books,", "as", "this", "movie", "is", "to", "Voltaire’s", "‘Candide’", "are", "generally", "pretty", "unpleasant.", "‘Candy’", "is", "no", "exception.", "It", "tries,", "and", "miserably", "fails,", "to", "come", "across", "as", "satire.", "The", "plot", "is", "also", "convoluted", "to", "the", "point", "of", "being", "nearly", "impossible", "to", "understand.", "The", "numerous", "trippy", "and", "sex-filled", "sequences", "just", "further", "add", "to", "the", "movie", "being", "a", "whirlwind", "of", "a", "mistake.", "Dustin", "Hoffman", "and", "Beatty", "in", "Ishtar", "(1987)", "As", "suggested", "by", "ferretman", "Hoffman", "and", "Beatty", "are", "struggling", "singer-songwriters", "in", "New", "York", "that", "take", "up", "a", "small", "gig", "at", "a", "Moroccan", "hotel", "when", "they", "can’t", "find", "work", "anywhere", "else.", "This", "results", "in", "the", "two", "becoming", "recruited", "by", "a", "mysterious", "woman", "trying", "to", "overthrow", "the", "Emir", "of", "Ishtar.", "At", "some", "point,", "the", "CIA", "also", "gets", "involved,", "resulting", "in", "a", "three-way", "power", "struggle", "with", "Beatty", "and", "Hoffman", "at", "the", "center.", "This", "‘comedy’", "is", "one", "of", "the", "most", "famous", "box", "office", "bombs", "ever.", "Sean", "Connery", "in", "Highlander", "II:", "The", "Quickening", "(1991)", "As", "suggested", "by", "I_Am_Weasel", "When", "dealing", "with", "a", "sequel,", "NEVER", "retcon", "anything", "and", "offer", "up", "an", "explanation", "of", "“aliens”.", "That’s", "like,", "the", "first", "thing", "that", "you", "should", "learn", "in", "screen-writing", "school.", "Yet,", "that’s", "exactly", "what", "happens", "here.", "It’s", "basically", "like", "the", "first", "'Highlander',", "which", "everybody", "loves,", "never", "happened.", "As", "a", "response,", "fans", "of", "the", "original", "have", "been", "pretending", "that", "this", "sequel", "never", "happened", "for", "22", "years", "now.", "At", "least", "Connery", "made", "$3.5", "million", "for", "9", "days", "of", "filming." ], [ "in", "Teaching", "Mrs.", "Tingle", "(1999)", "As", "suggested", "by", "xoxo", "Leigh", "Ann", "(played", "by", "Katie", "Holmes)", "will", "do", "anything", "to", "be", "the", "valedictorian", "of", "her", "class,", "even", "if", "it", "means", "killing", "her", "evil", "history", "teacher,", "Mrs.", "Tingle,", "in", "cold", "blood.", "The", "film", "has", "a", "dark,", "drawn-out", "plot", "reminiscent", "of", "‘Heathers’.", "What’s", "intended", "to", "be", "edgy", "and", "thought", "provoking", "comes", "off", "as", "misguided", "and", "nonsensical.", "Bonus", "points", "for", "pre-Daryl", "Dixon", "use", "of", "crossbow", "though." ] ] ]
[ [ "en", "en" ] ]
[ "mono" ]
[ [ "Today", "we’re", "making", "available", "Keep", "My", "Opt-Outs,", "which", "enables", "you", "to", "opt", "out", "permanently", "from", "ad", "tracking", "cookies.", "It’s", "available", "as", "an", "extension", "for", "download", "in", "Chrome.Recently,", "the", "Federal", "Trade", "Commission", "and", "others", "have", "expressed", "interest", "in", "a", "“Do", "Not", "Track”", "mechanism", "that", "could", "offer", "users", "a", "simple", "way", "to", "opt", "out", "of", "personalized", "advertising.", "Advertising", "companies", "that", "are", "members", "of", "the", "Network", "Advertising", "Initiative", "(NAI)", "already", "let", "you", "opt", "out", "of", "tracking", "for", "the", "purposes", "of", "personalizing", "advertisements,", "and", "many", "online", "advertisers", "and", "trade", "associations", "have", "also", "joined", "a", "major", "self-regulatory", "effort", "to", "enforce", "a", "uniform", "privacy", "icon", "for", "ads,", "as", "well", "as", "opt-out", "guidelines.There", "are", "more", "than", "50", "companies", "that", "are", "members", "that", "offer", "opt", "outs", "via", "these", "programs,", "including", "the", "top", "15", "largest", "ad", "networks", "in", "the", "U.S.", "Some,", "like", "Google,", "enable", "you", "not", "only", "to", "opt", "out,", "but", "to", "tailor", "the", "personalization", "of", "ads", "by", "specifying", "what", "types", "of", "ads", "you’re", "most", "interested", "in", "seeing.However,", "the", "industry", "has", "faced", "a", "recurring", "technical", "challenge", "with", "these", "opt-outs", "and", "controls.", "If", "you", "clear", "your", "browser’s", "cookies,", "all", "customized", "settings", "—", "including", "these", "opt-outs", "—", "are", "lost.", "Another", "challenge", "is", "that", "sometimes", "new", "companies", "offer", "opt-outs,", "so", "you’d", "have", "to", "check", "frequently", "to", "make", "sure", "you’re", "opted", "out", "of", "what", "you", "want.", "A", "better", "“Do", "Not", "Track”", "mechanism", "is", "a", "browser", "extension", "that", "means", "you", "can", "easily", "opt", "out", "of", "personalized", "advertising", "from", "all", "participating", "ad", "networks", "only", "once", "and", "store", "that", "setting", "permanently.We’ve", "been", "working", "on", "addressing", "these", "issues", "for", "awhile.", "Nearly", "two", "years", "ago,", "we", "engineered", "a", "solution", "for", "Google’s", "ad", "system.", "We", "made", "available,", "for", "all", "major", "browsers,", "a", "downloadable", "browser", "plugin", "that", "enables", "you", "to", "permanently", "opt", "out", "of", "Google’s", "advertising", "cookie,", "even", "if", "you", "deleted", "all", "your", "browser’s", "cookies.", "We’ve", "also", "built", "granular", "cookie", "controls", "into", "Chrome", "directly,", "and", "integrated", "Adobe", "Flash", "Player", "storage", "management", "into", "these", "controls.", "We’ve", "also", "modified", "Chrome’s", "incognito", "mode", "to", "ensure", "that", "it", "applies", "to", "“Flash", "cookies”", "in", "addition", "to", "regular", "cookies.Today", "we", "are", "building", "on", "this", "work,", "and", "that", "of", "others,", "by", "allowing", "you", "to", "permanently", "opt", "out", "of", "ad", "tracking", "from", "all", "companies", "that", "offer", "opt-outs", "through", "the", "industry", "self-regulation", "programs.", "Keep", "in", "mind", "that", "once", "you", "install", "the", "Keep", "My", "Opt-Outs", "extension,", "your", "experience", "of", "online", "ads", "may", "change:", "You", "may", "see", "the", "same", "ads", "repeatedly", "on", "particular", "websites,", "or", "see", "ads", "that", "are", "less", "relevant", "to", "you.Importantly,", "we’ve", "designed", "the", "extension", "so", "that", "it", "should", "not", "otherwise", "interfere", "with", "your", "web", "browsing", "experience", "or", "website", "functionality.", "This", "new", "feature", "gives", "you", "significant", "control", "without", "compromising", "the", "revenue", "that", "fuels", "the", "web", "content", "that", "we", "all", "consume", "every", "day.We’re", "working", "to", "make", "this", "feature", "available", "for", "other", "browsers,", "too.", "We’ve", "also", "decided", "to", "make", "the", "code", "for", "this", "extension", "available", "on", "an", "open-source", "basis,", "so", "that", "other", "developers", "can", "let", "us", "know", "if", "there’s", "a", "bug,", "or", "even", "extend", "the", "code’s", "capabilities", "if", "they", "want", "to.", "We’re", "excited", "by", "the", "speed", "of", "innovation", "in", "online", "privacy", "and", "look", "forward", "to", "seeing", "future", "developments.The", "Keep", "My", "Opt", "Outs", "project", "is", "part", "of", "the", "Digital", "Advertising", "Alliance’s", "Self-Regulatory", "Program.", "We", "have", "worked", "with", "the", "DAA", "to", "include", "the", "Keep", "My", "Opt", "Outs", "functionality", "in", "the", "DAA's", "Protect", "My", "Choices", "Chrome", "extension.", "Soon,", "we", "will", "sunset", "the", "Keep", "My", "Opt", "Outs", "extension", "and", "it", "will", "stop", "working.", "To", "protect", "your", "interest-based", "advertising", "opt", "outs,", "please", "click", "below", "to", "go", "to", "the", "Protect", "My", "Choices", "download", "page", "and", "install", "the", "new", "extension." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Today", "we’re", "making", "available", "Keep", "My", "Opt-Outs,", "which", "enables", "you", "to", "opt", "out", "permanently", "from", "ad", "tracking", "cookies.", "It’s", "available", "as", "an", "extension", "for", "download", "in", "Chrome.Recently,", "the", "Federal", "Trade", "Commission", "and", "others", "have", "expressed", "interest", "in", "a", "“Do", "Not", "Track”", "mechanism", "that", "could", "offer", "users", "a", "simple", "way", "to", "opt", "out", "of", "personalized", "advertising.", "Advertising", "companies", "that", "are", "members", "of", "the", "Network", "Advertising", "Initiative", "(NAI)", "already", "let", "you", "opt", "out", "of", "tracking", "for", "the", "purposes", "of", "personalizing", "advertisements,", "and", "many", "online", "advertisers", "and", "trade", "associations", "have", "also", "joined", "a", "major", "self-regulatory", "effort", "to", "enforce", "a", "uniform", "privacy", "icon", "for", "ads,", "as", "well", "as", "opt-out", "guidelines.There", "are", "more", "than", "50", "companies", "that", "are", "members", "that", "offer", "opt", "outs", "via", "these", "programs,", "including", "the", "top", "15", "largest", "ad", "networks", "in", "the", "U.S.", "Some,", "like", "Google,", "enable", "you", "not", "only", "to", "opt", "out,", "but", "to", "tailor", "the", "personalization", "of", "ads", "by", "specifying", "what", "types", "of", "ads", "you’re", "most", "interested", "in", "seeing.However,", "the", "industry", "has", "faced", "a", "recurring", "technical", "challenge", "with", "these", "opt-outs", "and", "controls.", "If", "you", "clear", "your", "browser’s", "cookies,", "all", "customized", "settings", "—", "including", "these", "opt-outs", "—", "are", "lost.", "Another", "challenge", "is", "that", "sometimes", "new", "companies", "offer", "opt-outs,", "so", "you’d", "have", "to", "check", "frequently", "to", "make", "sure", "you’re", "opted", "out", "of", "what", "you", "want.", "A", "better", "“Do", "Not", "Track”", "mechanism", "is", "a", "browser", "extension", "that", "means", "you", "can", "easily", "opt", "out", "of", "personalized", "advertising", "from", "all", "participating", "ad", "networks", "only", "once", "and", "store", "that", "setting", "permanently.We’ve", "been", "working", "on", "addressing", "these", "issues", "for", "awhile.", "Nearly", "two", "years", "ago,", "we", "engineered", "a", "solution", "for", "Google’s", "ad", "system.", "We", "made", "available,", "for", "all", "major", "browsers,", "a", "downloadable", "browser", "plugin", "that", "enables", "you", "to", "permanently", "opt", "out", "of", "Google’s", "advertising", "cookie,", "even", "if", "you", "deleted", "all", "your", "browser’s", "cookies.", "We’ve", "also", "built", "granular", "cookie", "controls", "into", "Chrome", "directly,", "and", "integrated", "Adobe", "Flash", "Player", "storage", "management", "into", "these", "controls.", "We’ve", "also", "modified", "Chrome’s", "incognito", "mode", "to", "ensure", "that", "it", "applies", "to", "“Flash", "cookies”", "in", "addition", "to", "regular", "cookies.Today", "we", "are", "building", "on", "this", "work,", "and", "that", "of", "others,", "by", "allowing", "you", "to", "permanently", "opt", "out", "of", "ad", "tracking", "from", "all", "companies", "that", "offer", "opt-outs", "through", "the", "industry", "self-regulation", "programs.", "Keep", "in", "mind", "that", "once", "you", "install", "the", "Keep", "My", "Opt-Outs", "extension,", "your", "experience", "of", "online", "ads", "may", "change:", "You", "may", "see", "the", "same", "ads", "repeatedly", "on", "particular", "websites,", "or", "see", "ads", "that", "are", "less", "relevant", "to", "you.Importantly,", "we’ve", "designed", "the", "extension", "so", "that", "it", "should", "not", "otherwise", "interfere", "with", "your", "web", "browsing", "experience", "or", "website", "functionality.", "This", "new", "feature", "gives", "you", "significant", "control", "without", "compromising", "the", "revenue", "that", "fuels", "the", "web", "content", "that", "we", "all", "consume", "every", "day.We’re", "working", "to", "make", "this", "feature", "available", "for", "other", "browsers,", "too.", "We’ve", "also", "decided", "to", "make", "the", "code", "for", "this", "extension", "available", "on", "an", "open-source", "basis,", "so", "that", "other", "developers", "can", "let", "us", "know", "if", "there’s", "a", "bug,", "or", "even", "extend", "the", "code’s", "capabilities", "if", "they", "want", "to.", "We’re", "excited", "by", "the", "speed", "of", "innovation", "in", "online", "privacy", "and", "look", "forward", "to", "seeing", "future", "developments.The", "Keep", "My", "Opt", "Outs", "project", "is", "part", "of", "the", "Digital", "Advertising", "Alliance’s", "Self-Regulatory", "Program.", "We", "have", "worked", "with", "the", "DAA", "to", "include", "the", "Keep", "My", "Opt", "Outs", "functionality", "in", "the", "DAA's", "Protect", "My", "Choices", "Chrome", "extension.", "Soon,", "we", "will", "sunset", "the", "Keep", "My", "Opt", "Outs", "extension", "and", "it", "will", "stop", "working.", "To", "protect", "your", "interest-based", "advertising", "opt", "outs,", "please", "click", "below", "to", "go", "to", "the", "Protect", "My", "Choices", "download", "page", "and", "install", "the", "new", "extension." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Posted", "February", "1,", "2017", "at", "04:20", "am", "Should", "have", "some", "exciting", "news", "soon...", ":>", "In", "the", "meantime,", "enjoy!" ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Posted", "February", "1,", "2017", "at", "04:20", "am", "Should", "have", "some", "exciting", "news", "soon...", ":>", "In", "the", "meantime,", "enjoy!" ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Claiming", "that", "his", "government", "is", "committed", "to", "creating", "a", "policy", "environment", "which", "is", "“predictable,", "transparent", "and", "fair”,", "Prime", "Minister", "Narendra", "Modi", "has", "promised", "to", "make", "India", "the", "‘easiest’", "place", "to", "do", "business.", "Speaking", "at", "the", "Vibrant", "Gujarat", "Summit", "on", "Sunday,", "Modi", "said", "the", "‘ease", "of", "doing", "business’", "was", "a", "prime", "concern", "for", "the", "government.", "“We", "want", "to", "make", "them", "not", "only", "easier", "than", "earlier,", "not", "only", "easier", "than", "the", "rest,", "but", "we", "want", "to", "make", "them", "the", "easiest,”", "he", "said", "trying", "to", "woo", "investors", "at", "the", "global", "platform.", "The", "PM", "said,", "“India", "has", "three", "things", "to", "its", "credit", "-", "democracy,", "demography", "and", "demand.”", "India", "not", "only", "offers", "the", "potential", "of", "low-cost", "manufacturing,", "but", "it", "also", "has", "low-cost", "but", "high-quality", "manpower,", "he", "noted.", "Modi", "stressed", "the", "need", "for", "information", "and", "communication", "technology,", "which", "can", "make", "governance", "easier", "and", "effective.", "Pushing", "his", "pet", "project", "—", "Digital", "Initiative", "—", "Modi", "said:", "“We", "are", "also", "keen", "to", "move", "towards", "the", "next", "generation", "infrastructure.", "Just", "as", "we", "need", "highways,", "we", "need", "‘i-ways’", "too.”", "Under", "the", "Digital", "India", "initiative,", "information", "technology", "would", "be", "used", "to", "drive", "government", "processes", "to", "improve", "service", "delivery", "and", "programme", "implementation.", "He", "said", "a", "single-window", "clearance", "system", "for", "projects", "was", "being", "set", "up", "at", "both", "Central", "and", "state", "levels.", "“We", "are", "trying", "to", "complete", "the", "circle", "of", "economic", "reforms", "speedily.", "We", "are", "also", "keen", "to", "see", "that", "our", "policies", "are", "predictable.", "We", "are", "clear", "that", "our", "tax", "regime", "should", "be", "stable.", "In", "the", "past", "few", "months,", "we", "have", "taken", "several", "decisions", "in", "this", "direction,”", "the", "PM", "said,", "adding", "his", "government", "was", "constantly", "working", "to", "improve", "the", "policy", "framework.", "In", "his", "speech,", "Modi", "cited", "some", "recent", "research", "reports", "to", "highlight", "India’s", "growth", "potential.", "“IMF", "Monetary", "Fund)", "has", "predicted", "that", "India", "would", "be", "the", "second", "fastest", "growing", "economy", "in", "the", "coming", "years.", "According", "to", "the", "Organisation", "for", "Economic", "Co-operation", "and", "Development,", "India", "would", "be", "the", "only", "country", "among", "the", "world’s", "top", "economies", "that", "would", "increase", "its", "pace", "of", "growth", "this", "year,”", "he", "said." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "nl", "nl", "it", "it", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Claiming", "that", "his", "government", "is", "committed", "to", "creating", "a", "policy", "environment", "which", "is", "“predictable,", "transparent", "and", "fair”,", "Prime", "Minister", "Narendra", "Modi", "has", "promised", "to", "make", "India", "the", "‘easiest’", "place", "to", "do", "business.", "Speaking", "at", "the", "Vibrant", "Gujarat", "Summit", "on", "Sunday,", "Modi", "said", "the", "‘ease", "of", "doing", "business’", "was", "a", "prime", "concern", "for", "the", "government.", "“We", "want", "to", "make", "them", "not", "only", "easier", "than", "earlier,", "not", "only", "easier", "than", "the", "rest,", "but", "we", "want", "to", "make", "them", "the", "easiest,”", "he", "said", "trying", "to", "woo", "investors", "at", "the", "global", "platform.", "The", "PM", "said,", "“India", "has", "three", "things", "to", "its", "credit", "-", "democracy,", "demography", "and", "demand.”", "India", "not", "only", "offers", "the", "potential", "of", "low-cost", "manufacturing,", "but", "it", "also", "has", "low-cost", "but", "high-quality", "manpower,", "he", "noted.", "Modi", "stressed", "the", "need", "for", "information", "and", "communication", "technology,", "which", "can", "make", "governance", "easier", "and", "effective.", "Pushing", "his", "pet", "project", "—", "Digital", "Initiative", "—", "Modi", "said:", "“We", "are", "also", "keen", "to", "move", "towards", "the", "next", "generation", "infrastructure.", "Just", "as", "we", "need", "highways,", "we", "need", "‘i-ways’", "too.”", "Under", "the", "Digital", "India", "initiative,", "information", "technology", "would", "be", "used", "to", "drive", "government", "processes", "to", "improve", "service", "delivery", "and", "programme", "implementation.", "He", "said", "a", "single-window", "clearance", "system", "for", "projects", "was", "being", "set", "up", "at", "both", "Central", "and", "state", "levels.", "“We", "are", "trying", "to", "complete", "the", "circle", "of", "economic", "reforms", "speedily.", "We", "are", "also", "keen", "to", "see", "that", "our", "policies", "are", "predictable.", "We", "are", "clear", "that", "our", "tax", "regime", "should", "be", "stable.", "In", "the", "past", "few", "months,", "we", "have", "taken", "several", "decisions", "in", "this", "direction,”", "the", "PM", "said,", "adding", "his", "government", "was", "constantly", "working", "to", "improve", "the", "policy", "framework.", "In", "his", "speech,", "Modi", "cited", "some", "recent", "research", "reports", "to", "highlight", "India’s", "growth", "potential.", "“IMF", "Monetary", "Fund)", "has", "predicted", "that", "India", "would", "be", "the", "second", "fastest", "growing", "economy", "in", "the", "coming", "years.", "According", "to", "the", "Organisation", "for", "Economic", "Co-operation", "and", "Development,", "India", "would", "be", "the", "only", "country", "among", "the", "world’s", "top", "economies", "that", "would", "increase", "its", "pace", "of", "growth", "this", "year,”", "he", "said." ] ] ]
[ [ "en" ] ]
[ "mono" ]
[ [ "Prime", "Minister", "Narendra", "Modi", "will", "unveil", "a", "Bhagavad", "Gita,", "running", "into", "670", "pages", "and", "weighing", "800", "kg,", "at", "the", "ISKCON", "temple", "here", "on", "February", "26,", "officials", "said", "Sunday.", "Dubbed", "the", "'Astounding", "Bhagavad", "Gita',", "and", "measuring", "2.8", "m", "by", "2", "m,", "it", "is", "billed", "as", "the", "\"world's", "largest", "sacred", "book\",", "according", "to", "ISCKON.", "The", "International", "Society", "for", "Krishna", "Consciousness", "(ISKCON),", "known", "colloquially", "as", "the", "Hare", "Krishna", "movement,", "is", "a", "worldwide", "confederation", "of", "more", "than", "400", "temples", "and", "runs", "100", "vegetarian", "restaurants", "and", "a", "wide", "variety", "of", "community-serving", "projects.", "\"Prime", "Minister", "Narendra", "Modi", "is", "all", "set", "to", "unveil", "the", "'Astounding", "Bhagavad", "Gita'", "on", "February", "26", "at", "the", "ISKCON", "Temple", "and", "Cultural", "Centre", "in", "East", "of", "Kailash", "in", "Delhi,\"", "ISKCON", "said", "in", "a", "statement.", "The", "Prime", "Minister's", "Office", "said", "the", "prime", "minister", "will", "be", "attending", "the", "event", "on", "Tuesday.", "He", "will", "also", "address", "a", "gathering", "comprising", "spiritual", "leaders,", "diplomats,", "social", "leaders,", "scholars", "along", "with", "devotees", "and", "members", "of", "ISKCON", "from", "around", "the", "world,", "the", "statement", "said.", "The", "ISKCON", "temple", "in", "south", "Delhi,", "endowed", "with", "unique", "latticed", "towers", "having", "a", "fusion", "of", "traditional", "is", "an", "iconic", "landmark", "and", "visited", "by", "a", "large", "number", "of", "devotees", "every", "day.", "Also", "Read:", "Huawei", "launches", "5G", "phone", "with", "a", "foldable", "screen" ] ]
[ [ "en", "en", "en", "en", "it", "it", "it", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "it", "it", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "Prime", "Minister", "Narendra", "Modi", "will", "unveil", "a", "Bhagavad", "Gita,", "running", "into", "670", "pages", "and", "weighing", "800", "kg,", "at", "the", "ISKCON", "temple", "here", "on", "February", "26,", "officials", "said", "Sunday.", "Dubbed", "the", "'Astounding", "Bhagavad", "Gita',", "and", "measuring", "2.8", "m", "by", "2", "m,", "it", "is", "billed", "as", "the", "\"world's", "largest", "sacred", "book\",", "according", "to", "ISCKON.", "The", "International", "Society", "for", "Krishna", "Consciousness", "(ISKCON),", "known", "colloquially", "as", "the", "Hare", "Krishna", "movement,", "is", "a", "worldwide", "confederation", "of", "more", "than", "400", "temples", "and", "runs", "100", "vegetarian", "restaurants", "and", "a", "wide", "variety", "of", "community-serving", "projects.", "\"Prime", "Minister", "Narendra", "Modi", "is", "all", "set", "to", "unveil", "the", "'Astounding", "Bhagavad", "Gita'", "on", "February", "26", "at", "the", "ISKCON", "Temple", "and", "Cultural", "Centre", "in", "East", "of", "Kailash", "in", "Delhi,\"", "ISKCON", "said", "in", "a", "statement.", "The", "Prime", "Minister's", "Office", "said", "the", "prime", "minister", "will", "be", "attending", "the", "event", "on", "Tuesday.", "He", "will", "also", "address", "a", "gathering", "comprising", "spiritual", "leaders,", "diplomats,", "social", "leaders,", "scholars", "along", "with", "devotees", "and", "members", "of", "ISKCON", "from", "around", "the", "world,", "the", "statement", "said.", "The", "ISKCON", "temple", "in", "south", "Delhi,", "endowed", "with", "unique", "latticed", "towers", "having", "a", "fusion", "of", "traditional", "is", "an", "iconic", "landmark", "and", "visited", "by", "a", "large", "number", "of", "devotees", "every", "day.", "Also", "Read:", "Huawei", "launches", "5G", "phone", "with", "a", "foldable", "screen" ] ] ]
[ [ "en" ] ]
[ "mono", "mono", "mono", "mono" ]
[ [ "About", "The", "Author", "Rachel", "Andrew", "is", "not", "only", "Editor", "in", "Chief", "of", "Smashing", "Magazine,", "but", "also", "a", "web", "developer,", "writer", "and", "speaker.", "She", "is", "the", "author", "of", "a", "number", "of", "books,", "including", "…", "More", "about", "Rachel", "Andrew", "…", "CSS", "Lists,", "Markers,", "And", "Counters", "Smashing", "Newsletter", "Every", "week,", "we", "send", "out", "useful", "front-end", "&", "UX", "techniques.", "Subscribe", "and", "get", "the", "Smart", "PDF", "delivered", "to", "your", "inbox.", "Your", "(smashing)", "email", "Subscribe", "→", "There", "is", "more", "to", "styling", "lists", "in", "CSS", "than", "you", "might", "think.", "In", "this", "article,", "Rachel", "starts", "by", "looking", "at", "lists", "in", "CSS,", "and", "moving", "onto", "some", "interesting", "features", "defined", "in", "the", "CSS", "Lists", "specification", "—", "markers", "and", "counters.", "Lists", "in", "CSS", "have", "particular", "properties", "which", "give", "us", "the", "standard", "list", "styling", "we", "expect.", "An", "unordered", "list", "gains", "a", "list", "bullet,", "of", "the", "type", "disc,", "and", "ordered", "lists", "are", "numbered.", "My", "interest", "in", "exploring", "lists", "in", "more", "detail", "came", "from", "some", "work", "I", "did", "to", "document", "the", "::marker", "pseudo-element", "for", "MDN.", "This", "pseudo-element", "ships", "in", "Firefox", "68", "and", "is", "being", "released", "today.", "With", "the", "::marker", "pseudo", "element", "available", "to", "us,", "we", "can", "start", "to", "do", "some", "interesting", "things", "with", "lists,", "and", "in", "this", "article,", "I’ll", "explain", "more.", "Deconstructing", "A", "List", "You", "may", "not", "have", "thought", "much", "about", "lists,", "although", "we", "use", "them", "frequently", "in", "our", "markup.", "Many", "things", "can", "be", "marked", "up", "quite", "logically", "as", "a", "list.", "While", "step-by-step", "instructions", "or", "ranked", "elements", "may", "naturally", "be", "described", "by", "an", "ordered", "list", "<ol>,", "many", "things", "in", "a", "design", "can", "be", "described", "using", "an", "unordered", "list", "<ul>.", "A", "very", "common", "usage", "of", "the", "element,", "for", "example,", "is", "to", "mark", "up", "navigation,", "as", "it", "is", "a", "list", "of", "destinations", "on", "the", "site.", "For", "our", "exploration,", "let’s", "start", "by", "finding", "out", "exactly", "what", "a", "list", "is", "in", "CSS.", "As", "with", "many", "things", "in", "CSS,", "lists", "have", "some", "initial", "values", "applied", "to", "them.", "These", "values", "make", "them", "look", "like", "a", "list.", "These", "special", "values", "begin", "with", "the", "information", "that", "a", "list", "item", "has", "the", "display", "property", "with", "a", "value", "of", "list-item.", "This", "creates", "a", "block-level", "box,", "with", "an", "additional", "marker", "box.", "The", "marker", "box", "is", "where", "the", "list", "bullet", "or", "number", "is", "added.", "Lists", "were", "defined", "early", "on", "in", "CSS,", "and", "much", "of", "the", "definition", "of", "lists", "as", "we", "use", "them", "today", "is", "from", "CSS2.", "The", "CSS2", "specification", "describes", "a", "list", "follows:", "“An", "element", "with", "display:", "list-item", "generates", "a", "principal", "block", "box", "for", "the", "element’s", "content", "and,", "depending", "on", "the", "values", "of", "list-style-type", "and", "list-style-image,", "possibly", "also", "a", "as", "a", "visual", "indication", "that", "the", "element", "is", "a", "list", "item.”", "The", "principal", "block", "box", "is", "the", "main", "box", "of", "the", "element", "and", "contains", "all", "of", "the", "children", "as", "a", "list", "item", "can", "contain", "other", "markup.", "The", "marker", "box", "is", "then", "placed", "in", "respect", "to", "this", "principal", "box.", "The", "specification", "goes", "on", "to", "detail", "the", "fact", "that", "any", "background", "color", "will", "be", "only", "behind", "this", "principal", "box,", "and", "not", "the", "marker.", "Also", "that", "the", "marker", "can", "be", "set", "to", "one", "of", "a", "range", "of", "pre-defined", "values:", "disc", "square", "decimal", "decimal-leading-zero", "upper-roman", "lower-alpha", "upper-alpha", "none", "inherit", "The", "Level", "3", "display", "specification", "defines", "display:", "list-item", "along", "with", "the", "other", "possible", "values", "for", "the", "display", "property.", "It", "refers", "back", "to", "CSS", "2.1", "—", "as", "do", "many", "CSS", "properties", "and", "values", "which", "come", "from", "CSS2", "—", "but", "describes", "the", "list-item", "keyword", "as,", "“causing", "the", "element", "to", "generate", "a", "::marker", "pseudo-element”.", "The", "Level", "3", "specification", "also", "introduces", "the", "ability", "to", "create", "an", "inline", "list", "item", "with", "the", "two", "value", "syntax", "being", "used", "display:", "inline", "list-item.", "This", "is", "as", "yet", "unimplemented", "by", "browsers.", "Creating", "Marker", "Boxes", "On", "Non-List", "Items", "As", "with", "other", "values", "of", "display,", "it", "is", "perfectly", "valid", "to", "give", "any", "HTML", "element", "a", "display", "type", "of", "list-item", "(should", "you", "wish", "to", "generate", "a", "::marker", "pseudo-element", "on", "the", "item).", "This", "will", "not", "cause", "the", "element", "to", "become", "a", "list", "item", "semantically,", "but", "instead", "it", "will", "only", "visually", "display", "as", "a", "list", "item,", "and", "therefore", "be", "able", "to", "have", "a", "::marker.", "When", "we", "discuss", "the", "::marker", "pseudo-element", "below,", "you", "will", "discover", "some", "cases", "where", "giving", "other", "elements", "display:", "list-item", "can", "be", "useful.", "The", "CSS", "Lists", "Level", "3", "Specification:", "::marker", "And", "Counters", "The", "display", "specification", "expands", "and", "clarifies", "the", "definition", "of", "lists", "that", "we", "find", "in", "CSS2,", "however,", "there", "is", "also", "a", "specification", "which", "defines", "list", "behavior", "in", "detail:", "the", "CSS", "Lists", "Specification", "Level", "3.", "As", "the", "basic", "behavior", "of", "list", "items", "is", "defined", "in", "display" ], [ ",", "this", "specification", "details", "the", "marker", "box", "generated", "when", "something", "has", "display:", "list-item", "along", "with", "the", "counters", "which", "are", "used", "by", "default", "whenever", "you", "create", "an", "ordered", "list.", "There", "is", "some", "potentially", "useful", "functionality", "accessed", "via", "these", "features.", "The", "::marker", "Pseudo-Element", "The", "::marker", "pseudo-element", "allows", "you", "to", "target", "the", "list", "marker", "—", "separately", "from", "the", "content", "of", "the", "list", "item.", "This", "was", "not", "possible", "in", "previous", "versions", "of", "CSS,", "therefore,", "if", "you", "changed", "the", "color", "or", "font", "size", "of", "the", "ul", "or", "li,", "this", "would", "also", "change", "the", "color", "and", "font", "size", "of", "the", "markers.", "In", "order", "to", "do", "something", "as", "seemingly", "simple", "as", "having", "different", "color", "list", "bullets", "than", "text,", "would", "involve", "either", "wrapping", "the", "content", "of", "the", "list", "item", "in", "a", "span", "(or", "using", "an", "image", "for", "the", "marker).", "ul", "{", "color:", "#00b7a8;", "}", "ul", "span", "{", "color", "#333;", "}", "With", "the", "::marker", "pseudo", "element,", "the", "simplest", "thing", "you", "might", "want", "to", "try", "is", "having", "a", "different", "bullet", "to", "text", "color,", "which", "means", "that", "instead", "of", "the", "code", "in", "the", "example", "above", "you", "can", "use:", "ul", "{", "color:", "#333;", "}", "ul", "::marker", "{", "color:", "#00b7a8;", "}", "You", "might", "also", "want", "to", "use", "a", "different", "size", "and", "font-family", "for", "the", "numbering", "on", "an", "ordered", "ol", "::marker", "{", "font-size:", "200%;", "color:", "#00b7a8;", "Sans", "cursive,", "sans-serif;", "}", "You", "can", "see", "all", "of", "these", "in", "a", "supporting", "browser", "by", "using", "my", "CodePen", "example:", "You", "could", "use", "the", "::marker", "pseudo-element", "items.", "In", "the", "code", "below,", "I", "have", "set", "a", "heading", "to", "display:", "list-item.", "This", "gives", "it", "a", "bullet", "and", "therefore", "a", "::marker", "box", "to", "target.", "I", "have", "changed", "the", "bullet", "to", "use", "an", "emoji:", "h1", "{", "display:", "}", "h1::marker", "{", "content:", "\"🐱\";", "}", "In", "Firefox,", "you", "can", "see", "the", "emoji", "used", "as", "a", "marker.", "See", "the", "Pen", "[Heading", "and", "marker](https://codepen.io/rachelandrew/pen/wLyyMG)", "by", "Rachel", "Andrew.", "See", "the", "Pen", "Heading", "and", "marker", "by", "Rachel", "Andrew.", "In", "the", "above", "example,", "I", "have", "used", "generated", "content", "in", "the", "rules", "for", "the", "marker.", "Only", "a", "small", "subset", "of", "CSS", "properties", "is", "available", "for", "use", "on", "::marker.", "These", "include", "font", "properties", "and", "color,", "however,", "they", "also", "include", "the", "content", "property,", "for", "including", "generated", "content.", "The", "addition", "of", "content", "as", "an", "allowed", "property", "for", "::marker", "is", "recent,", "however,", "it", "is", "included", "in", "the", "Firefox", "implementation.", "The", "inclusion", "means", "that", "you", "can", "do", "things", "like", "include", "a", "string", "of", "text", "in", "a", "::marker.", "It", "also", "raises", "additional", "possibilities", "for", "formatting", "of", "markers", "when", "you", "combine", "the", "use", "of", "counters", "with", "::marker.", "Browser", "Support", "And", "Fallbacks", "For", "browsers", "that", "do", "not", "support", "the", "::marker", "pseudo-element,", "the", "fallback", "is", "the", "regular", "marker", "that", "would", "have", "been", "displayed", "anyway.", "Unfortunately,", "we", "can’t", "currently", "use", "Feature", "Queries", "to", "detect", "support", "for", "selectors", "such", "as", "this", "pseudo-element", "right", "now,", "although", "there", "has", "been", "an", "issue", "raised", "about", "adding", "this", "to", "the", "specification.", "This", "means", "that", "you", "can’t", "fork", "your", "code", "to", "do", "one", "thing", "when", "you", "have", "support", "and", "something", "else", "if", "you", "do", "not.", "In", "most", "cases,", "falling", "back", "to", "the", "regular", "marker", "will", "be", "a", "reasonable", "solution.", "Counters", "Ordered", "lists", "have", "list", "numbering", "—", "something", "which", "is", "achieved", "by", "way", "of", "a", "CSS", "Counter.", "The", "CSS", "Lists", "specification", "therefore", "also", "describes", "these", "counters.", "We", "can", "access", "and", "create", "counters", "ourselves", "which,", "combined", "with", "the", "::marker", "pseudo-element", "can", "give", "us", "some", "useful", "functionality.", "These", "counters", "can", "also", "be", "used", "in", "::marker", ")", "content.", "If", "I", "have", "a", "numbered", "list", "of", "steps", "(and", "I", "would", "like", "to", "write", "out", "“Step", "1”,", "“Step", "2”,", "and", "so", "on),", "I", "can", "do", "this", "by", "using", "generated", "content", "in", "my", "marker", "and", "appending", "the", "list-item", "counter,", "this", "represents", "the", "built-in", "counter:", "{", "\"Step", "\"", "\":", "\";", "}", "In", "Firefox,", "you", "will", "see", "the", "counter", "prefixed", "with", "the", "word", "“Step”.", "See", "the", "Pen", "[Counters", "and", "marker](https://codepen.io/rachelandrew/pen/BgRaoz)", "by", "Rachel", "Andrew.", "See", "the", "Pen", "Counters", "and", "marker", "by", "Rachel", "Andrew.", "Nested", "Counters", "If", "you", "have", "nested", "lists,", "a", "common", "way", "to", "number", "them", "is", "to", "have", "the", "top-level", "item", "a", "whole", "number,", "(1),", "then", "child", "items", "as", "(1.1,", "1.2)", "and", "their", "children", "(1.1.1,", "1.1.2),", "and", "so", "on.", "You", "can", "achieve" ], [ "this", "by", "using", "more", "functionality", "of", "counters.", "When", "you", "nest", "HTML", "lists,", "you", "will", "end", "up", "with", "multiple", "counters", "of", "the", "same", "name", "—", "nested", "inside", "each", "other.", "The", "nest", "of", "counters", "can", "be", "accessed", "using", "the", "counters()", "function.", "In", "the", "code", "below,", "I", "am", "using", "counters()", "to", "format", "my", "list", "markers", "as", "described", "above.", "The", "first", "argument", "for", "counters()", "is", "the", "name", "of", "the", "counter", "to", "use.", "I’m", "using", "the", "built-in", "list-item", "counter.", "The", "second", "argument", "is", "a", "string", "—", "this", "is", "what", "will", "be", "concatenated", "between", "output", "counters", "(I’m", "using", "a.", ").", "Finally,", "I", "add", "a", ":", "outside", "of", "the", "counter", "function", "but", "inside", "the", "value", "of", "content", "so", "that", "my", "counter", "output", "will", "be", "separated", "from", "the", "content", "by", "a", "colon.", "::marker", "{", "content:", "':';", "#00b7a8;", "bold;", "}", "This", "gives", "me", "the", "output", "as", "in", "the", "image.", "If", "you", "are", "using", "a", "browser", "which", "supports", "::marker", "and", "counters,", "then", "you", "can", "see", "it", "working", "in", "the", "CodePen", "example", "—", "try", "changing", "the", "string", "from", "a.", "to", "something", "else", "to", "see", "how", "that", "changes", "the", "output.", "In", "Firefox,", "you", "will", "see", "nested", "list", "numbering", "separated", "by", "dots.", "See", "the", "Pen", "[Nested", "counters](https://codepen.io/rachelandrew/pen/VJbwxL)", "by", "Rachel", "Andrew.", "See", "the", "Pen", "Nested", "counters", "by", "Rachel", "Andrew.", "What’s", "The", "Difference", "Between", "counter()", "And", "counters()?", "The", "counter()", "function", "we", "used", "in", "the", "first", "example", "to", "write", "out", "our", "steps", "uses", "the", "innermost", "counter", "only.", "Therefore,", "in", "the", "situation", "where", "you", "have", "a", "set", "of", "nested", "lists,", "you", "will", "write", "out", "the", "counter", "which", "related", "to", "the", "level", "you", "are", "currently", "on.", "The", "counters()", "function", "essentially", "writes", "out", "that", "whole", "branch", "and", "gives", "you", "the", "opportunity", "to", "concatenate", "a", "string", "between", "counters", "in", "the", "branch.", "So", "if", "you", "have", "a", "list", "item", "with", "a", "counter", "of", "2", "(which", "is", "part", "of", "a", "list", "nested", "inside", "a", "list", "item", "with", "a", "counter", "of", "4", "),", "then", "the", "branch", "contains:", "4", "2", "You", "can", "output", "this", "as", "4.2", "in", "the", "marker", "by", "using:", "{", "counters(list-item,'.');", "}", "Counters", "On", "Other", "Elements", "Counters", "can", "be", "used", "on", "things", "which", "are", "not", "lists", "—", "either", "to", "output", "a", "marker", "—", "in", "which", "case", "the", "element", "will", "need", "to", "have", "display:", "list-item", "—", "or", "to", "output", "regular", "generated", "content.", "Counters", "are", "used", "extensively", "in", "book", "production,", "in", "order", "to", "enable", "chapter", "and", "figure", "numbering", "amount", "other", "things.", "There", "is", "no", "reason", "not", "to", "take", "a", "similar", "approach", "on", "the", "web,", "in", "particular", "for", "longer", "articles.", "The", "CSS", "properties", "defined", "in", "the", "CSS", "Lists", "specification", "which", "deal", "with", "these", "counters", "are:", "counter-set", "counter-reset", "counter-increment", "To", "see", "how", "these", "work", "outside", "of", "lists", "we", "can", "look", "at", "an", "example", "of", "using", "counters", "to", "number", "the", "headings", "in", "a", "document.", "The", "first", "thing", "I", "need", "to", "do", "is", "to", "create", "a", "counter", "for", "headers", "on", "the", "body", "element", "—", "ready", "for", "use.", "I’m", "using", "the", "counter-reset", "property", "to", "do", "this.", "The", "counter-reset", "and", "counter-set", "properties", "are", "very", "similar.", "The", "counter-reset", "property", "will", "create", "a", "new", "counter", "if", "a", "counter", "of", "the", "specified", "name", "does", "not", "already", "exist,", "but", "will", "also", "create", "nested", "counters", "as", "described", "above", "if", "a", "counter", "of", "that", "name", "does", "exist.", "The", "counter-set", "property", "will", "only", "create", "a", "new", "counter", "if", "there", "is", "no", "counter", "of", "that", "name.", "For", "this,", "use", "either", "property", "would", "work", "just", "fine,", "however,", "counter-set", "does", "not", "have", "as", "good", "browser", "support", "as", "counter-reset,", "so", "I", "am", "taking", "the", "practical", "route:", "body", "{", "counter-reset:", "heading-counter;", "}", "Now", "that", "I", "have", "a", "counter,", "I", "can", "then", "use", "the", "counter-increment", "property", "on", "the", "selector", "for", "the", "headers;", "this", "should", "increment", "the", "counter", "every", "time", "the", "selector", "matches.", "h2", "{", "counter-increment:", "heading-counter;", "}", "To", "see", "the", "value,", "I", "need", "to", "output", "it", "to", "the", "document.", "I", "can", "do", "this", "by", "using", "Generated", "Content", "and", "adding", "it", "before", "the", "heading", "as", "shown", "in", "the", "following", "CodePen", "example:", "h2::before", "{", "content:", "\":", "\";", "color:", "#00b7a8;", "bold;", "}", "See", "the", "Pen", "[Headings", "and", "counters](https://codepen.io/rachelandrew/pen/gNGjxq)", "by", "Rachel", "Andrew.", "See", "the", "Pen", "Headings", "and", "counters", "by", "Rachel", "Andrew.", "Alternatively,", "I", "could", "make", "the", "h2", "element", "into", "a", "list-item", "and", "then", "use", "::marker,", "as", "demonstrated", "below.", "As", "already", "detailed,", "using", "the", "::marker", "element", "has", "limited", "browser", "support.", "In", "Firefox,", "you", "should", "see", "the", "counter", "used", "as", "the", "marker", "for", "the", "heading,", "while" ], [ "other", "browsers", "will", "show", "the", "default", "bullet.", "h2", "{", "}", "{", "\":", "\";", "color:", "#00b7a8;", "bold;", "}", "Counters", "On", "Form", "Elements", "There", "is", "also", "a", "little", "bit", "of", "interactivity", "that", "you", "can", "achieve", "using", "CSS", "Counters", "—", "something", "that", "you", "might", "think", "you", "need", "JavaScript", "to", "do.", "I", "have", "a", "form", "which", "has", "a", "number", "of", "required", "fields.", "The", "required", "status", "can", "be", "selected", "in", "CSS", "with", "a", ":required", "pseudo-class,", "and", "the", "fact", "that", "a", "field", "has", "not", "been", "completed", "can", "be", "detected", "by", "way", "of", "the", ":invalid", "pseudo", "class.", "This", "means", "that", "we", "can", "check", "for", "fields", "which", "are", "both", "required", "and", "invalid,", "and", "increment", "a", "counter.", "Then", "output", "that", "as", "generated", "content.", "How", "useful", "this", "is", "in", "reality", "is", "debatable", "—", "given", "that", "we", "can’t", "really", "do", "anything", "with", "that", "value", "other", "than", "stick", "it", "into", "generated", "content.", "There", "are", "also", "concerns", "with", "regard", "to", "generated", "content", "being", "inaccessible", "to", "certain", "screen", "readers,", "therefore", "any", "usage", "that", "is", "more", "than", "decorative", "would", "need", "to", "ensure", "other", "ways", "of", "accessing", "that", "information.", "Read,", "“Accessibility", "Support", "For", "CSS", "Generated", "Content”", "and", "the", "more", "recent", "information,", "“CSS", "Content", "Property", "Screen", "Reader", "Compatibility”", "for", "more", "details", "regarding", "accessibility", "and", "generated", "content.", "However,", "it", "demonstrates", "that", "counters", "can", "achieve", "more", "useful", "things", "than", "simply", "numbering", "lists.", "It", "may", "be", "that", "one", "day", "that", "knowledge", "does", "come", "in", "handy", "to", "solve", "some", "problem", "you", "are", "working", "on.", "Find", "Out", "More", "This", "article", "ended", "up", "rather", "a", "long", "way", "from", "styling", "lists,", "despite", "the", "fact", "that", "everything", "I", "have", "described", "is", "found", "in", "the", "CSS", "Lists", "specification.", "You", "can", "find", "more", "information", "about", "the", "things", "described", "in", "the", "links", "below.", "If", "you", "have", "found", "an", "interesting", "use", "for", "CSS", "Counters,", "or", "can", "think", "of", "things", "you", "could", "use", "::marker", "for,", "add", "a", "note", "in", "the", "comments." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "it", "it", "it", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "pt", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "ro", "ro", "ro", "ro", "ro", "ro", "ro", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "pt", "pt", "pt", "pt", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "de", "de", "fr", "fr", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "pt", "pt", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "ro", "ro", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ], [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "de", "en", "ro", "ro", "en", "de", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "About", "The", "Author", "Rachel", "Andrew", "is", "not", "only", "Editor", "in", "Chief", "of", "Smashing", "Magazine,", "but", "also", "a", "web", "developer,", "writer", "and", "speaker.", "She", "is", "the", "author", "of", "a", "number", "of", "books,", "including", "…", "More", "about", "Rachel", "Andrew", "…", "CSS", "Lists,", "Markers,", "And", "Counters", "Smashing", "Newsletter", "Every", "week,", "we", "send", "out", "useful", "front-end", "&", "UX", "techniques.", "Subscribe", "and", "get", "the", "Smart", "PDF", "delivered", "to", "your", "inbox.", "Your", "(smashing)", "email", "Subscribe", "→", "There", "is", "more", "to", "styling", "lists", "in", "CSS", "than", "you", "might", "think.", "In", "this", "article,", "Rachel", "starts", "by", "looking", "at", "lists", "in", "CSS,", "and", "moving", "onto", "some", "interesting", "features", "defined", "in", "the", "CSS", "Lists", "specification", "—", "markers", "and", "counters.", "Lists", "in", "CSS", "have", "particular", "properties", "which", "give", "us", "the", "standard", "list", "styling", "we", "expect.", "An", "unordered", "list", "gains", "a", "list", "bullet,", "of", "the", "type", "disc,", "and", "ordered", "lists", "are", "numbered.", "My", "interest", "in", "exploring", "lists", "in", "more", "detail", "came", "from", "some", "work", "I", "did", "to", "document", "the", "::marker", "pseudo-element", "for", "MDN.", "This", "pseudo-element", "ships", "in", "Firefox", "68", "and", "is", "being", "released", "today.", "With", "the", "::marker", "pseudo", "element", "available", "to", "us,", "we", "can", "start", "to", "do", "some", "interesting", "things", "with", "lists,", "and", "in", "this", "article,", "I’ll", "explain", "more.", "Deconstructing", "A", "List", "You", "may", "not", "have", "thought", "much", "about", "lists,", "although", "we", "use", "them", "frequently", "in", "our", "markup.", "Many", "things", "can", "be", "marked", "up", "quite", "logically", "as", "a", "list.", "While", "step-by-step", "instructions", "or", "ranked", "elements", "may", "naturally", "be", "described", "by", "an", "ordered", "list", "<ol>,", "many", "things", "in", "a", "design", "can", "be", "described", "using", "an", "unordered", "list", "<ul>.", "A", "very", "common", "usage", "of", "the", "element,", "for", "example,", "is", "to", "mark", "up", "navigation,", "as", "it", "is", "a", "list", "of", "destinations", "on", "the", "site.", "For", "our", "exploration,", "let’s", "start", "by", "finding", "out", "exactly", "what", "a", "list", "is", "in", "CSS.", "As", "with", "many", "things", "in", "CSS,", "lists", "have", "some", "initial", "values", "applied", "to", "them.", "These", "values", "make", "them", "look", "like", "a", "list.", "These", "special", "values", "begin", "with", "the", "information", "that", "a", "list", "item", "has", "the", "display", "property", "with", "a", "value", "of", "list-item.", "This", "creates", "a", "block-level", "box,", "with", "an", "additional", "marker", "box.", "The", "marker", "box", "is", "where", "the", "list", "bullet", "or", "number", "is", "added.", "Lists", "were", "defined", "early", "on", "in", "CSS,", "and", "much", "of", "the", "definition", "of", "lists", "as", "we", "use", "them", "today", "is", "from", "CSS2.", "The", "CSS2", "specification", "describes", "a", "list", "follows:", "“An", "element", "with", "display:", "list-item", "generates", "a", "principal", "block", "box", "for", "the", "element’s", "content", "and,", "depending", "on", "the", "values", "of", "list-style-type", "and", "list-style-image,", "possibly", "also", "a", "as", "a", "visual", "indication", "that", "the", "element", "is", "a", "list", "item.”", "The", "principal", "block", "box", "is", "the", "main", "box", "of", "the", "element", "and", "contains", "all", "of", "the", "children", "as", "a", "list", "item", "can", "contain", "other", "markup.", "The", "marker", "box", "is", "then", "placed", "in", "respect", "to", "this", "principal", "box.", "The", "specification", "goes", "on", "to", "detail", "the", "fact", "that", "any", "background", "color", "will", "be", "only", "behind", "this", "principal", "box,", "and", "not", "the", "marker.", "Also", "that", "the", "marker", "can", "be", "set", "to", "one", "of", "a", "range", "of", "pre-defined", "values:", "disc", "square", "decimal", "decimal-leading-zero", "upper-roman", "lower-alpha", "upper-alpha", "none", "inherit", "The", "Level", "3", "display", "specification", "defines", "display:", "list-item", "along", "with", "the", "other", "possible", "values", "for", "the", "display", "property.", "It", "refers", "back", "to", "CSS", "2.1", "—", "as", "do", "many", "CSS", "properties", "and", "values", "which", "come", "from", "CSS2", "—", "but", "describes", "the", "list-item", "keyword", "as,", "“causing", "the", "element", "to", "generate", "a", "::marker", "pseudo-element”.", "The", "Level", "3", "specification", "also", "introduces", "the", "ability", "to", "create", "an", "inline", "list", "item", "with", "the", "two", "value", "syntax", "being", "used", "display:", "inline", "list-item.", "This", "is", "as", "yet", "unimplemented", "by", "browsers.", "Creating", "Marker", "Boxes", "On", "Non-List", "Items", "As", "with", "other", "values", "of", "display,", "it", "is", "perfectly", "valid", "to", "give", "any", "HTML", "element", "a", "display", "type", "of", "list-item", "(should", "you", "wish", "to", "generate", "a", "::marker", "pseudo-element", "on", "the", "item).", "This", "will", "not", "cause", "the", "element", "to", "become", "a", "list", "item", "semantically,", "but", "instead", "it", "will", "only", "visually", "display", "as", "a", "list", "item,", "and", "therefore", "be", "able", "to", "have", "a", "::marker.", "When", "we", "discuss", "the", "::marker", "pseudo-element", "below,", "you", "will", "discover", "some", "cases", "where", "giving", "other", "elements", "display:", "list-item", "can", "be", "useful.", "The", "CSS", "Lists", "Level", "3", "Specification:", "::marker", "And", "Counters", "The", "display", "specification", "expands", "and", "clarifies", "the", "definition", "of", "lists", "that", "we", "find", "in", "CSS2,", "however,", "there", "is", "also", "a", "specification", "which", "defines", "list", "behavior", "in", "detail:", "the", "CSS", "Lists", "Specification", "Level", "3.", "As", "the", "basic", "behavior", "of", "list", "items", "is", "defined", "in", "display" ] ], [ [ ",", "this", "specification", "details", "the", "marker", "box", "generated", "when", "something", "has", "display:", "list-item", "along", "with", "the", "counters", "which", "are", "used", "by", "default", "whenever", "you", "create", "an", "ordered", "list.", "There", "is", "some", "potentially", "useful", "functionality", "accessed", "via", "these", "features.", "The", "::marker", "Pseudo-Element", "The", "::marker", "pseudo-element", "allows", "you", "to", "target", "the", "list", "marker", "—", "separately", "from", "the", "content", "of", "the", "list", "item.", "This", "was", "not", "possible", "in", "previous", "versions", "of", "CSS,", "therefore,", "if", "you", "changed", "the", "color", "or", "font", "size", "of", "the", "ul", "or", "li,", "this", "would", "also", "change", "the", "color", "and", "font", "size", "of", "the", "markers.", "In", "order", "to", "do", "something", "as", "seemingly", "simple", "as", "having", "different", "color", "list", "bullets", "than", "text,", "would", "involve", "either", "wrapping", "the", "content", "of", "the", "list", "item", "in", "a", "span", "(or", "using", "an", "image", "for", "the", "marker).", "ul", "{", "color:", "#00b7a8;", "}", "ul", "span", "{", "color", "#333;", "}", "With", "the", "::marker", "pseudo", "element,", "the", "simplest", "thing", "you", "might", "want", "to", "try", "is", "having", "a", "different", "bullet", "to", "text", "color,", "which", "means", "that", "instead", "of", "the", "code", "in", "the", "example", "above", "you", "can", "use:" ], [ "color:", "#00b7a8;", "}", "You", "might", "also", "want", "to", "use", "a", "different", "size", "and", "font-family", "for", "the", "numbering", "on", "an", "ordered", "ol", "::marker", "{", "font-size:", "200%;", "color:", "#00b7a8;", "Sans", "cursive,", "sans-serif;", "}", "You", "can", "see", "all", "of", "these", "in", "a", "supporting", "browser", "by", "using", "my", "CodePen", "example:", "You", "could", "use", "the", "::marker", "pseudo-element", "items.", "In", "the", "code", "below,", "I", "have", "set", "a", "heading", "to", "display:", "list-item.", "This", "gives", "it", "a", "bullet", "and", "therefore", "a", "::marker", "box", "to", "target.", "I", "have", "changed", "the", "bullet", "to", "use", "an", "emoji:", "h1", "{", "display:", "}", "h1::marker", "{", "content:", "\"🐱\";", "}", "In", "Firefox,", "you", "can", "see", "the", "emoji", "used", "as", "a", "marker.", "See", "the", "Pen", "[Heading", "and", "marker](https://codepen.io/rachelandrew/pen/wLyyMG)", "by", "Rachel", "Andrew.", "See", "the", "Pen", "Heading", "and", "marker", "by", "Rachel", "Andrew.", "In", "the", "above", "example,", "I", "have", "used", "generated", "content", "in", "the", "rules", "for", "the", "marker.", "Only", "a", "small", "subset", "of", "CSS", "properties", "is", "available", "for", "use", "on", "::marker.", "These", "include", "font", "properties", "and", "color,", "however,", "they", "also", "include", "the", "content", "property,", "for", "including", "generated", "content.", "The", "addition", "of", "content", "as", "an", "allowed", "property", "for", "::marker", "is", "recent,", "however,", "it", "is", "included", "in", "the", "Firefox", "implementation.", "The", "inclusion", "means", "that", "you", "can", "do", "things", "like", "include", "a", "string", "of", "text", "in", "a", "::marker.", "It", "also", "raises", "additional", "possibilities", "for", "formatting", "of", "markers", "when", "you", "combine", "the", "use", "of", "counters", "with", "::marker.", "Browser", "Support", "And", "Fallbacks", "For", "browsers", "that", "do", "not", "support", "the", "::marker", "pseudo-element,", "the", "fallback", "is", "the", "regular", "marker", "that", "would", "have", "been", "displayed", "anyway.", "Unfortunately,", "we", "can’t", "currently", "use", "Feature", "Queries", "to", "detect", "support", "for", "selectors", "such", "as", "this", "pseudo-element", "right", "now,", "although", "there", "has", "been", "an", "issue", "raised", "about", "adding", "this", "to", "the", "specification.", "This", "means", "that", "you", "can’t", "fork", "your", "code", "to", "do", "one", "thing", "when", "you", "have", "support", "and", "something", "else", "if", "you", "do", "not.", "In", "most", "cases,", "falling", "back", "to", "the", "regular", "marker", "will", "be", "a", "reasonable", "solution.", "Counters", "Ordered", "lists", "have", "list", "numbering", "—", "something", "which", "is", "achieved", "by", "way", "of", "a", "CSS", "Counter.", "The", "CSS", "Lists", "specification", "therefore", "also", "describes", "these", "counters.", "We", "can", "access", "and", "create", "counters", "ourselves", "which,", "combined", "with", "the", "::marker", "pseudo-element", "can", "give", "us", "some", "useful", "functionality.", "These", "counters", "can", "also", "be", "used", "in", "::marker", ")", "content.", "If", "I", "have", "a", "numbered", "list", "of", "steps", "(and", "I", "would", "like", "to", "write", "out", "“Step", "1”,", "“Step", "2”,", "and", "so", "on),", "I", "can", "do", "this", "by", "using", "generated", "content", "in", "my", "marker", "and", "appending", "the", "list-item", "counter,", "this", "represents", "the", "built-in", "counter:", "{", "\"Step", "\"", "\":", "\";", "}", "In", "Firefox,", "you", "will", "see", "the", "counter", "prefixed", "with", "the", "word", "“Step”.", "See", "the", "Pen", "[Counters", "and", "marker](https://codepen.io/rachelandrew/pen/BgRaoz)", "by", "Rachel", "Andrew.", "See", "the", "Pen", "Counters", "and", "marker", "by", "Rachel", "Andrew.", "Nested", "Counters", "If", "you", "have", "nested", "lists,", "a", "common", "way", "to", "number", "them", "is", "to", "have", "the", "top-level", "item", "a", "whole", "number,", "(1),", "then", "child", "items", "as", "(1.1,", "1.2)", "and", "their", "children", "(1.1.1,", "1.1.2),", "and", "so", "on.", "You", "can", "achieve" ] ], [ [ "this", "by", "using", "more", "functionality", "of", "counters.", "When", "you", "nest", "HTML", "lists,", "you", "will", "end", "up", "with", "multiple", "counters", "of", "the", "same", "name", "—", "nested", "inside", "each", "other.", "The", "nest", "of", "counters", "can", "be", "accessed", "using", "the", "counters()", "function.", "In", "the", "code", "below,", "I", "am", "using", "counters()", "to", "format", "my", "list", "markers", "as", "described", "above.", "The", "first", "argument", "for", "counters()", "is", "the", "name", "of", "the", "counter", "to", "use.", "I’m", "using", "the", "built-in", "list-item", "counter.", "The", "second", "argument", "is", "a", "string", "—", "this", "is", "what", "will", "be", "concatenated", "between", "output", "counters", "(I’m", "using", "a.", ").", "Finally,", "I", "add", "a", ":", "outside", "of", "the", "counter", "function", "but", "inside", "the", "value", "of", "content", "so", "that", "my", "counter", "output", "will", "be", "separated", "from", "the", "content", "by", "a", "colon.", "::marker", "{", "content:", "':';", "#00b7a8;", "bold;", "}", "This", "gives", "me", "the", "output", "as", "in", "the", "image.", "If", "you", "are", "using", "a", "browser", "which", "supports", "::marker", "and", "counters,", "then", "you", "can", "see", "it", "working", "in", "the", "CodePen", "example", "—", "try", "changing", "the", "string", "from", "a.", "to", "something", "else", "to", "see", "how", "that", "changes", "the", "output.", "In", "Firefox,", "you", "will", "see", "nested", "list", "numbering", "separated", "by", "dots.", "See", "the", "Pen", "[Nested", "counters](https://codepen.io/rachelandrew/pen/VJbwxL)", "by", "Rachel", "Andrew.", "See", "the", "Pen", "Nested", "counters", "by", "Rachel", "Andrew.", "What’s", "The", "Difference", "Between", "counter()", "And", "counters()?", "The", "counter()", "function", "we", "used", "in", "the", "first", "example", "to", "write", "out", "our", "steps", "uses", "the", "innermost", "counter", "only.", "Therefore,", "in", "the", "situation", "where", "you", "have", "a", "set", "of", "nested", "lists,", "you", "will", "write", "out", "the", "counter", "which", "related", "to", "the", "level", "you", "are", "currently", "on.", "The", "counters()", "function", "essentially", "writes", "out", "that", "whole", "branch", "and", "gives", "you", "the", "opportunity", "to", "concatenate", "a", "string", "between", "counters", "in", "the", "branch.", "So", "if", "you", "have", "a", "list", "item", "with", "a", "counter", "of", "2", "(which", "is", "part", "of", "a", "list", "nested", "inside", "a", "list", "item", "with", "a", "counter", "of", "4", "),", "then", "the", "branch", "contains:", "4", "2", "You", "can", "output", "this", "as", "4.2", "in", "the", "marker", "by", "using:", "{", "counters(list-item,'.');", "}", "Counters", "On", "Other", "Elements", "Counters", "can", "be", "used", "on", "things", "which", "are", "not", "lists", "—", "either", "to", "output", "a", "marker", "—", "in", "which", "case", "the", "element", "will", "need", "to", "have", "display:", "list-item", "—", "or", "to", "output", "regular", "generated", "content.", "Counters", "are", "used", "extensively", "in", "book", "production,", "in", "order", "to", "enable", "chapter", "and", "figure", "numbering", "amount", "other", "things.", "There", "is", "no", "reason", "not", "to", "take", "a", "similar", "approach", "on", "the", "web,", "in", "particular", "for", "longer", "articles.", "The", "CSS", "properties", "defined", "in", "the", "CSS", "Lists", "specification", "which", "deal", "with", "these", "counters", "are:", "counter-set", "counter-reset", "counter-increment", "To", "see", "how", "these", "work", "outside", "of", "lists", "we", "can", "look", "at", "an", "example", "of", "using", "counters", "to", "number", "the", "headings", "in", "a", "document.", "The", "first", "thing", "I", "need", "to", "do", "is", "to", "create", "a", "counter", "for", "headers", "on", "the", "body", "element", "—", "ready", "for", "use.", "I’m", "using", "the", "counter-reset", "property", "to", "do", "this.", "The", "counter-reset", "and", "counter-set", "properties", "are", "very", "similar.", "The", "counter-reset", "property", "will", "create", "a", "new", "counter", "if", "a", "counter", "of", "the", "specified", "name", "does", "not", "already", "exist,", "but", "will", "also", "create", "nested", "counters", "as", "described", "above", "if", "a", "counter", "of", "that", "name", "does", "exist.", "The", "counter-set", "property", "will", "only", "create", "a", "new", "counter", "if", "there", "is", "no", "counter", "of", "that", "name.", "For", "this,", "use", "either", "property", "would", "work", "just", "fine,", "however,", "counter-set", "does", "not", "have", "as", "good", "browser", "support", "as", "counter-reset,", "so", "I", "am", "taking", "the", "practical", "route:", "body", "{", "counter-reset:", "heading-counter;", "}", "Now", "that", "I", "have", "a", "counter,", "I", "can", "then", "use", "the", "counter-increment", "property", "on", "the", "selector", "for", "the", "headers;", "this", "should", "increment", "the", "counter", "every", "time", "the", "selector", "matches.", "h2", "{", "counter-increment:", "heading-counter;", "}", "To", "see", "the", "value,", "I", "need", "to", "output", "it", "to", "the", "document.", "I", "can", "do", "this", "by", "using", "Generated", "Content", "and", "adding", "it", "before", "the", "heading", "as", "shown", "in", "the", "following", "CodePen", "example:", "h2::before", "{", "content:", "\":", "\";", "color:", "#00b7a8;", "bold;", "}", "See", "the", "Pen", "[Headings", "and", "counters](https://codepen.io/rachelandrew/pen/gNGjxq)", "by", "Rachel", "Andrew.", "See", "the", "Pen", "Headings", "and", "counters", "by", "Rachel", "Andrew.", "Alternatively,", "I", "could", "make", "the", "h2", "element", "into", "a", "list-item", "and", "then", "use", "::marker,", "as", "demonstrated", "below.", "As", "already", "detailed,", "using", "the", "::marker", "element", "has", "limited", "browser", "support.", "In", "Firefox,", "you", "should", "see", "the", "counter", "used", "as", "the", "marker", "for", "the", "heading,", "while" ] ], [ [ "other", "browsers", "will", "show", "the", "default", "bullet.", "h2", "{", "}", "{", "\":", "\";", "color:", "#00b7a8;", "bold;", "}", "Counters", "On", "Form", "Elements", "There", "is", "also", "a", "little", "bit", "of", "interactivity", "that", "you", "can", "achieve", "using", "CSS", "Counters", "—", "something", "that", "you", "might", "think", "you", "need", "JavaScript", "to", "do.", "I", "have", "a", "form", "which", "has", "a", "number", "of", "required", "fields.", "The", "required", "status", "can", "be", "selected", "in", "CSS", "with", "a", ":required", "pseudo-class,", "and", "the", "fact", "that", "a", "field", "has", "not", "been", "completed", "can", "be", "detected", "by", "way", "of", "the", ":invalid", "pseudo", "class.", "This", "means", "that", "we", "can", "check", "for", "fields", "which", "are", "both", "required", "and", "invalid,", "and", "increment", "a", "counter.", "Then", "output", "that", "as", "generated", "content.", "How", "useful", "this", "is", "in", "reality", "is", "debatable", "—", "given", "that", "we", "can’t", "really", "do", "anything", "with", "that", "value", "other", "than", "stick", "it", "into", "generated", "content.", "There", "are", "also", "concerns", "with", "regard", "to", "generated", "content", "being", "inaccessible", "to", "certain", "screen", "readers,", "therefore", "any", "usage", "that", "is", "more", "than", "decorative", "would", "need", "to", "ensure", "other", "ways", "of", "accessing", "that", "information.", "Read,", "“Accessibility", "Support", "For", "CSS", "Generated", "Content”", "and", "the", "more", "recent", "information,", "“CSS", "Content", "Property", "Screen", "Reader", "Compatibility”", "for", "more", "details", "regarding", "accessibility", "and", "generated", "content.", "However,", "it", "demonstrates", "that", "counters", "can", "achieve", "more", "useful", "things", "than", "simply", "numbering", "lists.", "It", "may", "be", "that", "one", "day", "that", "knowledge", "does", "come", "in", "handy", "to", "solve", "some", "problem", "you", "are", "working", "on.", "Find", "Out", "More", "This", "article", "ended", "up", "rather", "a", "long", "way", "from", "styling", "lists,", "despite", "the", "fact", "that", "everything", "I", "have", "described", "is", "found", "in", "the", "CSS", "Lists", "specification.", "You", "can", "find", "more", "information", "about", "the", "things", "described", "in", "the", "links", "below.", "If", "you", "have", "found", "an", "interesting", "use", "for", "CSS", "Counters,", "or", "can", "think", "of", "things", "you", "could", "use", "::marker", "for,", "add", "a", "note", "in", "the", "comments." ] ] ]
[ [ "en" ], [ "en", "en" ], [ "en" ], [ "en" ] ]
[ "mono" ]
[ [ "PvP", "For", "PvP,", "Bant", "and", "multi’s", "numbers", "are", "a", "useful", "starting", "point.", "However,", "there", "are", "key", "differences", "between", "PvE", "and", "PvP", "to", "consider.", "These", "are", "covered", "in", "the", "following", "subsections,", "broken", "down", "by", "role.", "Damage", "Dealers", "Stat", "Priority", "Critical", "(+0–10%", "depending", "on", "discipline", "and", "preference),", "Alacrity", "Rating", "(≥7.15%", "or", "≥15.41%", "Alacrity,", "depending", "on", "discipline)", "then", "Mastery.", "In", "PvE,", "the", "optimal", "value", "of", "Critical", "Rating", "differs", "by", "discipline", "but", "is", "always", "less", "than", "1,900", "(at", "item", "rating", "248).", "You", "can", "afford", "to", "stack", "more", "Critical", "Rating", "in", "PvP", "than", "you", "would", "in", "PvE.", "In", "PvP,", "the", "magnitude", "and", "frequency", "of", "critical", "hits", "matter", "a", "lot", "more", "than", "in", "PvE.", "In", "PvE,", "where", "boss", "health", "pools", "are", "much", "larger", "and", "time", "to", "kill", "(TTK)", "is", "much", "higher,", "sustained", "damage", "is", "the", "most", "important", "metric.", "For", "PvP,", "it", "is", "important", "to", "grasp", "the", "concept", "of", "burst", "damage—maximising", "in", "windows", "(e.g.,", "during", "a", "4-second", "hard", "stun).", "A", "critical", "hit", "can", "take", "a", "significant", "fraction", "of", "a", "player’s", "health", "pool", "and", "can", "be", "the", "difference", "between", "securing", "a", "kill", "and", "not.", "In", "PvE,", "all", "DPS", "disciplines", "stack", "759", "Accuracy", "(+9.22%", "Accuracy)", "to", "overcome", "operations", "bosses’", "innate", "+10%", "chance", "to", "defend", "against", "all", "four", "attack", "types.", "In", "PvP,", "optimal", "values", "of", "Accuracy", "vary", "by", "discipline.", "If", "most", "of", "your", "damage", "comes", "from", "Force", "or", "tech", "abilities,", "Accuracy", "Rating", "is", "a", "poor", "investment.", "If", "your", "attacks", "are", "primarily", "melee-", "or", "ranged-typed,", "you", "can", "benefit", "from", "at", "least", "+5%", "Accuracy", "to", "overcome", "players’", "innate", "+5%", "Melee", "Parry", "and", "Ranged", "Deflect.", "Ideal", "values", "of", "Alacrity", "Rating", "also", "differ", "by", "discipline.", "The", "most", "important", "thing", "to", "realise", "about", "Alacrity", "is", "that", "the", "global", "cooldown", "is", "rounded", "up", "to", "the", "nearest", "tenth", "of", "a", "second.", "Therefore,", "you", "want", "to", "aim", "for", "values", "of", "Alacrity", "Rating", "that", "correspond", "to", "either", "≥7.15%", "Alacrity", "(a", "1.4s", "GCD)", "or", "≥15.41%", "Alacrity", "(a", "1.3s", "GCD).", "Any", "Alacrity", "Rating", "over", "these", "breakpoints", "is", "wasted.", "See", "our", "article", "Alacrity", "and", "the", "Global", "Cooldown", "for", "more", "information.", "Mastery", "is", "your", "last", "priority.", "It", "increases", "your", "Bonus", "Damage", "and", "Critical", "Chance", "and", "can", "be", "stacked", "once", "you’ve", "met", "the", "optimal", "values", "of", "Critical", "Rating,", "Rating", "(if", "applicable)", "and", "Alacrity", "Rating." ] ]
[ [ "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "co", "co", "co", "co", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en", "en" ] ]
[ [ [ "PvP", "For", "PvP,", "Bant", "and", "multi’s", "numbers", "are", "a", "useful", "starting", "point.", "However,", "there", "are", "key", "differences", "between", "PvE", "and", "PvP", "to", "consider.", "These", "are", "covered", "in", "the", "following", "subsections,", "broken", "down", "by", "role.", "Damage", "Dealers", "Stat", "Priority", "Critical", "(+0–10%", "depending", "on", "discipline", "and", "preference),", "Alacrity", "Rating", "(≥7.15%", "or", "≥15.41%", "Alacrity,", "depending", "on", "discipline)", "then", "Mastery.", "In", "PvE,", "the", "optimal", "value", "of", "Critical", "Rating", "differs", "by", "discipline", "but", "is", "always", "less", "than", "1,900", "(at", "item", "rating", "248).", "You", "can", "afford", "to", "stack", "more", "Critical", "Rating", "in", "PvP", "than", "you", "would", "in", "PvE.", "In", "PvP,", "the", "magnitude", "and", "frequency", "of", "critical", "hits", "matter", "a", "lot", "more", "than", "in", "PvE.", "In", "PvE,", "where", "boss", "health", "pools", "are", "much", "larger", "and", "time", "to", "kill", "(TTK)", "is", "much", "higher,", "sustained", "damage", "is", "the", "most", "important", "metric.", "For", "PvP,", "it", "is", "important", "to", "grasp", "the", "concept", "of", "burst", "damage—maximising", "in", "windows", "(e.g.,", "during", "a", "4-second", "hard", "stun).", "A", "critical", "hit", "can", "take", "a", "significant", "fraction", "of", "a", "player’s", "health", "pool", "and", "can", "be", "the", "difference", "between", "securing", "a", "kill", "and", "not.", "In", "PvE,", "all", "DPS", "disciplines", "stack", "759", "Accuracy", "(+9.22%", "Accuracy)", "to", "overcome", "operations", "bosses’", "innate", "+10%", "chance", "to", "defend", "against", "all", "four", "attack", "types.", "In", "PvP,", "optimal", "values", "of", "Accuracy", "vary", "by", "discipline.", "If", "most", "of", "your", "damage", "comes", "from", "Force", "or", "tech", "abilities,", "Accuracy", "Rating", "is", "a", "poor", "investment.", "If", "your", "attacks", "are", "primarily", "melee-", "or", "ranged-typed,", "you", "can", "benefit", "from", "at", "least", "+5%", "Accuracy", "to", "overcome", "players’", "innate", "+5%", "Melee", "Parry", "and", "Ranged", "Deflect.", "Ideal", "values", "of", "Alacrity", "Rating", "also", "differ", "by", "discipline.", "The", "most", "important", "thing", "to", "realise", "about", "Alacrity", "is", "that", "the", "global", "cooldown", "is", "rounded", "up", "to", "the", "nearest", "tenth", "of", "a", "second.", "Therefore,", "you", "want", "to", "aim", "for", "values", "of", "Alacrity", "Rating", "that", "correspond", "to", "either", "≥7.15%", "Alacrity", "(a", "1.4s", "GCD)", "or", "≥15.41%", "Alacrity", "(a", "1.3s", "GCD).", "Any", "Alacrity", "Rating", "over", "these", "breakpoints", "is", "wasted.", "See", "our", "article", "Alacrity", "and", "the", "Global", "Cooldown", "for", "more", "information.", "Mastery", "is", "your", "last", "priority.", "It", "increases", "your", "Bonus", "Damage", "and", "Critical", "Chance", "and", "can", "be", "stacked", "once", "you’ve", "met", "the", "optimal", "values", "of", "Critical", "Rating,", "Rating", "(if", "applicable)", "and", "Alacrity", "Rating." ] ] ]
[ [ "en" ] ]